From 4dd1f42df6ee34c1a5456862647092cb9686ec9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 11 Jan 2022 20:38:00 +0000 Subject: [PATCH 001/161] src: gracefully handle errors in GetX509NameObject PR-URL: https://github.com/nodejs/node/pull/41490 Co-authored-by: Anna Henningsen Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig --- src/crypto/crypto_common.cc | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/crypto/crypto_common.cc b/src/crypto/crypto_common.cc index 4be308fb655017..53d9d949457c8f 100644 --- a/src/crypto/crypto_common.cc +++ b/src/crypto/crypto_common.cc @@ -1035,17 +1035,26 @@ static MaybeLocal GetX509NameObject(Environment* env, X509* cert) { // change here without breaking things. Note that this creates nested data // structures, yet still does not allow representing Distinguished Names // accurately. - if (result->HasOwnProperty(env->context(), v8_name).ToChecked()) { - Local accum = - result->Get(env->context(), v8_name).ToLocalChecked(); + bool multiple; + if (!result->HasOwnProperty(env->context(), v8_name).To(&multiple)) { + return MaybeLocal(); + } else if (multiple) { + Local accum; + if (!result->Get(env->context(), v8_name).ToLocal(&accum)) { + return MaybeLocal(); + } if (!accum->IsArray()) { accum = Array::New(env->isolate(), &accum, 1); - result->Set(env->context(), v8_name, accum).Check(); + if (result->Set(env->context(), v8_name, accum).IsNothing()) { + return MaybeLocal(); + } } Local array = accum.As(); - array->Set(env->context(), array->Length(), v8_value).Check(); - } else { - result->Set(env->context(), v8_name, v8_value).Check(); + if (array->Set(env->context(), array->Length(), v8_value).IsNothing()) { + return MaybeLocal(); + } + } else if (result->Set(env->context(), v8_name, v8_value).IsNothing()) { + return MaybeLocal(); } } From f1ac5529ce4abdf0582140eb2d2b45f2c6dd8dbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 14 Jan 2022 17:41:42 +0100 Subject: [PATCH 002/161] deps: V8: cherry-pick 3b6b21f595f6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message: [liftoff] Allow bailout for missing ARMv7 The bailout is there explicitly in the code, so we should allow it in {CheckBailoutAllowed}. R=ahaas@chromium.org Bug: v8:12527 Change-Id: Ifd906afb5f034f05c2bf7d9a28e3ab458549e7ef Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3372915 Reviewed-by: Andreas Haas Commit-Queue: Clemens Backes Cr-Commit-Position: refs/heads/main@{#78515} Refs: https://github.com/v8/v8/commit/3b6b21f595f6c172b5b77bf85a3882516f7d7f1b Fixes: https://github.com/nodejs/node/issues/41402 PR-URL: https://github.com/nodejs/node/pull/41457 Reviewed-By: Jiawen Geng Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Tobias Nießen Reviewed-By: Darshan Sen --- common.gypi | 2 +- deps/v8/src/wasm/baseline/arm/liftoff-assembler-arm.h | 2 +- deps/v8/src/wasm/baseline/liftoff-compiler.cc | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/common.gypi b/common.gypi index 6f1a7a0e3c7f4d..dd89f1c929075e 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.12', + 'v8_embedder_string': '-node.13', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/src/wasm/baseline/arm/liftoff-assembler-arm.h b/deps/v8/src/wasm/baseline/arm/liftoff-assembler-arm.h index 211cf82398a20a..a13e028addf7a5 100644 --- a/deps/v8/src/wasm/baseline/arm/liftoff-assembler-arm.h +++ b/deps/v8/src/wasm/baseline/arm/liftoff-assembler-arm.h @@ -438,7 +438,7 @@ inline void EmitAnyTrue(LiftoffAssembler* assm, LiftoffRegister dst, int LiftoffAssembler::PrepareStackFrame() { if (!CpuFeatures::IsSupported(ARMv7)) { - bailout(kUnsupportedArchitecture, "Armv6 not supported"); + bailout(kUnsupportedArchitecture, "Liftoff needs ARMv7"); return 0; } uint32_t offset = static_cast(pc_offset()); diff --git a/deps/v8/src/wasm/baseline/liftoff-compiler.cc b/deps/v8/src/wasm/baseline/liftoff-compiler.cc index fc5684f42733c9..e0926065ac4271 100644 --- a/deps/v8/src/wasm/baseline/liftoff-compiler.cc +++ b/deps/v8/src/wasm/baseline/liftoff-compiler.cc @@ -310,6 +310,13 @@ void CheckBailoutAllowed(LiftoffBailoutReason reason, const char* detail, return; #endif +#if V8_TARGET_ARCH_ARM + // Allow bailout for missing ARMv7 support. + if (!CpuFeatures::IsSupported(ARMv7) && reason == kUnsupportedArchitecture) { + return; + } +#endif + #define LIST_FEATURE(name, ...) kFeature_##name, constexpr WasmFeatures kExperimentalFeatures{ FOREACH_WASM_EXPERIMENTAL_FEATURE_FLAG(LIST_FEATURE)}; From e54f52f0dd2f82914843c411799fa889a4791169 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 11 Jan 2022 17:53:34 -0500 Subject: [PATCH 003/161] test: do not OR F_OK in fs.access() test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit access() does not support OR'ing F_OK with other constants. This commit updates test-fs-access.js to not test that scenario. PR-URL: https://github.com/nodejs/node/pull/41484 Refs: https://github.com/libuv/libuv/pull/3410 Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen --- test/parallel/test-fs-access.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-fs-access.js b/test/parallel/test-fs-access.js index 9fa4dfcf1fe4d8..d8e1c94300d2ed 100644 --- a/test/parallel/test-fs-access.js +++ b/test/parallel/test-fs-access.js @@ -82,10 +82,10 @@ fs.access(__filename, fs.R_OK, common.mustCall(function(...args) { fs.promises.access(__filename, fs.R_OK) .then(common.mustCall()) .catch(throwNextTick); -fs.access(readOnlyFile, fs.F_OK | fs.R_OK, common.mustCall(function(...args) { +fs.access(readOnlyFile, fs.R_OK, common.mustCall(function(...args) { assert.deepStrictEqual(args, [null]); })); -fs.promises.access(readOnlyFile, fs.F_OK | fs.R_OK) +fs.promises.access(readOnlyFile, fs.R_OK) .then(common.mustCall()) .catch(throwNextTick); @@ -153,7 +153,7 @@ assert.throws( // Regular access should not throw. fs.accessSync(__filename); -const mode = fs.F_OK | fs.R_OK | fs.W_OK; +const mode = fs.R_OK | fs.W_OK; fs.accessSync(readWriteFile, mode); // Invalid modes should throw. From 91b9052c4ea4643ebdc94e35445d258855e4ee76 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Tue, 11 Jan 2022 21:18:50 -0500 Subject: [PATCH 004/161] doc: expand fs.access() mode parameter docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit expands the documentation for the mode parameter passed to the fs.access() family of functions. PR-URL: https://github.com/nodejs/node/pull/41484 Refs: https://github.com/libuv/libuv/pull/3410 Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Tobias Nießen --- doc/api/fs.md | 41 ++++++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/doc/api/fs.md b/doc/api/fs.md index 4c74219f9d5fee..0bf5e115687fee 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -738,9 +738,11 @@ added: v10.0.0 Tests a user's permissions for the file or directory specified by `path`. The `mode` argument is an optional integer that specifies the accessibility -checks to be performed. Check [File access constants][] for possible values -of `mode`. It is possible to create a mask consisting of the bitwise OR of -two or more values (e.g. `fs.constants.W_OK | fs.constants.R_OK`). +checks to be performed. `mode` should be either the value `fs.constants.F_OK` +or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, +`fs.constants.W_OK`, and `fs.constants.X_OK` (e.g. +`fs.constants.W_OK | fs.constants.R_OK`). Check [File access constants][] for +possible values of `mode`. If the accessibility check is successful, the promise is resolved with no value. If any of the accessibility checks fail, the promise is rejected @@ -1616,9 +1618,11 @@ changes: Tests a user's permissions for the file or directory specified by `path`. The `mode` argument is an optional integer that specifies the accessibility -checks to be performed. Check [File access constants][] for possible values -of `mode`. It is possible to create a mask consisting of the bitwise OR of -two or more values (e.g. `fs.constants.W_OK | fs.constants.R_OK`). +checks to be performed. `mode` should be either the value `fs.constants.F_OK` +or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, +`fs.constants.W_OK`, and `fs.constants.X_OK` (e.g. +`fs.constants.W_OK | fs.constants.R_OK`). Check [File access constants][] for +possible values of `mode`. The final argument, `callback`, is a callback function that is invoked with a possible error argument. If any of the accessibility checks fail, the error @@ -1645,14 +1649,9 @@ access(file, constants.W_OK, (err) => { console.log(`${file} ${err ? 'is not writable' : 'is writable'}`); }); -// Check if the file exists in the current directory, and if it is writable. -access(file, constants.F_OK | constants.W_OK, (err) => { - if (err) { - console.error( - `${file} ${err.code === 'ENOENT' ? 'does not exist' : 'is read-only'}`); - } else { - console.log(`${file} exists, and it is writable`); - } +// Check if the file is readable and writable. +access(file, constants.R_OK | constants.W_OK, (err) => { + console.log(`${file} ${err ? 'is not' : 'is'} readable and writable`); }); ``` @@ -4459,10 +4458,11 @@ changes: Synchronously tests a user's permissions for the file or directory specified by `path`. The `mode` argument is an optional integer that specifies the -accessibility checks to be performed. Check [File access constants][] for -possible values of `mode`. It is possible to create a mask consisting of -the bitwise OR of two or more values -(e.g. `fs.constants.W_OK | fs.constants.R_OK`). +accessibility checks to be performed. `mode` should be either the value +`fs.constants.F_OK` or a mask consisting of the bitwise OR of any of +`fs.constants.R_OK`, `fs.constants.W_OK`, and `fs.constants.X_OK` (e.g. +`fs.constants.W_OK | fs.constants.R_OK`). Check [File access constants][] for +possible values of `mode`. If any of the accessibility checks fail, an `Error` will be thrown. Otherwise, the method will return `undefined`. @@ -6579,7 +6579,8 @@ open('/path/to/my/file', O_RDWR | O_CREAT | O_EXCL, (err, fd) => { ##### File access constants -The following constants are meant for use with [`fs.access()`][]. +The following constants are meant for use as the `mode` parameter passed to +[`fsPromises.access()`][], [`fs.access()`][], and [`fs.accessSync()`][]. @@ -7258,6 +7259,7 @@ the file contents. [`event ports`]: https://illumos.org/man/port_create [`filehandle.writeFile()`]: #filehandlewritefiledata-options [`fs.access()`]: #fsaccesspath-mode-callback +[`fs.accessSync()`]: #fsaccesssyncpath-mode [`fs.chmod()`]: #fschmodpath-mode-callback [`fs.chown()`]: #fschownpath-uid-gid-callback [`fs.copyFile()`]: #fscopyfilesrc-dest-mode-callback @@ -7292,6 +7294,7 @@ the file contents. [`fs.write(fd, string...)`]: #fswritefd-string-position-encoding-callback [`fs.writeFile()`]: #fswritefilefile-data-options-callback [`fs.writev()`]: #fswritevfd-buffers-position-callback +[`fsPromises.access()`]: #fspromisesaccesspath-mode [`fsPromises.open()`]: #fspromisesopenpath-flags-mode [`fsPromises.opendir()`]: #fspromisesopendirpath-options [`fsPromises.rm()`]: #fspromisesrmpath-options From cd075f488aedbbe712a2672e82ca2d1aea3ba5d0 Mon Sep 17 00:00:00 2001 From: Yoshiki Kurihara Date: Sat, 15 Jan 2022 01:53:45 +0900 Subject: [PATCH 005/161] test: remove broken wiki link from test/common doc PR-URL: https://github.com/nodejs/node/pull/41426 Reviewed-By: Richard Lau Reviewed-By: Anatoli Papirovski Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- test/common/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/README.md b/test/common/README.md index 076cef2dd295c1..f1789c1577d8ca 100644 --- a/test/common/README.md +++ b/test/common/README.md @@ -1031,5 +1031,5 @@ See [the WPT tests README][] for details. [Web Platform Tests]: https://github.com/web-platform-tests/wpt [`hijackstdio.hijackStdErr()`]: #hijackstderrlistener [`hijackstdio.hijackStdOut()`]: #hijackstdoutlistener -[internationalization]: https://github.com/nodejs/node/wiki/Intl +[internationalization]: ../../doc/api/intl.md [the WPT tests README]: ../wpt/README.md From c22177f4de6b6198bcb251049c5a293851c3b420 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Fri, 14 Jan 2022 17:56:15 +0100 Subject: [PATCH 006/161] src: use `std::optional` for Worker thread id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/node/pull/41421 PR-URL: https://github.com/nodejs/node/pull/41453 Reviewed-By: Tobias Nießen Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig Reviewed-By: Michael Dawson Reviewed-By: Darshan Sen --- src/node_worker.cc | 20 +++++++++++--------- src/node_worker.h | 4 ++-- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/node_worker.cc b/src/node_worker.cc index 6e0475511d5770..c9743fcf583a08 100644 --- a/src/node_worker.cc +++ b/src/node_worker.cc @@ -376,10 +376,10 @@ bool Worker::CreateEnvMessagePort(Environment* env) { } void Worker::JoinThread() { - if (thread_joined_) + if (!tid_.has_value()) return; - CHECK_EQ(uv_thread_join(&tid_), 0); - thread_joined_ = true; + CHECK_EQ(uv_thread_join(&tid_.value()), 0); + tid_.reset(); env()->remove_sub_worker_context(this); @@ -406,7 +406,7 @@ void Worker::JoinThread() { MakeCallback(env()->onexit_string(), arraysize(args), args); } - // If we get here, the !thread_joined_ condition at the top of the function + // If we get here, the tid_.has_value() condition at the top of the function // implies that the thread was running. In that case, its final action will // be to schedule a callback on the parent thread which will delete this // object, so there's nothing more to do here. @@ -417,7 +417,7 @@ Worker::~Worker() { CHECK(stopped_); CHECK_NULL(env_); - CHECK(thread_joined_); + CHECK(!tid_.has_value()); Debug(this, "Worker %llu destroyed", thread_id_.id); } @@ -600,7 +600,9 @@ void Worker::StartThread(const FunctionCallbackInfo& args) { uv_thread_options_t thread_options; thread_options.flags = UV_THREAD_HAS_STACK_SIZE; thread_options.stack_size = w->stack_size_; - int ret = uv_thread_create_ex(&w->tid_, &thread_options, [](void* arg) { + + uv_thread_t* tid = &w->tid_.emplace(); // Create uv_thread_t instance + int ret = uv_thread_create_ex(tid, &thread_options, [](void* arg) { // XXX: This could become a std::unique_ptr, but that makes at least // gcc 6.3 detect undefined behaviour when there shouldn't be any. // gcc 7+ handles this well. @@ -627,7 +629,6 @@ void Worker::StartThread(const FunctionCallbackInfo& args) { // The object now owns the created thread and should not be garbage // collected until that finishes. w->ClearWeak(); - w->thread_joined_ = false; if (w->has_ref_) w->env()->add_refs(1); @@ -635,6 +636,7 @@ void Worker::StartThread(const FunctionCallbackInfo& args) { w->env()->add_sub_worker_context(w); } else { w->stopped_ = true; + w->tid_.reset(); char err_buf[128]; uv_err_name_r(ret, err_buf, sizeof(err_buf)); @@ -657,7 +659,7 @@ void Worker::StopThread(const FunctionCallbackInfo& args) { void Worker::Ref(const FunctionCallbackInfo& args) { Worker* w; ASSIGN_OR_RETURN_UNWRAP(&w, args.This()); - if (!w->has_ref_ && !w->thread_joined_) { + if (!w->has_ref_ && w->tid_.has_value()) { w->has_ref_ = true; w->env()->add_refs(1); } @@ -666,7 +668,7 @@ void Worker::Ref(const FunctionCallbackInfo& args) { void Worker::Unref(const FunctionCallbackInfo& args) { Worker* w; ASSIGN_OR_RETURN_UNWRAP(&w, args.This()); - if (w->has_ref_ && !w->thread_joined_) { + if (w->has_ref_ && w->tid_.has_value()) { w->has_ref_ = false; w->env()->add_refs(-1); } diff --git a/src/node_worker.h b/src/node_worker.h index 077d2b8390e6f8..d400c4c991dcbc 100644 --- a/src/node_worker.h +++ b/src/node_worker.h @@ -3,6 +3,7 @@ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS +#include #include #include "node_messaging.h" #include "uv.h" @@ -80,14 +81,13 @@ class Worker : public AsyncWrap { MultiIsolatePlatform* platform_; v8::Isolate* isolate_ = nullptr; - uv_thread_t tid_; + std::optional tid_; // Set while the thread is running std::unique_ptr inspector_parent_handle_; // This mutex protects access to all variables listed below it. mutable Mutex mutex_; - bool thread_joined_ = true; const char* custom_error_ = nullptr; std::string custom_error_str_; int exit_code_ = 0; From 18b833455ceb6eb3d319d47ca017eb4158cc3d9d Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 14 Jan 2022 17:56:47 +0100 Subject: [PATCH 007/161] doc: add missing YAML tag in `esm.md` Refs: https://github.com/nodejs/node/pull/41434 PR-URL: https://github.com/nodejs/node/pull/41516 Reviewed-By: Richard Lau Reviewed-By: Darshan Sen Reviewed-By: Colin Ihrig --- 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 8c3716df74029c..54f576261c2387 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -591,7 +591,7 @@ would provide the exports interface for the instantiation of `module.wasm`. ## Top-level `await` - From 0f31d2993b9dfc24937511ee9024d4127f588aef Mon Sep 17 00:00:00 2001 From: Yoshiki Kurihara Date: Sat, 15 Jan 2022 01:56:56 +0900 Subject: [PATCH 008/161] test: improve test coverage of dns/promises PR-URL: https://github.com/nodejs/node/pull/41425 Refs: https://coverage.nodejs.org/coverage-0b4e9ae656e93e5f/lib/internal/dns/promises.js.html#L128 Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott Reviewed-By: Luigi Pinca --- test/parallel/test-dns.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel/test-dns.js b/test/parallel/test-dns.js index c79fd144c0260e..6f3790d427d353 100644 --- a/test/parallel/test-dns.js +++ b/test/parallel/test-dns.js @@ -274,6 +274,7 @@ dns.lookup('', { await dnsPromises.lookup('', { hints: dns.ADDRCONFIG | dns.V4MAPPED | dns.ALL }); + await dnsPromises.lookup('', { verbatim: true }); })().then(common.mustCall()); { From 08fc4b5d7e9ff57787f48831c228ab91b051317f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 14 Jan 2022 09:42:38 -0800 Subject: [PATCH 009/161] doc: add missing word in readable.read() text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds a missing _is_ in the readable.read() text and makes small style adjustments. PR-URL: https://github.com/nodejs/node/pull/41524 Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: Antoine du Hamel Reviewed-By: Darshan Sen Reviewed-By: Benjamin Gruenbaum --- doc/api/stream.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 1f7f679e3ba5a4..e2bded5c62a3eb 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1256,9 +1256,9 @@ added: v0.9.4 * `size` {number} Optional argument to specify how much data to read. * Returns: {string|Buffer|null|any} -The `readable.read()` method pulls some data out of the internal buffer and -returns it. If no data available to be read, `null` is returned. By default, -the data will be returned as a `Buffer` object unless an encoding has been +The `readable.read()` method reads data out of the internal buffer and +returns it. If no data is available to be read, `null` is returned. By default, +the data is returned as a `Buffer` object unless an encoding has been specified using the `readable.setEncoding()` method or the stream is operating in object mode. From aaa4306a81a388cef1090d5f058a65fb75c64518 Mon Sep 17 00:00:00 2001 From: npm-robot Date: Fri, 14 Jan 2022 19:42:48 +0200 Subject: [PATCH 010/161] deps: upgrade npm to 8.3.1 PR-URL: https://github.com/nodejs/node/pull/41503 Reviewed-By: Colin Ihrig Reviewed-By: Ruy Adorno Reviewed-By: Rich Trott Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Darshan Sen --- deps/npm/docs/output/commands/npm-ls.html | 2 +- deps/npm/docs/output/commands/npm.html | 2 +- deps/npm/lib/commands/unpublish.js | 26 +- deps/npm/man/man1/npm-access.1 | 2 +- deps/npm/man/man1/npm-adduser.1 | 2 +- deps/npm/man/man1/npm-audit.1 | 2 +- deps/npm/man/man1/npm-bin.1 | 2 +- deps/npm/man/man1/npm-bugs.1 | 2 +- deps/npm/man/man1/npm-cache.1 | 2 +- deps/npm/man/man1/npm-ci.1 | 2 +- deps/npm/man/man1/npm-completion.1 | 2 +- deps/npm/man/man1/npm-config.1 | 2 +- deps/npm/man/man1/npm-dedupe.1 | 2 +- deps/npm/man/man1/npm-deprecate.1 | 2 +- deps/npm/man/man1/npm-diff.1 | 2 +- deps/npm/man/man1/npm-dist-tag.1 | 2 +- deps/npm/man/man1/npm-docs.1 | 2 +- deps/npm/man/man1/npm-doctor.1 | 2 +- deps/npm/man/man1/npm-edit.1 | 2 +- deps/npm/man/man1/npm-exec.1 | 2 +- deps/npm/man/man1/npm-explain.1 | 2 +- deps/npm/man/man1/npm-explore.1 | 2 +- deps/npm/man/man1/npm-find-dupes.1 | 2 +- deps/npm/man/man1/npm-fund.1 | 2 +- deps/npm/man/man1/npm-help-search.1 | 2 +- deps/npm/man/man1/npm-help.1 | 2 +- deps/npm/man/man1/npm-hook.1 | 2 +- deps/npm/man/man1/npm-init.1 | 2 +- deps/npm/man/man1/npm-install-ci-test.1 | 2 +- deps/npm/man/man1/npm-install-test.1 | 2 +- deps/npm/man/man1/npm-install.1 | 2 +- deps/npm/man/man1/npm-link.1 | 2 +- deps/npm/man/man1/npm-logout.1 | 2 +- deps/npm/man/man1/npm-ls.1 | 4 +- deps/npm/man/man1/npm-org.1 | 2 +- deps/npm/man/man1/npm-outdated.1 | 2 +- deps/npm/man/man1/npm-owner.1 | 2 +- deps/npm/man/man1/npm-pack.1 | 2 +- deps/npm/man/man1/npm-ping.1 | 2 +- deps/npm/man/man1/npm-pkg.1 | 2 +- deps/npm/man/man1/npm-prefix.1 | 2 +- deps/npm/man/man1/npm-profile.1 | 2 +- deps/npm/man/man1/npm-prune.1 | 2 +- deps/npm/man/man1/npm-publish.1 | 2 +- deps/npm/man/man1/npm-rebuild.1 | 2 +- deps/npm/man/man1/npm-repo.1 | 2 +- deps/npm/man/man1/npm-restart.1 | 2 +- deps/npm/man/man1/npm-root.1 | 2 +- deps/npm/man/man1/npm-run-script.1 | 2 +- deps/npm/man/man1/npm-search.1 | 2 +- deps/npm/man/man1/npm-set-script.1 | 2 +- deps/npm/man/man1/npm-shrinkwrap.1 | 2 +- deps/npm/man/man1/npm-star.1 | 2 +- deps/npm/man/man1/npm-stars.1 | 2 +- deps/npm/man/man1/npm-start.1 | 2 +- deps/npm/man/man1/npm-stop.1 | 2 +- deps/npm/man/man1/npm-team.1 | 2 +- deps/npm/man/man1/npm-test.1 | 2 +- deps/npm/man/man1/npm-token.1 | 2 +- deps/npm/man/man1/npm-uninstall.1 | 2 +- deps/npm/man/man1/npm-unpublish.1 | 2 +- deps/npm/man/man1/npm-unstar.1 | 2 +- deps/npm/man/man1/npm-update.1 | 2 +- deps/npm/man/man1/npm-version.1 | 2 +- deps/npm/man/man1/npm-view.1 | 2 +- deps/npm/man/man1/npm-whoami.1 | 2 +- deps/npm/man/man1/npm.1 | 4 +- deps/npm/man/man1/npx.1 | 2 +- deps/npm/man/man5/folders.5 | 2 +- deps/npm/man/man5/install.5 | 2 +- deps/npm/man/man5/npm-shrinkwrap-json.5 | 2 +- deps/npm/man/man5/npmrc.5 | 2 +- deps/npm/man/man5/package-json.5 | 2 +- deps/npm/man/man5/package-lock-json.5 | 2 +- deps/npm/man/man7/config.7 | 2 +- deps/npm/man/man7/developers.7 | 2 +- deps/npm/man/man7/logging.7 | 2 +- deps/npm/man/man7/orgs.7 | 2 +- deps/npm/man/man7/registry.7 | 2 +- deps/npm/man/man7/removal.7 | 2 +- deps/npm/man/man7/scope.7 | 2 +- deps/npm/man/man7/scripts.7 | 2 +- deps/npm/man/man7/workspaces.7 | 2 +- .../@npmcli/arborist/lib/shrinkwrap.js | 19 +- .../@npmcli/arborist/package.json | 10 +- .../node_modules/@npmcli/config/lib/index.js | 14 + .../node_modules/@npmcli/config/package.json | 2 +- .../node_modules/agentkeepalive/History.md | 9 + .../node_modules/agentkeepalive/lib/agent.js | 9 +- .../node_modules/agentkeepalive/package.json | 4 +- .../hosted-git-info/git-host-info.js | 30 ++ .../node_modules/hosted-git-info/package.json | 7 +- .../npm/node_modules/is-core-module/core.json | 2 + .../node_modules/is-core-module/package.json | 2 +- .../node_modules/is-core-module/test/index.js | 2 +- deps/npm/node_modules/libnpmaccess/README.md | 247 +++++++++++ .../libnpmaccess/{ => lib}/index.js | 16 +- .../node_modules/libnpmaccess/package.json | 27 +- .../libnpmaccess/test/fixtures/tnock.js | 12 - .../node_modules/libnpmaccess/test/index.js | 417 ------------------ .../libnpmdiff/{ => lib}/index.js | 6 +- deps/npm/node_modules/libnpmdiff/package.json | 25 +- deps/npm/node_modules/libnpmexec/README.md | 50 +++ .../libnpmexec/lib/cache-install-dir.js | 3 +- .../libnpmexec/lib/file-exists.js | 6 +- .../libnpmexec/lib/get-bin-from-manifest.js | 6 +- deps/npm/node_modules/libnpmexec/lib/index.js | 18 +- .../libnpmexec/lib/manifest-missing.js | 6 +- .../node_modules/libnpmexec/lib/run-script.js | 9 +- deps/npm/node_modules/libnpmexec/package.json | 27 +- deps/npm/node_modules/libnpmfund/README.md | 132 ++++++ .../libnpmfund/{ => lib}/index.js | 46 +- deps/npm/node_modules/libnpmfund/package.json | 27 +- deps/npm/node_modules/libnpmhook/README.md | 271 ++++++++++++ .../libnpmhook/{ => lib}/index.js | 10 +- deps/npm/node_modules/libnpmhook/package.json | 30 +- deps/npm/node_modules/libnpmorg/README.md | 149 +++++++ .../node_modules/libnpmorg/{ => lib}/index.js | 6 +- deps/npm/node_modules/libnpmorg/package.json | 24 +- deps/npm/node_modules/libnpmpack/README.md | 56 +++ .../libnpmpack/{ => lib}/index.js | 8 +- deps/npm/node_modules/libnpmpack/package.json | 23 +- deps/npm/node_modules/libnpmpublish/README.md | 105 +++++ .../libnpmpublish/{ => lib}/index.js | 0 .../libnpmpublish/{ => lib}/publish.js | 6 +- .../libnpmpublish/{ => lib}/unpublish.js | 9 +- .../node_modules/libnpmpublish/package.json | 31 +- deps/npm/node_modules/libnpmsearch/README.md | 173 ++++++++ .../libnpmsearch/{ => lib}/index.js | 6 +- .../node_modules/libnpmsearch/package.json | 24 +- deps/npm/node_modules/libnpmteam/README.md | 189 ++++++++ .../libnpmteam/{ => lib}/index.js | 12 +- deps/npm/node_modules/libnpmteam/package.json | 24 +- deps/npm/node_modules/libnpmversion/README.md | 159 +++++++ .../node_modules/libnpmversion/lib/index.js | 4 +- .../libnpmversion/lib/proc-log.js | 2 +- .../libnpmversion/lib/retrieve-tag.js | 4 +- .../npm/node_modules/libnpmversion/lib/tag.js | 4 +- .../node_modules/libnpmversion/lib/version.js | 22 +- .../libnpmversion/lib/write-json.js | 2 +- .../node_modules/libnpmversion/package.json | 26 +- deps/npm/package.json | 54 ++- deps/npm/test/lib/commands/pack.js | 3 + deps/npm/test/lib/commands/unpublish.js | 48 +- 144 files changed, 2113 insertions(+), 755 deletions(-) create mode 100644 deps/npm/node_modules/libnpmaccess/README.md rename deps/npm/node_modules/libnpmaccess/{ => lib}/index.js (95%) delete mode 100644 deps/npm/node_modules/libnpmaccess/test/fixtures/tnock.js delete mode 100644 deps/npm/node_modules/libnpmaccess/test/index.js rename deps/npm/node_modules/libnpmdiff/{ => lib}/index.js (89%) create mode 100644 deps/npm/node_modules/libnpmexec/README.md create mode 100644 deps/npm/node_modules/libnpmfund/README.md rename deps/npm/node_modules/libnpmfund/{ => lib}/index.js (88%) create mode 100644 deps/npm/node_modules/libnpmhook/README.md rename deps/npm/node_modules/libnpmhook/{ => lib}/index.js (92%) create mode 100644 deps/npm/node_modules/libnpmorg/README.md rename deps/npm/node_modules/libnpmorg/{ => lib}/index.js (96%) create mode 100644 deps/npm/node_modules/libnpmpack/README.md rename deps/npm/node_modules/libnpmpack/{ => lib}/index.js (90%) create mode 100644 deps/npm/node_modules/libnpmpublish/README.md rename deps/npm/node_modules/libnpmpublish/{ => lib}/index.js (100%) rename deps/npm/node_modules/libnpmpublish/{ => lib}/publish.js (98%) rename deps/npm/node_modules/libnpmpublish/{ => lib}/unpublish.js (94%) create mode 100644 deps/npm/node_modules/libnpmsearch/README.md rename deps/npm/node_modules/libnpmsearch/{ => lib}/index.js (96%) create mode 100644 deps/npm/node_modules/libnpmteam/README.md rename deps/npm/node_modules/libnpmteam/{ => lib}/index.js (92%) create mode 100644 deps/npm/node_modules/libnpmversion/README.md diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html index 2e313801aaea14..3ad752bcac4c97 100644 --- a/deps/npm/docs/output/commands/npm-ls.html +++ b/deps/npm/docs/output/commands/npm-ls.html @@ -160,7 +160,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.3.0 /path/to/npm
+
npm@8.3.1 /path/to/npm
 └─┬ init-package-json@0.0.4
   └── promzard@0.1.5
 
diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index 6fb69cf3a8b022..044d90faec666b 100644 --- a/deps/npm/docs/output/commands/npm.html +++ b/deps/npm/docs/output/commands/npm.html @@ -149,7 +149,7 @@

Table of contents

npm <command> [args]
 

Version

-

8.3.0

+

8.3.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/lib/commands/unpublish.js b/deps/npm/lib/commands/unpublish.js index 578890025d2249..85c366381cc7af 100644 --- a/deps/npm/lib/commands/unpublish.js +++ b/deps/npm/lib/commands/unpublish.js @@ -9,6 +9,10 @@ const log = require('../utils/log-shim') const otplease = require('../utils/otplease.js') const getIdentity = require('../utils/get-identity.js') +const LAST_REMAINING_VERSION_ERROR = 'Refusing to delete the last version of the package. ' + +'It will block from republishing a new version for 24 hours.\n' + +'Run with --force to do this.' + const BaseCommand = require('../base-command.js') class Unpublish extends BaseCommand { static description = 'Remove a package from the registry' @@ -16,6 +20,11 @@ class Unpublish extends BaseCommand { static params = ['dry-run', 'force', 'workspace', 'workspaces'] static usage = ['[<@scope>/][@]'] + async getKeysOfVersions (name, opts) { + const json = await npmFetch.json(npa(name).escapedName, opts) + return Object.keys(json.versions) + } + async completion (args) { const { partialWord, conf } = args @@ -44,8 +53,7 @@ class Unpublish extends BaseCommand { return pkgs } - const json = await npmFetch.json(npa(pkgs[0]).escapedName, opts) - const versions = Object.keys(json.versions) + const versions = await this.getKeysOfVersions(pkgs[0], opts) if (!versions.length) { return pkgs } else { @@ -97,12 +105,26 @@ class Unpublish extends BaseCommand { const { name, version, publishConfig } = manifest const pkgJsonSpec = npa.resolve(name, version) const optsWithPub = { ...opts, publishConfig } + + const versions = await this.getKeysOfVersions(name, optsWithPub) + if (versions.length === 1 && !force) { + throw this.usageError( + LAST_REMAINING_VERSION_ERROR + ) + } + if (!dryRun) { await otplease(opts, opts => libunpub(pkgJsonSpec, optsWithPub)) } pkgName = name pkgVersion = version ? `@${version}` : '' } else { + const versions = await this.getKeysOfVersions(spec.name, opts) + if (versions.length === 1 && !force) { + throw this.usageError( + LAST_REMAINING_VERSION_ERROR + ) + } if (!dryRun) { await otplease(opts, opts => libunpub(spec, opts)) } diff --git a/deps/npm/man/man1/npm-access.1 b/deps/npm/man/man1/npm-access.1 index e6786f2a04ccea..400e41ba630e3d 100644 --- a/deps/npm/man/man1/npm-access.1 +++ b/deps/npm/man/man1/npm-access.1 @@ -1,4 +1,4 @@ -.TH "NPM\-ACCESS" "1" "December 2021" "" "" +.TH "NPM\-ACCESS" "1" "January 2022" "" "" .SH "NAME" \fBnpm-access\fR \- Set access level on published packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-adduser.1 b/deps/npm/man/man1/npm-adduser.1 index 859088196eef33..43273a5c7f6ab2 100644 --- a/deps/npm/man/man1/npm-adduser.1 +++ b/deps/npm/man/man1/npm-adduser.1 @@ -1,4 +1,4 @@ -.TH "NPM\-ADDUSER" "1" "December 2021" "" "" +.TH "NPM\-ADDUSER" "1" "January 2022" "" "" .SH "NAME" \fBnpm-adduser\fR \- Add a registry user account .SS Synopsis diff --git a/deps/npm/man/man1/npm-audit.1 b/deps/npm/man/man1/npm-audit.1 index 9279f1f6e815ab..23ad2c4f5e35eb 100644 --- a/deps/npm/man/man1/npm-audit.1 +++ b/deps/npm/man/man1/npm-audit.1 @@ -1,4 +1,4 @@ -.TH "NPM\-AUDIT" "1" "December 2021" "" "" +.TH "NPM\-AUDIT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-audit\fR \- Run a security audit .SS Synopsis diff --git a/deps/npm/man/man1/npm-bin.1 b/deps/npm/man/man1/npm-bin.1 index fa1abc087e1193..a9fcca68865566 100644 --- a/deps/npm/man/man1/npm-bin.1 +++ b/deps/npm/man/man1/npm-bin.1 @@ -1,4 +1,4 @@ -.TH "NPM\-BIN" "1" "December 2021" "" "" +.TH "NPM\-BIN" "1" "January 2022" "" "" .SH "NAME" \fBnpm-bin\fR \- Display npm bin folder .SS Synopsis diff --git a/deps/npm/man/man1/npm-bugs.1 b/deps/npm/man/man1/npm-bugs.1 index 857b78727ad09d..97431843d22977 100644 --- a/deps/npm/man/man1/npm-bugs.1 +++ b/deps/npm/man/man1/npm-bugs.1 @@ -1,4 +1,4 @@ -.TH "NPM\-BUGS" "1" "December 2021" "" "" +.TH "NPM\-BUGS" "1" "January 2022" "" "" .SH "NAME" \fBnpm-bugs\fR \- Report bugs for a package in a web browser .SS Synopsis diff --git a/deps/npm/man/man1/npm-cache.1 b/deps/npm/man/man1/npm-cache.1 index 0ae5e8251e159d..e696f17f7a8f7e 100644 --- a/deps/npm/man/man1/npm-cache.1 +++ b/deps/npm/man/man1/npm-cache.1 @@ -1,4 +1,4 @@ -.TH "NPM\-CACHE" "1" "December 2021" "" "" +.TH "NPM\-CACHE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-cache\fR \- Manipulates packages cache .SS Synopsis diff --git a/deps/npm/man/man1/npm-ci.1 b/deps/npm/man/man1/npm-ci.1 index fdd6edbdc03805..df1f1c9831e8aa 100644 --- a/deps/npm/man/man1/npm-ci.1 +++ b/deps/npm/man/man1/npm-ci.1 @@ -1,4 +1,4 @@ -.TH "NPM\-CI" "1" "December 2021" "" "" +.TH "NPM\-CI" "1" "January 2022" "" "" .SH "NAME" \fBnpm-ci\fR \- Install a project with a clean slate .SS Synopsis diff --git a/deps/npm/man/man1/npm-completion.1 b/deps/npm/man/man1/npm-completion.1 index 93b7785ec905ff..7ac09937c939e1 100644 --- a/deps/npm/man/man1/npm-completion.1 +++ b/deps/npm/man/man1/npm-completion.1 @@ -1,4 +1,4 @@ -.TH "NPM\-COMPLETION" "1" "December 2021" "" "" +.TH "NPM\-COMPLETION" "1" "January 2022" "" "" .SH "NAME" \fBnpm-completion\fR \- Tab Completion for npm .SS Synopsis diff --git a/deps/npm/man/man1/npm-config.1 b/deps/npm/man/man1/npm-config.1 index 8b667c03d9c9ca..ce13c858854129 100644 --- a/deps/npm/man/man1/npm-config.1 +++ b/deps/npm/man/man1/npm-config.1 @@ -1,4 +1,4 @@ -.TH "NPM\-CONFIG" "1" "December 2021" "" "" +.TH "NPM\-CONFIG" "1" "January 2022" "" "" .SH "NAME" \fBnpm-config\fR \- Manage the npm configuration files .SS Synopsis diff --git a/deps/npm/man/man1/npm-dedupe.1 b/deps/npm/man/man1/npm-dedupe.1 index dff883b8270510..959b3ffb6d0272 100644 --- a/deps/npm/man/man1/npm-dedupe.1 +++ b/deps/npm/man/man1/npm-dedupe.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DEDUPE" "1" "December 2021" "" "" +.TH "NPM\-DEDUPE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-dedupe\fR \- Reduce duplication in the package tree .SS Synopsis diff --git a/deps/npm/man/man1/npm-deprecate.1 b/deps/npm/man/man1/npm-deprecate.1 index f83b46a156dbbc..36b93d8d8b8855 100644 --- a/deps/npm/man/man1/npm-deprecate.1 +++ b/deps/npm/man/man1/npm-deprecate.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DEPRECATE" "1" "December 2021" "" "" +.TH "NPM\-DEPRECATE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-deprecate\fR \- Deprecate a version of a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-diff.1 b/deps/npm/man/man1/npm-diff.1 index e730b597a6ee32..995391d15f470c 100644 --- a/deps/npm/man/man1/npm-diff.1 +++ b/deps/npm/man/man1/npm-diff.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DIFF" "1" "December 2021" "" "" +.TH "NPM\-DIFF" "1" "January 2022" "" "" .SH "NAME" \fBnpm-diff\fR \- The registry diff command .SS Synopsis diff --git a/deps/npm/man/man1/npm-dist-tag.1 b/deps/npm/man/man1/npm-dist-tag.1 index e2bd3c0e28d5a4..bc37884fab8534 100644 --- a/deps/npm/man/man1/npm-dist-tag.1 +++ b/deps/npm/man/man1/npm-dist-tag.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DIST\-TAG" "1" "December 2021" "" "" +.TH "NPM\-DIST\-TAG" "1" "January 2022" "" "" .SH "NAME" \fBnpm-dist-tag\fR \- Modify package distribution tags .SS Synopsis diff --git a/deps/npm/man/man1/npm-docs.1 b/deps/npm/man/man1/npm-docs.1 index d0f2ce82c2d771..d794821a7cbdb0 100644 --- a/deps/npm/man/man1/npm-docs.1 +++ b/deps/npm/man/man1/npm-docs.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DOCS" "1" "December 2021" "" "" +.TH "NPM\-DOCS" "1" "January 2022" "" "" .SH "NAME" \fBnpm-docs\fR \- Open documentation for a package in a web browser .SS Synopsis diff --git a/deps/npm/man/man1/npm-doctor.1 b/deps/npm/man/man1/npm-doctor.1 index 3b863eddab456c..49bfe6e2ddaf60 100644 --- a/deps/npm/man/man1/npm-doctor.1 +++ b/deps/npm/man/man1/npm-doctor.1 @@ -1,4 +1,4 @@ -.TH "NPM\-DOCTOR" "1" "December 2021" "" "" +.TH "NPM\-DOCTOR" "1" "January 2022" "" "" .SH "NAME" \fBnpm-doctor\fR \- Check your npm environment .SS Synopsis diff --git a/deps/npm/man/man1/npm-edit.1 b/deps/npm/man/man1/npm-edit.1 index 4d3bf1711d15cd..e20c8af84383c7 100644 --- a/deps/npm/man/man1/npm-edit.1 +++ b/deps/npm/man/man1/npm-edit.1 @@ -1,4 +1,4 @@ -.TH "NPM\-EDIT" "1" "December 2021" "" "" +.TH "NPM\-EDIT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-edit\fR \- Edit an installed package .SS Synopsis diff --git a/deps/npm/man/man1/npm-exec.1 b/deps/npm/man/man1/npm-exec.1 index 545d799306ae12..46140f0993ee9e 100644 --- a/deps/npm/man/man1/npm-exec.1 +++ b/deps/npm/man/man1/npm-exec.1 @@ -1,4 +1,4 @@ -.TH "NPM\-EXEC" "1" "December 2021" "" "" +.TH "NPM\-EXEC" "1" "January 2022" "" "" .SH "NAME" \fBnpm-exec\fR \- Run a command from a local or remote npm package .SS Synopsis diff --git a/deps/npm/man/man1/npm-explain.1 b/deps/npm/man/man1/npm-explain.1 index 91a66ff3f53591..7467b24a155782 100644 --- a/deps/npm/man/man1/npm-explain.1 +++ b/deps/npm/man/man1/npm-explain.1 @@ -1,4 +1,4 @@ -.TH "NPM\-EXPLAIN" "1" "December 2021" "" "" +.TH "NPM\-EXPLAIN" "1" "January 2022" "" "" .SH "NAME" \fBnpm-explain\fR \- Explain installed packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-explore.1 b/deps/npm/man/man1/npm-explore.1 index 79e4e5a7dfb7bb..1c4f90deb90ab3 100644 --- a/deps/npm/man/man1/npm-explore.1 +++ b/deps/npm/man/man1/npm-explore.1 @@ -1,4 +1,4 @@ -.TH "NPM\-EXPLORE" "1" "December 2021" "" "" +.TH "NPM\-EXPLORE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-explore\fR \- Browse an installed package .SS Synopsis diff --git a/deps/npm/man/man1/npm-find-dupes.1 b/deps/npm/man/man1/npm-find-dupes.1 index bd157ab7fd347e..162dcf0d443588 100644 --- a/deps/npm/man/man1/npm-find-dupes.1 +++ b/deps/npm/man/man1/npm-find-dupes.1 @@ -1,4 +1,4 @@ -.TH "NPM\-FIND\-DUPES" "1" "December 2021" "" "" +.TH "NPM\-FIND\-DUPES" "1" "January 2022" "" "" .SH "NAME" \fBnpm-find-dupes\fR \- Find duplication in the package tree .SS Synopsis diff --git a/deps/npm/man/man1/npm-fund.1 b/deps/npm/man/man1/npm-fund.1 index 488dd168c62400..5a45391788f69c 100644 --- a/deps/npm/man/man1/npm-fund.1 +++ b/deps/npm/man/man1/npm-fund.1 @@ -1,4 +1,4 @@ -.TH "NPM\-FUND" "1" "December 2021" "" "" +.TH "NPM\-FUND" "1" "January 2022" "" "" .SH "NAME" \fBnpm-fund\fR \- Retrieve funding information .SS Synopsis diff --git a/deps/npm/man/man1/npm-help-search.1 b/deps/npm/man/man1/npm-help-search.1 index 8566e38185acdc..299ae9e5945972 100644 --- a/deps/npm/man/man1/npm-help-search.1 +++ b/deps/npm/man/man1/npm-help-search.1 @@ -1,4 +1,4 @@ -.TH "NPM\-HELP\-SEARCH" "1" "December 2021" "" "" +.TH "NPM\-HELP\-SEARCH" "1" "January 2022" "" "" .SH "NAME" \fBnpm-help-search\fR \- Search npm help documentation .SS Synopsis diff --git a/deps/npm/man/man1/npm-help.1 b/deps/npm/man/man1/npm-help.1 index 260a253fedef3c..d84fbb58849ba8 100644 --- a/deps/npm/man/man1/npm-help.1 +++ b/deps/npm/man/man1/npm-help.1 @@ -1,4 +1,4 @@ -.TH "NPM\-HELP" "1" "December 2021" "" "" +.TH "NPM\-HELP" "1" "January 2022" "" "" .SH "NAME" \fBnpm-help\fR \- Get help on npm .SS Synopsis diff --git a/deps/npm/man/man1/npm-hook.1 b/deps/npm/man/man1/npm-hook.1 index 609604155b369b..4c3bd994398e8f 100644 --- a/deps/npm/man/man1/npm-hook.1 +++ b/deps/npm/man/man1/npm-hook.1 @@ -1,4 +1,4 @@ -.TH "NPM\-HOOK" "1" "December 2021" "" "" +.TH "NPM\-HOOK" "1" "January 2022" "" "" .SH "NAME" \fBnpm-hook\fR \- Manage registry hooks .SS Synopsis diff --git a/deps/npm/man/man1/npm-init.1 b/deps/npm/man/man1/npm-init.1 index 8119ff10fda318..7a540d2b14185a 100644 --- a/deps/npm/man/man1/npm-init.1 +++ b/deps/npm/man/man1/npm-init.1 @@ -1,4 +1,4 @@ -.TH "NPM\-INIT" "1" "December 2021" "" "" +.TH "NPM\-INIT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-init\fR \- Create a package\.json file .SS Synopsis diff --git a/deps/npm/man/man1/npm-install-ci-test.1 b/deps/npm/man/man1/npm-install-ci-test.1 index 5b2e09cf1c285f..acc190c20b6661 100644 --- a/deps/npm/man/man1/npm-install-ci-test.1 +++ b/deps/npm/man/man1/npm-install-ci-test.1 @@ -1,4 +1,4 @@ -.TH "NPM\-INSTALL\-CI\-TEST" "1" "December 2021" "" "" +.TH "NPM\-INSTALL\-CI\-TEST" "1" "January 2022" "" "" .SH "NAME" \fBnpm-install-ci-test\fR \- Install a project with a clean slate and run tests .SS Synopsis diff --git a/deps/npm/man/man1/npm-install-test.1 b/deps/npm/man/man1/npm-install-test.1 index 451ae94e87c6e3..3f1a07292fa0b0 100644 --- a/deps/npm/man/man1/npm-install-test.1 +++ b/deps/npm/man/man1/npm-install-test.1 @@ -1,4 +1,4 @@ -.TH "NPM\-INSTALL\-TEST" "1" "December 2021" "" "" +.TH "NPM\-INSTALL\-TEST" "1" "January 2022" "" "" .SH "NAME" \fBnpm-install-test\fR \- Install package(s) and run tests .SS Synopsis diff --git a/deps/npm/man/man1/npm-install.1 b/deps/npm/man/man1/npm-install.1 index cf93650b30a53c..d6f5c5f07bbe34 100644 --- a/deps/npm/man/man1/npm-install.1 +++ b/deps/npm/man/man1/npm-install.1 @@ -1,4 +1,4 @@ -.TH "NPM\-INSTALL" "1" "December 2021" "" "" +.TH "NPM\-INSTALL" "1" "January 2022" "" "" .SH "NAME" \fBnpm-install\fR \- Install a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-link.1 b/deps/npm/man/man1/npm-link.1 index b15ac7bce6d624..3e7efd00ebbb18 100644 --- a/deps/npm/man/man1/npm-link.1 +++ b/deps/npm/man/man1/npm-link.1 @@ -1,4 +1,4 @@ -.TH "NPM\-LINK" "1" "December 2021" "" "" +.TH "NPM\-LINK" "1" "January 2022" "" "" .SH "NAME" \fBnpm-link\fR \- Symlink a package folder .SS Synopsis diff --git a/deps/npm/man/man1/npm-logout.1 b/deps/npm/man/man1/npm-logout.1 index 17534e845fc3ef..7be9d44c006bea 100644 --- a/deps/npm/man/man1/npm-logout.1 +++ b/deps/npm/man/man1/npm-logout.1 @@ -1,4 +1,4 @@ -.TH "NPM\-LOGOUT" "1" "December 2021" "" "" +.TH "NPM\-LOGOUT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-logout\fR \- Log out of the registry .SS Synopsis diff --git a/deps/npm/man/man1/npm-ls.1 b/deps/npm/man/man1/npm-ls.1 index 61db54629dc7e4..2b0338e3f30867 100644 --- a/deps/npm/man/man1/npm-ls.1 +++ b/deps/npm/man/man1/npm-ls.1 @@ -1,4 +1,4 @@ -.TH "NPM\-LS" "1" "December 2021" "" "" +.TH "NPM\-LS" "1" "January 2022" "" "" .SH "NAME" \fBnpm-ls\fR \- List installed packages .SS Synopsis @@ -26,7 +26,7 @@ example, running \fBnpm ls promzard\fP in npm's source tree will show: .P .RS 2 .nf -npm@8\.3\.0 /path/to/npm +npm@8\.3\.1 /path/to/npm └─┬ init\-package\-json@0\.0\.4 └── promzard@0\.1\.5 .fi diff --git a/deps/npm/man/man1/npm-org.1 b/deps/npm/man/man1/npm-org.1 index 3ca826bd6c75c2..8c147767fbfa18 100644 --- a/deps/npm/man/man1/npm-org.1 +++ b/deps/npm/man/man1/npm-org.1 @@ -1,4 +1,4 @@ -.TH "NPM\-ORG" "1" "December 2021" "" "" +.TH "NPM\-ORG" "1" "January 2022" "" "" .SH "NAME" \fBnpm-org\fR \- Manage orgs .SS Synopsis diff --git a/deps/npm/man/man1/npm-outdated.1 b/deps/npm/man/man1/npm-outdated.1 index e596e77c346d96..947037359c8d51 100644 --- a/deps/npm/man/man1/npm-outdated.1 +++ b/deps/npm/man/man1/npm-outdated.1 @@ -1,4 +1,4 @@ -.TH "NPM\-OUTDATED" "1" "December 2021" "" "" +.TH "NPM\-OUTDATED" "1" "January 2022" "" "" .SH "NAME" \fBnpm-outdated\fR \- Check for outdated packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-owner.1 b/deps/npm/man/man1/npm-owner.1 index 289d67a66886f0..13937da64848cf 100644 --- a/deps/npm/man/man1/npm-owner.1 +++ b/deps/npm/man/man1/npm-owner.1 @@ -1,4 +1,4 @@ -.TH "NPM\-OWNER" "1" "December 2021" "" "" +.TH "NPM\-OWNER" "1" "January 2022" "" "" .SH "NAME" \fBnpm-owner\fR \- Manage package owners .SS Synopsis diff --git a/deps/npm/man/man1/npm-pack.1 b/deps/npm/man/man1/npm-pack.1 index 42ab2fa74f2bba..9f0e0d8bc78463 100644 --- a/deps/npm/man/man1/npm-pack.1 +++ b/deps/npm/man/man1/npm-pack.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PACK" "1" "December 2021" "" "" +.TH "NPM\-PACK" "1" "January 2022" "" "" .SH "NAME" \fBnpm-pack\fR \- Create a tarball from a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-ping.1 b/deps/npm/man/man1/npm-ping.1 index 885cbd837d449f..82a42a75716465 100644 --- a/deps/npm/man/man1/npm-ping.1 +++ b/deps/npm/man/man1/npm-ping.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PING" "1" "December 2021" "" "" +.TH "NPM\-PING" "1" "January 2022" "" "" .SH "NAME" \fBnpm-ping\fR \- Ping npm registry .SS Synopsis diff --git a/deps/npm/man/man1/npm-pkg.1 b/deps/npm/man/man1/npm-pkg.1 index dcb6a8bb4d728b..db5e89d1304514 100644 --- a/deps/npm/man/man1/npm-pkg.1 +++ b/deps/npm/man/man1/npm-pkg.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PKG" "1" "December 2021" "" "" +.TH "NPM\-PKG" "1" "January 2022" "" "" .SH "NAME" \fBnpm-pkg\fR \- Manages your package\.json .SS Synopsis diff --git a/deps/npm/man/man1/npm-prefix.1 b/deps/npm/man/man1/npm-prefix.1 index 259b85e7ee9ca0..7219fbecd13d8a 100644 --- a/deps/npm/man/man1/npm-prefix.1 +++ b/deps/npm/man/man1/npm-prefix.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PREFIX" "1" "December 2021" "" "" +.TH "NPM\-PREFIX" "1" "January 2022" "" "" .SH "NAME" \fBnpm-prefix\fR \- Display prefix .SS Synopsis diff --git a/deps/npm/man/man1/npm-profile.1 b/deps/npm/man/man1/npm-profile.1 index 176afb69c24155..7fe66a033ef14b 100644 --- a/deps/npm/man/man1/npm-profile.1 +++ b/deps/npm/man/man1/npm-profile.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PROFILE" "1" "December 2021" "" "" +.TH "NPM\-PROFILE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-profile\fR \- Change settings on your registry profile .SS Synopsis diff --git a/deps/npm/man/man1/npm-prune.1 b/deps/npm/man/man1/npm-prune.1 index 54204593ff5fbe..37d62b460273f2 100644 --- a/deps/npm/man/man1/npm-prune.1 +++ b/deps/npm/man/man1/npm-prune.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PRUNE" "1" "December 2021" "" "" +.TH "NPM\-PRUNE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-prune\fR \- Remove extraneous packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-publish.1 b/deps/npm/man/man1/npm-publish.1 index ca9a3041bfd4bc..80e66f59c30926 100644 --- a/deps/npm/man/man1/npm-publish.1 +++ b/deps/npm/man/man1/npm-publish.1 @@ -1,4 +1,4 @@ -.TH "NPM\-PUBLISH" "1" "December 2021" "" "" +.TH "NPM\-PUBLISH" "1" "January 2022" "" "" .SH "NAME" \fBnpm-publish\fR \- Publish a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-rebuild.1 b/deps/npm/man/man1/npm-rebuild.1 index 5b0e96d04b864a..7f4dd0934111f6 100644 --- a/deps/npm/man/man1/npm-rebuild.1 +++ b/deps/npm/man/man1/npm-rebuild.1 @@ -1,4 +1,4 @@ -.TH "NPM\-REBUILD" "1" "December 2021" "" "" +.TH "NPM\-REBUILD" "1" "January 2022" "" "" .SH "NAME" \fBnpm-rebuild\fR \- Rebuild a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-repo.1 b/deps/npm/man/man1/npm-repo.1 index 178816429ad91c..31fb205ece5158 100644 --- a/deps/npm/man/man1/npm-repo.1 +++ b/deps/npm/man/man1/npm-repo.1 @@ -1,4 +1,4 @@ -.TH "NPM\-REPO" "1" "December 2021" "" "" +.TH "NPM\-REPO" "1" "January 2022" "" "" .SH "NAME" \fBnpm-repo\fR \- Open package repository page in the browser .SS Synopsis diff --git a/deps/npm/man/man1/npm-restart.1 b/deps/npm/man/man1/npm-restart.1 index 37060c2b6f508d..549e531902ad65 100644 --- a/deps/npm/man/man1/npm-restart.1 +++ b/deps/npm/man/man1/npm-restart.1 @@ -1,4 +1,4 @@ -.TH "NPM\-RESTART" "1" "December 2021" "" "" +.TH "NPM\-RESTART" "1" "January 2022" "" "" .SH "NAME" \fBnpm-restart\fR \- Restart a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-root.1 b/deps/npm/man/man1/npm-root.1 index 9ac47bbeb38208..4b9816bfd59662 100644 --- a/deps/npm/man/man1/npm-root.1 +++ b/deps/npm/man/man1/npm-root.1 @@ -1,4 +1,4 @@ -.TH "NPM\-ROOT" "1" "December 2021" "" "" +.TH "NPM\-ROOT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-root\fR \- Display npm root .SS Synopsis diff --git a/deps/npm/man/man1/npm-run-script.1 b/deps/npm/man/man1/npm-run-script.1 index 22b80dbf024242..6587e358824948 100644 --- a/deps/npm/man/man1/npm-run-script.1 +++ b/deps/npm/man/man1/npm-run-script.1 @@ -1,4 +1,4 @@ -.TH "NPM\-RUN\-SCRIPT" "1" "December 2021" "" "" +.TH "NPM\-RUN\-SCRIPT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-run-script\fR \- Run arbitrary package scripts .SS Synopsis diff --git a/deps/npm/man/man1/npm-search.1 b/deps/npm/man/man1/npm-search.1 index 5b16ae5babc62c..80e6eb14e260f8 100644 --- a/deps/npm/man/man1/npm-search.1 +++ b/deps/npm/man/man1/npm-search.1 @@ -1,4 +1,4 @@ -.TH "NPM\-SEARCH" "1" "December 2021" "" "" +.TH "NPM\-SEARCH" "1" "January 2022" "" "" .SH "NAME" \fBnpm-search\fR \- Search for packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-set-script.1 b/deps/npm/man/man1/npm-set-script.1 index 960d5d81fa8a2d..1d45353ddbdbaf 100644 --- a/deps/npm/man/man1/npm-set-script.1 +++ b/deps/npm/man/man1/npm-set-script.1 @@ -1,4 +1,4 @@ -.TH "NPM\-SET\-SCRIPT" "1" "December 2021" "" "" +.TH "NPM\-SET\-SCRIPT" "1" "January 2022" "" "" .SH "NAME" \fBnpm-set-script\fR \- Set tasks in the scripts section of package\.json .SS Synopsis diff --git a/deps/npm/man/man1/npm-shrinkwrap.1 b/deps/npm/man/man1/npm-shrinkwrap.1 index 166ec5da10362a..1a407c697ac307 100644 --- a/deps/npm/man/man1/npm-shrinkwrap.1 +++ b/deps/npm/man/man1/npm-shrinkwrap.1 @@ -1,4 +1,4 @@ -.TH "NPM\-SHRINKWRAP" "1" "December 2021" "" "" +.TH "NPM\-SHRINKWRAP" "1" "January 2022" "" "" .SH "NAME" \fBnpm-shrinkwrap\fR \- Lock down dependency versions for publication .SS Synopsis diff --git a/deps/npm/man/man1/npm-star.1 b/deps/npm/man/man1/npm-star.1 index 7b580abec8daf1..705cc9fbc3a618 100644 --- a/deps/npm/man/man1/npm-star.1 +++ b/deps/npm/man/man1/npm-star.1 @@ -1,4 +1,4 @@ -.TH "NPM\-STAR" "1" "December 2021" "" "" +.TH "NPM\-STAR" "1" "January 2022" "" "" .SH "NAME" \fBnpm-star\fR \- Mark your favorite packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-stars.1 b/deps/npm/man/man1/npm-stars.1 index 3cf9bdc96ea2f0..20af164e278f4d 100644 --- a/deps/npm/man/man1/npm-stars.1 +++ b/deps/npm/man/man1/npm-stars.1 @@ -1,4 +1,4 @@ -.TH "NPM\-STARS" "1" "December 2021" "" "" +.TH "NPM\-STARS" "1" "January 2022" "" "" .SH "NAME" \fBnpm-stars\fR \- View packages marked as favorites .SS Synopsis diff --git a/deps/npm/man/man1/npm-start.1 b/deps/npm/man/man1/npm-start.1 index 66b9a935ff96ad..314d3914fc1feb 100644 --- a/deps/npm/man/man1/npm-start.1 +++ b/deps/npm/man/man1/npm-start.1 @@ -1,4 +1,4 @@ -.TH "NPM\-START" "1" "December 2021" "" "" +.TH "NPM\-START" "1" "January 2022" "" "" .SH "NAME" \fBnpm-start\fR \- Start a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-stop.1 b/deps/npm/man/man1/npm-stop.1 index daf293986b6568..1bfa7443897b4a 100644 --- a/deps/npm/man/man1/npm-stop.1 +++ b/deps/npm/man/man1/npm-stop.1 @@ -1,4 +1,4 @@ -.TH "NPM\-STOP" "1" "December 2021" "" "" +.TH "NPM\-STOP" "1" "January 2022" "" "" .SH "NAME" \fBnpm-stop\fR \- Stop a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-team.1 b/deps/npm/man/man1/npm-team.1 index a75060f1b2ec01..0ce06f382655be 100644 --- a/deps/npm/man/man1/npm-team.1 +++ b/deps/npm/man/man1/npm-team.1 @@ -1,4 +1,4 @@ -.TH "NPM\-TEAM" "1" "December 2021" "" "" +.TH "NPM\-TEAM" "1" "January 2022" "" "" .SH "NAME" \fBnpm-team\fR \- Manage organization teams and team memberships .SS Synopsis diff --git a/deps/npm/man/man1/npm-test.1 b/deps/npm/man/man1/npm-test.1 index 44e0d716c8903b..e71fef4ab041c0 100644 --- a/deps/npm/man/man1/npm-test.1 +++ b/deps/npm/man/man1/npm-test.1 @@ -1,4 +1,4 @@ -.TH "NPM\-TEST" "1" "December 2021" "" "" +.TH "NPM\-TEST" "1" "January 2022" "" "" .SH "NAME" \fBnpm-test\fR \- Test a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-token.1 b/deps/npm/man/man1/npm-token.1 index a1ff1bc88318fd..968fee9305c635 100644 --- a/deps/npm/man/man1/npm-token.1 +++ b/deps/npm/man/man1/npm-token.1 @@ -1,4 +1,4 @@ -.TH "NPM\-TOKEN" "1" "December 2021" "" "" +.TH "NPM\-TOKEN" "1" "January 2022" "" "" .SH "NAME" \fBnpm-token\fR \- Manage your authentication tokens .SS Synopsis diff --git a/deps/npm/man/man1/npm-uninstall.1 b/deps/npm/man/man1/npm-uninstall.1 index f1015a4174b8d5..66aef70b046e9e 100644 --- a/deps/npm/man/man1/npm-uninstall.1 +++ b/deps/npm/man/man1/npm-uninstall.1 @@ -1,4 +1,4 @@ -.TH "NPM\-UNINSTALL" "1" "December 2021" "" "" +.TH "NPM\-UNINSTALL" "1" "January 2022" "" "" .SH "NAME" \fBnpm-uninstall\fR \- Remove a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-unpublish.1 b/deps/npm/man/man1/npm-unpublish.1 index 052d7ef4c46a17..41e8bee4da4b21 100644 --- a/deps/npm/man/man1/npm-unpublish.1 +++ b/deps/npm/man/man1/npm-unpublish.1 @@ -1,4 +1,4 @@ -.TH "NPM\-UNPUBLISH" "1" "December 2021" "" "" +.TH "NPM\-UNPUBLISH" "1" "January 2022" "" "" .SH "NAME" \fBnpm-unpublish\fR \- Remove a package from the registry .SS Synopsis diff --git a/deps/npm/man/man1/npm-unstar.1 b/deps/npm/man/man1/npm-unstar.1 index ef9fe6e386660c..5fc5316a865ee4 100644 --- a/deps/npm/man/man1/npm-unstar.1 +++ b/deps/npm/man/man1/npm-unstar.1 @@ -1,4 +1,4 @@ -.TH "NPM\-UNSTAR" "1" "December 2021" "" "" +.TH "NPM\-UNSTAR" "1" "January 2022" "" "" .SH "NAME" \fBnpm-unstar\fR \- Remove an item from your favorite packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-update.1 b/deps/npm/man/man1/npm-update.1 index 4188dda6b1ab9f..b5afea48f73c6d 100644 --- a/deps/npm/man/man1/npm-update.1 +++ b/deps/npm/man/man1/npm-update.1 @@ -1,4 +1,4 @@ -.TH "NPM\-UPDATE" "1" "December 2021" "" "" +.TH "NPM\-UPDATE" "1" "January 2022" "" "" .SH "NAME" \fBnpm-update\fR \- Update packages .SS Synopsis diff --git a/deps/npm/man/man1/npm-version.1 b/deps/npm/man/man1/npm-version.1 index 73fcf0bdfa9d82..38e9f9af68d54e 100644 --- a/deps/npm/man/man1/npm-version.1 +++ b/deps/npm/man/man1/npm-version.1 @@ -1,4 +1,4 @@ -.TH "NPM\-VERSION" "1" "December 2021" "" "" +.TH "NPM\-VERSION" "1" "January 2022" "" "" .SH "NAME" \fBnpm-version\fR \- Bump a package version .SS Synopsis diff --git a/deps/npm/man/man1/npm-view.1 b/deps/npm/man/man1/npm-view.1 index 4ff00fa93403b3..5d2fdadfaf6b11 100644 --- a/deps/npm/man/man1/npm-view.1 +++ b/deps/npm/man/man1/npm-view.1 @@ -1,4 +1,4 @@ -.TH "NPM\-VIEW" "1" "December 2021" "" "" +.TH "NPM\-VIEW" "1" "January 2022" "" "" .SH "NAME" \fBnpm-view\fR \- View registry info .SS Synopsis diff --git a/deps/npm/man/man1/npm-whoami.1 b/deps/npm/man/man1/npm-whoami.1 index bd3aea36aa9165..60d67c543b18a9 100644 --- a/deps/npm/man/man1/npm-whoami.1 +++ b/deps/npm/man/man1/npm-whoami.1 @@ -1,4 +1,4 @@ -.TH "NPM\-WHOAMI" "1" "December 2021" "" "" +.TH "NPM\-WHOAMI" "1" "January 2022" "" "" .SH "NAME" \fBnpm-whoami\fR \- Display npm username .SS Synopsis diff --git a/deps/npm/man/man1/npm.1 b/deps/npm/man/man1/npm.1 index 1ee03685317a08..875c883fcf060e 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -1,4 +1,4 @@ -.TH "NPM" "1" "December 2021" "" "" +.TH "NPM" "1" "January 2022" "" "" .SH "NAME" \fBnpm\fR \- javascript package manager .SS Synopsis @@ -10,7 +10,7 @@ npm [args] .RE .SS Version .P -8\.3\.0 +8\.3\.1 .SS Description .P npm is the package manager for the Node JavaScript platform\. It puts diff --git a/deps/npm/man/man1/npx.1 b/deps/npm/man/man1/npx.1 index f210e94f0981de..aee52e51203a1b 100644 --- a/deps/npm/man/man1/npx.1 +++ b/deps/npm/man/man1/npx.1 @@ -1,4 +1,4 @@ -.TH "NPX" "1" "December 2021" "" "" +.TH "NPX" "1" "January 2022" "" "" .SH "NAME" \fBnpx\fR \- Run a command from a local or remote npm package .SS Synopsis diff --git a/deps/npm/man/man5/folders.5 b/deps/npm/man/man5/folders.5 index 7b0161242f911d..3c449d41eef97e 100644 --- a/deps/npm/man/man5/folders.5 +++ b/deps/npm/man/man5/folders.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "December 2021" "" "" +.TH "FOLDERS" "5" "January 2022" "" "" .SH "NAME" \fBfolders\fR \- Folder Structures Used by npm .SS Description diff --git a/deps/npm/man/man5/install.5 b/deps/npm/man/man5/install.5 index 1879e6557f568b..432d11eda9ef44 100644 --- a/deps/npm/man/man5/install.5 +++ b/deps/npm/man/man5/install.5 @@ -1,4 +1,4 @@ -.TH "INSTALL" "5" "December 2021" "" "" +.TH "INSTALL" "5" "January 2022" "" "" .SH "NAME" \fBinstall\fR \- Download and install node and npm .SS Description diff --git a/deps/npm/man/man5/npm-shrinkwrap-json.5 b/deps/npm/man/man5/npm-shrinkwrap-json.5 index 05f6cf4fd8b8c2..01216bd0fdc5c3 100644 --- a/deps/npm/man/man5/npm-shrinkwrap-json.5 +++ b/deps/npm/man/man5/npm-shrinkwrap-json.5 @@ -1,4 +1,4 @@ -.TH "NPM\-SHRINKWRAP\.JSON" "5" "December 2021" "" "" +.TH "NPM\-SHRINKWRAP\.JSON" "5" "January 2022" "" "" .SH "NAME" \fBnpm-shrinkwrap.json\fR \- A publishable lockfile .SS Description diff --git a/deps/npm/man/man5/npmrc.5 b/deps/npm/man/man5/npmrc.5 index 33f011e7958385..983294e9c20ee0 100644 --- a/deps/npm/man/man5/npmrc.5 +++ b/deps/npm/man/man5/npmrc.5 @@ -1,4 +1,4 @@ -.TH "NPMRC" "5" "December 2021" "" "" +.TH "NPMRC" "5" "January 2022" "" "" .SH "NAME" \fBnpmrc\fR \- The npm config files .SS Description diff --git a/deps/npm/man/man5/package-json.5 b/deps/npm/man/man5/package-json.5 index 6306a8cb6c3285..2695e041e7e047 100644 --- a/deps/npm/man/man5/package-json.5 +++ b/deps/npm/man/man5/package-json.5 @@ -1,4 +1,4 @@ -.TH "PACKAGE\.JSON" "5" "December 2021" "" "" +.TH "PACKAGE\.JSON" "5" "January 2022" "" "" .SH "NAME" \fBpackage.json\fR \- Specifics of npm's package\.json handling .SS Description diff --git a/deps/npm/man/man5/package-lock-json.5 b/deps/npm/man/man5/package-lock-json.5 index 22cccd59d326bf..98de34c0c59e10 100644 --- a/deps/npm/man/man5/package-lock-json.5 +++ b/deps/npm/man/man5/package-lock-json.5 @@ -1,4 +1,4 @@ -.TH "PACKAGE\-LOCK\.JSON" "5" "December 2021" "" "" +.TH "PACKAGE\-LOCK\.JSON" "5" "January 2022" "" "" .SH "NAME" \fBpackage-lock.json\fR \- A manifestation of the manifest .SS Description diff --git a/deps/npm/man/man7/config.7 b/deps/npm/man/man7/config.7 index c366ec1bef6196..2e05f320075441 100644 --- a/deps/npm/man/man7/config.7 +++ b/deps/npm/man/man7/config.7 @@ -1,4 +1,4 @@ -.TH "CONFIG" "7" "December 2021" "" "" +.TH "CONFIG" "7" "January 2022" "" "" .SH "NAME" \fBconfig\fR \- More than you probably want to know about npm configuration .SS Description diff --git a/deps/npm/man/man7/developers.7 b/deps/npm/man/man7/developers.7 index 017beab9daa03e..9deb251a185f08 100644 --- a/deps/npm/man/man7/developers.7 +++ b/deps/npm/man/man7/developers.7 @@ -1,4 +1,4 @@ -.TH "DEVELOPERS" "7" "December 2021" "" "" +.TH "DEVELOPERS" "7" "January 2022" "" "" .SH "NAME" \fBdevelopers\fR \- Developer Guide .SS Description diff --git a/deps/npm/man/man7/logging.7 b/deps/npm/man/man7/logging.7 index 9098c38849590f..0818e0debc0ef8 100644 --- a/deps/npm/man/man7/logging.7 +++ b/deps/npm/man/man7/logging.7 @@ -1,4 +1,4 @@ -.TH "LOGGING" "7" "December 2021" "" "" +.TH "LOGGING" "7" "January 2022" "" "" .SH "NAME" \fBLogging\fR \- Why, What & How we Log .SS Description diff --git a/deps/npm/man/man7/orgs.7 b/deps/npm/man/man7/orgs.7 index 32941be2f6f1f4..6790323a4f79d4 100644 --- a/deps/npm/man/man7/orgs.7 +++ b/deps/npm/man/man7/orgs.7 @@ -1,4 +1,4 @@ -.TH "ORGS" "7" "December 2021" "" "" +.TH "ORGS" "7" "January 2022" "" "" .SH "NAME" \fBorgs\fR \- Working with Teams & Orgs .SS Description diff --git a/deps/npm/man/man7/registry.7 b/deps/npm/man/man7/registry.7 index 3f5a28edcd01cb..8f0851011681c4 100644 --- a/deps/npm/man/man7/registry.7 +++ b/deps/npm/man/man7/registry.7 @@ -1,4 +1,4 @@ -.TH "REGISTRY" "7" "December 2021" "" "" +.TH "REGISTRY" "7" "January 2022" "" "" .SH "NAME" \fBregistry\fR \- The JavaScript Package Registry .SS Description diff --git a/deps/npm/man/man7/removal.7 b/deps/npm/man/man7/removal.7 index daf28731842eac..17a7d3dacb0965 100644 --- a/deps/npm/man/man7/removal.7 +++ b/deps/npm/man/man7/removal.7 @@ -1,4 +1,4 @@ -.TH "REMOVAL" "7" "December 2021" "" "" +.TH "REMOVAL" "7" "January 2022" "" "" .SH "NAME" \fBremoval\fR \- Cleaning the Slate .SS Synopsis diff --git a/deps/npm/man/man7/scope.7 b/deps/npm/man/man7/scope.7 index d4702277a7bacb..b1fd4d17f1149e 100644 --- a/deps/npm/man/man7/scope.7 +++ b/deps/npm/man/man7/scope.7 @@ -1,4 +1,4 @@ -.TH "SCOPE" "7" "December 2021" "" "" +.TH "SCOPE" "7" "January 2022" "" "" .SH "NAME" \fBscope\fR \- Scoped packages .SS Description diff --git a/deps/npm/man/man7/scripts.7 b/deps/npm/man/man7/scripts.7 index 2c121b1f4adfdd..33b70e92ca3bef 100644 --- a/deps/npm/man/man7/scripts.7 +++ b/deps/npm/man/man7/scripts.7 @@ -1,4 +1,4 @@ -.TH "SCRIPTS" "7" "December 2021" "" "" +.TH "SCRIPTS" "7" "January 2022" "" "" .SH "NAME" \fBscripts\fR \- How npm handles the "scripts" field .SS Description diff --git a/deps/npm/man/man7/workspaces.7 b/deps/npm/man/man7/workspaces.7 index c809092741f842..a4c3eef8bebc80 100644 --- a/deps/npm/man/man7/workspaces.7 +++ b/deps/npm/man/man7/workspaces.7 @@ -1,4 +1,4 @@ -.TH "WORKSPACES" "7" "December 2021" "" "" +.TH "WORKSPACES" "7" "January 2022" "" "" .SH "NAME" \fBworkspaces\fR \- Working with workspaces .SS Description diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js b/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js index 2f0c0877cf8e0f..a7a68c98c6d6d1 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js @@ -1085,18 +1085,29 @@ class Shrinkwrap { return lock } - save (options = {}) { + toJSON () { if (!this.data) { - throw new Error('run load() before saving data') + throw new Error('run load() before getting or setting data') } + return this.commit() + } + + toString (options = {}) { + const data = this.toJSON() const { format = true } = options const defaultIndent = this.indent || 2 const indent = format === true ? defaultIndent : format || 0 const eol = format ? this.newline || '\n' : '' - const data = this.commit() - const json = stringify(data, swKeyOrder, indent).replace(/\n/g, eol) + return stringify(data, swKeyOrder, indent).replace(/\n/g, eol) + } + + save (options = {}) { + if (!this.data) { + throw new Error('run load() before saving data') + } + const json = this.toString(options) return Promise.all([ writeFile(this.filename, json).catch(er => { if (this.hiddenLockfile) { diff --git a/deps/npm/node_modules/@npmcli/arborist/package.json b/deps/npm/node_modules/@npmcli/arborist/package.json index cea3d5ecd7e4e5..ac2922bc9655d5 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": "4.1.1", + "version": "4.2.0", "description": "Manage node_modules trees", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", @@ -37,7 +37,7 @@ "walk-up-path": "^1.0.0" }, "devDependencies": { - "@npmcli/template-oss": "^2.3.1", + "@npmcli/template-oss": "^2.4.2", "benchmark": "^2.1.4", "chalk": "^4.1.0", "minify-registry-metadata": "^2.1.0", @@ -94,9 +94,11 @@ "engines": { "node": "^12.13.0 || ^14.15.0 || >=16" }, - "templateVersion": "2.3.1", "eslintIgnore": [ "test/fixtures/", "!test/fixtures/*.js" - ] + ], + "templateOSS": { + "version": "2.4.3" + } } diff --git a/deps/npm/node_modules/@npmcli/config/lib/index.js b/deps/npm/node_modules/@npmcli/config/lib/index.js index e52f7a14f7d7ce..293fad2ec56c37 100644 --- a/deps/npm/node_modules/@npmcli/config/lib/index.js +++ b/deps/npm/node_modules/@npmcli/config/lib/index.js @@ -401,6 +401,20 @@ class Config { } } + // Returns true if the value is coming directly from the source defined + // in default definitions, if the current value for the key config is + // coming from any other different source, returns false + isDefault (key) { + const [defaultType, ...types] = [...confTypes] + const defaultData = this.data.get(defaultType).data + + return hasOwnProperty(defaultData, key) + && types.every(type => { + const typeData = this.data.get(type).data + return !hasOwnProperty(typeData, key) + }) + } + invalidHandler (k, val, type, source, where) { this.log.warn( 'invalid config', diff --git a/deps/npm/node_modules/@npmcli/config/package.json b/deps/npm/node_modules/@npmcli/config/package.json index 299202ec2d0faa..83d8a349d224dc 100644 --- a/deps/npm/node_modules/@npmcli/config/package.json +++ b/deps/npm/node_modules/@npmcli/config/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/config", - "version": "2.3.2", + "version": "2.4.0", "files": [ "lib" ], diff --git a/deps/npm/node_modules/agentkeepalive/History.md b/deps/npm/node_modules/agentkeepalive/History.md index ea47ddcfe100db..00cb65f5db3c63 100644 --- a/deps/npm/node_modules/agentkeepalive/History.md +++ b/deps/npm/node_modules/agentkeepalive/History.md @@ -1,4 +1,13 @@ +4.2.0 / 2021-12-31 +================== + +**fixes** + * [[`f418c67`](http://github.com/node-modules/agentkeepalive/commit/f418c67a63c061c7261592d4553bc455e0b0d306)] - fix: change `freeSocketTimeout` default value to 4000 (#102) (fengmk2 <>) + +**others** + * [[`bc2a1ce`](http://github.com/node-modules/agentkeepalive/commit/bc2a1cea0884b4d18b0d244bf00006d9107963df)] - doc(readme): making `timeout`'s default clear (#100) (Aaron <>) + 4.1.4 / 2021-02-05 ================== diff --git a/deps/npm/node_modules/agentkeepalive/lib/agent.js b/deps/npm/node_modules/agentkeepalive/lib/agent.js index d0294a69f429ca..a7065b5e5d1ad3 100644 --- a/deps/npm/node_modules/agentkeepalive/lib/agent.js +++ b/deps/npm/node_modules/agentkeepalive/lib/agent.js @@ -31,9 +31,10 @@ class Agent extends OriginalAgent { constructor(options) { options = options || {}; options.keepAlive = options.keepAlive !== false; - // default is keep-alive and 15s free socket timeout + // default is keep-alive and 4s free socket timeout + // see https://medium.com/ssense-tech/reduce-networking-errors-in-nodejs-23b4eb9f2d83 if (options.freeSocketTimeout === undefined) { - options.freeSocketTimeout = 15000; + options.freeSocketTimeout = 4000; } // Legacy API: keepAliveTimeout should be rename to `freeSocketTimeout` if (options.keepAliveTimeout) { @@ -51,8 +52,8 @@ class Agent extends OriginalAgent { // Sets the socket to timeout after timeout milliseconds of inactivity on the socket. // By default is double free socket timeout. if (options.timeout === undefined) { - // make sure socket default inactivity timeout >= 30s - options.timeout = Math.max(options.freeSocketTimeout * 2, 30000); + // make sure socket default inactivity timeout >= 8s + options.timeout = Math.max(options.freeSocketTimeout * 2, 8000); } // support humanize format diff --git a/deps/npm/node_modules/agentkeepalive/package.json b/deps/npm/node_modules/agentkeepalive/package.json index 9027d554d1b6cc..aba00ea14847a1 100644 --- a/deps/npm/node_modules/agentkeepalive/package.json +++ b/deps/npm/node_modules/agentkeepalive/package.json @@ -1,6 +1,6 @@ { "name": "agentkeepalive", - "version": "4.1.4", + "version": "4.2.0", "description": "Missing keepalive http.Agent", "main": "index.js", "browser": "browser.js", @@ -59,7 +59,7 @@ "os": { "github": "linux" }, - "version": "8, 10, 12, 14" + "version": "8, 10, 12, 14, 16" }, "author": "fengmk2 (https://fengmk2.com)", "license": "MIT" diff --git a/deps/npm/node_modules/hosted-git-info/git-host-info.js b/deps/npm/node_modules/hosted-git-info/git-host-info.js index d4919344c77bf1..ba55248e7d62d3 100644 --- a/deps/npm/node_modules/hosted-git-info/git-host-info.js +++ b/deps/npm/node_modules/hosted-git-info/git-host-info.js @@ -139,6 +139,36 @@ gitHosts.gist = Object.assign({}, defaults, { } }) +gitHosts.sourcehut = Object.assign({}, defaults, { + protocols: ['git+ssh:', 'https:'], + domain: 'git.sr.ht', + treepath: 'tree', + browsefiletemplate: ({ domain, user, project, committish, treepath, path, fragment, hashformat }) => `https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'main')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, + filetemplate: ({ domain, user, project, committish, path }) => `https://${domain}/${user}/${project}/blob/${maybeEncode(committish) || 'main'}/${path}`, + httpstemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, + tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || 'main'}.tar.gz`, + bugstemplate: ({ domain, user, project }) => `https://todo.sr.ht/${user}/${project}`, + docstemplate: ({ domain, user, project, treepath, committish }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}#readme`, + extract: (url) => { + let [, user, project, aux] = url.pathname.split('/', 4) + + // tarball url + if (['archive'].includes(aux)) { + return + } + + if (project && project.endsWith('.git')) { + project = project.slice(0, -4) + } + + if (!user || !project) { + return + } + + return { user, project, committish: url.hash.slice(1) } + } +}) + const names = Object.keys(gitHosts) gitHosts.byShortcut = {} gitHosts.byDomain = {} diff --git a/deps/npm/node_modules/hosted-git-info/package.json b/deps/npm/node_modules/hosted-git-info/package.json index b7e2ee28e5b117..b145e62240805d 100644 --- a/deps/npm/node_modules/hosted-git-info/package.json +++ b/deps/npm/node_modules/hosted-git-info/package.json @@ -1,6 +1,6 @@ { "name": "hosted-git-info", - "version": "4.0.2", + "version": "4.1.0", "description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab", "main": "index.js", "repository": { @@ -34,7 +34,7 @@ "devDependencies": { "standard": "^16.0.3", "standard-version": "^9.1.0", - "tap": "^14.11.0" + "tap": "^15.1.6" }, "files": [ "index.js", @@ -46,7 +46,6 @@ }, "tap": { "color": 1, - "coverage": true, - "esm": false + "coverage": true } } diff --git a/deps/npm/node_modules/is-core-module/core.json b/deps/npm/node_modules/is-core-module/core.json index 5cd90d1732b6b4..8f4ad128989662 100644 --- a/deps/npm/node_modules/is-core-module/core.json +++ b/deps/npm/node_modules/is-core-module/core.json @@ -83,6 +83,8 @@ "node:querystring": [">= 14.18 && < 15", ">= 16"], "readline": true, "node:readline": [">= 14.18 && < 15", ">= 16"], + "readline/promises": ">= 17", + "node:readline/promises": ">= 17", "repl": true, "node:repl": [">= 14.18 && < 15", ">= 16"], "smalloc": ">= 0.11.5 && < 3", diff --git a/deps/npm/node_modules/is-core-module/package.json b/deps/npm/node_modules/is-core-module/package.json index 2b58b2332cd8e0..78470592517bb9 100644 --- a/deps/npm/node_modules/is-core-module/package.json +++ b/deps/npm/node_modules/is-core-module/package.json @@ -1,6 +1,6 @@ { "name": "is-core-module", - "version": "2.7.0", + "version": "2.8.0", "description": "Is this specifier a node.js core module?", "main": "index.js", "sideEffects": false, diff --git a/deps/npm/node_modules/is-core-module/test/index.js b/deps/npm/node_modules/is-core-module/test/index.js index 392678e85c6846..b688cd22f645f3 100644 --- a/deps/npm/node_modules/is-core-module/test/index.js +++ b/deps/npm/node_modules/is-core-module/test/index.js @@ -6,7 +6,7 @@ var semver = require('semver'); var isCore = require('../'); var data = require('../core.json'); -var supportsNodePrefix = semver.satisfies(process.versions.node, '>= 16', { includePrerelease: true }); +var supportsNodePrefix = semver.satisfies(process.versions.node, '^14.18 || >= 16', { includePrerelease: true }); test('core modules', function (t) { t.test('isCore()', function (st) { diff --git a/deps/npm/node_modules/libnpmaccess/README.md b/deps/npm/node_modules/libnpmaccess/README.md new file mode 100644 index 00000000000000..c079344597968a --- /dev/null +++ b/deps/npm/node_modules/libnpmaccess/README.md @@ -0,0 +1,247 @@ +# libnpmaccess + +[![npm version](https://img.shields.io/npm/v/libnpmaccess.svg)](https://npm.im/libnpmaccess) +[![license](https://img.shields.io/npm/l/libnpmaccess.svg)](https://npm.im/libnpmaccess) +[![GitHub Actions](https://github.com/npm/libnpmaccess/workflows/Node%20CI/badge.svg)](https://github.com/npm/libnpmaccess/actions?query=workflow%3A%22Node+CI%22) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmaccess/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmaccess?branch=latest) + +[`libnpmaccess`](https://github.com/npm/libnpmaccess) is a Node.js +library that provides programmatic access to the guts of the npm CLI's `npm +access` command and its various subcommands. This includes managing account 2FA, +listing packages and permissions, looking at package collaborators, and defining +package permissions for users, orgs, and teams. + +## Example + +```javascript +const access = require('libnpmaccess') + +// List all packages @zkat has access to on the npm registry. +console.log(Object.keys(await access.lsPackages('zkat'))) +``` + +## Table of Contents + +* [Installing](#install) +* [Example](#example) +* [Contributing](#contributing) +* [API](#api) + * [access opts](#opts) + * [`public()`](#public) + * [`restricted()`](#restricted) + * [`grant()`](#grant) + * [`revoke()`](#revoke) + * [`tfaRequired()`](#tfa-required) + * [`tfaNotRequired()`](#tfa-not-required) + * [`lsPackages()`](#ls-packages) + * [`lsPackages.stream()`](#ls-packages-stream) + * [`lsCollaborators()`](#ls-collaborators) + * [`lsCollaborators.stream()`](#ls-collaborators-stream) + +### Install + +`$ npm install libnpmaccess` + +### API + +#### `opts` for `libnpmaccess` commands + +`libnpmaccess` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch). +All options are passed through directly to that library, so please refer to [its +own `opts` +documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options) +for options that can be passed in. + +A couple of options of note for those in a hurry: + +* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs. +* `opts.otp` - certain operations will require an OTP token to be passed in. If a `libnpmaccess` command fails with `err.code === EOTP`, please retry the request with `{otp: <2fa token>}` + +#### `> access.public(spec, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. + +Makes package described by `spec` public. + +##### Example + +```javascript +await access.public('@foo/bar', {token: 'myregistrytoken'}) +// `@foo/bar` is now public +``` + +#### `> access.restricted(spec, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. + +Makes package described by `spec` private/restricted. + +##### Example + +```javascript +await access.restricted('@foo/bar', {token: 'myregistrytoken'}) +// `@foo/bar` is now private +``` + +#### `> access.grant(spec, team, permissions, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. `team` must be a fully-qualified team name, in the `scope:team` +format, with or without the `@` prefix, and the team must be a valid team within +that scope. `permissions` must be one of `'read-only'` or `'read-write'`. + +Grants `read-only` or `read-write` permissions for a certain package to a team. + +##### Example + +```javascript +await access.grant('@foo/bar', '@foo:myteam', 'read-write', { + token: 'myregistrytoken' +}) +// `@foo/bar` is now read/write enabled for the @foo:myteam team. +``` + +#### `> access.revoke(spec, team, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. `team` must be a fully-qualified team name, in the `scope:team` +format, with or without the `@` prefix, and the team must be a valid team within +that scope. `permissions` must be one of `'read-only'` or `'read-write'`. + +Removes access to a package from a certain team. + +##### Example + +```javascript +await access.revoke('@foo/bar', '@foo:myteam', { + token: 'myregistrytoken' +}) +// @foo:myteam can no longer access `@foo/bar` +``` + +#### `> access.tfaRequired(spec, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. + +Makes it so publishing or managing a package requires using 2FA tokens to +complete operations. + +##### Example + +```javascript +await access.tfaRequires('lodash', {token: 'myregistrytoken'}) +// Publishing or changing dist-tags on `lodash` now require OTP to be enabled. +``` + +#### `> access.tfaNotRequired(spec, [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. + +Disabled the package-level 2FA requirement for `spec`. Note that you will need +to pass in an `otp` token in `opts` in order to complete this operation. + +##### Example + +```javascript +await access.tfaNotRequired('lodash', {otp: '123654', token: 'myregistrytoken'}) +// Publishing or editing dist-tags on `lodash` no longer requires OTP to be +// enabled. +``` + +#### `> access.lsPackages(entity, [opts]) -> Promise` + +`entity` must be either a valid org or user name, or a fully-qualified team name +in the `scope:team` format, with or without the `@` prefix. + +Lists out packages a user, org, or team has access to, with corresponding +permissions. Packages that the access token does not have access to won't be +listed. + +In order to disambiguate between users and orgs, two requests may end up being +made when listing orgs or users. + +For a streamed version of these results, see +[`access.lsPackages.stream()`](#ls-package-stream). + +##### Example + +```javascript +await access.lsPackages('zkat', { + token: 'myregistrytoken' +}) +// Lists all packages `@zkat` has access to on the registry, and the +// corresponding permissions. +``` + +#### `> access.lsPackages.stream(scope, [team], [opts]) -> Stream` + +`entity` must be either a valid org or user name, or a fully-qualified team name +in the `scope:team` format, with or without the `@` prefix. + +Streams out packages a user, org, or team has access to, with corresponding +permissions, with each stream entry being formatted like `[packageName, +permissions]`. Packages that the access token does not have access to won't be +listed. + +In order to disambiguate between users and orgs, two requests may end up being +made when listing orgs or users. + +The returned stream is a valid `asyncIterator`. + +##### Example + +```javascript +for await (let [pkg, perm] of access.lsPackages.stream('zkat')) { + console.log('zkat has', perm, 'access to', pkg) +} +// zkat has read-write access to eggplant +// zkat has read-only access to @npmcorp/secret +``` + +#### `> access.lsCollaborators(spec, [user], [opts]) -> Promise` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. `user` must be a valid user name, with or without the `@` +prefix. + +Lists out access privileges for a certain package. Will only show permissions +for packages to which you have at least read access. If `user` is passed in, the +list is filtered only to teams _that_ user happens to belong to. + +For a streamed version of these results, see [`access.lsCollaborators.stream()`](#ls-collaborators-stream). + +##### Example + +```javascript +await access.lsCollaborators('@npm/foo', 'zkat', { + token: 'myregistrytoken' +}) +// Lists all teams with access to @npm/foo that @zkat belongs to. +``` + +#### `> access.lsCollaborators.stream(spec, [user], [opts]) -> Stream` + +`spec` must be an [`npm-package-arg`](https://npm.im/npm-package-arg)-compatible +registry spec. `user` must be a valid user name, with or without the `@` +prefix. + +Stream out access privileges for a certain package, with each entry in `[user, +permissions]` format. Will only show permissions for packages to which you have +at least read access. If `user` is passed in, the list is filtered only to teams +_that_ user happens to belong to. + +The returned stream is a valid `asyncIterator`. + +##### Example + +```javascript +for await (let [usr, perm] of access.lsCollaborators.stream('npm')) { + console.log(usr, 'has', perm, 'access to npm') +} +// zkat has read-write access to npm +// iarna has read-write access to npm +``` diff --git a/deps/npm/node_modules/libnpmaccess/index.js b/deps/npm/node_modules/libnpmaccess/lib/index.js similarity index 95% rename from deps/npm/node_modules/libnpmaccess/index.js rename to deps/npm/node_modules/libnpmaccess/lib/index.js index 883110b2899186..925f742921ad46 100644 --- a/deps/npm/node_modules/libnpmaccess/index.js +++ b/deps/npm/node_modules/libnpmaccess/lib/index.js @@ -36,7 +36,7 @@ function setAccess (spec, access, opts = {}) { ...opts, method: 'POST', body: { access }, - spec + spec, }).then(() => true) }) } @@ -47,7 +47,9 @@ cmd.grant = (spec, entity, permissions, opts = {}) => { const { scope, team } = splitEntity(entity) validate('OSSSO', [spec, scope, team, permissions, opts]) if (permissions !== 'read-write' && permissions !== 'read-only') { - throw new Error('`permissions` must be `read-write` or `read-only`. Got `' + permissions + '` instead') + throw new Error( + '`permissions` must be `read-write` or `read-only`. Got `' + + permissions + '` instead') } const uri = `/-/team/${eu(scope)}/${eu(team)}/package` return npmFetch(uri, { @@ -56,7 +58,7 @@ cmd.grant = (spec, entity, permissions, opts = {}) => { body: { package: spec.name, permissions }, scope, spec, - ignoreBody: true + ignoreBody: true, }) .then(() => true) }) @@ -74,7 +76,7 @@ cmd.revoke = (spec, entity, opts = {}) => { body: { package: spec.name }, scope, spec, - ignoreBody: true + ignoreBody: true, }) .then(() => true) }) @@ -106,7 +108,7 @@ cmd.lsPackages.stream = (entity, opts = {}) => { const nextOpts = { ...opts, query: { format: 'cli' }, - mapJSON + mapJSON, } const ret = new Minipass({ objectMode: true }) npmFetch.json.stream(uri, '*', nextOpts) @@ -153,7 +155,7 @@ cmd.lsCollaborators.stream = (spec, user, opts) => { return npmFetch.json.stream(uri, '*', { ...opts, query: { format: 'cli', user: user || undefined }, - mapJSON + mapJSON, }) } @@ -169,7 +171,7 @@ function setRequires2fa (spec, required, opts = {}) { method: 'POST', body: { publish_requires_tfa: required }, spec, - ignoreBody: true + ignoreBody: true, }).then(() => true) }) } diff --git a/deps/npm/node_modules/libnpmaccess/package.json b/deps/npm/node_modules/libnpmaccess/package.json index 23d4b444ca0701..8d2ba3ad765fd2 100644 --- a/deps/npm/node_modules/libnpmaccess/package.json +++ b/deps/npm/node_modules/libnpmaccess/package.json @@ -1,20 +1,26 @@ { "name": "libnpmaccess", - "version": "4.0.3", + "version": "5.0.0", "description": "programmatic library for `npm access` commands", - "author": "Kat Marchán ", + "author": "GitHub Inc.", "license": "ISC", + "main": "lib/index.js", "scripts": { "preversion": "npm test", "postversion": "npm publish", "postpublish": "git push origin --follow-tags", - "lint": "standard", - "test": "tap" + "lint": "eslint '**/*.js'", + "test": "tap", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "snap": "tap", + "posttest": "npm run lint" }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "nock": "^12.0.1", - "standard": "^14.3.0", - "tap": "^14.11.0" + "tap": "^15.1.0" }, "repository": { "type": "git", @@ -29,9 +35,16 @@ "npm-registry-fetch": "^11.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" }, "tap": { "check-coverage": true + }, + "files": [ + "bin", + "lib" + ], + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmaccess/test/fixtures/tnock.js b/deps/npm/node_modules/libnpmaccess/test/fixtures/tnock.js deleted file mode 100644 index 00b6e160e10192..00000000000000 --- a/deps/npm/node_modules/libnpmaccess/test/fixtures/tnock.js +++ /dev/null @@ -1,12 +0,0 @@ -'use strict' - -const nock = require('nock') - -module.exports = tnock -function tnock (t, host) { - const server = nock(host) - t.tearDown(function () { - server.done() - }) - return server -} diff --git a/deps/npm/node_modules/libnpmaccess/test/index.js b/deps/npm/node_modules/libnpmaccess/test/index.js deleted file mode 100644 index c6d939c3d8c55c..00000000000000 --- a/deps/npm/node_modules/libnpmaccess/test/index.js +++ /dev/null @@ -1,417 +0,0 @@ -'use strict' - -const t = require('tap') -const tnock = require('./fixtures/tnock.js') - -const access = require('../index.js') - -const REG = 'http://localhost:1337' -const OPTS = { - registry: REG -} - -t.test('access public', t => { - tnock(t, REG).post( - '/-/package/%40foo%2Fbar/access', { access: 'public' } - ).reply(200) - return access.public('@foo/bar', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access public - failure', t => { - tnock(t, REG).post( - '/-/package/%40foo%2Fbar/access', { access: 'public' } - ).reply(418) - return access.public('@foo/bar', OPTS) - .catch(err => { - t.equals(err.statusCode, 418, 'fails with code from registry') - }) -}) - -t.test('access restricted', t => { - tnock(t, REG).post( - '/-/package/%40foo%2Fbar/access', { access: 'restricted' } - ).reply(200) - return access.restricted('@foo/bar', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access restricted - failure', t => { - tnock(t, REG).post( - '/-/package/%40foo%2Fbar/access', { access: 'restricted' } - ).reply(418) - return access.restricted('@foo/bar', OPTS) - .catch(err => { - t.equals(err.statusCode, 418, 'fails with code from registry') - }) -}) - -t.test('access 2fa-required', t => { - tnock(t, REG).post('/-/package/%40foo%2Fbar/access', { - publish_requires_tfa: true - }).reply(200, { ok: true }) - return access.tfaRequired('@foo/bar', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access 2fa-not-required', t => { - tnock(t, REG).post('/-/package/%40foo%2Fbar/access', { - publish_requires_tfa: false - }).reply(200, { ok: true }) - return access.tfaNotRequired('@foo/bar', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access grant basic read-write', t => { - tnock(t, REG).put('/-/team/myorg/myteam/package', { - package: '@foo/bar', - permissions: 'read-write' - }).reply(201) - return access.grant( - '@foo/bar', 'myorg:myteam', 'read-write', OPTS - ).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access grant basic read-only', t => { - tnock(t, REG).put('/-/team/myorg/myteam/package', { - package: '@foo/bar', - permissions: 'read-only' - }).reply(201) - return access.grant( - '@foo/bar', 'myorg:myteam', 'read-only', OPTS - ).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access grant bad perm', t => { - return access.grant( - '@foo/bar', 'myorg:myteam', 'unknown', OPTS - ).then(ret => { - throw new Error('should not have succeeded') - }, err => { - t.match( - err.message, - /must be.*read-write.*read-only/, - 'only read-write and read-only are accepted' - ) - }) -}) - -t.test('access grant no entity', t => { - return access.grant( - '@foo/bar', undefined, 'read-write', OPTS - ).then(ret => { - throw new Error('should not have succeeded') - }, err => { - t.match( - err.message, - /Expected string/, - 'passing undefined entity gives useful error' - ) - }) -}) - -t.test('access grant basic unscoped', t => { - tnock(t, REG).put('/-/team/myorg/myteam/package', { - package: 'bar', - permissions: 'read-write' - }).reply(201) - return access.grant( - 'bar', 'myorg:myteam', 'read-write', OPTS - ).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access grant no opts passed', t => { - // NOTE: mocking real url, because no opts variable means `registry` value - // will be defauled to real registry url - tnock(t, 'https://registry.npmjs.org') - .put('/-/team/myorg/myteam/package', { - package: 'bar', - permissions: 'read-write' - }) - .reply(201) - return access.grant('bar', 'myorg:myteam', 'read-write') - .then(ret => { - t.equals(ret, true, 'request succeeded') - }) -}) - -t.test('access revoke basic', t => { - tnock(t, REG).delete('/-/team/myorg/myteam/package', { - package: '@foo/bar' - }).reply(200) - return access.revoke('@foo/bar', 'myorg:myteam', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access revoke basic unscoped', t => { - tnock(t, REG).delete('/-/team/myorg/myteam/package', { - package: 'bar' - }).reply(200, { accessChanged: true }) - return access.revoke('bar', 'myorg:myteam', OPTS).then(ret => { - t.deepEqual(ret, true, 'request succeeded') - }) -}) - -t.test('access revoke no opts passed', t => { - // NOTE: mocking real url, because no opts variable means `registry` value - // will be defauled to real registry url - tnock(t, 'https://registry.npmjs.org') - .delete('/-/team/myorg/myteam/package', { - package: 'bar' - }) - .reply(201) - return access.revoke('bar', 'myorg:myteam') - .then(ret => { - t.equals(ret, true, 'request succeeded') - }) -}) - -t.test('ls-packages on team', t => { - const serverPackages = { - '@foo/bar': 'write', - '@foo/util': 'read', - '@foo/other': 'shrödinger' - } - const clientPackages = { - '@foo/bar': 'read-write', - '@foo/util': 'read-only', - '@foo/other': 'shrödinger' - } - tnock(t, REG).get( - '/-/team/myorg/myteam/package?format=cli' - ).reply(200, serverPackages) - return access.lsPackages('myorg:myteam', OPTS).then(data => { - t.deepEqual(data, clientPackages, 'got client package info') - }) -}) - -t.test('ls-packages on org', t => { - const serverPackages = { - '@foo/bar': 'write', - '@foo/util': 'read', - '@foo/other': 'shrödinger' - } - const clientPackages = { - '@foo/bar': 'read-write', - '@foo/util': 'read-only', - '@foo/other': 'shrödinger' - } - tnock(t, REG).get( - '/-/org/myorg/package?format=cli' - ).reply(200, serverPackages) - return access.lsPackages('myorg', OPTS).then(data => { - t.deepEqual(data, clientPackages, 'got client package info') - }) -}) - -t.test('ls-packages on user', t => { - const serverPackages = { - '@foo/bar': 'write', - '@foo/util': 'read', - '@foo/other': 'shrödinger' - } - const clientPackages = { - '@foo/bar': 'read-write', - '@foo/util': 'read-only', - '@foo/other': 'shrödinger' - } - const srv = tnock(t, REG) - srv.get('/-/org/myuser/package?format=cli').reply(404, { error: 'not found' }) - srv.get('/-/user/myuser/package?format=cli').reply(200, serverPackages) - return access.lsPackages('myuser', OPTS).then(data => { - t.deepEqual(data, clientPackages, 'got client package info') - }) -}) - -t.test('ls-packages error on team', t => { - tnock(t, REG).get('/-/team/myorg/myteam/package?format=cli').reply(404) - return access.lsPackages('myorg:myteam', OPTS).then( - () => { throw new Error('should not have succeeded') }, - err => t.equal(err.code, 'E404', 'spit out 404 directly if team provided') - ) -}) - -t.test('ls-packages error on user', t => { - const srv = tnock(t, REG) - srv.get('/-/org/myuser/package?format=cli').reply(404, { error: 'not found' }) - srv.get('/-/user/myuser/package?format=cli').reply(404, { error: 'not found' }) - return access.lsPackages('myuser', OPTS).then( - () => { throw new Error('should not have succeeded') }, - err => t.equal(err.code, 'E404', 'spit out 404 if both reqs fail') - ) -}) - -t.test('ls-packages bad response', t => { - tnock(t, REG).get( - '/-/team/myorg/myteam/package?format=cli' - ).reply(200, JSON.stringify(null)) - return access.lsPackages('myorg:myteam', OPTS).then(data => { - t.deepEqual(data, null, 'succeeds with null') - }) -}) - -t.test('ls-packages stream', t => { - const serverPackages = { - '@foo/bar': 'write', - '@foo/util': 'read', - '@foo/other': 'shrödinger' - } - const clientPackages = [ - ['@foo/bar', 'read-write'], - ['@foo/util', 'read-only'], - ['@foo/other', 'shrödinger'] - ] - tnock(t, REG).get( - '/-/team/myorg/myteam/package?format=cli' - ).reply(200, serverPackages) - return access.lsPackages.stream('myorg:myteam', OPTS) - .collect() - .then(data => { - t.deepEqual(data, clientPackages, 'got streamed client package info') - }) -}) - -t.test('ls-packages stream no opts', t => { - const serverPackages = { - '@foo/bar': 'write', - '@foo/util': 'read', - '@foo/other': 'shrödinger' - } - const clientPackages = [ - ['@foo/bar', 'read-write'], - ['@foo/util', 'read-only'], - ['@foo/other', 'shrödinger'] - ] - // NOTE: mocking real url, because no opts variable means `registry` value - // will be defauled to real registry url - tnock(t, 'https://registry.npmjs.org') - .get('/-/team/myorg/myteam/package?format=cli') - .reply(200, serverPackages) - return access.lsPackages.stream('myorg:myteam') - .collect() - .then(data => { - t.deepEqual(data, clientPackages, 'got streamed client package info') - }) -}) - -t.test('ls-collaborators', t => { - const serverCollaborators = { - 'myorg:myteam': 'write', - 'myorg:anotherteam': 'read', - 'myorg:thirdteam': 'special-case' - } - const clientCollaborators = { - 'myorg:myteam': 'read-write', - 'myorg:anotherteam': 'read-only', - 'myorg:thirdteam': 'special-case' - } - tnock(t, REG).get( - '/-/package/%40foo%2Fbar/collaborators?format=cli' - ).reply(200, serverCollaborators) - return access.lsCollaborators('@foo/bar', OPTS).then(data => { - t.deepEqual(data, clientCollaborators, 'got collaborators') - }) -}) - -t.test('ls-collaborators stream', t => { - const serverCollaborators = { - 'myorg:myteam': 'write', - 'myorg:anotherteam': 'read', - 'myorg:thirdteam': 'special-case' - } - const clientCollaborators = [ - ['myorg:myteam', 'read-write'], - ['myorg:anotherteam', 'read-only'], - ['myorg:thirdteam', 'special-case'] - ] - tnock(t, REG).get( - '/-/package/%40foo%2Fbar/collaborators?format=cli' - ).reply(200, serverCollaborators) - return access.lsCollaborators.stream('@foo/bar', OPTS) - .collect() - .then(data => { - t.deepEqual(data, clientCollaborators, 'got collaborators') - }) -}) - -t.test('ls-collaborators w/scope', t => { - const serverCollaborators = { - 'myorg:myteam': 'write', - 'myorg:anotherteam': 'read', - 'myorg:thirdteam': 'special-case' - } - const clientCollaborators = { - 'myorg:myteam': 'read-write', - 'myorg:anotherteam': 'read-only', - 'myorg:thirdteam': 'special-case' - } - tnock(t, REG).get( - '/-/package/%40foo%2Fbar/collaborators?format=cli&user=zkat' - ).reply(200, serverCollaborators) - return access.lsCollaborators('@foo/bar', 'zkat', OPTS).then(data => { - t.deepEqual(data, clientCollaborators, 'got collaborators') - }) -}) - -t.test('ls-collaborators w/o scope', t => { - const serverCollaborators = { - 'myorg:myteam': 'write', - 'myorg:anotherteam': 'read', - 'myorg:thirdteam': 'special-case' - } - const clientCollaborators = { - 'myorg:myteam': 'read-write', - 'myorg:anotherteam': 'read-only', - 'myorg:thirdteam': 'special-case' - } - tnock(t, REG).get( - '/-/package/bar/collaborators?format=cli&user=zkat' - ).reply(200, serverCollaborators) - return access.lsCollaborators('bar', 'zkat', OPTS).then(data => { - t.deepEqual(data, clientCollaborators, 'got collaborators') - }) -}) - -t.test('ls-collaborators bad response', t => { - tnock(t, REG).get( - '/-/package/%40foo%2Fbar/collaborators?format=cli' - ).reply(200, JSON.stringify(null)) - return access.lsCollaborators('@foo/bar', null, OPTS).then(data => { - t.deepEqual(data, null, 'succeeds with null') - }) -}) - -t.test('error on non-registry specs', t => { - const resolve = () => { throw new Error('should not succeed') } - const reject = err => t.match( - err.message, /spec.*must be a registry spec/, 'registry spec required' - ) - return Promise.all([ - access.public('githubusername/reponame').then(resolve, reject), - access.restricted('foo/bar').then(resolve, reject), - access.grant('foo/bar', 'myorg', 'myteam', 'read-only').then(resolve, reject), - access.revoke('foo/bar', 'myorg', 'myteam').then(resolve, reject), - access.lsCollaborators('foo/bar').then(resolve, reject), - access.tfaRequired('foo/bar').then(resolve, reject), - access.tfaNotRequired('foo/bar').then(resolve, reject) - ]) -}) - -t.test('edit', t => { - t.equal(typeof access.edit, 'function', 'access.edit exists') - t.throws(() => { - access.edit() - }, /Not implemented/, 'directly throws NIY message') - t.done() -}) diff --git a/deps/npm/node_modules/libnpmdiff/index.js b/deps/npm/node_modules/libnpmdiff/lib/index.js similarity index 89% rename from deps/npm/node_modules/libnpmdiff/index.js rename to deps/npm/node_modules/libnpmdiff/lib/index.js index 6e68e6c4c43769..10532c1990dc4a 100644 --- a/deps/npm/node_modules/libnpmdiff/index.js +++ b/deps/npm/node_modules/libnpmdiff/lib/index.js @@ -1,8 +1,8 @@ const pacote = require('pacote') -const formatDiff = require('./lib/format-diff.js') -const getTarball = require('./lib/tarball.js') -const untar = require('./lib/untar.js') +const formatDiff = require('./format-diff.js') +const getTarball = require('./tarball.js') +const untar = require('./untar.js') // TODO: we test this condition in the diff command // so this error probably doesnt need to be here. Or diff --git a/deps/npm/node_modules/libnpmdiff/package.json b/deps/npm/node_modules/libnpmdiff/package.json index 129d9b90cd7fe6..24846f39cf4fb5 100644 --- a/deps/npm/node_modules/libnpmdiff/package.json +++ b/deps/npm/node_modules/libnpmdiff/package.json @@ -1,14 +1,15 @@ { "name": "libnpmdiff", - "version": "2.0.4", + "version": "3.0.0", "description": "The registry diff", "repository": "https://github.com/npm/libnpmdiff", + "main": "lib/index.js", "files": [ - "index.js", + "bin", "lib" ], "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" }, "keywords": [ "npm", @@ -28,24 +29,21 @@ "license": "ISC", "scripts": { "eslint": "eslint", - "lint": "npm run eslint -- index.js \"lib/**/*.js\" \"test/*.js\"", + "lint": "eslint '**/*.js'", "lintfix": "npm run lint -- --fix", - "test": "tap test/*.js", + "test": "tap", "posttest": "npm run lint", - "snap": "tap test/*.js", + "snap": "tap", "preversion": "npm test", "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" + "prepublishOnly": "git push origin --follow-tags", + "postlint": "npm-template-check" }, "tap": { "check-coverage": true }, - "standard": { - "ignore": [ - "/tap-snapshots/" - ] - }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "eslint": "^8.1.0", "tap": "^15.0.9" }, @@ -58,5 +56,8 @@ "npm-package-arg": "^8.1.4", "pacote": "^12.0.0", "tar": "^6.1.0" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmexec/README.md b/deps/npm/node_modules/libnpmexec/README.md new file mode 100644 index 00000000000000..a48552714d5e6b --- /dev/null +++ b/deps/npm/node_modules/libnpmexec/README.md @@ -0,0 +1,50 @@ +# libnpmexec + +[![npm version](https://img.shields.io/npm/v/libnpmexec.svg)](https://npm.im/libnpmexec) +[![license](https://img.shields.io/npm/l/libnpmexec.svg)](https://npm.im/libnpmexec) +[![GitHub Actions](https://github.com/npm/libnpmexec/workflows/node-ci/badge.svg)](https://github.com/npm/libnpmexec/actions?query=workflow%3Anode-ci) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmexec/badge.svg?branch=main)](https://coveralls.io/github/npm/libnpmexec?branch=main) + +The `npm exec` (`npx`) Programmatic API + +## Install + +`npm install libnpmexec` + +## Usage: + +```js +const libexec = require('libnpmexec') +await libexec({ + args: ['yosay', 'Bom dia!'], + cache: '~/.npm/_cacache', + npxCache: '~/.npm/_npx', + yes: true, +}) +``` + +## API: + +### `libexec(opts)` + +- `opts`: + - `args`: List of pkgs to execute **Array**, defaults to `[]` + - `call`: An alternative command to run when using `packages` option **String**, defaults to empty string. + - `cache`: The path location to where the npm cache folder is placed **String** + - `npxCache`: The path location to where the npx cache folder is placed **String** + - `color`: Output should use color? **Boolean**, defaults to `false` + - `localBin`: Location to the `node_modules/.bin` folder of the local project to start scanning for bin files **String**, defaults to `./node_modules/.bin`. **libexec** will walk up the directory structure looking for `node_modules/.bin` folders in parent folders that might satisfy the current `arg` and will use that bin if found. + - `locationMsg`: Overrides "at location" message when entering interactive mode **String** + - `log`: Sets an optional logger **Object**, defaults to `proc-log` module usage. + - `globalBin`: Location to the global space bin folder, same as: `$(npm bin -g)` **String**, defaults to empty string. + - `output`: A function to print output to **Function** + - `packages`: A list of packages to be used (possibly fetch from the registry) **Array**, defaults to `[]` + - `path`: Location to where to read local project info (`package.json`) **String**, defaults to `.` + - `runPath`: Location to where to execute the script **String**, defaults to `.` + - `scriptShell`: Default shell to be used **String**, defaults to `sh` on POSIX systems, `process.env.ComSpec` OR `cmd` on Windows + - `yes`: Should skip download confirmation prompt when fetching missing packages from the registry? **Boolean** + - `registry`, `cache`, and more options that are forwarded to [@npmcli/arborist](https://github.com/npm/arborist/) and [pacote](https://github.com/npm/pacote/#options) **Object** + +## LICENSE + +[ISC](./LICENSE) diff --git a/deps/npm/node_modules/libnpmexec/lib/cache-install-dir.js b/deps/npm/node_modules/libnpmexec/lib/cache-install-dir.js index 4fb534f7dfe125..77466938762d08 100644 --- a/deps/npm/node_modules/libnpmexec/lib/cache-install-dir.js +++ b/deps/npm/node_modules/libnpmexec/lib/cache-install-dir.js @@ -3,8 +3,9 @@ const crypto = require('crypto') const { resolve } = require('path') const cacheInstallDir = ({ npxCache, packages }) => { - if (!npxCache) + if (!npxCache) { throw new Error('Must provide a valid npxCache path') + } // only packages not found in ${prefix}/node_modules return resolve(npxCache, getHash(packages)) diff --git a/deps/npm/node_modules/libnpmexec/lib/file-exists.js b/deps/npm/node_modules/libnpmexec/lib/file-exists.js index a115be14b00427..05dddc89f08f9b 100644 --- a/deps/npm/node_modules/libnpmexec/lib/file-exists.js +++ b/deps/npm/node_modules/libnpmexec/lib/file-exists.js @@ -13,11 +13,13 @@ const localFileExists = async (dir, binName, root = '/') => { for (const path of walkUp(resolve(dir))) { const binDir = resolve(path, 'node_modules', '.bin') - if (await fileExists(resolve(binDir, binName))) + if (await fileExists(resolve(binDir, binName))) { return binDir + } - if (path.toLowerCase() === root) + if (path.toLowerCase() === root) { return false + } } return false diff --git a/deps/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js b/deps/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js index 038095b5023007..8ebc0e7a18bd25 100644 --- a/deps/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +++ b/deps/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js @@ -3,13 +3,15 @@ const getBinFromManifest = (mani) => { // otherwise if there's 1 bin or all bin value is the same (alias), use // that, otherwise fail const bin = mani.bin || {} - if (new Set(Object.values(bin)).size === 1) + if (new Set(Object.values(bin)).size === 1) { return Object.keys(bin)[0] + } // XXX probably a util to parse this better? const name = mani.name.replace(/^@[^/]+\//, '') - if (bin[name]) + if (bin[name]) { return name + } // XXX need better error message throw Object.assign(new Error('could not determine executable to run'), { diff --git a/deps/npm/node_modules/libnpmexec/lib/index.js b/deps/npm/node_modules/libnpmexec/lib/index.js index 3f1463d767a8e0..facafb035d3289 100644 --- a/deps/npm/node_modules/libnpmexec/lib/index.js +++ b/deps/npm/node_modules/libnpmexec/lib/index.js @@ -59,8 +59,9 @@ const exec = async (opts) => { }) // nothing to maybe install, skip the arborist dance - if (!call && !args.length && !packages.length) + if (!call && !args.length && !packages.length) { return await _run() + } const needPackageCommandSwap = args.length && !packages.length // if there's an argument and no package has been explicitly asked for @@ -79,8 +80,9 @@ const exec = async (opts) => { binExists = true } - if (binExists) + if (binExists) { return await _run() + } packages.push(args[0]) } @@ -109,8 +111,9 @@ const exec = async (opts) => { }) })) - if (needPackageCommandSwap) + if (needPackageCommandSwap) { args[0] = getBinFromManifest(manis[0]) + } // figure out whether we need to install stuff, or if local is fine const localArb = new Arborist({ @@ -150,8 +153,9 @@ const exec = async (opts) => { if (add.length) { if (!yes) { // set -n to always say no - if (yes === false) + if (yes === false) { throw new Error('canceled') + } if (noTTY() || ciDetect()) { log.warn('exec', `The following package${ @@ -165,11 +169,13 @@ const exec = async (opts) => { const prompt = `Need to install the following packages:\n${ addList }Ok to proceed? ` - if (typeof log.clearProgress === 'function') + if (typeof log.clearProgress === 'function') { log.clearProgress() + } const confirm = await read({ prompt, default: 'y' }) - if (confirm.trim().toLowerCase().charAt(0) !== 'y') + if (confirm.trim().toLowerCase().charAt(0) !== 'y') { throw new Error('canceled') + } } } await arb.reify({ diff --git a/deps/npm/node_modules/libnpmexec/lib/manifest-missing.js b/deps/npm/node_modules/libnpmexec/lib/manifest-missing.js index 47146809609923..aec1281e3a4bf9 100644 --- a/deps/npm/node_modules/libnpmexec/lib/manifest-missing.js +++ b/deps/npm/node_modules/libnpmexec/lib/manifest-missing.js @@ -3,12 +3,14 @@ const manifestMissing = ({ tree, manifest }) => { // true means we need to install it const child = tree.children.get(manifest.name) // if no child, we have to load it - if (!child) + if (!child) { return true + } // if no version/tag specified, allow whatever's there - if (manifest._from === `${manifest.name}@`) + if (manifest._from === `${manifest.name}@`) { return false + } // otherwise the version has to match what we WOULD get return child.version !== manifest.version diff --git a/deps/npm/node_modules/libnpmexec/lib/run-script.js b/deps/npm/node_modules/libnpmexec/lib/run-script.js index 819dacb8baee86..851f5c60bd0f10 100644 --- a/deps/npm/node_modules/libnpmexec/lib/run-script.js +++ b/deps/npm/node_modules/libnpmexec/lib/run-script.js @@ -41,16 +41,18 @@ const run = async ({ }, } - if (log && log.disableProgress) + if (log && log.disableProgress) { log.disableProgress() + } try { if (script === scriptShell) { const isTTY = !noTTY() if (isTTY) { - if (ciDetect()) + if (ciDetect()) { return log.warn('exec', 'Interactive mode disabled in CI environment') + } locationMsg = locationMsg || ` at location:\n${colorize.dim(runPath)}` @@ -78,8 +80,9 @@ const run = async ({ stdio: 'inherit', }) } finally { - if (log && log.enableProgress) + if (log && log.enableProgress) { log.enableProgress() + } } } diff --git a/deps/npm/node_modules/libnpmexec/package.json b/deps/npm/node_modules/libnpmexec/package.json index 3a03bd6cba03cf..8c8812a651a053 100644 --- a/deps/npm/node_modules/libnpmexec/package.json +++ b/deps/npm/node_modules/libnpmexec/package.json @@ -1,7 +1,8 @@ { "name": "libnpmexec", - "version": "3.0.1", + "version": "3.0.2", "files": [ + "bin", "lib" ], "main": "lib/index.js", @@ -28,25 +29,24 @@ ], "license": "ISC", "scripts": { - "lint": "eslint lib/*.js", - "pretest": "npm run lint", - "test": "tap test/*.js", - "snap": "tap test/*.js", + "lint": "eslint '**/*.js'", + "posttest": "npm run lint", + "test": "tap", + "snap": "tap", "preversion": "npm test", "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" + "prepublishOnly": "git push origin --follow-tags", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix" }, "tap": { "color": true, - "check-coverage": true + "check-coverage": true, + "files": "test/*.js" }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "bin-links": "^2.2.1", - "eslint": "^7.24.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^5.1.0", - "eslint-plugin-standard": "^5.0.0", "tap": "^15.0.6" }, "dependencies": { @@ -61,5 +61,8 @@ "read": "^1.0.7", "read-package-json-fast": "^2.0.2", "walk-up-path": "^1.0.0" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmfund/README.md b/deps/npm/node_modules/libnpmfund/README.md new file mode 100644 index 00000000000000..8ab663f634d6fb --- /dev/null +++ b/deps/npm/node_modules/libnpmfund/README.md @@ -0,0 +1,132 @@ +# libnpmfund + +[![npm version](https://img.shields.io/npm/v/libnpmfund.svg)](https://npm.im/libnpmfund) +[![license](https://img.shields.io/npm/l/libnpmfund.svg)](https://npm.im/libnpmfund) +[![GitHub Actions](https://github.com/npm/libnpmfund/workflows/node-ci/badge.svg)](https://github.com/npm/libnpmfund/actions?query=workflow%3Anode-ci) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmfund/badge.svg?branch=master)](https://coveralls.io/github/npm/libnpmfund?branch=master) + +[`libnpmfund`](https://github.com/npm/libnpmfund) is a Node.js library for +retrieving **funding** information for packages installed using +[`arborist`](https://github.com/npm/arborist). + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [Contributing](#contributing) +* [API](#api) +* [LICENSE](#license) + +## Example + +```js +const { read } = require('libnpmfund') + +const fundingInfo = await read() +console.log( + JSON.stringify(fundingInfo, null, 2) +) +// => { + length: 2, + name: 'foo', + version: '1.0.0', + funding: { url: 'https://example.com' }, + dependencies: { + bar: { + version: '1.0.0', + funding: { url: 'http://collective.example.com' } + } + } +} +``` + +## Install + +`$ npm install libnpmfund` + +### Contributing + +The npm team enthusiastically welcomes contributions and project participation! +There's a bunch of things you can do if you want to contribute! The +[Contributor Guide](https://github.com/npm/cli/blob/latest/CONTRIBUTING.md) +outlines the process for community interaction and contribution. Please don't +hesitate to jump in if you'd like to, or even ask us questions if something +isn't clear. + +All participants and maintainers in this project are expected to follow the +[npm Code of Conduct](https://www.npmjs.com/policies/conduct), and just +generally be excellent to each other. + +Please refer to the [Changelog](CHANGELOG.md) for project history details, too. + +Happy hacking! + +### API + +##### `> fund.read([opts]) -> Promise` + +Reads **funding** info from a npm install and returns a promise for a +tree object that only contains packages in which funding info is defined. + +Options: + +- `countOnly`: Uses the tree-traversal logic from **npm fund** but skips over +any obj definition and just returns an obj containing `{ length }` - useful for +things such as printing a `6 packages are looking for funding` msg. +- `workspaces`: `Array` List of workspaces names to filter for, +the result will only include a subset of the resulting tree that includes +only the nodes that are children of the listed workspaces names. +- `path`, `registry` and more [Arborist](https://github.com/npm/arborist/) options. + +##### `> fund.readTree(tree, [opts]) -> Promise` + +Reads **funding** info from a given install tree and returns a tree object +that only contains packages in which funding info is defined. + +- `tree`: An [`arborist`](https://github.com/npm/arborist) tree to be used, e.g: + +```js +const Arborist = require('@npmcli/arborist') +const { readTree } = require('libnpmfund') + +const arb = new Arborist({ path: process.cwd() }) +const tree = await arb.loadActual() + +return readTree(tree, { countOnly: false }) +``` + +Options: + +- `countOnly`: Uses the tree-traversal logic from **npm fund** but skips over +any obj definition and just returns an obj containing `{ length }` - useful for +things such as printing a `6 packages are looking for funding` msg. + +##### `> fund.normalizeFunding(funding) -> Object` + +From a `funding` ``, retrieves normalized funding objects +containing a `url` property. + +e.g: + +```js +normalizeFunding('http://example.com') +// => { + url: 'http://example.com' +} +``` + +##### `> fund.isValidFunding(funding) -> Boolean` + +Returns `` if `funding` is a valid funding object, e.g: + +```js +isValidFunding({ foo: 'not a valid funding obj' }) +// => false + +isValidFunding('http://example.com') +// => true +``` + +## LICENSE + +[ISC](./LICENSE) diff --git a/deps/npm/node_modules/libnpmfund/index.js b/deps/npm/node_modules/libnpmfund/lib/index.js similarity index 88% rename from deps/npm/node_modules/libnpmfund/index.js rename to deps/npm/node_modules/libnpmfund/lib/index.js index 37bc1dd0b79165..a3d2d8223ca4e0 100644 --- a/deps/npm/node_modules/libnpmfund/index.js +++ b/deps/npm/node_modules/libnpmfund/lib/index.js @@ -15,11 +15,13 @@ function normalizeFunding (funding) { // Is the value of a `funding` property of a `package.json` // a valid type+url for `npm fund` to display? function isValidFunding (funding) { - if (!funding) + if (!funding) { return false + } - if (Array.isArray(funding)) + if (Array.isArray(funding)) { return funding.every(f => !Array.isArray(f) && isValidFunding(f)) + } try { var parsed = new URL(funding.url || funding) @@ -30,8 +32,9 @@ function isValidFunding (funding) { if ( parsed.protocol !== 'https:' && parsed.protocol !== 'http:' - ) + ) { return false + } return Boolean(parsed.host) } @@ -53,8 +56,9 @@ function readTree (tree, opts) { function tracked (name, version) { const key = String(name) + String(version) - if (seen.has(key)) + if (seen.has(key)) { return true + } seen.add(key) } @@ -89,30 +93,36 @@ function readTree (tree, opts) { function getFundingDependencies (tree) { const edges = tree && tree.edgesOut && tree.edgesOut.values() - if (!edges) + if (!edges) { return empty() + } const directDepsWithFunding = Array.from(edges).map(edge => { - if (!edge || !edge.to) + if (!edge || !edge.to) { return empty() + } const node = edge.to.target || edge.to - if (!node.package) + if (!node.package) { return empty() + } - if (filterSet && filterSet.size > 0 && !filterSet.has(node)) + if (filterSet && filterSet.size > 0 && !filterSet.has(node)) { return empty() + } const { name, funding, version } = node.package // avoids duplicated items within the funding tree - if (tracked(name, version)) + if (tracked(name, version)) { return empty() + } const fundingItem = {} - if (version) + if (version) { fundingItem.version = version + } attachFundingInfo(fundingItem, funding) @@ -126,8 +136,9 @@ function readTree (tree, opts) { (res, { node, fundingItem }, i) => { if (!fundingItem || fundingItem.length === 0 || - !node) + !node) { return res + } // recurse const transitiveDependencies = node.edgesOut && @@ -136,17 +147,18 @@ function readTree (tree, opts) { // if we're only counting items there's no need // to add all the data to the resulting object - if (countOnly) + if (countOnly) { return null + } if (hasDependencies(transitiveDependencies)) { fundingItem.dependencies = retrieveDependencies(transitiveDependencies) } - if (isValidFunding(fundingItem.funding)) + if (isValidFunding(fundingItem.funding)) { res[node.package.name] = fundingItem - else if (hasDependencies(fundingItem.dependencies)) { + } else if (hasDependencies(fundingItem.dependencies)) { res[_trailingDependencies] = Object.assign( empty(), @@ -170,11 +182,13 @@ function readTree (tree, opts) { (tree && tree.name) result.name = name || (tree && tree.path) - if (tree && tree.package && tree.package.version) + if (tree && tree.package && tree.package.version) { result.version = tree.package.version + } - if (tree && tree.package && tree.package.funding) + if (tree && tree.package && tree.package.funding) { result.funding = normalizeFunding(tree.package.funding) + } result.dependencies = retrieveDependencies(treeDependencies) } diff --git a/deps/npm/node_modules/libnpmfund/package.json b/deps/npm/node_modules/libnpmfund/package.json index 2bd47419936445..4b7ffc8f30843f 100644 --- a/deps/npm/node_modules/libnpmfund/package.json +++ b/deps/npm/node_modules/libnpmfund/package.json @@ -1,8 +1,10 @@ { "name": "libnpmfund", - "version": "2.0.1", + "version": "2.0.2", + "main": "lib/index.js", "files": [ - "index.js" + "bin", + "lib" ], "description": "Programmatic API for npm fund", "repository": "https://github.com/npm/libnpmfund", @@ -15,7 +17,7 @@ "fund", "gitfund" ], - "author": "npm Inc. ", + "author": "GitHub Inc.", "contributors": [ { "name": "Ruy Adorno", @@ -26,29 +28,21 @@ "license": "ISC", "scripts": { "eslint": "eslint", - "lint": "npm run eslint -- index.js test.js", + "lint": "eslint '**/*.js'", "lintfix": "npm run lint -- --fix", "posttest": "npm run lint", "test": "tap", "snap": "tap", "preversion": "npm test", "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" + "prepublishOnly": "git push origin --follow-tags", + "postlint": "npm-template-check" }, "tap": { "check-coverage": true }, - "standard": { - "ignore": [ - "/tap-snapshots/" - ] - }, "devDependencies": { - "eslint": "^7.26.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^5.1.0", - "eslint-plugin-standard": "^5.0.0", + "@npmcli/template-oss": "^2.4.2", "tap": "^15.0.9" }, "dependencies": { @@ -56,5 +50,8 @@ }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmhook/README.md b/deps/npm/node_modules/libnpmhook/README.md new file mode 100644 index 00000000000000..ce6e8c1a519898 --- /dev/null +++ b/deps/npm/node_modules/libnpmhook/README.md @@ -0,0 +1,271 @@ +# libnpmhook + +[![npm version](https://img.shields.io/npm/v/libnpmhook.svg)](https://npm.im/libnpmhook) +[![license](https://img.shields.io/npm/l/libnpmhook.svg)](https://npm.im/libnpmhook) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmhook/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmhook?branch=latest) + +[`libnpmhook`](https://github.com/npm/libnpmhook) is a Node.js library for +programmatically managing the npm registry's server-side hooks. + +For a more general introduction to managing hooks, see [the introductory blog +post](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm). + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [Contributing](#contributing) +* [API](#api) + * [hook opts](#opts) + * [`add()`](#add) + * [`rm()`](#rm) + * [`ls()`](#ls) + * [`ls.stream()`](#ls-stream) + * [`update()`](#update) + +## Example + +```js +const hooks = require('libnpmhook') + +console.log(await hooks.ls('mypkg', {token: 'deadbeef'})) +// array of hook objects on `mypkg`. +``` + +## Install + +`$ npm install libnpmhook` + +### API + +#### `opts` for `libnpmhook` commands + +`libnpmhook` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch). +All options are passed through directly to that library, so please refer to [its +own `opts` +documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options) +for options that can be passed in. + +A couple of options of note for those in a hurry: + +* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs. +* `opts.otp` - certain operations will require an OTP token to be passed in. If a `libnpmhook` command fails with `err.code === EOTP`, please retry the request with `{otp: <2fa token>}` + +#### `> hooks.add(name, endpoint, secret, [opts]) -> Promise` + +`name` is the name of the package, org, or user/org scope to watch. The type is +determined by the name syntax: `'@foo/bar'` and `'foo'` are treated as packages, +`@foo` is treated as a scope, and `~user` is treated as an org name or scope. +Each type will attach to different events. + +The `endpoint` should be a fully-qualified http URL for the endpoint the hook +will send its payload to when it fires. `secret` is a shared secret that the +hook will send to that endpoint to verify that it's actually coming from the +registry hook. + +The returned Promise resolves to the full hook object that was created, +including its generated `id`. + +See also: [`POST +/v1/hooks/hook`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#post-v1hookshook) + +##### Example + +```javascript +await hooks.add('~zkat', 'https://example.com/api/added', 'supersekrit', { + token: 'myregistrytoken', + otp: '694207' +}) + +=> + +{ id: '16f7xoal', + username: 'zkat', + name: 'zkat', + endpoint: 'https://example.com/api/added', + secret: 'supersekrit', + type: 'owner', + created: '2018-08-21T20:05:25.125Z', + updated: '2018-08-21T20:05:25.125Z', + deleted: false, + delivered: false, + last_delivery: null, + response_code: 0, + status: 'active' } +``` + +#### `> hooks.find(id, [opts]) -> Promise` + +Returns the hook identified by `id`. + +The returned Promise resolves to the full hook object that was found, or error +with `err.code` of `'E404'` if it didn't exist. + +See also: [`GET +/v1/hooks/hook/:id`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#get-v1hookshookid) + +##### Example + +```javascript +await hooks.find('16f7xoal', {token: 'myregistrytoken'}) + +=> + +{ id: '16f7xoal', + username: 'zkat', + name: 'zkat', + endpoint: 'https://example.com/api/added', + secret: 'supersekrit', + type: 'owner', + created: '2018-08-21T20:05:25.125Z', + updated: '2018-08-21T20:05:25.125Z', + deleted: false, + delivered: false, + last_delivery: null, + response_code: 0, + status: 'active' } +``` + +#### `> hooks.rm(id, [opts]) -> Promise` + +Removes the hook identified by `id`. + +The returned Promise resolves to the full hook object that was removed, if it +existed, or `null` if no such hook was there (instead of erroring). + +See also: [`DELETE +/v1/hooks/hook/:id`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#delete-v1hookshookid) + +##### Example + +```javascript +await hooks.rm('16f7xoal', { + token: 'myregistrytoken', + otp: '694207' +}) + +=> + +{ id: '16f7xoal', + username: 'zkat', + name: 'zkat', + endpoint: 'https://example.com/api/added', + secret: 'supersekrit', + type: 'owner', + created: '2018-08-21T20:05:25.125Z', + updated: '2018-08-21T20:05:25.125Z', + deleted: true, + delivered: false, + last_delivery: null, + response_code: 0, + status: 'active' } + +// Repeat it... +await hooks.rm('16f7xoal', { + token: 'myregistrytoken', + otp: '694207' +}) + +=> null +``` + +#### `> hooks.update(id, endpoint, secret, [opts]) -> Promise` + +The `id` should be a hook ID from a previously-created hook. + +The `endpoint` should be a fully-qualified http URL for the endpoint the hook +will send its payload to when it fires. `secret` is a shared secret that the +hook will send to that endpoint to verify that it's actually coming from the +registry hook. + +The returned Promise resolves to the full hook object that was updated, if it +existed. Otherwise, it will error with an `'E404'` error code. + +See also: [`PUT +/v1/hooks/hook/:id`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#put-v1hookshookid) + +##### Example + +```javascript +await hooks.update('16fxoal', 'https://example.com/api/other', 'newsekrit', { + token: 'myregistrytoken', + otp: '694207' +}) + +=> + +{ id: '16f7xoal', + username: 'zkat', + name: 'zkat', + endpoint: 'https://example.com/api/other', + secret: 'newsekrit', + type: 'owner', + created: '2018-08-21T20:05:25.125Z', + updated: '2018-08-21T20:14:41.964Z', + deleted: false, + delivered: false, + last_delivery: null, + response_code: 0, + status: 'active' } +``` + +#### `> hooks.ls([opts]) -> Promise` + +Resolves to an array of hook objects associated with the account you're +authenticated as. + +Results can be further filtered with three values that can be passed in through +`opts`: + +* `opts.package` - filter results by package name +* `opts.limit` - maximum number of hooks to return +* `opts.offset` - pagination offset for results (use with `opts.limit`) + +See also: + * [`hooks.ls.stream()`](#ls-stream) + * [`GET +/v1/hooks`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#get-v1hooks) + +##### Example + +```javascript +await hooks.ls({token: 'myregistrytoken'}) + +=> +[ + { id: '16f7xoal', ... }, + { id: 'wnyf98a1', ... }, + ... +] +``` + +#### `> hooks.ls.stream([opts]) -> Stream` + +Returns a stream of hook objects associated with the account you're +authenticated as. The returned stream is a valid `Symbol.asyncIterator` on +`node@>=10`. + +Results can be further filtered with three values that can be passed in through +`opts`: + +* `opts.package` - filter results by package name +* `opts.limit` - maximum number of hooks to return +* `opts.offset` - pagination offset for results (use with `opts.limit`) + +See also: + * [`hooks.ls()`](#ls) + * [`GET +/v1/hooks`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#get-v1hooks) + +##### Example + +```javascript +for await (let hook of hooks.ls.stream({token: 'myregistrytoken'})) { + console.log('found hook:', hook.id) +} + +=> +// outputs: +// found hook: 16f7xoal +// found hook: wnyf98a1 +``` diff --git a/deps/npm/node_modules/libnpmhook/index.js b/deps/npm/node_modules/libnpmhook/lib/index.js similarity index 92% rename from deps/npm/node_modules/libnpmhook/index.js rename to deps/npm/node_modules/libnpmhook/lib/index.js index 262fcc083a6e6f..7cd18261d84827 100644 --- a/deps/npm/node_modules/libnpmhook/index.js +++ b/deps/npm/node_modules/libnpmhook/lib/index.js @@ -18,7 +18,7 @@ cmd.add = (name, endpoint, secret, opts = {}) => { return fetch.json('/-/npm/v1/hooks/hook', { ...opts, method: 'POST', - body: { type, name, endpoint, secret } + body: { type, name, endpoint, secret }, }) } @@ -26,7 +26,7 @@ cmd.rm = (id, opts = {}) => { validate('SO', [id, opts]) return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, { ...opts, - method: 'DELETE' + method: 'DELETE', }).catch(err => { if (err.code === 'E404') { return null @@ -41,7 +41,7 @@ cmd.update = (id, endpoint, secret, opts = {}) => { return fetch.json(`/-/npm/v1/hooks/hook/${eu(id)}`, { ...opts, method: 'PUT', - body: {endpoint, secret} + body: { endpoint, secret }, }) } @@ -64,7 +64,7 @@ cmd.ls.stream = (opts = {}) => { query: { package: pkg, limit, - offset - } + offset, + }, }) } diff --git a/deps/npm/node_modules/libnpmhook/package.json b/deps/npm/node_modules/libnpmhook/package.json index 40951245a9ea3b..a46de40ac9828a 100644 --- a/deps/npm/node_modules/libnpmhook/package.json +++ b/deps/npm/node_modules/libnpmhook/package.json @@ -1,18 +1,24 @@ { "name": "libnpmhook", - "version": "6.0.3", + "version": "7.0.0", "description": "programmatic API for managing npm registry hooks", - "main": "index.js", + "main": "lib/index.js", "files": [ - "*.js", + "bin", "lib" ], "scripts": { "prerelease": "npm t", "postrelease": "npm publish && git push --follow-tags", - "pretest": "standard", - "release": "standard-version -s", - "test": "tap" + "test": "tap", + "lint": "eslint '**/*.js'", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "snap": "tap", + "posttest": "npm run lint" }, "tap": { "check-coverage": true @@ -24,19 +30,21 @@ "registry", "npm api" ], - "author": "Kat Marchán ", + "author": "GitHub Inc.", "license": "ISC", "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^11.0.0" }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "nock": "^9.6.1", - "standard": "^11.0.1", - "standard-version": "^4.4.0", - "tap": "^14.10.6" + "tap": "^15.1.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmorg/README.md b/deps/npm/node_modules/libnpmorg/README.md new file mode 100644 index 00000000000000..b2e1ed589b8e98 --- /dev/null +++ b/deps/npm/node_modules/libnpmorg/README.md @@ -0,0 +1,149 @@ +# libnpmorg + +[![npm version](https://img.shields.io/npm/v/libnpmorg.svg)](https://npm.im/libnpmorg) +[![license](https://img.shields.io/npm/l/libnpmorg.svg)](https://npm.im/libnpmorg) +[![GitHub Actions](https://github.com/npm/libnpmorg/workflows/Node%20CI/badge.svg)](https://github.com/npm/libnpmorg/workflows/Node%20CI/badge.svg) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmorg/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmorg?branch=latest) + +[`libnpmorg`](https://github.com/npm/libnpmorg) is a Node.js library for +programmatically accessing the [npm Org membership +API](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#membership-detail). + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [Contributing](#contributing) +* [API](#api) + * [hook opts](#opts) + * [`set()`](#set) + * [`rm()`](#rm) + * [`ls()`](#ls) + * [`ls.stream()`](#ls-stream) + +## Example + +```js +const org = require('libnpmorg') + +console.log(await org.ls('myorg', {token: 'deadbeef'})) +=> +Roster { + zkat: 'developer', + iarna: 'admin', + isaacs: 'owner' +} +``` + +## Install + +`$ npm install libnpmorg` + +### API + +#### `opts` for `libnpmorg` commands + +`libnpmorg` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch). +All options are passed through directly to that library, so please refer to [its +own `opts` +documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options) +for options that can be passed in. + +A couple of options of note for those in a hurry: + +* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs. +* `opts.otp` - certain operations will require an OTP token to be passed in. If a `libnpmorg` command fails with `err.code === EOTP`, please retry the request with `{otp: <2fa token>}` + +#### `> org.set(org, user, [role], [opts]) -> Promise` + +The returned Promise resolves to a [Membership +Detail](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#membership-detail) +object. + +The `role` is optional and should be one of `admin`, `owner`, or `developer`. +`developer` is the default if no `role` is provided. + +`org` and `user` must be scope names for the org name and user name +respectively. They can optionally be prefixed with `@`. + +See also: [`PUT +/-/org/:scope/user`](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#org-membership-replace) + +##### Example + +```javascript +await org.set('@myorg', '@myuser', 'admin', {token: 'deadbeef'}) +=> +MembershipDetail { + org: { + name: 'myorg', + size: 15 + }, + user: 'myuser', + role: 'admin' +} +``` + +#### `> org.rm(org, user, [opts]) -> Promise` + +The Promise resolves to `null` on success. + +`org` and `user` must be scope names for the org name and user name +respectively. They can optionally be prefixed with `@`. + +See also: [`DELETE +/-/org/:scope/user`](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#org-membership-delete) + +##### Example + +```javascript +await org.rm('myorg', 'myuser', {token: 'deadbeef'}) +``` + +#### `> org.ls(org, [opts]) -> Promise` + +The Promise resolves to a +[Roster](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#roster) +object. + +`org` must be a scope name for an org, and can be optionally prefixed with `@`. + +See also: [`GET +/-/org/:scope/user`](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#org-roster) + +##### Example + +```javascript +await org.ls('myorg', {token: 'deadbeef'}) +=> +Roster { + zkat: 'developer', + iarna: 'admin', + isaacs: 'owner' +} +``` + +#### `> org.ls.stream(org, [opts]) -> Stream` + +Returns a stream of entries for a +[Roster](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#roster), +with each emitted entry in `[key, value]` format. + +`org` must be a scope name for an org, and can be optionally prefixed with `@`. + +The returned stream is a valid `Symbol.asyncIterator`. + +See also: [`GET +/-/org/:scope/user`](https://github.com/npm/registry/blob/master/docs/orgs/memberships.md#org-roster) + +##### Example + +```javascript +for await (let [user, role] of org.ls.stream('myorg', {token: 'deadbeef'})) { + console.log(`user: ${user} (${role})`) +} +=> +user: zkat (developer) +user: iarna (admin) +user: isaacs (owner) +``` diff --git a/deps/npm/node_modules/libnpmorg/index.js b/deps/npm/node_modules/libnpmorg/lib/index.js similarity index 96% rename from deps/npm/node_modules/libnpmorg/index.js rename to deps/npm/node_modules/libnpmorg/lib/index.js index 208542b31e8c81..4684b516d2b4ad 100644 --- a/deps/npm/node_modules/libnpmorg/index.js +++ b/deps/npm/node_modules/libnpmorg/lib/index.js @@ -22,7 +22,7 @@ cmd.set = (org, user, role, opts = {}) => { return fetch.json(`/-/org/${eu(org)}/user`, { ...opts, method: 'PUT', - body: { user, role } + body: { user, role }, }).then(ret => Object.assign(new MembershipDetail(), ret)) } @@ -34,7 +34,7 @@ cmd.rm = (org, user, opts = {}) => { ...opts, method: 'DELETE', body: { user }, - ignoreBody: true + ignoreBody: true, }).then(() => null) } @@ -59,6 +59,6 @@ cmd.ls.stream = (org, opts = {}) => { ...opts, mapJSON: (value, [key]) => { return [key, value] - } + }, }) } diff --git a/deps/npm/node_modules/libnpmorg/package.json b/deps/npm/node_modules/libnpmorg/package.json index 0e82a207b70172..93297c36338d27 100644 --- a/deps/npm/node_modules/libnpmorg/package.json +++ b/deps/npm/node_modules/libnpmorg/package.json @@ -1,8 +1,9 @@ { "name": "libnpmorg", - "version": "2.0.3", + "version": "3.0.0", "description": "Programmatic api for `npm org` commands", - "author": "Kat Marchán ", + "author": "GitHub Inc.", + "main": "lib/index.js", "keywords": [ "libnpm", "npm", @@ -16,21 +17,25 @@ "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", - "lint": "standard", + "lint": "eslint '**/*.js'", "test": "tap", - "posttest": "npm run lint" + "posttest": "npm run lint", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "snap": "tap" }, "files": [ - "index.js" + "bin", + "lib" ], "tap": { "check-coverage": true }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "minipass": "^3.1.1", "nock": "^12.0.1", - "standard": "^14.3.1", - "tap": "^14.10.6" + "tap": "^15.0.0" }, "repository": { "type": "git", @@ -43,6 +48,9 @@ "npm-registry-fetch": "^11.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmpack/README.md b/deps/npm/node_modules/libnpmpack/README.md new file mode 100644 index 00000000000000..15c911a1eaaa88 --- /dev/null +++ b/deps/npm/node_modules/libnpmpack/README.md @@ -0,0 +1,56 @@ +# libnpmpack + +[![npm version](https://img.shields.io/npm/v/libnpmpack.svg)](https://npm.im/libnpmpack) +[![license](https://img.shields.io/npm/l/libnpmpack.svg)](https://npm.im/libnpmpack) +[![GitHub Actions](https://github.com/npm/libnpmpack/workflows/Node%20CI/badge.svg)](https://github.com/npm/libnpmpack/actions?query=workflow%3A%22Node+CI%22) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmpack/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmpack?branch=latest) + +[`libnpmpack`](https://github.com/npm/libnpmpack) is a Node.js library for +programmatically packing tarballs from a local directory or from a registry or github spec. If packing from a local source, `libnpmpack` will also run the `prepack` and `postpack` lifecycles. + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [API](#api) + * [`pack()`](#pack) + +## Example + +```js +const pack = require('libnpmpack') +``` + +## Install + +`$ npm install libnpmpack` + +### API + +#### `> pack(spec, [opts]) -> Promise` + +Packs a tarball from a local directory or from a registry or github spec and returns a Promise that resolves to the tarball data Buffer, with from, resolved, and integrity fields attached. + +If no options are passed, the tarball file will be saved on the same directory from which `pack` was called in. + +`libnpmpack` uses [`pacote`](https://npm.im/pacote). +Most options are passed through directly to that library, so please refer to +[its own `opts` +documentation](https://www.npmjs.com/package/pacote#options) +for options that can be passed in. + +##### Examples + +```javascript +// packs from cwd +const tarball = await pack() + +// packs from a local directory +const localTar = await pack('/Users/claudiahdz/projects/my-cool-pkg') + +// packs from a registry spec +const registryTar = await pack('abbrev@1.0.3') + +// packs from a github spec +const githubTar = await pack('isaacs/rimraf#PR-192') +``` diff --git a/deps/npm/node_modules/libnpmpack/index.js b/deps/npm/node_modules/libnpmpack/lib/index.js similarity index 90% rename from deps/npm/node_modules/libnpmpack/index.js rename to deps/npm/node_modules/libnpmpack/lib/index.js index 779c4d96d93fd8..23bb9df4b2247c 100644 --- a/deps/npm/node_modules/libnpmpack/index.js +++ b/deps/npm/node_modules/libnpmpack/lib/index.js @@ -23,14 +23,14 @@ async function pack (spec = 'file:.', opts = {}) { path: spec.fetchSpec, stdio: 'inherit', pkg: manifest, - banner + banner, }) } // packs tarball const tarball = await pacote.tarball(manifest._resolved, { ...opts, - integrity: manifest._integrity + integrity: manifest._integrity, }) if (spec.type === 'directory') { @@ -45,8 +45,8 @@ async function pack (spec = 'file:.', opts = {}) { env: { npm_package_from: tarball.from, npm_package_resolved: tarball.resolved, - npm_package_integrity: tarball.integrity - } + npm_package_integrity: tarball.integrity, + }, }) } diff --git a/deps/npm/node_modules/libnpmpack/package.json b/deps/npm/node_modules/libnpmpack/package.json index e0538b1716095c..dad28c398585f1 100644 --- a/deps/npm/node_modules/libnpmpack/package.json +++ b/deps/npm/node_modules/libnpmpack/package.json @@ -1,31 +1,35 @@ { "name": "libnpmpack", - "version": "3.0.0", + "version": "3.0.1", "description": "Programmatic API for the bits behind npm pack", - "author": "npm Inc. ", + "author": "GitHub Inc.", + "main": "lib/index.js", "contributors": [ "Claudia Hernández " ], - "main": "index.js", "files": [ - "*.js" + "bin", + "lib" ], "license": "ISC", "scripts": { "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", - "lint": "standard", + "lint": "eslint '**/*.js'", "test": "tap", - "posttest": "npm run lint" + "posttest": "npm run lint", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "snap": "tap" }, "tap": { "check-coverage": true }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "nock": "^13.0.7", - "standard": "^16.0.3", - "tap": "^14.11.0" + "tap": "^15.0.0" }, "repository": { "type": "git", @@ -40,5 +44,8 @@ }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmpublish/README.md b/deps/npm/node_modules/libnpmpublish/README.md new file mode 100644 index 00000000000000..0da46e89d3b051 --- /dev/null +++ b/deps/npm/node_modules/libnpmpublish/README.md @@ -0,0 +1,105 @@ +# libnpmpublish + +[`libnpmpublish`](https://github.com/npm/libnpmpublish) is a Node.js +library for programmatically publishing and unpublishing npm packages. Give +it a manifest as an object and a tarball as a Buffer, and it'll put them on +the registry for you. + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [API](#api) + * [publish/unpublish opts](#opts) + * [`publish()`](#publish) + * [`unpublish()`](#unpublish) + +## Example + +```js +const { publish, unpublish } = require('libnpmpublish') +``` + +## Install + +`$ npm install libnpmpublish` + +### API + +#### `opts` for `libnpmpublish` commands + +`libnpmpublish` uses +[`npm-registry-fetch`](https://npm.im/npm-registry-fetch). Most options +are passed through directly to that library, so please refer to [its own +`opts` documentation](http://npm.im/npm-registry-fetch#fetch-options) for +options that can be passed in. + +A couple of options of note: + +* `opts.defaultTag` - registers the published package with the given tag, + defaults to `latest`. + +* `opts.access` - tells the registry whether this package should be + published as public or restricted. Only applies to scoped packages, which + default to restricted. + +* `opts.token` - can be passed in and will be used as the authentication + token for the registry. For other ways to pass in auth details, see the + n-r-f docs. + +#### `> libpub.publish(manifest, tarData, [opts]) -> Promise` + +Sends the package represented by the `manifest` and `tarData` to the +configured registry. + +`manifest` should be the parsed `package.json` for the package being +published (which can also be the manifest pulled from a packument, a git +repo, tarball, etc.) + +`tarData` is a `Buffer` of the tarball being published. + +If `opts.npmVersion` is passed in, it will be used as the `_npmVersion` +field in the outgoing packument. You may put your own user-agent string in +there to identify your publishes. + +If `opts.algorithms` is passed in, it should be an array of hashing +algorithms to generate `integrity` hashes for. The default is `['sha512']`, +which means you end up with `dist.integrity = 'sha512-deadbeefbadc0ffee'`. +Any algorithm supported by your current node version is allowed -- npm +clients that do not support those algorithms will simply ignore the +unsupported hashes. + +##### Example + +```js +// note that pacote.manifest() and pacote.tarball() can also take +// any spec that npm can install. a folder shown here, since that's +// far and away the most common use case. +const path = '/a/path/to/your/source/code' +const pacote = require('pacote') // see: http://npm.im/pacote +const manifest = await pacote.manifest(path) +const tarData = await pacote.tarball(path) +await libpub.publish(manifest, tarData, { + npmVersion: 'my-pub-script@1.0.2', + token: 'my-auth-token-here' +}, opts) +// Package has been published to the npm registry. +``` + +#### `> libpub.unpublish(spec, [opts]) -> Promise` + +Unpublishes `spec` from the appropriate registry. The registry in question may +have its own limitations on unpublishing. + +`spec` should be either a string, or a valid +[`npm-package-arg`](https://npm.im/npm-package-arg) parsed spec object. For +legacy compatibility reasons, only `tag` and `version` specs will work as +expected. `range` specs will fail silently in most cases. + +##### Example + +```js +await libpub.unpublish('lodash', { token: 'i-am-the-worst'}) +// +// `lodash` has now been unpublished, along with all its versions +``` diff --git a/deps/npm/node_modules/libnpmpublish/index.js b/deps/npm/node_modules/libnpmpublish/lib/index.js similarity index 100% rename from deps/npm/node_modules/libnpmpublish/index.js rename to deps/npm/node_modules/libnpmpublish/lib/index.js diff --git a/deps/npm/node_modules/libnpmpublish/publish.js b/deps/npm/node_modules/libnpmpublish/lib/publish.js similarity index 98% rename from deps/npm/node_modules/libnpmpublish/publish.js rename to deps/npm/node_modules/libnpmpublish/lib/publish.js index bed0f27246faa6..f6d88f7325bd07 100644 --- a/deps/npm/node_modules/libnpmpublish/publish.js +++ b/deps/npm/node_modules/libnpmpublish/lib/publish.js @@ -47,8 +47,9 @@ Remove the 'private' field from the package.json to publish it.`), ignoreBody: true, }) } catch (err) { - if (err.code !== 'E409') + if (err.code !== 'E409') { throw err + } // if E409, we attempt exactly ONE retry, to protect us // against malicious activity like trying to publish // a bunch of new versions of a package at the same time @@ -73,8 +74,9 @@ const patchManifest = (_manifest, opts) => { const manifest = { ..._manifest } manifest._nodeVersion = process.versions.node - if (npmVersion) + if (npmVersion) { manifest._npmVersion = npmVersion + } fixer.fixNameField(manifest, { strict: true, allowLegacyCase: true }) const version = semver.clean(manifest.version) diff --git a/deps/npm/node_modules/libnpmpublish/unpublish.js b/deps/npm/node_modules/libnpmpublish/lib/unpublish.js similarity index 94% rename from deps/npm/node_modules/libnpmpublish/unpublish.js rename to deps/npm/node_modules/libnpmpublish/lib/unpublish.js index 937e4b849636d9..7fbeea503a3374 100644 --- a/deps/npm/node_modules/libnpmpublish/unpublish.js +++ b/deps/npm/node_modules/libnpmpublish/lib/unpublish.js @@ -31,8 +31,9 @@ const unpublish = async (spec, opts) => { // if missing specific version, // assumed unpublished - if (!versionData && !rawSpecs && !noVersions) + if (!versionData && !rawSpecs && !noVersions) { return true + } // unpublish all versions of a package: // - no specs supplied "npm unpublish foo" @@ -54,8 +55,9 @@ const unpublish = async (spec, opts) => { // deleting dist tags associated to version Object.keys(pkg['dist-tags']).forEach(tag => { - if (pkg['dist-tags'][tag] === version) + if (pkg['dist-tags'][tag] === version) { delete pkg['dist-tags'][tag] + } }) if (latestVer === version) { @@ -89,8 +91,9 @@ const unpublish = async (spec, opts) => { return true } } catch (err) { - if (err.code !== 'E404') + if (err.code !== 'E404') { throw err + } return true } diff --git a/deps/npm/node_modules/libnpmpublish/package.json b/deps/npm/node_modules/libnpmpublish/package.json index ac0d632f7d66dc..156503af7d3dd8 100644 --- a/deps/npm/node_modules/libnpmpublish/package.json +++ b/deps/npm/node_modules/libnpmpublish/package.json @@ -1,41 +1,39 @@ { "name": "libnpmpublish", - "version": "4.0.2", + "version": "5.0.0", "description": "Programmatic API for the bits behind npm publish and unpublish", - "author": "npm Inc. ", + "author": "GitHub Inc.", + "main": "lib/index.js", "contributors": [ "Kat Marchán ", "Claudia Hernández " ], - "main": "index.js", "files": [ - "*.js" + "bin", + "lib" ], "license": "ISC", "scripts": { "eslint": "eslint", - "lint": "npm run eslint -- \"*.js\"", + "lint": "eslint '**/*.js'", "lintfix": "npm run lint -- --fix", "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", "test": "tap", - "posttest": "npm run lint" + "posttest": "npm run lint", + "postlint": "npm-template-check", + "snap": "tap" }, "tap": { "check-coverage": true }, "devDependencies": { - "eslint": "^7.11.0", - "eslint-plugin-import": "^2.22.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^4.2.1", - "eslint-plugin-standard": "^4.0.2", - "libnpmpack": "^2.0.0", + "@npmcli/template-oss": "^2.4.2", + "libnpmpack": "^3.0.0", "lodash.clonedeep": "^4.5.0", "nock": "^12.0.2", - "standard": "^14.3.1", - "tap": "^14.10.6" + "tap": "^15" }, "repository": { "type": "git", @@ -51,6 +49,9 @@ "ssri": "^8.0.1" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmsearch/README.md b/deps/npm/node_modules/libnpmsearch/README.md new file mode 100644 index 00000000000000..31f44fe247923d --- /dev/null +++ b/deps/npm/node_modules/libnpmsearch/README.md @@ -0,0 +1,173 @@ +# libnpmsearch + +[![npm version](https://img.shields.io/npm/v/libnpmsearch.svg)](https://npm.im/libnpmsearch) +[![license](https://img.shields.io/npm/l/libnpmsearch.svg)](https://npm.im/libnpmsearch) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmsearch/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmsearch?branch=latest) + +[`libnpmsearch`](https://github.com/npm/libnpmsearch) is a Node.js library for +programmatically accessing the npm search endpoint. It does **not** support +legacy search through `/-/all`. + +## Table of Contents + +* [Example](#example) +* [Install](#install) +* [Contributing](#contributing) +* [API](#api) + * [search opts](#opts) + * [`search()`](#search) + * [`search.stream()`](#search-stream) + +## Example + +```js +const search = require('libnpmsearch') + +console.log(await search('libnpm')) +=> +[ + { + name: 'libnpm', + description: 'programmatic npm API', + ...etc + }, + { + name: 'libnpmsearch', + description: 'Programmatic API for searching in npm and compatible registries', + ...etc + }, + ...more +] +``` + +## Install + +`$ npm install libnpmsearch` + +### API + +#### `opts` for `libnpmsearch` commands + +The following opts are used directly by `libnpmsearch` itself: + +* `opts.limit` - Number of results to limit the query to. Default: 20 +* `opts.from` - Offset number for results. Used with `opts.limit` for pagination. Default: 0 +* `opts.detailed` - If true, returns an object with `package`, `score`, and `searchScore` fields, with `package` being what would usually be returned, and the other two containing details about how that package scored. Useful for UIs. Default: false +* `opts.sortBy` - Used as a shorthand to set `opts.quality`, `opts.maintenance`, and `opts.popularity` with values that prioritize each one. Should be one of `'optimal'`, `'quality'`, `'maintenance'`, or `'popularity'`. Default: `'optimal'` +* `opts.maintenance` - Decimal number between `0` and `1` that defines the weight of `maintenance` metrics when scoring and sorting packages. Default: `0.65` (same as `opts.sortBy: 'optimal'`) +* `opts.popularity` - Decimal number between `0` and `1` that defines the weight of `popularity` metrics when scoring and sorting packages. Default: `0.98` (same as `opts.sortBy: 'optimal'`) +* `opts.quality` - Decimal number between `0` and `1` that defines the weight of `quality` metrics when scoring and sorting packages. Default: `0.5` (same as `opts.sortBy: 'optimal'`) + +`libnpmsearch` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch). +Most options are passed through directly to that library, so please refer to +[its own `opts` +documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options) +for options that can be passed in. + +A couple of options of note for those in a hurry: + +* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs. + +#### `> search(query, [opts]) -> Promise` + +`query` must be either a String or an Array of search terms. + +If `opts.limit` is provided, it will be sent to the API to constrain the number +of returned results. You may receive more, or fewer results, at the endpoint's +discretion. + +The returned Promise resolved to an Array of search results with the following +format: + +```js +{ + name: String, + version: SemverString, + description: String || null, + maintainers: [ + { + username: String, + email: String + }, + ...etc + ] || null, + keywords: [String] || null, + date: Date || null +} +``` + +If `opts.limit` is provided, it will be sent to the API to constrain the number +of returned results. You may receive more, or fewer results, at the endpoint's +discretion. + +For streamed results, see [`search.stream`](#search-stream). + +##### Example + +```javascript +await search('libnpm') +=> +[ + { + name: 'libnpm', + description: 'programmatic npm API', + ...etc + }, + { + name: 'libnpmsearch', + description: 'Programmatic API for searching in npm and compatible registries', + ...etc + }, + ...more +] +``` + +#### `> search.stream(query, [opts]) -> Stream` + +`query` must be either a String or an Array of search terms. + +If `opts.limit` is provided, it will be sent to the API to constrain the number +of returned results. You may receive more, or fewer results, at the endpoint's +discretion. + +The returned Stream emits one entry per search result, with each entry having +the following format: + +```js +{ + name: String, + version: SemverString, + description: String || null, + maintainers: [ + { + username: String, + email: String + }, + ...etc + ] || null, + keywords: [String] || null, + date: Date || null +} +``` + +For getting results in one chunk, see [`search`](#search-stream). + +##### Example + +```javascript +search.stream('libnpm').on('data', console.log) +=> +// entry 1 +{ + name: 'libnpm', + description: 'programmatic npm API', + ...etc +} +// entry 2 +{ + name: 'libnpmsearch', + description: 'Programmatic API for searching in npm and compatible registries', + ...etc +} +// etc +``` diff --git a/deps/npm/node_modules/libnpmsearch/index.js b/deps/npm/node_modules/libnpmsearch/lib/index.js similarity index 96% rename from deps/npm/node_modules/libnpmsearch/index.js rename to deps/npm/node_modules/libnpmsearch/lib/index.js index cb6b50783d35e8..959059176f5c7c 100644 --- a/deps/npm/node_modules/libnpmsearch/index.js +++ b/deps/npm/node_modules/libnpmsearch/lib/index.js @@ -16,7 +16,7 @@ function searchStream (query, opts = {}) { popularity: 0.98, maintenance: 0.5, ...opts.opts, // this is to support the cli's --searchopts parameter - ...opts + ...opts, } switch (opts.sortBy) { @@ -54,7 +54,7 @@ function searchStream (query, opts = {}) { from: opts.from, quality: opts.quality, popularity: opts.popularity, - maintenance: opts.maintenance + maintenance: opts.maintenance, }, mapJSON: (obj) => { if (obj.package.date) { @@ -65,7 +65,7 @@ function searchStream (query, opts = {}) { } else { return obj.package } - } + }, } ) } diff --git a/deps/npm/node_modules/libnpmsearch/package.json b/deps/npm/node_modules/libnpmsearch/package.json index 88179b8d6fde89..5479e41ae3c3d1 100644 --- a/deps/npm/node_modules/libnpmsearch/package.json +++ b/deps/npm/node_modules/libnpmsearch/package.json @@ -1,10 +1,11 @@ { "name": "libnpmsearch", - "version": "3.1.2", + "version": "4.0.0", "description": "Programmatic API for searching in npm and compatible registries.", - "author": "Kat Marchán ", + "author": "GitHub Inc.", + "main": "lib/index.js", "files": [ - "*.js", + "bin", "lib" ], "keywords": [ @@ -18,16 +19,20 @@ "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", - "posttest": "standard", - "test": "tap" + "posttest": "npm run lint", + "test": "tap", + "lint": "eslint '**/*.js'", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "snap": "tap" }, "tap": { "check-coverage": true }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "nock": "^9.6.1", - "standard": "^12.0.0", - "tap": "^14.11.0" + "tap": "^15" }, "repository": { "type": "git", @@ -39,6 +44,9 @@ "npm-registry-fetch": "^11.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmteam/README.md b/deps/npm/node_modules/libnpmteam/README.md new file mode 100644 index 00000000000000..603cf6622cd495 --- /dev/null +++ b/deps/npm/node_modules/libnpmteam/README.md @@ -0,0 +1,189 @@ +# libnpmteam + +[![npm version](https://img.shields.io/npm/v/libnpmteam.svg)](https://npm.im/libnpmteam) +[![license](https://img.shields.io/npm/l/libnpmteam.svg)](https://npm.im/libnpmteam) +[![GitHub Actions](https://github.com/npm/libnpmteam/workflows/Node%20CI/badge.svg)](https://github.com/npm/libnpmteam/workflows/Node%20CI/badge.svg) +[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmteam/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmteam?branch=latest) + +[`libnpmteam`](https://github.com/npm/libnpmteam) is a Node.js +library that provides programmatic access to the guts of the npm CLI's `npm +team` command and its various subcommands. + +## Example + +```javascript +const team = require('libnpmteam') + +// List all teams for the @npm org. +console.log(await team.lsTeams('npm')) +``` + +## Publishing +1. Manually create CHANGELOG.md file +1. Commit changes to CHANGELOG.md + ```bash + $ git commit -m "chore: updated CHANGELOG.md" + ``` +1. Run `npm version {newVersion}` + ```bash + # Example + $ npm version patch + # 1. Runs `coverage` and `lint` scripts + # 2. Bumps package version; and **create commit/tag** + # 3. Runs `npm publish`; publishing directory with **unpushed commit** + # 4. Runs `git push origin --follow-tags` + ``` + +## Table of Contents + +* [Installing](#install) +* [Example](#example) +* [API](#api) + * [team opts](#opts) + * [`create()`](#create) + * [`destroy()`](#destroy) + * [`add()`](#add) + * [`rm()`](#rm) + * [`lsTeams()`](#ls-teams) + * [`lsTeams.stream()`](#ls-teams-stream) + * [`lsUsers()`](#ls-users) + * [`lsUsers.stream()`](#ls-users-stream) + +### Install + +`$ npm install libnpmteam` + +### API + +#### `opts` for `libnpmteam` commands + +`libnpmteam` uses [`npm-registry-fetch`](https://npm.im/npm-registry-fetch). +All options are passed through directly to that library, so please refer to [its +own `opts` +documentation](https://www.npmjs.com/package/npm-registry-fetch#fetch-options) +for options that can be passed in. + +A couple of options of note for those in a hurry: + +* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs. +* `opts.otp` - certain operations will require an OTP token to be passed in. If a `libnpmteam` command fails with `err.code === EOTP`, please retry the request with `{otp: <2fa token>}` + +#### `> team.create(team, [opts]) -> Promise` + +Creates a team named `team`. Team names use the format `@:`, with +the `@` being optional. + +Additionally, `opts.description` may be passed in to include a description. + +##### Example + +```javascript +await team.create('@npm:cli', {token: 'myregistrytoken'}) +// The @npm:cli team now exists. +``` + +#### `> team.destroy(team, [opts]) -> Promise` + +Destroys a team named `team`. Team names use the format `@:`, with +the `@` being optional. + +##### Example + +```javascript +await team.destroy('@npm:cli', {token: 'myregistrytoken'}) +// The @npm:cli team has been destroyed. +``` + +#### `> team.add(user, team, [opts]) -> Promise` + +Adds `user` to `team`. + +##### Example + +```javascript +await team.add('zkat', '@npm:cli', {token: 'myregistrytoken'}) +// @zkat now belongs to the @npm:cli team. +``` + +#### `> team.rm(user, team, [opts]) -> Promise` + +Removes `user` from `team`. + +##### Example + +```javascript +await team.rm('zkat', '@npm:cli', {token: 'myregistrytoken'}) +// @zkat is no longer part of the @npm:cli team. +``` + +#### `> team.lsTeams(scope, [opts]) -> Promise` + +Resolves to an array of team names belonging to `scope`. + +##### Example + +```javascript +await team.lsTeams('@npm', {token: 'myregistrytoken'}) +=> +[ + 'npm:cli', + 'npm:web', + 'npm:registry', + 'npm:developers' +] +``` + +#### `> team.lsTeams.stream(scope, [opts]) -> Stream` + +Returns a stream of teams belonging to `scope`. + +For a Promise-based version of these results, see [`team.lsTeams()`](#ls-teams). + +##### Example + +```javascript +for await (let team of team.lsTeams.stream('@npm', {token: 'myregistrytoken'})) { + console.log(team) +} + +// outputs +// npm:cli +// npm:web +// npm:registry +// npm:developers +``` + +#### `> team.lsUsers(team, [opts]) -> Promise` + +Resolves to an array of usernames belonging to `team`. + +For a streamed version of these results, see [`team.lsUsers.stream()`](#ls-users-stream). + +##### Example + +```javascript +await team.lsUsers('@npm:cli', {token: 'myregistrytoken'}) +=> +[ + 'iarna', + 'zkat' +] +``` + +#### `> team.lsUsers.stream(team, [opts]) -> Stream` + +Returns a stream of usernames belonging to `team`. + +For a Promise-based version of these results, see [`team.lsUsers()`](#ls-users). + +##### Example + +```javascript +for await (let user of team.lsUsers.stream('@npm:cli', {token: 'myregistrytoken'})) { + console.log(user) +} + +// outputs +// iarna +// zkat +``` diff --git a/deps/npm/node_modules/libnpmteam/index.js b/deps/npm/node_modules/libnpmteam/lib/index.js similarity index 92% rename from deps/npm/node_modules/libnpmteam/index.js rename to deps/npm/node_modules/libnpmteam/lib/index.js index 8b6040113d5b1f..4b257ea850d6e7 100644 --- a/deps/npm/node_modules/libnpmteam/index.js +++ b/deps/npm/node_modules/libnpmteam/lib/index.js @@ -15,7 +15,7 @@ cmd.create = (entity, opts = {}) => { ...opts, method: 'PUT', scope, - body: { name: team, description: opts.description } + body: { name: team, description: opts.description }, }) }) } @@ -27,7 +27,7 @@ cmd.destroy = (entity, opts = {}) => { return npmFetch.json(uri, { ...opts, method: 'DELETE', - scope + scope, }) } @@ -39,7 +39,7 @@ cmd.add = (user, entity, opts = {}) => { ...opts, method: 'PUT', scope, - body: { user } + body: { user }, }) } @@ -51,7 +51,7 @@ cmd.rm = (user, entity, opts = {}) => { ...opts, method: 'DELETE', scope, - body: { user } + body: { user }, }) } @@ -62,7 +62,7 @@ cmd.lsTeams.stream = (scope, opts = {}) => { const uri = `/-/org/${eu(scope)}/team` return npmFetch.json.stream(uri, '.*', { ...opts, - query: { format: 'cli' } + query: { format: 'cli' }, }) } @@ -74,7 +74,7 @@ cmd.lsUsers.stream = (entity, opts = {}) => { const uri = `/-/team/${eu(scope)}/${eu(team)}/user` return npmFetch.json.stream(uri, '.*', { ...opts, - query: { format: 'cli' } + query: { format: 'cli' }, }) } diff --git a/deps/npm/node_modules/libnpmteam/package.json b/deps/npm/node_modules/libnpmteam/package.json index 09837ad2dd14a4..1264402321ee75 100644 --- a/deps/npm/node_modules/libnpmteam/package.json +++ b/deps/npm/node_modules/libnpmteam/package.json @@ -1,28 +1,33 @@ { "name": "libnpmteam", "description": "npm Team management APIs", - "version": "2.0.4", - "author": "Kat Marchán ", + "version": "3.0.0", + "author": "GitHub Inc.", "license": "ISC", + "main": "lib/index.js", "scripts": { "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", - "lint": "standard", + "lint": "eslint '**/*.js'", "test": "tap", - "posttest": "npm run lint" + "posttest": "npm run lint", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix", + "snap": "tap" }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "nock": "^12.0.1", - "standard": "^14.3.1", - "tap": "^14.10.6" + "tap": "^15" }, "repository": { "type": "git", "url": "https://github.com/npm/libnpmteam.git" }, "files": [ - "index.js" + "bin", + "lib" ], "homepage": "https://npmjs.com/package/libnpmteam", "dependencies": { @@ -30,9 +35,12 @@ "npm-registry-fetch": "^11.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" }, "tap": { "check-coverage": true + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/node_modules/libnpmversion/README.md b/deps/npm/node_modules/libnpmversion/README.md new file mode 100644 index 00000000000000..e82e7cd6f8730f --- /dev/null +++ b/deps/npm/node_modules/libnpmversion/README.md @@ -0,0 +1,159 @@ +# libnpmversion + +Library to do the things that 'npm version' does. + +## USAGE + +```js +const npmVersion = require('libnpmversion') + +// argument can be one of: +// - any semver version string (set to that exact version) +// - 'major', 'minor', 'patch', 'pre{major,minor,patch}' (increment at +// that value) +// - 'from-git' (set to the latest semver-lookin git tag - this skips +// gitTagVersion, but will still sign if asked) +npmVersion(arg, { + path: '/path/to/my/pkg', // defaults to cwd + + allowSameVersion: false, // allow tagging/etc to the current version + preid: '', // when arg=='pre', define the prerelease string, like 'beta' etc. + tagVersionPrefix: 'v', // tag as 'v1.2.3' when versioning to 1.2.3 + commitHooks: true, // default true, run git commit hooks, default true + gitTagVersion: true, // default true, tag the version + signGitCommit: false, // default false, gpg sign the git commit + signGitTag: false, // default false, gpg sign the git tag + force: false, // push forward recklessly if any problems happen + ignoreScripts: false, // do not run pre/post/version lifecycle scripts + scriptShell: '/bin/bash', // shell to run lifecycle scripts in + message: 'v%s', // message for tag and commit, replace %s with the version +}).then(newVersion => { + console.error('version updated!', newVersion) +}) +``` + +## Description + +Run this in a package directory to bump the version and write the new data +back to `package.json`, `package-lock.json`, and, if present, +`npm-shrinkwrap.json`. + +The `newversion` argument should be a valid semver string, a valid second +argument to [semver.inc](https://github.com/npm/node-semver#functions) (one +of `patch`, `minor`, `major`, `prepatch`, `preminor`, `premajor`, +`prerelease`), or `from-git`. In the second case, the existing version will +be incremented by 1 in the specified field. `from-git` will try to read +the latest git tag, and use that as the new npm version. + +If run in a git repo, it will also create a version commit and tag. This +behavior is controlled by `gitTagVersion` (see below), and can be +disabled by setting `gitTagVersion: false` in the options. +It will fail if the working directory is not clean, unless `force: true` is +set. + +If supplied with a `message` string option, it will +use it as a commit message when creating a version commit. If the +`message` option contains `%s` then that will be replaced with the +resulting version number. + +If the `signGitTag` option is set, then the tag will be signed using +the `-s` flag to git. Note that you must have a default GPG key set up in +your git config for this to work properly. + +If `preversion`, `version`, or `postversion` are in the `scripts` property +of the package.json, they will be executed in the appropriate sequence. + +The exact order of execution is as follows: + +1. Check to make sure the git working directory is clean before we get + started. Your scripts may add files to the commit in future steps. + This step is skipped if the `force` flag is set. +2. Run the `preversion` script. These scripts have access to the old + `version` in package.json. A typical use would be running your full + test suite before deploying. Any files you want added to the commit + should be explicitly added using `git add`. +3. Bump `version` in `package.json` as requested (`patch`, `minor`, + `major`, explicit version number, etc). +4. Run the `version` script. These scripts have access to the new `version` + in package.json (so they can incorporate it into file headers in + generated files for example). Again, scripts should explicitly add + generated files to the commit using `git add`. +5. Commit and tag. +6. Run the `postversion` script. Use it to clean up the file system or + automatically push the commit and/or tag. + +Take the following example: + +```json +{ + "scripts": { + "preversion": "npm test", + "version": "npm run build && git add -A dist", + "postversion": "git push && git push --tags && rm -rf build/temp" + } +} +``` + +This runs all your tests, and proceeds only if they pass. Then runs your +`build` script, and adds everything in the `dist` directory to the commit. +After the commit, it pushes the new commit and tag up to the server, and +deletes the `build/temp` directory. + +## API + +### `npmVersion(newversion, options = {}) -> Promise` + +Do the things. Returns a promise that resolves to the new version if +all is well, or rejects if any errors are encountered. + +### Options + +#### `path` String + +The path to the package being versionified. Defaults to process.cwd(). + +#### `allowSameVersion` Boolean + +Allow setting the version to the current version in package.json. Default +`false`. + +#### `preid` String +When the `newversion` is pre, premajor, preminor, or prepatch, this +defines the prerelease string, like 'beta' etc. + +#### `tagVersionPrefix` String + +The prefix to add to the raw semver string for the tag name. Defaults to +`'v'`. (So, by default it tags as 'v1.2.3' when versioning to 1.2.3.) + +#### `commitHooks` Boolean + +Run git commit hooks. Default true. + +#### `gitTagVersion` Boolean + +Tag the version, default true. + +#### `signGitCommit` Boolean + +GPG sign the git commit. Default `false`. + +#### `signGitTag` Boolean + +GPG sign the git tag. Default `false`. + +#### `force` Boolean + +Push forward recklessly if any problems happen. Default `false`. + +#### `ignoreScripts` Boolean + +Do not run pre/post/version lifecycle scripts. Default `false`. + +#### `scriptShell` String + +Path to the shell, which should execute the lifecycle scripts. Defaults to `/bin/sh` on unix, or `cmd.exe` on windows. + +#### `message` String + +The message for the git commit and annotated git tag that are created. diff --git a/deps/npm/node_modules/libnpmversion/lib/index.js b/deps/npm/node_modules/libnpmversion/lib/index.js index b10b3e6ba4123a..683941cdea4f35 100644 --- a/deps/npm/node_modules/libnpmversion/lib/index.js +++ b/deps/npm/node_modules/libnpmversion/lib/index.js @@ -16,7 +16,7 @@ module.exports = async (newversion, opts = {}) => { scriptShell = undefined, preid = null, log = proclog, - message = 'v%s' + message = 'v%s', } = opts const pkg = opts.pkg || await readJson(path + '/package.json') @@ -36,6 +36,6 @@ module.exports = async (newversion, opts = {}) => { preid, pkg, log, - message + message, }) } diff --git a/deps/npm/node_modules/libnpmversion/lib/proc-log.js b/deps/npm/node_modules/libnpmversion/lib/proc-log.js index b2bdd9dc90205c..a7c683ba2fd115 100644 --- a/deps/npm/node_modules/libnpmversion/lib/proc-log.js +++ b/deps/npm/node_modules/libnpmversion/lib/proc-log.js @@ -9,7 +9,7 @@ const LEVELS = [ 'http', 'silly', 'pause', - 'resume' + 'resume', ] const log = level => (...args) => process.emit('log', level, ...args) diff --git a/deps/npm/node_modules/libnpmversion/lib/retrieve-tag.js b/deps/npm/node_modules/libnpmversion/lib/retrieve-tag.js index 6adb6df317a8d2..c5fb64e331198e 100644 --- a/deps/npm/node_modules/libnpmversion/lib/retrieve-tag.js +++ b/deps/npm/node_modules/libnpmversion/lib/retrieve-tag.js @@ -2,7 +2,9 @@ const { spawn } = require('@npmcli/git') const semver = require('semver') module.exports = async opts => { - const tag = (await spawn(['describe', '--tags', '--abbrev=0', '--match=*.*.*'], opts)).stdout.trim() + const tag = (await spawn( + ['describe', '--tags', '--abbrev=0', '--match=*.*.*'], + opts)).stdout.trim() const ver = semver.coerce(tag, { loose: true }) if (ver) { return ver.version diff --git a/deps/npm/node_modules/libnpmversion/lib/tag.js b/deps/npm/node_modules/libnpmversion/lib/tag.js index 73134dd25e6fe3..095456b20301ad 100644 --- a/deps/npm/node_modules/libnpmversion/lib/tag.js +++ b/deps/npm/node_modules/libnpmversion/lib/tag.js @@ -5,7 +5,7 @@ module.exports = async (version, opts) => { signGitTag, allowSameVersion, tagVersionPrefix, - message + message, } = opts const tag = `${tagVersionPrefix}${version}` @@ -25,6 +25,6 @@ module.exports = async (version, opts) => { 'tag', flags.join(''), message.replace(/%s/g, version), - tag + tag, ], opts) } diff --git a/deps/npm/node_modules/libnpmversion/lib/version.js b/deps/npm/node_modules/libnpmversion/lib/version.js index 2ef79173fca765..116a375553e9ea 100644 --- a/deps/npm/node_modules/libnpmversion/lib/version.js +++ b/deps/npm/node_modules/libnpmversion/lib/version.js @@ -19,7 +19,7 @@ module.exports = async (newversion, opts) => { ignoreScripts, preid, pkg, - log + log, } = opts const { valid, clean, inc } = semver @@ -38,7 +38,7 @@ module.exports = async (newversion, opts) => { if (!newV) { throw Object.assign(new Error('Invalid version: ' + newversion), { current, - requested: newversion + requested: newversion, }) } @@ -46,7 +46,7 @@ module.exports = async (newversion, opts) => { throw Object.assign(new Error('Version not changed'), { current, requested: newversion, - newVersion: newV + newVersion: newV, }) } @@ -67,8 +67,8 @@ module.exports = async (newversion, opts) => { banner: log.level !== 'silent', env: { npm_old_version: current, - npm_new_version: newV - } + npm_new_version: newV, + }, }) } @@ -101,8 +101,8 @@ module.exports = async (newversion, opts) => { banner: log.level !== 'silent', env: { npm_old_version: current, - npm_new_version: newV - } + npm_new_version: newV, + }, }) } @@ -115,7 +115,9 @@ module.exports = async (newversion, opts) => { } await commit(newV, opts) await tag(newV, opts) - } else { log.verbose('version', 'Not tagging: not in a git repo or no git cmd') } + } else { + log.verbose('version', 'Not tagging: not in a git repo or no git cmd') + } if (!ignoreScripts) { await runScript({ @@ -126,8 +128,8 @@ module.exports = async (newversion, opts) => { banner: log.level !== 'silent', env: { npm_old_version: current, - npm_new_version: newV - } + npm_new_version: newV, + }, }) } diff --git a/deps/npm/node_modules/libnpmversion/lib/write-json.js b/deps/npm/node_modules/libnpmversion/lib/write-json.js index 813bb7ffc279b6..f066d72c67e124 100644 --- a/deps/npm/node_modules/libnpmversion/lib/write-json.js +++ b/deps/npm/node_modules/libnpmversion/lib/write-json.js @@ -7,7 +7,7 @@ const kNewline = Symbol.for('newline') module.exports = async (path, pkg) => { const { [kIndent]: indent = 2, - [kNewline]: newline = '\n' + [kNewline]: newline = '\n', } = pkg delete pkg._id const raw = JSON.stringify(pkg, null, indent) + '\n' diff --git a/deps/npm/node_modules/libnpmversion/package.json b/deps/npm/node_modules/libnpmversion/package.json index 523f25f1d55c39..6d7823f5d0a5bf 100644 --- a/deps/npm/node_modules/libnpmversion/package.json +++ b/deps/npm/node_modules/libnpmversion/package.json @@ -1,40 +1,37 @@ { "name": "libnpmversion", - "version": "2.0.1", + "version": "2.0.2", "main": "lib/index.js", "files": [ - "lib/*.js" + "bin", + "lib" ], "description": "library to do the things that 'npm version' does", "repository": { "type": "git", "url": "git+https://github.com/npm/libnpmversion" }, - "author": "Isaac Z. Schlueter (https://izs.me)", + "author": "GitHub Inc.", "license": "ISC", "scripts": { - "lint": "standard", - "lint:fix": "standard --fix", + "lint": "eslint '**/*.js'", "test": "tap", "posttest": "npm run lint", "snap": "tap", "preversion": "npm test", "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" - }, - "standard": { - "ignore": [ - "tap-snapshots" - ] + "prepublishOnly": "git push origin --follow-tags", + "postlint": "npm-template-check", + "lintfix": "npm run lint -- --fix" }, "tap": { "coverage-map": "map.js", "check-coverage": true }, "devDependencies": { + "@npmcli/template-oss": "^2.4.2", "require-inject": "^1.4.4", - "standard": "^16.0.3", - "tap": "^14.11.0" + "tap": "^15" }, "dependencies": { "@npmcli/git": "^2.0.7", @@ -45,5 +42,8 @@ }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16" + }, + "templateOSS": { + "version": "2.4.3" } } diff --git a/deps/npm/package.json b/deps/npm/package.json index 636ef21e5fb643..a4a5fcc6e8d4db 100644 --- a/deps/npm/package.json +++ b/deps/npm/package.json @@ -1,5 +1,5 @@ { - "version": "8.3.0", + "version": "8.3.1", "name": "npm", "description": "a package manager for JavaScript", "workspaces": [ @@ -55,9 +55,9 @@ }, "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^4.1.1", + "@npmcli/arborist": "^4.2.0", "@npmcli/ci-detect": "^1.4.0", - "@npmcli/config": "^2.3.2", + "@npmcli/config": "^2.4.0", "@npmcli/map-workspaces": "^2.0.0", "@npmcli/package-json": "^1.0.1", "@npmcli/run-script": "^2.0.0", @@ -74,22 +74,22 @@ "fastest-levenshtein": "^1.0.12", "glob": "^7.2.0", "graceful-fs": "^4.2.8", - "hosted-git-info": "^4.0.2", + "hosted-git-info": "^4.1.0", "ini": "^2.0.0", "init-package-json": "^2.0.5", "is-cidr": "^4.0.2", "json-parse-even-better-errors": "^2.3.1", - "libnpmaccess": "^4.0.2", - "libnpmdiff": "^2.0.4", - "libnpmexec": "^3.0.1", - "libnpmfund": "^2.0.1", - "libnpmhook": "^6.0.2", - "libnpmorg": "^2.0.2", - "libnpmpack": "^3.0.0", - "libnpmpublish": "^4.0.1", - "libnpmsearch": "^3.1.1", - "libnpmteam": "^2.0.3", - "libnpmversion": "^2.0.1", + "libnpmaccess": "^5.0.0", + "libnpmdiff": "^3.0.0", + "libnpmexec": "^3.0.2", + "libnpmfund": "^2.0.2", + "libnpmhook": "^7.0.0", + "libnpmorg": "^3.0.0", + "libnpmpack": "^3.0.1", + "libnpmpublish": "^5.0.0", + "libnpmsearch": "^4.0.0", + "libnpmteam": "^3.0.0", + "libnpmversion": "^2.0.2", "make-fetch-happen": "^9.1.0", "minipass": "^3.1.6", "minipass-pipeline": "^1.2.4", @@ -201,16 +201,18 @@ ], "devDependencies": { "@npmcli/eslint-config": "^2.0.0", + "@npmcli/template-oss": "^2.4.3", "eslint": "^8.3.0", "licensee": "^8.2.0", "spawk": "^1.7.1", - "tap": "^15.1.5" + "tap": "^15.1.6" }, "scripts": { "dumpconf": "env | grep npm | sort | uniq", "preversion": "bash scripts/update-authors.sh && git add AUTHORS && git commit -m \"update AUTHORS\" || true", "licenses": "licensee --production --errors-only", "test": "tap", + "test-all": "npm run test --if-present --workspaces --include-workspace-root", "check-coverage": "tap", "snap": "tap", "postsnap": "make -s mandocs", @@ -235,6 +237,26 @@ "check-coverage": true, "timeout": 600 }, + "templateOSS": { + "applyRootRepoFiles": false, + "applyWorkspaceRepoFiles": true, + "applyRootModuleFiles": false, + "workspaces": [ + "@npmcli/arborist", + "libnpmaccess", + "libnpmdiff", + "libnpmfund", + "libnpmexec", + "libnpmorg", + "libnpmhook", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion" + ], + "version": "2.4.3" + }, "license": "Artistic-2.0", "engines": { "node": "^12.13.0 || ^14.15.0 || >=16" diff --git a/deps/npm/test/lib/commands/pack.js b/deps/npm/test/lib/commands/pack.js index 21057e207953e2..51453dae9b017d 100644 --- a/deps/npm/test/lib/commands/pack.js +++ b/deps/npm/test/lib/commands/pack.js @@ -136,6 +136,9 @@ t.test('workspaces', async t => { }, config: { workspaces: true, + // TODO: this is a workaround for npm run test-all + // somehow leaking include-workspace-root + 'include-workspace-root': false, }, }) diff --git a/deps/npm/test/lib/commands/unpublish.js b/deps/npm/test/lib/commands/unpublish.js index 1424adf5c98515..b1b148a7c27ec2 100644 --- a/deps/npm/test/lib/commands/unpublish.js +++ b/deps/npm/test/lib/commands/unpublish.js @@ -3,6 +3,23 @@ const { fake: mockNpm } = require('../../fixtures/mock-npm') let result = '' const noop = () => null +const versions = async () => { + return { + versions: { + '1.0.0': {}, + '1.0.1': {}, + }, + } +} + +const singleVersion = async () => { + return { + versions: { + '1.0.0': {}, + }, + } +} + const config = { force: false, loglevel: 'silly', @@ -26,7 +43,7 @@ const npm = mockNpm({ const mocks = { libnpmaccess: { lsPackages: noop }, libnpmpublish: { unpublish: noop }, - 'npm-registry-fetch': { json: noop }, + 'npm-registry-fetch': { json: versions }, '../../../lib/utils/otplease.js': async (opts, fn) => fn(opts), '../../../lib/utils/get-identity.js': async () => 'foo', 'proc-log': { silly () {}, verbose () {} }, @@ -530,3 +547,32 @@ t.test('completion', async t => { }) }) }) + +t.test('show error on unpublish @version with package.json and the last version', async t => { + const Unpublish = t.mock('../../../lib/commands/unpublish.js', { + ...mocks, + 'npm-registry-fetch': { json: singleVersion }, + path: { resolve: () => testDir, join: () => testDir + '/package.json' }, + }) + const unpublish = new Unpublish(npm) + await t.rejects( + unpublish.exec(['pkg@1.0.0']), + 'Refusing to delete the last version of the package. ' + + 'It will block from republishing a new version for 24 hours.\n' + + 'Run with --force to do this.' + ) +}) + +t.test('show error on unpublish @version when the last version', async t => { + const Unpublish = t.mock('../../../lib/commands/unpublish.js', { + ...mocks, + 'npm-registry-fetch': { json: singleVersion }, + }) + const unpublish = new Unpublish(npm) + await t.rejects( + unpublish.exec(['pkg@1.0.0']), + 'Refusing to delete the last version of the package. ' + + 'It will block from republishing a new version for 24 hours.\n' + + 'Run with --force to do this.' + ) +}) From 2ea2621ace40921e1bfa56ad0d9a3be0011de738 Mon Sep 17 00:00:00 2001 From: MrJithil Date: Tue, 11 Jan 2022 14:42:05 +0530 Subject: [PATCH 011/161] build: fix node build failures in WSL Ubuntu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On WSL systems, `./configure` causes appending of carriage return (`\r\r`) as leftover and will be appended to the `gyp_args`. Therefore, it will lead to unhandled exceptions from the `./configure` execution. Excluded the empty or whitespace item from the `args` array to fix the issue. Fixes: https://github.com/nodejs/node/issues/41459 PR-URL: https://github.com/nodejs/node/pull/41476 Reviewed-By: Anna Henningsen Reviewed-By: Tobias Nießen Reviewed-By: Benjamin Gruenbaum Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Darshan Sen Reviewed-By: Michael Dawson --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 3209c5a6472986..c17e3c6dfaab34 100755 --- a/configure.py +++ b/configure.py @@ -2031,8 +2031,8 @@ def make_bin_override(): if bin_override is not None: gyp_args += ['-Dpython=' + sys.executable] -# pass the leftover positional arguments to GYP -gyp_args += args +# pass the leftover non-whitespace positional arguments to GYP +gyp_args += [arg for arg in args if not str.isspace(arg)] if warn.warned and not options.verbose: warn('warnings were emitted in the configure phase') From f7be6ab042059659caa1d5fd18e181f472b33f27 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 14 Jan 2022 16:07:46 -0800 Subject: [PATCH 012/161] stream: remove always-false condition check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove comparison to null of variable guaranteed to be a boolean. PR-URL: https://github.com/nodejs/node/pull/41488 Reviewed-By: Matteo Collina Reviewed-By: Benjamin Gruenbaum Reviewed-By: Robert Nagy Reviewed-By: Tobias Nießen Reviewed-By: Darshan Sen --- lib/internal/streams/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/streams/utils.js b/lib/internal/streams/utils.js index 983088e6ba5d0c..d35744f26b7980 100644 --- a/lib/internal/streams/utils.js +++ b/lib/internal/streams/utils.js @@ -119,14 +119,14 @@ function isReadableFinished(stream, strict) { function isReadable(stream) { if (stream && stream[kIsReadable] != null) return stream[kIsReadable]; const r = isReadableNodeStream(stream); - if (r === null || typeof stream?.readable !== 'boolean') return null; + if (typeof stream?.readable !== 'boolean') return null; if (isDestroyed(stream)) return false; return r && stream.readable && !isReadableFinished(stream); } function isWritable(stream) { const r = isWritableNodeStream(stream); - if (r === null || typeof stream?.writable !== 'boolean') return null; + if (typeof stream?.writable !== 'boolean') return null; if (isDestroyed(stream)) return false; return r && stream.writable && !isWritableEnded(stream); } From 807c7e14f4111a43657b2d09d175cbd4249d54b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 11 Jan 2022 16:11:55 +0000 Subject: [PATCH 013/161] tls: move tls.parseCertString to end-of-life The internal use of tls.parseCertString was removed in a336444c7fb9fd1d0055481d84cdd57d7d569879. The function does not handle multi-value RDNs correctly, leading to incorrect representations and security concerns. This change is breaking in two ways: tls.parseCertString is removed (but has been runtime-deprecated since Node.js 9) and _tls_common.translatePeerCertificate does not translate the `subject` and `issuer` properties anymore. This change also removes the recommendation to use querystring.parse instead, which is similarly dangerous. PR-URL: https://github.com/nodejs/node/pull/41479 Reviewed-By: James M Snell Reviewed-By: Benjamin Gruenbaum Reviewed-By: Matteo Collina Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig --- doc/api/deprecations.md | 27 +++---- lib/_tls_common.js | 8 --- lib/internal/tls/parse-cert-string.js | 35 --------- lib/tls.js | 7 -- test/parallel/test-tls-parse-cert-string.js | 71 ------------------- .../test-tls-translate-peer-certificate.js | 21 +++--- 6 files changed, 21 insertions(+), 148 deletions(-) delete mode 100644 lib/internal/tls/parse-cert-string.js delete mode 100644 test/parallel/test-tls-parse-cert-string.js diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 31eb7209dce89b..2a879e693aefd1 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -1595,6 +1595,9 @@ Type: End-of-Life -Type: Runtime - -`tls.parseCertString()` is a trivial parsing helper that was made public by -mistake. This function can usually be replaced with: - -```js -const querystring = require('querystring'); -querystring.parse(str, '\n', '='); -``` +Type: End-of-Life -This function is not completely equivalent to `querystring.parse()`. One -difference is that `querystring.parse()` does url decoding: +`tls.parseCertString()` was a trivial parsing helper that was made public by +mistake. While it was supposed to parse certificate subject and issuer strings, +it never handled multi-value Relative Distinguished Names correctly. -```console -> querystring.parse('%E5%A5%BD=1', '\n', '='); -{ '好': '1' } -> tls.parseCertString('%E5%A5%BD=1'); -{ '%E5%A5%BD': '1' } -``` +Earlier versions of this document suggested using `querystring.parse()` as an +alternative to `tls.parseCertString()`. However, `querystring.parse()` also does +not handle all certificate subjects correctly and should not be used. ### DEP0077: `Module._debug()` diff --git a/lib/_tls_common.js b/lib/_tls_common.js index 533fbe7fd256e3..79d3ac1136ec99 100644 --- a/lib/_tls_common.js +++ b/lib/_tls_common.js @@ -55,10 +55,6 @@ const { configSecureContext, } = require('internal/tls/secure-context'); -const { - parseCertString, -} = require('internal/tls/parse-cert-string'); - function toV(which, v, def) { if (v == null) v = def; if (v === 'TLSv1') return TLS1_VERSION; @@ -126,13 +122,9 @@ function translatePeerCertificate(c) { if (!c) return null; - // TODO(tniessen): can we remove parseCertString without breaking anything? - if (typeof c.issuer === 'string') c.issuer = parseCertString(c.issuer); if (c.issuerCertificate != null && c.issuerCertificate !== c) { c.issuerCertificate = translatePeerCertificate(c.issuerCertificate); } - // TODO(tniessen): can we remove parseCertString without breaking anything? - if (typeof c.subject === 'string') c.subject = parseCertString(c.subject); if (c.infoAccess != null) { const info = c.infoAccess; c.infoAccess = ObjectCreate(null); diff --git a/lib/internal/tls/parse-cert-string.js b/lib/internal/tls/parse-cert-string.js deleted file mode 100644 index a499df886097b4..00000000000000 --- a/lib/internal/tls/parse-cert-string.js +++ /dev/null @@ -1,35 +0,0 @@ -'use strict'; - -const { - ArrayIsArray, - ArrayPrototypeForEach, - ArrayPrototypePush, - StringPrototypeIndexOf, - StringPrototypeSlice, - StringPrototypeSplit, - ObjectCreate, -} = primordials; - -// Example: -// C=US\nST=CA\nL=SF\nO=Joyent\nOU=Node.js\nCN=ca1\nemailAddress=ry@clouds.org -function parseCertString(s) { - const out = ObjectCreate(null); - ArrayPrototypeForEach(StringPrototypeSplit(s, '\n'), (part) => { - const sepIndex = StringPrototypeIndexOf(part, '='); - if (sepIndex > 0) { - const key = StringPrototypeSlice(part, 0, sepIndex); - const value = StringPrototypeSlice(part, sepIndex + 1); - if (key in out) { - if (!ArrayIsArray(out[key])) { - out[key] = [out[key]]; - } - ArrayPrototypePush(out[key], value); - } else { - out[key] = value; - } - } - }); - return out; -} - -exports.parseCertString = parseCertString; diff --git a/lib/tls.js b/lib/tls.js index f17a2fd0c5b0aa..de20505fde242b 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -64,7 +64,6 @@ const { canonicalizeIP } = internalBinding('cares_wrap'); const _tls_common = require('_tls_common'); const _tls_wrap = require('_tls_wrap'); const { createSecurePair } = require('internal/tls/secure-pair'); -const { parseCertString } = require('internal/tls/parse-cert-string'); // Allow {CLIENT_RENEG_LIMIT} client-initiated session renegotiations // every {CLIENT_RENEG_WINDOW} seconds. An error event is emitted if more @@ -338,12 +337,6 @@ exports.Server = _tls_wrap.Server; exports.createServer = _tls_wrap.createServer; exports.connect = _tls_wrap.connect; -exports.parseCertString = internalUtil.deprecate( - parseCertString, - 'tls.parseCertString() is deprecated. ' + - 'Please use querystring.parse() instead.', - 'DEP0076'); - exports.createSecurePair = internalUtil.deprecate( createSecurePair, 'tls.createSecurePair() is deprecated. Please use ' + diff --git a/test/parallel/test-tls-parse-cert-string.js b/test/parallel/test-tls-parse-cert-string.js deleted file mode 100644 index c1f32524d578b5..00000000000000 --- a/test/parallel/test-tls-parse-cert-string.js +++ /dev/null @@ -1,71 +0,0 @@ -/* eslint-disable no-proto */ -'use strict'; - -const common = require('../common'); -if (!common.hasCrypto) - common.skip('missing crypto'); - -const { - hijackStderr, - restoreStderr -} = require('../common/hijackstdio'); -const assert = require('assert'); -// Flags: --expose-internals -const { parseCertString } = require('internal/tls/parse-cert-string'); -const tls = require('tls'); - -const noOutput = common.mustNotCall(); -hijackStderr(noOutput); - -{ - const singles = 'C=US\nST=CA\nL=SF\nO=Node.js Foundation\nOU=Node.js\n' + - 'CN=ca1\nemailAddress=ry@clouds.org'; - const singlesOut = parseCertString(singles); - assert.deepStrictEqual(singlesOut, { - __proto__: null, - C: 'US', - ST: 'CA', - L: 'SF', - O: 'Node.js Foundation', - OU: 'Node.js', - CN: 'ca1', - emailAddress: 'ry@clouds.org' - }); -} - -{ - const doubles = 'OU=Domain Control Validated\nOU=PositiveSSL Wildcard\n' + - 'CN=*.nodejs.org'; - const doublesOut = parseCertString(doubles); - assert.deepStrictEqual(doublesOut, { - __proto__: null, - OU: [ 'Domain Control Validated', 'PositiveSSL Wildcard' ], - CN: '*.nodejs.org' - }); -} - -{ - const invalid = 'fhqwhgads'; - const invalidOut = parseCertString(invalid); - assert.deepStrictEqual(invalidOut, { __proto__: null }); -} - -{ - const input = '__proto__=mostly harmless\nhasOwnProperty=not a function'; - const expected = Object.create(null); - expected.__proto__ = 'mostly harmless'; - expected.hasOwnProperty = 'not a function'; - assert.deepStrictEqual(parseCertString(input), expected); -} - -restoreStderr(); - -{ - common.expectWarning('DeprecationWarning', - 'tls.parseCertString() is deprecated. ' + - 'Please use querystring.parse() instead.', - 'DEP0076'); - - const ret = tls.parseCertString('foo=bar'); - assert.deepStrictEqual(ret, { __proto__: null, foo: 'bar' }); -} diff --git a/test/parallel/test-tls-translate-peer-certificate.js b/test/parallel/test-tls-translate-peer-certificate.js index f8499e0c7e84ff..a14308ab87b762 100644 --- a/test/parallel/test-tls-translate-peer-certificate.js +++ b/test/parallel/test-tls-translate-peer-certificate.js @@ -9,11 +9,6 @@ const { strictEqual, deepStrictEqual } = require('assert'); const { translatePeerCertificate } = require('_tls_common'); const certString = '__proto__=42\nA=1\nB=2\nC=3'; -const certObject = Object.create(null); -certObject.__proto__ = '42'; -certObject.A = '1'; -certObject.B = '2'; -certObject.C = '3'; strictEqual(translatePeerCertificate(null), null); strictEqual(translatePeerCertificate(undefined), null); @@ -23,19 +18,25 @@ strictEqual(translatePeerCertificate(1), 1); deepStrictEqual(translatePeerCertificate({}), {}); +// Earlier versions of Node.js parsed the issuer property but did so +// incorrectly. This behavior has now reached end-of-life and user-supplied +// strings will not be parsed at all. deepStrictEqual(translatePeerCertificate({ issuer: '' }), - { issuer: Object.create(null) }); + { issuer: '' }); deepStrictEqual(translatePeerCertificate({ issuer: null }), { issuer: null }); deepStrictEqual(translatePeerCertificate({ issuer: certString }), - { issuer: certObject }); + { issuer: certString }); +// Earlier versions of Node.js parsed the issuer property but did so +// incorrectly. This behavior has now reached end-of-life and user-supplied +// strings will not be parsed at all. deepStrictEqual(translatePeerCertificate({ subject: '' }), - { subject: Object.create(null) }); + { subject: '' }); deepStrictEqual(translatePeerCertificate({ subject: null }), { subject: null }); deepStrictEqual(translatePeerCertificate({ subject: certString }), - { subject: certObject }); + { subject: certString }); deepStrictEqual(translatePeerCertificate({ issuerCertificate: '' }), { issuerCertificate: null }); @@ -43,7 +44,7 @@ deepStrictEqual(translatePeerCertificate({ issuerCertificate: null }), { issuerCertificate: null }); deepStrictEqual( translatePeerCertificate({ issuerCertificate: { subject: certString } }), - { issuerCertificate: { subject: certObject } }); + { issuerCertificate: { subject: certString } }); { const cert = {}; From e874630d8a9f0787ac92093cbf6c0bf1f7f64b4c Mon Sep 17 00:00:00 2001 From: Mestery Date: Sat, 15 Jan 2022 18:25:56 +0100 Subject: [PATCH 014/161] doc: add Mesteery to collaborators Fixes: https://github.com/nodejs/node/issues/41216 PR-URL: https://github.com/nodejs/node/pull/41543 Reviewed-By: Antoine du Hamel Reviewed-By: Qingyu Deng Reviewed-By: Ben Coe --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 557ac50f7ce692..53de55288a06a9 100644 --- a/README.md +++ b/README.md @@ -188,6 +188,8 @@ For information about the governance of the Node.js project, see **Joyee Cheung** <> (she/her) * [mcollina](https://github.com/mcollina) - **Matteo Collina** <> (he/him) +* [Mesteery](https://github.com/Mesteery) - + **Mestery** <> (he/him) * [mhdawson](https://github.com/mhdawson) - **Michael Dawson** <> (he/him) * [mmarchini](https://github.com/mmarchini) - From f92af5210526afedc272a9ca66ea7aef32099852 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 16 Jan 2022 00:03:44 +0100 Subject: [PATCH 015/161] doc: fix typo in `onboarding.md` PR-URL: https://github.com/nodejs/node/pull/41544 Reviewed-By: Zeyu Yang Reviewed-By: Mestery Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig --- onboarding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onboarding.md b/onboarding.md index 76c7a3dcecd8ba..eef5ee41e7065e 100644 --- a/onboarding.md +++ b/onboarding.md @@ -205,7 +205,7 @@ needs to be pointed out separately during the onboarding. * Example: * For raw commit message: - `git show --format=%Bb58fe52692659c0bc25ddbe6afa7f4ae2c7f14a8` + `git show --format=%B b58fe52692659c0bc25ddbe6afa7f4ae2c7f14a8` * Collaborators are in alphabetical order by GitHub username. * Optionally, include your personal pronouns. * Add the `Fixes: ` to the commit message From b2edcfee46097fe8e0510a455b97d5c6d0cac5ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Thu, 13 Jan 2022 22:42:51 +0100 Subject: [PATCH 016/161] doc: remove statement about client private keys This statement was objectively false. Clients usually only need to generate and/or own a private key if the server sends a CertificateRequest during the TLS handshake, which is not a common case. PR-URL: https://github.com/nodejs/node/pull/41505 Reviewed-By: Filip Skokan Reviewed-By: Benjamin Gruenbaum Reviewed-By: Colin Ihrig Reviewed-By: Michael Dawson --- doc/api/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index 86a690998799e0..3c77f8c6c284ab 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -17,7 +17,7 @@ const tls = require('tls'); ## TLS/SSL concepts The TLS/SSL is a public/private key infrastructure (PKI). For most common -cases, each client and server must have a _private key_. +cases, each server must have a _private key_. Private keys can be generated in multiple ways. The example below illustrates use of the OpenSSL command-line interface to generate a 2048-bit RSA private From 67beba879cce0d874a5abadd1662aa43e6395ac0 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sun, 16 Jan 2022 07:18:27 -0800 Subject: [PATCH 017/161] meta: update AUTHORS PR-URL: https://github.com/nodejs/node/pull/41548 Reviewed-By: Rich Trott Reviewed-By: Mestery --- .mailmap | 1 + AUTHORS | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.mailmap b/.mailmap index 4f0163e9e161e4..c76b2932e38728 100644 --- a/.mailmap +++ b/.mailmap @@ -82,6 +82,7 @@ Caralyn Reisle Charles Charles Rudolph Chen Gang +Chen Gang <13298548+MoonBall@users.noreply.github.com> Chew Choon Keat Chris Andrews Chris Johnson diff --git a/AUTHORS b/AUTHORS index f760e06262637d..905a7f6a4d7b26 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3394,5 +3394,7 @@ alexcfyung Gaby Baghdadi Wayne Zhang nikoladev <15011519+nikoladev@users.noreply.github.com> +Antonio Román +JoostK # Generated by tools/update-authors.js From 986cf3b986c6c3e1495327eb3aa1ffc3972f2442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Fri, 14 Jan 2022 17:43:40 +0100 Subject: [PATCH 018/161] doc: remove statement about (EC)DHE performance This statement is misleading in that it says "key generation is expensive". ECDHE key generation (over the elliptic curves that are commonly used for TLS) is insanely fast compared to most other types of key generation. This statement is irrelevant for TLS 1.3, which requires (EC)DHE. Even if this statement is somewhat true for TLS 1.2, it does not justify discouraging the use of (EC)DHE. PR-URL: https://github.com/nodejs/node/pull/41528 Reviewed-By: Rich Trott Reviewed-By: Anna Henningsen Reviewed-By: Benjamin Gruenbaum --- doc/api/tls.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index 3c77f8c6c284ab..dfa7eb1d3fbb0e 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -89,9 +89,6 @@ the character "E" appended to the traditional abbreviations): * [ECDHE][]: An ephemeral version of the Elliptic Curve Diffie-Hellman key-agreement protocol. -Ephemeral methods may have some performance drawbacks, because key generation -is expensive. - To use perfect forward secrecy using `DHE` with the `tls` module, it is required to generate Diffie-Hellman parameters and specify them with the `dhparam` option to [`tls.createSecureContext()`][]. The following illustrates the use of From a7215c8fa7b0f6950e2e0e0c8431b0454521721f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 16 Jan 2022 21:31:21 -0800 Subject: [PATCH 019/161] benchmark: remove unreachable code from crypto/hash-stream-creation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `hash.digest('buffer')` has returned a Buffer and not a string since at least Node.js 0.10.6. The benchmark, as it is written, will not work on any version of Node.js prior to 16.x (due to `Object.hasOwn()`) and certainly won't run on versions earlier than 0.10.6 due to const/let and probably other things. Remove impossible-to-reach code intended to accommodate Node.js earlier than 0.10.6. PR-URL: https://github.com/nodejs/node/pull/41535 Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca --- benchmark/crypto/hash-stream-creation.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/benchmark/crypto/hash-stream-creation.js b/benchmark/crypto/hash-stream-creation.js index c21eb6eaaaed99..e480c7b6edcc41 100644 --- a/benchmark/crypto/hash-stream-creation.js +++ b/benchmark/crypto/hash-stream-creation.js @@ -52,11 +52,7 @@ function legacyWrite(algo, message, encoding, writes, len, outEnc) { while (writes-- > 0) { const h = crypto.createHash(algo); h.update(message, encoding); - let res = h.digest(outEnc); - - // Include buffer creation costs for older versions - if (outEnc === 'buffer' && typeof res === 'string') - res = Buffer.from(res, 'binary'); + h.digest(outEnc); } bench.end(gbits); From 20347d51549bc7319ec3a44fe8b5fd25994df462 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 16 Jan 2022 21:31:30 -0800 Subject: [PATCH 020/161] stream: avoid function call where possible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of assigning a boolean, move the function call that assigns a value to the boolean to the only place that boolean is checked. This avoids the function call in cases where it is not needed. Refs: https://github.com/nodejs/node/pull/41488#pullrequestreview-850626528 PR-URL: https://github.com/nodejs/node/pull/41534 Reviewed-By: Tobias Nießen Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Gerhard Stöbich Reviewed-By: Matteo Collina --- lib/internal/streams/utils.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/internal/streams/utils.js b/lib/internal/streams/utils.js index d35744f26b7980..4d4f00ab456fa7 100644 --- a/lib/internal/streams/utils.js +++ b/lib/internal/streams/utils.js @@ -118,17 +118,19 @@ function isReadableFinished(stream, strict) { function isReadable(stream) { if (stream && stream[kIsReadable] != null) return stream[kIsReadable]; - const r = isReadableNodeStream(stream); if (typeof stream?.readable !== 'boolean') return null; if (isDestroyed(stream)) return false; - return r && stream.readable && !isReadableFinished(stream); + return isReadableNodeStream(stream) && + stream.readable && + !isReadableFinished(stream); } function isWritable(stream) { - const r = isWritableNodeStream(stream); if (typeof stream?.writable !== 'boolean') return null; if (isDestroyed(stream)) return false; - return r && stream.writable && !isWritableEnded(stream); + return isWritableNodeStream(stream) && + stream.writable && + !isWritableEnded(stream); } function isFinished(stream, opts) { From 0594577e69b11dccfa1d45453a712450a0cefbe0 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 14 Jan 2022 16:25:00 +0000 Subject: [PATCH 021/161] test: add coverage for util.inspect() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coverage stats indicate that there is no coverage for util.inspect() with a negative number and a numeric separator. Add a test case. Refs: https://coverage.nodejs.org/coverage-df507758e6c35534/lib/internal/util/inspect.js.html#L1463 PR-URL: https://github.com/nodejs/node/pull/41527 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Tobias Nießen --- test/parallel/test-util-inspect.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/parallel/test-util-inspect.js b/test/parallel/test-util-inspect.js index 029b7cde8a06f8..64852a8bca38b7 100644 --- a/test/parallel/test-util-inspect.js +++ b/test/parallel/test-util-inspect.js @@ -3231,4 +3231,9 @@ assert.strictEqual( util.inspect(123456789.12345678, { numericSeparator: true }), '123_456_789.123_456_78' ); + + assert.strictEqual( + util.inspect(-123456789.12345678, { numericSeparator: true }), + '-123_456_789.123_456_78' + ); } From 87325917ec2e57c8b70eba78695dbeaa1ac181a5 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Mon, 17 Jan 2022 11:36:19 +0100 Subject: [PATCH 022/161] doc: clarify module system selection Refs: https://github.com/nodejs/node/pull/41345#discussion_r777115823 PR-URL: https://github.com/nodejs/node/pull/41383 Reviewed-By: Guy Bedford Reviewed-By: Geoffrey Booth --- doc/api/cli.md | 44 ++++++++++++++++++++++---- doc/api/esm.md | 12 ++++--- doc/api/modules.md | 35 ++++++++++++++++++++- doc/api/packages.md | 63 ++++++++++++++++++++++++++++++++----- doc/api/synopsis.md | 2 +- tools/doc/links-mapper.json | 4 +-- 6 files changed, 137 insertions(+), 23 deletions(-) diff --git a/doc/api/cli.md b/doc/api/cli.md index 63bd7aaa702609..76c122fc16dd0b 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -1,4 +1,4 @@ -# Command-line options +# Command-line API @@ -11,9 +11,9 @@ To view this documentation as a manual page in a terminal, run `man node`. ## Synopsis -`node [options] [V8 options] [script.js | -e "script" | -] [--] [arguments]` +`node [options] [V8 options] [ | -e "script" | -] [--] [arguments]` -`node inspect [script.js | -e "script" | :] …` +`node inspect [ | -e "script" | :] …` `node --v8-options` @@ -21,6 +21,33 @@ Execute without arguments to start the [REPL][]. For more info about `node inspect`, see the [debugger][] documentation. +## Program entry point + +The program entry point is a specifier-like string. If the string is not an +absolute path, it's resolved as a relative path from the current working +directory. That path is then resolved by [CommonJS][] module loader. If no +corresponding file is found, an error is thrown. + +If a file is found, its path will be passed to the [ECMAScript module loader][] +under any of the following conditions: + +* The program was started with a command-line flag that forces the entry + point to be loaded with ECMAScript module loader. +* The file has an `.mjs` extension. +* The file does not have a `.cjs` extension, and the nearest parent + `package.json` file contains a top-level [`"type"`][] field with a value of + `"module"`. + +Otherwise, the file is loaded using the CommonJS module loader. See +[Modules loaders][] for more details. + +### ECMAScript modules loader entry point caveat + +When loading [ECMAScript module loader][] loads the program entry point, the `node` +command will only accept as input only files with `.js`, `.mjs`, or `.cjs` +extensions; and with `.wasm` extensions when +[`--experimental-wasm-modules`][] is enabled. + ## Options -Specify the `module` of a custom experimental [ECMAScript Module loader][]. -`module` may be either a path to a file, or an ECMAScript Module name. +Specify the `module` of a custom experimental [ECMAScript module loader][]. +`module` may be any string accepted as an [`import` specifier][]. ### `--experimental-policy` @@ -1931,15 +1958,19 @@ $ node --max-old-space-size=1536 index.js ``` [Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/ -[ECMAScript Module loader]: esm.md#loaders +[CommonJS]: modules.md +[ECMAScript module loader]: esm.md#loaders +[Modules loaders]: packages.md#modules-loaders [OSSL_PROVIDER-legacy]: https://www.openssl.org/docs/man3.0/man7/OSSL_PROVIDER-legacy.html [REPL]: repl.md [ScriptCoverage]: https://chromedevtools.github.io/devtools-protocol/tot/Profiler#type-ScriptCoverage [Source Map]: https://sourcemaps.info/spec.html [Subresource Integrity]: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity [V8 JavaScript code coverage]: https://v8project.blogspot.com/2017/12/javascript-code-coverage.html +[`"type"`]: packages.md#type [`--cpu-prof-dir`]: #--cpu-prof-dir [`--diagnostic-dir`]: #--diagnostic-dirdirectory +[`--experimental-wasm-modules`]: #--experimental-wasm-modules [`--heap-prof-dir`]: #--heap-prof-dir [`--openssl-config`]: #--openssl-configfile [`--redirect-warnings`]: #--redirect-warningsfile @@ -1952,6 +1983,7 @@ $ node --max-old-space-size=1536 index.js [`dns.lookup()`]: dns.md#dnslookuphostname-options-callback [`dns.setDefaultResultOrder()`]: dns.md#dnssetdefaultresultorderorder [`dnsPromises.lookup()`]: dns.md#dnspromiseslookuphostname-options +[`import` specifier]: esm.md#import-specifiers [`process.setUncaughtExceptionCaptureCallback()`]: process.md#processsetuncaughtexceptioncapturecallbackfn [`tls.DEFAULT_MAX_VERSION`]: tls.md#tlsdefault_max_version [`tls.DEFAULT_MIN_VERSION`]: tls.md#tlsdefault_min_version diff --git a/doc/api/esm.md b/doc/api/esm.md index 54f576261c2387..3b74ff03bc60c1 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -94,12 +94,12 @@ provides interoperability between them and its original module format, -Node.js treats JavaScript code as CommonJS modules by default. -Authors can tell Node.js to treat JavaScript code as ECMAScript modules +Node.js has two module systems: [CommonJS][] modules and ECMAScript modules. + +Authors can tell Node.js to use the ECMAScript modules loader via the `.mjs` file extension, the `package.json` [`"type"`][] field, or the -`--input-type` flag. See -[Modules: Packages](packages.md#determining-module-system) for more -details. +[`--input-type`][] flag. Outside of those cases, Node.js will use the CommonJS +module loader. See [Determining module system][] for more details. @@ -1443,6 +1443,7 @@ success! [CommonJS]: modules.md [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 [ES Module Integration Proposal for WebAssembly]: https://github.com/webassembly/esm-integration [Import Assertions]: #import-assertions @@ -1454,6 +1455,7 @@ success! [WHATWG JSON modules specification]: https://html.spec.whatwg.org/#creating-a-json-module-script [`"exports"`]: packages.md#exports [`"type"`]: packages.md#type +[`--input-type`]: cli.md#--input-typetype [`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer [`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer [`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray diff --git a/doc/api/modules.md b/doc/api/modules.md index e8f0788ceba960..ce8b1d5f123e23 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -61,7 +61,38 @@ module.exports = class Square { }; ``` -The module system is implemented in the `require('module')` module. +The CommonJS module system is implemented in the [`module` core module][]. + +## Enabling + + + +Node.js has two module systems: CommonJS modules and [ECMAScript modules][]. + +By default, Node.js will treat the following as CommonJS modules: + +* Files with a `.cjs` extension; + +* Files with a `.js` extension when the nearest parent `package.json` file + contains a top-level field [`"type"`][] with a value of `"commonjs"`. + +* Files with a `.js` extension when the nearest parent `package.json` file + doesn't contain a top-level field [`"type"`][]. Package authors should include + the [`"type"`][] field, even in packages where all sources are CommonJS. Being + explicit about the `type` of the package will make things easier for build + tools and loaders to determine how the files in the package should be + interpreted. + +* Files with an extension that is not `.mjs`, `.cjs`, `.json`, `.node`, or `.js` + (when the nearest parent `package.json` file contains a top-level field + [`"type"`][] with a value of `"module"`, those files will be recognized as + CommonJS modules only if they are being `require`d, not when used as the + command-line entry point of the program). + +See [Determining module system][] for more details. + +Calling `require()` always use the CommonJS module loader. Calling `import()` +always use the ECMAScript module loader. ## Accessing the main module @@ -1047,6 +1078,7 @@ This section was moved to [ECMAScript Modules]: esm.md [GLOBAL_FOLDERS]: #loading-from-the-global-folders [`"main"`]: packages.md#main +[`"type"`]: packages.md#type [`ERR_REQUIRE_ESM`]: errors.md#err_require_esm [`Error`]: errors.md#class-error [`__dirname`]: #__dirname @@ -1054,6 +1086,7 @@ This section was moved to [`import()`]: https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Dynamic_Imports [`module.children`]: #modulechildren [`module.id`]: #moduleid +[`module` core module]: module.md [`module` object]: #the-module-object [`package.json`]: packages.md#nodejs-packagejson-field-definitions [`path.dirname()`]: path.md#pathdirnamepath diff --git a/doc/api/packages.md b/doc/api/packages.md index 9529685b953127..e75549256bf2fc 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -51,12 +51,13 @@ along with a reference for the [`package.json`][] fields defined by Node.js. ## Determining module system Node.js will treat the following as [ES modules][] when passed to `node` as the -initial input, or when referenced by `import` statements within ES module code: +initial input, or when referenced by `import` statements or `import()` +expressions: -* Files ending in `.mjs`. +* Files with an `.mjs` extension. -* Files ending in `.js` when the nearest parent `package.json` file contains a - top-level [`"type"`][] field with a value of `"module"`. +* Files with a `.js` extension when the nearest parent `package.json` file + contains a top-level [`"type"`][] field with a value of `"module"`. * Strings passed in as an argument to `--eval`, or piped to `node` via `STDIN`, with the flag `--input-type=module`. @@ -67,12 +68,13 @@ field, or string input without the flag `--input-type`. This behavior is to preserve backward compatibility. However, now that Node.js supports both CommonJS and ES modules, it is best to be explicit whenever possible. Node.js will treat the following as CommonJS when passed to `node` as the initial input, -or when referenced by `import` statements within ES module code: +or when referenced by `import` statements, `import()` expressions, or +`require()` expressions: -* Files ending in `.cjs`. +* Files with a `.cjs` extension. -* Files ending in `.js` when the nearest parent `package.json` file contains a - top-level field [`"type"`][] with a value of `"commonjs"`. +* Files with a `.js` extension when the nearest parent `package.json` file + contains a top-level field [`"type"`][] with a value of `"commonjs"`. * Strings passed in as an argument to `--eval` or `--print`, or piped to `node` via `STDIN`, with the flag `--input-type=commonjs`. @@ -83,6 +85,48 @@ future-proof the package in case the default type of Node.js ever changes, and it will also make things easier for build tools and loaders to determine how the files in the package should be interpreted. +### Modules loaders + +Node.js has two systems for resolving a specifier and loading modules. + +There is the CommonJS module loader: + +* It is fully synchronous. +* It is responsible for handling `require()` calls. +* It is monkey patchable. +* It supports [folders as modules][]. +* When resolving a specifier, if no exact match is found, it will try to add + extensions (`.js`, `.json`, and finally `.node`) and then attempt to resolve + [folders as modules][]. +* It treats `.json` as JSON text files. +* `.node` files are interpreted as compiled addon modules loaded with + `process.dlopen()`. +* It treats all files that lack `.json` or `.node` extensions as JavaScript + text files. +* It cannot be used to load ECMAScript modules (although it is possible to + [load ECMASCript modules from CommonJS modules][]). When used to load a + JavaScript text file that is not an ECMAScript module, it loads it as a + CommonJS module. + +There is the ECMAScript module loader: + +* It is asynchronous. +* It is responsible for handling `import` statements and `import()` expressions. +* It is not monkey patchable, can be customized using [loader hooks][]. +* It does not support folders as modules, directory indexes (e.g. + `'./startup/index.js'`) must be fully specified. +* It does no extension searching. A file extension must be provided + when the specifier is a relative or absolute file URL. +* It can load JSON modules, but an import assertion is required (behind + `--experimental-json-modules` flag). +* It accepts only `.js`, `.mjs`, and `.cjs` extensions for JavaScript text + files. +* It can be used to load JavaScript CommonJS modules. Such modules + are passed through the `es-module-lexer` to try to identify named exports, + which are available if they can be determined through static analysis. + Imported CommonJS modules have their URLs converted to absolute + paths and are then loaded via the CommonJS module loader. + ### `package.json` and file extensions Within a package, the [`package.json`][] [`"type"`][] field defines how @@ -1236,6 +1280,9 @@ This field defines [subpath imports][] for the current package. [`esm`]: https://github.com/standard-things/esm#readme [`package.json`]: #nodejs-packagejson-field-definitions [entry points]: #package-entry-points +[folders as modules]: modules.md#folders-as-modules +[load ECMASCript modules from CommonJS modules]: modules.md#the-mjs-extension +[loader hooks]: esm.md#loaders [self-reference]: #self-referencing-a-package-using-its-name [subpath exports]: #subpath-exports [subpath imports]: #subpath-imports diff --git a/doc/api/synopsis.md b/doc/api/synopsis.md index cbc1888e201ba2..79b881952475f6 100644 --- a/doc/api/synopsis.md +++ b/doc/api/synopsis.md @@ -88,6 +88,6 @@ Now, open any preferred web browser and visit `http://127.0.0.1:3000`. If the browser displays the string `Hello, World!`, that indicates the server is working. -[Command-line options]: cli.md#command-line-options +[Command-line options]: cli.md#options [Installing Node.js via package manager]: https://nodejs.org/en/download/package-manager/ [web server]: http.md diff --git a/tools/doc/links-mapper.json b/tools/doc/links-mapper.json index 7232539ca461f5..211ba70c0b5991 100644 --- a/tools/doc/links-mapper.json +++ b/tools/doc/links-mapper.json @@ -1,6 +1,6 @@ { "doc/api/synopsis.md": { - "command line options": "cli.html#command-line-options", + "command line options": "cli.html#options", "web server": "http.html" } -} \ No newline at end of file +} From 3f0bcfb203cef1d507d22261493d5e0195308440 Mon Sep 17 00:00:00 2001 From: Benjamin Gruenbaum Date: Sat, 8 Jan 2022 12:46:07 +0200 Subject: [PATCH 023/161] stream: add forEach method Add a `forEach` method to readable streams to enable concurrent iteration and align with the iterator-helpers proposal. Co-Authored-By: Robert Nagy PR-URL: https://github.com/nodejs/node/pull/41445 Reviewed-By: Matteo Collina Reviewed-By: Robert Nagy --- doc/api/stream.md | 63 +++++++++++++++++++- lib/internal/streams/operators.js | 28 +++++++-- lib/stream.js | 15 ++++- test/parallel/test-stream-forEach.js | 86 ++++++++++++++++++++++++++++ 4 files changed, 182 insertions(+), 10 deletions(-) create mode 100644 test/parallel/test-stream-forEach.js diff --git a/doc/api/stream.md b/doc/api/stream.md index e2bded5c62a3eb..bd4573e487f1ad 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1751,7 +1751,7 @@ added: REPLACEME * `signal` {AbortSignal} aborted if the stream is destroyed allowing to abort the `fn` call early. * `options` {Object} - * `concurrency` {number} the maximal concurrent invocation of `fn` to call + * `concurrency` {number} the maximum concurrent invocation of `fn` to call on the stream at once. **Default:** `1`. * `signal` {AbortSignal} allows destroying the stream if the signal is aborted. @@ -1795,7 +1795,7 @@ added: REPLACEME * `signal` {AbortSignal} aborted if the stream is destroyed allowing to abort the `fn` call early. * `options` {Object} - * `concurrency` {number} the maximal concurrent invocation of `fn` to call + * `concurrency` {number} the maximum concurrent invocation of `fn` to call on the stream at once. **Default:** `1`. * `signal` {AbortSignal} allows destroying the stream if the signal is aborted. @@ -1830,6 +1830,65 @@ for await (const result of dnsResults) { } ``` +### `readable.forEach(fn[, options])` + + + +> Stability: 1 - Experimental + +* `fn` {Function|AsyncFunction} a function to call on each item of the stream. + * `data` {any} a chunk of data from the stream. + * `options` {Object} + * `signal` {AbortSignal} aborted if the stream is destroyed allowing to + abort the `fn` call early. +* `options` {Object} + * `concurrency` {number} the maximum concurrent invocation of `fn` to call + on the stream at once. **Default:** `1`. + * `signal` {AbortSignal} allows destroying the stream if the signal is + aborted. +* Returns: {Promise} a promise for when the stream has finished. + +This method allows iterating a stream. For each item in the stream the +`fn` function will be called. If the `fn` function returns a promise - that +promise will be `await`ed. + +This method is different from `for await...of` loops in that it can optionally +process items concurrently. In addition, a `forEach` iteration can only be +stopped by having passed a `signal` option and aborting the related +`AbortController` while `for await...of` can be stopped with `break` or +`return`. In either case the stream will be destroyed. + +This method is different from listening to the [`'data'`][] event in that it +uses the [`readable`][] event in the underlying machinary and can limit the +number of concurrent `fn` calls. + +```mjs +import { Readable } from 'stream'; +import { Resolver } from 'dns/promises'; + +// With a synchronous predicate. +for await (const item of Readable.from([1, 2, 3, 4]).filter((x) => x > 2)) { + console.log(item); // 3, 4 +} +// With an asynchronous predicate, making at most 2 queries at a time. +const resolver = new Resolver(); +const dnsResults = await Readable.from([ + 'nodejs.org', + 'openjsf.org', + 'www.linuxfoundation.org', +]).map(async (domain) => { + const { address } = await resolver.resolve4(domain, { ttl: true }); + return address; +}, { concurrency: 2 }); +await dnsResults.forEach((result) => { + // Logs result, similar to `for await (const result of dnsResults)` + console.log(result); +}); +console.log('done'); // Stream has finished +``` + ### Duplex and transform streams #### Class: `stream.Duplex` diff --git a/lib/internal/streams/operators.js b/lib/internal/streams/operators.js index 267cf53740bd7f..c9581f7b6dfe6c 100644 --- a/lib/internal/streams/operators.js +++ b/lib/internal/streams/operators.js @@ -23,7 +23,7 @@ const kEof = Symbol('kEof'); async function * map(fn, options) { if (typeof fn !== 'function') { throw new ERR_INVALID_ARG_TYPE( - 'fn', ['Function', 'AsyncFunction'], this); + 'fn', ['Function', 'AsyncFunction'], fn); } if (options != null && typeof options !== 'object') { @@ -147,10 +147,23 @@ async function * map(fn, options) { } } +async function forEach(fn, options) { + if (typeof fn !== 'function') { + throw new ERR_INVALID_ARG_TYPE( + 'fn', ['Function', 'AsyncFunction'], fn); + } + async function forEachFn(value, options) { + await fn(value, options); + return kEmpty; + } + // eslint-disable-next-line no-unused-vars + for await (const unused of this.map(forEachFn, options)); +} + async function * filter(fn, options) { if (typeof fn !== 'function') { - throw (new ERR_INVALID_ARG_TYPE( - 'fn', ['Function', 'AsyncFunction'], this)); + throw new ERR_INVALID_ARG_TYPE( + 'fn', ['Function', 'AsyncFunction'], fn); } async function filterFn(value, options) { if (await fn(value, options)) { @@ -160,7 +173,12 @@ async function * filter(fn, options) { } yield* this.map(filterFn, options); } -module.exports = { + +module.exports.streamReturningOperators = { + filter, map, - filter +}; + +module.exports.promiseReturningOperators = { + forEach, }; diff --git a/lib/stream.js b/lib/stream.js index 25dd9f0ba52985..2c3261123af66e 100644 --- a/lib/stream.js +++ b/lib/stream.js @@ -31,7 +31,10 @@ const { promisify: { custom: customPromisify }, } = require('internal/util'); -const operators = require('internal/streams/operators'); +const { + streamReturningOperators, + promiseReturningOperators, +} = require('internal/streams/operators'); const compose = require('internal/streams/compose'); const { pipeline } = require('internal/streams/pipeline'); const { destroyer } = require('internal/streams/destroy'); @@ -46,12 +49,18 @@ Stream.isDisturbed = utils.isDisturbed; Stream.isErrored = utils.isErrored; Stream.isReadable = utils.isReadable; Stream.Readable = require('internal/streams/readable'); -for (const key of ObjectKeys(operators)) { - const op = operators[key]; +for (const key of ObjectKeys(streamReturningOperators)) { + const op = streamReturningOperators[key]; Stream.Readable.prototype[key] = function(...args) { return Stream.Readable.from(ReflectApply(op, this, args)); }; } +for (const key of ObjectKeys(promiseReturningOperators)) { + const op = promiseReturningOperators[key]; + Stream.Readable.prototype[key] = function(...args) { + return ReflectApply(op, this, args); + }; +} Stream.Writable = require('internal/streams/writable'); Stream.Duplex = require('internal/streams/duplex'); Stream.Transform = require('internal/streams/transform'); diff --git a/test/parallel/test-stream-forEach.js b/test/parallel/test-stream-forEach.js new file mode 100644 index 00000000000000..82013554cd2aa8 --- /dev/null +++ b/test/parallel/test-stream-forEach.js @@ -0,0 +1,86 @@ +'use strict'; + +const common = require('../common'); +const { + Readable, +} = require('stream'); +const assert = require('assert'); +const { setTimeout } = require('timers/promises'); + +{ + // forEach works on synchronous streams with a synchronous predicate + const stream = Readable.from([1, 2, 3]); + const result = [1, 2, 3]; + (async () => { + await stream.forEach((value) => assert.strictEqual(value, result.shift())); + })().then(common.mustCall()); +} + +{ + // forEach works an asynchronous streams + const stream = Readable.from([1, 2, 3]).filter(async (x) => { + await Promise.resolve(); + return true; + }); + const result = [1, 2, 3]; + (async () => { + await stream.forEach((value) => assert.strictEqual(value, result.shift())); + })().then(common.mustCall()); +} + +{ + // forEach works on asynchronous streams with a asynchronous forEach fn + const stream = Readable.from([1, 2, 3]).filter(async (x) => { + await Promise.resolve(); + return true; + }); + const result = [1, 2, 3]; + (async () => { + await stream.forEach(async (value) => { + await Promise.resolve(); + assert.strictEqual(value, result.shift()); + }); + })().then(common.mustCall()); +} + +{ + // Concurrency + AbortSignal + const ac = new AbortController(); + let calls = 0; + const forEachPromise = + Readable.from([1, 2, 3, 4]).forEach(async (_, { signal }) => { + calls++; + await setTimeout(100, { signal }); + }, { signal: ac.signal, concurrency: 2 }); + // pump + assert.rejects(async () => { + await forEachPromise; + }, { + name: 'AbortError', + }).then(common.mustCall()); + + setImmediate(() => { + ac.abort(); + assert.strictEqual(calls, 2); + }); +} + +{ + // Error cases + assert.rejects(async () => { + await Readable.from([1]).forEach(1); + }, /ERR_INVALID_ARG_TYPE/).then(common.mustCall()); + assert.rejects(async () => { + await Readable.from([1]).forEach((x) => x, { + concurrency: 'Foo' + }); + }, /ERR_OUT_OF_RANGE/).then(common.mustCall()); + assert.rejects(async () => { + await Readable.from([1]).forEach((x) => x, 1); + }, /ERR_INVALID_ARG_TYPE/).then(common.mustCall()); +} +{ + // Test result is a Promise + const stream = Readable.from([1, 2, 3, 4, 5]).forEach((_) => true); + assert.strictEqual(typeof stream.then, 'function'); +} From 5f4f8d417afc8e2988ed141b190204ac368f93d5 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Mon, 17 Jan 2022 07:20:02 -0800 Subject: [PATCH 024/161] tools: update doc to highlight.js@11.4.0 to-vfile@7.2.3 PR-URL: https://github.com/nodejs/node/pull/41441 Reviewed-By: Rich Trott --- tools/doc/package-lock.json | 85 +++++++++++++++---------------------- tools/doc/package.json | 4 +- 2 files changed, 36 insertions(+), 53 deletions(-) diff --git a/tools/doc/package-lock.json b/tools/doc/package-lock.json index 596cc5d153b171..4af589427e5a50 100644 --- a/tools/doc/package-lock.json +++ b/tools/doc/package-lock.json @@ -11,7 +11,7 @@ "node-doc-generator": "generate.js" }, "devDependencies": { - "highlight.js": "^11.3.1", + "highlight.js": "^11.4.0", "js-yaml": "^4.1.0", "rehype-raw": "^6.1.1", "rehype-stringify": "^9.0.2", @@ -20,7 +20,7 @@ "remark-html": "^15.0.1", "remark-parse": "^10.0.1", "remark-rehype": "^10.1.0", - "to-vfile": "^7.2.2", + "to-vfile": "^7.2.3", "unified": "^10.1.1", "unist-util-select": "^4.0.1", "unist-util-visit": "^4.1.0" @@ -416,9 +416,9 @@ } }, "node_modules/highlight.js": { - "version": "11.3.1", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.3.1.tgz", - "integrity": "sha512-PUhCRnPjLtiLHZAQ5A/Dt5F8cWZeMyj9KRsACsWT+OD6OP0x6dp5OmT5jdx0JgEyPxPZZIPQpRN2TciUT7occw==", + "version": "11.4.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.4.0.tgz", + "integrity": "sha512-nawlpCBCSASs7EdvZOYOYVkJpGmAOKMYZgZtUqSRqodZE0GRVcFKwo1RcpeOemqh9hyttTdd5wDBwHkuSyUfnA==", "dev": true, "engines": { "node": ">=12.0.0" @@ -1479,9 +1479,9 @@ } }, "node_modules/sade": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.0.tgz", - "integrity": "sha512-NRfCA8AVYuAA7Hu8bs18od6J4BdcXXwOv6OJuNgwbw8LcLK8JKwaM3WckLZ+MGyPJUS/ivVgK3twltrOIJJnug==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dev": true, "dependencies": { "mri": "^1.1.0" @@ -1524,9 +1524,9 @@ } }, "node_modules/to-vfile": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.2.tgz", - "integrity": "sha512-7WL+coet3qyaYb5vrVrfLtOUHgNv9E1D5SIsyVKmHKcgZefy77WMQRk7FByqGKNInoHOlY6xkTGymo29AwjUKg==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.3.tgz", + "integrity": "sha512-QO0A9aE6Z/YkmQadJ0syxpmNXtcQiu0qAtCKYKD5cS3EfgfFTAXfgLX6AOaBrSfWSek5nfsMf3gBZ9KGVFcLuw==", "dev": true, "dependencies": { "is-buffer": "^2.0.0", @@ -1537,15 +1537,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/totalist": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz", - "integrity": "sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/trough": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz", @@ -1692,16 +1683,15 @@ } }, "node_modules/uvu": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz", - "integrity": "sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz", + "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==", "dev": true, "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", - "sade": "^1.7.3", - "totalist": "^2.0.0" + "sade": "^1.7.3" }, "bin": { "uvu": "bin.js" @@ -1711,9 +1701,9 @@ } }, "node_modules/vfile": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz", - "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.0.tgz", + "integrity": "sha512-Tj44nY/48OQvarrE4FAjUfrv7GZOYzPbl5OD65HxVKwLJKMPU7zmfV8cCgCnzKWnSfYG2f3pxu+ALqs7j22xQQ==", "dev": true, "dependencies": { "@types/unist": "^2.0.0", @@ -2068,9 +2058,9 @@ } }, "highlight.js": { - "version": "11.3.1", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.3.1.tgz", - "integrity": "sha512-PUhCRnPjLtiLHZAQ5A/Dt5F8cWZeMyj9KRsACsWT+OD6OP0x6dp5OmT5jdx0JgEyPxPZZIPQpRN2TciUT7occw==", + "version": "11.4.0", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.4.0.tgz", + "integrity": "sha512-nawlpCBCSASs7EdvZOYOYVkJpGmAOKMYZgZtUqSRqodZE0GRVcFKwo1RcpeOemqh9hyttTdd5wDBwHkuSyUfnA==", "dev": true }, "html-void-elements": { @@ -2753,9 +2743,9 @@ } }, "sade": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.0.tgz", - "integrity": "sha512-NRfCA8AVYuAA7Hu8bs18od6J4BdcXXwOv6OJuNgwbw8LcLK8JKwaM3WckLZ+MGyPJUS/ivVgK3twltrOIJJnug==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dev": true, "requires": { "mri": "^1.1.0" @@ -2787,21 +2777,15 @@ } }, "to-vfile": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.2.tgz", - "integrity": "sha512-7WL+coet3qyaYb5vrVrfLtOUHgNv9E1D5SIsyVKmHKcgZefy77WMQRk7FByqGKNInoHOlY6xkTGymo29AwjUKg==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.3.tgz", + "integrity": "sha512-QO0A9aE6Z/YkmQadJ0syxpmNXtcQiu0qAtCKYKD5cS3EfgfFTAXfgLX6AOaBrSfWSek5nfsMf3gBZ9KGVFcLuw==", "dev": true, "requires": { "is-buffer": "^2.0.0", "vfile": "^5.1.0" } }, - "totalist": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz", - "integrity": "sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ==", - "dev": true - }, "trough": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz", @@ -2906,22 +2890,21 @@ } }, "uvu": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz", - "integrity": "sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz", + "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==", "dev": true, "requires": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", - "sade": "^1.7.3", - "totalist": "^2.0.0" + "sade": "^1.7.3" } }, "vfile": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz", - "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.0.tgz", + "integrity": "sha512-Tj44nY/48OQvarrE4FAjUfrv7GZOYzPbl5OD65HxVKwLJKMPU7zmfV8cCgCnzKWnSfYG2f3pxu+ALqs7j22xQQ==", "dev": true, "requires": { "@types/unist": "^2.0.0", diff --git a/tools/doc/package.json b/tools/doc/package.json index a731ba68a6f44f..907f4962bccbe2 100644 --- a/tools/doc/package.json +++ b/tools/doc/package.json @@ -7,7 +7,7 @@ "node": ">=14.8.0" }, "devDependencies": { - "highlight.js": "^11.3.1", + "highlight.js": "^11.4.0", "js-yaml": "^4.1.0", "rehype-raw": "^6.1.1", "rehype-stringify": "^9.0.2", @@ -16,7 +16,7 @@ "remark-html": "^15.0.1", "remark-parse": "^10.0.1", "remark-rehype": "^10.1.0", - "to-vfile": "^7.2.2", + "to-vfile": "^7.2.3", "unified": "^10.1.1", "unist-util-select": "^4.0.1", "unist-util-visit": "^4.1.0" From d0d8320de74b32e3586d706fed4ba572ad47ceff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sat, 15 Jan 2022 15:34:38 +0100 Subject: [PATCH 025/161] doc: improve Web Crypto headings related to ECC PR-URL: https://github.com/nodejs/node/pull/41542 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Filip Skokan --- 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 db657a6222d5c5..43290395bc6d2a 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -48,7 +48,7 @@ async function generateAesKey(length = 256) { } ``` -#### Elliptic curve key pairs +#### ECDSA key pairs ```js const { subtle } = require('crypto').webcrypto; @@ -66,7 +66,7 @@ async function generateEcKey(namedCurve = 'P-521') { } ``` -#### ED25519/ED448/X25519/X448 Elliptic curve key pairs +#### ED25519/ED448/X25519/X448 key pairs ```js const { subtle } = require('crypto').webcrypto; From 8cba65f61afe35228938c04b2c8527897366f689 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 17 Jan 2022 08:54:01 -0800 Subject: [PATCH 026/161] doc: adjust assignment in condition in stream doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is part of an effort to get our code to comply with ESLint no-cond-assign so that we don't have to disable that rule in our config. PR-URL: https://github.com/nodejs/node/pull/41510 Reviewed-By: Tobias Nießen Reviewed-By: Antoine du Hamel --- 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 bd4573e487f1ad..77afb18ff566f2 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1035,7 +1035,7 @@ readable.on('readable', function() { // There is some data to read now. let data; - while (data = this.read()) { + while ((data = this.read()) !== null) { console.log(data); } }); From f458f1b93b9302d76382b390c82e0e0d3ec6678a Mon Sep 17 00:00:00 2001 From: Yu Date: Tue, 18 Jan 2022 00:54:10 +0800 Subject: [PATCH 027/161] doc: fix typos in esm.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41499 Reviewed-By: Guy Bedford Reviewed-By: Tobias Nießen Reviewed-By: Adrian Estrada --- 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 3b74ff03bc60c1..a27e407b859dfd 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -1399,7 +1399,7 @@ _internal_, _conditions_) > 1. Set _scopeURL_ to the parent URL of _scopeURL_. > 2. If _scopeURL_ ends in a _"node\_modules"_ path segment, return **null**. > 3. Let _pjsonURL_ be the resolution of _"package.json"_ within -> _packageURL_. +> _scopeURL_. > 4. if the file at _pjsonURL_ exists, then > 1. Return _scopeURL_. > 3. Return **null**. From 8de858b96d94cfbfe420a2fe1c95023e3aa92590 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 17 Jan 2022 08:54:40 -0800 Subject: [PATCH 028/161] test: increase coverage for stream writable Refs: https://github.com/nodejs/node/pull/41433#issuecomment-1009551922 PR-URL: https://github.com/nodejs/node/pull/41486 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel --- .../test-stream-writable-final-throw.js | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/parallel/test-stream-writable-final-throw.js diff --git a/test/parallel/test-stream-writable-final-throw.js b/test/parallel/test-stream-writable-final-throw.js new file mode 100644 index 00000000000000..e7dd21abc3c76c --- /dev/null +++ b/test/parallel/test-stream-writable-final-throw.js @@ -0,0 +1,23 @@ +'use strict'; + +const common = require('../common'); +const { + Duplex, +} = require('stream'); + +{ + class Foo extends Duplex { + _final(callback) { + throw new Error('fhqwhgads'); + } + + _read() {} + } + + const foo = new Foo(); + foo._write = common.mustCall((chunk, encoding, cb) => { + cb(); + }); + foo.end('test', common.expectsError({ message: 'fhqwhgads' })); + foo.on('error', common.mustCall()); +} From 6b9d2aefdb01888fe33a67807974c0ea9f5bd0d6 Mon Sep 17 00:00:00 2001 From: "bencoe@google.com" Date: Sat, 15 Jan 2022 18:31:04 +0000 Subject: [PATCH 029/161] test: add missing await in fs-rm/fs-rmdir tests Noticed that a few assertions were not being awaited, this could potentially be leading to flakiness in tmp cleanup. Refs: #41201 PR-URL: https://github.com/nodejs/node/pull/41545 Refs: https://github.com/nodejs/node/issues/41201 Reviewed-By: Ian Sutherland Reviewed-By: Antoine du Hamel Reviewed-By: Richard Lau Reviewed-By: Mestery Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott Reviewed-By: Darshan Sen Reviewed-By: Michael Dawson --- test/parallel/test-fs-rm.js | 10 +++++----- test/parallel/test-fs-rmdir-recursive.js | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/parallel/test-fs-rm.js b/test/parallel/test-fs-rm.js index 5b30599189dec4..e0e3fd88544fff 100644 --- a/test/parallel/test-fs-rm.js +++ b/test/parallel/test-fs-rm.js @@ -185,8 +185,8 @@ function removeAsync(dir) { makeNonEmptyDirectory(4, 10, 2, dir, true); // Removal should fail without the recursive option set to true. - assert.rejects(fs.promises.rm(dir), { syscall: 'rm' }); - assert.rejects(fs.promises.rm(dir, { recursive: false }), { + await assert.rejects(fs.promises.rm(dir), { syscall: 'rm' }); + await assert.rejects(fs.promises.rm(dir, { recursive: false }), { syscall: 'rm' }); @@ -194,10 +194,10 @@ function removeAsync(dir) { await fs.promises.rm(dir, { recursive: true }); // Attempted removal should fail now because the directory is gone. - assert.rejects(fs.promises.rm(dir), { syscall: 'stat' }); + await assert.rejects(fs.promises.rm(dir), { syscall: 'stat' }); // Should fail if target does not exist - assert.rejects(fs.promises.rm( + await assert.rejects(fs.promises.rm( path.join(tmpdir.path, 'noexist.txt'), { recursive: true } ), { @@ -207,7 +207,7 @@ function removeAsync(dir) { }); // Should not fail if target does not exist and force option is true - fs.promises.rm(path.join(tmpdir.path, 'noexist.txt'), { force: true }); + await fs.promises.rm(path.join(tmpdir.path, 'noexist.txt'), { force: true }); // Should delete file const filePath = path.join(tmpdir.path, 'rm-promises-file.txt'); diff --git a/test/parallel/test-fs-rmdir-recursive.js b/test/parallel/test-fs-rmdir-recursive.js index 39934b5e42a11c..1359f50cfbb49c 100644 --- a/test/parallel/test-fs-rmdir-recursive.js +++ b/test/parallel/test-fs-rmdir-recursive.js @@ -141,8 +141,8 @@ function removeAsync(dir) { makeNonEmptyDirectory(4, 10, 2, dir, true); // Removal should fail without the recursive option set to true. - assert.rejects(fs.promises.rmdir(dir), { syscall: 'rmdir' }); - assert.rejects(fs.promises.rmdir(dir, { recursive: false }), { + await assert.rejects(fs.promises.rmdir(dir), { syscall: 'rmdir' }); + await assert.rejects(fs.promises.rmdir(dir, { recursive: false }), { syscall: 'rmdir' }); @@ -154,7 +154,7 @@ function removeAsync(dir) { { code: 'ENOENT' }); // Attempted removal should fail now because the directory is gone. - assert.rejects(fs.promises.rmdir(dir), { syscall: 'rmdir' }); + await assert.rejects(fs.promises.rmdir(dir), { syscall: 'rmdir' }); })().then(common.mustCall()); // Test input validation. From a1f827a859654ee4781dd0ef215907cf859d58c8 Mon Sep 17 00:00:00 2001 From: Mohammed Keyvanzadeh Date: Tue, 18 Jan 2022 02:26:11 +0330 Subject: [PATCH 030/161] policy: replace entries with keys Replaced the entries with keys since the values of the entries are not used, and changed loop style to avoid mangled `Symbol.iterator`s and to keep consistency. PR-URL: https://github.com/nodejs/node/pull/41482 Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell --- lib/internal/policy/manifest.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/internal/policy/manifest.js b/lib/internal/policy/manifest.js index e278e787db9257..61ee55d3a45637 100644 --- a/lib/internal/policy/manifest.js +++ b/lib/internal/policy/manifest.js @@ -130,7 +130,9 @@ class DependencyMapperInstance { this.#patternDependencies = undefined; } else { const patterns = []; - for (const { 0: key } of ObjectEntries(dependencies)) { + const keys = ObjectKeys(dependencies); + for (let i = 0; i < keys.length; i++) { + const key = keys[i]; if (StringPrototypeEndsWith(key, '*')) { const target = RegExpPrototypeExec(/^([^*]*)\*([^*]*)$/); if (!target) { From 6beee312a47165f8dd65fe802b6280310e6caede Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 17 Jan 2022 21:21:01 -0800 Subject: [PATCH 031/161] tools: bump eslint from 8.6.0 to 8.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41570 Reviewed-By: Michaël Zasso Reviewed-By: Tobias Nießen Reviewed-By: Mestery Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Mohammed Keyvanzadeh --- tools/node_modules/eslint/bin/eslint.js | 8 +- .../eslint/lib/cli-engine/cli-engine.js | 5 +- .../node_modules/eslint/lib/eslint/eslint.js | 1 + .../eslint/lib/init/autoconfig.js | 351 --- .../eslint/lib/init/config-file.js | 144 -- .../eslint/lib/init/config-initializer.js | 709 ------ .../eslint/lib/init/config-rule.js | 316 --- .../node_modules/eslint/lib/init/npm-utils.js | 179 -- .../eslint/lib/init/source-code-utils.js | 110 - .../eslint/lib/rule-tester/rule-tester.js | 10 +- .../eslint/lib/rules/camelcase.js | 8 +- .../node_modules/eslint/lib/rules/id-match.js | 2 +- .../eslint/lib/rules/keyword-spacing.js | 32 + .../eslint/lib/rules/no-constant-condition.js | 27 +- .../eslint/lib/rules/no-invalid-this.js | 103 +- .../eslint/lib/rules/no-restricted-exports.js | 12 +- .../eslint/lib/rules/no-restricted-imports.js | 31 +- .../eslint/lib/rules/no-restricted-modules.js | 3 +- .../eslint/lib/rules/no-useless-rename.js | 12 +- tools/node_modules/eslint/lib/rules/quotes.js | 13 +- .../eslint/lib/rules/utils/ast-utils.js | 22 +- .../eslint/messages/no-config-found.js | 2 +- .../@babel/compat-data/package.json | 4 +- .../@babel/generator/lib/generators/base.js | 2 +- .../generator/lib/generators/typescript.js | 21 +- .../@babel/generator/package.json | 8 +- .../node_modules/@babel/parser/lib/index.js | 22 +- .../node_modules/@babel/parser/package.json | 4 +- .../node_modules/@babel/traverse/lib/index.js | 17 +- .../@babel/traverse/lib/path/context.js | 10 +- .../@babel/traverse/lib/scope/index.js | 2 +- .../@babel/traverse/lib/traverse-node.js | 30 + .../node_modules/@babel/traverse/package.json | 8 +- .../types/lib/definitions/typescript.js | 4 +- .../node_modules/@babel/types/package.json | 6 +- .../@es-joy/jsdoccomment/dist/index.cjs.cjs | 13 + .../@es-joy/jsdoccomment/package.json | 24 +- .../@es-joy/jsdoccomment/src/index.js | 2 + .../@es-joy/jsdoccomment/src/jsdoccomment.js | 9 + .../eslintrc/node_modules/ignore/LICENSE-MIT} | 19 +- .../eslintrc/node_modules/ignore/index.js | 463 ++++ .../eslintrc/node_modules/ignore/legacy.js | 466 ++++ .../eslintrc/node_modules/ignore/package.json | 64 + .../eslint/node_modules/ansi-colors/LICENSE | 21 - .../eslint/node_modules/ansi-colors/index.js | 177 -- .../node_modules/ansi-colors/package.json | 109 - .../node_modules/ansi-colors/symbols.js | 70 - .../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.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-apply-rule.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 +- .../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 +- .../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 +- .../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-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 | 1 + .../data/features/css-widows-orphans.js | 2 +- .../data/features/css-width-stretch.js | 1 + .../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 +- .../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/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/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 | 37 +- .../full-chromium-versions.json | 2 +- .../electron-to-chromium/full-versions.js | 23 +- .../electron-to-chromium/full-versions.json | 2 +- .../electron-to-chromium/package.json | 6 +- .../eslint/node_modules/enquirer/LICENSE | 21 - .../eslint/node_modules/enquirer/index.js | 250 --- .../eslint/node_modules/enquirer/lib/ansi.js | 116 - .../node_modules/enquirer/lib/combos.js | 75 - .../node_modules/enquirer/lib/completer.js | 52 - .../node_modules/enquirer/lib/interpolate.js | 266 --- .../node_modules/enquirer/lib/keypress.js | 243 -- .../node_modules/enquirer/lib/placeholder.js | 63 - .../node_modules/enquirer/lib/prompt.js | 485 ---- .../enquirer/lib/prompts/autocomplete.js | 113 - .../enquirer/lib/prompts/basicauth.js | 41 - .../enquirer/lib/prompts/confirm.js | 13 - .../enquirer/lib/prompts/editable.js | 136 -- .../node_modules/enquirer/lib/prompts/form.js | 196 -- .../enquirer/lib/prompts/index.js | 28 - .../enquirer/lib/prompts/input.js | 55 - .../enquirer/lib/prompts/invisible.js | 11 - .../node_modules/enquirer/lib/prompts/list.js | 36 - .../enquirer/lib/prompts/multiselect.js | 11 - .../enquirer/lib/prompts/numeral.js | 1 - .../enquirer/lib/prompts/password.js | 18 - .../node_modules/enquirer/lib/prompts/quiz.js | 37 - .../enquirer/lib/prompts/scale.js | 237 -- .../enquirer/lib/prompts/select.js | 139 -- .../enquirer/lib/prompts/snippet.js | 185 -- .../node_modules/enquirer/lib/prompts/sort.js | 37 - .../enquirer/lib/prompts/survey.js | 163 -- .../node_modules/enquirer/lib/prompts/text.js | 1 - .../enquirer/lib/prompts/toggle.js | 109 - .../node_modules/enquirer/lib/render.js | 33 - .../eslint/node_modules/enquirer/lib/roles.js | 46 - .../eslint/node_modules/enquirer/lib/state.js | 69 - .../node_modules/enquirer/lib/styles.js | 144 -- .../node_modules/enquirer/lib/symbols.js | 66 - .../eslint/node_modules/enquirer/lib/theme.js | 11 - .../eslint/node_modules/enquirer/lib/timer.js | 38 - .../node_modules/enquirer/lib/types/array.js | 658 ------ .../node_modules/enquirer/lib/types/auth.js | 29 - .../enquirer/lib/types/boolean.js | 88 - .../node_modules/enquirer/lib/types/index.js | 7 - .../node_modules/enquirer/lib/types/number.js | 86 - .../node_modules/enquirer/lib/types/string.js | 185 -- .../eslint/node_modules/enquirer/lib/utils.js | 268 --- .../eslint/node_modules/enquirer/package.json | 111 - .../dist/rules/checkTypes.js | 8 +- .../dist/rules/noUndefinedTypes.js | 34 +- .../dist/rules/validTypes.js | 12 +- .../eslint-plugin-jsdoc/package.json | 29 +- .../dist/eslint-visitor-keys.cjs | 2 + .../eslint-visitor-keys/lib/visitor-keys.js | 2 + .../eslint-visitor-keys/package.json | 2 +- .../eslint/node_modules/ignore/LICENSE-MIT | 0 .../eslint/node_modules/ignore/index.js | 476 ++-- .../eslint/node_modules/ignore/legacy.js | 602 ++--- .../eslint/node_modules/ignore/package.json | 47 +- .../jsdoc-type-pratt-parser/dist/index.js | 1993 ++++++++--------- .../jsdoc-type-pratt-parser/package.json | 50 +- .../eslint/node_modules/progress/Makefile | 8 - .../eslint/node_modules/progress/Readme.md | 146 -- .../eslint/node_modules/progress/index.js | 1 - .../progress/lib/node-progress.js | 236 -- .../eslint/node_modules/progress/package.json | 26 - tools/node_modules/eslint/package.json | 11 +- 911 files changed, 3885 insertions(+), 10112 deletions(-) delete mode 100644 tools/node_modules/eslint/lib/init/autoconfig.js delete mode 100644 tools/node_modules/eslint/lib/init/config-file.js delete mode 100644 tools/node_modules/eslint/lib/init/config-initializer.js delete mode 100644 tools/node_modules/eslint/lib/init/config-rule.js delete mode 100644 tools/node_modules/eslint/lib/init/npm-utils.js delete mode 100644 tools/node_modules/eslint/lib/init/source-code-utils.js create mode 100644 tools/node_modules/eslint/node_modules/@babel/traverse/lib/traverse-node.js rename tools/node_modules/eslint/node_modules/{progress/LICENSE => @eslint/eslintrc/node_modules/ignore/LICENSE-MIT} (51%) mode change 100644 => 100755 create mode 100755 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/index.js create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/legacy.js create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/package.json delete mode 100644 tools/node_modules/eslint/node_modules/ansi-colors/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/ansi-colors/index.js delete mode 100644 tools/node_modules/eslint/node_modules/ansi-colors/package.json delete mode 100644 tools/node_modules/eslint/node_modules/ansi-colors/symbols.js create mode 100644 tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js create mode 100644 tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/index.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/ansi.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/combos.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/completer.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/interpolate.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/keypress.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/placeholder.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompt.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/autocomplete.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/basicauth.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/confirm.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/editable.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/form.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/index.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/input.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/invisible.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/list.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/multiselect.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/numeral.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/password.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/quiz.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/scale.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/select.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/snippet.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/sort.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/survey.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/text.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/prompts/toggle.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/render.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/roles.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/state.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/styles.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/symbols.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/theme.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/timer.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/array.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/auth.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/boolean.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/index.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/number.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/types/string.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/lib/utils.js delete mode 100644 tools/node_modules/eslint/node_modules/enquirer/package.json mode change 100755 => 100644 tools/node_modules/eslint/node_modules/ignore/LICENSE-MIT mode change 100755 => 100644 tools/node_modules/eslint/node_modules/ignore/index.js delete mode 100644 tools/node_modules/eslint/node_modules/progress/Makefile delete mode 100644 tools/node_modules/eslint/node_modules/progress/Readme.md delete mode 100644 tools/node_modules/eslint/node_modules/progress/index.js delete mode 100644 tools/node_modules/eslint/node_modules/progress/lib/node-progress.js delete mode 100644 tools/node_modules/eslint/node_modules/progress/package.json diff --git a/tools/node_modules/eslint/bin/eslint.js b/tools/node_modules/eslint/bin/eslint.js index 6b05356b9dbfaf..d00a870c089cf7 100755 --- a/tools/node_modules/eslint/bin/eslint.js +++ b/tools/node_modules/eslint/bin/eslint.js @@ -124,7 +124,13 @@ ${message}`); // Call the config initializer if `--init` is present. if (process.argv.includes("--init")) { - await require("../lib/init/config-initializer").initializeConfig(); + + // `eslint --init` has been moved to `@eslint/create-config` + console.warn("You can also run this command directly using 'npm init @eslint/config'."); + + const spawn = require("cross-spawn"); + + spawn.sync("npm", ["init", "@eslint/config"], { encoding: "utf8", stdio: "inherit" }); return; } diff --git a/tools/node_modules/eslint/lib/cli-engine/cli-engine.js b/tools/node_modules/eslint/lib/cli-engine/cli-engine.js index e3647018d26fa3..0aff182f0ffbf1 100644 --- a/tools/node_modules/eslint/lib/cli-engine/cli-engine.js +++ b/tools/node_modules/eslint/lib/cli-engine/cli-engine.js @@ -92,6 +92,7 @@ const validFixTypes = new Set(["directive", "problem", "suggestion", "layout"]); * @property {string} filePath The path to the file that was linted. * @property {LintMessage[]} messages All of the messages for the result. * @property {number} errorCount Number of errors for the result. + * @property {number} fatalErrorCount Number of fatal errors for the result. * @property {number} warningCount Number of warnings for the result. * @property {number} fixableErrorCount Number of fixable errors for the result. * @property {number} fixableWarningCount Number of fixable warnings for the result. @@ -104,6 +105,7 @@ const validFixTypes = new Set(["directive", "problem", "suggestion", "layout"]); * @typedef {Object} LintReport * @property {LintResult[]} results All of the result. * @property {number} errorCount Number of errors for the result. + * @property {number} fatalErrorCount Number of fatal errors for the result. * @property {number} warningCount Number of warnings for the result. * @property {number} fixableErrorCount Number of fixable errors for the result. * @property {number} fixableWarningCount Number of fixable warnings for the result. @@ -308,6 +310,7 @@ function createIgnoreResult(filePath, baseDir) { } ], errorCount: 0, + fatalErrorCount: 0, warningCount: 1, fixableErrorCount: 0, fixableWarningCount: 0 @@ -408,7 +411,7 @@ function isErrorMessage(message) { * a directory or looks like a directory (ends in `path.sep`), in which case the file * name will be the `cacheFile/.cache_hashOfCWD` * - * if cacheFile points to a file or looks like a file then in will just use that file + * if cacheFile points to a file or looks like a file then it will just use that file * @param {string} cacheFile The name of file to be used to store the cache * @param {string} cwd Current working directory * @returns {string} the resolved path to the cache file diff --git a/tools/node_modules/eslint/lib/eslint/eslint.js b/tools/node_modules/eslint/lib/eslint/eslint.js index 6274772ad856a4..ee6b2ef456b17b 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint.js +++ b/tools/node_modules/eslint/lib/eslint/eslint.js @@ -79,6 +79,7 @@ const { version } = require("../../package.json"); * @property {string} filePath The path to the file that was linted. * @property {LintMessage[]} messages All of the messages for the result. * @property {number} errorCount Number of errors for the result. + * @property {number} fatalErrorCount Number of fatal errors for the result. * @property {number} warningCount Number of warnings for the result. * @property {number} fixableErrorCount Number of fixable errors for the result. * @property {number} fixableWarningCount Number of fixable warnings for the result. diff --git a/tools/node_modules/eslint/lib/init/autoconfig.js b/tools/node_modules/eslint/lib/init/autoconfig.js deleted file mode 100644 index ea2523421c2ea4..00000000000000 --- a/tools/node_modules/eslint/lib/init/autoconfig.js +++ /dev/null @@ -1,351 +0,0 @@ -/** - * @fileoverview Used for creating a suggested configuration based on project code. - * @author Ian VanSchooten - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const equal = require("fast-deep-equal"), - recConfig = require("../../conf/eslint-recommended"), - { - Legacy: { - ConfigOps - } - } = require("@eslint/eslintrc"), - { Linter } = require("../linter"), - configRule = require("./config-rule"); - -const debug = require("debug")("eslint:autoconfig"); -const linter = new Linter(); - -//------------------------------------------------------------------------------ -// Data -//------------------------------------------------------------------------------ - -const MAX_CONFIG_COMBINATIONS = 17, // 16 combinations + 1 for severity only - RECOMMENDED_CONFIG_NAME = "eslint:recommended"; - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -/** - * Information about a rule configuration, in the context of a Registry. - * @typedef {Object} registryItem - * @property {ruleConfig} config A valid configuration for the rule - * @property {number} specificity The number of elements in the ruleConfig array - * @property {number} errorCount The number of errors encountered when linting with the config - */ - -/** - * This callback is used to measure execution status in a progress bar - * @callback progressCallback - * @param {number} The total number of times the callback will be called. - */ - -/** - * Create registryItems for rules - * @param {rulesConfig} rulesConfig Hash of rule names and arrays of ruleConfig items - * @returns {Object} registryItems for each rule in provided rulesConfig - */ -function makeRegistryItems(rulesConfig) { - return Object.keys(rulesConfig).reduce((accumulator, ruleId) => { - accumulator[ruleId] = rulesConfig[ruleId].map(config => ({ - config, - specificity: config.length || 1, - errorCount: void 0 - })); - return accumulator; - }, {}); -} - -/** - * Creates an object in which to store rule configs and error counts - * - * Unless a rulesConfig is provided at construction, the registry will not contain - * any rules, only methods. This will be useful for building up registries manually. - * - * Registry class - */ -class Registry { - - /** - * @param {rulesConfig} [rulesConfig] Hash of rule names and arrays of possible configurations - */ - constructor(rulesConfig) { - this.rules = (rulesConfig) ? makeRegistryItems(rulesConfig) : {}; - } - - /** - * Populate the registry with core rule configs. - * - * It will set the registry's `rule` property to an object having rule names - * as keys and an array of registryItems as values. - * @returns {void} - */ - populateFromCoreRules() { - const rulesConfig = configRule.createCoreRuleConfigs(/* noDeprecated = */ true); - - this.rules = makeRegistryItems(rulesConfig); - } - - /** - * Creates sets of rule configurations which can be used for linting - * and initializes registry errors to zero for those configurations (side effect). - * - * This combines as many rules together as possible, such that the first sets - * in the array will have the highest number of rules configured, and later sets - * will have fewer and fewer, as not all rules have the same number of possible - * configurations. - * - * The length of the returned array will be <= MAX_CONFIG_COMBINATIONS. - * @returns {Object[]} "rules" configurations to use for linting - */ - buildRuleSets() { - let idx = 0; - const ruleIds = Object.keys(this.rules), - ruleSets = []; - - /** - * Add a rule configuration from the registry to the ruleSets - * - * This is broken out into its own function so that it doesn't need to be - * created inside of the while loop. - * @param {string} rule The ruleId to add. - * @returns {void} - */ - const addRuleToRuleSet = function(rule) { - - /* - * This check ensures that there is a rule configuration and that - * it has fewer than the max combinations allowed. - * If it has too many configs, we will only use the most basic of - * the possible configurations. - */ - const hasFewCombos = (this.rules[rule].length <= MAX_CONFIG_COMBINATIONS); - - if (this.rules[rule][idx] && (hasFewCombos || this.rules[rule][idx].specificity <= 2)) { - - /* - * If the rule has too many possible combinations, only take - * simple ones, avoiding objects. - */ - if (!hasFewCombos && typeof this.rules[rule][idx].config[1] === "object") { - return; - } - - ruleSets[idx] = ruleSets[idx] || {}; - ruleSets[idx][rule] = this.rules[rule][idx].config; - - /* - * Initialize errorCount to zero, since this is a config which - * will be linted. - */ - this.rules[rule][idx].errorCount = 0; - } - }.bind(this); - - while (ruleSets.length === idx) { - ruleIds.forEach(addRuleToRuleSet); - idx += 1; - } - - return ruleSets; - } - - /** - * Remove all items from the registry with a non-zero number of errors - * - * Note: this also removes rule configurations which were not linted - * (meaning, they have an undefined errorCount). - * @returns {void} - */ - stripFailingConfigs() { - const ruleIds = Object.keys(this.rules), - newRegistry = new Registry(); - - newRegistry.rules = Object.assign({}, this.rules); - ruleIds.forEach(ruleId => { - const errorFreeItems = newRegistry.rules[ruleId].filter(registryItem => (registryItem.errorCount === 0)); - - if (errorFreeItems.length > 0) { - newRegistry.rules[ruleId] = errorFreeItems; - } else { - delete newRegistry.rules[ruleId]; - } - }); - - return newRegistry; - } - - /** - * Removes rule configurations which were not included in a ruleSet - * @returns {void} - */ - stripExtraConfigs() { - const ruleIds = Object.keys(this.rules), - newRegistry = new Registry(); - - newRegistry.rules = Object.assign({}, this.rules); - ruleIds.forEach(ruleId => { - newRegistry.rules[ruleId] = newRegistry.rules[ruleId].filter(registryItem => (typeof registryItem.errorCount !== "undefined")); - }); - - return newRegistry; - } - - /** - * Creates a registry of rules which had no error-free configs. - * The new registry is intended to be analyzed to determine whether its rules - * should be disabled or set to warning. - * @returns {Registry} A registry of failing rules. - */ - getFailingRulesRegistry() { - const ruleIds = Object.keys(this.rules), - failingRegistry = new Registry(); - - ruleIds.forEach(ruleId => { - const failingConfigs = this.rules[ruleId].filter(registryItem => (registryItem.errorCount > 0)); - - if (failingConfigs && failingConfigs.length === this.rules[ruleId].length) { - failingRegistry.rules[ruleId] = failingConfigs; - } - }); - - return failingRegistry; - } - - /** - * Create an eslint config for any rules which only have one configuration - * in the registry. - * @returns {Object} An eslint config with rules section populated - */ - createConfig() { - const ruleIds = Object.keys(this.rules), - config = { rules: {} }; - - ruleIds.forEach(ruleId => { - if (this.rules[ruleId].length === 1) { - config.rules[ruleId] = this.rules[ruleId][0].config; - } - }); - - return config; - } - - /** - * Return a cloned registry containing only configs with a desired specificity - * @param {number} specificity Only keep configs with this specificity - * @returns {Registry} A registry of rules - */ - filterBySpecificity(specificity) { - const ruleIds = Object.keys(this.rules), - newRegistry = new Registry(); - - newRegistry.rules = Object.assign({}, this.rules); - ruleIds.forEach(ruleId => { - newRegistry.rules[ruleId] = this.rules[ruleId].filter(registryItem => (registryItem.specificity === specificity)); - }); - - return newRegistry; - } - - /** - * Lint SourceCodes against all configurations in the registry, and record results - * @param {Object[]} sourceCodes SourceCode objects for each filename - * @param {Object} config ESLint config object - * @param {progressCallback} [cb] Optional callback for reporting execution status - * @returns {Registry} New registry with errorCount populated - */ - lintSourceCode(sourceCodes, config, cb) { - let lintedRegistry = new Registry(); - - lintedRegistry.rules = Object.assign({}, this.rules); - - const ruleSets = lintedRegistry.buildRuleSets(); - - lintedRegistry = lintedRegistry.stripExtraConfigs(); - - debug("Linting with all possible rule combinations"); - - const filenames = Object.keys(sourceCodes); - const totalFilesLinting = filenames.length * ruleSets.length; - - filenames.forEach(filename => { - debug(`Linting file: ${filename}`); - - let ruleSetIdx = 0; - - ruleSets.forEach(ruleSet => { - const lintConfig = Object.assign({}, config, { rules: ruleSet }); - const lintResults = linter.verify(sourceCodes[filename], lintConfig); - - lintResults.forEach(result => { - - /* - * It is possible that the error is from a configuration comment - * in a linted file, in which case there may not be a config - * set in this ruleSetIdx. - * (https://github.com/eslint/eslint/issues/5992) - * (https://github.com/eslint/eslint/issues/7860) - */ - if ( - lintedRegistry.rules[result.ruleId] && - lintedRegistry.rules[result.ruleId][ruleSetIdx] - ) { - lintedRegistry.rules[result.ruleId][ruleSetIdx].errorCount += 1; - } - }); - - ruleSetIdx += 1; - - if (cb) { - cb(totalFilesLinting); // eslint-disable-line node/callback-return -- End of function - } - }); - - // Deallocate for GC - sourceCodes[filename] = null; - }); - - return lintedRegistry; - } -} - -/** - * Extract rule configuration into eslint:recommended where possible. - * - * This will return a new config with `["extends": [ ..., "eslint:recommended"]` and - * only the rules which have configurations different from the recommended config. - * @param {Object} config config object - * @returns {Object} config object using `"extends": ["eslint:recommended"]` - */ -function extendFromRecommended(config) { - const newConfig = Object.assign({}, config); - - ConfigOps.normalizeToStrings(newConfig); - - const recRules = Object.keys(recConfig.rules).filter(ruleId => ConfigOps.isErrorSeverity(recConfig.rules[ruleId])); - - recRules.forEach(ruleId => { - if (equal(recConfig.rules[ruleId], newConfig.rules[ruleId])) { - delete newConfig.rules[ruleId]; - } - }); - newConfig.extends.unshift(RECOMMENDED_CONFIG_NAME); - return newConfig; -} - - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - Registry, - extendFromRecommended -}; diff --git a/tools/node_modules/eslint/lib/init/config-file.js b/tools/node_modules/eslint/lib/init/config-file.js deleted file mode 100644 index 9eb10fab3a4033..00000000000000 --- a/tools/node_modules/eslint/lib/init/config-file.js +++ /dev/null @@ -1,144 +0,0 @@ -/** - * @fileoverview Helper to locate and load configuration files. - * @author Nicholas C. Zakas - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const fs = require("fs"), - path = require("path"), - stringify = require("json-stable-stringify-without-jsonify"); - -const debug = require("debug")("eslint:config-file"); - -//------------------------------------------------------------------------------ -// Helpers -//------------------------------------------------------------------------------ - -/** - * Determines sort order for object keys for json-stable-stringify - * - * see: https://github.com/samn/json-stable-stringify#cmp - * @param {Object} a The first comparison object ({key: akey, value: avalue}) - * @param {Object} b The second comparison object ({key: bkey, value: bvalue}) - * @returns {number} 1 or -1, used in stringify cmp method - */ -function sortByKey(a, b) { - return a.key > b.key ? 1 : -1; -} - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -/** - * Writes a configuration file in JSON format. - * @param {Object} config The configuration object to write. - * @param {string} filePath The filename to write to. - * @returns {void} - * @private - */ -function writeJSONConfigFile(config, filePath) { - debug(`Writing JSON config file: ${filePath}`); - - const content = `${stringify(config, { cmp: sortByKey, space: 4 })}\n`; - - fs.writeFileSync(filePath, content, "utf8"); -} - -/** - * Writes a configuration file in YAML format. - * @param {Object} config The configuration object to write. - * @param {string} filePath The filename to write to. - * @returns {void} - * @private - */ -function writeYAMLConfigFile(config, filePath) { - debug(`Writing YAML config file: ${filePath}`); - - // lazy load YAML to improve performance when not used - const yaml = require("js-yaml"); - - const content = yaml.dump(config, { sortKeys: true }); - - fs.writeFileSync(filePath, content, "utf8"); -} - -/** - * Writes a configuration file in JavaScript format. - * @param {Object} config The configuration object to write. - * @param {string} filePath The filename to write to. - * @throws {Error} If an error occurs linting the config file contents. - * @returns {void} - * @private - */ -function writeJSConfigFile(config, filePath) { - debug(`Writing JS config file: ${filePath}`); - - let contentToWrite; - const stringifiedContent = `module.exports = ${stringify(config, { cmp: sortByKey, space: 4 })};\n`; - - try { - const { CLIEngine } = require("../cli-engine"); - const linter = new CLIEngine({ - baseConfig: config, - fix: true, - useEslintrc: false - }); - const report = linter.executeOnText(stringifiedContent); - - contentToWrite = report.results[0].output || stringifiedContent; - } catch (e) { - debug("Error linting JavaScript config file, writing unlinted version"); - const errorMessage = e.message; - - contentToWrite = stringifiedContent; - e.message = "An error occurred while generating your JavaScript config file. "; - e.message += "A config file was still generated, but the config file itself may not follow your linting rules."; - e.message += `\nError: ${errorMessage}`; - throw e; - } finally { - fs.writeFileSync(filePath, contentToWrite, "utf8"); - } -} - -/** - * Writes a configuration file. - * @param {Object} config The configuration object to write. - * @param {string} filePath The filename to write to. - * @returns {void} - * @throws {Error} When an unknown file type is specified. - * @private - */ -function write(config, filePath) { - switch (path.extname(filePath)) { - case ".js": - case ".cjs": - writeJSConfigFile(config, filePath); - break; - - case ".json": - writeJSONConfigFile(config, filePath); - break; - - case ".yaml": - case ".yml": - writeYAMLConfigFile(config, filePath); - break; - - default: - throw new Error("Can't write to unknown file type."); - } -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - write -}; diff --git a/tools/node_modules/eslint/lib/init/config-initializer.js b/tools/node_modules/eslint/lib/init/config-initializer.js deleted file mode 100644 index 3c244b7bcc06f0..00000000000000 --- a/tools/node_modules/eslint/lib/init/config-initializer.js +++ /dev/null @@ -1,709 +0,0 @@ -/** - * @fileoverview Config initialization wizard. - * @author Ilya Volodin - */ - - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const util = require("util"), - path = require("path"), - fs = require("fs"), - enquirer = require("enquirer"), - ProgressBar = require("progress"), - semver = require("semver"), - espree = require("espree"), - recConfig = require("../../conf/eslint-recommended"), - { - Legacy: { - ConfigOps, - naming - } - } = require("@eslint/eslintrc"), - log = require("../shared/logging"), - ModuleResolver = require("../shared/relative-module-resolver"), - autoconfig = require("./autoconfig.js"), - ConfigFile = require("./config-file"), - npmUtils = require("./npm-utils"), - { getSourceCodeOfFiles } = require("./source-code-utils"); - -const debug = require("debug")("eslint:config-initializer"); - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -/* istanbul ignore next: hard to test fs function */ -/** - * Create .eslintrc file in the current working directory - * @param {Object} config object that contains user's answers - * @param {string} format The file format to write to. - * @returns {void} - */ -function writeFile(config, format) { - - // default is .js - let extname = ".js"; - - if (format === "YAML") { - extname = ".yml"; - } else if (format === "JSON") { - extname = ".json"; - } else if (format === "JavaScript") { - const pkgJSONPath = npmUtils.findPackageJson(); - - if (pkgJSONPath) { - const pkgJSONContents = JSON.parse(fs.readFileSync(pkgJSONPath, "utf8")); - - if (pkgJSONContents.type === "module") { - extname = ".cjs"; - } - } - } - - const installedESLint = config.installedESLint; - - delete config.installedESLint; - - ConfigFile.write(config, `./.eslintrc${extname}`); - log.info(`Successfully created .eslintrc${extname} file in ${process.cwd()}`); - - if (installedESLint) { - log.info("ESLint was installed locally. We recommend using this local copy instead of your globally-installed copy."); - } -} - -/** - * Get the peer dependencies of the given module. - * This adds the gotten value to cache at the first time, then reuses it. - * In a process, this function is called twice, but `npmUtils.fetchPeerDependencies` needs to access network which is relatively slow. - * @param {string} moduleName The module name to get. - * @returns {Object} The peer dependencies of the given module. - * This object is the object of `peerDependencies` field of `package.json`. - * Returns null if npm was not found. - */ -function getPeerDependencies(moduleName) { - let result = getPeerDependencies.cache.get(moduleName); - - if (!result) { - log.info(`Checking peerDependencies of ${moduleName}`); - - result = npmUtils.fetchPeerDependencies(moduleName); - getPeerDependencies.cache.set(moduleName, result); - } - - return result; -} -getPeerDependencies.cache = new Map(); - -/** - * Return necessary plugins, configs, parsers, etc. based on the config - * @param {Object} config config object - * @param {boolean} [installESLint=true] If `false` is given, it does not install eslint. - * @returns {string[]} An array of modules to be installed. - */ -function getModulesList(config, installESLint) { - const modules = {}; - - // Create a list of modules which should be installed based on config - if (config.plugins) { - for (const plugin of config.plugins) { - const moduleName = naming.normalizePackageName(plugin, "eslint-plugin"); - - modules[moduleName] = "latest"; - } - } - if (config.extends) { - const extendList = Array.isArray(config.extends) ? config.extends : [config.extends]; - - for (const extend of extendList) { - if (extend.startsWith("eslint:") || extend.startsWith("plugin:")) { - continue; - } - const moduleName = naming.normalizePackageName(extend, "eslint-config"); - - modules[moduleName] = "latest"; - Object.assign( - modules, - getPeerDependencies(`${moduleName}@latest`) - ); - } - } - - const parser = config.parser || (config.parserOptions && config.parserOptions.parser); - - if (parser) { - modules[parser] = "latest"; - } - - if (installESLint === false) { - delete modules.eslint; - } else { - const installStatus = npmUtils.checkDevDeps(["eslint"]); - - // Mark to show messages if it's new installation of eslint. - if (installStatus.eslint === false) { - log.info("Local ESLint installation not found."); - modules.eslint = modules.eslint || "latest"; - config.installedESLint = true; - } - } - - return Object.keys(modules).map(name => `${name}@${modules[name]}`); -} - -/** - * Set the `rules` of a config by examining a user's source code - * - * Note: This clones the config object and returns a new config to avoid mutating - * the original config parameter. - * @param {Object} answers answers received from enquirer - * @param {Object} config config object - * @throws {Error} If source code retrieval fails or source code file count is 0. - * @returns {Object} config object with configured rules - */ -function configureRules(answers, config) { - const BAR_TOTAL = 20, - BAR_SOURCE_CODE_TOTAL = 4, - newConfig = Object.assign({}, config), - disabledConfigs = {}; - let sourceCodes, - registry; - - // Set up a progress bar, as this process can take a long time - const bar = new ProgressBar("Determining Config: :percent [:bar] :elapseds elapsed, eta :etas ", { - width: 30, - total: BAR_TOTAL - }); - - bar.tick(0); // Shows the progress bar - - // Get the SourceCode of all chosen files - const patterns = answers.patterns.split(/[\s]+/u); - - try { - sourceCodes = getSourceCodeOfFiles(patterns, { baseConfig: newConfig, useEslintrc: false }, total => { - bar.tick((BAR_SOURCE_CODE_TOTAL / total)); - }); - } catch (e) { - log.info("\n"); - throw e; - } - const fileQty = Object.keys(sourceCodes).length; - - if (fileQty === 0) { - log.info("\n"); - throw new Error("Automatic Configuration failed. No files were able to be parsed."); - } - - // Create a registry of rule configs - registry = new autoconfig.Registry(); - registry.populateFromCoreRules(); - - // Lint all files with each rule config in the registry - registry = registry.lintSourceCode(sourceCodes, newConfig, total => { - bar.tick((BAR_TOTAL - BAR_SOURCE_CODE_TOTAL) / total); // Subtract out ticks used at beginning - }); - debug(`\nRegistry: ${util.inspect(registry.rules, { depth: null })}`); - - // Create a list of recommended rules, because we don't want to disable them - const recRules = Object.keys(recConfig.rules).filter(ruleId => ConfigOps.isErrorSeverity(recConfig.rules[ruleId])); - - // Find and disable rules which had no error-free configuration - const failingRegistry = registry.getFailingRulesRegistry(); - - Object.keys(failingRegistry.rules).forEach(ruleId => { - - // If the rule is recommended, set it to error, otherwise disable it - disabledConfigs[ruleId] = (recRules.indexOf(ruleId) !== -1) ? 2 : 0; - }); - - // Now that we know which rules to disable, strip out configs with errors - registry = registry.stripFailingConfigs(); - - /* - * If there is only one config that results in no errors for a rule, we should use it. - * createConfig will only add rules that have one configuration in the registry. - */ - const singleConfigs = registry.createConfig().rules; - - /* - * The "sweet spot" for number of options in a config seems to be two (severity plus one option). - * Very often, a third option (usually an object) is available to address - * edge cases, exceptions, or unique situations. We will prefer to use a config with - * specificity of two. - */ - const specTwoConfigs = registry.filterBySpecificity(2).createConfig().rules; - - // Maybe a specific combination using all three options works - const specThreeConfigs = registry.filterBySpecificity(3).createConfig().rules; - - // If all else fails, try to use the default (severity only) - const defaultConfigs = registry.filterBySpecificity(1).createConfig().rules; - - // Combine configs in reverse priority order (later take precedence) - newConfig.rules = Object.assign({}, disabledConfigs, defaultConfigs, specThreeConfigs, specTwoConfigs, singleConfigs); - - // Make sure progress bar has finished (floating point rounding) - bar.update(BAR_TOTAL); - - // Log out some stats to let the user know what happened - const finalRuleIds = Object.keys(newConfig.rules); - const totalRules = finalRuleIds.length; - const enabledRules = finalRuleIds.filter(ruleId => (newConfig.rules[ruleId] !== 0)).length; - const resultMessage = [ - `\nEnabled ${enabledRules} out of ${totalRules}`, - `rules based on ${fileQty}`, - `file${(fileQty === 1) ? "." : "s."}` - ].join(" "); - - log.info(resultMessage); - - ConfigOps.normalizeToStrings(newConfig); - return newConfig; -} - -/** - * process user's answers and create config object - * @param {Object} answers answers received from enquirer - * @returns {Object} config object - */ -function processAnswers(answers) { - let config = { - rules: {}, - env: {}, - parserOptions: {}, - extends: [] - }; - - config.parserOptions.ecmaVersion = espree.latestEcmaVersion; - config.env.es2021 = true; - - // set the module type - if (answers.moduleType === "esm") { - config.parserOptions.sourceType = "module"; - } else if (answers.moduleType === "commonjs") { - config.env.commonjs = true; - } - - // add in browser and node environments if necessary - answers.env.forEach(env => { - config.env[env] = true; - }); - - // add in library information - if (answers.framework === "react") { - config.parserOptions.ecmaFeatures = { - jsx: true - }; - config.plugins = ["react"]; - config.extends.push("plugin:react/recommended"); - } else if (answers.framework === "vue") { - config.plugins = ["vue"]; - config.extends.push("plugin:vue/essential"); - } - - if (answers.typescript) { - if (answers.framework === "vue") { - config.parserOptions.parser = "@typescript-eslint/parser"; - } else { - config.parser = "@typescript-eslint/parser"; - } - - if (Array.isArray(config.plugins)) { - config.plugins.push("@typescript-eslint"); - } else { - config.plugins = ["@typescript-eslint"]; - } - } - - // setup rules based on problems/style enforcement preferences - if (answers.purpose === "problems") { - config.extends.unshift("eslint:recommended"); - } else if (answers.purpose === "style") { - if (answers.source === "prompt") { - config.extends.unshift("eslint:recommended"); - config.rules.indent = ["error", answers.indent]; - config.rules.quotes = ["error", answers.quotes]; - config.rules["linebreak-style"] = ["error", answers.linebreak]; - config.rules.semi = ["error", answers.semi ? "always" : "never"]; - } else if (answers.source === "auto") { - config = configureRules(answers, config); - config = autoconfig.extendFromRecommended(config); - } - } - if (answers.typescript && config.extends.includes("eslint:recommended")) { - config.extends.push("plugin:@typescript-eslint/recommended"); - } - - // normalize extends - if (config.extends.length === 0) { - delete config.extends; - } else if (config.extends.length === 1) { - config.extends = config.extends[0]; - } - - ConfigOps.normalizeToStrings(config); - return config; -} - -/** - * Get the version of the local ESLint. - * @returns {string|null} The version. If the local ESLint was not found, returns null. - */ -function getLocalESLintVersion() { - try { - const eslintPath = ModuleResolver.resolve("eslint", path.join(process.cwd(), "__placeholder__.js")); - const eslint = require(eslintPath); - - return eslint.linter.version || null; - } catch { - return null; - } -} - -/** - * Get the shareable config name of the chosen style guide. - * @param {Object} answers The answers object. - * @returns {string} The shareable config name. - */ -function getStyleGuideName(answers) { - if (answers.styleguide === "airbnb" && answers.framework !== "react") { - return "airbnb-base"; - } - return answers.styleguide; -} - -/** - * Check whether the local ESLint version conflicts with the required version of the chosen shareable config. - * @param {Object} answers The answers object. - * @returns {boolean} `true` if the local ESLint is found then it conflicts with the required version of the chosen shareable config. - */ -function hasESLintVersionConflict(answers) { - - // Get the local ESLint version. - const localESLintVersion = getLocalESLintVersion(); - - if (!localESLintVersion) { - return false; - } - - // Get the required range of ESLint version. - const configName = getStyleGuideName(answers); - const moduleName = `eslint-config-${configName}@latest`; - const peerDependencies = getPeerDependencies(moduleName) || {}; - const requiredESLintVersionRange = peerDependencies.eslint; - - if (!requiredESLintVersionRange) { - return false; - } - - answers.localESLintVersion = localESLintVersion; - answers.requiredESLintVersionRange = requiredESLintVersionRange; - - // Check the version. - if (semver.satisfies(localESLintVersion, requiredESLintVersionRange)) { - answers.installESLint = false; - return false; - } - - return true; -} - -/** - * Install modules. - * @param {string[]} modules Modules to be installed. - * @returns {void} - */ -function installModules(modules) { - log.info(`Installing ${modules.join(", ")}`); - npmUtils.installSyncSaveDev(modules); -} - -/* istanbul ignore next: no need to test enquirer */ -/** - * Ask user to install modules. - * @param {string[]} modules Array of modules to be installed. - * @param {boolean} packageJsonExists Indicates if package.json is existed. - * @returns {Promise} Answer that indicates if user wants to install. - */ -function askInstallModules(modules, packageJsonExists) { - - // If no modules, do nothing. - if (modules.length === 0) { - return Promise.resolve(); - } - - log.info("The config that you've selected requires the following dependencies:\n"); - log.info(modules.join(" ")); - return enquirer.prompt([ - { - type: "toggle", - name: "executeInstallation", - message: "Would you like to install them now with npm?", - enabled: "Yes", - disabled: "No", - initial: 1, - skip() { - return !(modules.length && packageJsonExists); - }, - result(input) { - return this.skipped ? null : input; - } - } - ]).then(({ executeInstallation }) => { - if (executeInstallation) { - installModules(modules); - } - }); -} - -/* istanbul ignore next: no need to test enquirer */ -/** - * Ask use a few questions on command prompt - * @returns {Promise} The promise with the result of the prompt - */ -function promptUser() { - - return enquirer.prompt([ - { - type: "select", - name: "purpose", - message: "How would you like to use ESLint?", - - // The returned number matches the name value of nth in the choices array. - initial: 1, - choices: [ - { message: "To check syntax only", name: "syntax" }, - { message: "To check syntax and find problems", name: "problems" }, - { message: "To check syntax, find problems, and enforce code style", name: "style" } - ] - }, - { - type: "select", - name: "moduleType", - message: "What type of modules does your project use?", - initial: 0, - choices: [ - { message: "JavaScript modules (import/export)", name: "esm" }, - { message: "CommonJS (require/exports)", name: "commonjs" }, - { message: "None of these", name: "none" } - ] - }, - { - type: "select", - name: "framework", - message: "Which framework does your project use?", - initial: 0, - choices: [ - { message: "React", name: "react" }, - { message: "Vue.js", name: "vue" }, - { message: "None of these", name: "none" } - ] - }, - { - type: "toggle", - name: "typescript", - message: "Does your project use TypeScript?", - enabled: "Yes", - disabled: "No", - initial: 0 - }, - { - type: "multiselect", - name: "env", - message: "Where does your code run?", - hint: "(Press to select, to toggle all, to invert selection)", - initial: 0, - choices: [ - { message: "Browser", name: "browser" }, - { message: "Node", name: "node" } - ] - }, - { - type: "select", - name: "source", - message: "How would you like to define a style for your project?", - choices: [ - { message: "Use a popular style guide", name: "guide" }, - { message: "Answer questions about your style", name: "prompt" }, - { message: "Inspect your JavaScript file(s)", name: "auto" } - ], - skip() { - return this.state.answers.purpose !== "style"; - }, - result(input) { - return this.skipped ? null : input; - } - }, - { - type: "select", - name: "styleguide", - message: "Which style guide do you want to follow?", - choices: [ - { message: "Airbnb: https://github.com/airbnb/javascript", name: "airbnb" }, - { message: "Standard: https://github.com/standard/standard", name: "standard" }, - { message: "Google: https://github.com/google/eslint-config-google", name: "google" }, - { message: "XO: https://github.com/xojs/eslint-config-xo", name: "xo" } - ], - skip() { - this.state.answers.packageJsonExists = npmUtils.checkPackageJson(); - return !(this.state.answers.source === "guide" && this.state.answers.packageJsonExists); - }, - result(input) { - return this.skipped ? null : input; - } - }, - { - type: "input", - name: "patterns", - message: "Which file(s), path(s), or glob(s) should be examined?", - skip() { - return this.state.answers.source !== "auto"; - }, - validate(input) { - if (!this.skipped && input.trim().length === 0 && input.trim() !== ",") { - return "You must tell us what code to examine. Try again."; - } - return true; - } - }, - { - type: "select", - name: "format", - message: "What format do you want your config file to be in?", - initial: 0, - choices: ["JavaScript", "YAML", "JSON"] - }, - { - type: "toggle", - name: "installESLint", - message() { - const { answers } = this.state; - const verb = semver.ltr(answers.localESLintVersion, answers.requiredESLintVersionRange) - ? "upgrade" - : "downgrade"; - - return `The style guide "${answers.styleguide}" requires eslint@${answers.requiredESLintVersionRange}. You are currently using eslint@${answers.localESLintVersion}.\n Do you want to ${verb}?`; - }, - enabled: "Yes", - disabled: "No", - initial: 1, - skip() { - return !(this.state.answers.source === "guide" && this.state.answers.packageJsonExists && hasESLintVersionConflict(this.state.answers)); - }, - result(input) { - return this.skipped ? null : input; - } - } - ]).then(earlyAnswers => { - - // early exit if no style guide is necessary - if (earlyAnswers.purpose !== "style") { - const config = processAnswers(earlyAnswers); - const modules = getModulesList(config); - - return askInstallModules(modules, earlyAnswers.packageJsonExists) - .then(() => writeFile(config, earlyAnswers.format)); - } - - // early exit if you are using a style guide - if (earlyAnswers.source === "guide") { - if (!earlyAnswers.packageJsonExists) { - log.info("A package.json is necessary to install plugins such as style guides. Run `npm init` to create a package.json file and try again."); - return void 0; - } - if (earlyAnswers.installESLint === false && !semver.satisfies(earlyAnswers.localESLintVersion, earlyAnswers.requiredESLintVersionRange)) { - log.info(`Note: it might not work since ESLint's version is mismatched with the ${earlyAnswers.styleguide} config.`); - } - if (earlyAnswers.styleguide === "airbnb" && earlyAnswers.framework !== "react") { - earlyAnswers.styleguide = "airbnb-base"; - } - - const config = processAnswers(earlyAnswers); - - if (Array.isArray(config.extends)) { - config.extends.push(earlyAnswers.styleguide); - } else if (config.extends) { - config.extends = [config.extends, earlyAnswers.styleguide]; - } else { - config.extends = [earlyAnswers.styleguide]; - } - - const modules = getModulesList(config); - - return askInstallModules(modules, earlyAnswers.packageJsonExists) - .then(() => writeFile(config, earlyAnswers.format)); - - } - - if (earlyAnswers.source === "auto") { - const combinedAnswers = Object.assign({}, earlyAnswers); - const config = processAnswers(combinedAnswers); - const modules = getModulesList(config); - - return askInstallModules(modules).then(() => writeFile(config, earlyAnswers.format)); - } - - // continue with the style questions otherwise... - return enquirer.prompt([ - { - type: "select", - name: "indent", - message: "What style of indentation do you use?", - initial: 0, - choices: [{ message: "Tabs", name: "tab" }, { message: "Spaces", name: 4 }] - }, - { - type: "select", - name: "quotes", - message: "What quotes do you use for strings?", - initial: 0, - choices: [{ message: "Double", name: "double" }, { message: "Single", name: "single" }] - }, - { - type: "select", - name: "linebreak", - message: "What line endings do you use?", - initial: 0, - choices: [{ message: "Unix", name: "unix" }, { message: "Windows", name: "windows" }] - }, - { - type: "toggle", - name: "semi", - message: "Do you require semicolons?", - enabled: "Yes", - disabled: "No", - initial: 1 - } - ]).then(answers => { - const totalAnswers = Object.assign({}, earlyAnswers, answers); - - const config = processAnswers(totalAnswers); - const modules = getModulesList(config); - - return askInstallModules(modules).then(() => writeFile(config, earlyAnswers.format)); - }); - }); -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -const init = { - getModulesList, - hasESLintVersionConflict, - installModules, - processAnswers, - writeFile, - /* istanbul ignore next */initializeConfig() { - return promptUser(); - } -}; - -module.exports = init; diff --git a/tools/node_modules/eslint/lib/init/config-rule.js b/tools/node_modules/eslint/lib/init/config-rule.js deleted file mode 100644 index 131e84a60c5c3d..00000000000000 --- a/tools/node_modules/eslint/lib/init/config-rule.js +++ /dev/null @@ -1,316 +0,0 @@ -/** - * @fileoverview Create configurations for a rule - * @author Ian VanSchooten - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const builtInRules = require("../rules"); - -//------------------------------------------------------------------------------ -// Helpers -//------------------------------------------------------------------------------ - -/** - * Wrap all of the elements of an array into arrays. - * @param {*[]} xs Any array. - * @returns {Array[]} An array of arrays. - */ -function explodeArray(xs) { - return xs.reduce((accumulator, x) => { - accumulator.push([x]); - return accumulator; - }, []); -} - -/** - * Mix two arrays such that each element of the second array is concatenated - * onto each element of the first array. - * - * For example: - * combineArrays([a, [b, c]], [x, y]); // -> [[a, x], [a, y], [b, c, x], [b, c, y]] - * @param {Array} arr1 The first array to combine. - * @param {Array} arr2 The second array to combine. - * @returns {Array} A mixture of the elements of the first and second arrays. - */ -function combineArrays(arr1, arr2) { - const res = []; - - if (arr1.length === 0) { - return explodeArray(arr2); - } - if (arr2.length === 0) { - return explodeArray(arr1); - } - arr1.forEach(x1 => { - arr2.forEach(x2 => { - res.push([].concat(x1, x2)); - }); - }); - return res; -} - -/** - * Group together valid rule configurations based on object properties - * - * e.g.: - * groupByProperty([ - * {before: true}, - * {before: false}, - * {after: true}, - * {after: false} - * ]); - * - * will return: - * [ - * [{before: true}, {before: false}], - * [{after: true}, {after: false}] - * ] - * @param {Object[]} objects Array of objects, each with one property/value pair - * @returns {Array[]} Array of arrays of objects grouped by property - */ -function groupByProperty(objects) { - const groupedObj = objects.reduce((accumulator, obj) => { - const prop = Object.keys(obj)[0]; - - accumulator[prop] = accumulator[prop] ? accumulator[prop].concat(obj) : [obj]; - return accumulator; - }, {}); - - return Object.keys(groupedObj).map(prop => groupedObj[prop]); -} - - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -/** - * Configuration settings for a rule. - * - * A configuration can be a single number (severity), or an array where the first - * element in the array is the severity, and is the only required element. - * Configs may also have one or more additional elements to specify rule - * configuration or options. - * @typedef {Array|number} ruleConfig - * @param {number} 0 The rule's severity (0, 1, 2). - */ - -/** - * Object whose keys are rule names and values are arrays of valid ruleConfig items - * which should be linted against the target source code to determine error counts. - * (a ruleConfigSet.ruleConfigs). - * - * e.g. rulesConfig = { - * "comma-dangle": [2, [2, "always"], [2, "always-multiline"], [2, "never"]], - * "no-console": [2] - * } - * @typedef rulesConfig - */ - - -/** - * Create valid rule configurations by combining two arrays, - * with each array containing multiple objects each with a - * single property/value pair and matching properties. - * - * e.g.: - * combinePropertyObjects( - * [{before: true}, {before: false}], - * [{after: true}, {after: false}] - * ); - * - * will return: - * [ - * {before: true, after: true}, - * {before: true, after: false}, - * {before: false, after: true}, - * {before: false, after: false} - * ] - * @param {Object[]} objArr1 Single key/value objects, all with the same key - * @param {Object[]} objArr2 Single key/value objects, all with another key - * @returns {Object[]} Combined objects for each combination of input properties and values - */ -function combinePropertyObjects(objArr1, objArr2) { - const res = []; - - if (objArr1.length === 0) { - return objArr2; - } - if (objArr2.length === 0) { - return objArr1; - } - objArr1.forEach(obj1 => { - objArr2.forEach(obj2 => { - const combinedObj = {}; - const obj1Props = Object.keys(obj1); - const obj2Props = Object.keys(obj2); - - obj1Props.forEach(prop1 => { - combinedObj[prop1] = obj1[prop1]; - }); - obj2Props.forEach(prop2 => { - combinedObj[prop2] = obj2[prop2]; - }); - res.push(combinedObj); - }); - }); - return res; -} - -/** - * Creates a new instance of a rule configuration set - * - * A rule configuration set is an array of configurations that are valid for a - * given rule. For example, the configuration set for the "semi" rule could be: - * - * ruleConfigSet.ruleConfigs // -> [[2], [2, "always"], [2, "never"]] - * - * Rule configuration set class - */ -class RuleConfigSet { - - /** - * @param {ruleConfig[]} configs Valid rule configurations - */ - constructor(configs) { - - /** - * Stored valid rule configurations for this instance - * @type {Array} - */ - this.ruleConfigs = configs || []; - } - - /** - * Add a severity level to the front of all configs in the instance. - * This should only be called after all configs have been added to the instance. - * @returns {void} - */ - addErrorSeverity() { - const severity = 2; - - this.ruleConfigs = this.ruleConfigs.map(config => { - config.unshift(severity); - return config; - }); - - // Add a single config at the beginning consisting of only the severity - this.ruleConfigs.unshift(severity); - } - - /** - * Add rule configs from an array of strings (schema enums) - * @param {string[]} enums Array of valid rule options (e.g. ["always", "never"]) - * @returns {void} - */ - addEnums(enums) { - this.ruleConfigs = this.ruleConfigs.concat(combineArrays(this.ruleConfigs, enums)); - } - - /** - * Add rule configurations from a schema object - * @param {Object} obj Schema item with type === "object" - * @returns {boolean} true if at least one schema for the object could be generated, false otherwise - */ - addObject(obj) { - const objectConfigSet = { - objectConfigs: [], - add(property, values) { - for (let idx = 0; idx < values.length; idx++) { - const optionObj = {}; - - optionObj[property] = values[idx]; - this.objectConfigs.push(optionObj); - } - }, - - combine() { - this.objectConfigs = groupByProperty(this.objectConfigs).reduce((accumulator, objArr) => combinePropertyObjects(accumulator, objArr), []); - } - }; - - /* - * The object schema could have multiple independent properties. - * If any contain enums or booleans, they can be added and then combined - */ - Object.keys(obj.properties).forEach(prop => { - if (obj.properties[prop].enum) { - objectConfigSet.add(prop, obj.properties[prop].enum); - } - if (obj.properties[prop].type && obj.properties[prop].type === "boolean") { - objectConfigSet.add(prop, [true, false]); - } - }); - objectConfigSet.combine(); - - if (objectConfigSet.objectConfigs.length > 0) { - this.ruleConfigs = this.ruleConfigs.concat(combineArrays(this.ruleConfigs, objectConfigSet.objectConfigs)); - return true; - } - - return false; - } -} - -/** - * Generate valid rule configurations based on a schema object - * @param {Object} schema A rule's schema object - * @returns {Array[]} Valid rule configurations - */ -function generateConfigsFromSchema(schema) { - const configSet = new RuleConfigSet(); - - if (Array.isArray(schema)) { - for (const opt of schema) { - if (opt.enum) { - configSet.addEnums(opt.enum); - } else if (opt.type && opt.type === "object") { - if (!configSet.addObject(opt)) { - break; - } - - // TODO (IanVS): support oneOf - } else { - - // If we don't know how to fill in this option, don't fill in any of the following options. - break; - } - } - } - configSet.addErrorSeverity(); - return configSet.ruleConfigs; -} - -/** - * Generate possible rule configurations for all of the core rules - * @param {boolean} noDeprecated Indicates whether ignores deprecated rules or not. - * @returns {rulesConfig} Hash of rule names and arrays of possible configurations - */ -function createCoreRuleConfigs(noDeprecated = false) { - return Array.from(builtInRules).reduce((accumulator, [id, rule]) => { - const schema = (typeof rule === "function") ? rule.schema : rule.meta.schema; - const isDeprecated = (typeof rule === "function") ? rule.deprecated : rule.meta.deprecated; - - if (noDeprecated && isDeprecated) { - return accumulator; - } - - accumulator[id] = generateConfigsFromSchema(schema); - return accumulator; - }, {}); -} - - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - generateConfigsFromSchema, - createCoreRuleConfigs -}; diff --git a/tools/node_modules/eslint/lib/init/npm-utils.js b/tools/node_modules/eslint/lib/init/npm-utils.js deleted file mode 100644 index 4a8efe964f330c..00000000000000 --- a/tools/node_modules/eslint/lib/init/npm-utils.js +++ /dev/null @@ -1,179 +0,0 @@ -/** - * @fileoverview Utility for executing npm commands. - * @author Ian VanSchooten - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const fs = require("fs"), - spawn = require("cross-spawn"), - path = require("path"), - log = require("../shared/logging"); - -//------------------------------------------------------------------------------ -// Helpers -//------------------------------------------------------------------------------ - -/** - * Find the closest package.json file, starting at process.cwd (by default), - * and working up to root. - * @param {string} [startDir=process.cwd()] Starting directory - * @returns {string} Absolute path to closest package.json file - */ -function findPackageJson(startDir) { - let dir = path.resolve(startDir || process.cwd()); - - do { - const pkgFile = path.join(dir, "package.json"); - - if (!fs.existsSync(pkgFile) || !fs.statSync(pkgFile).isFile()) { - dir = path.join(dir, ".."); - continue; - } - return pkgFile; - } while (dir !== path.resolve(dir, "..")); - return null; -} - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -/** - * Install node modules synchronously and save to devDependencies in package.json - * @param {string|string[]} packages Node module or modules to install - * @returns {void} - */ -function installSyncSaveDev(packages) { - const packageList = Array.isArray(packages) ? packages : [packages]; - const npmProcess = spawn.sync("npm", ["i", "--save-dev"].concat(packageList), { stdio: "inherit" }); - const error = npmProcess.error; - - if (error && error.code === "ENOENT") { - const pluralS = packageList.length > 1 ? "s" : ""; - - log.error(`Could not execute npm. Please install the following package${pluralS} with a package manager of your choice: ${packageList.join(", ")}`); - } -} - -/** - * Fetch `peerDependencies` of the given package by `npm show` command. - * @param {string} packageName The package name to fetch peerDependencies. - * @returns {Object} Gotten peerDependencies. Returns null if npm was not found. - */ -function fetchPeerDependencies(packageName) { - const npmProcess = spawn.sync( - "npm", - ["show", "--json", packageName, "peerDependencies"], - { encoding: "utf8" } - ); - - const error = npmProcess.error; - - if (error && error.code === "ENOENT") { - return null; - } - const fetchedText = npmProcess.stdout.trim(); - - return JSON.parse(fetchedText || "{}"); - - -} - -/** - * Check whether node modules are include in a project's package.json. - * @param {string[]} packages Array of node module names - * @param {Object} opt Options Object - * @param {boolean} opt.dependencies Set to true to check for direct dependencies - * @param {boolean} opt.devDependencies Set to true to check for development dependencies - * @param {boolean} opt.startdir Directory to begin searching from - * @throws {Error} If cannot find valid `package.json` file. - * @returns {Object} An object whose keys are the module names - * and values are booleans indicating installation. - */ -function check(packages, opt) { - const deps = new Set(); - const pkgJson = (opt) ? findPackageJson(opt.startDir) : findPackageJson(); - let fileJson; - - if (!pkgJson) { - throw new Error("Could not find a package.json file. Run 'npm init' to create one."); - } - - try { - fileJson = JSON.parse(fs.readFileSync(pkgJson, "utf8")); - } catch (e) { - const error = new Error(e); - - error.messageTemplate = "failed-to-read-json"; - error.messageData = { - path: pkgJson, - message: e.message - }; - throw error; - } - - ["dependencies", "devDependencies"].forEach(key => { - if (opt[key] && typeof fileJson[key] === "object") { - Object.keys(fileJson[key]).forEach(dep => deps.add(dep)); - } - }); - - return packages.reduce((status, pkg) => { - status[pkg] = deps.has(pkg); - return status; - }, {}); -} - -/** - * Check whether node modules are included in the dependencies of a project's - * package.json. - * - * Convenience wrapper around check(). - * @param {string[]} packages Array of node modules to check. - * @param {string} rootDir The directory containing a package.json - * @returns {Object} An object whose keys are the module names - * and values are booleans indicating installation. - */ -function checkDeps(packages, rootDir) { - return check(packages, { dependencies: true, startDir: rootDir }); -} - -/** - * Check whether node modules are included in the devDependencies of a project's - * package.json. - * - * Convenience wrapper around check(). - * @param {string[]} packages Array of node modules to check. - * @returns {Object} An object whose keys are the module names - * and values are booleans indicating installation. - */ -function checkDevDeps(packages) { - return check(packages, { devDependencies: true }); -} - -/** - * Check whether package.json is found in current path. - * @param {string} [startDir] Starting directory - * @returns {boolean} Whether a package.json is found in current path. - */ -function checkPackageJson(startDir) { - return !!findPackageJson(startDir); -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - installSyncSaveDev, - fetchPeerDependencies, - findPackageJson, - checkDeps, - checkDevDeps, - checkPackageJson -}; diff --git a/tools/node_modules/eslint/lib/init/source-code-utils.js b/tools/node_modules/eslint/lib/init/source-code-utils.js deleted file mode 100644 index 08c20e5d56e214..00000000000000 --- a/tools/node_modules/eslint/lib/init/source-code-utils.js +++ /dev/null @@ -1,110 +0,0 @@ -/** - * @fileoverview Tools for obtaining SourceCode objects. - * @author Ian VanSchooten - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const { CLIEngine } = require("../cli-engine"); - -/* - * This is used for: - * - * 1. Enumerate target file because we have not expose such a API on `CLIEngine` - * (https://github.com/eslint/eslint/issues/11222). - * 2. Create `SourceCode` instances. Because we don't have any function which - * instantiate `SourceCode` so it needs to take the created `SourceCode` - * instance out after linting. - * - * TODO1: Expose the API that enumerates target files. - * TODO2: Extract the creation logic of `SourceCode` from `Linter` class. - */ -const { getCLIEngineInternalSlots } = require("../cli-engine/cli-engine"); // eslint-disable-line node/no-restricted-require -- Todo - -const debug = require("debug")("eslint:source-code-utils"); - -//------------------------------------------------------------------------------ -// Helpers -//------------------------------------------------------------------------------ - -/** - * Get the SourceCode object for a single file - * @param {string} filename The fully resolved filename to get SourceCode from. - * @param {Object} engine A CLIEngine. - * @throws {Error} Upon fatal errors from execution. - * @returns {Array} Array of the SourceCode object representing the file - * and fatal error message. - */ -function getSourceCodeOfFile(filename, engine) { - debug("getting sourceCode of", filename); - const results = engine.executeOnFiles([filename]); - - if (results && results.results[0] && results.results[0].messages[0] && results.results[0].messages[0].fatal) { - const msg = results.results[0].messages[0]; - - throw new Error(`(${filename}:${msg.line}:${msg.column}) ${msg.message}`); - } - - // TODO: extract the logic that creates source code objects to `SourceCode#parse(text, options)` or something like. - const { linter } = getCLIEngineInternalSlots(engine); - const sourceCode = linter.getSourceCode(); - - return sourceCode; -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - - -/** - * This callback is used to measure execution status in a progress bar - * @callback progressCallback - * @param {number} The total number of times the callback will be called. - */ - -/** - * Gets the SourceCode of a single file, or set of files. - * @param {string[]|string} patterns A filename, directory name, or glob, or an array of them - * @param {Object} options A CLIEngine options object. If not provided, the default cli options will be used. - * @param {progressCallback} callback Callback for reporting execution status - * @returns {Object} The SourceCode of all processed files. - */ -function getSourceCodeOfFiles(patterns, options, callback) { - const sourceCodes = {}; - const globPatternsList = typeof patterns === "string" ? [patterns] : patterns; - const engine = new CLIEngine({ ...options, rules: {} }); - - // TODO: make file iteration as a public API and use it. - const { fileEnumerator } = getCLIEngineInternalSlots(engine); - const filenames = - Array.from(fileEnumerator.iterateFiles(globPatternsList)) - .filter(entry => !entry.ignored) - .map(entry => entry.filePath); - - if (filenames.length === 0) { - debug(`Did not find any files matching pattern(s): ${globPatternsList}`); - } - - filenames.forEach(filename => { - const sourceCode = getSourceCodeOfFile(filename, engine); - - if (sourceCode) { - debug("got sourceCode of", filename); - sourceCodes[filename] = sourceCode; - } - if (callback) { - callback(filenames.length); // eslint-disable-line node/callback-return -- End of function - } - }); - - return sourceCodes; -} - -module.exports = { - getSourceCodeOfFiles -}; diff --git a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js index fe520a58abe1e1..398f210135bc4e 100644 --- a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js @@ -977,10 +977,10 @@ class RuleTester { * This creates a mocha test suite and pipes all supplied info through * one of the templates above. */ - RuleTester.describe(ruleName, () => { - RuleTester.describe("valid", () => { + this.constructor.describe(ruleName, () => { + this.constructor.describe("valid", () => { test.valid.forEach(valid => { - RuleTester[valid.only ? "itOnly" : "it"]( + this.constructor[valid.only ? "itOnly" : "it"]( sanitize(typeof valid === "object" ? valid.name || valid.code : valid), () => { testValidTemplate(valid); @@ -989,9 +989,9 @@ class RuleTester { }); }); - RuleTester.describe("invalid", () => { + this.constructor.describe("invalid", () => { test.invalid.forEach(invalid => { - RuleTester[invalid.only ? "itOnly" : "it"]( + this.constructor[invalid.only ? "itOnly" : "it"]( sanitize(invalid.name || invalid.code), () => { testInvalidTemplate(invalid); diff --git a/tools/node_modules/eslint/lib/rules/camelcase.js b/tools/node_modules/eslint/lib/rules/camelcase.js index 61dd062edea4ec..6bb1838a72ed49 100644 --- a/tools/node_modules/eslint/lib/rules/camelcase.js +++ b/tools/node_modules/eslint/lib/rules/camelcase.js @@ -5,6 +5,12 @@ "use strict"; +//------------------------------------------------------------------------------ +// Requirements +//------------------------------------------------------------------------------ + +const astUtils = require("./utils/ast-utils"); + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -165,7 +171,7 @@ module.exports = { case "ImportSpecifier": return ( parent.local === node && - parent.imported.name === localName + astUtils.getModuleExportName(parent.imported) === localName ); default: diff --git a/tools/node_modules/eslint/lib/rules/id-match.js b/tools/node_modules/eslint/lib/rules/id-match.js index 977e66a26ad2f0..8713a5f9f8ba54 100644 --- a/tools/node_modules/eslint/lib/rules/id-match.js +++ b/tools/node_modules/eslint/lib/rules/id-match.js @@ -250,7 +250,7 @@ module.exports = { } // never check properties or always ignore destructuring - if (!checkProperties || (ignoreDestructuring && isInsideObjectPattern(node))) { + if ((!checkProperties && !parent.computed) || (ignoreDestructuring && isInsideObjectPattern(node))) { return; } diff --git a/tools/node_modules/eslint/lib/rules/keyword-spacing.js b/tools/node_modules/eslint/lib/rules/keyword-spacing.js index 956fc42656d176..16a65d786966c4 100644 --- a/tools/node_modules/eslint/lib/rules/keyword-spacing.js +++ b/tools/node_modules/eslint/lib/rules/keyword-spacing.js @@ -469,6 +469,7 @@ module.exports = { const asToken = sourceCode.getTokenBefore(node.exported); checkSpacingBefore(asToken, PREV_TOKEN_M); + checkSpacingAfter(asToken, NEXT_TOKEN_M); } if (node.source) { @@ -479,6 +480,35 @@ module.exports = { } } + /** + * Reports `as` keyword of a given node if usage of spacing around this + * keyword is invalid. + * @param {ASTNode} node An `ImportSpecifier` node to check. + * @returns {void} + */ + function checkSpacingForImportSpecifier(node) { + if (node.imported.range[0] !== node.local.range[0]) { + const asToken = sourceCode.getTokenBefore(node.local); + + checkSpacingBefore(asToken, PREV_TOKEN_M); + } + } + + /** + * Reports `as` keyword of a given node if usage of spacing around this + * keyword is invalid. + * @param {ASTNode} node An `ExportSpecifier` node to check. + * @returns {void} + */ + function checkSpacingForExportSpecifier(node) { + if (node.local.range[0] !== node.exported.range[0]) { + const asToken = sourceCode.getTokenBefore(node.exported); + + checkSpacingBefore(asToken, PREV_TOKEN_M); + checkSpacingAfter(asToken, NEXT_TOKEN_M); + } + } + /** * Reports `as` keyword of a given node if usage of spacing around this * keyword is invalid. @@ -588,6 +618,8 @@ module.exports = { YieldExpression: checkSpacingBeforeFirstToken, // Others + ImportSpecifier: checkSpacingForImportSpecifier, + ExportSpecifier: checkSpacingForExportSpecifier, ImportNamespaceSpecifier: checkSpacingForImportNamespaceSpecifier, MethodDefinition: checkSpacingForProperty, PropertyDefinition: checkSpacingForProperty, 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 0bcb31931e4205..8adc9bca4db67d 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-condition.js @@ -124,7 +124,8 @@ module.exports = { * Checks if a node has a constant truthiness value. * @param {ASTNode} node The AST node to check. * @param {boolean} inBooleanPosition `false` if checking branch of a condition. - * `true` in all other cases + * `true` in all other cases. When `false`, checks if -- for both string and + * number -- if coerced to that type, the value will be constant. * @returns {Bool} true when node's truthiness is constant * @private */ @@ -138,15 +139,31 @@ module.exports = { case "Literal": case "ArrowFunctionExpression": case "FunctionExpression": - case "ObjectExpression": + return true; case "ClassExpression": + case "ObjectExpression": + + /** + * In theory objects like: + * + * `{toString: () => a}` + * `{valueOf: () => a}` + * + * Or a classes like: + * + * `class { static toString() { return a } }` + * `class { static valueOf() { return a } }` + * + * Are not constant verifiably when `inBooleanPosition` is + * false, but it's an edge case we've opted not to handle. + */ return true; case "TemplateLiteral": return (inBooleanPosition && node.quasis.some(quasi => quasi.value.cooked.length)) || - node.expressions.every(exp => isConstant(exp, inBooleanPosition)); + node.expressions.every(exp => isConstant(exp, false)); case "ArrayExpression": { - if (node.parent.type === "BinaryExpression" && node.parent.operator === "+") { + if (!inBooleanPosition) { return node.elements.every(element => isConstant(element, false)); } return true; @@ -196,6 +213,8 @@ module.exports = { case "SequenceExpression": return isConstant(node.expressions[node.expressions.length - 1], inBooleanPosition); + case "SpreadElement": + return isConstant(node.argument, inBooleanPosition); // no default } 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 5f9b9f871ecf6b..64e4d964a8444b 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-this.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-this.js @@ -11,6 +11,21 @@ const astUtils = require("./utils/ast-utils"); +//------------------------------------------------------------------------------ +// Helpers +//------------------------------------------------------------------------------ + +/** + * Determines if the given code path is a code path with lexical `this` binding. + * That is, if `this` within the code path refers to `this` of surrounding code path. + * @param {CodePath} codePath Code path. + * @param {ASTNode} node Node that started the code path. + * @returns {boolean} `true` if it is a code path with lexical `this` binding. + */ +function isCodePathWithLexicalThis(codePath, node) { + return codePath.origin === "function" && node.type === "ArrowFunctionExpression"; +} + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -72,71 +87,53 @@ module.exports = { return current; }; - /** - * Pushs new checking context into the stack. - * - * The checking context is not initialized yet. - * Because most functions don't have `this` keyword. - * When `this` keyword was found, the checking context is initialized. - * @param {ASTNode} node A function node that was entered. - * @returns {void} - */ - function enterFunction(node) { - - // `this` can be invalid only under strict mode. - stack.push({ - init: !context.getScope().isStrict, - node, - valid: true - }); - } + return { - /** - * Pops the current checking context from the stack. - * @returns {void} - */ - function exitFunction() { - stack.pop(); - } + onCodePathStart(codePath, node) { + if (isCodePathWithLexicalThis(codePath, node)) { + return; + } - return { + if (codePath.origin === "program") { + const scope = context.getScope(); + const features = context.parserOptions.ecmaFeatures || {}; + + stack.push({ + init: true, + node, + valid: !( + scope.isStrict || + node.sourceType === "module" || + (features.globalReturn && scope.childScopes[0].isStrict) + ) + }); - /* - * `this` is invalid only under strict mode. - * Modules is always strict mode. - */ - Program(node) { - const scope = context.getScope(), - features = context.parserOptions.ecmaFeatures || {}; + return; + } + /* + * `init: false` means that `valid` isn't determined yet. + * Most functions don't use `this`, and the calculation for `valid` + * is relatively costly, so we'll calculate it lazily when the first + * `this` within the function is traversed. A special case are non-strict + * functions, because `this` refers to the global object and therefore is + * always valid, so we can set `init: true` right away. + */ stack.push({ - init: true, + init: !context.getScope().isStrict, node, - valid: !( - scope.isStrict || - node.sourceType === "module" || - (features.globalReturn && scope.childScopes[0].isStrict) - ) + valid: true }); }, - "Program:exit"() { + onCodePathEnd(codePath, node) { + if (isCodePathWithLexicalThis(codePath, node)) { + return; + } + stack.pop(); }, - FunctionDeclaration: enterFunction, - "FunctionDeclaration:exit": exitFunction, - FunctionExpression: enterFunction, - "FunctionExpression:exit": exitFunction, - - // Field initializers are implicit functions. - "PropertyDefinition > *.value": enterFunction, - "PropertyDefinition > *.value:exit": exitFunction, - - // Class static blocks are implicit functions. - StaticBlock: enterFunction, - "StaticBlock:exit": exitFunction, - // Reports if `this` of the current context is invalid. ThisExpression(node) { const current = stack.getCurrent(); 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 775e505d846c21..5166cecaef2db4 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-exports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-exports.js @@ -5,6 +5,12 @@ "use strict"; +//------------------------------------------------------------------------------ +// Requirements +//------------------------------------------------------------------------------ + +const astUtils = require("./utils/ast-utils"); + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -44,12 +50,12 @@ module.exports = { const restrictedNames = new Set(context.options[0] && context.options[0].restrictedNamedExports); /** - * Checks and reports given exported identifier. - * @param {ASTNode} node exported `Identifier` node to check. + * Checks and reports given exported name. + * @param {ASTNode} node exported `Identifier` or string `Literal` node to check. * @returns {void} */ function checkExportedName(node) { - const name = node.name; + const name = astUtils.getModuleExportName(node); if (restrictedNames.has(name)) { context.report({ 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 6813037f13a4ca..3bb45d715ff1bf 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-imports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-imports.js @@ -4,6 +4,12 @@ */ "use strict"; +//------------------------------------------------------------------------------ +// Requirements +//------------------------------------------------------------------------------ + +const astUtils = require("./utils/ast-utils"); + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -63,6 +69,9 @@ const arrayOfStringsOrObjectPatterns = { message: { type: "string", minLength: 1 + }, + caseSensitive: { + type: "boolean" } }, additionalProperties: false, @@ -142,10 +151,18 @@ module.exports = { }, {}); // Handle patterns too, either as strings or groups - const restrictedPatterns = (isPathAndPatternsObject ? options[0].patterns : []) || []; - const restrictedPatternGroups = restrictedPatterns.length > 0 && typeof restrictedPatterns[0] === "string" - ? [{ matcher: ignore().add(restrictedPatterns) }] - : restrictedPatterns.map(({ group, message }) => ({ matcher: ignore().add(group), customMessage: message })); + let restrictedPatterns = (isPathAndPatternsObject ? options[0].patterns : []) || []; + + // standardize to array of objects if we have an array of strings + if (restrictedPatterns.length > 0 && typeof restrictedPatterns[0] === "string") { + restrictedPatterns = [{ group: restrictedPatterns }]; + } + + // relative paths are supported for this rule + const restrictedPatternGroups = restrictedPatterns.map(({ group, message, caseSensitive }) => ({ + matcher: ignore({ allowRelativePaths: true, ignorecase: !caseSensitive }).add(group), + customMessage: message + })); // if no imports are restricted we don't need to check if (Object.keys(restrictedPaths).length === 0 && restrictedPatternGroups.length === 0) { @@ -269,12 +286,12 @@ module.exports = { } else if (specifier.type === "ImportNamespaceSpecifier") { name = "*"; } else if (specifier.imported) { - name = specifier.imported.name; + name = astUtils.getModuleExportName(specifier.imported); } else if (specifier.local) { - name = specifier.local.name; + name = astUtils.getModuleExportName(specifier.local); } - if (name) { + if (typeof name === "string") { if (importNames.has(name)) { importNames.get(name).push(specifierData); } else { 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 26e75ef81a21d3..d92aa7a86bcfee 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-modules.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-modules.js @@ -103,7 +103,8 @@ module.exports = { return {}; } - const ig = ignore().add(restrictedPatterns); + // relative paths are supported for this rule + const ig = ignore({ allowRelativePaths: true }).add(restrictedPatterns); /** 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 616ec2a43cc631..2489f57bcf52cc 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-rename.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-rename.js @@ -132,8 +132,10 @@ module.exports = { return; } - if (node.imported.name === node.local.name && - node.imported.range[0] !== node.local.range[0]) { + if ( + node.imported.range[0] !== node.local.range[0] && + astUtils.getModuleExportName(node.imported) === node.local.name + ) { reportError(node, node.imported, "Import"); } } @@ -148,8 +150,10 @@ module.exports = { return; } - if (node.local.name === node.exported.name && - node.local.range[0] !== node.exported.range[0]) { + if ( + node.local.range[0] !== node.exported.range[0] && + astUtils.getModuleExportName(node.local) === astUtils.getModuleExportName(node.exported) + ) { reportError(node, node.local, "Export"); } diff --git a/tools/node_modules/eslint/lib/rules/quotes.js b/tools/node_modules/eslint/lib/rules/quotes.js index a9960961edf242..41bff3c4ecfd6d 100644 --- a/tools/node_modules/eslint/lib/rules/quotes.js +++ b/tools/node_modules/eslint/lib/rules/quotes.js @@ -223,9 +223,20 @@ module.exports = { // ModuleSpecifier. case "ImportDeclaration": case "ExportNamedDeclaration": - case "ExportAllDeclaration": return parent.source === node; + // ModuleExportName or ModuleSpecifier. + case "ExportAllDeclaration": + return parent.exported === node || parent.source === node; + + // ModuleExportName. + case "ImportSpecifier": + return parent.imported === node; + + // ModuleExportName. + case "ExportSpecifier": + return parent.local === node || parent.exported === node; + // Others don't allow. default: return false; diff --git a/tools/node_modules/eslint/lib/rules/utils/ast-utils.js b/tools/node_modules/eslint/lib/rules/utils/ast-utils.js index 16d7b811571483..ecde099fa02de8 100644 --- a/tools/node_modules/eslint/lib/rules/utils/ast-utils.js +++ b/tools/node_modules/eslint/lib/rules/utils/ast-utils.js @@ -769,6 +769,25 @@ function getSwitchCaseColonToken(node, sourceCode) { return sourceCode.getFirstToken(node, 1); } +/** + * Gets ESM module export name represented by the given node. + * @param {ASTNode} node `Identifier` or string `Literal` node in a position + * that represents a module export name: + * - `ImportSpecifier#imported` + * - `ExportSpecifier#local` (if it is a re-export from another module) + * - `ExportSpecifier#exported` + * - `ExportAllDeclaration#exported` + * @returns {string} The module export name. + */ +function getModuleExportName(node) { + if (node.type === "Identifier") { + return node.name; + } + + // string literal + return node.value; +} + //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ @@ -1898,5 +1917,6 @@ module.exports = { equalLiteralValue, isSameReference, isLogicalAssignmentOperator, - getSwitchCaseColonToken + getSwitchCaseColonToken, + getModuleExportName }; diff --git a/tools/node_modules/eslint/messages/no-config-found.js b/tools/node_modules/eslint/messages/no-config-found.js index 1042143f9fd771..c2f7ac73b40412 100644 --- a/tools/node_modules/eslint/messages/no-config-found.js +++ b/tools/node_modules/eslint/messages/no-config-found.js @@ -6,7 +6,7 @@ module.exports = function(it) { return ` ESLint couldn't find a configuration file. To set up a configuration file for this project, please run: - eslint --init + npm init @eslint/config ESLint looked for configuration files in ${directoryPath} and its ancestors. If it found none, it then looked in your home directory. diff --git a/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json b/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json index a3c5e3dfeaa8b4..805e79c111fbbb 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.16.4", + "version": "7.16.8", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "", @@ -30,7 +30,7 @@ ], "devDependencies": { "@mdn/browser-compat-data": "^4.0.10", - "core-js-compat": "^3.19.1", + "core-js-compat": "^3.20.2", "electron-to-chromium": "^1.3.893" }, "engines": { 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 9a5f5d126f013e..be9285cc6cabc1 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 (raw != null) { + if (!this.format.minified && raw != null) { this.token(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 93a4385eb4b506..010d86d0a1d704 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 @@ -80,9 +80,14 @@ function TSTypeAnnotation(node) { this.print(node.typeAnnotation, node); } -function TSTypeParameterInstantiation(node) { +function TSTypeParameterInstantiation(node, parent) { this.token("<"); this.printList(node.params, node, {}); + + if (parent.type === "ArrowFunctionExpression" && node.params.length === 1) { + this.token(","); + } + this.token(">"); } @@ -306,9 +311,9 @@ function TSConstructorType(node) { function tsPrintFunctionOrConstructorType(node) { const { - typeParameters, - parameters + typeParameters } = node; + const parameters = node.parameters; this.print(typeParameters, node); this.token("("); @@ -318,7 +323,8 @@ function tsPrintFunctionOrConstructorType(node) { this.space(); this.token("=>"); this.space(); - this.print(node.typeAnnotation.typeAnnotation, node); + const returnType = node.typeAnnotation; + this.print(returnType.typeAnnotation, node); } function TSTypeReference(node) { @@ -761,16 +767,17 @@ function TSNamespaceExportDeclaration(node) { function tsPrintSignatureDeclarationBase(node) { const { - typeParameters, - parameters + typeParameters } = node; + const parameters = node.parameters; this.print(typeParameters, node); this.token("("); this._parameters(parameters, node); this.token(")"); - this.print(node.typeAnnotation, node); + const returnType = node.typeAnnotation; + this.print(returnType, node); } function tsPrintClassMemberModifiers(node, isField) { 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 9c89414c9a6705..307cdb5eb72612 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.16.7", + "version": "7.16.8", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,13 +19,13 @@ "lib" ], "dependencies": { - "@babel/types": "^7.16.7", + "@babel/types": "^7.16.8", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, "devDependencies": { - "@babel/helper-fixtures": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/helper-fixtures": "^7.16.8", + "@babel/parser": "^7.16.8", "@types/jsesc": "^2.5.0", "@types/source-map": "^0.5.0", "charcodes": "^0.2.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js index 58200db0e93b60..7cfd5b881358e8 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 @@ -8084,14 +8084,16 @@ var typescript = (superClass => class extends superClass { tsFillSignature(returnToken, signature) { const returnTokenRequired = returnToken === 19; + const paramsKey = "parameters"; + const returnTypeKey = "typeAnnotation"; signature.typeParameters = this.tsTryParseTypeParameters(); this.expect(10); - signature.parameters = this.tsParseBindingListForSignature(); + signature[paramsKey] = this.tsParseBindingListForSignature(); if (returnTokenRequired) { - signature.typeAnnotation = this.tsParseTypeOrTypePredicateAnnotation(returnToken); + signature[returnTypeKey] = this.tsParseTypeOrTypePredicateAnnotation(returnToken); } else if (this.match(returnToken)) { - signature.typeAnnotation = this.tsParseTypeOrTypePredicateAnnotation(returnToken); + signature[returnTypeKey] = this.tsParseTypeOrTypePredicateAnnotation(returnToken); } } @@ -8162,20 +8164,22 @@ var typescript = (superClass => class extends superClass { this.tsFillSignature(14, method); this.tsParseTypeMemberSemicolon(); + const paramsKey = "parameters"; + const returnTypeKey = "typeAnnotation"; if (method.kind === "get") { - if (method.parameters.length > 0) { + if (method[paramsKey].length > 0) { this.raise(this.state.pos, ErrorMessages.BadGetterArity); - if (this.isThisParam(method.parameters[0])) { + if (this.isThisParam(method[paramsKey][0])) { this.raise(this.state.pos, TSErrors.AccesorCannotDeclareThisParameter); } } } else if (method.kind === "set") { - if (method.parameters.length !== 1) { + if (method[paramsKey].length !== 1) { this.raise(this.state.pos, ErrorMessages.BadSetterArity); } else { - const firstParameter = method.parameters[0]; + const firstParameter = method[paramsKey][0]; if (this.isThisParam(firstParameter)) { this.raise(this.state.pos, TSErrors.AccesorCannotDeclareThisParameter); @@ -8190,8 +8194,8 @@ var typescript = (superClass => class extends superClass { } } - if (method.typeAnnotation) { - this.raise(method.typeAnnotation.start, TSErrors.SetAccesorCannotHaveReturnType); + if (method[returnTypeKey]) { + this.raise(method[returnTypeKey].start, TSErrors.SetAccesorCannotHaveReturnType); } } else { method.kind = "method"; 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 07aa6118ec5794..9e55c3c844659a 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.16.7", + "version": "7.16.8", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", @@ -34,7 +34,7 @@ }, "devDependencies": { "@babel/code-frame": "^7.16.7", - "@babel/helper-fixtures": "^7.16.7", + "@babel/helper-fixtures": "^7.16.8", "@babel/helper-validator-identifier": "^7.16.7", "charcodes": "^0.2.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js index 701023b3a3ba7c..44406786edf6cb 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/index.js @@ -23,8 +23,6 @@ Object.defineProperty(exports, "Scope", { }); exports.visitors = exports.default = void 0; -var _context = require("./context"); - var visitors = require("./visitors"); exports.visitors = visitors; @@ -33,6 +31,8 @@ var _t = require("@babel/types"); var cache = require("./cache"); +var _traverseNode = require("./traverse-node"); + var _path = require("./path"); var _scope = require("./scope"); @@ -59,7 +59,7 @@ function traverse(parent, opts = {}, scope, state, parentPath) { } visitors.explode(opts); - traverse.node(parent, opts, scope, state, parentPath); + (0, _traverseNode.traverseNode)(parent, opts, scope, state, parentPath); } var _default = traverse; @@ -72,15 +72,8 @@ traverse.cheap = function (node, enter) { return traverseFast(node, enter); }; -traverse.node = function (node, opts, scope, state, parentPath, skipKeys) { - const keys = VISITOR_KEYS[node.type]; - if (!keys) return; - const context = new _context.default(scope, opts, state, parentPath); - - for (const key of keys) { - if (skipKeys && skipKeys[key]) continue; - if (context.visit(node, key)) return; - } +traverse.node = function (node, opts, scope, state, path, skipKeys) { + (0, _traverseNode.traverseNode)(node, opts, scope, state, path, skipKeys); }; traverse.clearNode = function (node, opts) { 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 923caa4f6d578d..b11f08dc6046ea 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 @@ -24,9 +24,9 @@ exports.skipKey = skipKey; exports.stop = stop; exports.visit = visit; -var _index = require("../index"); +var _traverseNode = require("../traverse-node"); -var _index2 = require("./index"); +var _index = require("./index"); function call(key) { const opts = this.opts; @@ -104,9 +104,7 @@ function visit() { restoreContext(this, currentContext); this.debug("Recursing into..."); - - _index.default.node(this.node, this.opts, this.scope, this.state, this, this.skipKeys); - + this.shouldStop = (0, _traverseNode.traverseNode)(this.node, this.opts, this.scope, this.state, this, this.skipKeys); restoreContext(this, currentContext); this.call("exit"); return this.shouldStop; @@ -125,7 +123,7 @@ function skipKey(key) { } function stop() { - this._traverseFlags |= _index2.SHOULD_SKIP | _index2.SHOULD_STOP; + this._traverseFlags |= _index.SHOULD_SKIP | _index.SHOULD_STOP; } function setScope() { 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 d950c1f225c72c..5ec99988f9dfb6 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 @@ -467,7 +467,7 @@ class Scope { checkBlockScopedCollisions(local, kind, name, id) { if (kind === "param") return; if (local.kind === "local") return; - const duplicate = kind === "let" || local.kind === "let" || local.kind === "const" || local.kind === "module" || local.kind === "param" && (kind === "let" || kind === "const"); + const duplicate = kind === "let" || local.kind === "let" || local.kind === "const" || local.kind === "module" || local.kind === "param" && kind === "const"; if (duplicate) { throw this.hub.buildError(id, `Duplicate declaration "${name}"`, TypeError); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/traverse-node.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/traverse-node.js new file mode 100644 index 00000000000000..82437b461feb42 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/traverse-node.js @@ -0,0 +1,30 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.traverseNode = traverseNode; + +var _context = require("./context"); + +var _t = require("@babel/types"); + +const { + VISITOR_KEYS +} = _t; + +function traverseNode(node, opts, scope, state, path, skipKeys) { + const keys = VISITOR_KEYS[node.type]; + if (!keys) return false; + const context = new _context.default(scope, opts, state, path); + + for (const key of keys) { + if (skipKeys && skipKeys[key]) continue; + + if (context.visit(node, key)) { + return true; + } + } + + return false; +} \ No newline at end of file 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 ceb21a537b083b..7d6f61dec367a4 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.16.7", + "version": "7.16.8", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -17,13 +17,13 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.16.7", - "@babel/generator": "^7.16.7", + "@babel/generator": "^7.16.8", "@babel/helper-environment-visitor": "^7.16.7", "@babel/helper-function-name": "^7.16.7", "@babel/helper-hoist-variables": "^7.16.7", "@babel/helper-split-export-declaration": "^7.16.7", - "@babel/parser": "^7.16.7", - "@babel/types": "^7.16.7", + "@babel/parser": "^7.16.8", + "@babel/types": "^7.16.8", "debug": "^4.1.0", "globals": "^11.1.0" }, 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 cf6faf3085b0d0..3f4382a695c372 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 @@ -62,8 +62,8 @@ defineType("TSQualifiedName", { }); const signatureDeclarationCommon = { typeParameters: (0, _utils.validateOptionalType)("TSTypeParameterDeclaration"), - parameters: (0, _utils.validateArrayOfType)(["Identifier", "RestElement"]), - typeAnnotation: (0, _utils.validateOptionalType)("TSTypeAnnotation") + ["parameters"]: (0, _utils.validateArrayOfType)(["Identifier", "RestElement"]), + ["typeAnnotation"]: (0, _utils.validateOptionalType)("TSTypeAnnotation") }; const callConstructSignatureDeclaration = { aliases: ["TSTypeElement"], 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 4d75987f9c3d44..021abc837b3372 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.16.7", + "version": "7.16.8", "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", @@ -28,8 +28,8 @@ "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.16.7", - "@babel/parser": "^7.16.7", + "@babel/generator": "^7.16.8", + "@babel/parser": "^7.16.8", "chalk": "^4.1.0", "glob": "^7.1.7" }, diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs index ca6427e863a5ba..4f59bf1e2f464a 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs @@ -479,6 +479,13 @@ const findJSDocComment = (astNode, sourceCode, settings) => { includeComments: true }); + if (tokenBefore && tokenBefore.type === 'Punctuator' && tokenBefore.value === '(') { + [tokenBefore] = sourceCode.getTokensBefore(currentNode, { + count: 2, + includeComments: true + }); + } + if (!tokenBefore || !isCommentToken(tokenBefore)) { return null; } @@ -531,3 +538,9 @@ exports.hasSeeWithLink = hasSeeWithLink; exports.jsdocVisitorKeys = jsdocVisitorKeys; exports.parseComment = parseComment; exports.toCamelCase = toCamelCase; +Object.keys(jsdocTypePrattParser).forEach(function (k) { + if (k !== 'default' && !exports.hasOwnProperty(k)) Object.defineProperty(exports, k, { + enumerable: true, + get: function () { return jsdocTypePrattParser[k]; } + }); +}); diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json index 59db3d4da1e8f4..b70e636fe6ba85 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json @@ -1,6 +1,6 @@ { "name": "@es-joy/jsdoccomment", - "version": "0.14.1", + "version": "0.17.0", "author": "Brett Zamir ", "contributors": [], "description": "Maintained replacement for ESLint's deprecated SourceCode#getJSDocComment along with other jsdoc utilities", @@ -39,34 +39,34 @@ "dependencies": { "comment-parser": "1.3.0", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "2.0.2" + "jsdoc-type-pratt-parser": "~2.2.1" }, "devDependencies": { - "@babel/core": "^7.16.5", + "@babel/core": "^7.16.7", "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/preset-env": "^7.16.5", + "@babel/preset-env": "^7.16.7", "@brettz9/eslint-plugin": "^1.0.4", "@rollup/plugin-babel": "^5.3.0", - "c8": "^7.10.0", + "c8": "^7.11.0", "chai": "^4.3.4", - "eslint": "^8.5.0", - "eslint-config-ash-nazg": "32.2.0", + "eslint": "^8.6.0", + "eslint-config-ash-nazg": "32.3.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-array-func": "^3.1.7", - "eslint-plugin-compat": "^4.0.0", + "eslint-plugin-compat": "^4.0.1", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-html": "^6.2.0", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jsdoc": "^37.4.1", + "eslint-plugin-import": "^2.25.4", + "eslint-plugin-jsdoc": "^37.6.0", "eslint-plugin-markdown": "^2.2.1", "eslint-plugin-no-unsanitized": "^4.0.1", "eslint-plugin-no-use-extend-native": "^0.5.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.0.0", "eslint-plugin-sonarjs": "^0.11.0", - "eslint-plugin-unicorn": "^39.0.0", + "eslint-plugin-unicorn": "^40.0.0", "mocha": "^9.1.3", - "rollup": "^2.62.0" + "rollup": "^2.63.0" }, "scripts": { "rollup": "rollup -c", diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js index 6fc1bed9d58c9b..d62b6f7ff42f60 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js @@ -1,5 +1,7 @@ export {visitorKeys as jsdocTypeVisitorKeys} from 'jsdoc-type-pratt-parser'; +export * from 'jsdoc-type-pratt-parser'; + export {default as commentHandler} from './commentHandler.js'; export {default as toCamelCase} from './toCamelCase.js'; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js index 19ae63be6bc327..a5beea2469ee76 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js @@ -205,6 +205,15 @@ const findJSDocComment = (astNode, sourceCode, settings) => { tokenBefore = sourceCode.getTokenBefore( currentNode, {includeComments: true} ); + if ( + tokenBefore && tokenBefore.type === 'Punctuator' && + tokenBefore.value === '(' + ) { + [tokenBefore] = sourceCode.getTokensBefore(currentNode, { + count: 2, + includeComments: true + }); + } if (!tokenBefore || !isCommentToken(tokenBefore)) { return null; } diff --git a/tools/node_modules/eslint/node_modules/progress/LICENSE b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/LICENSE-MIT old mode 100644 new mode 100755 similarity index 51% rename from tools/node_modules/eslint/node_modules/progress/LICENSE rename to tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/LICENSE-MIT index 4608b3947f0a70..825533e337fa1d --- a/tools/node_modules/eslint/node_modules/progress/LICENSE +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/LICENSE-MIT @@ -1,10 +1,9 @@ -(The MIT License) - -Copyright (c) 2017 TJ Holowaychuk +Copyright (c) 2013 Kael Zhang , contributors +http://kael.me/ 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 +"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 @@ -13,10 +12,10 @@ 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, +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. +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. \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/index.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/index.js new file mode 100755 index 00000000000000..62c5cf71ec2809 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/index.js @@ -0,0 +1,463 @@ +// A simple implementation of make-array +function make_array (subject) { + return Array.isArray(subject) + ? subject + : [subject] +} + +const REGEX_BLANK_LINE = /^\s+$/ +const REGEX_LEADING_EXCAPED_EXCLAMATION = /^\\!/ +const REGEX_LEADING_EXCAPED_HASH = /^\\#/ +const SLASH = '/' +const KEY_IGNORE = typeof Symbol !== 'undefined' + ? Symbol.for('node-ignore') + /* istanbul ignore next */ + : 'node-ignore' + +const define = (object, key, value) => + Object.defineProperty(object, key, {value}) + +const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g + +// Sanitize the range of a regular expression +// The cases are complicated, see test cases for details +const sanitizeRange = range => range.replace( + REGEX_REGEXP_RANGE, + (match, from, to) => from.charCodeAt(0) <= to.charCodeAt(0) + ? match + // Invalid range (out of order) which is ok for gitignore rules but + // fatal for JavaScript regular expression, so eliminate it. + : '' +) + +// > If the pattern ends with a slash, +// > it is removed for the purpose of the following description, +// > but it would only find a match with a directory. +// > In other words, foo/ will match a directory foo and paths underneath it, +// > but will not match a regular file or a symbolic link foo +// > (this is consistent with the way how pathspec works in general in Git). +// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`' +// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call +// you could use option `mark: true` with `glob` + +// '`foo/`' should not continue with the '`..`' +const DEFAULT_REPLACER_PREFIX = [ + + // > Trailing spaces are ignored unless they are quoted with backslash ("\") + [ + // (a\ ) -> (a ) + // (a ) -> (a) + // (a \ ) -> (a ) + /\\?\s+$/, + match => match.indexOf('\\') === 0 + ? ' ' + : '' + ], + + // replace (\ ) with ' ' + [ + /\\\s/g, + () => ' ' + ], + + // Escape metacharacters + // which is written down by users but means special for regular expressions. + + // > There are 12 characters with special meanings: + // > - the backslash \, + // > - the caret ^, + // > - the dollar sign $, + // > - the period or dot ., + // > - the vertical bar or pipe symbol |, + // > - the question mark ?, + // > - the asterisk or star *, + // > - the plus sign +, + // > - the opening parenthesis (, + // > - the closing parenthesis ), + // > - and the opening square bracket [, + // > - the opening curly brace {, + // > These special characters are often called "metacharacters". + [ + /[\\^$.|*+(){]/g, + match => `\\${match}` + ], + + [ + // > [abc] matches any character inside the brackets + // > (in this case a, b, or c); + /\[([^\]/]*)($|\])/g, + (match, p1, p2) => p2 === ']' + ? `[${sanitizeRange(p1)}]` + : `\\${match}` + ], + + [ + // > a question mark (?) matches a single character + /(?!\\)\?/g, + () => '[^/]' + ], + + // leading slash + [ + + // > A leading slash matches the beginning of the pathname. + // > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". + // A leading slash matches the beginning of the pathname + /^\//, + () => '^' + ], + + // replace special metacharacter slash after the leading slash + [ + /\//g, + () => '\\/' + ], + + [ + // > A leading "**" followed by a slash means match in all directories. + // > For example, "**/foo" matches file or directory "foo" anywhere, + // > the same as pattern "foo". + // > "**/foo/bar" matches file or directory "bar" anywhere that is directly + // > under directory "foo". + // Notice that the '*'s have been replaced as '\\*' + /^\^*\\\*\\\*\\\//, + + // '**/foo' <-> 'foo' + () => '^(?:.*\\/)?' + ] +] + +const DEFAULT_REPLACER_SUFFIX = [ + // starting + [ + // there will be no leading '/' + // (which has been replaced by section "leading slash") + // If starts with '**', adding a '^' to the regular expression also works + /^(?=[^^])/, + function startingReplacer () { + return !/\/(?!$)/.test(this) + // > If the pattern does not contain a slash /, + // > Git treats it as a shell glob pattern + // Actually, if there is only a trailing slash, + // git also treats it as a shell glob pattern + ? '(?:^|\\/)' + + // > Otherwise, Git treats the pattern as a shell glob suitable for + // > consumption by fnmatch(3) + : '^' + } + ], + + // two globstars + [ + // Use lookahead assertions so that we could match more than one `'/**'` + /\\\/\\\*\\\*(?=\\\/|$)/g, + + // Zero, one or several directories + // should not use '*', or it will be replaced by the next replacer + + // Check if it is not the last `'/**'` + (match, index, str) => index + 6 < str.length + + // case: /**/ + // > A slash followed by two consecutive asterisks then a slash matches + // > zero or more directories. + // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on. + // '/**/' + ? '(?:\\/[^\\/]+)*' + + // case: /** + // > A trailing `"/**"` matches everything inside. + + // #21: everything inside but it should not include the current folder + : '\\/.+' + ], + + // intermediate wildcards + [ + // Never replace escaped '*' + // ignore rule '\*' will match the path '*' + + // 'abc.*/' -> go + // 'abc.*' -> skip this rule + /(^|[^\\]+)\\\*(?=.+)/g, + + // '*.js' matches '.js' + // '*.js' doesn't match 'abc' + (match, p1) => `${p1}[^\\/]*` + ], + + // trailing wildcard + [ + /(\^|\\\/)?\\\*$/, + (match, p1) => { + const prefix = p1 + // '\^': + // '/*' does not match '' + // '/*' does not match everything + + // '\\\/': + // 'abc/*' does not match 'abc/' + ? `${p1}[^/]+` + + // 'a*' matches 'a' + // 'a*' matches 'aa' + : '[^/]*' + + return `${prefix}(?=$|\\/$)` + } + ], + + [ + // unescape + /\\\\\\/g, + () => '\\' + ] +] + +const POSITIVE_REPLACERS = [ + ...DEFAULT_REPLACER_PREFIX, + + // 'f' + // matches + // - /f(end) + // - /f/ + // - (start)f(end) + // - (start)f/ + // doesn't match + // - oof + // - foo + // pseudo: + // -> (^|/)f(/|$) + + // ending + [ + // 'js' will not match 'js.' + // 'ab' will not match 'abc' + /(?:[^*/])$/, + + // 'js*' will not match 'a.js' + // 'js/' will not match 'a.js' + // 'js' will match 'a.js' and 'a.js/' + match => `${match}(?=$|\\/)` + ], + + ...DEFAULT_REPLACER_SUFFIX +] + +const NEGATIVE_REPLACERS = [ + ...DEFAULT_REPLACER_PREFIX, + + // #24, #38 + // The MISSING rule of [gitignore docs](https://git-scm.com/docs/gitignore) + // A negative pattern without a trailing wildcard should not + // re-include the things inside that directory. + + // eg: + // ['node_modules/*', '!node_modules'] + // should ignore `node_modules/a.js` + [ + /(?:[^*])$/, + match => `${match}(?=$|\\/$)` + ], + + ...DEFAULT_REPLACER_SUFFIX +] + +// A simple cache, because an ignore rule only has only one certain meaning +const cache = Object.create(null) + +// @param {pattern} +const make_regex = (pattern, negative, ignorecase) => { + const r = cache[pattern] + if (r) { + return r + } + + const replacers = negative + ? NEGATIVE_REPLACERS + : POSITIVE_REPLACERS + + const source = replacers.reduce( + (prev, current) => prev.replace(current[0], current[1].bind(pattern)), + pattern + ) + + return cache[pattern] = ignorecase + ? new RegExp(source, 'i') + : new RegExp(source) +} + +// > A blank line matches no files, so it can serve as a separator for readability. +const checkPattern = pattern => pattern + && typeof pattern === 'string' + && !REGEX_BLANK_LINE.test(pattern) + + // > A line starting with # serves as a comment. + && pattern.indexOf('#') !== 0 + +const createRule = (pattern, ignorecase) => { + const origin = pattern + let negative = false + + // > An optional prefix "!" which negates the pattern; + if (pattern.indexOf('!') === 0) { + negative = true + pattern = pattern.substr(1) + } + + pattern = pattern + // > Put a backslash ("\") in front of the first "!" for patterns that + // > begin with a literal "!", for example, `"\!important!.txt"`. + .replace(REGEX_LEADING_EXCAPED_EXCLAMATION, '!') + // > Put a backslash ("\") in front of the first hash for patterns that + // > begin with a hash. + .replace(REGEX_LEADING_EXCAPED_HASH, '#') + + const regex = make_regex(pattern, negative, ignorecase) + + return { + origin, + pattern, + negative, + regex + } +} + +class IgnoreBase { + constructor ({ + ignorecase = true + } = {}) { + this._rules = [] + this._ignorecase = ignorecase + define(this, KEY_IGNORE, true) + this._initCache() + } + + _initCache () { + this._cache = Object.create(null) + } + + // @param {Array.|string|Ignore} pattern + add (pattern) { + this._added = false + + if (typeof pattern === 'string') { + pattern = pattern.split(/\r?\n/g) + } + + make_array(pattern).forEach(this._addPattern, this) + + // Some rules have just added to the ignore, + // making the behavior changed. + if (this._added) { + this._initCache() + } + + return this + } + + // legacy + addPattern (pattern) { + return this.add(pattern) + } + + _addPattern (pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules) + this._added = true + return + } + + if (checkPattern(pattern)) { + const rule = createRule(pattern, this._ignorecase) + this._added = true + this._rules.push(rule) + } + } + + filter (paths) { + return make_array(paths).filter(path => this._filter(path)) + } + + createFilter () { + return path => this._filter(path) + } + + ignores (path) { + return !this._filter(path) + } + + // @returns `Boolean` true if the `path` is NOT ignored + _filter (path, slices) { + if (!path) { + return false + } + + if (path in this._cache) { + return this._cache[path] + } + + if (!slices) { + // path/to/a.js + // ['path', 'to', 'a.js'] + slices = path.split(SLASH) + } + + slices.pop() + + return this._cache[path] = slices.length + // > It is not possible to re-include a file if a parent directory of + // > that file is excluded. + // If the path contains a parent directory, check the parent first + ? this._filter(slices.join(SLASH) + SLASH, slices) + && this._test(path) + + // Or only test the path + : this._test(path) + } + + // @returns {Boolean} true if a file is NOT ignored + _test (path) { + // Explicitly define variable type by setting matched to `0` + let matched = 0 + + this._rules.forEach(rule => { + // if matched = true, then we only test negative rules + // if matched = false, then we test non-negative rules + if (!(matched ^ rule.negative)) { + matched = rule.negative ^ rule.regex.test(path) + } + }) + + return !matched + } +} + +// Windows +// -------------------------------------------------------------- +/* istanbul ignore if */ +if ( + // Detect `process` so that it can run in browsers. + typeof process !== 'undefined' + && ( + process.env && process.env.IGNORE_TEST_WIN32 + || process.platform === 'win32' + ) +) { + const filter = IgnoreBase.prototype._filter + + /* eslint no-control-regex: "off" */ + const make_posix = str => /^\\\\\?\\/.test(str) + || /[^\x00-\x80]+/.test(str) + ? str + : str.replace(/\\/g, '/') + + IgnoreBase.prototype._filter = function filterWin32 (path, slices) { + path = make_posix(path) + return filter.call(this, path, slices) + } +} + +module.exports = options => new IgnoreBase(options) diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/legacy.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/legacy.js new file mode 100644 index 00000000000000..14f377d77fa5a3 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/legacy.js @@ -0,0 +1,466 @@ +'use strict'; + +var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + +function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + +// A simple implementation of make-array +function make_array(subject) { + return Array.isArray(subject) ? subject : [subject]; +} + +var REGEX_BLANK_LINE = /^\s+$/; +var REGEX_LEADING_EXCAPED_EXCLAMATION = /^\\!/; +var REGEX_LEADING_EXCAPED_HASH = /^\\#/; +var SLASH = '/'; +var KEY_IGNORE = typeof Symbol !== 'undefined' ? Symbol.for('node-ignore') +/* istanbul ignore next */ +: 'node-ignore'; + +var define = function define(object, key, value) { + return Object.defineProperty(object, key, { value }); +}; + +var REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g; + +// Sanitize the range of a regular expression +// The cases are complicated, see test cases for details +var sanitizeRange = function sanitizeRange(range) { + return range.replace(REGEX_REGEXP_RANGE, function (match, from, to) { + return from.charCodeAt(0) <= to.charCodeAt(0) ? match + // Invalid range (out of order) which is ok for gitignore rules but + // fatal for JavaScript regular expression, so eliminate it. + : ''; + }); +}; + +// > If the pattern ends with a slash, +// > it is removed for the purpose of the following description, +// > but it would only find a match with a directory. +// > In other words, foo/ will match a directory foo and paths underneath it, +// > but will not match a regular file or a symbolic link foo +// > (this is consistent with the way how pathspec works in general in Git). +// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`' +// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call +// you could use option `mark: true` with `glob` + +// '`foo/`' should not continue with the '`..`' +var DEFAULT_REPLACER_PREFIX = [ + +// > Trailing spaces are ignored unless they are quoted with backslash ("\") +[ +// (a\ ) -> (a ) +// (a ) -> (a) +// (a \ ) -> (a ) +/\\?\s+$/, function (match) { + return match.indexOf('\\') === 0 ? ' ' : ''; +}], + +// replace (\ ) with ' ' +[/\\\s/g, function () { + return ' '; +}], + +// Escape metacharacters +// which is written down by users but means special for regular expressions. + +// > There are 12 characters with special meanings: +// > - the backslash \, +// > - the caret ^, +// > - the dollar sign $, +// > - the period or dot ., +// > - the vertical bar or pipe symbol |, +// > - the question mark ?, +// > - the asterisk or star *, +// > - the plus sign +, +// > - the opening parenthesis (, +// > - the closing parenthesis ), +// > - and the opening square bracket [, +// > - the opening curly brace {, +// > These special characters are often called "metacharacters". +[/[\\^$.|*+(){]/g, function (match) { + return `\\${match}`; +}], [ +// > [abc] matches any character inside the brackets +// > (in this case a, b, or c); +/\[([^\]/]*)($|\])/g, function (match, p1, p2) { + return p2 === ']' ? `[${sanitizeRange(p1)}]` : `\\${match}`; +}], [ +// > a question mark (?) matches a single character +/(?!\\)\?/g, function () { + return '[^/]'; +}], + +// leading slash +[ + +// > A leading slash matches the beginning of the pathname. +// > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". +// A leading slash matches the beginning of the pathname +/^\//, function () { + return '^'; +}], + +// replace special metacharacter slash after the leading slash +[/\//g, function () { + return '\\/'; +}], [ +// > A leading "**" followed by a slash means match in all directories. +// > For example, "**/foo" matches file or directory "foo" anywhere, +// > the same as pattern "foo". +// > "**/foo/bar" matches file or directory "bar" anywhere that is directly +// > under directory "foo". +// Notice that the '*'s have been replaced as '\\*' +/^\^*\\\*\\\*\\\//, + +// '**/foo' <-> 'foo' +function () { + return '^(?:.*\\/)?'; +}]]; + +var DEFAULT_REPLACER_SUFFIX = [ +// starting +[ +// there will be no leading '/' +// (which has been replaced by section "leading slash") +// If starts with '**', adding a '^' to the regular expression also works +/^(?=[^^])/, function startingReplacer() { + return !/\/(?!$)/.test(this) + // > If the pattern does not contain a slash /, + // > Git treats it as a shell glob pattern + // Actually, if there is only a trailing slash, + // git also treats it as a shell glob pattern + ? '(?:^|\\/)' + + // > Otherwise, Git treats the pattern as a shell glob suitable for + // > consumption by fnmatch(3) + : '^'; +}], + +// two globstars +[ +// Use lookahead assertions so that we could match more than one `'/**'` +/\\\/\\\*\\\*(?=\\\/|$)/g, + +// Zero, one or several directories +// should not use '*', or it will be replaced by the next replacer + +// Check if it is not the last `'/**'` +function (match, index, str) { + return index + 6 < str.length + + // case: /**/ + // > A slash followed by two consecutive asterisks then a slash matches + // > zero or more directories. + // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on. + // '/**/' + ? '(?:\\/[^\\/]+)*' + + // case: /** + // > A trailing `"/**"` matches everything inside. + + // #21: everything inside but it should not include the current folder + : '\\/.+'; +}], + +// intermediate wildcards +[ +// Never replace escaped '*' +// ignore rule '\*' will match the path '*' + +// 'abc.*/' -> go +// 'abc.*' -> skip this rule +/(^|[^\\]+)\\\*(?=.+)/g, + +// '*.js' matches '.js' +// '*.js' doesn't match 'abc' +function (match, p1) { + return `${p1}[^\\/]*`; +}], + +// trailing wildcard +[/(\^|\\\/)?\\\*$/, function (match, p1) { + var prefix = p1 + // '\^': + // '/*' does not match '' + // '/*' does not match everything + + // '\\\/': + // 'abc/*' does not match 'abc/' + ? `${p1}[^/]+` + + // 'a*' matches 'a' + // 'a*' matches 'aa' + : '[^/]*'; + + return `${prefix}(?=$|\\/$)`; +}], [ +// unescape +/\\\\\\/g, function () { + return '\\'; +}]]; + +var POSITIVE_REPLACERS = [].concat(DEFAULT_REPLACER_PREFIX, [ + +// 'f' +// matches +// - /f(end) +// - /f/ +// - (start)f(end) +// - (start)f/ +// doesn't match +// - oof +// - foo +// pseudo: +// -> (^|/)f(/|$) + +// ending +[ +// 'js' will not match 'js.' +// 'ab' will not match 'abc' +/(?:[^*/])$/, + +// 'js*' will not match 'a.js' +// 'js/' will not match 'a.js' +// 'js' will match 'a.js' and 'a.js/' +function (match) { + return `${match}(?=$|\\/)`; +}]], DEFAULT_REPLACER_SUFFIX); + +var NEGATIVE_REPLACERS = [].concat(DEFAULT_REPLACER_PREFIX, [ + +// #24, #38 +// The MISSING rule of [gitignore docs](https://git-scm.com/docs/gitignore) +// A negative pattern without a trailing wildcard should not +// re-include the things inside that directory. + +// eg: +// ['node_modules/*', '!node_modules'] +// should ignore `node_modules/a.js` +[/(?:[^*])$/, function (match) { + return `${match}(?=$|\\/$)`; +}]], DEFAULT_REPLACER_SUFFIX); + +// A simple cache, because an ignore rule only has only one certain meaning +var cache = Object.create(null); + +// @param {pattern} +var make_regex = function make_regex(pattern, negative, ignorecase) { + var r = cache[pattern]; + if (r) { + return r; + } + + var replacers = negative ? NEGATIVE_REPLACERS : POSITIVE_REPLACERS; + + var source = replacers.reduce(function (prev, current) { + return prev.replace(current[0], current[1].bind(pattern)); + }, pattern); + + return cache[pattern] = ignorecase ? new RegExp(source, 'i') : new RegExp(source); +}; + +// > A blank line matches no files, so it can serve as a separator for readability. +var checkPattern = function checkPattern(pattern) { + return pattern && typeof pattern === 'string' && !REGEX_BLANK_LINE.test(pattern) + + // > A line starting with # serves as a comment. + && pattern.indexOf('#') !== 0; +}; + +var createRule = function createRule(pattern, ignorecase) { + var origin = pattern; + var negative = false; + + // > An optional prefix "!" which negates the pattern; + if (pattern.indexOf('!') === 0) { + negative = true; + pattern = pattern.substr(1); + } + + pattern = pattern + // > Put a backslash ("\") in front of the first "!" for patterns that + // > begin with a literal "!", for example, `"\!important!.txt"`. + .replace(REGEX_LEADING_EXCAPED_EXCLAMATION, '!') + // > Put a backslash ("\") in front of the first hash for patterns that + // > begin with a hash. + .replace(REGEX_LEADING_EXCAPED_HASH, '#'); + + var regex = make_regex(pattern, negative, ignorecase); + + return { + origin, + pattern, + negative, + regex + }; +}; + +var IgnoreBase = function () { + function IgnoreBase() { + var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, + _ref$ignorecase = _ref.ignorecase, + ignorecase = _ref$ignorecase === undefined ? true : _ref$ignorecase; + + _classCallCheck(this, IgnoreBase); + + this._rules = []; + this._ignorecase = ignorecase; + define(this, KEY_IGNORE, true); + this._initCache(); + } + + _createClass(IgnoreBase, [{ + key: '_initCache', + value: function _initCache() { + this._cache = Object.create(null); + } + + // @param {Array.|string|Ignore} pattern + + }, { + key: 'add', + value: function add(pattern) { + this._added = false; + + if (typeof pattern === 'string') { + pattern = pattern.split(/\r?\n/g); + } + + make_array(pattern).forEach(this._addPattern, this); + + // Some rules have just added to the ignore, + // making the behavior changed. + if (this._added) { + this._initCache(); + } + + return this; + } + + // legacy + + }, { + key: 'addPattern', + value: function addPattern(pattern) { + return this.add(pattern); + } + }, { + key: '_addPattern', + value: function _addPattern(pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules); + this._added = true; + return; + } + + if (checkPattern(pattern)) { + var rule = createRule(pattern, this._ignorecase); + this._added = true; + this._rules.push(rule); + } + } + }, { + key: 'filter', + value: function filter(paths) { + var _this = this; + + return make_array(paths).filter(function (path) { + return _this._filter(path); + }); + } + }, { + key: 'createFilter', + value: function createFilter() { + var _this2 = this; + + return function (path) { + return _this2._filter(path); + }; + } + }, { + key: 'ignores', + value: function ignores(path) { + return !this._filter(path); + } + + // @returns `Boolean` true if the `path` is NOT ignored + + }, { + key: '_filter', + value: function _filter(path, slices) { + if (!path) { + return false; + } + + if (path in this._cache) { + return this._cache[path]; + } + + if (!slices) { + // path/to/a.js + // ['path', 'to', 'a.js'] + slices = path.split(SLASH); + } + + slices.pop(); + + return this._cache[path] = slices.length + // > It is not possible to re-include a file if a parent directory of + // > that file is excluded. + // If the path contains a parent directory, check the parent first + ? this._filter(slices.join(SLASH) + SLASH, slices) && this._test(path) + + // Or only test the path + : this._test(path); + } + + // @returns {Boolean} true if a file is NOT ignored + + }, { + key: '_test', + value: function _test(path) { + // Explicitly define variable type by setting matched to `0` + var matched = 0; + + this._rules.forEach(function (rule) { + // if matched = true, then we only test negative rules + // if matched = false, then we test non-negative rules + if (!(matched ^ rule.negative)) { + matched = rule.negative ^ rule.regex.test(path); + } + }); + + return !matched; + } + }]); + + return IgnoreBase; +}(); + +// Windows +// -------------------------------------------------------------- +/* istanbul ignore if */ + + +if ( +// Detect `process` so that it can run in browsers. +typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32 || process.platform === 'win32')) { + var filter = IgnoreBase.prototype._filter; + + /* eslint no-control-regex: "off" */ + var make_posix = function make_posix(str) { + return (/^\\\\\?\\/.test(str) || /[^\x00-\x80]+/.test(str) ? str : str.replace(/\\/g, '/') + ); + }; + + IgnoreBase.prototype._filter = function filterWin32(path, slices) { + path = make_posix(path); + return filter.call(this, path, slices); + }; +} + +module.exports = function (options) { + return new IgnoreBase(options); +}; diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/package.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/package.json new file mode 100644 index 00000000000000..8cb1b7873257b4 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/ignore/package.json @@ -0,0 +1,64 @@ +{ + "name": "ignore", + "version": "4.0.6", + "description": "Ignore is a manager and filter for .gitignore rules.", + "files": [ + "legacy.js", + "index.js", + "index.d.ts", + "LICENSE-MIT" + ], + "scripts": { + "prepublish": "npm run build", + "build": "babel -o legacy.js index.js", + "test:lint": "eslint .", + "test:tsc": "tsc ./test/ts/simple.ts", + "test:git": "tap test/git-check-ignore.js", + "test:ignore": "tap test/ignore.js --coverage", + "test-no-cov": "npm run test:lint && npm run test:tsc && tap test/*.js --coverage", + "test": "npm run test-no-cov", + "posttest": "tap --coverage-report=html && codecov" + }, + "repository": { + "type": "git", + "url": "git@github.com:kaelzhang/node-ignore.git" + }, + "keywords": [ + "ignore", + ".gitignore", + "gitignore", + "npmignore", + "rules", + "manager", + "filter", + "regexp", + "regex", + "fnmatch", + "glob", + "asterisks", + "regular-expression" + ], + "author": "kael", + "license": "MIT", + "bugs": { + "url": "https://github.com/kaelzhang/node-ignore/issues" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "babel-preset-env": "^1.7.0", + "codecov": "^3.0.4", + "eslint": "^5.3.0", + "eslint-config-ostai": "^1.3.2", + "eslint-plugin-import": "^2.13.0", + "mkdirp": "^0.5.1", + "pre-suf": "^1.1.0", + "rimraf": "^2.6.2", + "spawn-sync": "^2.0.0", + "tap": "^12.0.1", + "tmp": "0.0.33", + "typescript": "^3.0.1" + }, + "engines": { + "node": ">= 4" + } +} diff --git a/tools/node_modules/eslint/node_modules/ansi-colors/LICENSE b/tools/node_modules/eslint/node_modules/ansi-colors/LICENSE deleted file mode 100644 index 8749cc754e5d3d..00000000000000 --- a/tools/node_modules/eslint/node_modules/ansi-colors/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2015-present, Brian Woodward. - -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/ansi-colors/index.js b/tools/node_modules/eslint/node_modules/ansi-colors/index.js deleted file mode 100644 index 8e26419046aaea..00000000000000 --- a/tools/node_modules/eslint/node_modules/ansi-colors/index.js +++ /dev/null @@ -1,177 +0,0 @@ -'use strict'; - -const isObject = val => val !== null && typeof val === 'object' && !Array.isArray(val); -const identity = val => val; - -/* eslint-disable no-control-regex */ -// this is a modified version of https://github.com/chalk/ansi-regex (MIT License) -const ANSI_REGEX = /[\u001b\u009b][[\]#;?()]*(?:(?:(?:[^\W_]*;?[^\W_]*)\u0007)|(?:(?:[0-9]{1,4}(;[0-9]{0,4})*)?[~0-9=<>cf-nqrtyA-PRZ]))/g; - -const create = () => { - const colors = { enabled: true, visible: true, styles: {}, keys: {} }; - - if ('FORCE_COLOR' in process.env) { - colors.enabled = process.env.FORCE_COLOR !== '0'; - } - - const ansi = style => { - let open = style.open = `\u001b[${style.codes[0]}m`; - let close = style.close = `\u001b[${style.codes[1]}m`; - let regex = style.regex = new RegExp(`\\u001b\\[${style.codes[1]}m`, 'g'); - style.wrap = (input, newline) => { - if (input.includes(close)) input = input.replace(regex, close + open); - let output = open + input + close; - // see https://github.com/chalk/chalk/pull/92, thanks to the - // chalk contributors for this fix. However, we've confirmed that - // this issue is also present in Windows terminals - return newline ? output.replace(/\r*\n/g, `${close}$&${open}`) : output; - }; - return style; - }; - - const wrap = (style, input, newline) => { - return typeof style === 'function' ? style(input) : style.wrap(input, newline); - }; - - const style = (input, stack) => { - if (input === '' || input == null) return ''; - if (colors.enabled === false) return input; - if (colors.visible === false) return ''; - let str = '' + input; - let nl = str.includes('\n'); - let n = stack.length; - if (n > 0 && stack.includes('unstyle')) { - stack = [...new Set(['unstyle', ...stack])].reverse(); - } - while (n-- > 0) str = wrap(colors.styles[stack[n]], str, nl); - return str; - }; - - const define = (name, codes, type) => { - colors.styles[name] = ansi({ name, codes }); - let keys = colors.keys[type] || (colors.keys[type] = []); - keys.push(name); - - Reflect.defineProperty(colors, name, { - configurable: true, - enumerable: true, - set(value) { - colors.alias(name, value); - }, - get() { - let color = input => style(input, color.stack); - Reflect.setPrototypeOf(color, colors); - color.stack = this.stack ? this.stack.concat(name) : [name]; - return color; - } - }); - }; - - define('reset', [0, 0], 'modifier'); - define('bold', [1, 22], 'modifier'); - define('dim', [2, 22], 'modifier'); - define('italic', [3, 23], 'modifier'); - define('underline', [4, 24], 'modifier'); - define('inverse', [7, 27], 'modifier'); - define('hidden', [8, 28], 'modifier'); - define('strikethrough', [9, 29], 'modifier'); - - define('black', [30, 39], 'color'); - define('red', [31, 39], 'color'); - define('green', [32, 39], 'color'); - define('yellow', [33, 39], 'color'); - define('blue', [34, 39], 'color'); - define('magenta', [35, 39], 'color'); - define('cyan', [36, 39], 'color'); - define('white', [37, 39], 'color'); - define('gray', [90, 39], 'color'); - define('grey', [90, 39], 'color'); - - define('bgBlack', [40, 49], 'bg'); - define('bgRed', [41, 49], 'bg'); - define('bgGreen', [42, 49], 'bg'); - define('bgYellow', [43, 49], 'bg'); - define('bgBlue', [44, 49], 'bg'); - define('bgMagenta', [45, 49], 'bg'); - define('bgCyan', [46, 49], 'bg'); - define('bgWhite', [47, 49], 'bg'); - - define('blackBright', [90, 39], 'bright'); - define('redBright', [91, 39], 'bright'); - define('greenBright', [92, 39], 'bright'); - define('yellowBright', [93, 39], 'bright'); - define('blueBright', [94, 39], 'bright'); - define('magentaBright', [95, 39], 'bright'); - define('cyanBright', [96, 39], 'bright'); - define('whiteBright', [97, 39], 'bright'); - - define('bgBlackBright', [100, 49], 'bgBright'); - define('bgRedBright', [101, 49], 'bgBright'); - define('bgGreenBright', [102, 49], 'bgBright'); - define('bgYellowBright', [103, 49], 'bgBright'); - define('bgBlueBright', [104, 49], 'bgBright'); - define('bgMagentaBright', [105, 49], 'bgBright'); - define('bgCyanBright', [106, 49], 'bgBright'); - define('bgWhiteBright', [107, 49], 'bgBright'); - - colors.ansiRegex = ANSI_REGEX; - colors.hasColor = colors.hasAnsi = str => { - colors.ansiRegex.lastIndex = 0; - return typeof str === 'string' && str !== '' && colors.ansiRegex.test(str); - }; - - colors.alias = (name, color) => { - let fn = typeof color === 'string' ? colors[color] : color; - - if (typeof fn !== 'function') { - throw new TypeError('Expected alias to be the name of an existing color (string) or a function'); - } - - if (!fn.stack) { - Reflect.defineProperty(fn, 'name', { value: name }); - colors.styles[name] = fn; - fn.stack = [name]; - } - - Reflect.defineProperty(colors, name, { - configurable: true, - enumerable: true, - set(value) { - colors.alias(name, value); - }, - get() { - let color = input => style(input, color.stack); - Reflect.setPrototypeOf(color, colors); - color.stack = this.stack ? this.stack.concat(fn.stack) : fn.stack; - return color; - } - }); - }; - - colors.theme = custom => { - if (!isObject(custom)) throw new TypeError('Expected theme to be an object'); - for (let name of Object.keys(custom)) { - colors.alias(name, custom[name]); - } - return colors; - }; - - colors.alias('unstyle', str => { - if (typeof str === 'string' && str !== '') { - colors.ansiRegex.lastIndex = 0; - return str.replace(colors.ansiRegex, ''); - } - return ''; - }); - - colors.alias('noop', str => str); - colors.none = colors.clear = colors.noop; - - colors.stripColor = colors.unstyle; - colors.symbols = require('./symbols'); - colors.define = define; - return colors; -}; - -module.exports = create(); -module.exports.create = create; diff --git a/tools/node_modules/eslint/node_modules/ansi-colors/package.json b/tools/node_modules/eslint/node_modules/ansi-colors/package.json deleted file mode 100644 index e11093140b3277..00000000000000 --- a/tools/node_modules/eslint/node_modules/ansi-colors/package.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "name": "ansi-colors", - "description": "Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in replacement for chalk, kleur and turbocolor (without the dependencies and rendering bugs).", - "version": "4.1.1", - "homepage": "https://github.com/doowb/ansi-colors", - "author": "Brian Woodward (https://github.com/doowb)", - "contributors": [ - "Brian Woodward (https://twitter.com/doowb)", - "Jason Schilling (https://sourecode.de)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)", - "Jordan (https://github.com/Silic0nS0ldier)" - ], - "repository": "doowb/ansi-colors", - "bugs": { - "url": "https://github.com/doowb/ansi-colors/issues" - }, - "license": "MIT", - "files": [ - "index.js", - "symbols.js", - "types/index.d.ts" - ], - "main": "index.js", - "types": "./types/index.d.ts", - "engines": { - "node": ">=6" - }, - "scripts": { - "test": "mocha" - }, - "devDependencies": { - "decache": "^4.5.1", - "gulp-format-md": "^2.0.0", - "justified": "^1.0.1", - "mocha": "^6.1.4", - "text-table": "^0.2.0" - }, - "keywords": [ - "ansi", - "bgblack", - "bgBlack", - "bgblue", - "bgBlue", - "bgcyan", - "bgCyan", - "bggreen", - "bgGreen", - "bgmagenta", - "bgMagenta", - "bgred", - "bgRed", - "bgwhite", - "bgWhite", - "bgyellow", - "bgYellow", - "black", - "blue", - "bold", - "clorox", - "colors", - "cyan", - "dim", - "gray", - "green", - "grey", - "hidden", - "inverse", - "italic", - "kleur", - "magenta", - "red", - "reset", - "strikethrough", - "underline", - "white", - "yellow" - ], - "verb": { - "toc": false, - "layout": "default", - "tasks": [ - "readme" - ], - "data": { - "author": { - "linkedin": "woodwardbrian", - "twitter": "doowb" - } - }, - "plugins": [ - "gulp-format-md" - ], - "lint": { - "reflinks": true - }, - "related": { - "list": [ - "ansi-wrap", - "strip-color" - ] - }, - "reflinks": [ - "chalk", - "colorette", - "colors", - "kleur" - ] - } -} diff --git a/tools/node_modules/eslint/node_modules/ansi-colors/symbols.js b/tools/node_modules/eslint/node_modules/ansi-colors/symbols.js deleted file mode 100644 index ee159457342a5e..00000000000000 --- a/tools/node_modules/eslint/node_modules/ansi-colors/symbols.js +++ /dev/null @@ -1,70 +0,0 @@ -'use strict'; - -const isHyper = process.env.TERM_PROGRAM === 'Hyper'; -const isWindows = process.platform === 'win32'; -const isLinux = process.platform === 'linux'; - -const common = { - ballotDisabled: '☒', - ballotOff: '☐', - ballotOn: '☑', - bullet: '•', - bulletWhite: '◦', - fullBlock: '█', - heart: '❤', - identicalTo: '≡', - line: '─', - mark: '※', - middot: '·', - minus: '-', - multiplication: '×', - obelus: '÷', - pencilDownRight: '✎', - pencilRight: '✏', - pencilUpRight: '✐', - percent: '%', - pilcrow2: '❡', - pilcrow: '¶', - plusMinus: '±', - section: '§', - starsOff: '☆', - starsOn: '★', - upDownArrow: '↕' -}; - -const windows = Object.assign({}, common, { - check: '√', - cross: '×', - ellipsisLarge: '...', - ellipsis: '...', - info: 'i', - question: '?', - questionSmall: '?', - pointer: '>', - pointerSmall: '»', - radioOff: '( )', - radioOn: '(*)', - warning: '‼' -}); - -const other = Object.assign({}, common, { - ballotCross: '✘', - check: '✔', - cross: '✖', - ellipsisLarge: '⋯', - ellipsis: '…', - info: 'ℹ', - question: '?', - questionFull: '?', - questionSmall: '﹖', - pointer: isLinux ? '▸' : '❯', - pointerSmall: isLinux ? '‣' : '›', - radioOff: '◯', - radioOn: '◉', - warning: '⚠' -}); - -module.exports = (isWindows && !isHyper) ? windows : other; -Reflect.defineProperty(module.exports, 'common', { enumerable: false, value: common }); -Reflect.defineProperty(module.exports, 'windows', { enumerable: false, value: windows }); -Reflect.defineProperty(module.exports, 'other', { enumerable: false, value: other }); 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 2b47e7d8de44f1..c2db29ee4ac034 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.0363648,F:0.0800026,A:0.0145459,B:0.683659,oB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","oB","J","D","E","F","A","B","","",""],E:"IE",F:{oB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008712,K:0.004267,L:0.004356,G:0.004356,M:0.008712,N:0.013068,O:0.034848,P:0,Q:0.004298,R:0.00944,U:0.004043,V:0.008712,W:0.008712,X:0.008712,Y:0.02178,Z:0.004318,a:0.013068,b:0.008712,c:0.013068,d:0.02178,e:0.02178,S:0.156816,f:2.80526,H:1.04544},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","U","V","W","X","Y","Z","a","b","c","d","e","S","f","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,U:1590019200,V:1594857600,W:1598486400,X:1602201600,Y:1605830400,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,S:1632441600,f:1634774400,H:1637539200},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004271,"1":0.004783,"2":0.00487,"3":0.005029,"4":0.0047,"5":0.034848,"6":0.008712,"7":0.004356,"8":0.004525,"9":0.004293,pB:0.004318,eB:0.004271,I:0.026136,g:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.004318,C:0.004471,K:0.004486,L:0.00453,G:0.004293,M:0.004417,N:0.004425,O:0.004293,h:0.004443,i:0.004283,j:0.004293,k:0.013698,l:0.004293,m:0.008786,n:0.004356,o:0.004317,p:0.004393,q:0.004418,r:0.008834,s:0.004293,t:0.008928,u:0.004471,v:0.009284,w:0.004707,x:0.009076,y:0.004356,z:0.004783,AB:0.004356,BB:0.004538,CB:0.008282,DB:0.004356,EB:0.069696,FB:0.004335,GB:0.008586,HB:0.008712,IB:0.013068,JB:0.004425,KB:0.004356,fB:0.004356,LB:0.008712,gB:0.004356,MB:0.004425,NB:0.008712,T:0.00415,OB:0.004267,PB:0.008712,QB:0.004267,RB:0.013068,SB:0.00415,TB:0.004293,UB:0.004425,VB:0.008712,WB:0.00415,XB:0.00415,YB:0.004318,ZB:0.004356,aB:0.004356,bB:0.095832,P:0.008712,Q:0.008712,R:0.013068,hB:0.013068,U:0.008712,V:0.013068,W:0.004356,X:0.008712,Y:0.008712,Z:0.02178,a:0.02178,b:0.017424,c:0.082764,d:0.039204,e:0.439956,S:2.44372,f:0.026136,H:0,iB:0,qB:0.008786,rB:0.00487},B:"moz",C:["pB","eB","qB","rB","I","g","J","D","E","F","A","B","C","K","L","G","M","N","O","h","i","j","k","l","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","fB","LB","gB","MB","NB","T","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","P","Q","R","hB","U","V","W","X","Y","Z","a","b","c","d","e","S","f","H","iB",""],E:"Firefox",F:{"0":1431475200,"1":1435881600,"2":1439251200,"3":1442880000,"4":1446508800,"5":1450137600,"6":1453852800,"7":1457395200,"8":1461628800,"9":1465257600,pB:1161648000,eB:1213660800,qB:1246320000,rB:1264032000,I:1300752000,g: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,h:1357603200,i:1361232000,j:1364860800,k:1368489600,l:1372118400,m:1375747200,n:1379376000,o:1386633600,p:1391472000,q:1395100800,r:1398729600,s:1402358400,t:1405987200,u:1409616000,v:1413244800,w:1417392000,x:1421107200,y:1424736000,z:1428278400,AB:1470096000,BB:1474329600,CB:1479168000,DB:1485216000,EB:1488844800,FB:1492560000,GB:1497312000,HB:1502150400,IB:1506556800,JB:1510617600,KB:1516665600,fB:1520985600,LB:1525824000,gB:1529971200,MB:1536105600,NB:1540252800,T:1544486400,OB:1548720000,PB:1552953600,QB:1558396800,RB:1562630400,SB:1567468800,TB:1571788800,UB:1575331200,VB:1578355200,WB:1581379200,XB:1583798400,YB:1586304000,ZB:1588636800,aB:1591056000,bB:1593475200,P:1595894400,Q:1598313600,R:1600732800,hB:1603152000,U:1605571200,V:1607990400,W:1611619200,X:1614038400,Y:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,S:1635811200,f:1638835200,H:null,iB:null}},D:{A:{"0":0.02178,"1":0.004464,"2":0.013068,"3":0.0236,"4":0.004293,"5":0.008712,"6":0.004465,"7":0.004642,"8":0.004891,"9":0.013068,I:0.004706,g: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,h:0.004293,i:0.004393,j:0.004317,k:0.008712,l:0.008786,m:0.008712,n:0.004461,o:0.004141,p:0.004326,q:0.0047,r:0.004538,s:0.004293,t:0.008596,u:0.004566,v:0.004356,w:0.008712,x:0.008712,y:0.004335,z:0.004464,AB:0.026136,BB:0.126324,CB:0.004293,DB:0.008712,EB:0.004356,FB:0.013068,GB:0.008712,HB:0.008712,IB:0.052272,JB:0.008712,KB:0.008712,fB:0.004356,LB:0.008712,gB:0.030492,MB:0.008712,NB:0.013068,T:0.02178,OB:0.017424,PB:0.02178,QB:0.013068,RB:0.008712,SB:0.060984,TB:0.04356,UB:0.017424,VB:0.04356,WB:0.013068,XB:0.030492,YB:0.06534,ZB:0.060984,aB:0.02178,bB:0.04356,P:0.169884,Q:0.069696,R:0.047916,U:0.08712,V:0.091476,W:0.104544,X:0.100188,Y:0.30492,Z:0.074052,a:0.095832,b:0.082764,c:0.257004,d:0.34848,e:0.439956,S:1.7424,f:13.9566,H:8.06296,iB:0.017424,sB:0.013068,tB:0},B:"webkit",C:["","","","","I","g","J","D","E","F","A","B","C","K","L","G","M","N","O","h","i","j","k","l","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","fB","LB","gB","MB","NB","T","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","P","Q","R","U","V","W","X","Y","Z","a","b","c","d","e","S","f","H","iB","sB","tB"],E:"Chrome",F:{"0":1412640000,"1":1416268800,"2":1421798400,"3":1425513600,"4":1429401600,"5":1432080000,"6":1437523200,"7":1441152000,"8":1444780800,"9":1449014400,I:1264377600,g: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,h:1332892800,i:1337040000,j:1340668800,k:1343692800,l:1348531200,m:1352246400,n:1357862400,o:1361404800,p:1364428800,q:1369094400,r:1374105600,s:1376956800,t:1384214400,u:1389657600,v:1392940800,w:1397001600,x:1400544000,y:1405468800,z:1409011200,AB:1453248000,BB:1456963200,CB:1460592000,DB:1464134400,EB:1469059200,FB:1472601600,GB:1476230400,HB:1480550400,IB:1485302400,JB:1489017600,KB:1492560000,fB:1496707200,LB:1500940800,gB:1504569600,MB:1508198400,NB:1512518400,T:1516752000,OB:1520294400,PB:1523923200,QB:1527552000,RB:1532390400,SB:1536019200,TB:1539648000,UB:1543968000,VB:1548720000,WB:1552348800,XB:1555977600,YB:1559606400,ZB:1564444800,aB:1568073600,bB:1571702400,P:1575936000,Q:1580860800,R:1586304000,U:1589846400,V:1594684800,W:1598313600,X:1601942400,Y:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,S:1632268800,f:1634601600,H:1637020800,iB:null,sB:null,tB:null}},E:{A:{I:0,g:0.004293,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.008712,K:0.060984,L:0.339768,G:0.601128,uB:0,jB:0.008692,vB:0.013068,wB:0.00456,xB:0.004283,yB:0.030492,kB:0.013068,cB:0.039204,dB:0.074052,zB:0.548856,"0B":1.71626,"1B":0.749232,lB:0,"2B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","uB","jB","I","g","vB","J","wB","D","xB","E","F","yB","A","kB","B","cB","C","dB","K","zB","L","0B","G","1B","lB","2B","",""],E:"Safari",F:{uB:1205798400,jB:1226534400,I:1244419200,g:1275868800,vB:1311120000,J:1343174400,wB:1382400000,D:1382400000,xB:1410998400,E:1413417600,F:1443657600,yB:1458518400,A:1474329600,kB:1490572800,B:1505779200,cB:1522281600,C:1537142400,dB:1553472000,K:1568851200,zB:1585008000,L:1600214400,"0B":1619395200,G:1632096000,"1B":1635292800,lB:1639353600,"2B":null}},F:{A:{"0":0.004367,"1":0.004534,"2":0.004356,"3":0.004227,"4":0.004418,"5":0.004293,"6":0.004227,"7":0.004725,"8":0.008712,"9":0.008942,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,h:0.006015,i:0.004879,j:0.006597,k:0.006597,l:0.013434,m:0.006702,n:0.006015,o:0.005595,p:0.004393,q:0.008652,r:0.004879,s:0.004879,t:0.004356,u:0.005152,v:0.005014,w:0.009758,x:0.004879,y:0.004356,z:0.004283,AB:0.004707,BB:0.004827,CB:0.004707,DB:0.004707,EB:0.004326,FB:0.008922,GB:0.014349,HB:0.004425,IB:0.00472,JB:0.004425,KB:0.004425,LB:0.00472,MB:0.004532,NB:0.004566,T:0.02283,OB:0.00867,PB:0.004656,QB:0.004642,RB:0.004318,SB:0.00944,TB:0.004293,UB:0.004293,VB:0.004298,WB:0.096692,XB:0.004201,YB:0.004141,ZB:0.004043,aB:0.004318,bB:0.004356,P:0.02178,Q:0.753588,R:0.3267,hB:0,"3B":0.00685,"4B":0,"5B":0.008392,"6B":0.004706,cB:0.006229,mB:0.004879,"7B":0.008786,dB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","F","3B","4B","5B","6B","B","cB","mB","7B","C","dB","G","M","N","O","h","i","j","k","l","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","T","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","P","Q","R","hB","","",""],E:"Opera",F:{"0":1465344000,"1":1470096000,"2":1474329600,"3":1477267200,"4":1481587200,"5":1486425600,"6":1490054400,"7":1494374400,"8":1498003200,"9":1502236800,F:1150761600,"3B":1223424000,"4B":1251763200,"5B":1267488000,"6B":1277942400,B:1292457600,cB:1302566400,mB:1309219200,"7B":1323129600,C:1323129600,dB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,h:1390867200,i:1393891200,j:1399334400,k:1401753600,l:1405987200,m:1409616000,n:1413331200,o:1417132800,p:1422316800,q:1425945600,r:1430179200,s:1433808000,t:1438646400,u:1442448000,v:1445904000,w:1449100800,x:1454371200,y:1457308800,z:1462320000,AB:1506470400,BB:1510099200,CB:1515024000,DB:1517961600,EB:1521676800,FB:1525910400,GB:1530144000,HB:1534982400,IB:1537833600,JB:1543363200,KB:1548201600,LB:1554768000,MB:1561593600,NB:1566259200,T:1570406400,OB:1573689600,PB:1578441600,QB:1583971200,RB:1587513600,SB:1592956800,TB:1595894400,UB:1600128000,VB:1603238400,WB:1613520000,XB:1612224000,YB:1616544000,ZB:1619568000,aB:1623715200,bB:1627948800,P:1631577600,Q:1633392000,R:1635984000,hB:1638403200},D:{F:"o",B:"o",C:"o","3B":"o","4B":"o","5B":"o","6B":"o",cB:"o",mB:"o","7B":"o",dB:"o"}},G:{A:{E:0,jB:0,"8B":0,nB:0.00291998,"9B":0.00583996,AC:0.0613196,BC:0.0204399,CC:0.0116799,DC:0.0189799,EC:0.103659,FC:0.0262798,GC:0.125559,HC:0.0715395,IC:0.0467197,JC:0.0467197,KC:0.636556,LC:0.0379597,MC:0.0189799,NC:0.0992793,OC:0.321198,PC:1.05411,QC:6.90575,RC:4.98295,lB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","jB","8B","nB","9B","AC","BC","E","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","NC","OC","PC","QC","RC","lB","","",""],E:"Safari on iOS",F:{jB:1270252800,"8B":1283904000,nB:1299628800,"9B":1331078400,AC:1359331200,BC:1394409600,E:1410912000,CC:1413763200,DC:1442361600,EC:1458518400,FC:1473724800,GC:1490572800,HC:1505779200,IC:1522281600,JC:1537142400,KC:1553472000,LC:1568851200,MC:1572220800,NC:1580169600,OC:1585008000,PC:1600214400,QC:1619395200,RC:1632096000,lB:1639353600}},H:{A:{SC:1.08451},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","SC","","",""],E:"Opera Mini",F:{SC:1426464000}},I:{A:{eB:0,I:0.0104652,H:0,TC:0,UC:0,VC:0,WC:0.0139536,nB:0.0627912,XC:0,YC:0.296514},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","TC","UC","VC","eB","I","WC","nB","XC","YC","H","","",""],E:"Android Browser",F:{TC:1256515200,UC:1274313600,VC:1291593600,eB:1298332800,I:1318896000,WC:1341792000,nB:1374624000,XC:1386547200,YC:1401667200,H:1636934400}},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,T:0.0111391,cB:0,mB:0,dB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","cB","mB","C","dB","T","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,cB:1314835200,mB:1318291200,C:1330300800,dB:1349740800,T:1613433600},D:{T:"webkit"}},L:{A:{H:37.4535},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1637020800}},M:{A:{S:0.28215},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","S","","",""],E:"Firefox for Android",F:{S:1635811200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{ZC:0.95931},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZC","","",""],E:"UC Browser for Android",F:{ZC:1471392000},D:{ZC:"webkit"}},P:{A:{I:0.231383,aC:0.0103543,bC:0.010304,cC:0.0736219,dC:0.0103584,eC:0.0315523,kB:0.0105043,fC:0.0841394,gC:0.0315523,hC:0.136726,iC:0.157761,jC:2.01934},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","aC","bC","cC","dC","eC","kB","fC","gC","hC","iC","jC","","",""],E:"Samsung Internet",F:{I:1461024000,aC:1481846400,bC:1509408000,cC:1528329600,dC:1546128000,eC:1554163200,kB:1567900800,fC:1582588800,gC:1593475200,hC:1605657600,iC:1618531200,jC:1629072000}},Q:{A:{kC:0.163647},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","kC","","",""],E:"QQ Browser",F:{kC:1589846400}},R:{A:{lC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lC","","",""],E:"Baidu Browser",F:{lC:1491004800}},S:{A:{mC:0.079002},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","mC","","",""],E:"KaiOS Browser",F:{mC:1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.0293123,F:0.0732808,A:0.0146562,B:0.659527,pB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","pB","J","D","E","F","A","B","","",""],E:"IE",F:{pB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008536,K:0.004267,L:0.004268,G:0.004268,M:0.008536,N:0.008536,O:0.029876,P:0,Q:0.004298,R:0.00944,U:0.004043,V:0.008536,W:0.008536,X:0.008536,Y:0.012804,Z:0.004318,a:0.008536,b:0.004268,c:0.008536,d:0.017072,e:0.012804,f:0.025608,S:0.145112,g:3.66194,H:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","U","V","W","X","Y","Z","a","b","c","d","e","f","S","g","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,U:1590019200,V:1594857600,W:1598486400,X:1602201600,Y:1605830400,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,S:1634774400,g:1637539200,H:1641427200},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004783,"1":0.004271,"2":0.004783,"3":0.00487,"4":0.005029,"5":0.0047,"6":0.034144,"7":0.008536,"8":0.004356,"9":0.004525,qB:0.004318,fB:0.004271,I:0.025608,h:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.004318,C:0.004471,K:0.004486,L:0.00453,G:0.004293,M:0.004417,N:0.004425,O:0.004293,i:0.004443,j:0.004283,k:0.004293,l:0.013698,m:0.004293,n:0.008786,o:0.004268,p:0.004317,q:0.004393,r:0.004418,s:0.008834,t:0.004293,u:0.008928,v:0.004471,w:0.009284,x:0.004707,y:0.009076,z:0.004268,AB:0.004293,BB:0.004268,CB:0.004538,DB:0.008282,EB:0.004268,FB:0.068288,GB:0.004335,HB:0.008586,IB:0.034144,JB:0.017072,KB:0.004425,LB:0.004356,gB:0.004268,MB:0.008536,hB:0.004356,NB:0.004425,OB:0.004268,T:0.00415,PB:0.004267,QB:0.008712,RB:0.004267,SB:0.008536,TB:0.00415,UB:0.004293,VB:0.004425,WB:0.012804,XB:0.00415,YB:0.00415,ZB:0.004318,aB:0.004356,bB:0.004268,cB:0.068288,P:0.008536,Q:0.008536,R:0.017072,iB:0.004268,U:0.004268,V:0.017072,W:0.004268,X:0.004268,Y:0.012804,Z:0.017072,a:0.02134,b:0.02134,c:0.098164,d:0.017072,e:0.029876,f:0.93896,S:1.9334,g:0.017072,H:0,jB:0,rB:0.008786,sB:0.00487},B:"moz",C:["qB","fB","rB","sB","I","h","J","D","E","F","A","B","C","K","L","G","M","N","O","i","j","k","l","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","gB","MB","hB","NB","OB","T","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","P","Q","R","iB","U","V","W","X","Y","Z","a","b","c","d","e","f","S","g","H","jB",""],E:"Firefox",F:{"0":1428278400,"1":1431475200,"2":1435881600,"3":1439251200,"4":1442880000,"5":1446508800,"6":1450137600,"7":1453852800,"8":1457395200,"9":1461628800,qB:1161648000,fB:1213660800,rB:1246320000,sB:1264032000,I:1300752000,h: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,i:1357603200,j:1361232000,k:1364860800,l:1368489600,m:1372118400,n:1375747200,o:1379376000,p:1386633600,q:1391472000,r:1395100800,s:1398729600,t:1402358400,u:1405987200,v:1409616000,w:1413244800,x:1417392000,y:1421107200,z:1424736000,AB:1465257600,BB:1470096000,CB:1474329600,DB:1479168000,EB:1485216000,FB:1488844800,GB:1492560000,HB:1497312000,IB:1502150400,JB:1506556800,KB:1510617600,LB:1516665600,gB:1520985600,MB:1525824000,hB:1529971200,NB:1536105600,OB:1540252800,T:1544486400,PB:1548720000,QB:1552953600,RB:1558396800,SB:1562630400,TB:1567468800,UB:1571788800,VB:1575331200,WB:1578355200,XB:1581379200,YB:1583798400,ZB:1586304000,aB:1588636800,bB:1591056000,cB:1593475200,P:1595894400,Q:1598313600,R:1600732800,iB:1603152000,U:1605571200,V:1607990400,W:1611619200,X:1614038400,Y:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,S:1638835200,g:1641859200,H:null,jB:null}},D:{A:{"0":0.004464,"1":0.025608,"2":0.004464,"3":0.012804,"4":0.0236,"5":0.004293,"6":0.008536,"7":0.004465,"8":0.004642,"9":0.004891,I:0.004706,h: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,i:0.004293,j:0.004393,k:0.004317,l:0.008536,m:0.008786,n:0.008536,o:0.004461,p:0.004141,q:0.004326,r:0.0047,s:0.004538,t:0.004293,u:0.008596,v:0.004566,w:0.004268,x:0.008536,y:0.008536,z:0.004335,AB:0.012804,BB:0.025608,CB:0.08536,DB:0.004293,EB:0.004268,FB:0.004268,GB:0.012804,HB:0.008536,IB:0.008536,JB:0.046948,KB:0.008536,LB:0.008536,gB:0.004268,MB:0.008536,hB:0.008536,NB:0.008536,OB:0.012804,T:0.02134,PB:0.017072,QB:0.025608,RB:0.012804,SB:0.012804,TB:0.059752,UB:0.04268,VB:0.017072,WB:0.046948,XB:0.012804,YB:0.025608,ZB:0.06402,aB:0.068288,bB:0.025608,cB:0.034144,P:0.19206,Q:0.06402,R:0.046948,U:0.093896,V:0.076824,W:0.098164,X:0.08536,Y:0.19206,Z:0.051216,a:0.068288,b:0.06402,c:0.17072,d:0.25608,e:0.307296,f:0.763972,S:0.670076,g:21.7284,H:0.02134,jB:0.008536,tB:0.008536,uB:0},B:"webkit",C:["","","","","I","h","J","D","E","F","A","B","C","K","L","G","M","N","O","i","j","k","l","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","gB","MB","hB","NB","OB","T","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","P","Q","R","U","V","W","X","Y","Z","a","b","c","d","e","f","S","g","H","jB","tB","uB"],E:"Chrome",F:{"0":1409011200,"1":1412640000,"2":1416268800,"3":1421798400,"4":1425513600,"5":1429401600,"6":1432080000,"7":1437523200,"8":1441152000,"9":1444780800,I:1264377600,h: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,i:1332892800,j:1337040000,k:1340668800,l:1343692800,m:1348531200,n:1352246400,o:1357862400,p:1361404800,q:1364428800,r:1369094400,s:1374105600,t:1376956800,u:1384214400,v:1389657600,w:1392940800,x:1397001600,y:1400544000,z:1405468800,AB:1449014400,BB:1453248000,CB:1456963200,DB:1460592000,EB:1464134400,FB:1469059200,GB:1472601600,HB:1476230400,IB:1480550400,JB:1485302400,KB:1489017600,LB:1492560000,gB:1496707200,MB:1500940800,hB:1504569600,NB:1508198400,OB:1512518400,T:1516752000,PB:1520294400,QB:1523923200,RB:1527552000,SB:1532390400,TB:1536019200,UB:1539648000,VB:1543968000,WB:1548720000,XB:1552348800,YB:1555977600,ZB:1559606400,aB:1564444800,bB:1568073600,cB:1571702400,P:1575936000,Q:1580860800,R:1586304000,U:1589846400,V:1594684800,W:1598313600,X:1601942400,Y:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,S:1634601600,g:1637020800,H:1641340800,jB:null,tB:null,uB:null}},E:{A:{I:0,h:0.004293,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.008536,K:0.059752,L:0.290224,G:0.29876,vB:0,kB:0.008692,wB:0.012804,xB:0.00456,yB:0.004283,zB:0.017072,lB:0.012804,dB:0.038412,eB:0.068288,"0B":0.51216,"1B":1.22492,"2B":1.29747,mB:0.179256,"3B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","vB","kB","I","h","wB","J","xB","D","yB","E","F","zB","A","lB","B","dB","C","eB","K","0B","L","1B","G","2B","mB","3B","",""],E:"Safari",F:{vB:1205798400,kB:1226534400,I:1244419200,h:1275868800,wB:1311120000,J:1343174400,xB:1382400000,D:1382400000,yB:1410998400,E:1413417600,F:1443657600,zB:1458518400,A:1474329600,lB:1490572800,B:1505779200,dB:1522281600,C:1537142400,eB:1553472000,K:1568851200,"0B":1585008000,L:1600214400,"1B":1619395200,G:1632096000,"2B":1635292800,mB:1639353600,"3B":null}},F:{A:{"0":0.004283,"1":0.004367,"2":0.004534,"3":0.004268,"4":0.004227,"5":0.004418,"6":0.004293,"7":0.004227,"8":0.004725,"9":0.008536,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,i:0.006015,j:0.004879,k:0.006597,l:0.006597,m:0.013434,n:0.006702,o:0.006015,p:0.005595,q:0.004393,r:0.008652,s:0.004879,t:0.004879,u:0.004268,v:0.005152,w:0.005014,x:0.009758,y:0.004879,z:0.004268,AB:0.008942,BB:0.004707,CB:0.004827,DB:0.004707,EB:0.004707,FB:0.004326,GB:0.008922,HB:0.014349,IB:0.004425,JB:0.00472,KB:0.004425,LB:0.004425,MB:0.00472,NB:0.004532,OB:0.004566,T:0.02283,PB:0.00867,QB:0.004656,RB:0.004642,SB:0.004318,TB:0.00944,UB:0.004293,VB:0.004293,WB:0.004298,XB:0.096692,YB:0.004201,ZB:0.004141,aB:0.008536,bB:0.004318,cB:0.004356,P:0.008536,Q:0.02134,R:0.5335,iB:0.55484,"4B":0.00685,"5B":0,"6B":0.008392,"7B":0.004706,dB:0.006229,nB:0.004879,"8B":0.008786,eB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","F","4B","5B","6B","7B","B","dB","nB","8B","C","eB","G","M","N","O","i","j","k","l","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","T","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","P","Q","R","iB","","",""],E:"Opera",F:{"0":1462320000,"1":1465344000,"2":1470096000,"3":1474329600,"4":1477267200,"5":1481587200,"6":1486425600,"7":1490054400,"8":1494374400,"9":1498003200,F:1150761600,"4B":1223424000,"5B":1251763200,"6B":1267488000,"7B":1277942400,B:1292457600,dB:1302566400,nB:1309219200,"8B":1323129600,C:1323129600,eB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,i:1390867200,j:1393891200,k:1399334400,l:1401753600,m:1405987200,n:1409616000,o:1413331200,p:1417132800,q:1422316800,r:1425945600,s:1430179200,t:1433808000,u:1438646400,v:1442448000,w:1445904000,x:1449100800,y:1454371200,z:1457308800,AB:1502236800,BB:1506470400,CB:1510099200,DB:1515024000,EB:1517961600,FB:1521676800,GB:1525910400,HB:1530144000,IB:1534982400,JB:1537833600,KB:1543363200,LB:1548201600,MB:1554768000,NB:1561593600,OB:1566259200,T:1570406400,PB:1573689600,QB:1578441600,RB:1583971200,SB:1587513600,TB:1592956800,UB:1595894400,VB:1600128000,WB:1603238400,XB:1613520000,YB:1612224000,ZB:1616544000,aB:1619568000,bB:1623715200,cB:1627948800,P:1631577600,Q:1633392000,R:1635984000,iB:1638403200},D:{F:"o",B:"o",C:"o","4B":"o","5B":"o","6B":"o","7B":"o",dB:"o",nB:"o","8B":"o",eB:"o"}},G:{A:{E:0,kB:0,"9B":0,oB:0.00303749,AC:0.00607498,BC:0.0577123,CC:0.0212624,DC:0.01215,EC:0.0182249,FC:0.101756,GC:0.0288562,HC:0.123018,IC:0.0728998,JC:0.0455623,KC:0.0455623,LC:0.631798,MC:0.0349311,NC:0.0167062,OC:0.0926434,PC:0.300711,QC:0.970478,RC:4.48182,SC:7.45096,mB:0.662173},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","kB","9B","oB","AC","BC","CC","E","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","NC","OC","PC","QC","RC","SC","mB","","",""],E:"Safari on iOS",F:{kB:1270252800,"9B":1283904000,oB:1299628800,AC:1331078400,BC:1359331200,CC:1394409600,E:1410912000,DC:1413763200,EC:1442361600,FC:1458518400,GC:1473724800,HC:1490572800,IC:1505779200,JC:1522281600,KC:1537142400,LC:1553472000,MC:1568851200,NC:1572220800,OC:1580169600,PC:1585008000,QC:1600214400,RC:1619395200,SC:1632096000,mB:1639353600}},H:{A:{TC:1.06363},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","TC","","",""],E:"Opera Mini",F:{TC:1426464000}},I:{A:{fB:0,I:0.0320682,H:0,UC:0,VC:0,WC:0,XC:0.0178157,oB:0.0605733,YC:0,ZC:0.285051},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","UC","VC","WC","fB","I","XC","oB","YC","ZC","H","","",""],E:"Android Browser",F:{UC:1256515200,VC:1274313600,WC:1291593600,fB:1298332800,I:1318896000,XC:1341792000,oB:1374624000,YC:1386547200,ZC:1401667200,H:1641340800}},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,T:0.0111391,dB:0,nB:0,eB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","dB","nB","C","eB","T","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,dB:1314835200,nB:1318291200,C:1330300800,eB:1349740800,T:1613433600},D:{T:"webkit"}},L:{A:{H:38.3274},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1641340800}},M:{A:{S:0.298064},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","S","","",""],E:"Firefox for Android",F:{S:1638835200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{aC:0.957244},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","aC","","",""],E:"UC Browser for Android",F:{aC:1471392000},D:{aC:"webkit"}},P:{A:{I:0.228839,bC:0.0103543,cC:0.010304,dC:0.0728124,eC:0.0103584,fC:0.0312053,lB:0.0105043,gC:0.0832142,hC:0.0312053,iC:0.135223,jC:0.145625,kC:0.343259},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","bC","cC","dC","eC","fC","lB","gC","hC","iC","jC","kC","","",""],E:"Samsung Internet",F:{I:1461024000,bC:1481846400,cC:1509408000,dC:1528329600,eC:1546128000,fC:1554163200,lB:1567900800,gC:1582588800,hC:1593475200,iC:1605657600,jC:1618531200,kC:1629072000}},Q:{A:{lC:0.177692},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lC","","",""],E:"QQ Browser",F:{lC:1589846400}},R:{A:{mC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","mC","","",""],E:"Baidu Browser",F:{mC:1491004800}},S:{A:{nC:0.074516},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","nC","","",""],E:"KaiOS Browser",F:{nC: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 7041c38bdde723..780dd7e52dc153 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":"38","1":"39","2":"40","3":"41","4":"42","5":"43","6":"44","7":"45","8":"46","9":"47",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"96",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"94",T:"64",U:"83",V:"84",W:"85",X:"86",Y:"87",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"95",g:"5",h:"19",i:"20",j:"21",k:"22",l:"23",m:"24",n:"25",o:"26",p:"27",q:"28",r:"29",s:"30",t:"31",u:"32",v:"33",w:"34",x:"35",y:"36",z:"37",AB:"48",BB:"49",CB:"50",DB:"51",EB:"52",FB:"53",GB:"54",HB:"55",IB:"56",JB:"57",KB:"58",LB:"60",MB:"62",NB:"63",OB:"65",PB:"66",QB:"67",RB:"68",SB:"69",TB:"70",UB:"71",VB:"72",WB:"73",XB:"74",YB:"75",ZB:"76",aB:"77",bB:"78",cB:"11.1",dB:"12.1",eB:"3",fB:"59",gB:"61",hB:"82",iB:"97",jB:"3.2",kB:"10.1",lB:"15.2",mB:"11.5",nB:"4.2-4.3",oB:"5.5",pB:"2",qB:"3.5",rB:"3.6",sB:"98",tB:"99",uB:"3.1",vB:"5.1",wB:"6.1",xB:"7.1",yB:"9.1",zB:"13.1","0B":"14.1","1B":"15.1","2B":"TP","3B":"9.5-9.6","4B":"10.0-10.1","5B":"10.5","6B":"10.6","7B":"11.6","8B":"4.0-4.1","9B":"5.0-5.1",AC:"6.0-6.1",BC:"7.0-7.1",CC:"8.1-8.4",DC:"9.0-9.2",EC:"9.3",FC:"10.0-10.2",GC:"10.3",HC:"11.0-11.2",IC:"11.3-11.4",JC:"12.0-12.1",KC:"12.2-12.5",LC:"13.0-13.1",MC:"13.2",NC:"13.3",OC:"13.4-13.7",PC:"14.0-14.4",QC:"14.5-14.8",RC:"15.0-15.1",SC:"all",TC:"2.1",UC:"2.2",VC:"2.3",WC:"4.1",XC:"4.4",YC:"4.4.3-4.4.4",ZC:"12.12",aC:"5.0-5.4",bC:"6.2-6.4",cC:"7.2-7.4",dC:"8.2",eC:"9.2",fC:"11.1-11.2",gC:"12.0",hC:"13.0",iC:"14.0",jC:"15.0",kC:"10.4",lC:"7.12",mC:"2.5"}; +module.exports={"0":"37","1":"38","2":"39","3":"40","4":"41","5":"42","6":"43","7":"44","8":"45","9":"46",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"97",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"95",T:"64",U:"83",V:"84",W:"85",X:"86",Y:"87",Z:"88",a:"89",b:"90",c:"91",d:"92",e:"93",f:"94",g:"96",h:"5",i:"19",j:"20",k:"21",l:"22",m:"23",n:"24",o:"25",p:"26",q:"27",r:"28",s:"29",t:"30",u:"31",v:"32",w:"33",x:"34",y:"35",z:"36",AB:"47",BB:"48",CB:"49",DB:"50",EB:"51",FB:"52",GB:"53",HB:"54",IB:"55",JB:"56",KB:"57",LB:"58",MB:"60",NB:"62",OB:"63",PB:"65",QB:"66",RB:"67",SB:"68",TB:"69",UB:"70",VB:"71",WB:"72",XB:"73",YB:"74",ZB:"75",aB:"76",bB:"77",cB:"78",dB:"11.1",eB:"12.1",fB:"3",gB:"59",hB:"61",iB:"82",jB:"98",kB:"3.2",lB:"10.1",mB:"15.2",nB:"11.5",oB:"4.2-4.3",pB:"5.5",qB:"2",rB:"3.5",sB:"3.6",tB:"99",uB:"100",vB:"3.1",wB:"5.1",xB:"6.1",yB:"7.1",zB:"9.1","0B":"13.1","1B":"14.1","2B":"15.1","3B":"TP","4B":"9.5-9.6","5B":"10.0-10.1","6B":"10.5","7B":"10.6","8B":"11.6","9B":"4.0-4.1",AC:"5.0-5.1",BC:"6.0-6.1",CC:"7.0-7.1",DC:"8.1-8.4",EC:"9.0-9.2",FC:"9.3",GC:"10.0-10.2",HC:"10.3",IC:"11.0-11.2",JC:"11.3-11.4",KC:"12.0-12.1",LC:"12.2-12.5",MC:"13.0-13.1",NC:"13.2",OC:"13.3",PC:"13.4-13.7",QC:"14.0-14.4",RC:"14.5-14.8",SC:"15.0-15.1",TC:"all",UC:"2.1",VC:"2.2",WC:"2.3",XC:"4.1",YC:"4.4",ZC:"4.4.3-4.4.4",aC:"12.12",bC:"5.0-5.4",cC:"6.2-6.4",dC:"7.2-7.4",eC:"8.2",fC:"9.2",gC:"11.1-11.2",hC:"12.0",iC:"13.0",jC:"14.0",kC:"15.0",lC:"10.4",mC:"7.12",nC:"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 ad56db5e2f6b63..d7f1fd60359959 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":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-apply-rule":require("./features/css-apply-rule"),"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-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-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-widows-orphans":require("./features/css-widows-orphans"),"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"),"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":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-apply-rule":require("./features/css-apply-rule"),"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-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-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"),"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 592a74626bc5ef..af19204e183bbe 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j qB rB","132":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F","16":"A B"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"132":"S"},N:{"1":"A","2":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"132":"mC"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k rB sB","132":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F","16":"A B"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"132":"S"},N:{"1":"A","2":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"132":"nC"}},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 d0e2c6b1998340..b00cbedf671a95 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},C:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB qB rB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB","130":"C cB"},F:{"1":"FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB rB sB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB","130":"C dB"},F:{"1":"GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 23b1baf1749b9f..46baec897f4c26 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC","132":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","132":"A"},K:{"2":"A B C T cB mB","132":"dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},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 pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC","132":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","132":"A"},K:{"2":"A B C T dB nB","132":"eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 8cb48bb2011967..69dd78ab7d5462 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 aca243153c66cc..e84135cbd7bb95 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","257":"pB eB I g J qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","257":"qB fB I h J rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 607d50ef67228d..f88dcafceb01d4 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"F B C 3B 4B 5B 6B cB mB 7B dB","16":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"2":"T","16":"A B C cB mB dB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"16":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"16":"lC"},S:{"1":"mC"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"F B C 4B 5B 6B 7B dB nB 8B eB","16":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"2":"T","16":"A B C dB nB eB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"16":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"16":"mC"},S:{"1":"nC"}},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 4dd858a75650af..08b57b2813d7d7 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 oB"},B:{"2":"C K","132":"L G M N O","322":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j qB rB","132":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","194":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB","322":"WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"132":"mC"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K","132":"L G M N O","322":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k rB sB","132":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","194":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB","322":"XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"132":"nC"}},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 eec4c4d9b6341c..f4d1f0632c8e6a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"1":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB xB"},F:{"1":"8 9 B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"0 1 2 3 4 5 6 7 F G M N O h i j k l m n o p q r s t u v w x y z"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"1":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n 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":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB yB"},F:{"1":"9 B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"0 1 2 3 4 5 6 7 8 F G M N O i j k l m n o p q r s t u v w x y z"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 29a107b878caee..0fdfd2a5136523 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6a2318c9c62cda..00f674d8b43d2e 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b166181b606295..7b70dc1f2a0a94 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB qB rB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB"},E:{"1":"C K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB cB"},F:{"1":"IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB rB sB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB dB"},F:{"1":"JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 acba6c21b436cc..b01ff7211a60b6 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3ef0cec580c573..72d58053665e33 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3bbcf45c5a1c43..9613edfcc3c403 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 oB"},B:{"1":"K L G M N O","132":"P Q R U V W X Y Z a b c d e S f H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m n o p","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","132":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","132":"T"},L:{"132":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I","132":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O","132":"P Q R U V W X Y Z a b c d e f S g H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB"},D:{"2":"I h J D E F A B C K L G M N O i j k l m n o p q","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","132":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","132":"T"},L:{"132":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I","132":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 03873048f97120..2f6053e883ab1c 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB qB rB","132":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","66":"KB fB LB gB"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","260":"PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","260":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","260":"T"},L:{"1":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC","260":"eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB rB sB","132":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","260":"QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","260":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","260":"T"},L:{"1":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC","260":"fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 44bacf7420d189..211f702daa49f0 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K","194":"L"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB"},D:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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 cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB","514":"kB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC","514":"GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K","194":"L"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB"},D:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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 dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB","514":"lB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC","514":"HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 7385fd18d14cec..1111de6641bd4b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B 4B","16":"5B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B 5B","16":"6B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 183bff5793b19c..96c034a16715ad 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K","33":"L G M N O h i j k l m n o p q r s t u v"},E:{"1":"G 0B 1B lB 2B","2":"I g uB jB vB","33":"J D E F A B C K L wB xB yB kB cB dB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j"},G:{"1":"QC RC lB","2":"jB 8B nB 9B","33":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K","33":"L G M N O i j k l m n o p q r s t u v w"},E:{"1":"G 1B 2B mB 3B","2":"I h vB kB wB","33":"J D E F A B C K L xB yB zB lB dB eB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k"},G:{"1":"RC SC mB","2":"kB 9B oB AC","33":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d3b471c3de8d4b..bc3aae8080ce06 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","132":"I g J D E F A B C K L G M N O h qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F","4":"3B 4B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","2":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","132":"I h J D E F A B C K L G M N O i rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F","4":"4B 5B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","2":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0de2247080371d..2fcab3a9471c5b 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 oB"},B:{"1":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","194":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","322":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB"},F:{"2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB","322":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"322":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","322":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB"},F:{"2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB","322":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"322":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 856d5429575990..af92a8c071dc95 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 d01a400abe7051..22691df7b94086 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB","129":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB","129":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 6e1ce3bdcc2350..48108034f8bff7 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N","194":"O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB qB rB","66":"HB IB JB KB fB LB gB MB NB T","260":"OB","516":"PB"},D:{"1":"TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB","66":"QB RB SB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1090":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I aC bC cC dC eC kB fC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N","194":"O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB rB sB","66":"IB JB KB LB gB MB hB NB OB T","260":"PB","516":"QB"},D:{"1":"UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB","66":"RB SB TB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1090":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I bC cC dC eC fC lB gC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c4fef4c0ce1f06..1f13cdf7ec983b 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB qB rB","194":"aB bB P Q R hB U V W X Y Z a b c d","257":"e S f H iB"},D:{"1":"W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB rB sB","194":"bB cB P Q R iB U V W X Y Z a b c d","257":"e f S g H jB"},D:{"1":"W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 7166fbacb2082f..ca7329a831e149 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C vB wB xB yB kB cB dB","132":"I K uB jB zB","2050":"L G 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","132":"F 3B 4B"},G:{"2":"jB 8B nB","772":"E 9B AC BC CC DC EC FC GC HC IC JC KC","2050":"LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC XC YC","132":"WC nB"},J:{"260":"D A"},K:{"1":"B C cB mB dB","2":"T","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"2":"I","1028":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1028":"lC"},S:{"1":"mC"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C wB xB yB zB lB dB eB","132":"I K vB kB 0B","2050":"L G 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","132":"F 4B 5B"},G:{"2":"kB 9B oB","772":"E AC BC CC DC EC FC GC HC IC JC KC LC","2050":"MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC YC ZC","132":"XC oB"},J:{"260":"D A"},K:{"1":"B C dB nB eB","2":"T","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"2":"I","1028":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1028":"mC"},S:{"1":"nC"}},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 88a1e4c89d1301..cdb52a774ad6f3 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 oB"},B:{"1":"G M N O","33":"C K L P Q R U V W X Y Z a b c d e S f H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"L G 0B 1B lB 2B","16":"uB jB","33":"I g J D E F A B C K vB wB xB yB kB cB dB zB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"PC QC RC lB","16":"jB 8B nB 9B","33":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"16":"eB TC UC VC","33":"I H WC nB XC YC"},J:{"33":"D A"},K:{"16":"A B C cB mB dB","33":"T"},L:{"33":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"1":"mC"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O","33":"C K L P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"L G 1B 2B mB 3B","16":"vB kB","33":"I h J D E F A B C K wB xB yB zB lB dB eB 0B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"QC RC SC mB","16":"kB 9B oB AC","33":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"16":"fB UC VC WC","33":"I H XC oB YC ZC"},J:{"33":"D A"},K:{"16":"A B C dB nB eB","33":"T"},L:{"33":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"1":"nC"}},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 b56b6fee13ac47..df21519d5ca4f9 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","36":"rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","516":"I g J D E F A B C K L"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","772":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B","36":"4B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","4":"jB 8B nB AC","516":"9B"},H:{"132":"SC"},I:{"1":"H XC YC","36":"TC","516":"eB I WC nB","548":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","36":"sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","516":"I h J D E F A B C K L"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","772":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B","36":"5B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","4":"kB 9B oB BC","516":"AC"},H:{"132":"TC"},I:{"1":"H YC ZC","36":"UC","516":"fB I XC oB","548":"VC WC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 7139f09cce0e48..a35036f6ba07cd 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 22a4027538714d..879b60cba730e7 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 oB","132":"F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F G M N O 3B 4B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E pB","132":"F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F G M N O 4B 5B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 ecec1083170a4b..d8753df36c1a96 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f qB rB","16":"H iB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g rB sB","16":"H jB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 28885b41d1f819..33bccf047eaa6d 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB","2":"pB eB I g J D E F EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","132":"0 1 2 3 4 M N O h i j k l m n o p q r s t u v w x y z","164":"A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y","66":"z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB","2":"qB fB I h J D E F FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","132":"0 1 2 3 4 5 M N O i j k l m n o p q r s t u v w x y z","164":"A B C K L G"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","66":"0"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0167f4f7dad8ff..d3a6e09617da97 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 78ebe482825dd1..b7d6ce32f42b42 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB"},D:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"2":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB"},D:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"2":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 0bc72a60e2bf92..bd2daf6f843acd 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T qB rB","194":"OB PB QB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB zB"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T rB sB","194":"PB QB RB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB 0B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 4bf0beeb7891da..bc03f0bfae0e3b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D","36":"E F A B C K L G M N O h"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"H","2":"TC UC VC","36":"eB I WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D","36":"E F A B C K L G M N O i"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"H","2":"UC VC WC","36":"fB I XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 adea76066e5285..eb080b9039a1bf 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 oB","129":"A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D","33":"E F A B C K L G M N O h i j k"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB TC UC VC","33":"I WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F pB","129":"A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D","33":"E F A B C K L G M N O i j k l"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB UC VC WC","33":"I XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 bf407e275382e0..75fd35bd1bf36c 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","129":"C K"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","260":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB","804":"I g J D E F A B C K L qB rB"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","260":"DB EB FB GB HB","388":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB","1412":"G M N O h i j k l m n o p q r","1956":"I g J D E F A B C K L"},E:{"129":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","1412":"J D E F wB xB","1956":"I g uB jB vB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B","260":"0 1 2 3 4","388":"G M N O h i j k l m n o p q r s t u v w x y z","1796":"5B 6B","1828":"B C cB mB 7B dB"},G:{"129":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","1412":"E AC BC CC DC","1956":"jB 8B nB 9B"},H:{"1828":"SC"},I:{"1":"H","388":"XC YC","1956":"eB I TC UC VC WC nB"},J:{"1412":"A","1924":"D"},K:{"1":"T","2":"A","1828":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"388":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","260":"aC bC","388":"I"},Q:{"260":"kC"},R:{"260":"lC"},S:{"260":"mC"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","129":"C K"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","260":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB","804":"I h J D E F A B C K L rB sB"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","260":"EB FB GB HB IB","388":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB","1412":"G M N O i j k l m n o p q r s","1956":"I h J D E F A B C K L"},E:{"129":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","1412":"J D E F xB yB","1956":"I h vB kB wB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B","260":"1 2 3 4 5","388":"0 G M N O i j k l m n o p q r s t u v w x y z","1796":"6B 7B","1828":"B C dB nB 8B eB"},G:{"129":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","1412":"E BC CC DC EC","1956":"kB 9B oB AC"},H:{"1828":"TC"},I:{"1":"H","388":"YC ZC","1956":"fB I UC VC WC XC oB"},J:{"1412":"A","1924":"D"},K:{"1":"T","2":"A","1828":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"388":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","260":"bC cC","388":"I"},Q:{"260":"lC"},R:{"260":"mC"},S:{"260":"nC"}},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 3998f4c5fea2d5..889ca6cdbabded 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","257":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB","289":"eB qB rB","292":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I"},E:{"1":"g D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","33":"I uB jB","129":"J vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"jB"},H:{"2":"SC"},I:{"1":"eB I H UC VC WC nB XC YC","33":"TC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"257":"mC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","257":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB","289":"fB rB sB","292":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I"},E:{"1":"h D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","33":"I vB kB","129":"J wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"kB"},H:{"2":"TC"},I:{"1":"fB I H VC WC XC oB YC ZC","33":"UC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"257":"nC"}},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 23b12a6ca51693..e47df5f1dd7bd4 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"2B","2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 e84acbedbfb2ba..56da6500c4adfe 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB","194":"BB","257":"CB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","513":"B C cB dB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB","194":"y z"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB","194":"CB","257":"DB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","513":"B C dB eB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB","194":"0 z"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 2cf9a581f569f1..5ef29ce061da1a 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 oB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"I g J D E F A B C K L G"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O","33":"h i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"AC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","132":"XC YC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E pB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"I h J D E F A B C K L G"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O","33":"i j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"BC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","132":"YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6ee1328db40016..63899576ad6439 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 282da00d3923db..6a62498c4e6be0 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":"oB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","8":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","8":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","8":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","8":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5561a53499c4cb..860e87db31fb8a 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":"oB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","132":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","132":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"260":"SC"},I:{"1":"eB I H WC nB XC YC","132":"TC UC VC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","132":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","132":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"260":"TC"},I:{"1":"fB I H XC oB YC ZC","132":"UC VC WC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 fa257220a110ef..6cb0e0aeb80eaa 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 oB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E pB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6fe3f1f9fdefcd..95b18c0e39a814 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u","129":"0 1 2 3 4 5 6 7 8 9 v w x y z AB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC","16":"YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v","129":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC","16":"ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 7bcf5e4564a28d..7db9813a219143 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n qB rB","194":"0 1 2 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 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B 4B","16":"5B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o rB sB","194":"0 1 2 3 p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B 5B","16":"6B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b99849d47a5d94..bb432be9c9cd90 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k qB rB"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","16":"C"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 9ddc6bd100366d..2e09ea61ccbf6b 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 oB","1924":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB qB","516":"m n","772":"I g J D E F A B C K L G M N O h i j k l rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I g J D","516":"m n o p","772":"l","900":"E F A B C K L G M N O h i j k"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","8":"I g uB jB","900":"J vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","8":"F B 3B 4B 5B 6B cB","900":"C mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB","900":"9B AC"},H:{"900":"SC"},I:{"1":"H XC YC","8":"TC UC VC","900":"eB I WC nB"},J:{"1":"A","900":"D"},K:{"1":"T","8":"A B","900":"C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F pB","1924":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB rB","516":"n o","772":"I h J D E F A B C K L G M N O i j k l m sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I h J D","516":"n o p q","772":"m","900":"E F A B C K L G M N O i j k l"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","8":"I h vB kB","900":"J wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","8":"F B 4B 5B 6B 7B dB","900":"C nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB","900":"AC BC"},H:{"900":"TC"},I:{"1":"H YC ZC","8":"UC VC WC","900":"fB I XC oB"},J:{"1":"A","900":"D"},K:{"1":"T","8":"A B","900":"C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3c0ce2c80e4846..3f9293f25e5887 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 0cb386a60a241b..42da06483973aa 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 oB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j qB rB","772":"0 1 2 k l m n o p q r s t u v w x y z","4100":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I g J D E F A B C","2564":"0 1 2 3 4 K L G M N O h i j k l m n o p q r s t u v w x y z","8196":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","10244":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"1":"C K L G dB zB 0B 1B lB 2B","16":"uB jB","2308":"A B kB cB","2820":"I g J D E F vB wB xB yB"},F:{"2":"F B 3B 4B 5B 6B cB mB 7B","16":"C","516":"dB","2564":"G M N O h i j k l m n o p q r","8196":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","10244":"0 1 2 3 4 5 6 s t u v w x y z"},G:{"1":"JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","2820":"E 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","260":"H","2308":"XC YC"},J:{"2":"D","2308":"A"},K:{"2":"A B C cB mB","16":"dB","260":"T"},L:{"8196":"H"},M:{"1028":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2052":"aC bC","2308":"I","8196":"cC dC eC kB fC gC hC iC jC"},Q:{"10244":"kC"},R:{"2052":"lC"},S:{"4100":"mC"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B pB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k rB sB","772":"0 1 2 3 l m n o p q r s t u v w x y z","4100":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I h J D E F A B C","2564":"0 1 2 3 4 5 K L G M N O i j k l m n o p q r s t u v w x y z","8196":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","10244":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","16":"vB kB","2308":"A B lB dB","2820":"I h J D E F wB xB yB zB"},F:{"2":"F B 4B 5B 6B 7B dB nB 8B","16":"C","516":"eB","2564":"G M N O i j k l m n o p q r s","8196":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","10244":"0 1 2 3 4 5 6 7 t u v w x y z"},G:{"1":"KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","2820":"E AC BC CC DC EC FC GC HC IC JC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","260":"H","2308":"YC ZC"},J:{"2":"D","2308":"A"},K:{"2":"A B C dB nB","16":"eB","260":"T"},L:{"8196":"H"},M:{"1028":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2052":"bC cC","2308":"I","8196":"dC eC fC lB gC hC iC jC kC"},Q:{"10244":"lC"},R:{"2052":"mC"},S:{"4100":"nC"}},B:5,C:"Synchronous Clipboard API"}; 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 5731be25e20029..f73052ab39c3fe 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 oB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB","513":"UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","129":"B C K cB dB zB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 3B 4B 5B 6B cB mB 7B dB","513":"KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"1":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E pB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB","513":"VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","129":"B C K dB eB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 4B 5B 6B 7B dB nB 8B eB","513":"LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"1":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 7d9bca8a905aa2..72c40ee8ed4461 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","132":"G M N O h i j k l m n o p q r"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","16":"I g J uB jB","132":"D E F wB xB yB","260":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","16":"F B 3B 4B 5B 6B cB mB","132":"G M"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB","132":"E 8B nB 9B AC BC CC DC EC"},H:{"1":"SC"},I:{"1":"H XC YC","16":"TC UC","132":"eB I VC WC nB"},J:{"132":"D A"},K:{"1":"C T dB","16":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","132":"G M N O i j k l m n o p q r s"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","16":"I h J vB kB","132":"D E F xB yB zB","260":"wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","16":"F B 4B 5B 6B 7B dB nB","132":"G M"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB","132":"E 9B oB AC BC CC DC EC FC"},H:{"1":"TC"},I:{"1":"H YC ZC","16":"UC VC","132":"fB I WC XC oB"},J:{"132":"D A"},K:{"1":"C T eB","16":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4a4dddd5cf9da4..8945eac28bdd68 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 oB","132":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F 3B 4B 5B 6B"},G:{"1":"jB 8B nB 9B","513":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"4097":"SC"},I:{"1025":"eB I H TC UC VC WC nB XC YC"},J:{"258":"D A"},K:{"2":"A","258":"B C cB mB dB","1025":"T"},L:{"1025":"H"},M:{"2049":"S"},N:{"258":"A B"},O:{"258":"ZC"},P:{"1025":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1025":"lC"},S:{"1":"mC"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D pB","132":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F 4B 5B 6B 7B"},G:{"1":"kB 9B oB AC","513":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"4097":"TC"},I:{"1025":"fB I H UC VC WC XC oB YC ZC"},J:{"258":"D A"},K:{"2":"A","258":"B C dB nB eB","1025":"T"},L:{"1025":"H"},M:{"2049":"S"},N:{"258":"A B"},O:{"258":"aC"},P:{"1025":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1025":"mC"},S:{"1":"nC"}},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 c2059953cb83df..cf646677aa86be 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F 3B 4B 5B 6B","16":"B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"T","16":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F 4B 5B 6B 7B","16":"B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"T","16":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 7d92b0a641c8cd..be7d570e1c1bf3 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 oB","2052":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"pB eB I g J D E F A B C qB rB","260":"K L G M N O h i j k l m n o p q r s t u v w x"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","260":"I g J D E F A B C K L G M N O h i","772":"0 1 2 j k l m n o p q r s t u v w x y z","1028":"3 4 5 6 7 8 9 AB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","260":"I g A uB jB kB","772":"J D E F vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B","132":"B 4B 5B 6B cB mB","644":"C 7B dB","772":"G M N O h i j k l m n o p","1028":"q r s t u v w x"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","260":"jB 8B nB FC GC","772":"E 9B AC BC CC DC EC"},H:{"644":"SC"},I:{"1":"H","16":"TC UC","260":"VC","772":"eB I WC nB XC YC"},J:{"772":"D A"},K:{"1":"T","132":"A B cB mB","644":"C dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","1028":"I"},Q:{"1":"kC"},R:{"1028":"lC"},S:{"1":"mC"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A pB","2052":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"qB fB I h J D E F A B C rB sB","260":"K L G M N O i j k l m n o p q r s t u v w x y"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","260":"I h J D E F A B C K L G M N O i j","772":"0 1 2 3 k l m n o p q r s t u v w x y z","1028":"4 5 6 7 8 9 AB BB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","260":"I h A vB kB lB","772":"J D E F wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B","132":"B 5B 6B 7B dB nB","644":"C 8B eB","772":"G M N O i j k l m n o p q","1028":"r s t u v w x y"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","260":"kB 9B oB GC HC","772":"E AC BC CC DC EC FC"},H:{"644":"TC"},I:{"1":"H","16":"UC VC","260":"WC","772":"fB I XC oB YC ZC"},J:{"772":"D A"},K:{"1":"T","132":"A B dB nB","644":"C eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","1028":"I"},Q:{"1":"lC"},R:{"1028":"mC"},S:{"1":"nC"}},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 0023df51714e9b..16e7ff3aa6b4a9 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 oB","900":"A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","388":"L G M","900":"C K"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","260":"BB CB","388":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB","900":"I g J D E F A B C K L G M N O h i j k l m n o p q"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","388":"0 1 n o p q r s t u v w x y z","900":"G M N O h i j k l m"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","16":"I g uB jB","388":"E F xB yB","900":"J D vB wB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B 3B 4B 5B 6B cB mB","388":"G M N O h i j k l m n o","900":"C 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB","388":"E BC CC DC EC","900":"9B AC"},H:{"2":"SC"},I:{"1":"H","16":"eB TC UC VC","388":"XC YC","900":"I WC nB"},J:{"16":"D","388":"A"},K:{"1":"T","16":"A B cB mB","900":"C dB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"388":"mC"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F pB","900":"A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","388":"L G M","900":"C K"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","260":"CB DB","388":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB","900":"I h J D E F A B C K L G M N O i j k l m n o p q r"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","388":"0 1 2 o p q r s t u v w x y z","900":"G M N O i j k l m n"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB","388":"E F yB zB","900":"J D wB xB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B 4B 5B 6B 7B dB nB","388":"G M N O i j k l m n o p","900":"C 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB","388":"E CC DC EC FC","900":"AC BC"},H:{"2":"TC"},I:{"1":"H","16":"fB UC VC WC","388":"YC ZC","900":"I XC oB"},J:{"16":"D","388":"A"},K:{"1":"T","16":"A B dB nB","900":"C eB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"388":"nC"}},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 ba9d625b7450b1..e102223c752793 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB","4":"eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB","4":"fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8d9aac37c0e84c..e29522f520d4ce 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 oB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","129":"I g J D E F A B C K L G M N O h i j k"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K","257":"L G M N O h i j k l m"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","257":"J wB","260":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","257":"AC","260":"9B"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D","257":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"257":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","129":"I h J D E F A B C K L G M N O i j k l"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K","257":"L G M N O i j k l m n"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","257":"J xB","260":"wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","257":"BC","260":"AC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D","257":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"257":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 bd1a2e97a41ab7..631402def3135c 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L","32772":"G M N O"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB","132":"t u v w","260":"x","516":"0 1 2 3 4 5 6 y z","8196":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x","1028":"0 y z","2052":"1"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k 3B 4B 5B 6B cB mB 7B dB","1028":"l m n","2052":"o"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"4100":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"8196":"mC"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L","32772":"G M N O"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB","132":"u v w x","260":"y","516":"0 1 2 3 4 5 6 7 z","8196":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y","1028":"0 1 z","2052":"2"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l 4B 5B 6B 7B dB nB 8B eB","1028":"m n o","2052":"p"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"4100":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"8196":"nC"}},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 0336b7ff02b49f..efc6af18aef97e 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 oB"},B:{"1":"Y Z a b c d e S f H","2":"C K L G M N O","194":"P Q R U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB","194":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB 3B 4B 5B 6B cB mB 7B dB","194":"DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"Y Z a b c d e f S g H","2":"C K L G M N O","194":"P Q R U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB","194":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB 4B 5B 6B 7B dB nB 8B eB","194":"EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 634adecaa06449..c0acf53c559a47 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 oB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB","1025":"gB MB NB T OB PB QB RB SB TB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C"},E:{"2":"uB jB","513":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","644":"I g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B"},G:{"513":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","644":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"H XC YC","132":"eB I TC UC VC WC nB"},J:{"1":"A","132":"D"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","132":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D pB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB","1025":"hB NB OB T PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C"},E:{"2":"vB kB","513":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","644":"I h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B"},G:{"513":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","644":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"H YC ZC","132":"fB I UC VC WC XC oB"},J:{"1":"A","132":"D"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","132":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 90dff4da2c06f0..cb7478162aba62 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","3076":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB","132":"CB DB","260":"EB FB","516":"GB HB IB JB KB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y 3B 4B 5B 6B cB mB 7B dB","132":"0 z","260":"1 2","516":"3 4 5 6 7"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"3076":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","16":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"3076":"mC"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","3076":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB","132":"DB EB","260":"FB GB","516":"HB IB JB KB LB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"0 1","260":"2 3","516":"4 5 6 7 8"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"3076":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","16":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"3076":"nC"}},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 99413829d2f55c..6b4f280b1c1ad2 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","66":"AB BB CB","129":"DB EB FB GB HB IB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB","66":"BB CB DB","129":"EB FB GB HB IB JB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 2de9007affabe8..4bb545edd2a163 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":"oB","8":"J D E F A","164":"B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","513":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB","66":"u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","8":"I g J D uB jB vB wB","289":"E F A xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","8":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB 9B AC BC","289":"E CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","8":"eB I TC UC VC WC nB XC YC"},J:{"8":"D A"},K:{"1":"T","8":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","164":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"pB","8":"J D E F A","164":"B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","513":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB","66":"v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","8":"I h J D vB kB wB xB","289":"E F A yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","8":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB AC BC CC","289":"E DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","8":"fB I UC VC WC XC oB YC ZC"},J:{"8":"D A"},K:{"1":"T","8":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","164":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 13c9f71c3184f1..4a65deb050918f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB XC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f145184329a574..44a4821cb7070c 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I qB rB","33":"g J D E F A B C K L G"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"uB jB","33":"J D E vB wB xB","292":"I g"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B","33":"C G M N O h i j k l m n o p q r"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"E AC BC CC","164":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"H","33":"I WC nB XC YC","164":"eB TC UC VC"},J:{"33":"D A"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I rB sB","33":"h J D E F A B C K L G"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB","33":"J D E wB xB yB","292":"I h"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B","33":"C G M N O i j k l m n o p q r s"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"E BC CC DC","164":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"H","33":"I XC oB YC ZC","164":"fB UC VC WC"},J:{"33":"D A"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 472b079ce9ac9e..9b903c284db282 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB","33":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB qB rB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","16":"I g J uB jB vB","33":"D E wB xB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B","33":"E AC BC CC"},H:{"2":"SC"},I:{"1":"H","16":"eB I TC UC VC WC nB","33":"XC YC"},J:{"16":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"ZC"},P:{"1":"eC kB fC gC hC iC jC","16":"I","33":"aC bC cC dC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"33":"mC"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB","33":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB rB sB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","16":"I h J vB kB wB","33":"D E xB yB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC","33":"E BC CC DC"},H:{"2":"TC"},I:{"1":"H","16":"fB I UC VC WC XC oB","33":"YC ZC"},J:{"16":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"aC"},P:{"1":"fC lB gC hC iC jC kC","16":"I","33":"bC cC dC eC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"33":"nC"}},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 780947a670bc62..1b347c8361895f 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 oB"},B:{"1":"V W X Y Z a b c d e S f H","33":"U","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R hB U V W X Y Z a b c d e S f H iB","164":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","676":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w qB rB"},D:{"1":"V W X Y Z a b c d e S f H iB sB tB","33":"U","164":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R"},E:{"1":"2B","164":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},F:{"1":"WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"TB UB VB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB"},G:{"164":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","164":"eB I TC UC VC WC nB XC YC"},J:{"164":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","388":"B"},O:{"164":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"164":"mC"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"V W X Y Z a b c d e f S g H","33":"U","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R iB U V W X Y Z a b c d e f S g H jB","164":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","676":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x rB sB"},D:{"1":"V W X Y Z a b c d e f S g H jB tB uB","33":"U","164":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R"},E:{"1":"3B","164":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"1":"XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"UB VB WB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB"},G:{"164":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","164":"fB I UC VC WC XC oB YC ZC"},J:{"164":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","388":"B"},O:{"164":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"164":"nC"}},B:5,C:"CSS Appearance"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-apply-rule.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-apply-rule.js index ea9f6b6052326e..9476fc249baf3d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-apply-rule.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-apply-rule.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B oB"},B:{"2":"C K L G M N O","194":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"194":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I","194":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"194":"lC"},S:{"2":"mC"}},B:7,C:"CSS @apply rule"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","194":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"194":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I","194":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"194":"mC"},S:{"2":"nC"}},B:7,C:"CSS @apply rule"}; 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 1ac8e17bb7dac0..0cd599be3842e9 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b","132":"c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b","132":"c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB 3B 4B 5B 6B cB mB 7B dB","132":"aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","132":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","132":"T"},L:{"132":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"132":"mC"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b","132":"c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b","132":"c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB 4B 5B 6B 7B dB nB 8B eB","132":"bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","132":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","132":"T"},L:{"132":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"132":"nC"}},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 7bcbbd6f6d6f0d..79598b265823dc 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 iB sB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f"},L:{"1":"H iB sB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f"},B:{"1":"H iB sB","2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e S f"},C:{"1":"X Y Z a b c d e S f H iB sB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W qB rB"},M:{"1":"X Y Z a b c d e S f H iB sB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB P Q R hB U V W"},A:{"2":"pB eB I g J D E F A B oB"},F:{"1":"hB U V","2":"pB eB I g J D E F A B C qB rB vB xB yB eC kB 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R"},K:{"33":"3 4 5 6 7 8 9 L G M O h i j k m n o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB","34":"B C kB cB mB dB"},E:{"33":"eB I g J D E F A B C K L G uB vB yB kB cB dB zB 0B 1B lB","34":"pB"},G:{"33":"pB eB I g J D E F A B C K L G jB EC GC 1B lB"},P:{"33":"TC jB dC eC gC dB hC MC iC jC"},I:{"1":"H iB sB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f UC XC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"1":"g H jB tB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S"},L:{"1":"g H jB tB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S"},B:{"1":"g H jB tB","2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e f S"},C:{"1":"X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W rB sB"},M:{"1":"X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB P Q R iB U V W"},A:{"2":"qB fB I h J D E F A B pB"},F:{"1":"iB U V","2":"qB fB I h J D E F A B C rB sB wB yB zB fC lB 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R"},K:{"33":"0 4 5 6 7 8 9 L G M O i j k l n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB","34":"B C lB dB nB eB"},E:{"33":"fB I h J D E F A B C K L G vB wB zB lB dB eB 0B 1B 2B mB","34":"qB"},G:{"33":"qB fB I h J D E F A B C K L G kB FC HC 2B mB"},P:{"33":"UC kB eC fC hC eB iC NC jC kC"},I:{"1":"g H jB tB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S VC YC"}},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 825865c0ad50b2..451440c1e21008 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB qB rB","578":"TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB"},E:{"2":"I g J D E uB jB vB wB xB","33":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v 3B 4B 5B 6B cB mB 7B dB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E jB 8B nB 9B AC BC CC","33":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"578":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I","194":"aC bC cC dC eC kB fC"},Q:{"194":"kC"},R:{"194":"lC"},S:{"2":"mC"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB rB sB","578":"UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB"},E:{"2":"I h J D E vB kB wB xB yB","33":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w 4B 5B 6B 7B dB nB 8B eB","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"},G:{"2":"E kB 9B oB AC BC CC DC","33":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"578":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I","194":"bC cC dC eC fC lB gC"},Q:{"194":"lC"},R:{"194":"mC"},S:{"2":"nC"}},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 82b43f6e7db024..2d7c2a5e5a64f9 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a00c4c30923d7a..ef2302e15db2b3 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r qB rB"},D:{"1":"0 1 2 3 4 5 6 7 9 x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w","260":"8"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","132":"E F A xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j 3B 4B 5B 6B cB mB 7B dB","260":"v"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","132":"E CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x","260":"9"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","132":"E F A yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k 4B 5B 6B 7B dB nB 8B eB","260":"w"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","132":"E DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d3f24a15b23e12..852d7c936ffab4 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 oB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB"},D:{"2":"I g J D E F A B C K L G M N O h i j","164":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J uB jB vB","164":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F 3B 4B 5B 6B","129":"B C cB mB 7B dB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB 9B AC","164":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"132":"SC"},I:{"2":"eB I TC UC VC WC nB","164":"H XC YC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C cB mB dB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"1":"mC"}},B:5,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB"},D:{"2":"I h J D E F A B C K L G M N O i j k","164":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J vB kB wB","164":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F 4B 5B 6B 7B","129":"B C dB nB 8B eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB AC BC","164":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"132":"TC"},I:{"2":"fB I UC VC WC XC oB","164":"H YC ZC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C dB nB eB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"1":"nC"}},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 3cb139f1f0c6e8..564f901745e541 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","33":"qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I g J D E F"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","33":"g","164":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"8B nB","164":"jB"},H:{"2":"SC"},I:{"1":"I H WC nB XC YC","164":"eB TC UC VC"},J:{"1":"A","33":"D"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","33":"rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I h J D E F"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","33":"h","164":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"9B oB","164":"kB"},H:{"2":"TC"},I:{"1":"I H XC oB YC ZC","164":"fB UC VC WC"},J:{"1":"A","33":"D"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4db47351866934..5c160e837b8afc 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"uB jB","33":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j k l m n o p q r s t u v w"},G:{"33":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"H","33":"eB I TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"aC bC cC dC eC kB fC gC hC iC jC","33":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB"},E:{"2":"vB kB","33":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k l m n o p q r s t u v w x"},G:{"33":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"H","33":"fB I UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"bC cC dC eC fC lB gC hC iC jC kC","33":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 7b8a51df3dfa4f..16571b01dab9de 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 a55587ba0d12dd..16121ff0dfae69 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f","322":"H"},C:{"1":"iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e qB rB","194":"S f H"},D:{"1":"tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f","322":"H iB sB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB","578":"2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S","322":"g H"},C:{"1":"H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e rB sB","194":"f S g"},D:{"1":"tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S","322":"g H jB"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 0d831237d0a89f..a907e95e856d7f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 bec100ba59dde7..feb1859c4d2c6b 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 oB"},B:{"2":"C K L G M N","260":"P Q R U V W X Y Z a b c d e S f H","3138":"O"},C:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","132":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","644":"9 AB BB CB DB EB FB"},D:{"2":"I g J D E F A B C K L G M N O h i j k l","260":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","292":"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"},E:{"2":"I g J uB jB vB wB","292":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","260":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","292":"0 1 2 3 G M N O h i j k l m n o p q r s t u v w x y z"},G:{"2":"jB 8B nB 9B AC","292":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","260":"H","292":"XC YC"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","260":"T"},L:{"260":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"ZC"},P:{"292":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"292":"kC"},R:{"260":"lC"},S:{"644":"mC"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N","260":"P Q R U V W X Y Z a b c d e f S g H","3138":"O"},C:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","132":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","644":"AB BB CB DB EB FB GB"},D:{"2":"I h J D E F A B C K L G M N O i j k l m","260":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","292":"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"},E:{"2":"I h J vB kB wB xB","292":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","292":"0 1 2 3 4 G M N O i j k l m n o p q r s t u v w x y z"},G:{"2":"kB 9B oB AC BC","292":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","260":"H","292":"YC ZC"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","260":"T"},L:{"260":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"aC"},P:{"292":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"292":"lC"},R:{"260":"mC"},S:{"644":"nC"}},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 28226563fbdd79..66a0c0a50d4998 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 oB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"16":"I g J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g uB jB vB","33":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"16":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"16":"eB I TC UC VC WC nB XC YC","33":"H"},J:{"16":"D A"},K:{"2":"A B C cB mB dB","33":"T"},L:{"16":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"16":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"16":"lC"},S:{"1":"mC"}},B:5,C:"CSS color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB"},D:{"16":"I h J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h vB kB wB","33":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"16":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"16":"fB I UC VC WC XC oB YC ZC","33":"H"},J:{"16":"D A"},K:{"2":"A B C dB nB eB","33":"T"},L:{"16":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"16":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"16":"mC"},S:{"1":"nC"}},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 b732833aefb086..6d6521a1c3ccc1 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"G 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB","132":"B C K L kB cB dB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC","132":"GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"G 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB","132":"B C K L lB dB eB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC","132":"HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 006a7ec421fc7b..244392bbc7e58d 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB qB rB","578":"YB ZB aB bB P Q R hB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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":"fB LB gB MB NB T OB PB QB RB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB rB sB","578":"ZB aB bB cB P Q R iB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n 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":"gB MB hB NB OB T PB QB RB SB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 3781b253c3c5d4..c23766f0cd14a7 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d","194":"e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c","194":"e S f H iB sB tB","450":"d"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB 3B 4B 5B 6B cB mB 7B dB","194":"P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS Container Queries"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d","194":"e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c","194":"e f S g H jB tB uB","450":"d"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 4B 5B 6B 7B dB nB 8B eB","194":"P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:7,C:"CSS Container Queries"}; 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 df0b4c1b4ff07e..8841298785445a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB"},D:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","66":"DB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB","578":"2B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","66":"0 1"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB"},D:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","66":"EB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB","578":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","66":"1 2"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 3dcebc4afadb5f..d1d59714e12415 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 oB"},B:{"1":"W X Y Z a b c d e S f H","2":"C K L G M N O P Q R U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"W X Y Z a b c d e f S g H","2":"C K L G M N O P Q R U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c0b38a2fb7c02f..67684c37b4e94b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0688fb8dd2c7d4..388e4a2bc35097 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 oB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"e S f H iB","2":"pB eB qB","513":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T rB"},D:{"2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","1025":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","164":"J","4644":"D E F wB xB yB"},F:{"2":"F B G M N O h i j k l m n o p 3B 4B 5B 6B cB mB","545":"C 7B dB","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 KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","4260":"9B AC","4644":"E BC CC DC EC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B cB mB","545":"C dB","1025":"T"},L:{"1025":"H"},M:{"545":"S"},N:{"2340":"A B"},O:{"1":"ZC"},P:{"1025":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1025":"kC"},R:{"1025":"lC"},S:{"4097":"mC"}},B:7,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J pB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"e f S g H jB","2":"qB fB rB","513":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d","545":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T sB"},D:{"2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","1025":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","164":"J","4644":"D E F xB yB zB"},F:{"2":"F B G M N O i j k l m n o p q 4B 5B 6B 7B dB nB","545":"C 8B eB","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 LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","4260":"AC BC","4644":"E CC DC EC FC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B dB nB","545":"C eB","1025":"T"},L:{"1025":"H"},M:{"545":"S"},N:{"2340":"A B"},O:{"1":"aC"},P:{"1025":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1025":"lC"},R:{"1025":"mC"},S:{"4097":"nC"}},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 bd7c95f430a792..fedb4fe1ed36db 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 oB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"I g J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","33":"J D E F vB wB xB yB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","33":"E 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","33":"H XC YC"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"33":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"2":"mC"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"I h J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","33":"J D E F wB xB yB zB"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","33":"E AC BC CC DC EC FC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","33":"H YC ZC"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"33":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"2":"nC"}},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 358864e55de0ac..520b59aae6ae49 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB"},D:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","16":"I g uB jB","132":"J D E F A vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B 3B 4B 5B 6B cB mB","132":"G M N O h i j k l m n o p q r s t u v w x y z","260":"C 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B AC","132":"E BC CC DC EC FC"},H:{"260":"SC"},I:{"1":"H","16":"eB TC UC VC","132":"I WC nB XC YC"},J:{"16":"D","132":"A"},K:{"1":"T","16":"A B C cB mB","260":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","132":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:7,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB"},D:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB","132":"J D E F A wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B 4B 5B 6B 7B dB nB","132":"0 G M N O i j k l m n o p q r s t u v w x y z","260":"C 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC BC","132":"E CC DC EC FC GC"},H:{"260":"TC"},I:{"1":"H","16":"fB UC VC WC","132":"I XC oB YC ZC"},J:{"16":"D","132":"A"},K:{"1":"T","16":"A B C dB nB","260":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","132":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 0bf19401b24187..a6bf9f800834f1 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 oB"},B:{"2":"C K L G M N O Q R U V W X Y Z a b c d e S f H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"B","2":"I g J D E F A C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O Q R U V W X Y Z a b c d e f S g H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"B","2":"I h J D E F A C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 eecab8761a7215..6ea5ab703c424e 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 oB","164":"A B"},B:{"66":"P Q R U V W X Y Z a b c d e S f H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m n o p q","66":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","66":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"292":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A T","292":"B C cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"164":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"66":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F pB","164":"A B"},B:{"66":"P Q R U V W X Y Z a b c d e f S g H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"I h J D E F A B C K L G M N O i j k l m n o p q r","66":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","66":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"292":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A T","292":"B C dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"164":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"66":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1e0b3d03167299..691431bc61ffdc 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M qB rB","33":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b","194":"c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"33":"mC"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M rB sB","33":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b","194":"c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"33":"nC"}},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 e8f82477c799da..ba985360d01f6d 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O","260":"P Q R U V W X Y Z"},C:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y qB rB","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T","260":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z"},E:{"2":"I g J D E F A B uB jB vB wB xB yB kB","260":"L G zB 0B 1B lB 2B","772":"C K cB dB"},F:{"1":"ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB 3B 4B 5B 6B cB mB 7B dB","260":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC","260":"OC PC QC RC lB","772":"IC JC KC LC MC NC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"jC","2":"I aC bC cC dC","260":"eC kB fC gC hC iC"},Q:{"260":"kC"},R:{"2":"lC"},S:{"260":"mC"}},B:5,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O","260":"P Q R U V W X Y Z"},C:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T","260":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z"},E:{"2":"I h J D E F A B vB kB wB xB yB zB lB","260":"L G 0B 1B 2B mB 3B","772":"C K dB eB"},F:{"1":"aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB 4B 5B 6B 7B dB nB 8B eB","260":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC","260":"PC QC RC SC mB","772":"JC KC LC MC NC OC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"kC","2":"I bC cC dC eC","260":"fC lB gC hC iC jC"},Q:{"260":"lC"},R:{"2":"mC"},S:{"260":"nC"}},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 93af7eeb844c3f..642c23b5783406 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","164":"pB eB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"33":"mC"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","164":"qB fB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"33":"nC"}},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 80d6ab3cd005ed..fc5f217f027802 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T qB rB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","132":"B"},F:{"1":"IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC","132":"HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T rB sB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","132":"B"},F:{"1":"JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC","132":"IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 3c0b06a07c3ba9..b4f98c6a4e6868 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 oB","33":"A B"},B:{"2":"P Q R U V W X Y Z a b c d e S f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"33":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F pB","33":"A B"},B:{"2":"P Q R U V W X Y Z a b c d e f S g H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"33":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 3d85dcbdb0f2a9..3ef1df7bd9a4f1 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6d6f8f6c2c59a5..f2647447902f1b 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 S f H iB sB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z"},L:{"1":"a b c d e S f H iB sB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z"},B:{"1":"a b c d e S f H iB sB","33":"C K L G M N O P Q R U V W X Y Z"},C:{"1":"hB U V W X Y Z a b c d e S f H iB sB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R qB rB"},M:{"1":"hB U V W X Y Z a b c d e S f H iB sB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB P Q R"},A:{"33":"A B","34":"pB eB I g J D E F oB"},F:{"1":"YB ZB aB bB P Q R hB U V","2":"pB eB I g J D E F A B C qB rB vB xB yB eC kB 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB"},K:{"1":"NB T OB","2":"B C kB cB mB dB","33":"3 4 5 6 7 8 9 L G M O h i j k m n o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"1":"G 0B 1B lB","2":"pB","33":"eB I g J D E F A B C K L uB vB yB kB cB dB zB"},G:{"1":"G 1B lB","33":"pB eB I g J D E F A B C K L jB EC GC"},P:{"1":"jC","33":"TC jB dC eC gC dB hC MC iC"},I:{"1":"a b c d e S f H iB sB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z UC XC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"a b c d e f S g H jB tB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z"},L:{"1":"a b c d e f S g H jB tB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z"},B:{"1":"a b c d e f S g H jB tB","33":"C K L G M N O P Q R U V W X Y Z"},C:{"1":"iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R rB sB"},M:{"1":"iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB P Q R"},A:{"33":"A B","34":"qB fB I h J D E F pB"},F:{"1":"ZB aB bB cB P Q R iB U V","2":"qB fB I h J D E F A B C rB sB wB yB zB fC lB 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB"},K:{"1":"OB T PB","2":"B C lB dB nB eB","33":"0 4 5 6 7 8 9 L G M O i j k l n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"1":"G 1B 2B mB","2":"qB","33":"fB I h J D E F A B C K L vB wB zB lB dB eB 0B"},G:{"1":"G 2B mB","33":"qB fB I h J D E F A B C K L kB FC HC"},P:{"1":"kC","33":"UC kB eC fC hC eB iC NC jC"},I:{"1":"a b c d e f S g H jB tB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z VC YC"}},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 52fdd099d1b15a..23657966a3ffc7 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC","33":"DC EC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC","33":"EC FC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 5b960cc824d044..7b66579380f555 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","1028":"K L G M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","196":"w","516":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v rB"},D:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","33":"J D E F wB xB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 G M N O h i j k l m n o p q r s t u v w x y z"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"E AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","33":"XC YC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","33":"I aC bC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","1028":"K L G M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","196":"x","516":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w sB"},D:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","33":"J D E F xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 G M N O i j k l m n o p q r s t u v w x y z"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"E BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","33":"YC ZC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","33":"I bC cC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 ac229472eed327..e25c639dd00f30 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":"oB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","132":"eB","260":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"g J D E","132":"I"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"g uB","132":"I jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","16":"F 3B","260":"B 4B 5B 6B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"1":"SC"},I:{"1":"eB I H WC nB XC YC","16":"TC UC","132":"VC"},J:{"1":"D A"},K:{"1":"C T dB","260":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"pB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","132":"fB","260":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"h J D E","132":"I"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"h vB","132":"I kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","16":"F 4B","260":"B 5B 6B 7B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"1":"TC"},I:{"1":"fB I H XC oB YC ZC","16":"UC VC","132":"WC"},J:{"1":"D A"},K:{"1":"C T eB","260":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 dc41173bb19f13..d2d23d6f76c3f1 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1aee30c948e11f..a856acf8c33c91 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":"oB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB kB cB dB zB 0B 1B lB 2B","1025":"yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","132":"9B AC BC"},H:{"2":"SC"},I:{"1":"eB H XC YC","260":"TC UC VC","513":"I WC nB"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"pB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB lB dB eB 0B 1B 2B mB 3B","1025":"zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","132":"AC BC CC"},H:{"2":"TC"},I:{"1":"fB H YC ZC","260":"UC VC WC","513":"I XC oB"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a34fe06bbbf959..95ec0447ab3f3d 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 oB"},B:{"1":"X Y Z a b c d e S f H","2":"C K L G M N O","328":"P Q R U V W"},C:{"1":"W X Y Z a b c d e S f H iB","2":"pB eB qB rB","161":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V"},D:{"1":"X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB","328":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W"},E:{"2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB 0B","578":"G 1B lB 2B"},F:{"1":"VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB 3B 4B 5B 6B cB mB 7B dB","328":"PB QB RB SB TB UB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC","578":"RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"161":"mC"}},B:7,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"X Y Z a b c d e f S g H","2":"C K L G M N O","328":"P Q R U V W"},C:{"1":"W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","161":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V"},D:{"1":"X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB","328":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W"},E:{"2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B 1B","578":"G 2B mB 3B"},F:{"1":"WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB 4B 5B 6B 7B dB nB 8B eB","328":"QB RB SB TB UB VB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC","578":"SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"161":"nC"}},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 c48d89c4da74e4..48584fd4a4bb56 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB"},D:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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":"fB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"8"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB"},D:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n 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":"gB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"9"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"16":"mC"},S:{"2":"nC"}},B:7,C:":focus-within CSS pseudo-class"}; 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 08bb49acec2815..9e8833469f7f60 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"8 9 AB BB CB DB EB FB GB HB IB JB"},D:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB","66":"BB CB DB EB FB GB HB IB JB KB fB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB","66":"0 1 2 3 4 5 6 7 8 y z"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I","66":"aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB","66":"CB DB EB FB GB HB IB JB KB LB gB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB","66":"0 1 2 3 4 5 6 7 8 9 z"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I","66":"bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 09f8f0d38f1d39..2c8cb6e2a0707b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E qB rB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E rB sB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3ab9240dc73424..add0bcd04aed53 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 oB","132":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D pB","132":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c8a334aa4c598e..bc121e4816e879 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","260":"M N O h i j k l m n o p q r s t u v w x","292":"I g J D E F A B C K L G rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"A B C K L G M N O h i j k l m n","548":"I g J D E F"},E:{"2":"uB jB","260":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","292":"J vB","804":"I g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B","33":"C 7B","164":"cB mB"},G:{"260":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","292":"9B AC","804":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H XC YC","33":"I WC nB","548":"eB TC UC VC"},J:{"1":"A","548":"D"},K:{"1":"T dB","2":"A B","33":"C","164":"cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","260":"M N O i j k l m n o p q r s t u v w x y","292":"I h J D E F A B C K L G sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"A B C K L G M N O i j k l m n o","548":"I h J D E F"},E:{"2":"vB kB","260":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","292":"J wB","804":"I h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B","33":"C 8B","164":"dB nB"},G:{"260":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","292":"AC BC","804":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H YC ZC","33":"I XC oB","548":"fB UC VC WC"},J:{"1":"A","548":"D"},K:{"1":"T eB","2":"A B","33":"C","164":"dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},B:4,C:"CSS Gradients"}; 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 316aa2691e1a0d..1b8000cec10e7e 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 oB","8":"F","292":"A B"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","292":"C K L G"},C:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O qB rB","8":"0 1 h i j k l m n o p q r s t u v w x y z","584":"2 3 4 5 6 7 8 9 AB BB CB DB","1025":"EB FB"},D:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m","8":"n o p q","200":"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","1025":"JB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","8":"J D E F A wB xB yB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB","200":"0 1 2 3 4 5 q r s t u v w x y z"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","8":"E AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC","8":"nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"292":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"aC","8":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E pB","8":"F","292":"A B"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","292":"C K L G"},C:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O rB sB","8":"0 1 2 i j k l m n o p q r s t u v w x y z","584":"3 4 5 6 7 8 9 AB BB CB DB EB","1025":"FB GB"},D:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n","8":"o p q r","200":"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","1025":"KB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","8":"J D E F A xB yB zB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB","200":"0 1 2 3 4 5 6 r s t u v w x y z"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","8":"E BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC","8":"oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"292":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"bC","8":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 df7acbe917dd58..78e905b736c385 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 26d373f730b385..72a4568f022744 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"2B","2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1635c769449580..a6733a2d729fa0 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"16":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"16":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"16":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"16":"A B C T cB mB dB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"16":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"16":"kC"},R:{"16":"lC"},S:{"16":"mC"}},B:5,C:"CSS4 Hyphenation"}; +module.exports={A:{A:{"16":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"16":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"16":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"16":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"16":"A B C T dB nB eB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"16":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"16":"lC"},R:{"16":"mC"},S:{"16":"nC"}},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 338a582a8e80af..5db148949c9e83 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 oB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R U V W X Y","260":"Z a b c d e S f H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB","33":"0 1 2 3 4 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},D:{"1":"Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y"},E:{"2":"I g uB jB","33":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B","33":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"4":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I","132":"aC"},Q:{"2":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:5,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F pB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R U V W X Y","260":"Z a b c d e f S g H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB","33":"0 1 2 3 4 5 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},D:{"1":"Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y"},E:{"2":"I h vB kB","33":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B","33":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"4":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I","132":"bC"},Q:{"2":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 26977a298ef668..e5cbde0fc5fd4f 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O P Q","257":"R U V W X Y Z"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n qB rB"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q","257":"R U V W X Y Z"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB"},F:{"1":"RB SB TB UB VB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB 3B 4B 5B 6B cB mB 7B dB","257":"WB XB YB ZB aB bB P Q R hB"},G:{"1":"PC QC RC lB","132":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"hC iC jC","2":"I aC bC cC dC eC kB fC gC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O P Q","257":"R U V W X Y Z"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o rB sB"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q","257":"R U V W X Y Z"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB"},F:{"1":"SB TB UB VB WB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB 4B 5B 6B 7B dB nB 8B eB","257":"XB YB ZB aB bB cB P Q R iB"},G:{"1":"QC RC SC mB","132":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"iC jC kC","2":"I bC cC dC eC fC lB gC hC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 f9e8e93a025ed9..e282547ebcc3c8 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 oB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W qB rB","66":"X Y","257":"a b c d e S f H iB","772":"Z"},D:{"2":"I g J D E F A B C K L G M N O h i","164":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g uB jB vB","132":"A B C K kB cB dB zB","164":"J D E F wB xB yB","516":"L G 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB 9B","132":"FC GC HC IC JC KC LC MC NC OC","164":"E AC BC CC DC EC","516":"PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","164":"H XC YC"},J:{"2":"D","164":"A"},K:{"2":"A B C cB mB dB","164":"T"},L:{"164":"H"},M:{"257":"S"},N:{"2":"A B"},O:{"164":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"2":"mC"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W rB sB","66":"X Y","257":"a b c d e f S g H jB","772":"Z"},D:{"2":"I h J D E F A B C K L G M N O i j","164":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h vB kB wB","132":"A B C K lB dB eB 0B","164":"J D E F xB yB zB","516":"L G 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB AC","132":"GC HC IC JC KC LC MC NC OC PC","164":"E BC CC DC EC FC","516":"QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","164":"H YC ZC"},J:{"2":"D","164":"A"},K:{"2":"A B C dB nB eB","164":"T"},L:{"164":"H"},M:{"257":"S"},N:{"2":"A B"},O:{"164":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"2":"nC"}},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 6482db96575c65..f26fb7d1f6ad5b 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C","260":"K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","516":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB"},D:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I","16":"g J D E F A B C K L","260":"EB","772":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g","772":"J D E F A vB wB xB yB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F 3B","260":"1 B C 4B 5B 6B cB mB 7B dB","772":"0 G M N O h i j k l m n o p q r s t u v w x y z"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","772":"E 9B AC BC CC DC EC FC"},H:{"132":"SC"},I:{"1":"H","2":"eB TC UC VC","260":"I WC nB XC YC"},J:{"2":"D","260":"A"},K:{"1":"T","260":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","260":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"516":"mC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C","260":"K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","516":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB"},D:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I","16":"h J D E F A B C K L","260":"FB","772":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l 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 lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h","772":"J D E F A wB xB yB zB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F 4B","260":"2 B C 5B 6B 7B dB nB 8B eB","772":"0 1 G M N O i j k l m n o p q r s t u v w x y z"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","772":"E AC BC CC DC EC FC GC"},H:{"132":"TC"},I:{"1":"H","2":"fB UC VC WC","260":"I XC oB YC ZC"},J:{"2":"D","260":"A"},K:{"1":"T","260":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","260":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"516":"nC"}},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 f23f4f7e9d269f..18a60f70927359 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 oB","132":"A B","388":"F"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","388":"I g"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","132":"0 G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","16":"I g J uB jB","132":"D E F A wB xB yB","388":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B 3B 4B 5B 6B cB mB","132":"G M N O h i j k l m n","516":"C 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B AC","132":"E BC CC DC EC FC"},H:{"516":"SC"},I:{"1":"H","16":"eB TC UC VC YC","132":"XC","388":"I WC nB"},J:{"16":"D","132":"A"},K:{"1":"T","16":"A B C cB mB","516":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"132":"mC"}},B:7,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E pB","132":"A B","388":"F"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","388":"I h"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","132":"0 1 G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","16":"I h J vB kB","132":"D E F A xB yB zB","388":"wB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B 4B 5B 6B 7B dB nB","132":"G M N O i j k l m n o","516":"C 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC BC","132":"E CC DC EC FC GC"},H:{"516":"TC"},I:{"1":"H","16":"fB UC VC WC ZC","132":"YC","388":"I XC oB"},J:{"16":"D","132":"A"},K:{"1":"T","16":"A B C dB nB","516":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"132":"nC"}},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 d92639e0fe9e54..3a25f50ee0de7a 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E uB jB vB wB xB","4":"F","164":"A B C K L G yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC","164":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E vB kB wB xB yB","4":"F","164":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC","164":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 4a0801fb7e1364..fa5281cfe625b4 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"I g J D E F A B C K L G M N O qB rB","164":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"I h J D E F A B C K L G M N O rB sB","164":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1cadc134f25d70..8f8ec61eda11a4 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"G 1B lB 2B","2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"G 2B mB 3B","2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 165c7443de9946..35abc5ea52c451 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":"oB","132":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB","132":"I g J jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F 3B","132":"B C G M 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"2":"SC"},I:{"1":"H XC YC","16":"TC UC","132":"eB I VC WC nB"},J:{"132":"D A"},K:{"1":"T","132":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"pB","132":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB","132":"I h J kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F 4B","132":"B C G M 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"2":"TC"},I:{"1":"H YC ZC","16":"UC VC","132":"fB I WC XC oB"},J:{"132":"D A"},K:{"1":"T","132":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 19c6cb259789b2..e00bea7e5a2def 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 oB"},B:{"2":"C K L G M","33":"P Q R U V W X Y Z a b c d e S f H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB qB rB","33":"RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"16":"I g J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I uB jB","33":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB","33":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"16":"TC UC","33":"eB I H VC WC nB XC YC"},J:{"33":"D A"},K:{"2":"A B C cB mB dB","33":"T"},L:{"33":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"33":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"2":"mC"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M","33":"P Q R U V W X Y Z a b c d e f S g H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB rB sB","33":"SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"16":"I h J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I vB kB","33":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB","33":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"16":"UC VC","33":"fB I H WC XC oB YC ZC"},J:{"33":"D A"},K:{"2":"A B C dB nB eB","33":"T"},L:{"33":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"33":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"2":"nC"}},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 9b92b2512e3c7c..66118ee4f42f33 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O","1028":"Y Z","1540":"P Q R U V W X"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","164":"0 1 2 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","1540":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB"},D:{"1":"a b c d e S f H iB sB tB","292":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB","1028":"Y Z","1540":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X"},E:{"1":"G 1B lB 2B","292":"I g J D E F A B C uB jB vB wB xB yB kB cB","1028":"0B","1540":"K L dB zB"},F:{"1":"ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","292":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","1028":"XB YB","1540":"IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB"},G:{"1":"RC lB","292":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC","1028":"QC","1540":"KC LC MC NC OC PC"},H:{"2":"SC"},I:{"1":"H","292":"eB I TC UC VC WC nB XC YC"},J:{"292":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"ZC"},P:{"1":"jC","292":"I aC bC cC dC eC","1540":"kB fC gC hC iC"},Q:{"1540":"kC"},R:{"1540":"lC"},S:{"1540":"mC"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O","1028":"Y Z","1540":"P Q R U V W X"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","164":"0 1 2 3 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","1540":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB"},D:{"1":"a b c d e f S g H jB tB uB","292":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB","1028":"Y Z","1540":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X"},E:{"1":"G 2B mB 3B","292":"I h J D E F A B C vB kB wB xB yB zB lB dB","1028":"1B","1540":"K L eB 0B"},F:{"1":"aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","292":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","1028":"YB ZB","1540":"JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB"},G:{"1":"SC mB","292":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC","1028":"RC","1540":"LC MC NC OC PC QC"},H:{"2":"TC"},I:{"1":"H","292":"fB I UC VC WC XC oB YC ZC"},J:{"292":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"aC"},P:{"1":"kC","292":"I bC cC dC eC fC","1540":"lB gC hC iC jC"},Q:{"1540":"lC"},R:{"1540":"mC"},S:{"1540":"nC"}},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 1066b57cd1832b..4e18cf5939508f 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 oB"},B:{"1":"X Y Z a b c d e S f H","2":"C K L G M N O P Q R U V W"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB qB rB"},D:{"1":"X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W"},E:{"1":"2B","2":"I g J D E F A B uB jB vB wB xB yB kB","129":"C K L G cB dB zB 0B 1B lB"},F:{"1":"VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"X Y Z a b c d e f S g H","2":"C K L G M N O P Q R U V W"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB rB sB"},D:{"1":"X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W"},E:{"1":"3B","2":"I h J D E F A B vB kB wB xB yB zB lB","129":"C K L G dB eB 0B 1B 2B mB"},F:{"1":"WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 7e8bb396b793b2..057fd5df705ea2 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 oB"},B:{"2":"C K L G M","164":"P Q R U V W X Y Z a b c d e S f H","3138":"N","12292":"O"},C:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","260":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"uB jB","164":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"164":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"164":"H XC YC","676":"eB I TC UC VC WC nB"},J:{"164":"D A"},K:{"2":"A B C cB mB dB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"260":"mC"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M","164":"P Q R U V W X Y Z a b c d e f S g H","3138":"N","12292":"O"},C:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","260":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"vB kB","164":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"164":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"164":"H YC ZC","676":"fB I UC VC WC XC oB"},J:{"164":"D A"},K:{"2":"A B C dB nB eB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"260":"nC"}},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 32502f049a1425..bffe02e0b21152 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 oB"},B:{"1":"Z a b c d e S f H","2":"C K L G M N O","1220":"P Q R U V W X Y"},C:{"1":"bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB","548":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T","196":"OB PB QB","1220":"RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y"},E:{"1":"L G 0B 1B lB 2B","2":"I uB jB","16":"g","164":"J D E vB wB xB","260":"F A B C K yB kB cB dB zB"},F:{"1":"YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB","196":"EB FB GB","1220":"HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB"},G:{"1":"PC QC RC lB","16":"jB 8B nB 9B AC","164":"E BC CC","260":"DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"1":"H","16":"eB TC UC VC","164":"I WC nB XC YC"},J:{"16":"D","164":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"ZC"},P:{"1":"jC","164":"I aC bC cC dC eC kB fC gC hC iC"},Q:{"1220":"kC"},R:{"164":"lC"},S:{"548":"mC"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"Z a b c d e f S g H","2":"C K L G M N O","1220":"P Q R U V W X Y"},C:{"1":"cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB","548":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T","196":"PB QB RB","1220":"SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y"},E:{"1":"L G 1B 2B mB 3B","2":"I vB kB","16":"h","164":"J D E wB xB yB","260":"F A B C K zB lB dB eB 0B"},F:{"1":"ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB","196":"FB GB HB","1220":"IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB"},G:{"1":"QC RC SC mB","16":"kB 9B oB AC BC","164":"E CC DC","260":"EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"1":"H","16":"fB UC VC WC","164":"I XC oB YC ZC"},J:{"16":"D","164":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"aC"},P:{"1":"kC","164":"I bC cC dC eC fC lB gC hC iC jC"},Q:{"1220":"lC"},R:{"164":"mC"},S:{"548":"nC"}},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 d5c4c4d51ae296..1fce5a59426843 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB qB rB"},D:{"1":"P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB","132":"C K cB dB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC","132":"IC JC KC LC MC NC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I aC bC cC dC eC kB fC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB rB sB"},D:{"1":"P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB","132":"C K dB eB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC","132":"JC KC LC MC NC OC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I bC cC dC eC fC lB gC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1a0d45a892b87f..8adab1085b8e5e 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 bd49eee84f8ac7..0918378f9f8877 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 oB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","260":"I g J D E F A B C K L G qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","548":"I g J D E F A B C K L G M N O h i j k l m n o p q"},E:{"2":"uB jB","548":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F","548":"B C 3B 4B 5B 6B cB mB 7B"},G:{"16":"jB","548":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"132":"SC"},I:{"1":"H XC YC","16":"TC UC","548":"eB I VC WC nB"},J:{"548":"D A"},K:{"1":"T dB","548":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E pB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","260":"I h J D E F A B C K L G rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","548":"I h J D E F A B C K L G M N O i j k l m n o p q r"},E:{"2":"vB kB","548":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F","548":"B C 4B 5B 6B 7B dB nB 8B"},G:{"16":"kB","548":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"132":"TC"},I:{"1":"H YC ZC","16":"UC VC","548":"fB I WC XC oB"},J:{"548":"D A"},K:{"1":"T eB","548":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6318e7788bace8..a5767cced04557 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 oB"},B:{"16":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB","16":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H","16":"iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"16":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB","16":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H","16":"jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 11e0f4128bef3f..1fb6f1ec93b595 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 oB","129":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","129":"I g J D E F A B C K L G M N O h i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","129":"I g J vB","388":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","129":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"H XC YC","129":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E pB","129":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","129":"I h J D E F A B C K L G M N O i j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","129":"I h J wB","388":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","129":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"H YC ZC","129":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c0d549079156a5..f19a3fff68d360 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q","194":"0 1 2 r s t u v w x y z"},E:{"2":"I g J D uB jB vB wB","260":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB 9B AC BC","260":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r","194":"0 1 2 3 s t u v w x y z"},E:{"2":"I h J D vB kB wB xB","260":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB AC BC CC","260":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1eb51927205612..41c2b9d7c5b1d3 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB qB rB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"5 6 7"},E:{"1":"2B","2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB","194":"s t u"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB rB sB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"6 7 8"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB","194":"t u v"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 87ef9bb7d9f55f..ae4f4e711e8077 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 73dbbf3f16a0a3..b397758ebeeeb3 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bdfac3bcf69097..5dae6b0ec35d96 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 oB"},B:{"1":"Z a b c d e S f H","2":"C K L G M N O Q R U V W X Y","16":"P"},C:{"1":"V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U qB rB"},D:{"1":"Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"jC","2":"I aC bC cC dC eC kB fC gC hC iC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"Z a b c d e f S g H","2":"C K L G M N O Q R U V W X Y","16":"P"},C:{"1":"V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U rB sB"},D:{"1":"Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"1":"ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"kC","2":"I bC cC dC eC fC lB gC hC iC jC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 54373a9e3e64f8..eb07c1c9d8e460 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,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 pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:7,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 ea118978155373..7ac74022080b2d 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f19b461c571c16..0f7fc733d83189 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F 3B","132":"B C 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"132":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","132":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F 4B","132":"B C 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"132":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","132":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 339099ab7d7753..f7bb65a39aa552 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB qB rB"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB rB sB"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 66b9a84ae1fd4e..c9c98ba3d0aa1f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"I g J D E F A B vB wB xB yB kB cB","16":"uB jB","130":"C K L G dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC","16":"jB","130":"JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"I h J D E F A B wB xB yB zB lB dB","16":"vB kB","130":"C K L G eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC","16":"kB","130":"KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 ee114cbcbfd594..ee4973161bedc9 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 oB"},B:{"1":"b c d e S f H","260":"P Q R U V W X Y Z a","388":"C K L G M N O"},C:{"1":"R hB U V W X Y Z a b c d e S f H iB","260":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q","388":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB qB rB"},D:{"1":"b c d e S f H iB sB tB","260":"RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a","388":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB"},E:{"1":"2B","260":"L G zB 0B 1B lB","388":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB"},F:{"260":"HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 3B 4B 5B 6B cB mB 7B dB"},G:{"260":"OC PC QC RC lB","388":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"388":"SC"},I:{"1":"H","388":"eB I TC UC VC WC nB XC YC"},J:{"388":"D A"},K:{"1":"T","388":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"388":"A B"},O:{"388":"ZC"},P:{"1":"jC","388":"I aC bC cC dC eC kB fC gC hC iC"},Q:{"388":"kC"},R:{"388":"lC"},S:{"388":"mC"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B pB"},B:{"1":"b c d e f S g H","260":"P Q R U V W X Y Z a","388":"C K L G M N O"},C:{"1":"R iB U V W X Y Z a b c d e f S g H jB","260":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q","388":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB rB sB"},D:{"1":"b c d e f S g H jB tB uB","260":"SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a","388":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB"},E:{"1":"3B","260":"L G 0B 1B 2B mB","388":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB"},F:{"260":"IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB 4B 5B 6B 7B dB nB 8B eB"},G:{"260":"PC QC RC SC mB","388":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"388":"TC"},I:{"1":"H","388":"fB I UC VC WC XC oB YC ZC"},J:{"388":"D A"},K:{"1":"T","388":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"388":"A B"},O:{"388":"aC"},P:{"1":"kC","388":"I bC cC dC eC fC lB gC hC iC jC"},Q:{"388":"lC"},R:{"388":"mC"},S:{"388":"nC"}},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 890cc9eec6e824..fd84eb8a0bb301 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 oB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N","516":"O"},C:{"1":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB qB rB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB","260":"NB T"},E:{"2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB","1090":"G 0B 1B lB 2B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB","260":"CB DB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","1090":"QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N","516":"O"},C:{"1":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB rB sB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB","260":"OB T"},E:{"2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B","1090":"G 1B 2B mB 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB","260":"DB EB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC","1090":"RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:7,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 ad5460020624ff..95eb256a3ca56b 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 oB"},B:{"388":"C K L G M N O","900":"P Q R U V W X Y Z a b c d e S f H"},C:{"772":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","900":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T qB rB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"772":"A","900":"I g J D E F B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"16":"F 3B","129":"B C 4B 5B 6B cB mB 7B dB","900":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"900":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"129":"SC"},I:{"900":"eB I H TC UC VC WC nB XC YC"},J:{"900":"D A"},K:{"129":"A B C cB mB dB","900":"T"},L:{"900":"H"},M:{"900":"S"},N:{"388":"A B"},O:{"900":"ZC"},P:{"900":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"900":"kC"},R:{"900":"lC"},S:{"900":"mC"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F pB"},B:{"388":"C K L G M N O","900":"P Q R U V W X Y Z a b c d e f S g H"},C:{"772":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","900":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T rB sB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"772":"A","900":"I h J D E F B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"16":"F 4B","129":"B C 5B 6B 7B dB nB 8B eB","900":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"900":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"129":"TC"},I:{"900":"fB I H UC VC WC XC oB YC ZC"},J:{"900":"D A"},K:{"129":"A B C dB nB eB","900":"T"},L:{"900":"H"},M:{"900":"S"},N:{"388":"A B"},O:{"900":"aC"},P:{"900":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"900":"lC"},R:{"900":"mC"},S:{"900":"nC"}},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 7ffac7abf4531d..39fbfb42f296e4 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 oB","132":"E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"2":"pB eB I g J D E F A B C K L G M N O qB rB","132":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","132":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"16":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"16":"A B C T cB mB dB"},L:{"1":"H"},M:{"132":"S"},N:{"258":"A B"},O:{"258":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"132":"mC"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D pB","132":"E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"2":"qB fB I h J D E F A B C K L G M N O rB sB","132":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","132":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"16":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"16":"A B C T dB nB eB"},L:{"1":"H"},M:{"132":"S"},N:{"258":"A B"},O:{"258":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"132":"nC"}},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 7e87d90c221b55..b50a6a8b6704b0 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T"},E:{"2":"I g J D E F A B C uB jB vB wB xB yB kB cB","194":"K L G dB zB 0B 1B lB 2B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T"},E:{"2":"I h J D E F A B C vB kB wB xB yB zB lB dB","194":"K L G eB 0B 1B 2B mB 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 11a989cf682e87..97712eb7f11b97 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 oB","292":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","164":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"164":"mC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F pB","292":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","164":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"164":"nC"}},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 f0bcff917bdbcc..fa6f83affdeb2e 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","36":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O qB rB","33":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","36":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 kB cB dB zB 0B 1B lB 2B","2":"I uB jB","36":"g J D E F A vB wB xB yB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","36":"0 1 2 3 4 5 G M N O h i j k l m n o p q r s t u v w x y z"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B","36":"E nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","36":"eB I TC UC VC WC nB XC YC"},J:{"36":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","36":"I aC bC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"33":"mC"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","36":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O rB sB","33":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","36":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","36":"h J D E F A wB xB yB zB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","36":"0 1 2 3 4 5 6 G M N O i j k l m n o p q r s t u v w x y z"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B","36":"E oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","36":"fB I UC VC WC XC oB YC ZC"},J:{"36":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","36":"I bC cC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"33":"nC"}},B:5,C:"::placeholder CSS pseudo-element"}; 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 a866e74e7ecf7b..632238dc1438c7 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB","33":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","132":"G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","16":"uB jB","132":"I g J D E vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B 3B 4B 5B 6B cB","132":"C G M N O h i j k mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B","132":"E nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","16":"TC UC","132":"eB I VC WC nB XC YC"},J:{"1":"A","132":"D"},K:{"1":"T","2":"A B cB","132":"C mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"33":"mC"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB","33":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","132":"G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB","132":"I h J D E wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B 4B 5B 6B 7B dB","132":"C G M N O i j k l nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B","132":"E oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","16":"UC VC","132":"fB I WC XC oB YC ZC"},J:{"1":"A","132":"D"},K:{"1":"T","2":"A B dB","132":"C nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"33":"nC"}},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 d3cf89af48ee12..c26432b2045cea 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 oB","132":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l 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 xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB","16":"wB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 I h J D E F A B C K L G M N O i j k l 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 yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB","16":"xB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 caaf937eeedc6f..efa52f0fe77856 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 oB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"uB jB","33":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"33":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"33":"eB I H TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"2":"A B C cB mB dB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"2":"mC"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"vB kB","33":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"33":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"33":"fB I H UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"2":"A B C dB nB eB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"2":"nC"}},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 8057e72673e825..6b4fc177ff7df8 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 oB","420":"A B"},B:{"2":"P Q R U V W X Y Z a b c d e S f H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","36":"G M N O","66":"h i j k l m n o p q r s t u v w"},E:{"2":"I g J C K L G uB jB vB cB dB zB 0B 1B lB 2B","33":"D E F A B wB xB yB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB 9B AC IC JC KC LC MC NC OC PC QC RC lB","33":"E BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"420":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F pB","420":"A B"},B:{"2":"P Q R U V W X Y Z a b c d e f S g H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","36":"G M N O","66":"i j k l m n o p q r s t u v w x"},E:{"2":"I h J C K L G vB kB wB dB eB 0B 1B 2B mB 3B","33":"D E F A B xB yB zB lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB AC BC JC KC LC MC NC OC PC QC RC SC mB","33":"E CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"420":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 171947ab7b85a5..33f58f7dccb318 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","33":"I g J D E F A B C K L G rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F","33":"A B C K L G M N O h i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","33":"J vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B","33":"C 7B","36":"cB mB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","33":"9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB TC UC VC","33":"I WC nB"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B","33":"C","36":"cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","33":"I h J D E F A B C K L G sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F","33":"A B C K L G M N O i j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","33":"J wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B","33":"C 8B","36":"dB nB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","33":"AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB UC VC WC","33":"I XC oB"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B","33":"C","36":"dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 598e1ad82df9c4..363c0e1de68a63 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B","132":"dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:4,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B","132":"eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 c66d371b109e9b..2b5ebe35ede962 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 oB"},B:{"1":"V W X Y Z a b c d e S f H","2":"C K L G M N O P Q R U"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB qB rB"},D:{"1":"V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},F:{"1":"WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"V W X Y Z a b c d e f S g H","2":"C K L G M N O P Q R U"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB rB sB"},D:{"1":"V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},F:{"1":"XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 317c3e1a6cecac..83f16b1803e1b1 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I","194":"aC bC cC"},Q:{"2":"kC"},R:{"194":"lC"},S:{"2":"mC"}},B:7,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I","194":"bC cC dC"},Q:{"2":"lC"},R:{"194":"mC"},S:{"2":"nC"}},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 2492272095f3f0..916d0307f69302 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 oB"},B:{"2":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB"},D:{"2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","129":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","450":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB"},E:{"1":"2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB zB","578":"L G 0B 1B lB"},F:{"2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB","129":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","450":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","578":"QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"129":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"129":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSSOM Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB"},D:{"2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","129":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","450":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB"},E:{"1":"3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB 0B","578":"L G 1B 2B mB"},F:{"2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB","129":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","450":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC","578":"RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"129":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"129":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:5,C:"CSSOM 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 e82be16becbc8d..d765c42d3cb5a3 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a","194":"b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V","194":"Z a b c d e S f H iB sB tB","322":"W X Y"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB","194":"YB ZB aB bB P Q R hB","322":"WB XB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a","194":"b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V","194":"Z a b c d e f S g H jB tB uB","322":"W X Y"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB","194":"ZB aB bB cB P Q R iB","322":"XB YB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 98b2e6c301f957..e0c688d3f03098 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 oB"},B:{"2":"C K L G M N O","292":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB qB rB","3074":"NB","4100":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"16":"I g uB jB","292":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","292":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"PC QC RC lB","16":"jB 8B nB 9B AC","292":"BC","804":"E CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"16":"TC UC","292":"eB I H VC WC nB XC YC"},J:{"292":"D A"},K:{"2":"A B C cB mB dB","292":"T"},L:{"292":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"292":"ZC"},P:{"292":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"292":"kC"},R:{"292":"lC"},S:{"2":"mC"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"2":"C K L G M N O","292":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB rB sB","3074":"OB","4100":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"16":"I h vB kB","292":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","292":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"QC RC SC mB","16":"kB 9B oB AC BC","292":"CC","804":"E DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"16":"UC VC","292":"fB I H WC XC oB YC ZC"},J:{"292":"D A"},K:{"2":"A B C dB nB eB","292":"T"},L:{"292":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"292":"aC"},P:{"292":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"292":"lC"},R:{"292":"mC"},S:{"2":"nC"}},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 0d5268ac0b42af..8e3a0fbc8b8c29 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":"oB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"pB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 01056a9bd39cf3..b1d66d90c29e14 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":"oB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 e6797d953ca57e..668d7dbb22ce12 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"C T mB dB","16":"A B cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"33":"mC"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"C T nB eB","16":"A B dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"33":"nC"}},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 2174d3bfd2eaae..3e2ce81cabaccb 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB qB rB","322":"DB EB FB GB HB IB JB KB fB LB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v","194":"w x y"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","33":"E F A xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","33":"E CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB rB sB","322":"EB FB GB HB IB JB KB LB gB MB hB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w","194":"x y z"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","33":"E F A yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","33":"E DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 75e2ea60b0258e..5bef044ad53e88 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 oB","6308":"A","6436":"B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","6436":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","2052":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB","8258":"PB QB RB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB","3108":"F A yB kB"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB","8258":"GB HB IB JB KB LB MB NB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC","3108":"DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2052":"mC"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F pB","6308":"A","6436":"B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","6436":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","2052":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB","8258":"QB RB SB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB","3108":"F A zB lB"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB","8258":"HB IB JB KB LB MB NB OB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC","3108":"EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2052":"nC"}},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 8b692734ae057a..2c10aa50023deb 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 oB"},B:{"1":"c d e S f H","2":"C K L G","1028":"P Q R U V W X Y Z a b","4100":"M N O"},C:{"1":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n qB rB","194":"o p q r s t","516":"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":"c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k z AB BB CB DB","322":"l m n o p q r s t u v w x y EB FB GB HB","1028":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J uB jB vB","33":"E F A B C xB yB kB cB dB","2084":"D wB"},F:{"2":"0 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","322":"1 2 3","1028":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"E CC DC EC FC GC HC IC JC KC","2084":"AC BC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1028":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1028":"kC"},R:{"2":"lC"},S:{"516":"mC"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"c d e f S g H","2":"C K L G","1028":"P Q R U V W X Y Z a b","4100":"M N O"},C:{"1":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o rB sB","194":"p q r s t u","516":"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"},D:{"1":"c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l AB BB CB DB EB","322":"m n o p q r s t u v w x y z FB GB HB IB","1028":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J vB kB wB","33":"E F A B C yB zB lB dB eB","2084":"D xB"},F:{"2":"0 1 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","322":"2 3 4","1028":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"E DC EC FC GC HC IC JC KC LC","2084":"BC CC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1028":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1028":"lC"},R:{"2":"mC"},S:{"516":"nC"}},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 5a80e5e3bbe106..6ab582e4af9066 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 e42bf03df72afa..b8894956ad1a16 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","260":"C K L G M N O"},C:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h qB rB","66":"i j","260":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n 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 fB LB"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B","132":"dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"132":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB","132":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","260":"C K L G M N O"},C:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i rB sB","66":"j k","260":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o 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 gB MB"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B","132":"eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"132":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB","132":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 20e2f6df0c9d93..6f4df248d6c996 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","132":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","132":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d7efca24ea7ed3..98fdc04046588d 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","4":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B qB rB","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w","322":"0 1 2 3 4 5 6 7 8 x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j 3B 4B 5B 6B cB mB 7B dB","578":"k l m n o p q r s t u v"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"1":"lC"},S:{"33":"mC"}},B:5,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","4":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B rB sB","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x","322":"0 1 2 3 4 5 6 7 8 9 y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k 4B 5B 6B 7B dB nB 8B eB","578":"l m n o p q r s t u v w"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"1":"mC"},S:{"33":"nC"}},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 42d1524df70f9c..6094d26dc5e931 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 oB"},B:{"132":"C K L G M N O","388":"P Q R U V W X Y Z a b c d e S f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"132":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","388":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"132":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"132":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB","388":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"132":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"132":"SC"},I:{"132":"eB I TC UC VC WC nB XC YC","388":"H"},J:{"132":"D A"},K:{"132":"A B C cB mB dB","388":"T"},L:{"388":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"ZC"},P:{"132":"I","388":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"388":"kC"},R:{"388":"lC"},S:{"132":"mC"}},B:5,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"132":"C K L G M N O","388":"P Q R U V W X Y Z a b c d e f S g H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"132":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","388":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"132":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"132":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB","388":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"132":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"132":"TC"},I:{"132":"fB I UC VC WC XC oB YC ZC","388":"H"},J:{"132":"D A"},K:{"132":"A B C dB nB eB","388":"T"},L:{"388":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"aC"},P:{"132":"I","388":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"388":"lC"},R:{"388":"mC"},S:{"132":"nC"}},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 7c0e3bbf15d310..0f5ddc2b270dde 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 oB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB qB rB","1025":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","1602":"GB"},D:{"2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","322":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB","322":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","322":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","322":"T"},L:{"322":"H"},M:{"1025":"S"},N:{"132":"A B"},O:{"2":"ZC"},P:{"2":"I","322":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"322":"kC"},R:{"322":"lC"},S:{"2":"mC"}},B:5,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D pB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB rB sB","1025":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","1602":"HB"},D:{"2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","322":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB","322":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","322":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","322":"T"},L:{"322":"H"},M:{"1025":"S"},N:{"132":"A B"},O:{"2":"aC"},P:{"2":"I","322":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"322":"lC"},R:{"322":"mC"},S:{"2":"nC"}},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 1594c85eda4081..dc526669c9758f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"0 1 2"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","16":"A","33":"B C K kB cB dB zB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"1 2 3"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","16":"A","33":"B C K lB dB eB 0B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 eb411b65c47063..a7a15cc4628926 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 oB","161":"E F A B"},B:{"2":"P Q R U V W X Y Z a b c d e S f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D pB","161":"E F A B"},B:{"2":"P Q R U V W X Y Z a b c d e f S g H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bdce8f22eb11c5..9014dc058b70ef 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 oB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","260":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"4":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"A","4":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F pB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","260":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"4":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"A","4":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 853a2aeb1e66b4..2f55178b7f6e8d 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 oB","132":"B","164":"A"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","260":"HB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","260":"4"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"132":"B","164":"A"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"CSS touch-action level 2 values"}; +module.exports={A:{A:{"2":"J D E F pB","132":"B","164":"A"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","260":"IB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","260":"5"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"132":"B","164":"A"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 8ae051681eae19..bd4ee6e14448e6 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 oB","289":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","194":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB","1025":"EB FB GB HB IB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC","516":"EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","289":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"194":"mC"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F pB","289":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","194":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB","1025":"FB GB HB IB JB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC","516":"FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","289":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"194":"nC"}},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 1e6cb155563ff5..8c25966a77a5fe 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"g J D E F A B C K L G","164":"I"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I g J D E F A B C K L G M N O h i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","33":"J vB","164":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F 3B 4B","33":"C","164":"B 5B 6B cB mB 7B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"AC","164":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"H XC YC","33":"eB I TC UC VC WC nB"},J:{"1":"A","33":"D"},K:{"1":"T dB","33":"C","164":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"h J D E F A B C K L G","164":"I"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I h J D E F A B C K L G M N O i j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","33":"J wB","164":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F 4B 5B","33":"C","164":"B 6B 7B dB nB 8B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"BC","164":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"H YC ZC","33":"fB I UC VC WC XC oB"},J:{"1":"A","33":"D"},K:{"1":"T eB","33":"C","164":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a65fb5824f62e2..65dbce91285cc8 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB","132":"pB eB I g J D E F qB rB","292":"A B C K L G M"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z"},E:{"132":"I g J D E uB jB vB wB xB","548":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"132":"E jB 8B nB 9B AC BC CC","548":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"1":"H","16":"eB I TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"1":"T","16":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"16":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"16":"kC"},R:{"16":"lC"},S:{"33":"mC"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB","132":"qB fB I h J D E F rB sB","292":"A B C K L G M"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB"},E:{"132":"I h J D E vB kB wB xB yB","548":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"132":"E kB 9B oB AC BC CC DC","548":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"1":"H","16":"fB I UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"1":"T","16":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"16":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"16":"lC"},R:{"16":"mC"},S:{"33":"nC"}},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 915b48639ff1ed..1606113ae3b7c2 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 abaa325178c934..ee084c198ab86c 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L","260":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"AB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB","260":"yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w 3B 4B 5B 6B cB mB 7B dB","194":"x"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC","260":"EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L","260":"G"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB","194":"BB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB","260":"zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x 4B 5B 6B 7B dB nB 8B eB","194":"y"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC","260":"FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 new file mode 100644 index 00000000000000..00d15fd22e8fff --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 d50c40e9c2f28b..83e6f8dc9703b5 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 oB","129":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","129":"F B 3B 4B 5B 6B cB mB 7B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D pB","129":"E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","129":"F B 4B 5B 6B 7B dB nB 8B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 new file mode 100644 index 00000000000000..7245a1b9f8f07b --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js @@ -0,0 +1 @@ +module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB","34":"qB fB I h J D E F A B C K L G M N O i j k"},L:{"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB","34":"O"},B:{"33":"P Q R U V W X Y Z a b c d e f S g H jB tB","34":"C K L G M N O"},C:{"33":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","34":"qB"},M:{"33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB P Q R iB U V W X Y Z a b c d e f S g H jB"},A:{"2":"qB fB I h J D E F A B pB"},F:{"33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V","34":"qB fB I h J D E F A B C rB sB wB yB zB fC lB 6B 7B dB nB 8B eB"},K:{"33":"0 4 5 6 7 8 9 L G M O i j k l n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB","34":"B C lB dB nB eB"},E:{"33":"D E F A B C K L G zB lB dB eB 0B 1B 2B mB","34":"qB fB I h J vB wB"},G:{"33":"D E F A B C K L G FC HC 2B mB","34":"qB fB I h J kB"},P:{"33":"eC fC hC eB iC NC jC kC","34":"UC kB"},I:{"33":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB YC","34":"qB fB I VC"}},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 b6875f059d3279..f68ae8b3ffdb06 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB","322":"0 1 2 y z"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g 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 h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g","33":"J D E F A vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j k l m n o p q r s t u v w"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB","33":"E 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"TC UC VC","33":"eB I WC nB XC YC"},J:{"33":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","33":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB","322":"0 1 2 3 z"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h 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 i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h","33":"J D E F A wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k l m n o p q r s t u v w x"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB","33":"E AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"UC VC WC","33":"fB I XC oB YC ZC"},J:{"33":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","33":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b743a395b90d9b..eeb07e79f85b75 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 oB","129":"E F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"129":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D pB","129":"E F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"129":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 c13456b0e4b7cc..6f08723358bc4a 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 71747d079ca4dc..270074c98c581c 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I g J D E F"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","33":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"jB 8B nB"},H:{"1":"SC"},I:{"1":"I H WC nB XC YC","33":"eB TC UC VC"},J:{"1":"A","33":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I h J D E F"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","33":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"kB 9B oB"},H:{"1":"TC"},I:{"1":"I H XC oB YC ZC","33":"fB UC VC WC"},J:{"1":"A","33":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 02998d98d18de0..54991fad360bb2 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","4":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","2":"F","4":"3B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","4":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","2":"F","4":"4B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 38d22ec72f8cd4..403faf89cb7e8d 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"pB eB I g J D E F A B C K L G M N O h i j k l m n o qB rB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","33":"I g J D E F A uB jB vB wB xB yB kB"},F:{"1":"C HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:3,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"qB fB I h J D E F A B C K L G M N O i j k l m n o p rB sB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","33":"I h J D E F A vB kB wB xB yB zB lB"},F:{"1":"C IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 b2327e0be3ff48..827893299b6db6 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"pB eB I g J D E F A B C K L G M N O h i j k l qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","33":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB","33":"G M N O h i j k l"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"qB fB I h J D E F A B C K L G M N O i j k l m rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","33":"I h J D E vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB","33":"G M N O i j k l m"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 66af0b701d4175..421f12fda551fb 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","4":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","4":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","260":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","4":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","4":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","260":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 aeae2e96bb0f92..b41c2a3d6deb4b 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"c d e S f H iB","2":"pB eB qB rB","33":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b","164":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i","132":"0 1 2 3 j k l m n o p q r s t u v w x y z"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J uB jB vB","132":"D E F A B C K wB xB yB kB cB dB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B 5B","132":"G M N O h i j k l m n o p q","164":"B C 6B cB mB 7B dB"},G:{"1":"OC PC QC RC lB","2":"jB 8B nB 9B AC","132":"E BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"164":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","132":"XC YC"},J:{"132":"D A"},K:{"1":"T","2":"A","164":"B C cB mB dB"},L:{"1":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"164":"mC"}},B:5,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"c d e f S g H jB","2":"qB fB rB sB","33":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b","164":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j","132":"0 1 2 3 4 k l m n o p q r s t u v w x y z"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J vB kB wB","132":"D E F A B C K xB yB zB lB dB eB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B 6B","132":"G M N O i j k l m n o p q r","164":"B C 7B dB nB 8B eB"},G:{"1":"PC QC RC SC mB","2":"kB 9B oB AC BC","132":"E CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"164":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","132":"YC ZC"},J:{"132":"D A"},K:{"1":"T","2":"A","164":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"164":"nC"}},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 f28abceea7d32a..85295495d5acbd 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2c3a2393005340..dd06cadbe1047e 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 oB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c d e S f H","8":"C K L G M N O"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","66":"l m n o p q r","72":"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"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","2":"I g J D E F A B C K L G M N O h i j k l m n o Q R U V W X Y Z a b c d e S f H iB sB tB","66":"p q r s t u"},E:{"2":"I g uB jB vB","8":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB","2":"F B C QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","66":"G M N O h"},G:{"2":"jB 8B nB 9B AC","8":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"YC","2":"eB I H TC UC VC WC nB XC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC","2":"hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"72":"mC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F pB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c d e f S g H","8":"C K L G M N O"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","66":"m n o p q r s","72":"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"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","2":"I h J D E F A B C K L G M N O i j k l m n o p Q R U V W X Y Z a b c d e f S g H jB tB uB","66":"q r s t u v"},E:{"2":"I h vB kB wB","8":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB","2":"F B C RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","66":"G M N O i"},G:{"2":"kB 9B oB AC BC","8":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"ZC","2":"fB I H UC VC WC XC oB YC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC","2":"iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"72":"nC"}},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 d82b6169e39704..17082c333001e2 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 oB","8":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","8":"C K L G M N O"},C:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r qB rB","8":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB","456":"CB DB EB FB GB HB IB JB KB","712":"fB LB gB MB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB","8":"EB FB","132":"GB HB IB JB KB fB LB gB MB NB T OB PB"},E:{"2":"I g J D uB jB vB wB xB","8":"E F A yB","132":"B C K L G kB cB dB zB 0B 1B lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC","132":"GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I","132":"aC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"8":"mC"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F pB","8":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","8":"C K L G M N O"},C:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s rB sB","8":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB","456":"DB EB FB GB HB IB JB KB LB","712":"gB MB hB NB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB","8":"FB GB","132":"HB IB JB KB LB gB MB hB NB OB T PB QB"},E:{"2":"I h J D vB kB wB xB yB","8":"E F A zB","132":"B C K L G lB dB eB 0B 1B 2B mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC","132":"HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I","132":"bC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"8":"nC"}},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 4aa7956389b458..533f559c526a47 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 oB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I","16":"g J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g J","388":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F 3B 4B 5B 6B","132":"B cB mB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"8B","16":"jB nB","388":"9B"},H:{"1":"SC"},I:{"1":"H XC YC","2":"TC UC VC","388":"eB I WC nB"},J:{"1":"A","388":"D"},K:{"1":"C T dB","2":"A","132":"B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E pB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I","16":"h J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h J","388":"wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F 4B 5B 6B 7B","132":"B dB nB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"9B","16":"kB oB","388":"AC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"UC VC WC","388":"fB I XC oB"},J:{"1":"A","388":"D"},K:{"1":"C T eB","2":"A","132":"B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8896061ab6b26d..9b6f3d692d06e7 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":"oB","8":"J D E F","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","260":"C K L G","1284":"M N O"},C:{"8":"pB eB qB rB","4612":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I g J D E F A B C K L G M N O h","132":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB"},E:{"1":"K L G dB zB 0B 1B lB 2B","8":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"1":"F B C T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p 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:{"8":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC","2049":"KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H YC","8":"eB I TC UC VC WC nB XC"},J:{"1":"A","8":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"516":"S"},N:{"8":"A B"},O:{"8":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"pB","8":"J D E F","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","260":"C K L G","1284":"M N O"},C:{"8":"qB fB rB sB","4612":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I h J D E F A B C K L G M N O i","132":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","8":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"1":"F B C T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"8":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC","2049":"LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H ZC","8":"fB I UC VC WC XC oB YC"},J:{"1":"A","8":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"516":"S"},N:{"8":"A B"},O:{"8":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 691f5b81e5e7f7..4816115b2a1dee 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 oB"},B:{"1":"C K L G M","129":"N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB","4":"pB eB I g qB rB","129":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB","4":"I g J","129":"0 1 2 3 4 5 6 D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"4":"I g uB jB","129":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 C u v w x y z cB mB 7B dB","4":"F B 3B 4B 5B 6B","129":"4 5 6 7 8 9 G M N O h i j k l m n o p q r s t AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"4":"jB 8B nB","129":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"4":"SC"},I:{"4":"TC UC VC","129":"eB I H WC nB XC YC"},J:{"129":"D A"},K:{"1":"C cB mB dB","4":"A B","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"B","4":"A"},O:{"129":"ZC"},P:{"129":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"129":"lC"},S:{"1":"mC"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A pB"},B:{"1":"C K L G M","129":"N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB","4":"qB fB I h rB sB","129":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB","4":"I h J","129":"0 1 2 3 4 5 6 7 D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"4":"I h vB kB","129":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 C v w x y z dB nB 8B eB","4":"F B 4B 5B 6B 7B","129":"5 6 7 8 9 G M N O i j k l m n o p q r s t u AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"4":"kB 9B oB","129":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"4":"TC"},I:{"4":"UC VC WC","129":"fB I H XC oB YC ZC"},J:{"129":"D A"},K:{"1":"C dB nB eB","4":"A B","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"B","4":"A"},O:{"129":"aC"},P:{"129":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"129":"mC"},S:{"1":"nC"}},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 a4445a05080682..822e74ffda3d38 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 oB","132":"E","260":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D pB","132":"E","260":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8b546ceb433fdc..ed6234585f339b 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":"oB","132":"J D E F A B"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N"},C:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","260":"EB FB GB HB","772":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB"},D:{"1":"TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB","772":"m n o p q r s t u v w x y z"},E:{"1":"C K L G dB zB 0B 1B lB 2B","16":"I g uB jB","132":"J D E F A vB wB xB yB","260":"B kB cB"},F:{"1":"JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B C 3B 4B 5B 6B cB mB 7B","132":"dB","260":"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","772":"G M N O h i j k l m"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B","132":"E AC BC CC DC EC FC"},H:{"132":"SC"},I:{"1":"H","16":"eB TC UC VC","132":"I WC nB","772":"XC YC"},J:{"132":"D A"},K:{"1":"T","16":"A B C cB mB","132":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"260":"ZC"},P:{"1":"eC kB fC gC hC iC jC","260":"I aC bC cC dC"},Q:{"260":"kC"},R:{"132":"lC"},S:{"132":"mC"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"pB","132":"J D E F A B"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N"},C:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","260":"FB GB HB IB","772":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB"},D:{"1":"UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m","260":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB","772":"0 n o p q r s t u v w x y z"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","16":"I h vB kB","132":"J D E F A wB xB yB zB","260":"B lB dB"},F:{"1":"KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B C 4B 5B 6B 7B dB nB 8B","132":"eB","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","772":"G M N O i j k l m n"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC","132":"E BC CC DC EC FC GC"},H:{"132":"TC"},I:{"1":"H","16":"fB UC VC WC","132":"I XC oB","772":"YC ZC"},J:{"132":"D A"},K:{"1":"T","16":"A B C dB nB","132":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"260":"aC"},P:{"1":"fC lB gC hC iC jC kC","260":"I bC cC dC eC"},Q:{"260":"lC"},R:{"132":"mC"},S:{"132":"nC"}},B:6,C:"Date.prototype.toLocaleDateString"}; 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 5468b0ebf79bd1..078f32370e8c55 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 2fc3f7f71b3ef3..b388c43a2aa32d 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 oB","8":"J D E"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","8":"0 1 2 3 4 5 6 7 8 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"9 AB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I g J D E F A B","257":"h i j k l m n o p q r s t u v w x","769":"C K L G M N O"},E:{"1":"C K L G dB zB 0B 1B lB 2B","8":"I g uB jB vB","257":"J D E F A wB xB yB","1025":"B kB cB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"C cB mB 7B dB","8":"F B 3B 4B 5B 6B"},G:{"1":"E AC BC CC DC EC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB 9B","1025":"FC GC HC"},H:{"8":"SC"},I:{"1":"I H WC nB XC YC","8":"eB TC UC VC"},J:{"1":"A","8":"D"},K:{"1":"T","8":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"769":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B pB","8":"J D E"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","8":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"AB BB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I h J D E F A B","257":"i j k l m n o p q r s t u v w x y","769":"C K L G M N O"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","8":"I h vB kB wB","257":"J D E F A xB yB zB","1025":"B lB dB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"C dB nB 8B eB","8":"F B 4B 5B 6B 7B"},G:{"1":"E BC CC DC EC FC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB AC","1025":"GC HC IC"},H:{"8":"TC"},I:{"1":"I H XC oB YC ZC","8":"fB UC VC WC"},J:{"1":"A","8":"D"},K:{"1":"T","8":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"769":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 37f5c0b25337d7..7b461f198e9883 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 oB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB qB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"I g rB"},D:{"2":"I g J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","4":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B","4":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"TC UC VC","4":"eB I H WC nB XC YC"},J:{"2":"D","4":"A"},K:{"1":"C dB","2":"A B cB mB","4":"T"},L:{"4":"H"},M:{"4":"S"},N:{"1":"B","2":"A"},O:{"4":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"4":"lC"},S:{"4":"mC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB rB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"I h sB"},D:{"2":"I h J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","4":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B","4":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"UC VC WC","4":"fB I H XC oB YC ZC"},J:{"2":"D","4":"A"},K:{"1":"C eB","2":"A B dB nB","4":"T"},L:{"4":"H"},M:{"4":"S"},N:{"1":"B","2":"A"},O:{"4":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"4":"mC"},S:{"4":"nC"}},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 276c0fa2db6b5c..115067da07307b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4106df2ee918e1..165a5cf6d1ff21 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB","194":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","1218":"Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t","322":"u v w x y"},E:{"1":"2B","2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O 3B 4B 5B 6B cB mB 7B dB","578":"h i j k l"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB","194":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","1218":"Q R iB U V W X Y Z a b c d e f S g H"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u","322":"v w x y z"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O 4B 5B 6B 7B dB nB 8B eB","578":"i j k l m"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 9a490bd41913a2..0368a5c16b90d0 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":"oB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","129":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"pB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","129":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 32f327d16e086f..5542d1e3d46fe5 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 oB"},B:{"132":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I g t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","388":"J D E F A B C K L G M N O h i j k l m n o p q r s"},E:{"132":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"132":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"132":"SC"},I:{"132":"eB I H TC UC VC WC nB XC YC"},J:{"132":"D A"},K:{"132":"A B C T cB mB dB"},L:{"132":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"ZC"},P:{"132":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"132":"mC"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B pB"},B:{"132":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I h u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","388":"J D E F A B C K L G M N O i j k l m n o p q r s t"},E:{"132":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"132":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"132":"TC"},I:{"132":"fB I H UC VC WC XC oB YC ZC"},J:{"132":"D A"},K:{"132":"A B C T dB nB eB"},L:{"132":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"aC"},P:{"132":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"132":"nC"}},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 2e5fc1aa3a1484..67b40f97aaf882 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 oB","164":"F A","260":"B"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","260":"C K L G M"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E qB rB","516":"F A B C K L G M N O h i j k l m n o p q r s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k"},E:{"1":"J A B C vB yB kB cB","2":"I g K L G uB jB dB zB 0B 1B lB 2B","1028":"D E F wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B"},G:{"1":"DC EC FC GC HC IC JC","2":"jB 8B nB 9B AC KC LC MC NC OC PC QC RC lB","1028":"E BC CC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"16":"D","1028":"A"},K:{"1":"T dB","16":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"164":"A","260":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E pB","164":"F A","260":"B"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","260":"C K L G M"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E rB sB","516":"F A B C K L G M N O i j k l m n o p q r s t u"},D:{"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l"},E:{"1":"J A B C wB zB lB dB","2":"I h K L G vB kB eB 0B 1B 2B mB 3B","1028":"D E F xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B"},G:{"1":"EC FC GC HC IC JC KC","2":"kB 9B oB AC BC LC MC NC OC PC QC RC SC mB","1028":"E CC DC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"16":"D","1028":"A"},K:{"1":"T eB","16":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"164":"A","260":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cdc2f48b8ba5ff..9ae549aaf7b5ab 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q"},E:{"1":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r"},E:{"1":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 dbb853d770a4f3..c86de6e6c96c6b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","16":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","16":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f441377bb826be..2438303549308b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","16":"F 3B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B","16":"nB 9B AC"},H:{"2":"SC"},I:{"1":"H WC nB XC YC","2":"eB I TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","16":"F 4B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B","16":"oB AC BC"},H:{"2":"TC"},I:{"1":"H XC oB YC ZC","2":"fB I UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0780f2f1268467..dde48db80100b7 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 oB"},B:{"2":"C K L G M N O P Q R U V","132":"W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V","132":"W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB 3B 4B 5B 6B cB mB 7B dB","132":"UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","132":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","132":"T"},L:{"132":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V","132":"W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V","132":"W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB 4B 5B 6B 7B dB nB 8B eB","132":"VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","132":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","132":"T"},L:{"132":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 ded70584b5799d..89e28d6f8c88c0 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","16":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","16":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4182c5e672f6b1..37d03dfa54ecd4 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F 3B 4B 5B 6B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F 4B 5B 6B 7B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 e1daf96837b21d..b12621f8174639 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB","194":"EB FB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"2"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"194":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB","194":"FB GB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"3"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"194":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 69e92391031162..25b3118166acf9 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":"oB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 49df44c3f9272f..68b055f769a5ff 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8eeb3fb3f2fb5f..a12016035cac74 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L G M N O h i j k l m n"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","16":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B AC"},H:{"16":"SC"},I:{"1":"I H WC nB XC YC","16":"eB TC UC VC"},J:{"16":"D A"},K:{"1":"T","16":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L G M N O i j k l m n o"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","16":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC BC"},H:{"16":"TC"},I:{"1":"I H XC oB YC ZC","16":"fB UC VC WC"},J:{"16":"D A"},K:{"1":"T","16":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 f8223665b02675..1c7f5b0c408331 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 oB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","1028":"SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2564":"0 1 2 3 4 5 6 7 8 9 v w x y z AB","3076":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB"},D:{"16":"I g J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB","388":"E","1028":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"16":"I uB jB","132":"g J D E F A vB wB xB yB kB","1028":"B C K L G cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z","1028":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"16":"jB 8B nB","132":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"132":"I WC nB XC YC","292":"eB TC UC VC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C cB mB dB","1028":"T"},L:{"1028":"H"},M:{"1028":"S"},N:{"132":"A B"},O:{"132":"ZC"},P:{"132":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"2564":"mC"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","1028":"TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2564":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB","3076":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB"},D:{"16":"I h J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB","388":"E","1028":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"16":"I vB kB","132":"h J D E F A wB xB yB zB lB","1028":"B C K L G dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB","1028":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"16":"kB 9B oB","132":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"132":"I XC oB YC ZC","292":"fB UC VC WC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C dB nB eB","1028":"T"},L:{"1028":"H"},M:{"1028":"S"},N:{"132":"A B"},O:{"132":"aC"},P:{"132":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"2564":"nC"}},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 11474695189de9..064474b9fce947 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a9d1c3d21591cd..8d0d02d1a785ec 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 oB","772":"A B"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","8":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","8":"F B 3B 4B 5B 6B cB mB 7B"},G:{"1":"RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","1025":"H"},J:{"2":"D A"},K:{"1":"dB","8":"A B C cB mB","1025":"T"},L:{"1025":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F pB","772":"A B"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","8":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","8":"F B 4B 5B 6B 7B dB nB 8B"},G:{"1":"SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","1025":"H"},J:{"2":"D A"},K:{"1":"eB","8":"A B C dB nB","1025":"T"},L:{"1025":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 b24eede81d598e..2e61b7d5cd63bd 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 eb968625c4f677..a2fe55965d251c 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","16":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","16":"F 3B 4B 5B 6B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"C T dB","16":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","16":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","16":"F 4B 5B 6B 7B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"C T eB","16":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 373275b8290112..49100c86682cc5 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","132":"A B C K kB cB dB zB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC","132":"FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","132":"A B C K lB dB eB 0B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC","132":"GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 13d716ba7f474d..db47a92924572a 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 oB","164":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w","132":"0 1 2 3 x y z"},E:{"1":"C K L G dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB","164":"D E F A B xB yB kB cB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j 3B 4B 5B 6B cB mB 7B dB","132":"k l m n o p q"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"16":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A pB","164":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x","132":"0 1 2 3 4 y z"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB","164":"D E F A B yB zB lB dB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k 4B 5B 6B 7B dB nB 8B eB","132":"l m n o p q r"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"16":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 64d897d82fbda8..dc7d7826c6758b 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":"oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 31acf17b33aaee..3033285716bb55 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 oB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","4":"pB eB qB rB","132":"I g J D E F A B C K L G M N O h i"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I g J D E F A B C K L G M N O","132":"h i j k"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","4":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","4":"F B C 3B 4B 5B 6B cB mB 7B","132":"dB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","4":"jB 8B nB 9B"},H:{"132":"SC"},I:{"1":"H XC YC","4":"eB TC UC VC","132":"WC nB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"T","4":"A B C cB mB","132":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D pB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","4":"qB fB rB sB","132":"I h J D E F A B C K L G M N O i j"},D:{"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I h J D E F A B C K L G M N O","132":"i j k l"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","4":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","4":"F B C 4B 5B 6B 7B dB nB 8B","132":"eB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","4":"kB 9B oB AC"},H:{"132":"TC"},I:{"1":"H YC ZC","4":"fB UC VC WC","132":"XC oB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"T","4":"A B C dB nB","132":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 aaa96ca07cdf8f..3b4c0eeb972866 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q 3B 4B 5B 6B cB mB 7B dB","132":"r s t u v w x"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","132":"5 6 7 8 9 AB BB"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r 4B 5B 6B 7B dB nB 8B eB","132":"s t u v w x y"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5e25bef41da4d1..f8e004236ef5a9 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n qB rB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o rB sB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 300c1112ee71cd..8091f367cd8714 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB qB rB","194":"PB"},D:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB rB sB","194":"QB"},D:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 2bbf769af7f4ca..7c7efae97159e2 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB qB rB","322":"GB HB IB JB KB fB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","194":"LB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB","3076":"kB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"9"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC","3076":"GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB rB sB","322":"HB IB JB KB LB gB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","194":"MB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB","3076":"lB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"AB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC","3076":"HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 ca2b1f45221eb2..319eade9c4abb7 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G qB rB","132":"M N O h i j k l m","260":"n o p q r s","516":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O","1028":"h i j k l m n o p q r s t u v"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","1028":"G M N O h i"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC","1028":"WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G rB sB","132":"M N O i j k l m n","260":"o p q r s t","516":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O","1028":"i j k l m n o p q r s t u v w"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","1028":"G M N O i j"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC","1028":"XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2e2c2d9159f4a2..46b1fe5089b29a 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2550a607696fee..dfc2033485542c 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 oB","388":"B"},B:{"257":"P Q R U V W X Y Z a b c d e S f H","260":"C K L","769":"G M N O"},C:{"2":"pB eB I g qB rB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","257":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I g J D E F A B C K L G M N O h i","4":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB","257":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","4":"E F xB yB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","4":"G M N O h i j k l m n o p q r s t u v w x y z","257":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC","4":"E BC CC DC EC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","4":"XC YC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C cB mB dB","257":"T"},L:{"257":"H"},M:{"257":"S"},N:{"2":"A","388":"B"},O:{"257":"ZC"},P:{"4":"I","257":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"257":"kC"},R:{"4":"lC"},S:{"4":"mC"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A pB","388":"B"},B:{"257":"P Q R U V W X Y Z a b c d e f S g H","260":"C K L","769":"G M N O"},C:{"2":"qB fB I h rB sB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","257":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I h J D E F A B C K L G M N O i j","4":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB","257":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","4":"E F yB zB"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","4":"0 G M N O i j k l m n o p q r s t u v w x y z","257":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC","4":"E CC DC EC FC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","4":"YC ZC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C dB nB eB","257":"T"},L:{"257":"H"},M:{"257":"S"},N:{"2":"A","388":"B"},O:{"257":"aC"},P:{"4":"I","257":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"257":"lC"},R:{"4":"mC"},S:{"4":"nC"}},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 d6fd35e931ef76..c35a6720f0222a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB"},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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","4":"F 3B 4B 5B 6B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"C T cB mB dB","4":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB"},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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","4":"F 4B 5B 6B 7B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"C T dB nB eB","4":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a8033307b340c9..66fa9be05d50da 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},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 pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 ac4ad0cfb58f06..5122baf62fbfe9 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 oB"},B:{"1":"P Q R U V W X Y","2":"C K L G M N O","1025":"Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB qB rB","260":"XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"XB YB ZB aB bB P Q R U V W X Y","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","132":"LB gB MB NB T OB PB QB RB SB TB UB VB WB","1025":"Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B uB jB vB wB xB yB kB","772":"C K L G cB dB zB 0B 1B lB 2B"},F:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","132":"9 AB BB CB DB EB FB GB HB IB JB KB LB","1025":"YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC","772":"IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1025":"H"},M:{"260":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC","132":"dC eC kB"},Q:{"132":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y","2":"C K L G M N O","1025":"Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB rB sB","260":"YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"YB ZB aB bB cB P Q R U V W X Y","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","132":"MB hB NB OB T PB QB RB SB TB UB VB WB XB","1025":"Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B vB kB wB xB yB zB lB","772":"C K L G dB eB 0B 1B 2B mB 3B"},F:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB","1025":"ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC","772":"JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1025":"H"},M:{"260":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC","132":"eC fC lB"},Q:{"132":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 d4479013300771..740757fd64606d 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v qB rB","1025":"1","1218":"0 w x y z"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","260":"2","772":"3"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o 3B 4B 5B 6B cB mB 7B dB","260":"p","772":"q"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w rB sB","1025":"2","1218":"0 1 x y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","260":"3","772":"4"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p 4B 5B 6B 7B dB nB 8B eB","260":"q","772":"r"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2d1b6a2f220dc1..d99f2f86ce89fe 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":"oB","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G","16":"M N O h"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","16":"F 3B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"388":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A","260":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"pB","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G","16":"M N O i"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","16":"F 4B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"388":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A","260":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c12635d0d1b319..b04db75e4db5be 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 oB","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","260":"C K L G M N O"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","260":"I g J D E F A B C K L G M N O h i j k l m n o p rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g","260":"K L G M N O h i j k l 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 kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","260":"J D E F wB xB yB","388":"vB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B 3B 4B 5B 6B","260":"C G M N O h i j k l m cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","260":"E AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H YC","2":"TC UC VC","260":"XC","388":"eB I WC nB"},J:{"260":"A","388":"D"},K:{"1":"T","2":"A B","260":"C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","260":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F pB","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","260":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","260":"I h J D E F A B C K L G M N O i j k l m n o p q sB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h","260":"0 K L G M N O i j k l 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 lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","260":"J D E F xB yB zB","388":"wB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B 4B 5B 6B 7B","260":"C G M N O i j k l m n dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","260":"E BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H ZC","2":"UC VC WC","260":"YC","388":"fB I XC oB"},J:{"260":"A","388":"D"},K:{"1":"T","2":"A B","260":"C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","260":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 27bdec06cf4bac..9d6cb1335fb480 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 oB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F B 3B 4B 5B 6B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"C T cB mB dB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F B 4B 5B 6B 7B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"C T dB nB eB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c5744100c6f57f..ca73368b61b714 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F 3B 4B","16":"B 5B 6B cB mB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"C T mB dB","2":"A","16":"B cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F 4B 5B","16":"B 6B 7B dB nB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"C T nB eB","2":"A","16":"B dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 e7faba072cb30b..cf1d186b7b5660 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 oB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"I g J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","36":"E F A B C"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","33":"A"},K:{"2":"A B C T cB mB dB"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I","33":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","33":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"I h J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","36":"E F A B C"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","33":"A"},K:{"2":"A B C T dB nB eB"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I","33":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c433e3bafaa7b6..9de1b1eb5b770c 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB qB rB"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","16":"6 7 8","388":"9 AB BB CB DB EB FB GB HB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","516":"B C cB dB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"TC UC VC","16":"eB I WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"T dB","16":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","129":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB rB sB"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","16":"7 8 9","388":"AB BB CB DB EB FB GB HB IB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","516":"B C dB eB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"UC VC WC","16":"fB I XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T eB","16":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","129":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 284c12fb8542eb..ba05b4696888cb 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 oB"},B:{"1":"V W X Y Z a b c d e S f H","2":"C K L G M N O P Q R U"},C:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB qB rB"},D:{"1":"V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB"},F:{"1":"WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"V W X Y Z a b c d e f S g H","2":"C K L G M N O P Q R U"},C:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB rB sB"},D:{"1":"V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B"},F:{"1":"XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 8dbfb059e2e0db..56085ba5ac74e5 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 oB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","164":"pB eB I g J D E F A B C K L G M N O h i j qB rB","516":"k l m n o p"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"j k l m n o p q","164":"I g J D E F A B C K L G M N O h i"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","33":"D E wB xB","164":"I g J uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B","33":"G M"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"E BC CC","164":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"H XC YC","164":"eB I TC UC VC WC nB"},J:{"1":"A","164":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","292":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F pB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","164":"qB fB I h J D E F A B C K L G M N O i j k rB sB","516":"l m n o p q"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"k l m n o p q r","164":"I h J D E F A B C K L G M N O i j"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","33":"D E xB yB","164":"I h J vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B","33":"G M"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"E CC DC","164":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"H YC ZC","164":"fB I UC VC WC XC oB"},J:{"1":"A","164":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","292":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 ced68acc19389b..7281ef40a696c6 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB"},D:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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":"K L G zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB dB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB"},D:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB eB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 a2ac455296bda7..2946a8fae9db6b 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F 3B 4B 5B 6B","16":"B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"I H WC nB XC YC","2":"TC UC VC","16":"eB"},J:{"1":"D A"},K:{"1":"C T dB","2":"A","16":"B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F 4B 5B 6B 7B","16":"B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"I H XC oB YC ZC","2":"UC VC WC","16":"fB"},J:{"1":"D A"},K:{"1":"C T eB","2":"A","16":"B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 781773321d4e1d..ea95163dab80d5 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"preventScroll support in focus"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 436188b1843837..3b8b6cab3fe45a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"d e S f H iB","2":"0 1 2 3 4 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","260":"FB GB HB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB","16":"F","132":"A yB kB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC","132":"DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"132":"mC"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"d e f S g H jB","2":"0 1 2 3 4 5 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","260":"GB HB IB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB","16":"F","132":"A zB lB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC","132":"EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"132":"nC"}},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 3d7df84b17eb66..2aad48228ccae6 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"G M N O h i j k l m n o p q r s t u v","164":"I g J D E F A B C K L"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z","292":"M N O h i"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"D E F uB jB wB xB","4":"I g J vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j k l m n o p q r s t u v w"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E BC CC DC","4":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","33":"XC YC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","33":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"G M N O i j k l m n o p q r s t u v w","164":"I h J D E F A B C K L"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB","292":"M N O i j"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"D E F vB kB xB yB","4":"I h J wB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k l m n o p q r s t u v w x"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E CC DC EC","4":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","33":"YC ZC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","33":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 fc1cb6be84749e..630056e200d27a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l qB rB","194":"m n o p q r s t u v"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q","33":"r s t u"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB","33":"D E F xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G 3B 4B 5B 6B cB mB 7B dB","33":"M N O h"},G:{"1":"JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","33":"E CC DC EC FC GC HC IC"},H:{"2":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB","33":"XC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m rB sB","194":"n o p q r s t u v w"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r","33":"s t u v"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB","33":"D E F yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G 4B 5B 6B 7B dB nB 8B eB","33":"M N O i"},G:{"1":"KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","33":"E DC EC FC GC HC IC JC"},H:{"2":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB","33":"YC"},J:{"2":"D","33":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5a85e38eda1834..c43aad1b345c24 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w qB rB","194":"0 1 2 x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x rB sB","194":"0 1 2 3 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f5cc5c330cbc10..bfc821d49b3f02 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W","194":"X"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"@font-face metrics overrides"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W","194":"X"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 99c035b5649ab3..683e4d269bc866 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 oB"},B:{"2":"C K L G M N O","194":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB","194":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"258":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"194":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","194":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"258":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"194":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 167ed6e6a6eecd..216a82b747c075 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 oB"},B:{"2":"C K L G M N O","676":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"uB jB","676":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","676":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"804":"mC"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","676":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"vB kB","676":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","676":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"804":"nC"}},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 c1c31790a770b2..6fd86e0b260846 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 oB","4":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","4":"C K L G M"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB","194":"0 1 2 3 4 5 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","4":"I g J D E F uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","4":"G M N O h i j k"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","4":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","4":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","4":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","4":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E pB","4":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","4":"C K L G M"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB","194":"0 1 2 3 4 5 6 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","4":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","4":"G M N O i j k l"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","4":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","4":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","4":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","4":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 b50f6809d3c133..1a9df46b92344d 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 oB","130":"A B"},B:{"130":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","130":"I g J D E F A B C K L G M N O h i j k l","322":"m n o p q r s t u v"},D:{"2":"I g J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"D E F uB jB wB xB","130":"I g J vB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","130":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB BC CC DC","130":"8B nB 9B AC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","130":"H XC YC"},J:{"2":"D","130":"A"},K:{"2":"A B C cB mB dB","130":"T"},L:{"130":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"130":"ZC"},P:{"130":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"130":"kC"},R:{"130":"lC"},S:{"1":"mC"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F pB","130":"A B"},B:{"130":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","130":"I h J D E F A B C K L G M N O i j k l m","322":"n o p q r s t u v w"},D:{"2":"I h J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"D E F vB kB xB yB","130":"I h J wB"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","130":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB CC DC EC","130":"9B oB AC BC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","130":"H YC ZC"},J:{"2":"D","130":"A"},K:{"2":"A B C dB nB eB","130":"T"},L:{"130":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"130":"aC"},P:{"130":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"130":"lC"},R:{"130":"mC"},S:{"1":"nC"}},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 5081d6bb5627f6..3ab906d0fe0cb9 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l qB rB","132":"m n o p q r s t u v"},D:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"CSS font-variant-east-asian "}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m rB sB","132":"n o p q r s t u v w"},D:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 d97820168a3c7d..1bf357bf3c10da 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v qB rB"},D:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w rB sB"},D:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 b14d75fcbc3b54..2db5c5c8bb7f65 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","2":"F 3B"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","260":"jB 8B"},H:{"2":"SC"},I:{"1":"I H WC nB XC YC","2":"TC","4":"eB UC VC"},J:{"1":"A","4":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","2":"F 4B"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","260":"kB 9B"},H:{"2":"TC"},I:{"1":"I H XC oB YC ZC","2":"UC","4":"fB VC WC"},J:{"1":"A","4":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2529d594353c2a..07fd833a805b01 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5ed8a90005a682..6c7ae2489a1e1e 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B","16":"4B 5B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"I H WC nB XC YC","2":"TC UC VC","16":"eB"},J:{"1":"A","2":"D"},K:{"1":"B C T cB mB dB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B","16":"5B 6B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"I H XC oB YC ZC","2":"UC VC WC","16":"fB"},J:{"1":"A","2":"D"},K:{"1":"B C T dB nB eB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 fdf5d4de0a3a42..4062069806bac3 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I uB jB","132":"g J D E F A vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","2":"F 3B"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB","132":"E 8B nB 9B AC BC CC DC EC FC"},H:{"516":"SC"},I:{"1":"H YC","2":"eB TC UC VC","132":"I WC nB XC"},J:{"1":"A","132":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"132":"mC"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","132":"h J D E F A wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","2":"F 4B"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB","132":"E 9B oB AC BC CC DC EC FC GC"},H:{"516":"TC"},I:{"1":"H ZC","2":"fB UC VC WC","132":"I XC oB YC"},J:{"1":"A","132":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"132":"nC"}},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 5e44a23ab207a2..793cb2289d4423 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":"oB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB qB rB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB"},E:{"4":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"uB jB"},F:{"1":"F B C EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","4":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB"},G:{"2":"jB","4":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","4":"XC YC"},J:{"2":"D","4":"A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"1":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","4":"I aC bC cC"},Q:{"1":"kC"},R:{"4":"lC"},S:{"4":"mC"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"pB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB rB sB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB"},E:{"4":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"vB kB"},F:{"1":"F B C FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","4":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},G:{"2":"kB","4":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","4":"YC ZC"},J:{"2":"D","4":"A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"1":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","4":"I bC cC dC"},Q:{"1":"lC"},R:{"4":"mC"},S:{"4":"nC"}},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 84d052b5e25cc9..2b060fb54da29b 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 oB","548":"B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","516":"C K L G M N O"},C:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F qB rB","676":"0 1 2 3 4 5 6 7 8 A B C K L G M N O h i j k l m n o p q r s t u v w x y z","1700":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB"},D:{"1":"UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L","676":"G M N O h","804":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB"},E:{"2":"I g uB jB","676":"vB","804":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B","804":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p 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 jB 8B nB 9B AC BC CC DC EC FC GC HC IC RC lB","2052":"JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","292":"A"},K:{"2":"A B C T cB mB dB"},L:{"804":"H"},M:{"1":"S"},N:{"2":"A","548":"B"},O:{"804":"ZC"},P:{"1":"kB fC gC hC iC jC","804":"I aC bC cC dC eC"},Q:{"804":"kC"},R:{"804":"lC"},S:{"1":"mC"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A pB","548":"B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","516":"C K L G M N O"},C:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F rB sB","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z","1700":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB"},D:{"1":"VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L","676":"G M N O i","804":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB"},E:{"2":"I h vB kB","676":"wB","804":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B","804":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC SC mB","2052":"KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","292":"A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","548":"B"},O:{"804":"aC"},P:{"1":"lB gC hC iC jC kC","804":"I bC cC dC eC fC"},Q:{"804":"lC"},R:{"804":"mC"},S:{"1":"nC"}},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 cbbae3d8a98c63..0b46488bd5ad00 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i","33":"j k l m"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j","33":"k l m n"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 18592d78b76c93..9096902f234090 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":"oB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB qB rB","8":"pB eB","129":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB","4":"I","129":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"I uB jB","129":"A"},F:{"1":"0 B C M N O h i j k l m n o p q r s t u v w x y z 6B cB mB 7B dB","2":"F G 3B","8":"4B 5B","129":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC","129":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I TC UC VC WC nB XC YC","129":"H"},J:{"1":"D A"},K:{"1":"B C cB mB dB","8":"A","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I","129":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"129":"kC"},R:{"129":"lC"},S:{"1":"mC"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB rB sB","8":"qB fB","129":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB","4":"I","129":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"I vB kB","129":"A"},F:{"1":"0 1 B C M N O i j k l m n o p q r s t u v w x y z 7B dB nB 8B eB","2":"F G 4B","8":"5B 6B","129":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC","129":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I UC VC WC XC oB YC ZC","129":"H"},J:{"1":"D A"},K:{"1":"B C dB nB eB","8":"A","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I","129":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"129":"lC"},R:{"129":"mC"},S:{"1":"nC"}},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 65e3095a810e8f..eb5f32166f978f 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 oB","2049":"F A B","2692":"E"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","260":"I g J D E F A B","1156":"eB","1284":"qB","1796":"rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","16":"F 3B","132":"4B 5B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2049":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D pB","2049":"F A B","2692":"E"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","260":"I h J D E F A B","1156":"fB","1284":"rB","1796":"sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","16":"F 4B","132":"5B 6B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2049":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 571475251adc42..adab0e7207d5e2 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","132":"eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","260":"I g J D E F A"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","260":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","260":"F 3B 4B 5B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","260":"jB 8B nB"},H:{"260":"SC"},I:{"1":"I H WC nB XC YC","260":"eB TC UC VC"},J:{"1":"A","260":"D"},K:{"1":"B C T cB mB dB","260":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","132":"fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","260":"I h J D E F A"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","260":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","260":"F 4B 5B 6B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","260":"kB 9B oB"},H:{"260":"TC"},I:{"1":"I H XC oB YC ZC","260":"fB UC VC WC"},J:{"1":"A","260":"D"},K:{"1":"B C T dB nB eB","260":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 292ddc65e49a30..ace24e0b7a2bdd 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":"oB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","8":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","8":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5175ee88238c6d..a280cbbe85998a 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 oB","33":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","33":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A pB","33":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","33":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0a69599e347125..6893e56700eecf 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1e6bf7315ceabb..acfd4ef73ffea8 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y"},E:{"2":"I g J D uB jB vB wB xB","129":"B C K L G kB cB dB zB 0B 1B lB 2B","194":"E F A yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB 9B AC BC","129":"GC HC IC JC KC LC MC NC OC PC QC RC lB","194":"E CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D vB kB wB xB yB","129":"B C K L G lB dB eB 0B 1B 2B mB 3B","194":"E F A zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB AC BC CC","129":"HC IC JC KC LC MC NC OC PC QC RC SC mB","194":"E DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a981f7be4e0c89..d8b473c226f45f 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","8":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","8":"F 3B 4B 5B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"eB I H UC VC WC nB XC YC","2":"TC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","8":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","8":"F 4B 5B 6B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"fB I H VC WC XC oB YC ZC","2":"UC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4034c098c05d1a..95c24d3e42bb95 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A uB jB vB wB xB yB kB","130":"B C K L G cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC","130":"HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A vB kB wB xB yB zB lB","130":"B C K L G dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC","130":"IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 02d3330245ce58..44588b7e08d041 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 oB","132":"B"},B:{"2":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","516":"B C cB dB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","258":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","258":"T"},L:{"258":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I","258":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"2":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","516":"B C dB eB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","258":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","258":"T"},L:{"258":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I","258":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 de203718509fc3..5a88b27d7d8a6d 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F B 3B 4B 5B 6B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"I H WC nB XC YC","2":"eB TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"C T cB mB dB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F B 4B 5B 6B 7B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"I H XC oB YC ZC","2":"fB UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"C T dB nB eB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a02ec42fea2b2f..13e1360cec9217 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h","33":"i j k l"},E:{"1":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i","33":"j k l m"},E:{"1":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3df2544606db70..bd9f06e3abcb17 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","4":"g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB mB 7B dB","2":"F B 3B 4B 5B 6B cB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B","4":"nB"},H:{"2":"SC"},I:{"1":"H UC VC nB XC YC","2":"eB I TC WC"},J:{"1":"D A"},K:{"1":"C T cB mB dB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","4":"h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB nB 8B eB","2":"F B 4B 5B 6B 7B dB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B","4":"oB"},H:{"2":"TC"},I:{"1":"H VC WC oB YC ZC","2":"fB I UC XC"},J:{"1":"D A"},K:{"1":"C T dB nB eB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 ed8f50bf1a5f64..ecbde00aa7c107 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB 9B","129":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC","257":"UC VC"},J:{"1":"A","16":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"516":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"16":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:4,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB AC","129":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC","257":"VC WC"},J:{"1":"A","16":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"516":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"16":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 4f3c7a37d282fe..35932913dd9477 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":"oB","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","132":"eB qB rB","260":"I g J D E F A B C K L G M N O h i"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g","260":"J D E F A B C K L G M N O h i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","132":"I uB jB","260":"g J vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","132":"F B 3B 4B 5B 6B","260":"C cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"jB","260":"8B nB 9B AC"},H:{"132":"SC"},I:{"1":"H XC YC","132":"TC","260":"eB I UC VC WC nB"},J:{"260":"D A"},K:{"1":"T","132":"A","260":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"pB","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","132":"fB rB sB","260":"I h J D E F A B C K L G M N O i j"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h","260":"J D E F A B C K L G M N O i j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","132":"I vB kB","260":"h J wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","132":"F B 4B 5B 6B 7B","260":"C dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"kB","260":"9B oB AC BC"},H:{"132":"TC"},I:{"1":"H YC ZC","132":"UC","260":"fB I VC WC XC oB"},J:{"260":"D A"},K:{"1":"T","132":"A","260":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 70b5312310e2bb..92c8f8ed7b1095 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 37857376cd5f52..9969e1259f1625 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 oB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB","513":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","513":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB","260":"F A yB kB"},F:{"1":"q r s t u v w x y z","2":"F B C G M N O h i j k l m n o p 3B 4B 5B 6B cB mB 7B dB","513":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","513":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","513":"T"},L:{"513":"H"},M:{"513":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I","513":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"513":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB","513":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","513":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB","260":"F A zB lB"},F:{"1":"0 r s t u v w x y z","2":"F B C G M N O i j k l m n o p q 4B 5B 6B 7B dB nB 8B eB","513":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","513":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","513":"T"},L:{"513":"H"},M:{"513":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I","513":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"513":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 48bdb1d14570ab..fe784cc5bd3d63 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 oB"},B:{"1":"Y Z a b c d e S f H","2":"C K L G M N O","322":"P Q R U V","578":"W X"},C:{"1":"Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB qB rB","194":"VB WB XB YB ZB aB bB P Q R hB U V W X Y"},D:{"1":"Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","322":"P Q R U V","578":"W X"},E:{"2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB zB","1090":"L G 0B 1B lB 2B"},F:{"1":"XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB","578":"WB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","66":"PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"Y Z a b c d e f S g H","2":"C K L G M N O","322":"P Q R U V","578":"W X"},C:{"1":"Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB rB sB","194":"WB XB YB ZB aB bB cB P Q R iB U V W X Y"},D:{"1":"Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","322":"P Q R U V","578":"W X"},E:{"2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB 0B","1090":"L G 1B 2B mB 3B"},F:{"1":"YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB","578":"XB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","66":"QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 82a12de16e327f..e5efd0a714a170 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M qB rB","4":"N O h i j k l m n o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B"},H:{"2":"SC"},I:{"1":"eB I H UC VC WC nB XC YC","2":"TC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M rB sB","4":"N O i j k l m n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B"},H:{"2":"TC"},I:{"1":"fB I H VC WC XC oB YC ZC","2":"UC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d920b1b53fe133..4a7cf2c71cdcd1 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","66":"i j k l m n o"},E:{"2":"I g J E F A B C K L G uB jB vB wB yB kB cB dB zB 0B 1B lB 2B","130":"D xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","130":"BC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","66":"j k l m n o p"},E:{"2":"I h J E F A B C K L G vB kB wB xB zB lB dB eB 0B 1B 2B mB 3B","130":"D yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","130":"CC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 db0ba67ae9c361..8c7ae1859d2b57 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":"oB","8":"J D E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","8":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB","8":"eB I g J D E F A B C K L G M N O h i j k l m qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K","8":"L G M N O h"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB","8":"I g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B 3B 4B 5B 6B","8":"C cB mB 7B dB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB","8":"8B nB 9B"},H:{"2":"SC"},I:{"1":"H XC YC","8":"eB I TC UC VC WC nB"},J:{"1":"A","8":"D"},K:{"1":"T","2":"A B","8":"C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"pB","8":"J D E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","8":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB","8":"fB I h J D E F A B C K L G M N O i j k l m n rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K","8":"L G M N O i"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB","8":"I h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B 4B 5B 6B 7B","8":"C dB nB 8B eB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB","8":"9B oB AC"},H:{"2":"TC"},I:{"1":"H YC ZC","8":"fB I UC VC WC XC oB"},J:{"1":"A","8":"D"},K:{"1":"T","2":"A B","8":"C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a79044baa55f7b..0c09acd5c3ca72 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 oB"},B:{"2":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w qB rB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","322":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","322":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"322":"kC"},R:{"1":"lC"},S:{"194":"mC"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x rB sB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","322":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"322":"lC"},R:{"1":"mC"},S:{"194":"nC"}},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 e1edce8a941e60..c3044e9c48fc2f 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 oB","161":"B"},B:{"2":"P Q R U V W X Y Z a b c d e S f H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A","161":"B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A pB","161":"B"},B:{"2":"P Q R U V W X Y Z a b c d e f S g H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A","161":"B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 7798789eebc7c9..5b68738ecd2473 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 07902178eb8eb0..015ef58ff425a9 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O","194":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB","194":"XB YB ZB aB bB P Q R U V W X Y Z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB","194":"MB NB T OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"jC","2":"I aC bC cC dC eC kB fC gC hC iC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O","194":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB","194":"YB ZB aB bB cB P Q R U V W X Y Z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB","194":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"kC","2":"I bC cC dC eC fC lB gC hC iC jC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 0c14cc1d90c6be..defeb8d7168135 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 oB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c d e S f H","8":"C K L G M N O"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r qB rB","8":"s t IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","72":"0 1 2 3 4 5 6 7 8 9 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 y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r Q R U V W X Y Z a b c d e S f H iB sB tB","66":"s t u v w","72":"x"},E:{"2":"I g uB jB vB","8":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB","2":"F B C G M QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","66":"N O h i j","72":"k"},G:{"2":"jB 8B nB 9B AC","8":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"8":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC","2":"hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F pB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c d e f S g H","8":"C K L G M N O"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s rB sB","8":"t u JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","72":"0 1 2 3 4 5 6 7 8 9 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 z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s Q R U V W X Y Z a b c d e f S g H jB tB uB","66":"t u v w x","72":"y"},E:{"2":"I h vB kB wB","8":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB","2":"F B C G M RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","66":"N O i j k","72":"l"},G:{"2":"kB 9B oB AC BC","8":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"8":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC","2":"iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 9b6dc68cb85564..2c482abff382c8 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB","16":"qB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB","16":"rB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 793775ed294a9a..45971702f9f136 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 oB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"A B C K L G","36":"I g J D E F"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"A","8":"I g J D E F","33":"l","36":"B C K L G M N O h i j k"},E:{"1":"A B C K L G kB cB dB zB 1B lB 2B","8":"I g J D uB jB vB wB","260":"E F xB yB","516":"0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B","8":"B C 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC RC lB","8":"jB 8B nB 9B AC BC","260":"E CC DC EC","516":"QC"},H:{"2":"SC"},I:{"1":"H XC YC","8":"eB I TC UC VC WC nB"},J:{"1":"A","8":"D"},K:{"1":"T","2":"A","8":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"A B C K L G","36":"I h J D E F"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"A","8":"I h J D E F","33":"m","36":"B C K L G M N O i j k l"},E:{"1":"A B C K L G lB dB eB 0B 2B mB 3B","8":"I h J D vB kB wB xB","260":"E F yB zB","516":"1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B","8":"B C 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC SC mB","8":"kB 9B oB AC BC CC","260":"E DC EC FC","516":"RC"},H:{"2":"TC"},I:{"1":"H YC ZC","8":"fB I UC VC WC XC oB"},J:{"1":"A","8":"D"},K:{"1":"T","2":"A","8":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 024ef4990eef4e..730557dbe99587 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","132":"6 7 8","260":"9 AB BB CB"},D:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","132":"AB BB CB DB","260":"EB FB GB HB IB JB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w 3B 4B 5B 6B cB mB 7B dB","132":"0 x y z","260":"1 2 3 4 5 6"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC","16":"FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I","260":"aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"260":"mC"}},B:4,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","132":"7 8 9","260":"AB BB CB DB"},D:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB","132":"BB CB DB EB","260":"FB GB HB IB JB KB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x 4B 5B 6B 7B dB nB 8B eB","132":"0 1 y z","260":"2 3 4 5 6 7"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC","16":"GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I","260":"bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"260":"nC"}},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 d0addfe074d3a9..754bccc97a3581 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":"oB","132":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","36":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"pB","132":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","36":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a6385fd6ec9bcf..69d2d4cca3f0ec 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a98f036903a1f7..bada839099091c 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 oB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r qB rB","516":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"N O h i j k l m n o","2":"I g J D E F A B C K L G M","132":"0 1 2 p q r s t u v w x y z","260":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J vB wB","2":"I g uB jB","2052":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB","1025":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1025":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2052":"A B"},O:{"1025":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"260":"kC"},R:{"1":"lC"},S:{"516":"mC"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A pB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s rB sB","516":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"N O i j k l m n o p","2":"I h J D E F A B C K L G M","132":"0 1 2 3 q r s t u v w x y z","260":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J wB xB","2":"I h vB kB","2052":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB","1025":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1025":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2052":"A B"},O:{"1025":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"260":"lC"},R:{"1":"mC"},S:{"516":"nC"}},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 f809e0528b0422..60519f7cad5067 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F G M 3B 4B 5B 6B"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC","129":"KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F G M 4B 5B 6B 7B"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC","129":"LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 7094cd6ac72367..9d1673b54d1a60 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB","1090":"FB GB HB IB","2052":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d","4100":"e S f H iB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h","2052":"i j k l m"},E:{"2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB","4100":"G 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB","260":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB TC UC VC","514":"I WC nB"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2052":"mC"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB","1090":"GB HB IB JB","2052":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d","4100":"e f S g H jB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i","2052":"j k l m n"},E:{"2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B","4100":"G 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB","260":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB UC VC WC","514":"I XC oB"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2052":"nC"}},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 dc0caa24eb0b92..fd87a4e76dda36 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","132":"TC UC VC"},J:{"1":"A","132":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","132":"UC VC WC"},J:{"1":"A","132":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 e0f66156a22d3c..63504788e0f38e 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 oB","2561":"A B","2692":"F"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2561":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB","1537":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB rB","1796":"eB qB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L","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 fB LB gB MB NB T OB","1537":"G M N O h i j k l m n o p q r s t u v w"},E:{"1":"L G zB 0B 1B lB 2B","16":"I g J uB jB","1025":"D E F A B C wB xB yB kB cB","1537":"vB","4097":"K dB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","16":"F B C 3B 4B 5B 6B cB mB","260":"7B","1025":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB","1537":"G M N O h i j"},G:{"16":"jB 8B nB","1025":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","1537":"9B AC BC"},H:{"2":"SC"},I:{"16":"TC UC","1025":"H YC","1537":"eB I VC WC nB XC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C cB mB dB","1025":"T"},L:{"1":"H"},M:{"1537":"S"},N:{"2561":"A B"},O:{"1537":"ZC"},P:{"1025":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1025":"kC"},R:{"1025":"lC"},S:{"1537":"mC"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E pB","2561":"A B","2692":"F"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2561":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB","1537":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB sB","1796":"fB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L","1025":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB","1537":"G M N O i j k l m n o p q r s t u v w x"},E:{"1":"L G 0B 1B 2B mB 3B","16":"I h J vB kB","1025":"D E F A B C xB yB zB lB dB","1537":"wB","4097":"K eB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","16":"F B C 4B 5B 6B 7B dB nB","260":"8B","1025":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB","1537":"G M N O i j k"},G:{"16":"kB 9B oB","1025":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","1537":"AC BC CC"},H:{"2":"TC"},I:{"16":"UC VC","1025":"H ZC","1537":"fB I WC XC oB YC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C dB nB eB","1025":"T"},L:{"1":"H"},M:{"1537":"S"},N:{"2561":"A B"},O:{"1537":"aC"},P:{"1025":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1025":"lC"},R:{"1025":"mC"},S:{"1537":"nC"}},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 98d98bd3670c4e..cdfbfd349c3821 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","132":"I g J D E F A B C K L G M N O h i j k l 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I","16":"g J D E j k l m n","132":"F A B C K L G M N O h i"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","132":"J D E F A B wB xB yB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"AC BC","132":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","514":"jB 8B nB 9B"},H:{"2":"SC"},I:{"2":"TC UC VC","260":"eB I WC nB","514":"H XC YC"},J:{"132":"A","260":"D"},K:{"2":"A B C cB mB dB","514":"T"},L:{"260":"H"},M:{"2":"S"},N:{"514":"A","1028":"B"},O:{"2":"ZC"},P:{"260":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"260":"kC"},R:{"260":"lC"},S:{"1":"mC"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","132":"I h J D E F A B C K L G M N O i j k l 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I","16":"h J D E k l m n o","132":"F A B C K L G M N O i j"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","132":"J D E F A B xB yB zB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"BC CC","132":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","514":"kB 9B oB AC"},H:{"2":"TC"},I:{"2":"UC VC WC","260":"fB I XC oB","514":"H YC ZC"},J:{"132":"A","260":"D"},K:{"2":"A B C dB nB eB","514":"T"},L:{"260":"H"},M:{"2":"S"},N:{"514":"A","1028":"B"},O:{"2":"aC"},P:{"260":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"260":"lC"},R:{"260":"mC"},S:{"1":"nC"}},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 688b03a24e9b0d..a131f9e93e5b70 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 a07193cb8f1377..ebaec904406cba 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B 4B 5B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"130":"SC"},I:{"130":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"130":"A B C T cB mB dB"},L:{"132":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"130":"ZC"},P:{"130":"I","132":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"2":"mC"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B 5B 6B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"130":"TC"},I:{"130":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"130":"A B C T dB nB eB"},L:{"132":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"130":"aC"},P:{"130":"I","132":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"2":"nC"}},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 97c5b3a48a5a1b..aaf020582a56f3 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"f H iB","2":"pB eB I g J D E F A B C K L G M qB rB","4":"N O h i","194":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","66":"IB JB KB fB LB gB MB NB T OB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","66":"5 6 7 8 9 AB BB CB DB EB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"S g H jB","2":"qB fB I h J D E F A B C K L G M rB sB","4":"N O i j","194":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","66":"JB KB LB gB MB hB NB OB T PB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","66":"6 7 8 9 AB BB CB DB EB FB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 9e46081284149b..5b95416ca740f0 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB qB rB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB rB sB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 3b6d453264cef9..2e447debce68d3 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 oB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","129":"C K","1025":"L G M N O"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","513":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"388":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB TC UC VC","388":"I H WC nB XC YC"},J:{"2":"D","388":"A"},K:{"1":"A B C cB mB dB","388":"T"},L:{"388":"H"},M:{"641":"S"},N:{"388":"A B"},O:{"388":"ZC"},P:{"388":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"388":"kC"},R:{"388":"lC"},S:{"513":"mC"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F pB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","129":"C K","1025":"L G M N O"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","513":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"388":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB UC VC WC","388":"I H XC oB YC ZC"},J:{"2":"D","388":"A"},K:{"1":"A B C dB nB eB","388":"T"},L:{"388":"H"},M:{"641":"S"},N:{"388":"A B"},O:{"388":"aC"},P:{"388":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"388":"lC"},R:{"388":"mC"},S:{"513":"nC"}},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 6f5b757fe6789e..a12775799b4b8e 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g","388":"J D E F A vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB","388":"E 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB XC"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h","388":"J D E F A wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB","388":"E AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB YC"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f0b8390f348a54..4205e80b907675 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","132":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB mB 7B dB","2":"F 3B 4B 5B 6B","132":"B cB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB H TC UC VC nB XC YC","4":"I WC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","132":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB nB 8B eB","2":"F 4B 5B 6B 7B","132":"B dB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB H UC VC WC oB YC ZC","4":"I XC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 daad95eeb82326..9ff4f987bacb09 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H nB XC YC","4":"eB I TC UC VC WC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H oB YC ZC","4":"fB I UC VC WC XC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b5ce0136145045..f78938b0150c58 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 oB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","129":"C K L G M N O"},C:{"2":"pB eB qB rB","129":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L j k l m n","129":"G M N O h i"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F 3B 4B 5B 6B","16":"B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"129":"SC"},I:{"1":"H XC YC","16":"TC UC","129":"eB I VC WC nB"},J:{"1":"D","129":"A"},K:{"1":"C T","2":"A","16":"B cB mB","129":"dB"},L:{"1":"H"},M:{"129":"S"},N:{"129":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"129":"mC"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F pB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","129":"C K L G M N O"},C:{"2":"qB fB rB sB","129":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L k l m n o","129":"G M N O i j"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F 4B 5B 6B 7B","16":"B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"129":"TC"},I:{"1":"H YC ZC","16":"UC VC","129":"fB I WC XC oB"},J:{"1":"D","129":"A"},K:{"1":"C T","2":"A","16":"B dB nB","129":"eB"},L:{"1":"H"},M:{"129":"S"},N:{"129":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"129":"nC"}},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 8dfad9d37574e9..3f1cc38d054f72 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","16":"F 3B 4B 5B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","16":"F 4B 5B 6B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5c82d673dd580d..d625599b990b2e 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 92d877b1ffd526..274560041a88b9 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":"oB","132":"J D E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","16":"F 3B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"pB","132":"J D E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","16":"F 4B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2da72dc9de2645..003a229976d146 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 9842c6691518f0..ff97cd2d284898 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC dC eC kB"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC eC fC lB"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 331ad13f6450d0..b30cbddb527761 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 oB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB","194":"EB FB GB"},D:{"1":"KB fB LB gB MB NB T","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","516":"DB EB FB GB HB IB JB","1025":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","516":"0 1 2 3 4 5 6","1025":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","1025":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"516":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I","516":"aC bC"},Q:{"1025":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB","194":"FB GB HB"},D:{"1":"LB gB MB hB NB OB T","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","516":"EB FB GB HB IB JB KB","1025":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","2":"0 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","516":"1 2 3 4 5 6 7","1025":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","1025":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"516":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I","516":"bC cC"},Q:{"1025":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 36843ae5fd7537..ef6817bafc4f30 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N","130":"O"},C:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB qB rB"},D:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB dB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N","130":"O"},C:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB rB sB"},D:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB eB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 5672f23dfa1c56..1b509955b1e073 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 oB"},B:{"2":"C K L G M N O","1537":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB","932":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB qB rB","2308":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I g J D E F A B C K L G M N O h i j","545":"0 1 2 3 4 5 6 7 k l m n o p q r s t u v w x y z","1537":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J uB jB vB","516":"B C K L G cB dB zB 0B 1B lB 2B","548":"F A yB kB","676":"D E wB xB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","513":"w","545":"G M N O h i j k l m n o p q r s t u","1537":"0 1 2 3 4 5 6 7 8 9 v x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB 9B AC","516":"PC QC RC lB","548":"DC EC FC GC HC IC JC KC LC MC NC OC","676":"E BC CC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","545":"XC YC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C cB mB dB","1537":"T"},L:{"1537":"H"},M:{"2308":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"545":"I","1537":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"545":"kC"},R:{"1537":"lC"},S:{"932":"mC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","1537":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB","932":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB rB sB","2308":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I h J D E F A B C K L G M N O i j k","545":"0 1 2 3 4 5 6 7 8 l m n o p q r s t u v w x y z","1537":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J vB kB wB","516":"B C K L G dB eB 0B 1B 2B mB 3B","548":"F A zB lB","676":"D E xB yB"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","513":"x","545":"G M N O i j k l m n o p q r s t u v","1537":"0 1 2 3 4 5 6 7 8 9 w y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB AC BC","516":"QC RC SC mB","548":"EC FC GC HC IC JC KC LC MC NC OC PC","676":"E CC DC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","545":"YC ZC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C dB nB eB","1537":"T"},L:{"1537":"H"},M:{"2308":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"545":"I","1537":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"545":"lC"},R:{"1537":"mC"},S:{"932":"nC"}},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 2aa93037c5233e..5a6e920b2e433b 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","129":"g vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","129":"h wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 8f71790bfd2e3c..447ca53e304d06 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b","578":"c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a qB rB","322":"b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b","194":"c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB 3B 4B 5B 6B cB mB 7B dB","194":"aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b","578":"c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a rB sB","322":"b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b","194":"c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB 4B 5B 6B 7B dB nB 8B eB","194":"bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 9ebcc725a17782..44cfb5d6b8f7dd 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 64ae66f87cc712..1b060bb36f500a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB qB rB"},D:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB rB sB"},D:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 dc3e700b804ea3..4d6d1e61f08c73 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 oB","129":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D pB","129":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 24abc59bcbb6fa..cf5214dc6d9f89 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G","132":"M N O"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB"},D:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB fB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB","132":"kB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","132":"6 7 8"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC","132":"GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC","132":"cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"132":"mC"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G","132":"M N O"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB"},D:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","132":"KB LB gB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB","132":"lB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"7 8 9"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC","132":"HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC","132":"dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"132":"nC"}},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 dc62612595d28c..41fdf3711a7fc1 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B"},H:{"2":"SC"},I:{"1":"H XC YC","2":"TC UC VC","132":"eB I WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"UC VC WC","132":"fB I XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c68226155d369f..e78743873e91e2 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","16":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B","16":"C"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T dB","2":"A B cB mB","16":"C"},L:{"1":"H"},M:{"130":"S"},N:{"130":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","16":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B","16":"C"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T eB","2":"A B dB nB","16":"C"},L:{"1":"H"},M:{"130":"S"},N:{"130":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 ddb5cad3f250df..5cbaa046b877cc 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"4 5 6 7 8 9"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q 3B 4B 5B 6B cB mB 7B dB","194":"r s t u v w"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"194":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I","194":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"194":"lC"},S:{"1":"mC"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"5 6 7 8 9 AB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r 4B 5B 6B 7B dB nB 8B eB","194":"s t u v w x"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"194":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I","194":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"194":"mC"},S:{"1":"nC"}},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 7bcba3b975a6a2..ae17aa667b9d37 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B G M 3B 4B 5B 6B cB mB 7B","16":"C"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T dB","2":"A B cB mB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B G M 4B 5B 6B 7B dB nB 8B","16":"C"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T eB","2":"A B dB nB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8594870c7852df..85b926c54a353d 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 oB","260":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","260":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k qB rB","132":"l m n o p q"},D:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B","16":"C"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"1":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T dB","2":"A B cB mB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E pB","260":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","260":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l rB sB","132":"m n o p q r"},D:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"0 F B G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B","16":"C"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"1":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T eB","2":"A B dB nB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 fc78a1179f9daf..23dbee07c27fc2 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","16":"J uB jB","132":"I g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B","16":"C","132":"G M"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB","132":"9B AC BC"},H:{"2":"SC"},I:{"1":"H XC YC","16":"TC UC","132":"eB I VC WC nB"},J:{"132":"D A"},K:{"1":"T dB","2":"A B cB mB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"J vB kB","132":"I h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B","16":"C","132":"G M"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB","132":"AC BC CC"},H:{"2":"TC"},I:{"1":"H YC ZC","16":"UC VC","132":"fB I WC XC oB"},J:{"132":"D A"},K:{"1":"T eB","2":"A B dB nB","16":"C"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 fe0d7dfc7111f2..98546030fe3573 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","16":"g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","16":"F 3B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB","16":"TC UC","132":"XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"132":"H"},M:{"132":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"2":"I","132":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","16":"h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","16":"F 4B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB","16":"UC VC","132":"YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"132":"H"},M:{"132":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"2":"I","132":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 1e126065f98c45..4740bd224696f3 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c8cd134f61493e..4e23badc41fe54 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 oB","2052":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","194":"0 1 2 3 4 5 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O","322":"0 1 2 h i j k l m n o p q r s t u v w x y z","516":"3 4 5 6 7 8 9 AB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","1028":"A 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","322":"G M N O h i j k l m n o p","516":"q r s t u v w x"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC","1028":"FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","516":"I"},Q:{"1":"kC"},R:{"516":"lC"},S:{"1":"mC"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A pB","2052":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","194":"0 1 2 3 4 5 6 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O","322":"0 1 2 3 i j k l m n o p q r s t u v w x y z","516":"4 5 6 7 8 9 AB BB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","1028":"A 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","322":"G M N O i j k l m n o p q","516":"r s t u v w x y"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC","1028":"GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","516":"I"},Q:{"1":"lC"},R:{"516":"mC"},S:{"1":"nC"}},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 f543ccbc86655b..d7522f3460775c 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"JC KC LC MC NC OC PC QC RC lB","130":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC"},H:{"130":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D","130":"A"},K:{"1":"T","130":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"130":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"KC LC MC NC OC PC QC RC SC mB","130":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC"},H:{"130":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D","130":"A"},K:{"1":"T","130":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"130":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cda2825f012298..114993c5bdb219 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 oB"},B:{"2":"C K L G M N O P","1537":"Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB qB rB","260":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","513":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","1537":"Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB","2":"0 1 2 3 4 5 F B C G M N O h i j k l m n o p q r s t u v w x y z GB HB IB JB KB LB MB NB T OB PB 3B 4B 5B 6B cB mB 7B dB","1537":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"JC KC LC MC NC OC PC QC RC lB","130":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC"},H:{"130":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","130":"A"},K:{"2":"T","130":"A B C cB mB dB"},L:{"1537":"H"},M:{"2":"S"},N:{"130":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC","1537":"hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"513":"mC"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P","1537":"Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB rB sB","260":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","513":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","1537":"Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB","2":"0 1 2 3 4 5 6 F B C G M N O i j k l m n o p q r s t u v w x y z HB IB JB KB LB MB NB OB T PB QB 4B 5B 6B 7B dB nB 8B eB","1537":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"KC LC MC NC OC PC QC RC SC mB","130":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC"},H:{"130":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","130":"A"},K:{"2":"T","130":"A B C dB nB eB"},L:{"1537":"H"},M:{"2":"S"},N:{"130":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC","1537":"iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"513":"nC"}},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 57df1d97272669..6477b1b996ae61 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 oB","132":"F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB","260":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"16":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"16":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"16":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"16":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E pB","132":"F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB","260":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"16":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"16":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"16":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"16":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 83e5e9e396ccca..b448dff28f6d9d 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"16":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"16":"lC"},R:{"16":"mC"},S:{"2":"nC"}},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 73a2a8594c17b1..f93579121f569a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L","260":"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 fB LB gB MB NB T OB PB QB RB SB TB","2":"0 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","129":"1"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"16":"S"},N:{"2":"A B"},O:{"16":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L","260":"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 gB MB hB NB OB T PB QB RB SB TB UB","2":"0 1 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","129":"2"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"16":"S"},N:{"2":"A B"},O:{"16":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a62908094fff1c..9b8bd9256641f9 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB","194":"L G zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC","194":"OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"I H XC YC","2":"eB TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB","194":"L G 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","194":"PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"I H YC ZC","2":"fB UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 303b3ad9e86a5e..e2a6e64aca5af7 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M","1028":"N O"},C:{"1":"W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB qB rB","132":"IB","578":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V"},D:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","322":"B"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC","322":"HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M","1028":"N O"},C:{"1":"W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB rB sB","132":"JB","578":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V"},D:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","322":"B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC","322":"IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 b28c977ad52ed6..a16caacaf7cdbe 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 d7bcea97178ecd..2da147e0ef358f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB qB rB","132":"YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB","66":"YB ZB"},E:{"1":"2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB","322":"L G zB 0B 1B lB"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB","66":"MB NB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC","322":"OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I aC bC cC dC eC kB fC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB rB sB","132":"ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB","66":"ZB aB"},E:{"1":"3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB","322":"L G 0B 1B 2B mB"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB","66":"NB OB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","322":"PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I bC cC dC eC fC lB gC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 d6b0d14d7265b6..9bc343818d8dff 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":"oB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","132":"I g J D E F uB jB vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F B C 3B 4B 5B 6B cB mB 7B","132":"dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"E jB 8B nB 9B AC BC CC DC EC"},H:{"132":"SC"},I:{"1":"H XC YC","132":"eB I TC UC VC WC nB"},J:{"132":"D A"},K:{"1":"T","16":"A B C cB mB","132":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","132":"A"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","132":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"4":"mC"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"pB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","132":"I h J D E F vB kB wB xB yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F B C 4B 5B 6B 7B dB nB 8B","132":"eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"E kB 9B oB AC BC CC DC EC FC"},H:{"132":"TC"},I:{"1":"H YC ZC","132":"fB I UC VC WC XC oB"},J:{"132":"D A"},K:{"1":"T","16":"A B C dB nB","132":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","132":"A"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","132":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"4":"nC"}},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 4e29f6d479587c..2f549738e81ad4 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"194":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"194":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c59d7ac35d3176..6cb0c65d939438 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 oB","36":"F A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","36":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB","36":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","36":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","36":"g J D vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B 3B 4B 5B 6B cB","36":"C G M N O h i mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB","36":"8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H","2":"TC","36":"eB I UC VC WC nB XC YC"},J:{"36":"D A"},K:{"1":"T","2":"A B","36":"C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","36":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E pB","36":"F A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","36":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB","36":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","36":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","36":"h J D wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B 4B 5B 6B 7B dB","36":"C G M N O i j nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB","36":"9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H","2":"UC","36":"fB I VC WC XC oB YC ZC"},J:{"36":"D A"},K:{"1":"T","2":"A B","36":"C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","36":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f55bd6ebb77338..9690b2b438e2af 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2e9b567107a3e7..8cf327dab13f12 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 oB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","129":"pB eB qB rB"},D:{"1":"m","8":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H","584":"iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","260":"I g J D E F uB jB vB wB xB yB"},F:{"2":"F","4":"B C 3B 4B 5B 6B cB mB 7B dB","8":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB"},H:{"8":"SC"},I:{"8":"eB I H TC UC VC WC nB XC YC"},J:{"1":"A","8":"D"},K:{"8":"A B C T cB mB dB"},L:{"8":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"4":"ZC"},P:{"8":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"8":"kC"},R:{"8":"lC"},S:{"1":"mC"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B pB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","129":"qB fB rB sB"},D:{"1":"n","8":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g","584":"H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","260":"I h J D E F vB kB wB xB yB zB"},F:{"2":"F","4":"B C 4B 5B 6B 7B dB nB 8B eB","8":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB"},H:{"8":"TC"},I:{"8":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"A","8":"D"},K:{"8":"A B C T dB nB eB"},L:{"8":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"4":"aC"},P:{"8":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"8":"lC"},R:{"8":"mC"},S:{"1":"nC"}},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 56d76c962cd9b9..c4fb74da645538 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":"oB","900":"J D E F"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","1025":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","900":"pB eB qB rB","1025":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"g uB","900":"I jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F","132":"B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"8B nB 9B AC BC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB","2052":"E CC"},H:{"132":"SC"},I:{"1":"eB I VC WC nB XC YC","16":"TC UC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C cB mB dB","4097":"T"},L:{"4097":"H"},M:{"4097":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"4097":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1025":"mC"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"pB","900":"J D E F"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","1025":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","900":"qB fB rB sB","1025":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"h vB","900":"I kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F","132":"B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"9B oB AC BC CC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB","2052":"E DC"},H:{"132":"TC"},I:{"1":"fB I WC XC oB YC ZC","16":"UC VC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C dB nB eB","4097":"T"},L:{"4097":"H"},M:{"4097":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"4097":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1025":"nC"}},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 2adf1665d4b6d5..68034c500602be 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 oB"},B:{"1":"C K L G M N O","16":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"1":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v","2":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H","16":"iB sB tB"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"B C G M N O h i j k l m 4B 5B 6B cB mB 7B dB","2":"0 1 2 3 4 5 6 7 8 9 F n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"16":"SC"},I:{"1":"I H WC nB XC YC","16":"eB TC UC VC"},J:{"16":"D A"},K:{"1":"C T dB","16":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Media attribute"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O","16":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"1":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w","2":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H","16":"jB tB uB"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"B C G M N O i j k l m n 5B 6B 7B dB nB 8B eB","2":"0 1 2 3 4 5 6 7 8 9 F o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"16":"TC"},I:{"1":"I H XC oB YC ZC","16":"fB UC VC WC"},J:{"16":"D A"},K:{"1":"C T eB","16":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cffd6dccb69380..2d6bae2a33c6da 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 oB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v qB rB","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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I g J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g uB jB vB","132":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB 9B AC BC","132":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","132":"H XC YC"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","132":"T"},L:{"132":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"2":"ZC"},P:{"2":"I aC","132":"bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"132":"mC"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w rB sB","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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I h J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h vB kB wB","132":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB AC BC CC","132":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","132":"H YC ZC"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","132":"T"},L:{"132":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"2":"aC"},P:{"2":"I bC","132":"cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"132":"nC"}},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 da771cf5e99309..9f4751ef3bb02b 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB","16":"L G zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Media Session API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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:{"2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB","16":"L G 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 cf2957fb347792..261067dc95e7b0 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","260":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","324":"DB EB FB GB HB IB JB KB fB LB gB"},E:{"2":"I g J D E F A uB jB vB wB xB yB kB","132":"B C K L G cB dB zB 0B 1B lB 2B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB","324":"0 1 2 3 4 5 6 7 8 9 y z"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"260":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I","132":"aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"260":"mC"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","324":"EB FB GB HB IB JB KB LB gB MB hB"},E:{"2":"I h J D E F A vB kB wB xB yB zB lB","132":"B C K L G dB eB 0B 1B 2B mB 3B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB","324":"0 1 2 3 4 5 6 7 8 9 z AB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"260":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I","132":"bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"260":"nC"}},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 963b393d581285..b1b366276a07b2 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"9 AB"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB","322":"K L dB zB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v 3B 4B 5B 6B cB mB 7B dB","194":"w x"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC","578":"JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"AB BB"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB","322":"K L eB 0B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w 4B 5B 6B 7B dB nB 8B eB","194":"x y"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC","578":"KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 874c0d97097c8c..63b007504bb808 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 oB","132":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB","66":"0 1 2 3 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M","33":"l m n o p q r s","66":"N O h i j k"},E:{"1":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC","260":"LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB XC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB","66":"0 1 2 3 4 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M","33":"m n o p q r s t","66":"N O i j k l"},E:{"1":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC","260":"MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 57beaef49a2608..00faf8ee494a4b 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D qB rB","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V","450":"W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","66":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"9 F B C G M N O h i j k l m n o p q r s t u v w AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","66":"0 1 2 3 4 5 6 7 8 x y z"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"450":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D rB sB","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V","450":"W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","66":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p q r s t u v w x AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","66":"0 1 2 3 4 5 6 7 8 9 y z"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"450":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 79f49c68d1191d..1d75d858f79307 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","132":"WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","258":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB"},E:{"1":"G 1B lB 2B","2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"513":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I","16":"aC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","132":"XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","258":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB"},E:{"1":"G 2B mB 3B","2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"513":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I","16":"bC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 38d10e5c5bbd22..196685141cd23b 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F 3B 4B 5B 6B"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F 4B 5B 6B 7B"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cca4466f4084fa..5affa8b492912b 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 1b100814401c39..a9aca2ca52e792 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 oB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J pB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 00c1a5767ecc34..aef67f6eec56a1 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","132":"I g J D E F A B C K L G M N O h i j qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","2":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","132":"I h J D E F A B C K L G M N O i j k rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","2":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4ed22f828501b5..703d39b091e5e3 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","386":"j k"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","386":"k l"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 554321ec63dd85..bb5e783e587f8f 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i qB rB","4":"j k l m n o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","4":"eB I TC UC WC nB","132":"VC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"260":"S"},N:{"1":"A B"},O:{"4":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j rB sB","4":"k l m n o p q r s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","4":"fB I UC VC XC oB","132":"WC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"260":"S"},N:{"1":"A B"},O:{"4":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1e1916cc9236ff..6a2f8ba321a9c5 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 931d0bb77de98e..7b955416a73696 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 oB"},B:{"1":"C K L G M N O","516":"P Q R U V W X Y Z a b c d e S f H"},C:{"132":"EB FB GB HB IB JB KB fB LB gB MB NB T","164":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB","516":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c","1028":"d e S f H iB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB","516":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","132":"F yB","164":"D E xB","420":"I g J uB jB vB wB"},F:{"1":"C cB mB 7B dB","2":"F B 3B 4B 5B 6B","420":"G M N O h i j k l m n o p q r s 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"DC EC","164":"E BC CC","420":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"420":"eB I TC UC VC WC nB XC YC","516":"H"},J:{"420":"D A"},K:{"1":"C cB mB dB","2":"A B","516":"T"},L:{"516":"H"},M:{"516":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","420":"I"},Q:{"132":"kC"},R:{"132":"lC"},S:{"164":"mC"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O","516":"P Q R U V W X Y Z a b c d e f S g H"},C:{"132":"FB GB HB IB JB KB LB gB MB hB NB OB T","164":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB","516":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c","1028":"d e f S g H jB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB","516":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","132":"F zB","164":"D E yB","420":"I h J vB kB wB xB"},F:{"1":"C dB nB 8B eB","2":"F B 4B 5B 6B 7B","420":"G M N O i j k l m n o p q r s t 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"EC FC","164":"E CC DC","420":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"420":"fB I UC VC WC XC oB YC ZC","516":"H"},J:{"420":"D A"},K:{"1":"C dB nB eB","2":"A B","516":"T"},L:{"516":"H"},M:{"516":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","420":"I"},Q:{"132":"lC"},R:{"132":"mC"},S:{"164":"nC"}},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 6d5c202d81d27f..6b14f41169d9ed 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 oB","260":"F A B"},B:{"132":"P Q R U V W X Y Z a b c d e S f H","260":"C K L G M N O"},C:{"2":"pB eB I g qB rB","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"16":"I g J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"16":"uB jB","132":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"C 7B dB","2":"F 3B 4B 5B 6B","16":"B cB mB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"16":"jB 8B","132":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"16":"TC UC","132":"eB I H VC WC nB XC YC"},J:{"132":"D A"},K:{"1":"C dB","2":"A","16":"B cB mB","132":"T"},L:{"132":"H"},M:{"260":"S"},N:{"260":"A B"},O:{"132":"ZC"},P:{"132":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"260":"mC"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E pB","260":"F A B"},B:{"132":"P Q R U V W X Y Z a b c d e f S g H","260":"C K L G M N O"},C:{"2":"qB fB I h rB sB","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"16":"I h J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"16":"vB kB","132":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"C 8B eB","2":"F 4B 5B 6B 7B","16":"B dB nB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"16":"kB 9B","132":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"16":"UC VC","132":"fB I H WC XC oB YC ZC"},J:{"132":"D A"},K:{"1":"C eB","2":"A","16":"B dB nB","132":"T"},L:{"132":"H"},M:{"260":"S"},N:{"260":"A B"},O:{"132":"aC"},P:{"132":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"260":"nC"}},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 bcac97503edd8e..88b50834652b0b 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 oB","8":"F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N","33":"O h i j k l m n o"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB TC UC VC","8":"I WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","8":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E pB","8":"F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N","33":"O i j k l m n o p"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB UC VC WC","8":"I XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","8":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b78bdb6bcb82ef..7361ca1fa64792 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":"oB","8":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","4":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"pB","8":"J D"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","4":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 aedf079ce05904..190c17158898c9 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 oB"},B:{"2":"C K L G M N O","194":"P Q R U V W","260":"X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB","194":"XB YB ZB aB bB P Q R U V W","260":"X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B","4":"lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB","194":"MB NB T OB PB QB RB SB TB UB","260":"VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC","4":"lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","194":"P Q R U V W","260":"X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB","194":"YB ZB aB bB cB P Q R U V W","260":"X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B","4":"mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB","194":"NB OB T PB QB RB SB TB UB VB","260":"WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC","4":"mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 08f8f57d821160..ffac1fc00059d9 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g","33":"J D E F A B C"},E:{"1":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"I H WC nB XC YC","2":"eB TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h","33":"J D E F A B C"},E:{"1":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"I H XC oB YC ZC","2":"fB UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5ac856f372a786..84bb8ac2e4166c 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"16":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"16":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"16":"kC"},R:{"16":"lC"},S:{"1":"mC"}},B:2,C:"Navigator Language API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"16":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"16":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"16":"lC"},R:{"16":"mC"},S:{"1":"nC"}},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 3b08100a0adc85..211e0f5d3c0645 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 oB"},B:{"2":"C K L G M N O","1028":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB","1028":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","1028":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"TC XC YC","132":"eB I UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","132":"I","516":"aC bC cC"},Q:{"1":"kC"},R:{"516":"lC"},S:{"260":"mC"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","1028":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB","1028":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB 4B 5B 6B 7B dB nB 8B eB","1028":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"UC YC ZC","132":"fB I VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","132":"I","516":"bC cC dC"},Q:{"1":"lC"},R:{"516":"mC"},S:{"260":"nC"}},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 5eec4703fbbecc..303adba87f7216 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I","36":"g J D E F A B C K L G M N O h i j"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","36":"H XC YC"},J:{"1":"A","2":"D"},K:{"2":"A B C cB mB dB","36":"T"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"36":"I","258":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"258":"lC"},S:{"1":"mC"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I","36":"h J D E F A B C K L G M N O i j k"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","36":"H YC ZC"},J:{"1":"A","2":"D"},K:{"2":"A B C dB nB eB","36":"T"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"36":"I","258":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"258":"mC"},S:{"1":"nC"}},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 513c55fcf43790..3a9c3d0489426a 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","16":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 420bf066fbf2c1..346f0195c53696 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G","260":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","132":"E F xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F G M N O 3B 4B 5B","33":"B C 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","132":"E CC DC EC"},H:{"33":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB XC"},J:{"2":"D A"},K:{"1":"T","2":"A","33":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G","260":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","132":"E F yB zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F G M N O 4B 5B 6B","33":"B C 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","132":"E DC EC FC"},H:{"33":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB YC"},J:{"2":"D A"},K:{"1":"T","2":"A","33":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 06e786a1b9515c..9a5712c0aa0e96 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"l m n o p q r s t u v w x y","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I","2":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"m n o p q r s t u v w x y z","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I","2":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 384bd82d13cdf4..7341d4b3c9d36e 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 kB cB dB zB 0B 1B lB 2B","8":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","8":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"8":"SC"},I:{"1":"H","8":"eB I TC UC VC WC nB XC YC"},J:{"8":"D A"},K:{"1":"T","8":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","8":"I aC"},Q:{"1":"kC"},R:{"8":"lC"},S:{"1":"mC"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 lB dB eB 0B 1B 2B mB 3B","8":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","8":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"8":"TC"},I:{"1":"H","8":"fB I UC VC WC XC oB YC ZC"},J:{"8":"D A"},K:{"1":"T","8":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","8":"I bC"},Q:{"1":"lC"},R:{"8":"mC"},S:{"1":"nC"}},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 1ac8a3ecb000e7..505a14fede776e 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 oB"},B:{"1":"K L G M N O","2":"C P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","130":"A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O","2":"C P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","130":"A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 97a1a829c5a2a0..2d29a7b2aaa46d 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 oB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V","2":"W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U qB rB","2":"V W X Y Z a b c d e S f H iB","4":"eB","8":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V","2":"W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 6B cB mB 7B dB","2":"F WB XB YB ZB aB bB P Q R hB 3B","8":"4B 5B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I TC UC VC WC nB XC YC","2":"H"},J:{"1":"D A"},K:{"1":"B C cB mB dB","2":"A T"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F pB","8":"J D E"},B:{"1":"C K L G M N O P Q R U V","2":"W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U rB sB","2":"V W X Y Z a b c d e f S g H jB","4":"fB","8":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V","2":"W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 7B dB nB 8B eB","2":"F XB YB ZB aB bB cB P Q R iB 4B","8":"5B 6B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I UC VC WC XC oB YC ZC","2":"H"},J:{"1":"D A"},K:{"1":"B C dB nB eB","2":"A T"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0b83957d54487a..978b775c8f0a83 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB QB RB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","322":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB RB SB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","322":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 f2ab76042908f4..97230f27f6cb7b 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB","132":"G 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"A","2":"D"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B","132":"G 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"A","2":"D"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 39ff876f5341fa..4bdbed30981136 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 oB","8":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E pB","8":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 2cdd73044d4967..66e0da96a6f477 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G","16":"M N O h"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B","16":"C"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G","16":"M N O i"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B","16":"C"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 61972302ee6ab9..e60b586c2964ff 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},C:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB qB rB"},D:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB rB sB"},D:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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 lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 f0d590ef9f2834..d58a3be72eacc3 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 oB","260":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB","516":"0 1 2 I g J D E F A B C K L G M N O h i j k l 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B","4":"dB"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"A","132":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D pB","260":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB","516":"0 1 2 3 I h J D E F A B C K L G M N O i j k l 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B","4":"eB"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"A","132":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c53953c2efec32..220a8c77556618 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u"},E:{"2":"I g J D E F A uB jB vB wB xB yB kB","132":"B C K L G cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC","132":"HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v"},E:{"2":"I h J D E F A vB kB wB xB yB zB lB","132":"B C K L G dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC","132":"IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 e3cc1b075bef33..673a8c953fe6eb 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB gB MB NB T OB PB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB hB NB OB T PB QB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 8deea49233bfad..b0bae0e78ecd81 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 oB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B","129":"dB","260":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"C T dB","260":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"388":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D pB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B","129":"eB","260":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"C T eB","260":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"388":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 71b578032beee3..29129506f8bb32 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l 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 lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 1b12ece7414112..6440b178a7f477 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 80dd498f4123a7..6dc2f05fdeb183 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F qB rB","33":"A B C K L G M N"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K","33":"L G M N O h i j k l m n o p q r s t u"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B C 3B 4B 5B 6B cB mB 7B","33":"G M N O h"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB","33":"XC YC"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","33":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F rB sB","33":"A B C K L G M N"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K","33":"L G M N O i j k l m n o p q r s t u v"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B C 4B 5B 6B 7B dB nB 8B","33":"G M N O i"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB","33":"YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","33":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 82f3536ff80596..02a92aae81a9fb 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bab1f7ec82d32b..42074ae3fc352b 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 oB"},B:{"2":"C K L G M N O","16":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f qB rB","16":"H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H","16":"iB sB tB"},E:{"1":"C K dB","2":"I g J D E F A B uB jB vB wB xB yB kB cB","16":"L G zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 3B 4B 5B 6B cB mB 7B dB","16":"FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C cB mB dB","16":"T"},L:{"16":"H"},M:{"16":"S"},N:{"2":"A","16":"B"},O:{"16":"ZC"},P:{"2":"I aC bC","16":"cC dC eC kB fC gC hC iC jC"},Q:{"16":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","16":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g rB sB","16":"H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H","16":"jB tB uB"},E:{"1":"C K eB","2":"I h J D E F A B vB kB wB xB yB zB lB dB","16":"L G 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 4B 5B 6B 7B dB nB 8B eB","16":"GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C dB nB eB","16":"T"},L:{"16":"H"},M:{"16":"S"},N:{"2":"A","16":"B"},O:{"16":"aC"},P:{"2":"I bC cC","16":"dC eC fC lB gC hC iC jC kC"},Q:{"16":"lC"},R:{"16":"mC"},S:{"2":"nC"}},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 0bdfa79c07bcaf..2efbb3e24f0d91 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K","132":"L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","132":"E F xB"},F:{"1":"HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","16":"E","132":"CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"1":"kB fC gC hC iC jC","132":"I aC bC cC dC eC"},Q:{"132":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K","132":"L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","132":"E F yB"},F:{"1":"IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l 4B 5B 6B 7B dB nB 8B eB","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"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","16":"E","132":"DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"1":"lB gC hC iC jC kC","132":"I bC cC dC eC fC"},Q:{"132":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 f1c22fe09aaa3e..a80b32f0d49bc2 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB qB rB","4162":"HB IB JB KB fB LB gB MB NB T OB","16452":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m 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","1090":"fB LB","8196":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","514":"A B kB","8196":"C cB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"2 3 4 5 6 7 8 9","8196":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC","514":"FC GC HC","8196":"IC JC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"2049":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I","8196":"aC bC cC dC eC kB fC"},Q:{"8196":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB rB sB","4162":"IB JB KB LB gB MB hB NB OB T PB","16452":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n 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","1090":"gB MB","8196":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","514":"A B lB","8196":"C dB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"3 4 5 6 7 8 9 AB","8196":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC","514":"GC HC IC","8196":"JC KC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"2049":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I","8196":"bC cC dC eC fC lB gC"},Q:{"8196":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 b7cb5defe196dc..ab5b457ccb8c3a 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 oB","132":"B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 54b5d3e6af9e7b..d473400d7ab5fe 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:7,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 f76c7aaab8e55f..a76cff81f3d0b5 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 oB"},B:{"2":"C K L G M N O","258":"P Q R U V W","322":"X Y","388":"Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB qB rB","258":"XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","258":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W","322":"X Y","388":"Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B uB jB vB wB xB yB kB","258":"C K L G cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","258":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB","322":"VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC","258":"IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","258":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","258":"T"},L:{"388":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC","258":"dC eC kB fC gC hC iC jC"},Q:{"258":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","258":"P Q R U V W","322":"X Y","388":"Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB rB sB","258":"YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","258":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W","322":"X Y","388":"Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B vB kB wB xB yB zB lB","258":"C K L G dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","258":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB","322":"WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC","258":"JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","258":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","258":"T"},L:{"388":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC","258":"eC fC lB gC hC iC jC kC"},Q:{"258":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bb2ab339e2d680..28c6fd2b10c929 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB qB rB","132":"VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","1090":"QB","1412":"UB","1668":"RB SB TB"},D:{"1":"TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB","2114":"SB"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","4100":"A B C K kB cB dB"},F:{"1":"WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y 3B 4B 5B 6B cB mB 7B dB","8196":"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 T OB PB QB RB SB TB UB VB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC","4100":"DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"16388":"H"},M:{"16388":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB rB sB","132":"WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","1090":"RB","1412":"VB","1668":"SB TB UB"},D:{"1":"UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB","2114":"TB"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","4100":"A B C K lB dB eB"},F:{"1":"XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","8196":"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 T PB QB RB SB TB UB VB WB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC","4100":"EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"16388":"H"},M:{"16388":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 629ece55c9e520..c03db12d16fc19 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v qB rB","578":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y","194":"z"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB","322":"m"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w rB sB","578":"0 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"0"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB","322":"n"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 485a1e88e36f8c..2bae4656e9a4a7 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"2":"pB","194":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"194":"mC"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"2":"qB","194":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"194":"nC"}},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 64da0c555d8d7b..75745c9b5efc33 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":"oB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"pB","8":"J"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 62095a7a3210e7..5ca827c9b9cea3 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1b9051661ccb79..2335958d971cd4 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 oB","164":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB","8":"0 1 2 J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","328":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j","8":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB","584":"EB FB GB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J uB jB vB","8":"D E F A B C wB xB yB kB cB","1096":"dB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","8":"0 G M N O h i j k l m n o p q r s t u v w x y z","584":"1 2 3"},G:{"1":"MC NC OC PC QC RC lB","8":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC","6148":"LC"},H:{"2":"SC"},I:{"1":"H","8":"eB I TC UC VC WC nB XC YC"},J:{"8":"D A"},K:{"1":"T","2":"A","8":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","36":"A"},O:{"8":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"aC","8":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"328":"mC"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F pB","164":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB","8":"0 1 2 3 J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","328":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k","8":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB","584":"FB GB HB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J vB kB wB","8":"D E F A B C xB yB zB lB dB","1096":"eB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","8":"0 1 G M N O i j k l m n o p q r s t u v w x y z","584":"2 3 4"},G:{"1":"NC OC PC QC RC SC mB","8":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC","6148":"MC"},H:{"2":"TC"},I:{"1":"H","8":"fB I UC VC WC XC oB YC ZC"},J:{"8":"D A"},K:{"1":"T","2":"A","8":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","36":"A"},O:{"8":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"bC","8":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"328":"nC"}},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 1e6b8bc6e72a60..aeca52308703b2 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K qB rB","33":"0 1 2 L G M N O h i j k l 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 z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G","33":"k l m n o p q r s t u v w x y","66":"M N O h i j"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j k l"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K rB sB","33":"0 1 2 3 L G M N O i j k l 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 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G","33":"l m n o p q r s t u v w x y z","66":"M N O i j k"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k l m"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 e2fb9d16b98a84..25f5f986a5068f 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 oB"},B:{"2":"C K L G M N O P Q R U V","322":"b c d e S f H","450":"W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB","194":"YB ZB aB bB P Q R U V","322":"X Y Z a b c d e S f H iB sB tB","450":"W"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB","194":"MB NB T OB PB QB RB SB TB UB VB","322":"WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"450":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V","322":"b c d e f S g H","450":"W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB","194":"ZB aB bB cB P Q R U V","322":"X Y Z a b c d e f S g H jB tB uB","450":"W"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB","194":"NB OB T PB QB RB SB TB UB VB WB","322":"XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"450":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 11b52fcff641e9..279636c6edfade 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB qB rB"},D:{"1":"ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"gC hC iC jC","2":"I aC bC cC dC eC kB fC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB rB sB"},D:{"1":"aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"hC iC jC kC","2":"I bC cC dC eC fC lB gC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 af25246f55718d..effcc5f2c6fee6 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB qB rB"},D:{"1":"XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC dC eC kB"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB rB sB"},D:{"1":"YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC eC fC lB"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 aade04141b881e..bb7ef7cd8657e4 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB"},F:{"1":"MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC dC eC kB"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Private class fields"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B"},F:{"1":"NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC eC fC lB"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 2b85ec183c2841..7979fc9e93bec4 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 oB"},B:{"1":"V W X Y Z a b c d e S f H","2":"C K L G M N O P Q R U"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB"},F:{"1":"TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"V W X Y Z a b c d e f S g H","2":"C K L G M N O P Q R U"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B"},F:{"1":"UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 0dfa90fbaeaf3a..df0ca6b8d2db62 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F 3B 4B 5B 6B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC","132":"BC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F 4B 5B 6B 7B"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC","132":"CC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f012b41dc04163..41ae88aecad7c5 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N"},C:{"1":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB qB rB"},D:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N"},C:{"1":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB rB sB"},D:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bf946ad00e9c32..a352e496dd32df 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","4":"p q","8":"pB eB I g J D E F A B C K L G M N O h i j k l m n o qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"u","8":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","8":"I g J D uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","4":"h","8":"F B C G M N O 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB 9B AC BC"},H:{"8":"SC"},I:{"1":"H YC","8":"eB I TC UC VC WC nB XC"},J:{"8":"D A"},K:{"1":"T","8":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","4":"q r","8":"qB fB I h J D E F A B C K L G M N O i j k l m n o p rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"v","8":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","8":"I h J D vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","4":"i","8":"F B C G M N O 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB AC BC CC"},H:{"8":"TC"},I:{"1":"H ZC","8":"fB I UC VC WC XC oB YC"},J:{"8":"D A"},K:{"1":"T","8":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 9860ab103590ad..b44c9aa431726d 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 a0f15950de52c3..07fc6490173c63 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O AB","66":"h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB","66":"G M N O h i j k l m"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O AB BB","66":"0 i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB","66":"G M N O i j k l m n"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 4f54ca093ba091..a7e83e7d084bc1 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB qB rB","4":"TB UB VB WB XB","132":"SB"},D:{"1":"VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB zB","260":"L"},F:{"1":"LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC dC eC kB"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB rB sB","4":"UB VB WB XB YB","132":"TB"},D:{"1":"WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB 0B","260":"L"},F:{"1":"MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC eC fC lB"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 ca5585cf687b08..6f84e36ef64e45 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 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 T OB","2":"F B C G M N O h PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","4":"l","16":"i j k m"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB","2":"fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB","2":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB","2":"F B C G M N O i QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","4":"m","16":"j k l n"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB","2":"gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 114ff1069e6a69..e26675d249b6b3 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 oB"},B:{"1":"N O","2":"C K L G M","257":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","257":"6 8 9 AB BB CB DB FB GB HB IB JB KB fB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","1281":"7 EB LB"},D:{"2":"0 1 2 3 4 5 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","257":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","388":"6 7 8 9 AB BB"},E:{"2":"I g J D E F uB jB vB wB xB","514":"A B C K L G yB kB cB dB zB 0B 1B lB","2114":"2B"},F:{"2":"F B C G M N O h i j k l m n o p q r s t u v w x y 3B 4B 5B 6B cB mB 7B dB","16":"0 1 2 3 z","257":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"257":"mC"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O","2":"C K L G M","257":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","257":"7 9 AB BB CB DB EB GB HB IB JB KB LB gB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","1281":"8 FB MB"},D:{"2":"0 1 2 3 4 5 6 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","257":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","388":"7 8 9 AB BB CB"},E:{"2":"I h J D E F vB kB wB xB yB","514":"A B C K L G zB lB dB eB 0B 1B 2B mB","2114":"3B"},F:{"2":"F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","16":"0 1 2 3 4","257":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"257":"nC"}},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 95791f8dda4278..8b4929f0c0ad11 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":"oB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","8":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","8":"F 3B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"pB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","8":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","8":"F 4B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a75ba2b4f66d12..e3ed03a1c2613b 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L G M N O h i j k l m n"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F 3B","132":"B C 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B AC"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","132":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"257":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L G M N O i j k l m n o"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F 4B","132":"B C 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC BC"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","132":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"257":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 aba4bb5cd91aa8..ece7ee0a8b5603 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 oB","132":"B"},B:{"1":"P Q R U","132":"C K L G M N O","513":"V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB","513":"Y Z a b c d e S f H iB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V","2":"I g J D E F A B C K L G M N O h i","260":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB","513":"W X Y Z a b c d e S f H iB sB tB"},E:{"1":"C cB dB","2":"I g J D uB jB vB wB","132":"E F A B xB yB kB","1025":"K L G zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","513":"WB XB YB ZB aB bB P Q R hB"},G:{"1":"JC KC LC MC","2":"jB 8B nB 9B AC BC","132":"E CC DC EC FC GC HC IC","1025":"NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"P Q R U","132":"C K L G M N O","513":"V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB","513":"Y Z a b c d e f S g H jB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V","2":"I h J D E F A B C K L G M N O i j","260":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB","513":"W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"C dB eB","2":"I h J D vB kB wB xB","132":"E F A B yB zB lB","1025":"K L G 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","513":"XB YB ZB aB bB cB P Q R iB"},G:{"1":"KC LC MC NC","2":"kB 9B oB AC BC CC","132":"E DC EC FC GC HC IC JC","1025":"OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1d3fe99091b3d9..ff18f82c25bff3 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 oB"},B:{"2":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"2":"I g J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B 3B 4B 5B 6B cB mB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D","129":"A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","129":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"2":"I h J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B 4B 5B 6B 7B dB nB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D","129":"A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c4219fc3af2edb..c375138491376a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 3856dce114c0b4..f52aee15b9b166 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 oB","132":"B"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L G"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A pB","132":"B"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","16":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L G"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 87aadef0abfeb7..184c51a50fe616 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M","132":"N"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r qB rB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB","132":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E uB jB vB wB xB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I","132":"aC bC cC dC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M","132":"N"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s rB sB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB","132":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E vB kB wB xB yB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I","132":"bC cC dC eC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 213e9aa34e191c..4a29af1af75d29 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 oB","132":"F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E 8B nB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB","260":"9B"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E pB","132":"F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E 9B oB BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB","260":"AC"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 25624e24be04a3..5c345404c0025b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","33":"B C K L G M N O h i j k","164":"I g J D E F A"},D:{"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F","33":"k l","164":"O h i j","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","33":"AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","33":"B C K L G M N O i j k l","164":"I h J D E F A"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F","33":"l m","164":"O i j k","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","33":"BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b3d46358d31ce5..1d03633e29da80 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB","194":"FB GB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB","322":"L G zB 0B 1B lB 2B"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC","322":"OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB","194":"GB HB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB","322":"L G 0B 1B 2B mB 3B"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","322":"PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 4c3c52d4f74c54..c8c72044203482 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB qB rB"},D:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB HB IB JB KB fB LB gB MB NB"},E:{"1":"L G zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB dB","66":"K"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"3 4 5 6 7 8 9 AB BB CB DB"},G:{"1":"OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"eC kB fC gC hC iC jC","2":"I aC bC cC dC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB rB sB"},D:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"HB IB JB KB LB gB MB hB NB OB"},E:{"1":"L G 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB eB","66":"K"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"fC lB gC hC iC jC kC","2":"I bC cC dC eC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 f575078cad05d0..d56e56a4bcc07b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB","194":"t u v w"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB","194":"u v w x"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 35b7bd2724acc9..fc6cdcc7efc4d1 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"6 7 8"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s 3B 4B 5B 6B cB mB 7B dB","194":"t u v"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"7 8 9"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t 4B 5B 6B 7B dB nB 8B eB","194":"u v w"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0979a16345cf6b..6cdf3b015d2927 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L","516":"G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB","33":"0 1 2 3 4 5 k l m n o p q r s t u v w x y z"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k","33":"0 1 2 3 4 5 6 7 8 9 l 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 cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 O h i j k l m n o p q r s t u v w x y z"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","130":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"1":"mC"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L","516":"G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB","33":"0 1 2 3 4 5 6 l m n o p q r s t u v w x y z"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l","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"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 O i j k l m n o p q r s t u v w x y z"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","130":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"1":"nC"}},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 103858c13d71e6..63fc4ee00465a6 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 oB"},B:{"4":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I"},E:{"4":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"I uB jB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","8":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"4":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB"},H:{"8":"SC"},I:{"4":"eB I H WC nB XC YC","8":"TC UC VC"},J:{"4":"A","8":"D"},K:{"4":"T","8":"A B C cB mB dB"},L:{"4":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"4":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"4":"lC"},S:{"1":"mC"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B pB"},B:{"4":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I"},E:{"4":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"I vB kB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","8":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"4":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB"},H:{"8":"TC"},I:{"4":"fB I H XC oB YC ZC","8":"UC VC WC"},J:{"4":"A","8":"D"},K:{"4":"T","8":"A B C dB nB eB"},L:{"4":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"4":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"4":"mC"},S:{"1":"nC"}},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 4ff72a56847a41..dbee777c5fcafd 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t","2":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J vB","2":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","16":"wB","129":"I uB jB"},F:{"1":"F B C G M N O 3B 4B 5B 6B cB mB 7B dB","2":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"8B nB 9B AC BC","2":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","129":"jB"},H:{"1":"SC"},I:{"1":"eB I TC UC VC WC nB XC","2":"H YC"},J:{"1":"D A"},K:{"1":"A B C cB mB dB","2":"T"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u","2":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J wB","2":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","16":"xB","129":"I vB kB"},F:{"1":"F B C G M N O 4B 5B 6B 7B dB nB 8B eB","2":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"9B oB AC BC CC","2":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","129":"kB"},H:{"1":"TC"},I:{"1":"fB I UC VC WC XC oB YC","2":"H ZC"},J:{"1":"D A"},K:{"1":"A B C dB nB eB","2":"T"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 9f23796baeb799..32ef6eec4b89ce 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 oB","388":"B"},B:{"1":"O P Q R U V W","2":"C K L G","129":"M N","513":"X Y Z a b c d e S f H"},C:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB qB rB"},D:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","513":"Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"G 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB cB","2052":"L","3076":"C K dB zB"},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 T OB PB QB RB SB TB","2":"0 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","513":"UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC","2052":"JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"16":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A pB","388":"B"},B:{"1":"O P Q R U V W","2":"C K L G","129":"M N","513":"X Y Z a b c d e f S g H"},C:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB rB sB"},D:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","513":"Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"G 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB dB","2052":"L","3076":"C K eB 0B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB","2":"0 1 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","513":"VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC","2052":"KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"513":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"16":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 b715daa70e61ed..132e8ad0c8f1ba 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 oB","164":"B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","36":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N qB rB","36":"0 1 2 3 4 5 O h i j k l 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 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","36":"B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A pB","164":"B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","36":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N rB sB","36":"0 1 2 3 4 5 6 O i j k l m n o p q r 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","36":"B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d1ff60b81b7714..31d68b8e0d7bbb 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","132":"g"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","132":"h"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d21523263a86b5..9582126cfa125b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","257":"I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","257":"I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 bbee95cbd5edcd..66b6a94cdc3001 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 oB","132":"E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","132":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x qB rB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB"},E:{"1":"2B","2":"I g uB jB","132":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B 5B 6B","16":"B cB mB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z 7B dB"},G:{"16":"jB 8B nB","132":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","16":"TC UC","132":"eB I VC WC nB XC YC"},J:{"132":"D A"},K:{"1":"T","132":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"132":"ZC"},P:{"132":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D pB","132":"E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","132":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y rB sB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB"},E:{"1":"3B","2":"I h vB kB","132":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B 6B 7B","16":"B dB nB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB 8B eB"},G:{"16":"kB 9B oB","132":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","16":"UC VC","132":"fB I WC XC oB YC ZC"},J:{"132":"D A"},K:{"1":"T","132":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"132":"aC"},P:{"132":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 9e9388b29a5c37..1054a70c5e9474 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 75780a67a5c70a..cc14949ef65817 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","2":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB","2":"F B C WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n 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":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB","2":"F B C XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 0282607f67f20c..9117eeae41d1f0 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":"oB","260":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"0 1 2 3 4 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","2180":"5 6 7 8 9 AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","132":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"16":"nB","132":"jB 8B","516":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","16":"eB I TC UC VC WC","1025":"nB"},J:{"1":"A","16":"D"},K:{"1":"T","16":"A B C cB mB","132":"dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","16":"A"},O:{"1025":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2180":"mC"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"pB","260":"J D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"0 1 2 3 4 5 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","2180":"6 7 8 9 AB BB CB DB EB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","132":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"16":"oB","132":"kB 9B","516":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","16":"fB I UC VC WC XC","1025":"oB"},J:{"1":"A","16":"D"},K:{"1":"T","16":"A B C dB nB","132":"eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","16":"A"},O:{"1025":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2180":"nC"}},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 20f9314b168c54..0649b336f55e5a 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB qB rB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","196":"LB gB MB NB","324":"T"},E:{"2":"I g J D E F A B C uB jB vB wB xB yB kB cB","516":"K L G dB zB 0B 1B lB 2B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB rB sB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","196":"MB hB NB OB","324":"T"},E:{"2":"I h J D E F A B C vB kB wB xB yB zB lB dB","516":"K L G eB 0B 1B 2B mB 3B"},F:{"1":"FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 db8d238dbc88f8..63816e8fb96be7 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L","322":"G M"},C:{"1":"6 8 9 AB BB CB DB FB GB HB IB JB KB fB gB MB NB T OB PB QB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","194":"0 1 2 3 4 5 v w x y z","513":"7 EB LB RB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","4":"2 3 4 5 6"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A B uB jB vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o 3B 4B 5B 6B cB mB 7B dB","4":"p q r s t"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","4":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","4":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"4":"lC"},S:{"2":"mC"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L","322":"G M"},C:{"1":"7 9 AB BB CB DB EB GB HB IB JB KB LB gB hB NB OB T PB QB RB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","194":"0 1 2 3 4 5 6 w x y z","513":"8 FB MB SB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","4":"3 4 5 6 7"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A B vB kB wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p 4B 5B 6B 7B dB nB 8B eB","4":"q r s t u"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","4":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","4":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"4":"mC"},S:{"2":"nC"}},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 1ab0f70e6955a0..606c44947d835e 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 oB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O","2":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 4ce9b701d4c7ce..9656a66b731985 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"1":"eB I H UC VC WC nB XC YC","260":"TC"},J:{"1":"D A"},K:{"1":"T","16":"A B C cB mB dB"},L:{"1":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","16":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"SHA-2 SSL certificates"}; +module.exports={A:{A:{"1":"J D E F A B","2":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"1":"fB I H VC WC XC oB YC ZC","260":"UC"},J:{"1":"D A"},K:{"1":"T","16":"A B C dB nB eB"},L:{"1":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","16":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 749cb3201e1ec5..6ba6182faeb05a 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 oB"},B:{"1":"P","2":"C K L G M N O Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","66":"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 fB LB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","2":"I g J D E F A B C K L G M N O h i j k l m Q R U V W X Y Z a b c d e S f H iB sB tB","33":"n o p q r s t u v w"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB","2":"F B C QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB","33":"XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC","2":"hC iC jC","33":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P","2":"C K L G M N O Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","66":"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 gB MB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","2":"I h J D E F A B C K L G M N O i j k l m n Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"o p q r s t u v w x"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB","2":"F B C RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB","33":"YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC","2":"iC jC kC","33":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 621c3904a2abc8..9a03616c9f1d29 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB qB rB","322":"KB","578":"fB LB gB MB"},D:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"A B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC","132":"FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I","4":"aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB rB sB","322":"LB","578":"gB MB hB NB"},D:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"A B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC","132":"GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I","4":"bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 f314c8c116447b..0989802121d66c 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 oB"},B:{"1":"P Q R U V W X Y Z a b","2":"C K L G","194":"M N O","513":"c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB qB rB","194":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB","450":"XB YB ZB aB bB","513":"P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB","194":"LB gB MB NB T OB PB QB","513":"c d e S f H iB sB tB"},E:{"2":"I g J D E F A uB jB vB wB xB yB","194":"B C K L G kB cB dB zB 0B 1B","513":"lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC","194":"GC HC IC JC KC LC MC NC OC PC QC RC","513":"lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"513":"H"},M:{"513":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b","2":"C K L G","194":"M N O","513":"c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB rB sB","194":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB","450":"YB ZB aB bB cB","513":"P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB","194":"MB hB NB OB T PB QB RB","513":"c d e f S g H jB tB uB"},E:{"2":"I h J D E F A vB kB wB xB yB zB","194":"B C K L G lB dB eB 0B 1B 2B","513":"mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC","194":"HC IC JC KC LC MC NC OC PC QC RC SC","513":"mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"513":"H"},M:{"513":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 71612f9693e1a8..73a03a6de934a7 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"g J vB","2":"I D E F A B C K L G uB jB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B 4B 5B"},G:{"1":"9B AC","2":"E jB 8B nB BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C cB mB dB","2":"T","16":"A"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I","2":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"h J wB","2":"I D E F A B C K L G vB kB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B 5B 6B"},G:{"1":"AC BC","2":"E kB 9B oB CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C dB nB eB","2":"T","16":"A"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I","2":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 c0ff0b5e52c178..29ff87d1241b26 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 oB","132":"D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB"},H:{"1":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J pB","132":"D E"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB"},H:{"1":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 99adeb2a1bc4b0..f55352d9f0b8f6 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","2":"pB eB I g J D E F A B C DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","2":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"E F A B C yB kB cB","2":"I g J D uB jB vB wB xB","129":"K L G dB zB 0B 1B lB 2B"},F:{"1":"0 1 4 6 G M N O h i j k l m n o p q r s t u v w x y z dB","2":"2 3 5 7 8 9 F B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B"},G:{"1":"E CC DC EC FC GC HC IC JC","2":"jB 8B nB 9B AC BC","257":"KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I WC nB XC YC","2":"H TC UC VC"},J:{"2":"D A"},K:{"1":"dB","2":"A B C T cB mB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"ZC"},P:{"1":"I","2":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"16":"lC"},S:{"1":"mC"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","2":"qB fB I h J D E F A B C EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","2":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"E F A B C zB lB dB","2":"I h J D vB kB wB xB yB","129":"K L G eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 5 7 G M N O i j k l m n o p q r s t u v w x y z eB","2":"3 4 6 8 9 F B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B"},G:{"1":"E DC EC FC GC HC IC JC KC","2":"kB 9B oB AC BC CC","257":"LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I XC oB YC ZC","2":"H UC VC WC"},J:{"2":"D A"},K:{"1":"eB","2":"A B C T dB nB"},L:{"2":"H"},M:{"2":"S"},N:{"1":"B","2":"A"},O:{"2":"aC"},P:{"1":"I","2":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"16":"mC"},S:{"1":"nC"}},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 1471ae6ccca2a4..ecfff0d3e244c3 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 oB"},B:{"2":"C K L G M N O","1026":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j qB rB","322":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m","164":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L uB jB vB wB xB yB kB cB dB zB","2084":"G 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o 3B 4B 5B 6B cB mB 7B dB","1026":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2084":"QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"164":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"322":"mC"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","1026":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k rB sB","322":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"I h J D E F A B C K L G M N O i j k l 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L vB kB wB xB yB zB lB dB eB 0B","2084":"G 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p 4B 5B 6B 7B dB nB 8B eB","1026":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC","2084":"RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"164":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"322":"nC"}},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 c8f90a0a20ee3d..c38ecdec1f00ff 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 oB"},B:{"1":"L G M N O","2":"C K","257":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s qB rB","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u","257":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},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","2":"F B C G M N O h i j k l m n o 3B 4B 5B 6B cB mB 7B dB","257":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O","2":"C K","257":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t rB sB","194":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v","257":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},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","2":"F B C G M N O i j k l m n o p 4B 5B 6B 7B dB nB 8B eB","257":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 68bf389976419f..59dbc1d106182d 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"4":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"4":"SC"},I:{"4":"eB I H TC UC VC WC nB XC YC"},J:{"1":"A","4":"D"},K:{"4":"A B C T cB mB dB"},L:{"4":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"4":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"4":"lC"},S:{"2":"mC"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"4":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"4":"TC"},I:{"4":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"A","4":"D"},K:{"4":"A B C T dB nB eB"},L:{"4":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"4":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"4":"mC"},S:{"2":"nC"}},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 685bcd8817b013..bb70b983bf5019 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C uB jB vB wB xB yB kB cB dB","2":"K L G zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC","2":"LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C vB kB wB xB yB zB lB dB eB","2":"K L G 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC","2":"MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 cf2983a1eb914a..9ce6d2bdab8c34 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","260":"C","514":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t qB rB","194":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v","260":"w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB wB","260":"E xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i 3B 4B 5B 6B cB mB 7B dB","260":"j k l m"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","260":"E CC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","260":"C","514":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u rB sB","194":"0 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w","260":"0 x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB xB","260":"E yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j 4B 5B 6B 7B dB nB 8B eB","260":"k l m n"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","260":"E DC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 31fceb0f0f3fd9..1f53fb593bf907 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M qB rB","129":"0 1 2 3 y z","420":"N O h i j k l m n o p q r s t u v w x"},D:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i","420":"0 1 2 3 4 5 6 7 8 9 j k l 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 cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B G M N 3B 4B 5B 6B cB mB 7B","420":"0 1 C O h i j k l m n o p q r s t u v w x y z dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC","513":"OC PC QC RC lB","1537":"HC IC JC KC LC MC NC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","420":"A"},K:{"1":"T","2":"A B cB mB","420":"C dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","420":"I aC"},Q:{"1":"kC"},R:{"420":"lC"},S:{"2":"mC"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M rB sB","129":"0 1 2 3 4 z","420":"N O i j k l m n o p q r s t u v w x y"},D:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j","420":"0 1 2 3 4 5 6 7 8 9 k l 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 dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B G M N 4B 5B 6B 7B dB nB 8B","420":"0 1 2 C O i j k l m n o p q r s t u v w x y z eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC","513":"PC QC RC SC mB","1537":"IC JC KC LC MC NC OC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","420":"A"},K:{"1":"T","2":"A B dB nB","420":"C eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","420":"I bC"},Q:{"1":"lC"},R:{"420":"mC"},S:{"2":"nC"}},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 921b4a21dd9af4..ed6c3104bcb38b 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 oB","130":"B"},B:{"1":"a b c d e S f H","16":"C K","260":"L G","1028":"P Q R U V W X Y Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB qB rB","6148":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","6722":"JB KB fB LB gB MB NB T"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB","260":"EB FB GB HB IB JB KB","1028":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z"},E:{"2":"I g J D E F uB jB vB wB xB yB","1028":"G 0B 1B lB 2B","3076":"A B C K L kB cB dB zB"},F:{"1":"ZB aB bB P Q R hB","2":"0 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","260":"1 2 3 4 5 6 7","1028":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC","16":"FC","1028":"GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"6148":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"jC","2":"I aC bC","1028":"cC dC eC kB fC gC hC iC"},Q:{"1028":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A pB","130":"B"},B:{"1":"a b c d e f S g H","16":"C K","260":"L G","1028":"P Q R U V W X Y Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB rB sB","6148":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","6722":"KB LB gB MB hB NB OB T"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB","260":"FB GB HB IB JB KB LB","1028":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z"},E:{"2":"I h J D E F vB kB wB xB yB zB","1028":"G 1B 2B mB 3B","3076":"A B C K L lB dB eB 0B"},F:{"1":"aB bB cB P Q R iB","2":"0 1 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","260":"2 3 4 5 6 7 8","1028":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC","16":"GC","1028":"HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"6148":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"kC","2":"I bC cC","1028":"dC eC fC lB gC hC iC jC"},Q:{"1028":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 597e2864614cc1..a05b75eb0a9c78 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 oB","129":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A pB","129":"B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 1d2f7e93adb0a5..583ed4aff85904 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","2":"pB eB I g J D E F A B C K L G M N O h i gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","322":"HB IB JB KB fB LB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","194":"i j k l m n o p q r s t u v w x y"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","2":"qB fB I h J D E F A B C K L G M N O i j hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","322":"IB JB KB LB gB MB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","194":"j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 d6b9009b05c679..d1efb0589300cf 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC","194":"HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC","194":"IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d74daf038d8424..95fe2171b73ce0 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","516":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","260":"I g J D E F A B C K L G M N O h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I"},E:{"1":"g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB","132":"I jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"jB 8B"},H:{"260":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"T","260":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","516":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","260":"I h J D E F A B C K L G M N O i j k l m"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I"},E:{"1":"h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB","132":"I kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"kB 9B"},H:{"260":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"T","260":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 54b398748b1d70..36f17b52205ee0 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I","4":"g J D"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B"},H:{"1":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I","4":"h J D"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4b252994b1c476..1bc85b7f59b96e 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 oB","8":"J D E"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","2":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","130":"0 1 2 3 4 5 6 7 8 9 AB BB CB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB"},F:{"1":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB","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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","130":"n o p q r s t u v w x y"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"258":"SC"},I:{"1":"eB I WC nB XC YC","2":"H TC UC VC"},J:{"1":"D A"},K:{"1":"A B C cB mB dB","2":"T"},L:{"130":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I","130":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"130":"lC"},S:{"2":"mC"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B pB","8":"J D E"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","2":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","130":"1 2 3 4 5 6 7 8 9 AB BB CB DB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB"},F:{"1":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB","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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","130":"o p q r s t u v w x y z"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"258":"TC"},I:{"1":"fB I XC oB YC ZC","2":"H UC VC WC"},J:{"1":"D A"},K:{"1":"A B C dB nB eB","2":"T"},L:{"130":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I","130":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"130":"mC"},S:{"2":"nC"}},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 137f817db685fb..9adc6ab8d277bd 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 oB","260":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"1":"CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB"},E:{"1":"C K L G cB dB zB 0B 1B lB 2B","2":"I g J D F A B uB jB vB wB yB kB","132":"E xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"G M N O h i j k","4":"B C 4B 5B 6B cB mB 7B","16":"F 3B","132":"l m n o p q r s t u v w x y"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC DC EC FC GC HC","132":"E CC"},H:{"1":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D","132":"A"},K:{"1":"T dB","4":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","132":"I"},Q:{"1":"kC"},R:{"132":"lC"},S:{"1":"mC"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E pB","260":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"1":"DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB"},E:{"1":"C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D F A B vB kB wB xB zB lB","132":"E yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"G M N O i j k l","4":"B C 5B 6B 7B dB nB 8B","16":"F 4B","132":"m n o p q r s t u v w x y z"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC EC FC GC HC IC","132":"E DC"},H:{"1":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D","132":"A"},K:{"1":"T eB","4":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","132":"I"},Q:{"1":"lC"},R:{"132":"mC"},S:{"1":"nC"}},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 7a78170cd14067..b9beb54cc1ffa7 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 oB","388":"F A B"},B:{"4":"P Q R U V W X Y Z a b c d e S f H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB","4":"eB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"uB jB","4":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"4":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","4":"H XC YC"},J:{"1":"A","2":"D"},K:{"4":"A B C T cB mB dB"},L:{"4":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"4":"lC"},S:{"1":"mC"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E pB","388":"F A B"},B:{"4":"P Q R U V W X Y Z a b c d e f S g H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB","4":"fB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"vB kB","4":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"4":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","4":"H YC ZC"},J:{"1":"A","2":"D"},K:{"4":"A B C T dB nB eB"},L:{"4":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"4":"mC"},S:{"1":"nC"}},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 03017d079fff3b..1b67e13c1353f6 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":"oB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","8":"I g J"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","8":"I g uB jB","129":"J D E vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"B 6B cB mB","8":"F 3B 4B 5B"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","8":"jB 8B nB","129":"E 9B AC BC CC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"TC UC VC","129":"eB I WC nB"},J:{"1":"A","129":"D"},K:{"1":"C T dB","8":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"pB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","8":"I h J"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","8":"I h vB kB","129":"J D E wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"B 7B dB nB","8":"F 4B 5B 6B"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","8":"kB 9B oB","129":"E AC BC CC DC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"UC VC WC","129":"fB I XC oB"},J:{"1":"A","129":"D"},K:{"1":"C T eB","8":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 db46ae10b46d61..d3978aa0402df6 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l m n o p"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"uB","4":"jB","132":"I g J D E vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"E jB 8B nB 9B AC BC CC"},H:{"1":"SC"},I:{"1":"H XC YC","2":"TC UC VC","132":"eB I WC nB"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m n o p q"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"vB","4":"kB","132":"I h J D E wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"E kB 9B oB AC BC CC DC"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"UC VC WC","132":"fB I XC oB"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d971a18fa60691..b1853f1017fd15 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":"oB","8":"J D E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","8":"uB jB","132":"I g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"jB 8B nB 9B"},H:{"2":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"pB","8":"J D E F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"vB kB","132":"I h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"kB 9B oB AC"},H:{"2":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 143cb43cf92dd9..ac852641d8f54f 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":"oB","8":"J D E","772":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","4":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","4":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"H XC YC","2":"TC UC VC","132":"eB I WC nB"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"257":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"pB","8":"J D E","772":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","4":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","4":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"H YC ZC","2":"UC VC WC","132":"fB I XC oB"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"257":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 104b2753bb4cd6..a4a72ac615880d 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB","132":"UB VB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"16":"ZC"},P:{"1":"fC gC hC iC jC","2":"I aC bC cC dC eC kB"},Q:{"16":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB","132":"VB WB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"16":"aC"},P:{"1":"gC hC iC jC kC","2":"I bC cC dC eC fC lB"},Q:{"16":"lC"},R:{"16":"mC"},S:{"2":"nC"}},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 8926c5b1cf1b2f..f6fa5cee9c45b8 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"16":"pB eB qB rB","129":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"16":"I g uB jB","257":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"769":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"16":"eB I H TC UC VC WC nB XC YC"},J:{"16":"D A"},K:{"16":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"ZC"},P:{"16":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"16":"lC"},S:{"129":"mC"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"16":"qB fB rB sB","129":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"16":"I h vB kB","257":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"769":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"16":"fB I H UC VC WC XC oB YC ZC"},J:{"16":"D A"},K:{"16":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"aC"},P:{"16":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"16":"mC"},S:{"129":"nC"}},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 20972480825e54..80171c0fe93cd1 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 oB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e S f H","16":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v qB rB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB","129":"C"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"DC EC FC GC HC IC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC","129":"JC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"K L G M N O P Q R U V W X Y Z a b c d e f S g H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w rB sB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"A B K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB","129":"C"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"EC FC GC HC IC JC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC","129":"KC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 9869a3f7ff117c..f395da42b3b2a4 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 oB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e S f H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n","132":"o p q r s t u v w"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D uB jB vB","388":"E xB","514":"wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","132":"G M N O h i j"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC","388":"E CC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o","132":"p q r s t u v w x"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D vB kB wB","388":"E yB","514":"xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","132":"G M N O i j k"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC","388":"E DC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 9abcb2dea1264e..86cd536f7e55a5 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 78daecc42c15dd..7a534dd810edfd 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 oB","16":"F"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","16":"I g"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"B C"},E:{"2":"I J uB jB vB","16":"g D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B mB 7B dB","16":"cB"},G:{"2":"jB 8B nB 9B AC","16":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC WC nB XC YC","16":"VC"},J:{"2":"A","16":"D"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B pB","16":"F"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","16":"I h"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"B C"},E:{"2":"I J vB kB wB","16":"h D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B nB 8B eB","16":"dB"},G:{"2":"kB 9B oB AC BC","16":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC XC oB YC ZC","16":"WC"},J:{"2":"A","16":"D"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bc3fec9d1acd0d..1523bee8a2ea8c 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 oB"},B:{"2":"C K L G M N O","2052":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g qB rB","1028":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","1060":"J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m n","226":"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","2052":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D uB jB vB wB","772":"K L G dB zB 0B 1B lB 2B","804":"E F A B C yB kB cB","1316":"xB"},F:{"2":"F B C G M N O h i j k l m n o p q r s t u v w 3B 4B 5B 6B cB mB 7B dB","226":"0 1 2 3 4 5 x y z","2052":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"jB 8B nB 9B AC BC","292":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"2052":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2052":"ZC"},P:{"2":"I aC bC","2052":"cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"1":"lC"},S:{"1028":"mC"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","2052":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h rB sB","1028":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","1060":"J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},D:{"2":"I h J D E F A B C K L G M N O i j k l m n o","226":"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","2052":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D vB kB wB xB","772":"K L G eB 0B 1B 2B mB 3B","804":"E F A B C zB lB dB","1316":"yB"},F:{"2":"F B C G M N O i j k l m n o p q r s t u v w x 4B 5B 6B 7B dB nB 8B eB","226":"0 1 2 3 4 5 6 y z","2052":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"kB 9B oB AC BC CC","292":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"2052":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2052":"aC"},P:{"2":"I bC cC","2052":"dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"1":"mC"},S:{"1028":"nC"}},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 3e64522d851acf..ffa98f8e0bdbd6 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 oB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","322":"7"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m","164":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB","164":"D wB"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","164":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB","164":"H XC YC"},J:{"2":"D","164":"A"},K:{"2":"A B C cB mB dB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"ZC"},P:{"164":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"164":"kC"},R:{"164":"lC"},S:{"1":"mC"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","164":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","322":"8"},D:{"1":"tB uB","2":"I h J D E F A B C K L G M N O i j k l 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB","164":"D xB"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","164":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB","164":"H YC ZC"},J:{"2":"D","164":"A"},K:{"2":"A B C dB nB eB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"aC"},P:{"164":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"164":"lC"},R:{"164":"mC"},S:{"1":"nC"}},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 41b598badf5ee0..44d56a22a3dd22 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":"oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","8":"pB eB I g J qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","33":"F 3B 4B 5B 6B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"T dB","33":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","8":"qB fB I h J rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","33":"F 4B 5B 6B 7B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"T eB","33":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 88f3bfb4e2da4d..250b38b8e8f5ff 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n p q r s t u v w x y z AB BB CB DB EB FB","258":"o"},E:{"2":"I g J D E F A B C K L G uB jB wB xB yB kB cB dB zB 0B 1B lB 2B","258":"vB"},F:{"1":"5 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 6 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"jB 8B nB","33":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"33":"S"},N:{"161":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o q r s t u v w x y z AB BB CB DB EB FB GB","258":"p"},E:{"2":"I h J D E F A B C K L G vB kB xB yB zB lB dB eB 0B 1B 2B mB 3B","258":"wB"},F:{"1":"6 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 7 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"kB 9B oB","33":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"33":"S"},N:{"161":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 74fac7464ed851..224428779f215a 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 oB"},B:{"2":"C K L","33":"P Q R U V W X Y Z a b c d e S f H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","161":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","450":"AB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"33":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"33":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","36":"jB"},H:{"2":"SC"},I:{"2":"eB","33":"I H TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"2":"A B C cB mB dB","33":"T"},L:{"33":"H"},M:{"161":"S"},N:{"2":"A B"},O:{"33":"ZC"},P:{"33":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"33":"kC"},R:{"33":"lC"},S:{"161":"mC"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L","33":"P Q R U V W X Y Z a b c d e f S g H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB rB sB","161":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","450":"BB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"33":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"33":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","36":"kB"},H:{"2":"TC"},I:{"2":"fB","33":"I H UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"2":"A B C dB nB eB","33":"T"},L:{"33":"H"},M:{"161":"S"},N:{"2":"A B"},O:{"33":"aC"},P:{"33":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"33":"lC"},R:{"33":"mC"},S:{"161":"nC"}},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 0e5717f1b87c90..066c75e986f5c3 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB qB rB","130":"SB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"K L G dB zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"text-underline-offset"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB rB sB","130":"TB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"K L G eB 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bc9849f090391a..12a87fb82dfced 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 82e0ee96353229..25605c6ac9ef49 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O qB rB","132":"h"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O rB sB","132":"i"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 84837b06096bf8..8a57d49c77e6fc 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 oB","66":"E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB","2":"pB eB I g J D E F A B C K L G M N O h i j k qB rB","66":"l","129":"RB SB TB UB VB WB XB YB ZB aB","388":"bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V","2":"I g J D E F A B C K L G M N O h i j","1540":"W X Y Z a b c d e S f H iB sB tB"},E:{"1":"D E F A B C K xB yB kB cB dB","2":"I g J uB jB vB wB","513":"L G zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB dB","2":"F B C 3B 4B 5B 6B cB mB 7B","1540":"WB XB YB ZB aB bB P Q R hB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"129":"S"},N:{"1":"B","66":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D pB","66":"E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB","2":"qB fB I h J D E F A B C K L G M N O i j k l rB sB","66":"m","129":"SB TB UB VB WB XB YB ZB aB bB","388":"cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V","2":"I h J D E F A B C K L G M N O i j k","1540":"W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"D E F A B C K yB zB lB dB eB","2":"I h J vB kB wB xB","513":"L G 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB eB","2":"F B C 4B 5B 6B 7B dB nB 8B","1540":"XB YB ZB aB bB cB P Q R iB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"129":"S"},N:{"1":"B","66":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 5b83e44ddebeb1..ebf537b4ba65ef 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 oB","66":"E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l qB rB","66":"m 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F G 3B","66":"B C 4B 5B 6B cB mB 7B dB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"T dB","2":"A B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","66":"A"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D pB","66":"E F A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m rB sB","66":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F G 4B","66":"B C 5B 6B 7B dB nB 8B eB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"T eB","2":"A B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","66":"A"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 8dc2dc56042966..3f193485ccfc96 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB qB rB","132":"LB gB MB","450":"DB EB FB GB HB IB JB KB fB"},D:{"1":"TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","706":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB","1028":"K dB zB"},F:{"1":"JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB","706":"GB HB IB"},G:{"1":"KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"kB fC gC hC iC jC","2":"I aC bC cC dC eC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB rB sB","132":"MB hB NB","450":"EB FB GB HB IB JB KB LB gB"},D:{"1":"UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","706":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB","1028":"K eB 0B"},F:{"1":"KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB","706":"HB IB JB"},G:{"1":"LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"lB gC hC iC jC kC","2":"I bC cC dC eC fC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 2a26ebba18a86f..862b7c0c733bde 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 oB"},B:{"2":"C K L","194":"P Q R U V W X Y Z a b c d e S f H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f qB rB","16":"H iB"},D:{"2":"0 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","16":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","194":"KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E uB jB vB wB xB","16":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB","16":"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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC","16":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"16":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","16":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","16":"T"},L:{"16":"H"},M:{"16":"S"},N:{"2":"A","16":"B"},O:{"16":"ZC"},P:{"16":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"16":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:6,C:"Token Binding"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L","194":"P Q R U V W X Y Z a b c d e f S g H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g rB sB","16":"H jB"},D:{"2":"0 1 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","16":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","194":"LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E vB kB wB xB yB","16":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB","16":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC","16":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"16":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","16":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","16":"T"},L:{"16":"H"},M:{"16":"S"},N:{"2":"A","16":"B"},O:{"16":"aC"},P:{"16":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"16":"lC"},R:{"16":"mC"},S:{"2":"nC"}},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 6f52782b867db1..42ecd42ca76778 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 oB","8":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","578":"C K L G M N O"},C:{"1":"O h i j k l m EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","4":"I g J D E F A B C K L G M N","194":"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"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","260":"B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F pB","8":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","578":"C K L G M N O"},C:{"1":"O i j k l m n FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","4":"I h J D E F A B C K L G 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"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","260":"B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 bd0f9175e10255..17b413a001aa19 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":"oB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","33":"I g J D E F A B C K L G qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","33":"I g J D E uB jB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F 3B 4B","33":"B C G M N O h i j k 5B 6B cB mB 7B"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","33":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","33":"eB I TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"pB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","33":"I h J D E F A B C K L G rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","33":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F 4B 5B","33":"B C G M N O i j k l 6B 7B dB nB 8B"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","33":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","33":"fB I UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 0937b9f5893edd..6770b9881fc6ea 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 oB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F qB rB","33":"A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B","33":"C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"2B","2":"uB jB","33":"I g J D E vB wB xB","257":"F A B C K L G yB kB cB dB zB 0B 1B lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"G M N O h i j k"},G:{"33":"E jB 8B nB 9B AC BC CC","257":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"TC UC VC","33":"eB I WC nB XC YC"},J:{"33":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F rB sB","33":"A 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B","33":"C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"3B","2":"vB kB","33":"I h J D E wB xB yB","257":"F A B C K L G zB lB dB eB 0B 1B 2B mB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"G M N O i j k l"},G:{"33":"E kB 9B oB AC BC CC DC","257":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"UC VC WC","33":"fB I XC oB YC ZC"},J:{"33":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 86974db7bfafbd..5497b266ff0e2f 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 oB"},B:{"1":"U V W X Y Z a b c d e S f H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"hC iC jC","2":"I aC bC cC dC eC kB fC gC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"U V W X Y Z a b c d e f S g H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"iC jC kC","2":"I bC cC dC eC fC lB gC hC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 67f0900b6d4d6d..3a5aa1a56b257a 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 oB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 4B 5B 6B cB mB 7B dB","2":"F 3B"},G:{"1":"E nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B"},H:{"2":"SC"},I:{"1":"eB I H UC VC WC nB XC YC","2":"TC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E pB","132":"F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 5B 6B 7B dB nB 8B eB","2":"F 4B"},G:{"1":"E oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B"},H:{"2":"TC"},I:{"1":"fB I H VC WC XC oB YC ZC","2":"UC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 2e504d47c5a9df..80d4090f14ff33 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 oB","132":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","260":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B","260":"nB"},H:{"1":"SC"},I:{"1":"I H WC nB XC YC","2":"eB TC UC VC"},J:{"1":"A","2":"D"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F pB","132":"A"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","260":"wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B","260":"oB"},H:{"1":"TC"},I:{"1":"I H XC oB YC ZC","2":"fB UC VC WC"},J:{"1":"A","2":"D"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 987e1fcd72c020..1bde698b186e42 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 oB"},B:{"2":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","322":"9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB"},D:{"2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","130":"0 1 2","513":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB dB"},F:{"2":"0 1 3 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","513":"2 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"322":"mC"}},B:6,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","513":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","322":"AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB"},D:{"2":"0 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","130":"1 2 3","513":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB eB"},F:{"2":"0 1 2 4 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","513":"3 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"322":"nC"}},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 f0b94e51fc38fb..1ceea334ebad18 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB qB rB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB 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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC","16":"HC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB rB sB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB 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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC","16":"IC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 e2fe558f45efcd..190dff922a3c6d 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 ef3f2d7456c549..fa11563200fa51 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 oB"},B:{"1":"U V W X Y Z a b c d e S f 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 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB","66":"XB YB ZB aB bB P Q"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB 3B 4B 5B 6B cB mB 7B dB","66":"PB QB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"hC iC jC","2":"I aC bC cC dC eC kB fC gC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"U V W X Y Z a b c d e f S g 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 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB","66":"YB ZB aB bB cB P Q"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB 4B 5B 6B 7B dB nB 8B eB","66":"QB RB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"iC jC kC","2":"I bC cC dC eC fC lB gC hC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 35a60d8446e665..729669e94168e2 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k","130":"l m n o p q r s t"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB wB","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","130":"G M N O"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC","130":"BC"},H:{"2":"SC"},I:{"1":"H YC","2":"eB I TC UC VC WC nB","130":"XC"},J:{"2":"D","130":"A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l","130":"m n o p q r s t u"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB xB","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","130":"G M N O"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC","130":"CC"},H:{"2":"TC"},I:{"1":"H ZC","2":"fB I UC VC WC XC oB","130":"YC"},J:{"2":"D","130":"A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6f9a4ea071392c..2e077312a29115 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","132":"0 1 2 3 4 5 r s t u v w x y z"},D:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G kB cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","2":"I"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","132":"0 1 2 3 4 5 6 s t u v w x y z"},D:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","2":"I"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 700c9a3879a5b2..fc2c2f06d833af 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","132":"g vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"1":"SC"},I:{"1":"eB I H WC nB XC YC","2":"TC UC VC"},J:{"1":"D A"},K:{"1":"C T mB dB","2":"A B cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","132":"h wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"1":"TC"},I:{"1":"fB I H XC oB YC ZC","2":"UC VC WC"},J:{"1":"D A"},K:{"1":"C T nB eB","2":"A B dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 32f0f403b43165..e1b9b123300c16 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 oB","33":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","33":"C K L G M N O"},C:{"1":"SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","33":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB qB rB"},D:{"1":"GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","33":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"33":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","33":"0 1 2 G M N O h i j k l m n o p q r s t u v w x y z"},G:{"33":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","33":"eB I TC UC VC WC nB XC YC"},J:{"33":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"33":"A B"},O:{"2":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","33":"I aC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"33":"mC"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F pB","33":"A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","33":"C K L G M N O"},C:{"1":"TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","33":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB rB sB"},D:{"1":"HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","33":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"33":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","33":"0 1 2 3 G M N O i j k l m n o p q r s t u v w x y z"},G:{"33":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","33":"fB I UC VC WC XC oB YC ZC"},J:{"33":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"33":"A B"},O:{"2":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","33":"I bC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"33":"nC"}},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 e1858d3774abf9..792e509ac12c98 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b8abb35f8734c9..b0987bd6fbf546 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 oB"},B:{"1":"N O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB qB rB","4609":"MB NB T OB PB QB RB SB TB","4674":"gB","5698":"LB","7490":"FB GB HB IB JB","7746":"KB fB","8705":"UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","4097":"PB","4290":"fB LB gB","6148":"MB NB T OB"},E:{"1":"G 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","4609":"B C cB dB","8193":"K L zB 0B"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB 3B 4B 5B 6B cB mB 7B dB","4097":"FB","6148":"BB CB DB EB"},G:{"1":"LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC","4097":"HC IC JC KC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"4097":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC","4097":"dC eC kB fC gC hC iC jC"},Q:{"4097":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB rB sB","4609":"NB OB T PB QB RB SB TB UB","4674":"hB","5698":"MB","7490":"GB HB IB JB KB","7746":"LB gB","8705":"VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","4097":"QB","4290":"gB MB hB","6148":"NB OB T PB"},E:{"1":"G 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","4609":"B C dB eB","8193":"K L 0B 1B"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB 4B 5B 6B 7B dB nB 8B eB","4097":"GB","6148":"CB DB EB FB"},G:{"1":"MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC","4097":"IC JC KC LC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"4097":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC","4097":"eC fC lB gC hC iC jC kC"},Q:{"4097":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 dbeb08cb4f10f8..d156b0a92dca1f 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","2":"F B 3B 4B 5B 6B cB mB"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"1":"SC"},I:{"1":"H XC YC","16":"eB I TC UC VC WC nB"},J:{"16":"D A"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","2":"F B 4B 5B 6B 7B dB nB"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"1":"TC"},I:{"1":"H YC ZC","16":"fB I UC VC WC XC oB"},J:{"16":"D A"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 c9a4e41abd32c0..2d31c9473b4f1b 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A qB rB","33":"B C K L G"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A rB sB","33":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 b4ceeb27840063..9bd438be0c193b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","260":"I g J D E F A B C K L G M N O h qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A vB wB xB yB kB","2":"uB jB","513":"B C K L G cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC","513":"HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","132":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","260":"I h J D E F A B C K L G M N O i rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A wB xB yB zB lB","2":"vB kB","513":"B C K L G dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC","513":"IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","132":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cac197132d06ed..5950b126b30451 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 oB"},B:{"1":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","194":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","322":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g J uB jB vB"},F:{"2":"F B C G M N O h i j k l m n o p q r s t 3B 4B 5B 6B cB mB 7B dB","322":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"322":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O","322":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","322":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h J vB kB wB"},F:{"2":"F B C G M N O i j k l m n o p q r s t u 4B 5B 6B 7B dB nB 8B eB","322":"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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"322":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 c76617da07210d..01bf2e6c394d04 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 oB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"2B","2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Large, Small, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"3B","2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:7,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 7d3fc78b1ab8db..dc6b67f4cd47df 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 oB","132":"F","260":"A B"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h","260":"i j k l m n"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B","516":"BC","772":"AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E pB","132":"F","260":"A B"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i","260":"j k l m n o"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC","516":"CC","772":"BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 774f2632cf0668..7d9ca86c6e4ae6 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 oB","4":"E F A B"},B:{"4":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"uB jB","4":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"4":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"4":"SC"},I:{"2":"eB I TC UC VC WC nB","4":"H XC YC"},J:{"2":"D A"},K:{"4":"A B C T cB mB dB"},L:{"4":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"2":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"4":"lC"},S:{"4":"mC"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D pB","4":"E F A B"},B:{"4":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"vB kB","4":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"4":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"4":"TC"},I:{"2":"fB I UC VC WC XC oB","4":"H YC ZC"},J:{"2":"D A"},K:{"4":"A B C T dB nB eB"},L:{"4":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"2":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"4":"mC"},S:{"4":"nC"}},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 2a42e1d5f0db43..33ad97b13e2b8c 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 oB"},B:{"1":"b c d e S f H","2":"C K L G M N O","194":"P Q R U V W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB","194":"UB VB WB XB YB ZB aB bB P Q R U V"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 3B 4B 5B 6B cB mB 7B dB","194":"KB LB MB NB T OB PB QB RB SB TB UB VB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"iC jC","2":"I aC bC cC dC eC kB fC gC hC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"b c d e f S g H","2":"C K L G M N O","194":"P Q R U V W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB","194":"VB WB XB YB ZB aB bB cB P Q R U V"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 4B 5B 6B 7B dB nB 8B eB","194":"LB MB NB OB T PB QB RB SB TB UB VB WB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"jC kC","2":"I bC cC dC eC fC lB gC hC iC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 bca895865aa9f8..a8ba572c0b91af 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 oB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e S f H","2":"C K L","578":"G"},C:{"1":"FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB","194":"9 AB BB CB DB","1025":"EB"},D:{"1":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB"},E:{"1":"B C K L G cB dB zB 0B 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","322":"0 1 2 3 4 5"},G:{"1":"HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"194":"mC"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K L","578":"G"},C:{"1":"GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB","194":"AB BB CB DB EB","1025":"FB"},D:{"1":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB","322":"EB FB GB HB IB JB"},E:{"1":"B C K L G dB eB 0B 1B 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","322":"1 2 3 4 5 6"},G:{"1":"IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"194":"nC"}},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 868cd0857e8355..05be5c1a5ddabb 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 5B 6B cB mB 7B dB","2":"F 3B 4B"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 6B 7B dB nB 8B eB","2":"F 4B 5B"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 33086016f2f166..fca9055ee4dcb3 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 oB","2":"E F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G jB vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","16":"F"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB"},H:{"1":"SC"},I:{"1":"eB I H VC WC nB XC YC","16":"TC UC"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D pB","2":"E F A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","16":"F"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB"},H:{"1":"TC"},I:{"1":"fB I H WC XC oB YC ZC","16":"UC VC"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 d436d501d20983..4b4c9f5a89bc0e 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 oB"},B:{"1":"V W X Y Z a b c d e S f H","2":"C K L G M N O","260":"P Q R U"},C:{"1":"R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u qB rB","260":"fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB","516":"9 AB BB CB DB EB FB GB HB IB JB KB","580":"0 1 2 3 4 5 6 7 8 v w x y z","2049":"YB ZB aB bB P Q"},D:{"1":"V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x","132":"0 y z","260":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U"},E:{"1":"G 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB kB","1090":"B C K cB dB","2049":"L zB 0B"},F:{"1":"UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k 3B 4B 5B 6B cB mB 7B dB","132":"l 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 T OB PB QB RB SB TB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC","1090":"HC IC JC KC LC MC NC","2049":"OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"260":"ZC"},P:{"260":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"260":"kC"},R:{"260":"lC"},S:{"516":"mC"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"V W X Y Z a b c d e f S g H","2":"C K L G M N O","260":"P Q R U"},C:{"1":"R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v rB sB","260":"gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB","516":"AB BB CB DB EB FB GB HB IB JB KB LB","580":"0 1 2 3 4 5 6 7 8 9 w x y z","2049":"ZB aB bB cB P Q"},D:{"1":"V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y","132":"0 1 z","260":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U"},E:{"1":"G 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB lB","1090":"B C K dB eB","2049":"L 0B 1B"},F:{"1":"VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l 4B 5B 6B 7B dB nB 8B eB","132":"m 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 T PB QB RB SB TB UB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC","1090":"IC JC KC LC MC NC OC","2049":"PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"260":"aC"},P:{"260":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"260":"lC"},R:{"260":"mC"},S:{"516":"nC"}},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 a1f5960b2005ae..091c012f679be4 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB X Y Z a b c d e S f H iB qB rB","578":"ZB aB bB P Q R hB U V W"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC","260":"IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"2":"mC"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB X Y Z a b c d e f S g H jB rB sB","578":"aB bB cB P Q R iB U V W"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC","260":"JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"2":"nC"}},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 50d8da7f445081..332dce689e10f8 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 oB"},B:{"2":"C K L G M N O","1025":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","194":"7 8 9 AB BB CB DB EB","706":"FB GB HB","1025":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C G M N O h i j k l m n o p q r s t u v w x 3B 4B 5B 6B cB mB 7B dB","450":"0 1 y z","706":"2 3 4","1025":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC YC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","1025":"T"},L:{"1025":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"bC cC dC eC kB fC gC hC iC jC","2":"I aC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","1025":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","194":"8 9 AB BB CB DB EB FB","706":"GB HB IB","1025":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C G M N O i j k l m n o p q r s t u v w x y 4B 5B 6B 7B dB nB 8B eB","450":"0 1 2 z","706":"3 4 5","1025":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC ZC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","1025":"T"},L:{"1025":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"cC dC eC fC lB gC hC iC jC kC","2":"I bC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1efae51f974b73..fa17874de8565d 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O","66":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB","66":"bB P Q R U V W X Y Z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T 3B 4B 5B 6B cB mB 7B dB","66":"OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O","66":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB","66":"cB P Q R U V W X Y Z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T 4B 5B 6B 7B dB nB 8B eB","66":"PB QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 1ac64cd08cb37e..aa01c7c0bc8bf5 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 oB"},B:{"2":"C K L G M N O P Q","516":"R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z","130":"O h i j k l m","1028":"a b c d e S f H iB sB tB"},E:{"1":"L G 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB","2049":"K dB zB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC","2049":"KC LC MC NC OC"},H:{"2":"SC"},I:{"2":"eB I TC UC VC WC nB XC","258":"H YC"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","258":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I","258":"aC bC cC"},Q:{"2":"kC"},R:{"16":"lC"},S:{"2":"mC"}},B:5,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P Q","516":"R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z","130":"O i j k l m n","1028":"a b c d e f S g H jB tB uB"},E:{"1":"L G 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB","2049":"K eB 0B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC","2049":"LC MC NC OC PC"},H:{"2":"TC"},I:{"2":"fB I UC VC WC XC oB YC","258":"H ZC"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","258":"T"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I","258":"bC cC dC"},Q:{"2":"lC"},R:{"16":"mC"},S:{"2":"nC"}},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 7ff6b55c49a4e9..59c518d0ca7933 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","2":"C","226":"K L G M N"},C:{"1":"LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB qB rB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB"},E:{"1":"K L G zB 0B 1B lB 2B","2":"I g J D E F A B C uB jB vB wB xB yB kB cB","322":"dB"},F:{"1":"GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC","578":"MC","2052":"PC","3076":"NC OC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","2":"C","226":"K L G M N"},C:{"1":"MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB rB sB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB"},E:{"1":"K L G 0B 1B 2B mB 3B","2":"I h J D E F A B C vB kB wB xB yB zB lB dB","322":"eB"},F:{"1":"HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC","578":"NC","2052":"QC","3076":"OC PC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 fc60af51ce50f6..3d4b5721875c20 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":"oB","8":"J D E F A","129":"B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","129":"C K L G M N O"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","129":"I g J D E F A B C K L G M N O h i j k l"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D","129":"E F A B C K L G M N O h i j k l m n o p q r s t u"},E:{"1":"E F A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB","129":"J D vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B 3B 4B 5B 6B cB mB 7B","129":"C G M N O dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC BC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"1":"A","2":"D"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","129":"B"},O:{"129":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"129":"mC"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"pB","8":"J D E F A","129":"B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","129":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","129":"I h J D E F A B C K L G M N O i j k l m"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D","129":"E F A B C K L G M N O i j k l m n o p q r s t u v"},E:{"1":"E F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB","129":"J D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B 4B 5B 6B 7B dB nB 8B","129":"C G M N O eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC CC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"1":"A","2":"D"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","129":"B"},O:{"129":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"129":"nC"}},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 ef31abe17cfa97..3e3ddd5a978ee8 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m qB rB","194":"4 5 6","450":"0 1 2 3 n o p q r s t u v w x y z","2242":"7 8 9 AB BB CB"},D:{"1":"IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z","578":"5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"G 1B lB 2B","2":"I g J D E F A uB jB vB wB xB yB","1090":"B C K L kB cB dB zB 0B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 3 4 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC","1090":"JC KC LC MC NC OC PC QC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"cC dC eC kB fC gC hC iC jC","2":"I aC bC"},Q:{"578":"kC"},R:{"2":"lC"},S:{"2242":"mC"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n rB sB","194":"5 6 7","450":"0 1 2 3 4 o p q r s t u v w x y z","2242":"8 9 AB BB CB DB"},D:{"1":"JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z","578":"6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"G 2B mB 3B","2":"I h J D E F A vB kB wB xB yB zB","1090":"B C K L lB dB eB 0B 1B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 4 5 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC","1090":"KC LC MC NC OC PC QC RC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"dC eC fC lB gC hC iC jC kC","2":"I bC cC"},Q:{"578":"lC"},R:{"2":"mC"},S:{"2242":"nC"}},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 7adf802d075bb7..5946752e286b6d 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 oB"},B:{"2":"C K L G M N O P","578":"Q R U V W X Y Z a b c d e","1602":"S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB qB rB","194":"NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P","578":"Q R U V W X Y Z a b c d e","1602":"S f H iB sB tB"},E:{"2":"I g J D E F A B uB jB vB wB xB yB kB","322":"C K L G cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB 3B 4B 5B 6B cB mB 7B dB","578":"WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P","578":"Q R U V W X Y Z a b c d e","1602":"f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB rB sB","194":"OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P","578":"Q R U V W X Y Z a b c d e","1602":"f S g H jB tB uB"},E:{"2":"I h J D E F A B vB kB wB xB yB zB lB","322":"C K L G dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB 4B 5B 6B 7B dB nB 8B eB","578":"XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 49715a60a8e32a..376c1824a8202a 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 oB"},B:{"1":"a b c d e S f H","2":"C K L G M N O","66":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB","66":"bB P Q R U V W X Y Z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"ZB aB bB P Q R hB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB 3B 4B 5B 6B cB mB 7B dB","66":"PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"a b c d e f S g H","2":"C K L G M N O","66":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB","66":"cB P Q R U V W X Y Z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"aB bB cB P Q R iB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB 4B 5B 6B 7B dB nB 8B eB","66":"QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 c76eff16e64e1a..974ce8b58429a9 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 oB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"16":"I g J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"F B C 3B 4B 5B 6B cB mB 7B dB","132":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"16":"I h J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"F B C 4B 5B 6B 7B dB nB 8B eB","132":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 a43ca982962de1..085e130a300375 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 oB","520":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","8":"C K","388":"L G M N O"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","132":"I g J D E F A B C K L G M N O h i j k l m n o p"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g","132":"J D E F A B C K L G M N O h i j k l m"},E:{"2":"uB","8":"I g jB vB","520":"J D E F A B C wB xB yB kB cB","1028":"K dB zB","7172":"L","8196":"G 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B 5B","132":"B C G 6B cB mB 7B dB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC","1028":"KC LC MC NC OC","3076":"PC QC RC lB"},H:{"2":"SC"},I:{"1":"H","2":"TC UC","132":"eB I VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"ZC"},P:{"1":"aC bC cC dC eC kB fC gC hC iC jC","132":"I"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E pB","520":"F A B"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","8":"C K","388":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","132":"I h J D E F A B C K L G M N O i j k l m n o p q"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h","132":"J D E F A B C K L G M N O i j k l m n"},E:{"2":"vB","8":"I h kB wB","520":"J D E F A B C xB yB zB lB dB","1028":"K eB 0B","7172":"L","8196":"G 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B 6B","132":"B C G 7B dB nB 8B eB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC","1028":"LC MC NC OC PC","3076":"QC RC SC mB"},H:{"2":"TC"},I:{"1":"H","2":"UC VC","132":"fB I WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"aC"},P:{"1":"bC cC dC eC fC lB gC hC iC jC kC","132":"I"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 f9b8772f5df1b2..7a5f92d71c2561 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 oB"},B:{"2":"C K L G M N O P a b c d e S f H","450":"Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P a b c d e S f H iB sB tB","450":"Q R U V W X Y Z"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB 3B 4B 5B 6B cB mB 7B dB","450":"QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"257":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O P a b c d e f S g H","450":"Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P a b c d e f S g H jB tB uB","450":"Q R U V W X Y Z"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB 4B 5B 6B 7B dB nB 8B eB","450":"RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"257":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 b781083aafb2e5..4909bf31f95e8d 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","8":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g","8":"J D E","132":"F A B C K L G M N O h i j k","260":"l m n o p q r s t"},E:{"2":"I g J D E F A B C K uB jB vB wB xB yB kB cB dB zB","516":"L G 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F 3B 4B 5B","8":"B 6B","132":"cB mB 7B","260":"C G M N O dB"},G:{"1":"PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"1":"SC"},I:{"1":"H nB XC YC","2":"eB TC UC VC","132":"I WC"},J:{"2":"D A"},K:{"1":"C T cB mB dB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"8":"mC"}},B:7,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","8":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h","8":"J D E","132":"F A B C K L G M N O i j k l","260":"m n o p q r s t u"},E:{"2":"I h J D E F A B C K vB kB wB xB yB zB lB dB eB 0B","516":"L G 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F 4B 5B 6B","8":"B 7B","132":"dB nB 8B","260":"C G M N O eB"},G:{"1":"QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"TC"},I:{"1":"H oB YC ZC","2":"fB UC VC WC","132":"I XC"},J:{"2":"D A"},K:{"1":"C T dB nB eB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"8":"nC"}},B:7,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 4f862ee66fbdac..abf8755fc39a9b 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB qB rB","132":"I g","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","132":"g vB","260":"J wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F 3B 4B 5B 6B","132":"B C cB mB 7B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B","132":"nB 9B"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","129":"D"},K:{"1":"T dB","2":"A","132":"B C cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB rB sB","132":"I h","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","132":"h wB","260":"J xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F 4B 5B 6B 7B","132":"B C dB nB 8B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B","132":"oB AC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","129":"D"},K:{"1":"T eB","2":"A","132":"B C dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 84a2bbc50b9fa8..48879a60a29b03 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l 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 fB LB"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"0 1 2 F B C G M N O h i j k l m n o p q r s t u v w x y z 3B 4B 5B 6B cB mB 7B dB","66":"3 4 5 6 7 8 9"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"1":"dC eC kB fC gC hC iC jC","2":"I aC bC cC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m 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 gB MB"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"0 1 2 3 F B C G M N O i j k l m n o p q r s t u v w x y z 4B 5B 6B 7B dB nB 8B eB","66":"4 5 6 7 8 9 AB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"1":"eC fC lB gC hC iC jC kC","2":"I bC cC dC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"2":"nC"}},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 352ab486e95d25..5ce581d1968672 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 oB"},B:{"2":"C K L Q R U V W X Y Z a b c d e S f H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB qB rB","129":"HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","194":"GB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB Q R U V W X Y Z a b c d e S f H iB sB tB","66":"JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P"},E:{"2":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 F B C G M N O h i j k l m n o p q r s t u v w x y z QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","66":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C T cB mB dB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"513":"I","516":"aC bC cC dC eC kB fC gC hC iC jC"},Q:{"2":"kC"},R:{"66":"lC"},S:{"2":"mC"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L Q R U V W X Y Z a b c d e f S g H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB rB sB","129":"IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","194":"HB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q R U V W X Y Z a b c d e f S g H jB tB uB","66":"KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P"},E:{"2":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O i j k l m n o p q r s t u v w x y z RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","66":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C T dB nB eB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"513":"I","516":"bC cC dC eC fC lB gC hC iC jC kC"},Q:{"2":"lC"},R:{"66":"mC"},S:{"2":"nC"}},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 68b319a3fecf1b..3007e780ea190f 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"2":"pB eB I g J D E F A B C K L G M N O h i j k l qB rB","66":"m n o p q r s","129":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB I TC UC VC WC nB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"2":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"129":"mC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"qB fB I h J D E F A B C K L G M N O i j k l m rB sB","66":"n o p q r s t","129":"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB I UC VC WC XC oB"},J:{"1":"A","2":"D"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"2":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"129":"nC"}},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 b3f122265e475b..34832901f0af0c 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":"oB","8":"J D E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","8":"pB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","8":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 6B cB mB 7B dB","2":"F 3B","8":"4B 5B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H TC XC YC","2":"eB I UC VC WC nB"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"pB","8":"J D E F"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","8":"qB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","8":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 7B dB nB 8B eB","2":"F 4B","8":"5B 6B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H UC YC ZC","2":"fB I VC WC XC oB"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 a11e002ac94e3f..ff6fc539410092 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 oB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e S f H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB qB rB","322":"aB bB P Q R hB U V W X Y Z a b c d e S f H iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T","66":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"2":"I g J D E F A B C uB jB vB wB xB yB kB cB dB","578":"K L G zB 0B 1B lB 2B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB 3B 4B 5B 6B cB mB 7B dB","66":"EB FB GB HB IB JB KB LB MB NB T OB","132":"PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB"},G:{"2":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"2":"SC"},I:{"2":"eB I H TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"2":"A B C cB mB dB","132":"T"},L:{"132":"H"},M:{"322":"S"},N:{"2":"A B"},O:{"2":"ZC"},P:{"2":"I aC bC cC dC eC kB fC","132":"gC hC iC jC"},Q:{"2":"kC"},R:{"2":"lC"},S:{"2":"mC"}},B:5,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"2":"C K L G M N O","132":"P Q R U V W X Y Z a b c d e f S g H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB rB sB","322":"bB cB P Q R iB U V W X Y Z a b c d e f S g H jB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T","66":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","132":"P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"2":"I h J D E F A B C vB kB wB xB yB zB lB dB eB","578":"K L G 0B 1B 2B mB 3B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB 4B 5B 6B 7B dB nB 8B eB","66":"FB GB HB IB JB KB LB MB NB OB T PB","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB"},G:{"2":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"2":"TC"},I:{"2":"fB I H UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"2":"A B C dB nB eB","132":"T"},L:{"132":"H"},M:{"322":"S"},N:{"2":"A B"},O:{"2":"aC"},P:{"2":"I bC cC dC eC fC lB gC","132":"hC iC jC kC"},Q:{"2":"lC"},R:{"2":"mC"},S:{"2":"nC"}},B:5,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 e0668be5e0a2e6..91f72c06d8c1c6 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 oB"},B:{"1":"P Q R U V W X Y Z a b c d e S f 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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L G M N O h i j k l m n o p q qB rB","194":"r s t u v w x"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"A B C K L G yB kB cB dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k l 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"P Q R U V W X Y Z a b c d e f S g 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L G M N O i j k l m n o p q r rB sB","194":"s t u v w x 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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L G zB lB dB eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l m 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 3e9187e46b0e12..fca574243ee2b5 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB rB","2":"pB eB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I"},E:{"1":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"I g uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB cB mB 7B dB","2":"F B 3B 4B 5B 6B"},G:{"1":"E 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB"},H:{"2":"SC"},I:{"1":"H XC YC","2":"eB TC UC VC WC nB","130":"I"},J:{"1":"D A"},K:{"1":"B C T cB mB dB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB sB","2":"qB fB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I"},E:{"1":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"I h vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB dB nB 8B eB","2":"F B 4B 5B 6B 7B"},G:{"1":"E AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB"},H:{"2":"TC"},I:{"1":"H YC ZC","2":"fB UC VC WC XC oB","130":"I"},J:{"1":"D A"},K:{"1":"B C T dB nB eB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 da7e607ab8ecde..6d96d63cca1a3b 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 oB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e S f H","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"0 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","2":"I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x"},E:{"1":"C K L G dB zB 0B 1B lB 2B","2":"I g J D E F uB jB vB wB xB yB","132":"A B kB cB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C G M N O h i j k 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"E jB 8B nB 9B AC BC CC DC EC"},H:{"2":"SC"},I:{"1":"H","2":"eB I TC UC VC WC nB XC YC"},J:{"2":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B pB"},B:{"1":"L G M N O P Q R U V W X Y Z a b c d e f S g H","2":"C K"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"0 1 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","2":"I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y"},E:{"1":"C K L G eB 0B 1B 2B mB 3B","2":"I h J D E F vB kB wB xB yB zB","132":"A B lB dB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C G M N O i j k l 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"E kB 9B oB AC BC CC DC EC FC"},H:{"2":"TC"},I:{"1":"H","2":"fB I UC VC WC XC oB YC ZC"},J:{"2":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 598902fa76fc46..63c36c7454cc89 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB I g J D E F A B C K L qB rB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"0 1 2 3 4 5 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G yB kB cB dB zB 0B 1B lB 2B","4":"I g J D E uB jB vB wB xB"},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 T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","2":"F B C 3B 4B 5B 6B cB mB 7B dB","4":"G M N O h i j k l m n o p q r s"},G:{"1":"DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","4":"E jB 8B nB 9B AC BC CC"},H:{"2":"SC"},I:{"1":"H","4":"eB I TC UC VC WC nB XC YC"},J:{"4":"D A"},K:{"1":"T","2":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"4":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:5,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB I h J D E F A B C K L rB sB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"0 1 2 3 4 5 6 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G zB lB dB eB 0B 1B 2B mB 3B","4":"I h J D E vB kB wB xB yB"},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 T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","2":"F B C 4B 5B 6B 7B dB nB 8B eB","4":"G M N O i j k l m n o p q r s t"},G:{"1":"EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","4":"E kB 9B oB AC BC CC DC"},H:{"2":"TC"},I:{"1":"H","4":"fB I UC VC WC XC oB YC ZC"},J:{"4":"D A"},K:{"1":"T","2":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"4":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 6eee3ee0cb9587..4ad382091b08d2 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 oB"},B:{"1":"O P Q R U V W X Y Z a b c d e S f H","4":"C K L G M N"},C:{"1":"BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","4":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","4":"I g J D E F A B C K L G M N O h i j k"},E:{"1":"D E F A B C K L G wB xB yB kB cB dB zB 0B 1B lB 2B","4":"I g J uB jB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F 3B 4B","4":"B C 5B 6B cB mB 7B"},G:{"1":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","4":"jB 8B nB 9B AC"},H:{"4":"SC"},I:{"1":"H XC YC","4":"eB I TC UC VC WC nB"},J:{"1":"A","4":"D"},K:{"1":"T","4":"A B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"4":"mC"}},B:5,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B pB"},B:{"1":"O P Q R U V W X Y Z a b c d e f S g H","4":"C K L G M N"},C:{"1":"CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","4":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB rB sB"},D:{"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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","4":"I h J D E F A B C K L G M N O i j k l"},E:{"1":"D E F A B C K L G xB yB zB lB dB eB 0B 1B 2B mB 3B","4":"I h J vB kB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F 4B 5B","4":"B C 6B 7B dB nB 8B"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","4":"kB 9B oB AC BC"},H:{"4":"TC"},I:{"1":"H YC ZC","4":"fB I UC VC WC XC oB"},J:{"1":"A","4":"D"},K:{"1":"T","4":"A B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"4":"nC"}},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 387e3b73f51794..2b9de91d639f7c 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 oB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB","2":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","2":"uB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB","2":"F"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D pB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB","2":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","2":"vB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB","2":"F"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 cb59e6089a9cf5..a19feb58ea6a38 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 oB"},B:{"1":"C K L G M N O","4":"P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB","4":"I g J D E F A B C K L G M N TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","16":"pB eB qB rB"},D:{"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 IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J D E F A B C K L G M N O h i j k l m n"},E:{"4":"J D E F A B C K L G vB wB xB yB kB cB dB zB 0B 1B lB 2B","16":"I g uB jB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 7B dB","16":"F B 3B 4B 5B 6B cB mB"},G:{"4":"E BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","16":"jB 8B nB 9B AC"},H:{"2":"SC"},I:{"4":"I H WC nB XC YC","16":"eB TC UC VC"},J:{"4":"D A"},K:{"4":"T dB","16":"A B C cB mB"},L:{"4":"H"},M:{"4":"S"},N:{"1":"A B"},O:{"4":"ZC"},P:{"4":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"4":"kC"},R:{"4":"lC"},S:{"1":"mC"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D pB"},B:{"1":"C K L G M N O","4":"P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB","4":"I h J D E F A B C K L G M N UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","16":"qB fB rB sB"},D:{"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 JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J D E F A B C K L G M N O i j k l m n o"},E:{"4":"J D E F A B C K L G wB xB yB zB lB dB eB 0B 1B 2B mB 3B","16":"I h vB kB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 8B eB","16":"F B 4B 5B 6B 7B dB nB"},G:{"4":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","16":"kB 9B oB AC BC"},H:{"2":"TC"},I:{"4":"I H XC oB YC ZC","16":"fB UC VC WC"},J:{"4":"D A"},K:{"4":"T eB","16":"A B C dB nB"},L:{"4":"H"},M:{"4":"S"},N:{"1":"A B"},O:{"4":"aC"},P:{"4":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"4":"lC"},R:{"4":"mC"},S:{"1":"nC"}},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 612e5967b40ad5..6b9098dad7eae1 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 oB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","2":"pB eB","260":"A B","388":"J D E F","900":"I g qB rB"},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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","16":"I g J","132":"r s","388":"D E F A B C K L G M N O h i j k l m n o p q"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","2":"I uB jB","132":"D wB","388":"g J vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB dB","2":"F B 3B 4B 5B 6B cB mB 7B","132":"G M N"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","2":"jB 8B nB","132":"BC","388":"9B AC"},H:{"2":"SC"},I:{"1":"H YC","2":"TC UC VC","388":"XC","900":"eB I WC nB"},J:{"132":"A","388":"D"},K:{"1":"C T dB","2":"A B cB mB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F pB","132":"A B"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","2":"qB fB","260":"A B","388":"J D E F","900":"I h rB sB"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","16":"I h J","132":"s t","388":"D E F A B C K L G M N O i j k l m n o p q r"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","2":"I vB kB","132":"D xB","388":"h J wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB eB","2":"F B 4B 5B 6B 7B dB nB 8B","132":"G M N"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","2":"kB 9B oB","132":"CC","388":"AC BC"},H:{"2":"TC"},I:{"1":"H ZC","2":"UC VC WC","388":"YC","900":"fB I XC oB"},J:{"132":"A","388":"D"},K:{"1":"C T eB","2":"A B dB nB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 4a8b380ffc676b..2a556f16af9e86 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"1":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"1":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"1":"SC"},I:{"1":"eB I H TC UC VC WC nB XC YC"},J:{"1":"D A"},K:{"1":"A B C T cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"2":"lC"},S:{"1":"mC"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"1":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"1":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"1":"TC"},I:{"1":"fB I H UC VC WC XC oB YC ZC"},J:{"1":"D A"},K:{"1":"A B C T dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"2":"mC"},S:{"1":"nC"}},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 b8d27001aead06..ee0e210332a98f 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 oB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R U V W X Y Z a b c d e S f H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 pB eB I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB qB rB"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I g J D E F A B C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB"},E:{"8":"I g J D E F A B C K L G uB jB vB wB xB yB kB cB dB zB 0B 1B lB 2B"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB 3B 4B 5B 6B cB mB 7B dB"},G:{"8":"E jB 8B nB 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB"},H:{"8":"SC"},I:{"8":"eB I H TC UC VC WC nB XC YC"},J:{"8":"D A"},K:{"8":"A B C T cB mB dB"},L:{"8":"H"},M:{"8":"S"},N:{"2":"A B"},O:{"8":"ZC"},P:{"8":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"8":"kC"},R:{"8":"lC"},S:{"8":"mC"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B pB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R U V W X Y Z a b c d e f S g H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 qB fB I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB rB sB"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I h J D E F A B C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB"},E:{"8":"I h J D E F A B C K L G vB kB wB xB yB zB lB dB eB 0B 1B 2B mB 3B"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB 4B 5B 6B 7B dB nB 8B eB"},G:{"8":"E kB 9B oB AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB"},H:{"8":"TC"},I:{"8":"fB I H UC VC WC XC oB YC ZC"},J:{"8":"D A"},K:{"8":"A B C T dB nB eB"},L:{"8":"H"},M:{"8":"S"},N:{"2":"A B"},O:{"8":"aC"},P:{"8":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"8":"lC"},R:{"8":"mC"},S:{"8":"nC"}},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 3f25d86d62e17e..6fed87de48a40a 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 oB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e S f H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB U V W X Y Z a b c d e S f H iB","132":"B","260":"pB eB I g J D qB rB","516":"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 fB LB gB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R U V W X Y Z a b c d e S f H iB sB tB","132":"I g J D E F A B C K L G M N O h i j k l m n o p q r s"},E:{"1":"E F A B C K L G xB yB kB cB dB zB 0B 1B lB 2B","132":"I g J D uB jB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB T OB PB QB RB SB TB UB VB WB XB YB ZB aB bB P Q R hB","16":"F 3B","132":"B C G M N 4B 5B 6B cB mB 7B dB"},G:{"1":"E CC DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC lB","132":"jB 8B nB 9B AC BC"},H:{"132":"SC"},I:{"1":"H XC YC","132":"eB I TC UC VC WC nB"},J:{"132":"D A"},K:{"1":"T","16":"A","132":"B C cB mB dB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"ZC"},P:{"1":"I aC bC cC dC eC kB fC gC hC iC jC"},Q:{"1":"kC"},R:{"1":"lC"},S:{"1":"mC"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F pB"},B:{"1":"C K L G M N O P Q R U V W X Y Z a b c d e f S g H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB U V W X Y Z a b c d e f S g H jB","132":"B","260":"qB fB I h J D rB sB","516":"E F A"},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 gB MB hB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R U V W X Y Z a b c d e f S g H jB tB uB","132":"I h J D E F A B C K L G M N O i j k l m n o p q r s t"},E:{"1":"E F A B C K L G yB zB lB dB eB 0B 1B 2B mB 3B","132":"I h J D vB kB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB T PB QB RB SB TB UB VB WB XB YB ZB aB bB cB P Q R iB","16":"F 4B","132":"B C G M N 5B 6B 7B dB nB 8B eB"},G:{"1":"E DC EC FC GC HC IC JC KC LC MC NC OC PC QC RC SC mB","132":"kB 9B oB AC BC CC"},H:{"132":"TC"},I:{"1":"H YC ZC","132":"fB I UC VC WC XC oB"},J:{"132":"D A"},K:{"1":"T","16":"A","132":"B C dB nB eB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"aC"},P:{"1":"I bC cC dC eC fC lB gC hC iC jC kC"},Q:{"1":"lC"},R:{"1":"mC"},S:{"1":"nC"}},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 41b9192f82caf0..914e0bb53b5c5b 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.00497,"52":0.01987,"72":0.02484,"77":0.01987,"78":0.12418,"85":0.02484,"86":0.00497,"90":0.05464,"91":0.03477,"92":0.00993,"93":0.4967,"94":2.30966,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 79 80 81 82 83 84 87 88 89 95 96 3.5 3.6"},D:{"49":0.30795,"67":0.00497,"70":0.02484,"75":0.0298,"77":0.00993,"79":0.07947,"80":0.0596,"81":0.03974,"83":0.01987,"84":0.00993,"85":0.00497,"86":0.02484,"87":0.26325,"88":0.01987,"89":0.0596,"90":0.12418,"91":0.32286,"92":0.14404,"93":0.17385,"94":0.86426,"95":15.94904,"96":9.35286,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 71 72 73 74 76 78 97 98 99"},F:{"36":0.00993,"75":0.00993,"79":0.01987,"80":0.73015,"81":0.27815,_:"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 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:{"85":0.00497,"87":0.00993,"91":0.0149,"92":0.01987,"94":0.02484,"95":2.01164,"96":0.86923,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 88 89 90 93"},E:{"4":0,"12":0.00993,"13":0.07451,"14":0.56624,"15":2.09111,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0149,"11.1":0.02484,"12.1":0.15894,"13.1":0.38743,"14.1":2.80636,"15.1":6.68062},G:{"8":0.00464,"3.2":0,"4.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.00464,"9.3":0.07885,"10.0-10.2":0,"10.3":0.15074,"11.0-11.2":0.0116,"11.3-11.4":0.01623,"12.0-12.1":0.01391,"12.2-12.5":0.44759,"13.0-13.1":0.03943,"13.2":0.00464,"13.3":0.05798,"13.4-13.7":0.24583,"14.0-14.4":1.06912,"14.5-14.8":8.03114,"15.0-15.1":13.00567},P:{"4":0.0958,"5.0-5.4":0.01033,"6.2-6.4":0.02065,"7.2-7.4":0.01064,"8.2":0.05025,"9.2":0.0335,"10.1":0.03098,"11.1-11.2":0.36846,"12.0":0.04466,"13.0":0.05322,"14.0":0.02129,"15.0":1.47959},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00216,"4.4":0,"4.4.3-4.4.4":0.02301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20861,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":25.88251},S:{"2.5":0},R:{_:"0"},M:{"0":0.18119},Q:{"10.4":0},O:{"0":0},H:{"0":0.08577}}; +module.exports={C:{"52":0.00416,"72":0.01666,"78":0.09161,"79":0.00416,"88":0.00416,"89":0.09994,"90":0.1041,"91":0.17489,"93":0.00833,"94":0.67457,"95":1.37412,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 80 81 82 83 84 85 86 87 92 96 97 3.5 3.6"},D:{"40":0.00833,"49":0.22486,"57":0.01249,"59":0.00416,"63":0.00416,"67":0.00833,"69":0.00833,"70":0.02082,"72":0.00416,"75":0.00416,"77":0.03331,"78":0.00416,"79":0.11659,"80":0.06246,"81":0.03331,"83":0.01249,"84":0.02082,"85":0.00416,"86":0.01249,"87":0.03748,"88":0.02915,"89":0.04997,"90":0.06246,"91":0.24984,"92":0.09994,"93":0.03748,"94":0.23735,"95":0.38725,"96":19.0961,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 50 51 52 53 54 55 56 58 60 61 62 64 65 66 68 71 73 74 76 97 98 99"},F:{"75":0.02082,"80":0.01249,"81":0.39974,"82":0.33728,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00416,"13":0.0458,"14":0.30814,"15":0.75368,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00416,"11.1":0.03331,"12.1":0.21653,"13.1":0.6246,"14.1":1.63229,"15.1":7.38694,"15.2":1.73222},B:{"85":0.00833,"92":0.01666,"93":0.00416,"95":0.05413,"96":2.68994,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 94"},G:{"8":0,"3.2":0,"4.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.13873,"10.0-10.2":0,"10.3":0.1658,"11.0-11.2":0.01015,"11.3-11.4":0.01015,"12.0-12.1":0.05414,"12.2-12.5":0.40943,"13.0-13.1":0.01692,"13.2":0.00338,"13.3":0.05076,"13.4-13.7":0.22333,"14.0-14.4":0.45681,"14.5-14.8":4.85229,"15.0-15.1":25.54052,"15.2":1.88136},P:{"4":0.02156,"5.0-5.4":0.42234,"6.2-6.4":0.01057,"7.2-7.4":0.09432,"8.2":0.03017,"9.2":0.0524,"10.1":0.02115,"11.1-11.2":0.19912,"12.0":0.01048,"13.0":0.02156,"14.0":0.02096,"15.0":0.12936},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00156,"4.2-4.3":0.00052,"4.4":0,"4.4.3-4.4.4":0.0271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08328,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.00584},H:{"0":0.05525},L:{"0":23.96708},S:{"2.5":0},R:{_:"0"},M:{"0":0.11088},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js index e746fc9732d68e..55138a0d8eb265 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00791,"48":0.00395,"52":0.01186,"55":0.00395,"63":0.00395,"68":0.01582,"78":0.02372,"84":0.12257,"88":0.00395,"90":0.00395,"91":0.01186,"92":0.01582,"93":0.20165,"94":0.83429,"95":0.01582,"96":0.00791,_:"2 3 4 5 6 7 8 9 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 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 3.5 3.6"},D:{"34":0.01186,"35":0.60101,"38":0.03559,"49":0.05536,"56":0.01186,"57":0.00791,"60":0.00395,"63":0.00791,"64":0.01186,"65":0.01582,"67":0.00791,"68":0.00791,"69":0.01582,"70":0.01186,"71":0.01582,"72":0.01186,"73":0.01186,"74":0.01186,"75":0.02768,"76":0.06722,"77":0.01186,"78":0.00791,"79":0.07908,"80":0.04349,"81":0.01582,"83":0.02372,"84":0.03954,"85":0.03954,"86":0.03559,"87":0.41517,"88":0.03954,"89":0.05931,"90":0.03954,"91":0.11862,"92":0.17398,"93":0.27283,"94":1.26923,"95":15.44432,"96":8.98349,"97":0.01977,"98":0.00395,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 59 61 62 66 99"},F:{"28":0.00791,"46":0.00791,"77":0.00395,"78":0.00395,"79":0.02768,"80":0.51402,"81":0.22538,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00791,"16":0.07117,"17":0.01186,"18":0.04745,"84":0.00791,"85":0.00791,"89":0.00791,"91":0.00791,"92":0.01582,"93":0.02372,"94":0.07513,"95":2.12725,"96":0.80266,_:"12 13 14 79 80 81 83 86 87 88 90"},E:{"4":0,"11":0.00395,"12":0.00791,"13":0.04349,"14":0.35586,"15":0.79475,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01186,"11.1":0.02768,"12.1":0.05536,"13.1":0.24515,"14.1":1.56183,"15.1":0.70381},G:{"8":0.00143,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01144,"6.0-6.1":0,"7.0-7.1":0.02002,"8.1-8.4":0.01144,"9.0-9.2":0.00429,"9.3":0.17446,"10.0-10.2":0.01859,"10.3":0.09295,"11.0-11.2":0.1144,"11.3-11.4":0.03432,"12.0-12.1":0.03289,"12.2-12.5":0.6292,"13.0-13.1":0.03432,"13.2":0.01144,"13.3":0.08008,"13.4-13.7":0.27027,"14.0-14.4":1.01815,"14.5-14.8":5.82721,"15.0-15.1":5.90586},P:{"4":0.17708,"5.0-5.4":0.01045,"6.2-6.4":0.0404,"7.2-7.4":0.04167,"8.2":0.02121,"9.2":0.01042,"10.1":0.02121,"11.1-11.2":0.05208,"12.0":0.03125,"13.0":0.09375,"14.0":0.11458,"15.0":2.1041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00378,"4.4":0,"4.4.3-4.4.4":0.02645},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00604,"11":0.33796,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01209},N:{"10":0.02658,"11":0.22582},L:{"0":38.04434},S:{"2.5":0},R:{_:"0"},M:{"0":0.11487},Q:{"10.4":0.02418},O:{"0":5.72556},H:{"0":0.92728}}; +module.exports={C:{"34":0.00747,"52":0.01121,"55":0.00747,"68":0.02242,"78":0.01495,"84":0.00374,"88":0.01495,"91":0.01121,"92":0.00747,"93":0.00747,"94":0.36996,"95":0.62408,"96":0.01121,_:"2 3 4 5 6 7 8 9 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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 97 3.5 3.6"},D:{"22":0.00374,"34":0.00747,"35":0.39986,"38":0.04484,"49":0.03737,"56":0.00747,"58":0.06353,"60":0.00747,"63":0.00747,"64":0.01495,"65":0.01495,"67":0.00374,"69":0.01495,"70":0.01495,"71":0.00374,"72":0.01495,"73":0.00747,"74":0.01121,"75":0.02616,"76":0.04111,"77":0.00747,"78":0.01121,"79":0.08595,"80":0.03363,"81":0.01121,"83":0.02242,"84":0.0299,"85":0.02616,"86":0.03363,"87":0.11958,"88":0.03363,"89":0.04484,"90":0.0299,"91":0.07474,"92":0.12332,"93":0.58297,"94":0.36623,"95":0.59045,"96":22.68733,"97":0.01869,"98":0.01121,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 61 62 66 68 99"},F:{"28":0.00747,"36":0.00374,"46":0.00747,"66":0.00747,"79":0.00374,"80":0.00747,"81":0.42602,"82":0.34754,_:"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 67 68 69 70 71 72 73 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},E:{"4":0,"10":0.00374,"12":0.00747,"13":0.03737,"14":0.26906,"15":0.39986,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01495,"11.1":0.01869,"12.1":0.04858,"13.1":0.20927,"14.1":1.15473,"15.1":1.1211,"15.2":0.15322},B:{"14":0.00374,"16":0.00747,"17":0.00747,"18":0.0299,"84":0.00747,"85":0.00747,"89":0.00374,"91":0.00374,"92":0.01121,"93":0.00374,"94":0.01121,"95":0.07848,"96":2.71306,_:"12 13 15 79 80 81 83 86 87 88 90"},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":0,"7.0-7.1":0.01906,"8.1-8.4":0.0044,"9.0-9.2":0.00293,"9.3":0.15686,"10.0-10.2":0.01466,"10.3":0.08942,"11.0-11.2":0.13487,"11.3-11.4":0.03958,"12.0-12.1":0.02052,"12.2-12.5":0.56146,"13.0-13.1":0.03518,"13.2":0.01026,"13.3":0.0689,"13.4-13.7":0.22722,"14.0-14.4":0.94113,"14.5-14.8":4.04014,"15.0-15.1":7.43086,"15.2":0.83998},P:{"4":0.18692,"5.0-5.4":0.01067,"6.2-6.4":0.02065,"7.2-7.4":0.04154,"8.2":0.01032,"9.2":0.01038,"10.1":0.02133,"11.1-11.2":0.04154,"12.0":0.02077,"13.0":0.09346,"14.0":0.12462,"15.0":0.27},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00477,"4.4":0,"4.4.3-4.4.4":0.02655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00554,"11":0.31584,_:"6 7 8 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":5.67428},H:{"0":0.99614},L:{"0":40.86615},S:{"2.5":0},R:{_:"0"},M:{"0":0.119},Q:{"10.4":0.02505}}; 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 00238ddce106d7..da2f7e1bf8a597 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:{"4":0.00187,"17":0.00373,"23":0.00373,"26":0.00187,"29":0.01867,"30":0.00187,"35":0.00373,"38":0.00934,"39":0.00373,"41":0.00373,"43":0.0056,"44":0.00373,"45":0.00373,"47":0.00934,"48":0.03174,"50":0.03547,"52":0.01307,"56":0.00373,"57":0.0056,"58":0.00747,"60":0.00187,"61":0.00373,"65":0.00187,"68":0.00747,"71":0.00187,"72":0.02054,"73":0.00187,"78":0.01307,"80":0.00373,"83":0.00187,"85":0.00373,"86":0.00373,"88":0.01494,"89":0.01494,"90":0.0056,"91":0.01307,"92":0.01494,"93":0.21097,"94":1.03432,"95":0.04107,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 24 25 27 28 31 32 33 34 36 37 40 42 46 49 51 53 54 55 59 62 63 64 66 67 69 70 74 75 76 77 79 81 82 84 87 96 3.5 3.6"},D:{"24":0.00373,"26":0.00373,"30":0.00373,"33":0.00187,"36":0.00934,"37":0.0112,"38":0.00934,"39":0.00373,"41":0.00373,"43":0.08775,"44":0.0056,"45":0.00373,"46":0.0056,"48":0.00373,"49":0.0056,"50":0.00373,"51":0.00373,"52":0.01494,"54":0.00373,"55":0.00747,"56":0.0056,"57":0.0056,"58":0.01307,"59":0.00747,"60":0.00373,"61":0.0056,"62":0.01867,"63":0.01867,"64":0.00934,"65":0.01307,"66":0.00373,"67":0.01494,"68":0.0056,"69":0.00747,"70":0.0112,"71":0.00934,"72":0.01307,"73":0.0168,"74":0.01307,"75":0.00934,"76":0.0056,"77":0.01307,"78":0.01494,"79":0.04294,"80":0.03174,"81":0.02801,"83":0.13069,"84":0.02054,"85":0.02054,"86":0.06535,"87":0.08775,"88":0.03547,"89":0.05601,"90":0.05974,"91":0.07468,"92":0.14749,"93":0.11015,"94":0.55077,"95":6.06775,"96":3.40354,"97":0.02987,"98":0.00934,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 27 28 29 31 32 34 35 40 42 47 53 99"},F:{"64":0.00187,"65":0.00373,"73":0.00373,"75":0.00373,"78":0.0056,"79":0.02987,"80":0.31739,"81":0.34166,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 74 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01867,"13":0.01494,"14":0.0168,"15":0.00747,"16":0.03734,"17":0.02801,"18":0.10829,"81":0.00934,"84":0.02054,"85":0.00747,"89":0.02614,"90":0.03174,"91":0.01867,"92":0.02427,"93":0.02054,"94":0.04668,"95":0.58624,"96":0.18483,_:"79 80 83 86 87 88"},E:{"4":0,"10":0.00373,"13":0.01494,"14":0.05414,"15":0.05974,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 9.1 10.1 11.1","5.1":0.0056,"7.1":0.00187,"12.1":0.0056,"13.1":0.0224,"14.1":0.15683,"15.1":0.85322},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00169,"7.0-7.1":0.01267,"8.1-8.4":0,"9.0-9.2":0.00169,"9.3":0.04983,"10.0-10.2":0.02027,"10.3":0.06756,"11.0-11.2":0.05996,"11.3-11.4":0.06334,"12.0-12.1":0.06756,"12.2-12.5":0.82765,"13.0-13.1":0.09543,"13.2":0.11824,"13.3":0.1309,"13.4-13.7":0.2863,"14.0-14.4":1.56156,"14.5-14.8":1.55311,"15.0-15.1":3.52428},P:{"4":1.5578,"5.0-5.4":0.33166,"6.2-6.4":0.24121,"7.2-7.4":0.65327,"8.2":0.05025,"9.2":0.43216,"10.1":0.0804,"11.1-11.2":0.32161,"12.0":0.1407,"13.0":0.37186,"14.0":0.59297,"15.0":1.67841},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0048,"4.2-4.3":0.03481,"4.4":0,"4.4.3-4.4.4":0.19625},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00187,"9":0.0224,"10":0.0056,"11":0.65905,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.43522},S:{"2.5":0},R:{_:"0"},M:{"0":0.13826},Q:{"10.4":0},O:{"0":2.3667},H:{"0":1.62466}}; +module.exports={C:{"24":0.00215,"28":0.02147,"29":0.03221,"30":0.00429,"33":0.00429,"35":0.00429,"38":0.00429,"39":0.00429,"40":0.00215,"41":0.00215,"42":0.00429,"43":0.00644,"44":0.00429,"47":0.00859,"48":0.01074,"49":0.00215,"50":0.00859,"52":0.00859,"56":0.00644,"57":0.00429,"60":0.00644,"62":0.00215,"63":0.00429,"65":0.00215,"68":0.00644,"72":0.02791,"73":0.00429,"78":0.01074,"79":0.00215,"84":0.00859,"85":0.00644,"87":0.00215,"88":0.00644,"89":0.01503,"90":0.00215,"91":0.01718,"92":0.00644,"93":0.02576,"94":0.49596,"95":0.95542,"96":0.04509,_:"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 31 32 34 36 37 45 46 51 53 54 55 58 59 61 64 66 67 69 70 71 74 75 76 77 80 81 82 83 86 97 3.5 3.6"},D:{"25":0.00215,"30":0.00644,"34":0.00429,"35":0.00215,"36":0.00429,"37":0.02147,"38":0.00859,"39":0.00215,"42":0.00429,"43":0.073,"44":0.00429,"46":0.00429,"47":0.01932,"48":0.00429,"49":0.00644,"50":0.00215,"51":0.00429,"52":0.01074,"54":0.00644,"55":0.00644,"56":0.00429,"57":0.01074,"58":0.00644,"59":0.00429,"60":0.00859,"61":0.00644,"62":0.02147,"63":0.00644,"64":0.00429,"65":0.01288,"66":0.02147,"67":0.01074,"68":0.00429,"69":0.00859,"70":0.02362,"71":0.01288,"72":0.01932,"73":0.02147,"74":0.01074,"75":0.04723,"76":0.01074,"77":0.07515,"78":0.02147,"79":0.02576,"80":0.04509,"81":0.0365,"83":0.073,"84":0.01288,"85":0.01288,"86":0.05797,"87":0.06656,"88":0.02791,"89":0.03006,"90":0.04079,"91":0.07944,"92":0.1052,"93":0.06226,"94":0.25549,"95":0.40149,"96":10.48165,"97":0.01074,"98":0.02147,_:"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 31 32 33 40 41 45 53 99"},F:{"42":0.00429,"64":0.00215,"73":0.01718,"77":0.00859,"79":0.01288,"80":0.02362,"81":0.27911,"82":0.63551,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 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},E:{"4":0,"12":0.01074,"13":0.01288,"14":0.05582,"15":0.03221,_:"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.00429,"12.1":0.00859,"13.1":0.00859,"14.1":0.09447,"15.1":1.0048,"15.2":0.27482},B:{"12":0.02147,"13":0.01288,"14":0.02791,"15":0.00859,"16":0.03865,"17":0.02791,"18":0.13311,"81":0.01503,"83":0.00429,"84":0.03006,"85":0.00215,"89":0.02791,"90":0.04938,"91":0.00859,"92":0.02576,"93":0.01503,"94":0.02147,"95":0.1052,"96":0.7901,_:"79 80 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01116,"8.1-8.4":0,"9.0-9.2":0.00223,"9.3":0.06136,"10.0-10.2":0.01339,"10.3":0.09037,"11.0-11.2":0.07921,"11.3-11.4":0.0781,"12.0-12.1":0.06025,"12.2-12.5":0.84904,"13.0-13.1":0.04128,"13.2":0.06694,"13.3":0.13723,"13.4-13.7":0.24099,"14.0-14.4":1.39349,"14.5-14.8":1.34886,"15.0-15.1":6.04589,"15.2":0.63148},P:{"4":1.33742,"5.0-5.4":0.42234,"6.2-6.4":0.32179,"7.2-7.4":0.73408,"8.2":0.03017,"9.2":0.37207,"10.1":0.07039,"11.1-11.2":0.40223,"12.0":0.11061,"13.0":0.32179,"14.0":0.44246,"15.0":0.82458},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00308,"4.2-4.3":0.01542,"4.4":0,"4.4.3-4.4.4":0.07573},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00215,"9":0.03865,"11":0.61834,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":2.4894},H:{"0":1.39029},L:{"0":59.2598},S:{"2.5":0},R:{_:"0"},M:{"0":0.1178},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js index b51419940559ab..68a4b9dbfc6858 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"2":0.00475,"52":0.01424,"78":0.03796,"82":0.00949,"86":0.01898,"89":0.00949,"91":0.00475,"92":0.00949,"93":0.22302,"94":0.96798,_:"3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 83 84 85 87 88 90 95 96 3.5 3.6"},D:{"34":0.00475,"38":0.01898,"49":0.01898,"65":0.00475,"70":0.00949,"75":0.17082,"76":0.1898,"77":0.09016,"78":0.32266,"79":0.18031,"80":0.00475,"81":0.02847,"83":0.01898,"84":0.00949,"85":0.03322,"86":0.01898,"87":0.18031,"88":0.02847,"89":0.17082,"90":0.04271,"91":0.03796,"92":0.09965,"93":0.42231,"94":2.84226,"95":16.35127,"96":7.74384,"97":0.03322,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 98 99"},F:{"64":0.01424,"78":0.00949,"79":0.00475,"80":0.43654,"81":0.16608,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00949,"13":0.01424,"14":0.00475,"15":0.00475,"16":0.00949,"17":0.01424,"18":0.02847,"80":0.04745,"84":0.06169,"85":0.00949,"88":0.00949,"89":0.01898,"90":0.00949,"91":0.01424,"92":0.01424,"93":0.07118,"94":0.22776,"95":7.27409,"96":1.96443,_:"79 81 83 86 87"},E:{"4":0,"13":0.01898,"14":0.17557,"15":0.66905,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00475,"9.1":0.17082,"11.1":0.00949,"12.1":0.03796,"13.1":0.21827,"14.1":1.58958,"15.1":0.84461},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02244,"6.0-6.1":0,"7.0-7.1":0.00561,"8.1-8.4":0.00898,"9.0-9.2":0,"9.3":0.0303,"10.0-10.2":0.00337,"10.3":0.06059,"11.0-11.2":0.01234,"11.3-11.4":0.02917,"12.0-12.1":0.00449,"12.2-12.5":0.52512,"13.0-13.1":0.00898,"13.2":0,"13.3":0.04713,"13.4-13.7":0.21095,"14.0-14.4":0.55317,"14.5-14.8":5.35893,"15.0-15.1":4.33786},P:{"4":0.13699,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.22129,"8.2":0.05025,"9.2":0.01054,"10.1":0.07203,"11.1-11.2":0.42151,"12.0":0.05269,"13.0":0.17914,"14.0":0.13699,"15.0":4.48908},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00146,"4.4":0,"4.4.3-4.4.4":0.01431},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11388,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":37.11825},S:{"2.5":0},R:{_:"0"},M:{"0":0.15765},Q:{"10.4":0},O:{"0":0.11561},H:{"0":0.11443}}; +module.exports={C:{"47":0.00406,"52":0.01217,"64":0.00406,"78":0.02028,"80":0.00406,"81":0.00811,"91":0.01217,"93":0.00811,"94":0.61636,"95":0.65691,"96":0.01622,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 87 88 89 90 92 97 3.5 3.6"},D:{"38":0.01622,"49":0.04461,"65":0.00811,"73":0.00406,"75":0.0365,"76":0.09732,"77":0.04866,"78":0.10949,"79":0.12165,"80":0.00811,"81":0.01217,"84":0.28791,"85":0.07299,"86":0.04461,"87":0.30818,"88":0.01622,"89":0.0811,"90":0.01622,"91":0.07299,"92":0.05272,"93":0.04866,"94":0.54337,"95":0.8921,"96":21.48745,"97":0.02839,"98":0.01217,_:"4 5 6 7 8 9 10 11 12 13 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 83 99"},F:{"79":0.01622,"81":0.2433,"82":0.26358,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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},E:{"4":0,"12":0.00406,"13":0.02433,"14":0.18653,"15":0.34062,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00811,"9.1":0.11354,"10.1":0.00811,"11.1":0.02433,"12.1":0.05677,"13.1":0.32035,"14.1":1.11918,"15.1":1.7031,"15.2":0.23519},B:{"12":0.00811,"14":0.00406,"15":0.02433,"16":0.00811,"17":0.00811,"18":0.04866,"84":0.02433,"89":0.00406,"92":0.01217,"93":0.01217,"94":0.00811,"95":0.12976,"96":5.83515,_:"13 79 80 81 83 85 86 87 88 90 91"},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.01044,"8.1-8.4":0.00447,"9.0-9.2":0.00298,"9.3":0.01193,"10.0-10.2":0.00895,"10.3":0.02983,"11.0-11.2":0.02535,"11.3-11.4":0.04026,"12.0-12.1":0.00895,"12.2-12.5":0.77993,"13.0-13.1":0.0179,"13.2":0,"13.3":0.09097,"13.4-13.7":0.23264,"14.0-14.4":0.56817,"14.5-14.8":4.38132,"15.0-15.1":8.1035,"15.2":0.58606},P:{"4":0.16875,"5.0-5.4":0.05273,"6.2-6.4":0.03103,"7.2-7.4":0.20039,"8.2":0.03017,"9.2":0.04137,"10.1":0.01044,"11.1-11.2":0.26367,"12.0":0.02109,"13.0":0.25312,"14.0":0.22148,"15.0":0.64335},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00626,"4.4":0,"4.4.3-4.4.4":0.02942},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00406,"9":0.00406,"11":0.10949,_:"6 7 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.20811},H:{"0":0.4616},L:{"0":40.6537},S:{"2.5":0},R:{_:"0"},M:{"0":0.29135},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js index 7adcdba1cf2ac5..20a993318f5588 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.01662,"89":0.01662,"91":0.02909,"93":0.17871,"94":0.79795,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"39":0.00831,"53":0.00416,"57":0.00831,"67":0.00831,"73":0.00831,"75":0.09974,"76":0.09559,"77":0.00831,"78":0.00831,"79":0.07481,"80":0.00831,"81":0.02078,"87":0.0374,"90":0.00831,"91":0.17455,"92":0.27845,"93":0.07896,"94":1.04316,"95":12.14383,"96":6.75766,"97":0.01247,"98":0.02909,_:"4 5 6 7 8 9 10 11 12 13 14 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 54 55 56 58 59 60 61 62 63 64 65 66 68 69 70 71 72 74 83 84 85 86 88 89 99"},F:{"80":0.30339,"81":0.14546,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.11637,"16":0.00831,"18":0.03325,"91":0.03325,"92":0.00831,"94":0.14546,"95":5.03707,"96":1.21355,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 90 93"},E:{"4":0,"13":0.00416,"14":0.22442,"15":4.06041,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.14546,"11.1":0.01247,"12.1":0.1704,"13.1":0.25352,"14.1":2.68893,"15.1":1.1055},G:{"8":0,"3.2":0,"4.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.06888,"10.0-10.2":0,"10.3":0.0574,"11.0-11.2":0.00191,"11.3-11.4":0.06314,"12.0-12.1":0.01913,"12.2-12.5":0.52807,"13.0-13.1":0.0287,"13.2":0,"13.3":0.11863,"13.4-13.7":0.18176,"14.0-14.4":1.52491,"14.5-14.8":9.24897,"15.0-15.1":7.2859},P:{"4":0.05217,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.16693,"8.2":0.05025,"9.2":0.0313,"10.1":0.07203,"11.1-11.2":0.3443,"12.0":0.05217,"13.0":0.32343,"14.0":0.17737,"15.0":4.08985},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.05403,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":36.57107},S:{"2.5":0},R:{_:"0"},M:{"0":0.0526},Q:{"10.4":0},O:{"0":0.06428},H:{"0":0.73032}}; +module.exports={C:{"78":0.01994,"83":0.05981,"87":0.01994,"93":0.0319,"94":0.25916,"95":0.63393,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 88 89 90 91 92 96 97 3.5 3.6"},D:{"38":0.00797,"41":0.01994,"42":0.00399,"53":0.01595,"57":0.01196,"65":0.00797,"66":0.00399,"75":0.04784,"76":0.06379,"77":0.01595,"79":0.0917,"81":0.00797,"83":0.00797,"84":0.00399,"85":0.00399,"86":0.01196,"87":0.04784,"88":0.01196,"89":0.01595,"90":0.00797,"91":0.08373,"92":0.48641,"93":0.06778,"94":0.35883,"95":0.31896,"96":17.68633,"97":0.01994,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 49 50 51 52 54 55 56 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 78 80 98 99"},F:{"75":0.02791,"81":0.09968,"82":0.307,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00399,"14":0.1236,"15":3.2215,_:"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.01196,"12.1":0.02392,"13.1":0.55818,"14.1":2.3324,"15.1":1.97755,"15.2":0.18739},B:{"16":0.00399,"18":0.02791,"84":0.04386,"89":0.00399,"90":0.01196,"93":0.00399,"94":0.07177,"95":1.14028,"96":4.98375,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 91 92"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00416,"8.1-8.4":0.01664,"9.0-9.2":0,"9.3":0.08944,"10.0-10.2":0,"10.3":0.03536,"11.0-11.2":0.00416,"11.3-11.4":0.04368,"12.0-12.1":0.00416,"12.2-12.5":0.36398,"13.0-13.1":0.06448,"13.2":0.00624,"13.3":0.07072,"13.4-13.7":0.62813,"14.0-14.4":2.64771,"14.5-14.8":4.64233,"15.0-15.1":11.26264,"15.2":0.91515},P:{"4":0.08355,"5.0-5.4":0.13445,"6.2-6.4":0.03103,"7.2-7.4":0.17754,"8.2":0.03017,"9.2":0.04137,"10.1":0.01044,"11.1-11.2":0.1671,"12.0":0.07311,"13.0":0.26109,"14.0":0.31331,"15.0":0.83549},I:{"0":0,"3":0,"4":0.00005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0001,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00587},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06778,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.05412},H:{"0":0.14232},L:{"0":38.19979},S:{"2.5":0},R:{_:"0"},M:{"0":0.15634},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js index 034d272dd1204f..63a2740e522bff 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:{"48":0.004,"52":0.02199,"66":0.002,"78":0.01999,"79":0.002,"80":0.006,"81":0.004,"82":0.01199,"84":0.006,"86":0.002,"87":0.008,"88":0.02399,"89":0.02199,"90":0.008,"91":0.01599,"92":0.01,"93":0.1939,"94":1.09745,"95":0.006,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 67 68 69 70 71 72 73 74 75 76 77 83 85 96 3.5 3.6"},D:{"34":0.002,"38":0.01199,"41":0.004,"47":0.004,"49":0.11794,"53":0.006,"55":0.006,"56":0.004,"58":0.004,"59":0.002,"60":0.006,"62":0.004,"63":0.01,"64":0.002,"65":0.01,"66":0.006,"68":0.01,"69":0.006,"70":0.008,"71":0.01799,"72":0.004,"73":0.006,"74":0.03198,"75":0.006,"76":0.02199,"77":0.008,"78":0.01599,"79":0.08796,"80":0.01799,"81":0.02199,"83":0.04198,"84":0.01999,"85":0.04998,"86":0.06797,"87":0.35182,"88":0.02199,"89":0.05597,"90":0.03198,"91":0.05597,"92":0.09195,"93":0.09795,"94":0.78361,"95":8.47176,"96":4.35782,"97":0.006,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 48 50 51 52 54 57 61 67 98 99"},F:{"28":0.002,"36":0.004,"40":0.006,"46":0.004,"58":0.004,"71":0.006,"79":0.008,"80":0.34583,"81":0.11794,_:"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 60 62 63 64 65 66 67 68 69 70 72 73 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:{"17":0.008,"18":0.04598,"84":0.01,"86":0.006,"87":0.008,"89":0.006,"91":0.002,"92":0.006,"93":0.002,"94":0.01999,"95":0.6057,"96":0.17991,_:"12 13 14 15 16 79 80 81 83 85 88 90"},E:{"4":0,"13":0.01199,"14":0.06397,"15":0.09995,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.006,"11.1":0.006,"12.1":0.01799,"13.1":0.06197,"14.1":0.24188,"15.1":0.49575},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.03543,"7.0-7.1":0.04831,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10951,"10.0-10.2":0.0161,"10.3":0.16749,"11.0-11.2":0.06442,"11.3-11.4":0.13206,"12.0-12.1":0.0612,"12.2-12.5":2.48975,"13.0-13.1":0.0612,"13.2":0.05798,"13.3":0.25767,"13.4-13.7":0.89541,"14.0-14.4":2.40601,"14.5-14.8":14.88374,"15.0-15.1":10.50977},P:{"4":0.22326,"5.0-5.4":0.33166,"6.2-6.4":0.24121,"7.2-7.4":0.10148,"8.2":0.05025,"9.2":0.0203,"10.1":0.0981,"11.1-11.2":0.22326,"12.0":0.05074,"13.0":0.2537,"14.0":0.19282,"15.0":2.36452},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00137,"4.1":0.00457,"4.2-4.3":0.00549,"4.4":0,"4.4.3-4.4.4":0.03658},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.006,"9":0.008,"11":0.05597,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":44.69902},S:{"2.5":0},R:{_:"0"},M:{"0":0.13602},Q:{"10.4":0},O:{"0":0.04801},H:{"0":0.09847}}; +module.exports={C:{"48":0.00561,"52":0.02058,"66":0.05426,"68":0.00561,"72":0.00187,"76":0.00374,"78":0.0131,"79":0.00561,"80":0.01684,"81":0.0131,"82":0.00187,"83":0.00187,"84":0.00374,"87":0.00561,"88":0.03555,"89":0.0131,"90":0.00374,"91":0.01123,"92":0.00374,"93":0.00374,"94":0.35175,"95":0.78582,"96":0.00561,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 67 69 70 71 73 74 75 77 85 86 97 3.5 3.6"},D:{"34":0.00187,"38":0.0131,"47":0.00374,"48":0.00374,"49":0.05239,"53":0.00374,"55":0.00374,"56":0.00374,"58":0.00374,"60":0.00187,"63":0.0131,"65":0.00936,"66":0.00748,"67":0.00374,"68":0.00748,"69":0.0131,"70":0.00374,"71":0.01123,"72":0.00561,"73":0.00936,"74":0.02432,"75":0.00374,"76":0.02432,"77":0.00748,"78":0.01497,"79":0.05987,"80":0.02058,"81":0.02619,"83":0.03181,"84":0.0449,"85":0.05613,"86":0.0711,"87":0.11413,"88":0.02619,"89":0.02994,"90":0.02058,"91":0.04116,"92":0.0842,"93":0.31246,"94":0.27691,"95":0.23575,"96":11.7293,"97":0.00561,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 57 59 61 62 64 98 99"},F:{"28":0.00187,"36":0.01123,"40":0.00561,"46":0.00374,"55":0.00187,"68":0.00187,"70":0.00374,"71":0.0131,"79":0.00561,"80":0.00936,"81":0.13097,"82":0.174,_:"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 56 57 58 60 62 63 64 65 66 67 69 72 73 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},E:{"4":0,"10":0.00374,"12":0.00187,"13":0.02058,"14":0.04865,"15":0.06174,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00374,"11.1":0.00936,"12.1":0.01684,"13.1":0.04678,"14.1":0.19458,"15.1":0.51453,"15.2":0.13471},B:{"17":0.01123,"18":0.03181,"84":0.00561,"85":0.00187,"86":0.00187,"89":0.00748,"91":0.00561,"92":0.00374,"94":0.00374,"95":0.02058,"96":0.78395,_:"12 13 14 15 16 79 80 81 83 87 88 90 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.05447,"7.0-7.1":0.03064,"8.1-8.4":0,"9.0-9.2":0.00681,"9.3":0.0851,"10.0-10.2":0.01362,"10.3":0.13617,"11.0-11.2":0.06127,"11.3-11.4":0.10893,"12.0-12.1":0.06808,"12.2-12.5":2.15824,"13.0-13.1":0.05447,"13.2":0.05787,"13.3":0.22808,"13.4-13.7":0.77274,"14.0-14.4":2.17185,"14.5-14.8":11.38011,"15.0-15.1":15.53319,"15.2":1.10635},P:{"4":0.27703,"5.0-5.4":0.42234,"6.2-6.4":0.32179,"7.2-7.4":0.11286,"8.2":0.03017,"9.2":0.01026,"10.1":0.07039,"11.1-11.2":0.15391,"12.0":0.07182,"13.0":0.19495,"14.0":0.15391,"15.0":0.34885},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.00426,"4.4":0,"4.4.3-4.4.4":0.03406},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00936,"9":0.01123,"11":0.03742,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.02439},H:{"0":0.09235},L:{"0":44.97656},S:{"2.5":0},R:{_:"0"},M:{"0":0.12194},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js index 21a26b717e0346..0cf08dd5887dc1 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":38.42635,"56":0.0141,"78":0.02116,"82":0.0141,"83":0.00705,"88":0.02116,"91":0.00705,"92":0.00705,"93":0.13399,"94":0.83214,"95":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 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 84 85 86 87 89 90 96 3.5 3.6"},D:{"22":0.0141,"49":0.14104,"51":0.03526,"59":0.0141,"60":0.00705,"63":0.02821,"67":0.0141,"71":0.00705,"73":0.0141,"75":0.0141,"76":0.02116,"77":0.00705,"78":0.00705,"79":0.02821,"80":0.02116,"81":0.04231,"83":0.02116,"84":0.0141,"85":0.0141,"86":0.03526,"87":0.26092,"88":0.08462,"89":0.04231,"90":0.04936,"91":0.08462,"92":0.22566,"93":0.14809,"94":0.87445,"95":14.66111,"96":9.04066,_:"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 52 53 54 55 56 57 58 61 62 64 65 66 68 69 70 72 74 97 98 99"},F:{"46":0.02821,"77":0.00705,"78":0.03526,"79":0.0141,"80":0.45838,"81":0.1904,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00705,"87":0.0141,"92":0.00705,"94":0.03526,"95":0.57826,"96":0.28208,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 89 90 91 93"},E:{"4":0,"13":0.0141,"14":0.15514,"15":0.18335,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05642,"11.1":0.00705,"12.1":0.07757,"13.1":0.11988,"14.1":0.38786,"15.1":0.45838},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00411,"6.0-6.1":0.00137,"7.0-7.1":0.01849,"8.1-8.4":0,"9.0-9.2":0.00137,"9.3":0.08219,"10.0-10.2":0.00411,"10.3":0.06987,"11.0-11.2":0.01575,"11.3-11.4":0.02671,"12.0-12.1":0.02534,"12.2-12.5":0.53906,"13.0-13.1":0.01986,"13.2":0.01027,"13.3":0.06644,"13.4-13.7":0.22741,"14.0-14.4":0.64454,"14.5-14.8":2.48092,"15.0-15.1":2.61037},P:{"4":0.05329,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.06395,"8.2":0.05025,"9.2":0.02078,"10.1":0.07203,"11.1-11.2":0.08527,"12.0":0.01066,"13.0":0.08527,"14.0":0.09592,"15.0":1.06582},I:{"0":0,"3":0,"4":0.00032,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00064,"4.2-4.3":0.00207,"4.4":0,"4.4.3-4.4.4":0.02056},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00705,"9":0.02821,"11":0.08462,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":21.24201},S:{"2.5":0},R:{_:"0"},M:{"0":0.05306},Q:{"10.4":0},O:{"0":0.0796},H:{"0":0.22607}}; +module.exports={C:{"52":38.96803,"56":0.00719,"78":0.02157,"83":0.02157,"88":0.01438,"89":0.00719,"94":0.25888,"95":0.57528,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 91 92 93 96 97 3.5 3.6"},D:{"22":0.01438,"49":0.13663,"51":0.02157,"60":0.00719,"63":0.02157,"67":0.00719,"69":0.01438,"70":0.01438,"72":0.00719,"73":0.05034,"76":0.02876,"78":0.01438,"79":0.01438,"80":0.03596,"81":0.01438,"83":0.01438,"84":0.03596,"85":0.02876,"86":0.02876,"87":0.3164,"88":0.04315,"89":0.02157,"90":0.05753,"91":0.03596,"92":0.16539,"93":0.05034,"94":0.54652,"95":0.48899,"96":24.3703,_:"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 52 53 54 55 56 57 58 59 61 62 64 65 66 68 71 74 75 77 97 98 99"},F:{"28":0.00719,"80":0.01438,"81":0.28764,"82":0.43865,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01438,"14":0.09348,"15":0.10787,_:"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.0791,"12.1":0.02157,"13.1":0.11506,"14.1":0.3164,"15.1":0.40989,"15.2":0.05753},B:{"87":0.00719,"89":0.01438,"94":0.02157,"95":0.01438,"96":0.92764,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 88 90 91 92 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00455,"6.0-6.1":0,"7.0-7.1":0.00781,"8.1-8.4":0,"9.0-9.2":0.00195,"9.3":0.10473,"10.0-10.2":0.0026,"10.3":0.0605,"11.0-11.2":0.01886,"11.3-11.4":0.02537,"12.0-12.1":0.01561,"12.2-12.5":0.44689,"13.0-13.1":0.01496,"13.2":0.01301,"13.3":0.04749,"13.4-13.7":0.14376,"14.0-14.4":0.60886,"14.5-14.8":1.7921,"15.0-15.1":2.90249,"15.2":0.28947},P:{"4":0.03282,"5.0-5.4":0.05273,"6.2-6.4":0.03103,"7.2-7.4":0.06563,"8.2":0.03017,"9.2":0.01036,"10.1":0.01044,"11.1-11.2":0.05469,"12.0":0.01094,"13.0":0.06563,"14.0":0.08751,"15.0":0.15314},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.00167,"4.4":0,"4.4.3-4.4.4":0.01211},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06472,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.08702},H:{"0":0.2126},L:{"0":20.85006},S:{"2.5":0.01404},R:{_:"0"},M:{"0":0.05333},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js index 9fa0095489f561..6729d40cf2af07 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:{"41":0.01385,"43":0.00923,"45":0.02308,"52":0.00923,"54":0.00923,"56":0.01846,"65":0.00462,"72":0.01385,"76":0.00923,"78":0.04154,"84":0.01846,"88":0.00462,"89":0.01385,"91":0.05077,"92":0.03231,"93":0.22614,"94":1.15375,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 77 79 80 81 82 83 85 86 87 90 95 96 3.5 3.6"},D:{"11":0.00462,"25":0.00923,"26":0.00923,"33":0.02308,"34":0.01385,"38":0.00923,"40":0.01385,"42":0.01385,"43":0.07846,"44":0.00462,"46":0.01846,"47":0.00462,"48":0.04154,"49":0.04154,"50":0.00462,"55":0.00923,"56":0.00462,"57":0.02308,"58":0.01846,"59":0.00923,"60":0.01385,"61":0.03692,"62":0.00462,"63":0.06461,"65":0.06923,"66":0.00462,"67":0.02308,"68":0.00923,"69":0.06461,"70":0.00923,"71":0.00923,"72":0.01385,"73":0.01846,"74":0.01385,"75":0.02769,"76":0.00923,"77":0.01385,"78":0.06461,"79":0.13384,"80":0.01846,"81":0.05538,"83":0.01846,"84":0.02308,"85":0.01385,"86":0.1523,"87":0.15691,"88":0.03692,"89":0.14307,"90":0.10615,"91":0.63687,"92":0.2769,"93":0.44304,"94":0.54457,"95":12.04977,"96":9.00848,"97":0.06461,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 35 36 37 39 41 45 51 52 53 54 64 98 99"},F:{"42":0.00923,"71":0.00923,"74":0.00462,"75":0.00462,"77":0.00923,"78":0.00923,"79":0.00923,"80":1.48142,"81":0.70148,_:"9 11 12 15 16 17 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 72 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.09692,"13":0.04615,"14":0.04615,"15":0.01846,"16":0.04615,"17":0.0923,"18":0.41997,"84":0.05077,"85":0.01385,"86":0.05538,"88":0.00462,"89":0.05538,"90":0.01846,"91":0.04615,"92":0.06,"93":0.03231,"94":0.10615,"95":3.06898,"96":1.28297,_:"79 80 81 83 87"},E:{"4":0,"13":0.02769,"14":0.05538,"15":0.11999,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00923,"11.1":0.01385,"12.1":0.04615,"13.1":0.06,"14.1":0.20768,"15.1":0.28152},G:{"8":0.00089,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00974,"6.0-6.1":0.00177,"7.0-7.1":0.10362,"8.1-8.4":0.03011,"9.0-9.2":0.00797,"9.3":0.66248,"10.0-10.2":0.03543,"10.3":0.68108,"11.0-11.2":0.06288,"11.3-11.4":0.07262,"12.0-12.1":0.02568,"12.2-12.5":1.63849,"13.0-13.1":0.01417,"13.2":0.01329,"13.3":0.09742,"13.4-13.7":0.30998,"14.0-14.4":0.8343,"14.5-14.8":2.12206,"15.0-15.1":2.13269},P:{"4":1.12159,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.31898,"8.2":0.05025,"9.2":0.04116,"10.1":0.07203,"11.1-11.2":0.11319,"12.0":0.05145,"13.0":0.16464,"14.0":0.26754,"15.0":0.83348},I:{"0":0,"3":0,"4":0.002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01972,"4.2-4.3":0.09257,"4.4":0,"4.4.3-4.4.4":0.12799},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.50765,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.08614},N:{"10":0.01155,_:"11"},L:{"0":47.73254},S:{"2.5":0},R:{_:"0"},M:{"0":0.20459},Q:{"10.4":0.02154},O:{"0":0.51148},H:{"0":2.59958}}; +module.exports={C:{"40":0.01377,"43":0.00918,"46":0.00918,"52":0.02296,"60":0.00918,"72":0.00918,"78":0.02296,"83":0.00459,"84":0.01836,"87":0.04591,"89":0.00918,"91":0.04132,"92":0.01377,"93":0.01377,"94":0.40401,"95":0.67947,"96":0.00459,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 85 86 88 90 97 3.5 3.6"},D:{"11":0.00459,"25":0.01377,"26":0.00918,"29":0.01377,"33":0.01836,"36":0.00918,"38":0.00459,"40":0.01836,"42":0.01836,"43":0.09641,"46":0.01836,"47":0.00918,"48":0.04591,"49":0.02755,"53":0.00459,"55":0.00918,"57":0.01836,"58":0.02755,"59":0.03214,"60":0.00918,"61":0.02296,"62":0.01836,"63":0.05968,"64":0.00459,"65":0.06427,"67":0.00459,"68":0.00459,"69":0.0505,"70":0.00459,"71":0.01836,"72":0.00918,"73":0.00918,"74":0.03673,"75":0.03214,"76":0.00918,"77":0.01836,"78":0.08723,"79":0.11478,"80":0.01377,"81":0.06427,"83":0.02755,"84":0.04132,"85":0.01377,"86":0.10559,"87":0.14691,"88":0.03673,"89":0.04132,"90":0.05968,"91":0.26628,"92":0.19741,"93":0.23414,"94":0.2066,"95":0.33973,"96":21.22878,"97":0.08723,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 30 31 32 34 35 37 39 41 44 45 50 51 52 54 56 66 98 99"},F:{"37":0.00459,"54":0.00459,"71":0.02755,"79":0.01377,"80":0.03214,"81":0.72997,"82":1.28548,_:"9 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 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 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},E:{"4":0,"13":0.00918,"14":0.04591,"15":0.04132,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00918,"11.1":0.00918,"12.1":0.02296,"13.1":0.05509,"14.1":0.1515,"15.1":0.55092,"15.2":0.04591},B:{"12":0.03214,"13":0.02296,"14":0.08723,"15":0.01836,"16":0.01836,"17":0.07346,"18":0.33973,"84":0.04132,"85":0.01377,"86":0.00918,"89":0.101,"90":0.00918,"91":0.02755,"92":0.02296,"93":0.01377,"94":0.02755,"95":0.13773,"96":4.41195,_:"79 80 81 83 87 88"},G:{"8":0.00181,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00993,"6.0-6.1":0.00361,"7.0-7.1":0.15618,"8.1-8.4":0.0659,"9.0-9.2":0.00993,"9.3":0.66443,"10.0-10.2":0.02167,"10.3":0.7177,"11.0-11.2":0.07132,"11.3-11.4":0.04424,"12.0-12.1":0.03069,"12.2-12.5":1.75768,"13.0-13.1":0.01264,"13.2":0.00271,"13.3":0.07042,"13.4-13.7":0.24104,"14.0-14.4":0.85762,"14.5-14.8":1.53741,"15.0-15.1":2.45371,"15.2":0.29159},P:{"4":1.09632,"5.0-5.4":0.13445,"6.2-6.4":0.03103,"7.2-7.4":0.51713,"8.2":0.03017,"9.2":0.04137,"10.1":0.09308,"11.1-11.2":0.05171,"12.0":0.04137,"13.0":0.20685,"14.0":0.27925,"15.0":0.38268},I:{"0":0,"3":0,"4":0.00115,"2.1":0,"2.2":0,"2.3":0.00038,"4.1":0.02048,"4.2-4.3":0.09687,"4.4":0,"4.4.3-4.4.4":0.17861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00855,"11":0.54696,_:"6 7 8 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0.05409},O:{"0":0.62204},H:{"0":2.21223},L:{"0":48.93299},S:{"2.5":0},R:{_:"0"},M:{"0":0.13523},Q:{"10.4":0.02164}}; 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 e46f74883e7714..329f41fb685e15 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:{"47":0.00424,"52":0.09332,"53":0.00424,"56":0.00424,"59":0.01273,"60":0.00424,"65":0.00424,"66":0.00424,"68":0.01273,"69":0.00424,"72":0.00848,"73":0.00848,"78":0.02969,"79":0.00848,"80":0.00424,"81":0.00424,"82":0.00424,"84":0.01697,"85":0.00848,"86":0.02121,"87":0.00848,"88":0.02969,"89":0.01697,"90":0.01697,"91":0.04242,"92":0.01697,"93":0.263,"94":1.45925,"95":0.00848,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 57 58 61 62 63 64 67 70 71 74 75 76 77 83 96 3.5 3.6"},D:{"34":0.00848,"38":0.02121,"44":0.00424,"47":0.00424,"49":0.28846,"55":0.00848,"57":0.00848,"58":0.00848,"61":0.02969,"63":0.00848,"65":0.00848,"66":0.03818,"67":0.00424,"68":0.00424,"69":0.00848,"70":0.00848,"71":0.00848,"72":0.00848,"73":0.00848,"74":0.01273,"75":0.01273,"76":0.01273,"77":0.01697,"78":0.01697,"79":0.04242,"80":0.02545,"81":0.03818,"83":0.02121,"84":0.02545,"85":0.03394,"86":0.04242,"87":0.15695,"88":0.02969,"89":0.05515,"90":0.0509,"91":0.13574,"92":0.22907,"93":0.19513,"94":0.77204,"95":20.20889,"96":11.41098,"97":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 35 36 37 39 40 41 42 43 45 46 48 50 51 52 53 54 56 59 60 62 64 98 99"},F:{"36":0.00424,"78":0.00424,"79":0.00848,"80":1.25563,"81":0.50056,_:"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 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,"15":0.00424,"17":0.01273,"18":0.01697,"89":0.00848,"90":0.00424,"91":0.00848,"92":0.01273,"93":0.00848,"94":0.03818,"95":1.4338,"96":0.49207,_:"12 13 16 79 80 81 83 84 85 86 87 88"},E:{"4":0,"12":0.00424,"13":0.02121,"14":0.0509,"15":0.1315,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02545,"11.1":0.01697,"12.1":0.01697,"13.1":0.0806,"14.1":0.25452,"15.1":0.18665},G:{"8":0,"3.2":0.00076,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01369,"6.0-6.1":0.00076,"7.0-7.1":0.00456,"8.1-8.4":0.00228,"9.0-9.2":0.00152,"9.3":0.03193,"10.0-10.2":0.00114,"10.3":0.02737,"11.0-11.2":0.00722,"11.3-11.4":0.03763,"12.0-12.1":0.00988,"12.2-12.5":0.2125,"13.0-13.1":0.0095,"13.2":0.00342,"13.3":0.02319,"13.4-13.7":0.08895,"14.0-14.4":0.20794,"14.5-14.8":1.79427,"15.0-15.1":1.32175},P:{"4":0.14549,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.2702,"8.2":0.05025,"9.2":0.02078,"10.1":0.07203,"11.1-11.2":0.11432,"12.0":0.03118,"13.0":0.18706,"14.0":0.17667,"15.0":1.933},I:{"0":0,"3":0,"4":0.00028,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00193,"4.2-4.3":0.00276,"4.4":0,"4.4.3-4.4.4":0.02957},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00884,"11":0.20326,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":51.38784},S:{"2.5":0},R:{_:"0"},M:{"0":0.13243},Q:{"10.4":0},O:{"0":0.03455},H:{"0":0.2017}}; +module.exports={C:{"47":0.0042,"52":0.07971,"53":0.0042,"59":0.01259,"65":0.00839,"66":0.0042,"68":0.01259,"72":0.0042,"73":0.00839,"78":0.02937,"79":0.0042,"81":0.0042,"84":0.00839,"85":0.00839,"86":0.03356,"87":0.0042,"88":0.02517,"89":0.01678,"90":0.02098,"91":0.03776,"92":0.00839,"93":0.01678,"94":0.55374,"95":1.05714,"96":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 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 54 55 56 57 58 60 61 62 63 64 67 69 70 71 74 75 76 77 80 82 83 97 3.5 3.6"},D:{"22":0.0042,"34":0.0042,"38":0.01678,"47":0.0042,"49":0.24751,"51":0.0042,"55":0.00839,"57":0.0042,"58":0.00839,"61":0.01259,"63":0.01259,"65":0.00839,"66":0.04615,"67":0.0042,"69":0.00839,"70":0.00839,"71":0.00839,"72":0.0042,"73":0.00839,"74":0.01259,"75":0.01259,"76":0.01259,"77":0.01259,"78":0.02098,"79":0.03776,"80":0.02098,"81":0.03356,"83":0.02098,"84":0.02517,"85":0.02517,"86":0.04615,"87":0.0881,"88":0.02517,"89":0.05034,"90":0.03776,"91":0.10068,"92":0.1678,"93":0.11327,"94":0.24331,"95":0.49921,"96":29.93133,"97":0.00839,_:"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 53 54 56 59 60 62 64 68 98 99"},F:{"36":0.00839,"80":0.00839,"81":1.13685,"82":0.78447,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01259,"14":0.04195,"15":0.06293,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02517,"11.1":0.01678,"12.1":0.01259,"13.1":0.07132,"14.1":0.19717,"15.1":0.24751,"15.2":0.03356},B:{"14":0.00839,"15":0.0042,"17":0.00839,"18":0.01678,"89":0.00839,"91":0.0042,"92":0.00839,"93":0.0042,"94":0.00839,"95":0.04615,"96":1.83322,_:"12 13 16 79 80 81 83 84 85 86 87 88 90"},G:{"8":0,"3.2":0.00081,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01172,"6.0-6.1":0.00081,"7.0-7.1":0.00485,"8.1-8.4":0.00323,"9.0-9.2":0.00162,"9.3":0.0307,"10.0-10.2":0.00162,"10.3":0.02586,"11.0-11.2":0.00687,"11.3-11.4":0.04202,"12.0-12.1":0.00929,"12.2-12.5":0.21574,"13.0-13.1":0.00889,"13.2":0.00323,"13.3":0.0202,"13.4-13.7":0.0812,"14.0-14.4":0.18665,"14.5-14.8":1.1522,"15.0-15.1":2.07534,"15.2":0.15675},P:{"4":0.1451,"5.0-5.4":0.05273,"6.2-6.4":0.03103,"7.2-7.4":0.26947,"8.2":0.03017,"9.2":0.01036,"10.1":0.01044,"11.1-11.2":0.10364,"12.0":0.03109,"13.0":0.17619,"14.0":0.15546,"15.0":0.33166},I:{"0":0,"3":0,"4":0.00024,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00242,"4.4":0,"4.4.3-4.4.4":0.02491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00428,"11":0.20531,_:"6 7 8 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.03482},H:{"0":0.2143},L:{"0":53.24161},S:{"2.5":0},R:{_:"0"},M:{"0":0.13349},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js index b29b6067d01436..e4afbd62d3b94b 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:{"52":0.00615,"57":0.03075,"70":0.0123,"78":0.01845,"92":0.12913,"93":0.09224,"94":0.34434,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 95 96 3.5 3.6"},D:{"37":0.00615,"49":0.12298,"65":0.00615,"68":0.03689,"73":0.0123,"75":0.24596,"76":0.28285,"77":0.0123,"79":0.59645,"80":0.05534,"81":0.0123,"84":0.0123,"85":0.08609,"86":0.03075,"87":0.07379,"88":0.19677,"89":0.08609,"90":0.03689,"91":0.18447,"92":0.43043,"93":1.42657,"94":24.11023,"95":9.27269,"96":4.54411,"97":0.00615,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 74 78 83 98 99"},F:{"80":0.41813,"81":0.15987,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00615,"16":0.0246,"17":0.00615,"18":0.0123,"85":0.03075,"90":0.0123,"92":0.00615,"93":0.07994,"94":0.25211,"95":4.48877,"96":1.49421,_:"12 13 14 79 80 81 83 84 86 87 88 89 91"},E:{"4":0,"8":0.00615,"13":0.0123,"14":0.22751,"15":0.27671,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0246,"11.1":0.0123,"12.1":0.01845,"13.1":0.08609,"14.1":1.10067,"15.1":6.58558},G:{"8":0.03185,"3.2":0,"4.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.07324,"9.0-9.2":0.01274,"9.3":1.90434,"10.0-10.2":0.00318,"10.3":0.02388,"11.0-11.2":0.04777,"11.3-11.4":0.0828,"12.0-12.1":0,"12.2-12.5":0.41239,"13.0-13.1":0.02866,"13.2":0.00478,"13.3":0.01751,"13.4-13.7":0.14012,"14.0-14.4":0.44742,"14.5-14.8":2.56672,"15.0-15.1":10.11878},P:{"4":0.04466,"5.0-5.4":0.01033,"6.2-6.4":0.02065,"7.2-7.4":0.06699,"8.2":0.05025,"9.2":0.0335,"10.1":0.03098,"11.1-11.2":0.36846,"12.0":0.04466,"13.0":0.04466,"14.0":0.04466,"15.0":0.98255},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.79322,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":22.39462},S:{"2.5":0.05006},R:{_:"0"},M:{"0":0.0077},Q:{"10.4":0.03851},O:{"0":0.04621},H:{"0":0.09844}}; +module.exports={C:{"2":0.01877,"48":0.00938,"52":0.01877,"60":0.00938,"64":0.00469,"78":0.00938,"91":0.00938,"92":0.00938,"94":0.2909,"95":0.21583,_:"3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 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 96 97 3.5 3.6"},D:{"23":0.01408,"49":0.00938,"58":0.00469,"59":0.00469,"67":0.00469,"68":0.00938,"70":0.00938,"72":0.02346,"73":0.02815,"75":0.03284,"76":0.061,"79":0.22522,"80":0.02815,"81":0.01408,"83":0.07976,"84":0.02346,"85":0.13138,"86":0.01408,"87":0.02815,"88":0.03754,"89":0.02815,"90":0.03284,"91":0.09384,"92":0.22991,"93":0.21583,"94":6.977,"95":0.49735,"96":13.61149,"97":0.02346,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 69 71 74 77 78 98 99"},F:{"80":0.00938,"81":0.34252,"82":0.21114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.01877,"13":0.14545,"14":0.16422,"15":0.14076,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00938,"10.1":0.00938,"11.1":0.06569,"12.1":0.02815,"13.1":0.0563,"14.1":0.60996,"15.1":11.99275,"15.2":1.3466},B:{"17":0.00469,"18":0.01408,"85":0.01877,"90":0.12199,"93":0.00469,"94":0.01877,"95":0.15014,"96":4.65916,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 92"},G:{"8":0.017,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0136,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.49314,"9.0-9.2":0,"9.3":1.0645,"10.0-10.2":0.03401,"10.3":0.0068,"11.0-11.2":0.04761,"11.3-11.4":0.05442,"12.0-12.1":0,"12.2-12.5":0.82643,"13.0-13.1":0.0034,"13.2":0.0034,"13.3":0.0102,"13.4-13.7":0.17685,"14.0-14.4":0.50674,"14.5-14.8":2.8942,"15.0-15.1":25.5887,"15.2":2.25142},P:{"4":0.1048,"5.0-5.4":0.42234,"6.2-6.4":0.01057,"7.2-7.4":0.09432,"8.2":0.03017,"9.2":0.0524,"10.1":0.02115,"11.1-11.2":0.19912,"12.0":0.01048,"13.0":0.1572,"14.0":0.02096,"15.0":0.24104},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.32844,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.12739},H:{"0":0.17086},L:{"0":19.74464},S:{"2.5":0.01592},R:{_:"0"},M:{"0":0.03716},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js index 97b4c295b3972b..9e2a07e21840aa 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.01178,"52":0.06478,"60":0.053,"61":0.01178,"62":0.00589,"66":0.01178,"68":0.01178,"72":0.02945,"74":0.00589,"78":0.21789,"81":0.00589,"82":0.01178,"83":0.00589,"84":0.00589,"85":0.01178,"86":0.00589,"87":0.01767,"88":0.04122,"89":0.03533,"90":0.02945,"91":0.27089,"92":0.09422,"93":1.04235,"94":6.048,"95":0.01178,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 63 64 65 67 69 70 71 73 75 76 77 79 80 96 3.5 3.6"},D:{"34":0.01178,"36":0.04122,"38":0.02356,"47":0.00589,"49":0.08834,"53":0.00589,"64":0.18256,"65":0.01178,"67":0.01178,"68":0.01178,"70":0.19434,"72":0.19434,"75":0.01767,"76":0.01178,"77":0.01178,"78":0.01178,"79":0.46523,"80":0.20612,"81":0.01178,"83":0.02945,"84":0.05889,"85":0.04122,"86":0.053,"87":0.24734,"88":0.07656,"89":0.06478,"90":0.05889,"91":5.45321,"92":0.20023,"93":0.159,"94":0.98346,"95":14.3456,"96":9.76985,"97":0.00589,_:"4 5 6 7 8 9 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 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 66 69 71 73 74 98 99"},F:{"46":0.00589,"78":0.00589,"79":0.02356,"80":2.0906,"81":1.0718,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00589,"17":0.01178,"18":0.03533,"84":0.01767,"85":0.01178,"86":0.00589,"88":0.01178,"89":0.02945,"90":0.01178,"91":0.01178,"92":0.04122,"93":0.04711,"94":0.27678,"95":4.65231,"96":2.11415,_:"12 13 14 15 79 80 81 83 87"},E:{"4":0,"8":0.01178,"12":0.01178,"13":0.08245,"14":0.54179,"15":0.81268,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01178,"10.1":0.02945,"11.1":0.07067,"12.1":0.09422,"13.1":0.42401,"14.1":2.04348,"15.1":1.31914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00324,"8.1-8.4":0.01294,"9.0-9.2":0.00162,"9.3":0.10841,"10.0-10.2":0.00485,"10.3":0.0809,"11.0-11.2":0.02427,"11.3-11.4":0.0356,"12.0-12.1":0.0356,"12.2-12.5":0.41097,"13.0-13.1":0.03236,"13.2":0.02265,"13.3":0.09061,"13.4-13.7":0.22167,"14.0-14.4":1.04523,"14.5-14.8":7.83924,"15.0-15.1":6.19858},P:{"4":0.15801,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.24512,"8.2":0.05025,"9.2":0.02185,"10.1":0.02043,"11.1-11.2":0.07374,"12.0":0.02107,"13.0":0.12641,"14.0":0.12641,"15.0":3.14965},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.00237,"4.4":0,"4.4.3-4.4.4":0.03414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01397,"11":0.47482,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":20.84838},S:{"2.5":0},R:{_:"0"},M:{"0":0.48498},Q:{"10.4":0.00411},O:{"0":0.04932},H:{"0":0.27627}}; +module.exports={C:{"48":0.01084,"52":0.06504,"56":0.00542,"60":0.04878,"61":0.00542,"62":0.00542,"66":0.01084,"68":0.00542,"72":0.01626,"78":0.14092,"81":0.00542,"82":0.00542,"83":0.01084,"84":0.07588,"85":0.01084,"86":0.00542,"87":0.01084,"88":0.03794,"89":0.0271,"90":0.02168,"91":0.31978,"92":0.0542,"93":0.05962,"94":2.439,"95":4.51486,"96":0.01084,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 79 80 97 3.5 3.6"},D:{"34":0.01084,"36":0.03794,"38":0.02168,"47":0.00542,"49":0.0542,"53":0.00542,"60":0.01084,"64":0.20596,"65":0.01626,"67":0.01626,"68":0.00542,"69":0.01084,"70":0.2168,"72":0.2168,"74":0.01084,"75":0.01084,"76":0.00542,"77":0.01084,"78":0.01084,"79":0.52032,"80":0.23848,"81":0.01626,"83":0.03252,"84":0.0542,"85":0.03794,"86":0.04336,"87":0.22764,"88":0.03252,"89":0.0542,"90":0.0542,"91":1.73982,"92":0.09214,"93":0.42276,"94":0.28726,"95":0.5691,"96":22.37918,"97":0.02168,_:"4 5 6 7 8 9 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 43 44 45 46 48 50 51 52 54 55 56 57 58 59 61 62 63 66 71 73 98 99"},F:{"46":0.01084,"75":0.00542,"76":0.00542,"77":0.00542,"78":0.00542,"79":0.01084,"80":0.0271,"81":1.66936,"82":1.33332,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00542},E:{"4":0,"8":0.01626,"11":0.00542,"12":0.01084,"13":0.09214,"14":0.44444,"15":0.4065,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01084,"10.1":0.01626,"11.1":0.05962,"12.1":0.08672,"13.1":0.4336,"14.1":1.62058,"15.1":2.13548,"15.2":0.31436},B:{"16":0.01084,"17":0.01084,"18":0.04336,"83":0.00542,"84":0.01626,"85":0.00542,"86":0.00542,"87":0.00542,"88":0.01084,"89":0.01084,"90":0.01084,"91":0.01626,"92":0.03252,"93":0.02168,"94":0.04878,"95":0.27642,"96":6.95386,_:"12 13 14 15 79 80 81"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00361,"8.1-8.4":0.01805,"9.0-9.2":0.00361,"9.3":0.09206,"10.0-10.2":0.00542,"10.3":0.08484,"11.0-11.2":0.02708,"11.3-11.4":0.0343,"12.0-12.1":0.02708,"12.2-12.5":0.46932,"13.0-13.1":0.0361,"13.2":0.02347,"13.3":0.09025,"13.4-13.7":0.24188,"14.0-14.4":0.93684,"14.5-14.8":5.35387,"15.0-15.1":9.71675,"15.2":0.87546},P:{"4":0.23094,"5.0-5.4":0.01085,"6.2-6.4":0.03103,"7.2-7.4":0.24517,"8.2":0.03017,"9.2":0.0105,"10.1":0.01022,"11.1-11.2":0.07348,"12.0":0.02099,"13.0":0.12597,"14.0":0.12597,"15.0":0.3989},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00244,"4.2-4.3":0.00147,"4.4":0,"4.4.3-4.4.4":0.03274},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01235,"11":0.47545,_:"6 7 8 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.05497},H:{"0":0.32961},L:{"0":23.135},S:{"2.5":0},R:{_:"0"},M:{"0":0.58637},Q:{"10.4":0.01374}}; 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 044df523601bbb..338a0a6fcc59c5 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.00554,"48":0.00554,"52":0.03877,"78":0.07753,"82":0.02215,"84":0.01108,"85":0.01108,"86":0.01108,"88":0.01661,"89":0.02215,"90":0.02215,"91":0.04984,"92":0.03323,"93":0.45412,"94":2.14321,"95":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 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 83 87 96 3.5 3.6"},D:{"25":0.01108,"26":0.00554,"34":0.01661,"38":0.06092,"49":0.13845,"52":0.00554,"53":0.02215,"56":0.01108,"57":0.00554,"58":0.00554,"59":0.01108,"60":0.02215,"61":0.01661,"64":0.03323,"65":0.03323,"66":0.01661,"67":0.02215,"68":0.01108,"69":0.02769,"70":0.0443,"71":0.01661,"72":0.04984,"73":0.02215,"74":0.02769,"75":0.02215,"76":0.02769,"77":0.01108,"78":0.02769,"79":0.27136,"80":0.08307,"81":0.03323,"83":0.03323,"84":0.03877,"85":0.02769,"86":0.06646,"87":0.33228,"88":0.07753,"89":0.07753,"90":0.08861,"91":0.18829,"92":0.68117,"93":0.55934,"94":2.64163,"95":19.37192,"96":9.2983,"97":0.01108,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 62 63 98 99"},F:{"46":0.03877,"79":0.01661,"80":0.37105,"81":0.13291,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00554,"16":0.01108,"17":0.01108,"18":0.02769,"84":0.00554,"85":0.00554,"86":0.01108,"88":0.00554,"89":0.01661,"90":0.01108,"91":0.01661,"92":0.02769,"93":0.03877,"94":0.2326,"95":4.1535,"96":1.43434,_:"12 13 14 79 80 81 83 87"},E:{"4":0,"11":0.00554,"12":0.02215,"13":0.14953,"14":0.74209,"15":1.2682,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01108,"10.1":0.03323,"11.1":0.08861,"12.1":0.17168,"13.1":0.6701,"14.1":4.48024,"15.1":1.46203},G:{"8":0.0023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01151,"6.0-6.1":0.02072,"7.0-7.1":0.02763,"8.1-8.4":0.04145,"9.0-9.2":0.02072,"9.3":0.28782,"10.0-10.2":0.02533,"10.3":0.32696,"11.0-11.2":0.0921,"11.3-11.4":0.10361,"12.0-12.1":0.0898,"12.2-12.5":1.35389,"13.0-13.1":0.04835,"13.2":0.02533,"13.3":0.15427,"13.4-13.7":0.46281,"14.0-14.4":1.34929,"14.5-14.8":11.77518,"15.0-15.1":6.8086},P:{"4":0.40423,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.24512,"8.2":0.05025,"9.2":0.02185,"10.1":0.02043,"11.1-11.2":0.0437,"12.0":0.02185,"13.0":0.09833,"14.0":0.14203,"15.0":2.54557},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00134,"4.2-4.3":0.00357,"4.4":0,"4.4.3-4.4.4":0.0174},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01091,"11":0.72011,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":18.03908},S:{"2.5":0},R:{_:"0"},M:{"0":0.40595},Q:{"10.4":0.02677},O:{"0":0.13829},H:{"0":0.16471}}; +module.exports={C:{"34":0.01066,"48":0.00533,"50":0.00533,"52":0.04263,"54":0.01599,"66":0.01066,"68":0.00533,"78":0.07461,"84":0.01599,"85":0.01599,"86":0.00533,"87":0.03197,"88":0.01066,"89":0.02132,"90":0.02132,"91":0.05329,"92":0.01599,"93":0.0373,"94":0.8633,"95":1.66798,"96":0.01066,_:"2 3 4 5 6 7 8 9 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 51 53 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 97 3.5 3.6"},D:{"25":0.01066,"26":0.01066,"34":0.02132,"38":0.08526,"49":0.07994,"52":0.00533,"53":0.02665,"55":0.00533,"56":0.01066,"57":0.01066,"58":0.00533,"59":0.03197,"60":0.03197,"63":0.01066,"64":0.04263,"65":0.0373,"66":0.01599,"67":0.02665,"68":0.02132,"69":0.05862,"70":0.04263,"71":0.01066,"72":0.05329,"73":0.01599,"74":0.03197,"75":0.01599,"76":0.0373,"77":0.01066,"78":0.02665,"79":0.31441,"80":0.09059,"81":0.05329,"83":0.0373,"84":0.04263,"85":0.04263,"86":0.05329,"87":0.23448,"88":0.0373,"89":0.04796,"90":0.06395,"91":0.10658,"92":0.44231,"93":0.25046,"94":0.8633,"95":1.45482,"96":27.08731,"97":0.02132,"98":0.00533,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 61 62 99"},F:{"36":0.00533,"46":0.05329,"75":0.00533,"79":0.00533,"80":0.01599,"81":0.30375,"82":0.26112,_:"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 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.01066,"12":0.02132,"13":0.14921,"14":0.61816,"15":0.64481,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01066,"10.1":0.04263,"11.1":0.08526,"12.1":0.17053,"13.1":0.62349,"14.1":3.18674,"15.1":2.98424,"15.2":0.33573},B:{"15":0.02132,"16":0.01066,"17":0.00533,"18":0.02132,"84":0.01066,"85":0.01066,"86":0.01066,"88":0.00533,"89":0.01599,"90":0.01066,"91":0.01066,"92":0.02132,"93":0.01599,"94":0.03197,"95":0.25579,"96":5.83526,_:"12 13 14 79 80 81 83 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01673,"6.0-6.1":0.02151,"7.0-7.1":0.02629,"8.1-8.4":0.04063,"9.0-9.2":0.02629,"9.3":0.30833,"10.0-10.2":0.02868,"10.3":0.34657,"11.0-11.2":0.09321,"11.3-11.4":0.11473,"12.0-12.1":0.08843,"12.2-12.5":1.3791,"13.0-13.1":0.05019,"13.2":0.0239,"13.3":0.14102,"13.4-13.7":0.46847,"14.0-14.4":1.2596,"14.5-14.8":7.28989,"15.0-15.1":11.36267,"15.2":0.80547},P:{"4":0.58601,"5.0-5.4":0.01085,"6.2-6.4":0.03103,"7.2-7.4":0.24517,"8.2":0.03017,"9.2":0.01085,"10.1":0.01022,"11.1-11.2":0.04341,"12.0":0.03256,"13.0":0.09767,"14.0":0.10852,"15.0":0.34727},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00135,"4.2-4.3":0.00359,"4.4":0,"4.4.3-4.4.4":0.01841},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.03174,"11":0.69833,_:"6 7 8 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.1401},H:{"0":0.17685},L:{"0":19.14463},S:{"2.5":0},R:{_:"0"},M:{"0":0.43898},Q:{"10.4":0.02335}}; 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 74e802c12f9688..52de2a40dfa805 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:{"52":0.01128,"78":0.03383,"89":0.00376,"90":0.01504,"91":0.01504,"92":0.02255,"93":0.60896,"94":1.32317,"95":0.01128,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 96 3.5 3.6"},D:{"22":0.01504,"34":0.00752,"38":0.00376,"49":0.07894,"53":0.00376,"56":0.02255,"59":0.00752,"63":0.00376,"65":0.00376,"67":0.00376,"68":0.00376,"70":0.02631,"76":0.03007,"79":0.09773,"80":0.00752,"83":0.10901,"84":0.04511,"85":0.00376,"86":0.00752,"87":0.08646,"88":0.01504,"89":0.03383,"90":0.02255,"91":0.10525,"92":0.11653,"93":0.36838,"94":1.51488,"95":12.2581,"96":6.72109,"97":0.00376,_:"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 47 48 50 51 52 54 55 57 58 60 61 62 64 66 69 71 72 73 74 75 77 78 81 98 99"},F:{"28":0.01128,"80":0.34207,"81":0.15036,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.0188,"18":0.04511,"84":0.05639,"85":0.02631,"88":0.00376,"89":0.01128,"90":0.02631,"91":0.01504,"92":0.01128,"93":0.07894,"94":0.15036,"95":4.13114,"96":1.37579,_:"12 13 14 15 16 79 80 81 83 86 87"},E:{"4":0,"12":0.00752,"13":0.02255,"14":0.46612,"15":0.68038,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00752,"11.1":0.05639,"12.1":0.09398,"13.1":0.56761,"14.1":2.45463,"15.1":1.22168},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00979,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03425,"10.0-10.2":0.01957,"10.3":0.08563,"11.0-11.2":0.00734,"11.3-11.4":0.03425,"12.0-12.1":0.01957,"12.2-12.5":0.63856,"13.0-13.1":0.01957,"13.2":0.01223,"13.3":0.03425,"13.4-13.7":0.34497,"14.0-14.4":1.01288,"14.5-14.8":12.83232,"15.0-15.1":9.35328},P:{"4":0.22469,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.24512,"8.2":0.05025,"9.2":0.03064,"10.1":0.02043,"11.1-11.2":0.20427,"12.0":0.04085,"13.0":0.13277,"14.0":0.26554,"15.0":6.35265},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00059,"4.4":0,"4.4.3-4.4.4":0.00565},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.72173,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":30.03195},S:{"2.5":0},R:{_:"0"},M:{"0":0.38694},Q:{"10.4":0},O:{"0":0.04993},H:{"0":0.10635}}; +module.exports={C:{"48":0.00353,"52":0.01766,"78":0.04592,"89":0.00353,"90":0.01413,"91":0.01766,"92":0.00706,"94":0.36733,"95":0.85121,"96":0.0106,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 93 97 3.5 3.6"},D:{"22":0.00353,"38":0.00353,"49":0.02472,"56":0.01766,"65":0.01413,"70":0.0106,"73":0.00706,"76":0.00706,"79":0.04592,"81":0.00706,"83":0.08477,"84":0.04238,"86":0.03179,"87":0.09183,"88":0.00353,"89":0.03179,"90":0.0106,"91":0.05298,"92":0.06004,"93":0.19426,"94":0.54393,"95":0.85828,"96":18.2781,"97":0.00353,_:"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 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 71 72 74 75 77 78 80 85 98 99"},F:{"81":0.21545,"82":0.19073,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00353,"12":0.01413,"13":0.02826,"14":0.29669,"15":0.80176,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04238,"11.1":0.02826,"12.1":0.11302,"13.1":0.51567,"14.1":2.03796,"15.1":2.06975,"15.2":0.37792},B:{"14":0.00706,"17":0.00353,"18":0.02119,"84":0.04238,"85":0.03179,"87":0.00353,"88":0.01413,"89":0.0106,"90":0.01766,"91":0.00706,"92":0.01766,"93":0.01766,"94":0.06004,"95":0.08124,"96":4.03708,_:"12 13 15 16 79 80 81 83 86"},G:{"8":0,"3.2":0,"4.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.05237,"10.0-10.2":0.00827,"10.3":0.09646,"11.0-11.2":0.03032,"11.3-11.4":0.03032,"12.0-12.1":0.05788,"12.2-12.5":0.70556,"13.0-13.1":0.03307,"13.2":0.00551,"13.3":0.04134,"13.4-13.7":0.35002,"14.0-14.4":1.09968,"14.5-14.8":8.63762,"15.0-15.1":14.9794,"15.2":1.41939},P:{"4":0.19409,"5.0-5.4":0.05273,"6.2-6.4":0.03103,"7.2-7.4":0.24517,"8.2":0.03017,"9.2":0.02043,"10.1":0.01022,"11.1-11.2":0.15323,"12.0":0.02043,"13.0":0.24517,"14.0":0.28603,"15.0":0.81722},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.01138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21545,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.04528},H:{"0":0.14696},L:{"0":30.4658},S:{"2.5":0},R:{_:"0"},M:{"0":0.27812},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js index bbd643dfb0ce69..b85816ca1ddf7d 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:{"48":0.00615,"52":0.03073,"61":0.01229,"65":0.00615,"78":0.03073,"89":0.00615,"91":0.04916,"92":0.16592,"93":0.40557,"94":2.10774,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 95 96 3.5","3.6":0.00615},D:{"26":0.03687,"49":0.01844,"58":0.01229,"63":0.02458,"76":0.10447,"79":0.02458,"81":0.02458,"86":0.00615,"87":0.02458,"89":0.02458,"90":0.01229,"91":0.23966,"92":0.14748,"93":0.2458,"94":0.67595,"95":21.71029,"96":12.64641,_:"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 57 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 83 84 85 88 97 98 99"},F:{"80":2.29823,"81":1.11225,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02458,"85":0.00615,"89":0.01229,"92":0.05531,"93":0.05531,"94":0.08603,"95":5.0389,"96":1.64686,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90 91"},E:{"4":0,"12":0.01844,"13":0.03073,"14":0.42401,"15":1.50553,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00615,"11.1":0.03073,"12.1":0.03687,"13.1":0.62679,"14.1":6.2679,"15.1":1.16755},G:{"8":0,"3.2":0,"4.0-4.1":0.00137,"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.00549,"9.0-9.2":0.00411,"9.3":0.05898,"10.0-10.2":0.01646,"10.3":0.4252,"11.0-11.2":0.10836,"11.3-11.4":0.01372,"12.0-12.1":0.73107,"12.2-12.5":2.39346,"13.0-13.1":0.1015,"13.2":0.00411,"13.3":0.06035,"13.4-13.7":0.12482,"14.0-14.4":1.0918,"14.5-14.8":6.43696,"15.0-15.1":2.13834},P:{"4":0.04905,"5.0-5.4":0.33166,"6.2-6.4":0.24121,"7.2-7.4":0.06131,"8.2":0.05025,"9.2":0.43216,"10.1":0.0981,"11.1-11.2":0.01226,"12.0":0.1407,"13.0":0.04905,"14.0":0.08584,"15.0":1.98651},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,"4.4":0,"4.4.3-4.4.4":0.04528},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18435,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.91303},S:{"2.5":0},R:{_:"0"},M:{"0":0.30069},Q:{"10.4":0},O:{"0":0.19661},H:{"0":0.0511}}; +module.exports={C:{"48":0.01167,"52":0.02334,"61":0.01167,"66":0.01167,"78":0.06419,"87":0.01167,"91":0.01167,"92":0.01167,"93":0.01751,"94":1.6338,"95":2.25815,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 96 97 3.5 3.6"},D:{"49":0.02918,"58":0.00584,"76":0.12837,"79":0.05252,"81":0.01751,"84":0.01167,"87":0.02918,"90":0.00584,"91":0.00584,"92":0.0992,"93":0.08169,"94":0.17505,"95":0.39095,"96":28.73738,"98":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 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 83 85 86 88 89 97 99"},F:{"46":0.01167,"81":2.95251,"82":1.47042,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.04085,"13":0.05252,"14":0.37928,"15":1.9664,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.19839,"10.1":0.01751,"11.1":0.00584,"12.1":0.03501,"13.1":0.78189,"14.1":4.77303,"15.1":1.2662,"15.2":0.15171},B:{"17":0.02334,"18":0.01167,"84":0.00584,"85":0.01167,"87":0.01167,"88":0.01751,"89":0.00584,"92":0.01751,"94":0.02918,"95":0.10503,"96":7.32876,_:"12 13 14 15 16 79 80 81 83 86 90 91 93"},G:{"8":0,"3.2":0,"4.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.02001,"9.0-9.2":0.00267,"9.3":0.08138,"10.0-10.2":0.01734,"10.3":0.64974,"11.0-11.2":0.02268,"11.3-11.4":0.00667,"12.0-12.1":1.73442,"12.2-12.5":1.56098,"13.0-13.1":0.17744,"13.2":0.00667,"13.3":0.03069,"13.4-13.7":0.20413,"14.0-14.4":1.31149,"14.5-14.8":4.11857,"15.0-15.1":3.10861,"15.2":0.28284},P:{"4":1.33742,"5.0-5.4":0.42234,"6.2-6.4":0.32179,"7.2-7.4":0.04757,"8.2":0.03017,"9.2":0.37207,"10.1":0.07039,"11.1-11.2":0.02378,"12.0":0.03568,"13.0":0.05946,"14.0":0.11892,"15.0":0.35676},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12845,"4.4":0,"4.4.3-4.4.4":0.07564},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21006,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.2624},H:{"0":0.03155},L:{"0":25.61032},S:{"2.5":0},R:{_:"0"},M:{"0":0.57061},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js index 5735624d3b3046..1eca4917a68c68 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:{"52":0.00743,"68":0.09662,"72":0.14121,"78":0.04459,"84":0.01486,"88":0.01115,"89":0.01858,"90":0.00372,"91":0.00743,"92":0.00743,"93":0.08175,"94":0.42362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 73 74 75 76 77 79 80 81 82 83 85 86 87 95 96 3.5 3.6"},D:{"22":0.00743,"34":0.00372,"38":0.03716,"47":0.00372,"49":0.05202,"53":0.05202,"55":0.00743,"56":0.01858,"57":0.00372,"58":0.00743,"59":0.00372,"63":0.01115,"65":0.00372,"67":0.01858,"68":0.03344,"69":0.01115,"70":0.00743,"71":0.01858,"72":0.03716,"73":0.00743,"74":0.01486,"75":0.00372,"76":0.0223,"77":0.00743,"78":0.00743,"79":0.51281,"80":0.04831,"81":0.0223,"83":0.02973,"84":0.04459,"85":0.05202,"86":0.07432,"87":0.25269,"88":0.05574,"89":0.08175,"90":0.04831,"91":0.12634,"92":0.15236,"93":0.1858,"94":0.71719,"95":15.81158,"96":10.12982,"97":0.00372,"98":0.00372,_:"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 60 61 62 64 66 99"},F:{"25":0.00743,"28":0.0223,"36":0.01486,"40":0.00743,"46":0.01115,"62":0.08547,"77":0.01115,"78":0.01858,"79":0.04831,"80":2.01779,"81":0.78408,_:"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 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00372,"18":0.01858,"84":0.01486,"85":0.00372,"86":0.00743,"87":0.00743,"88":0.00743,"89":0.01115,"90":0.00743,"91":0.01115,"92":0.01486,"93":0.00372,"94":0.01858,"95":0.65402,"96":0.29728,_:"12 14 15 16 17 79 80 81 83"},E:{"4":0,"13":0.02601,"14":0.10776,"15":0.14121,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.08918,"11.1":0.00372,"12.1":0.02973,"13.1":0.10776,"14.1":0.23411,"15.1":0.21924},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01619,"6.0-6.1":0.0018,"7.0-7.1":0.04136,"8.1-8.4":0,"9.0-9.2":0.0045,"9.3":0.02068,"10.0-10.2":0.01708,"10.3":0.09711,"11.0-11.2":0.04046,"11.3-11.4":0.05485,"12.0-12.1":0.02158,"12.2-12.5":0.63574,"13.0-13.1":0.02877,"13.2":0.01529,"13.3":0.07553,"13.4-13.7":0.20862,"14.0-14.4":0.76792,"14.5-14.8":3.25872,"15.0-15.1":3.68134},P:{"4":0.5508,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.0816,"8.2":0.05025,"9.2":0.0204,"10.1":0.0204,"11.1-11.2":0.153,"12.0":0.051,"13.0":0.2652,"14.0":0.306,"15.0":3.22321},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00602,"4.2-4.3":0.03162,"4.4":0,"4.4.3-4.4.4":0.10691},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07804,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":48.62601},S:{"2.5":0},R:{_:"0"},M:{"0":0.08799},Q:{"10.4":0},O:{"0":0.37082},H:{"0":0.67238}}; +module.exports={C:{"52":0.00739,"68":0.06278,"72":0.07017,"78":0.06647,"79":0.00369,"88":0.01108,"89":0.01477,"91":0.00739,"93":0.01108,"94":0.15141,"95":0.3176,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 73 74 75 76 77 80 81 82 83 84 85 86 87 90 92 96 97 3.5 3.6"},D:{"22":0.00739,"34":0.00369,"38":0.04801,"39":0.00369,"47":0.00739,"49":0.04062,"53":0.0517,"55":0.00739,"56":0.01108,"57":0.00739,"58":0.00739,"63":0.00739,"65":0.00739,"66":0.00369,"67":0.01477,"68":0.04432,"69":0.01108,"70":0.00369,"71":0.01108,"72":0.00739,"73":0.00739,"74":0.01108,"75":0.00369,"76":0.00739,"77":0.04432,"78":0.01477,"79":0.80507,"80":0.07755,"81":0.01108,"83":0.01108,"84":0.02585,"85":0.01847,"86":0.08125,"87":0.17357,"88":0.04062,"89":0.07386,"90":0.05909,"91":0.08125,"92":0.19942,"93":0.08494,"94":0.17357,"95":0.48748,"96":25.40415,"97":0.02216,"98":0.00739,_:"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 59 60 61 62 64 99"},F:{"25":0.01108,"28":0.04432,"32":0.01108,"36":0.01108,"40":0.01108,"46":0.01847,"62":0.02216,"63":0.00369,"70":0.00739,"78":0.00739,"79":0.01108,"80":0.03693,"81":1.05251,"82":1.43658,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 64 65 66 67 68 69 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01477,"14":0.08494,"15":0.06647,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.08125,"11.1":0.00369,"12.1":0.04062,"13.1":0.08863,"14.1":0.23266,"15.1":0.29175,"15.2":0.0554},B:{"18":0.02585,"84":0.01108,"89":0.00369,"95":0.02954,"96":0.99711,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01349,"6.0-6.1":0.0009,"7.0-7.1":0.05666,"8.1-8.4":0,"9.0-9.2":0.0063,"9.3":0.01439,"10.0-10.2":0.01349,"10.3":0.11242,"11.0-11.2":0.03238,"11.3-11.4":0.03417,"12.0-12.1":0.01349,"12.2-12.5":0.57378,"13.0-13.1":0.02698,"13.2":0.00719,"13.3":0.05036,"13.4-13.7":0.17447,"14.0-14.4":0.62684,"14.5-14.8":2.27713,"15.0-15.1":4.48501,"15.2":0.46946},P:{"4":0.65235,"5.0-5.4":0.01085,"6.2-6.4":0.03103,"7.2-7.4":0.07135,"8.2":0.01019,"9.2":0.01019,"10.1":0.01019,"11.1-11.2":0.1427,"12.0":0.05096,"13.0":0.2854,"14.0":0.24463,"15.0":0.46888},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01624,"4.2-4.3":0.04176,"4.4":0,"4.4.3-4.4.4":0.14385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00739,"11":0.0517,_:"6 7 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.35325},H:{"0":0.67484},L:{"0":49.78039},S:{"2.5":0},R:{_:"0"},M:{"0":0.082},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js index 567c825db3eaba..ac597202c4c78e 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:{"36":0.00738,"45":0.48352,"48":0.00369,"52":0.59056,"56":0.01107,"65":0.00369,"66":0.01107,"67":0.00369,"68":0.01107,"72":0.00369,"78":0.02953,"81":0.00738,"82":0.01107,"84":0.01476,"85":0.00369,"87":0.00369,"88":0.02953,"89":0.02584,"90":0.01107,"91":0.03322,"92":0.03322,"93":0.4503,"94":2.61692,"95":0.02215,_:"2 3 4 5 6 7 8 9 10 11 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 49 50 51 53 54 55 57 58 59 60 61 62 63 64 69 70 71 73 74 75 76 77 79 80 83 86 96 3.5 3.6"},D:{"22":0.00369,"26":0.00369,"34":0.00738,"38":0.03322,"43":0.00738,"47":0.00738,"48":0.01107,"49":0.21039,"53":0.01107,"55":0.00738,"61":0.0406,"63":0.01107,"65":0.01107,"67":0.00738,"68":0.01846,"70":0.01107,"71":0.00738,"72":0.01107,"73":0.00738,"75":0.00369,"76":0.00738,"77":0.00738,"78":0.00738,"79":0.14026,"80":0.02215,"81":0.02953,"83":0.0406,"84":0.04798,"85":0.02215,"86":0.04429,"87":0.14026,"88":0.0406,"89":0.07013,"90":0.06644,"91":0.10335,"92":0.18824,"93":0.17717,"94":0.68653,"95":14.44657,"96":9.26072,"97":0.00738,_:"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 50 51 52 54 56 57 58 59 60 62 64 66 69 74 98 99"},F:{"28":0.00369,"36":0.01107,"40":0.01107,"46":0.00738,"72":0.00738,"74":0.00738,"78":0.00738,"79":0.01107,"80":1.2697,"81":0.56472,_:"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 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00369,"15":0.00738,"16":0.00369,"17":0.00369,"18":0.01107,"84":0.00738,"85":0.03691,"89":0.02584,"91":0.00369,"92":0.00738,"93":0.01476,"94":0.03322,"95":1.40258,"96":0.56103,_:"13 14 79 80 81 83 86 87 88 90"},E:{"4":0,"9":0.00369,"12":0.01107,"13":0.00738,"14":0.05906,"15":0.07013,_:"0 5 6 7 8 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00738,"11.1":0.00738,"12.1":0.01476,"13.1":0.0812,"14.1":0.22884,"15.1":0.15871},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01763,"8.1-8.4":0,"9.0-9.2":0.00057,"9.3":0.11377,"10.0-10.2":0.02218,"10.3":0.11547,"11.0-11.2":0.00626,"11.3-11.4":0.0165,"12.0-12.1":0.01081,"12.2-12.5":0.40558,"13.0-13.1":0.00512,"13.2":0.00341,"13.3":0.02844,"13.4-13.7":0.11377,"14.0-14.4":0.35666,"14.5-14.8":2.64396,"15.0-15.1":1.82427},P:{"4":0.18428,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.0819,"8.2":0.01024,"9.2":0.02048,"10.1":0.02048,"11.1-11.2":0.19451,"12.0":0.04095,"13.0":0.13309,"14.0":0.12285,"15.0":2.37513},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00445,"4.2-4.3":0.01447,"4.4":0,"4.4.3-4.4.4":0.11356},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10335,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":54.66196},S:{"2.5":0},R:{_:"0"},M:{"0":0.25236},Q:{"10.4":0},O:{"0":0.02524},H:{"0":0.22697}}; +module.exports={C:{"36":0.00769,"43":0.00384,"44":0.00769,"45":0.56492,"47":0.00384,"52":0.91079,"56":0.00384,"66":0.01153,"68":0.00384,"72":0.00769,"77":0.00384,"78":0.01153,"84":0.00384,"87":0.00769,"88":0.0269,"89":0.00769,"90":0.00384,"91":0.03843,"92":0.00769,"93":0.03074,"94":0.80319,"95":1.84464,"96":0.01537,_:"2 3 4 5 6 7 8 9 10 11 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 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 79 80 81 82 83 85 86 97 3.5 3.6"},D:{"26":0.00384,"34":0.00384,"38":0.0269,"40":0.00769,"43":0.00384,"47":0.00384,"49":0.19984,"53":0.01537,"55":0.01153,"56":0.00384,"61":0.0538,"62":0.00384,"63":0.02306,"65":0.01153,"66":0.00384,"68":0.01153,"69":0.00769,"70":0.01153,"71":0.00769,"72":0.01153,"73":0.01153,"74":0.00384,"76":0.00769,"77":0.00769,"78":0.00384,"79":0.12682,"80":0.01153,"81":0.02306,"83":0.04612,"84":0.03843,"85":0.03843,"86":0.07302,"87":0.11145,"88":0.03074,"89":0.06533,"90":0.03459,"91":0.06533,"92":0.14988,"93":0.42273,"94":0.22289,"95":0.38814,"96":22.96577,"97":0.00769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 41 42 44 45 46 48 50 51 52 54 57 58 59 60 64 67 75 98 99"},F:{"28":0.00769,"36":0.00769,"40":0.01153,"46":0.00384,"71":0.01922,"72":0.00769,"80":0.02306,"81":0.98765,"82":1.04145,_:"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 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01537,"14":0.0807,"15":0.04227,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00769,"11.1":0.00384,"12.1":0.01922,"13.1":0.06917,"14.1":0.17294,"15.1":0.28054,"15.2":0.06533},B:{"15":0.00769,"17":0.00769,"18":0.01537,"85":0.03074,"87":0.00384,"89":0.00384,"92":0.01153,"94":0.00769,"95":0.06533,"96":1.93687,_:"12 13 14 16 79 80 81 83 84 86 88 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01205,"8.1-8.4":0.00055,"9.0-9.2":0,"9.3":0.12159,"10.0-10.2":0.00548,"10.3":0.06956,"11.0-11.2":0.0115,"11.3-11.4":0.01698,"12.0-12.1":0.0115,"12.2-12.5":0.37078,"13.0-13.1":0.00548,"13.2":0.00219,"13.3":0.02465,"13.4-13.7":0.10132,"14.0-14.4":0.30451,"14.5-14.8":1.61567,"15.0-15.1":2.5807,"15.2":0.21907},P:{"4":0.13441,_:"5.0-5.4 8.2","6.2-6.4":0.0102,"7.2-7.4":0.07237,"9.2":0.01034,"10.1":0.02041,"11.1-11.2":0.15509,"12.0":0.04136,"13.0":0.15509,"14.0":0.11373,"15.0":0.31017},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00961,"4.2-4.3":0.01922,"4.4":0,"4.4.3-4.4.4":0.11894},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00448,"9":0.00448,"11":0.09864,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04926},H:{"0":0.22733},L:{"0":55.36159},S:{"2.5":0},R:{_:"0"},M:{"0":0.25859},Q:{"10.4":0.01231}}; 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 aca2ef6dda376b..c9b21f1b535376 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.01466,"52":0.00489,"56":0.00489,"78":0.02931,"87":0.01466,"89":0.02443,"92":0.00977,"93":0.38103,"94":2.05659,"95":0.01954,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 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 91 96 3.5 3.6"},D:{"49":0.00489,"50":0.02443,"56":0.00489,"65":0.00977,"67":0.00489,"74":0.01466,"75":0.00489,"76":0.0342,"77":0.01466,"79":0.25891,"80":0.05374,"81":0.02443,"83":0.00489,"84":0.00977,"85":0.00977,"86":0.01954,"87":0.05862,"88":0.05374,"89":0.01954,"90":0.0342,"91":0.05374,"92":0.18563,"93":0.47873,"94":2.41319,"95":17.45899,"96":9.44759,"97":0.05374,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 78 98 99"},F:{"28":0.01466,"69":0.02443,"79":0.01466,"80":0.60086,"81":0.23448,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01466,"15":0.00489,"16":0.01466,"17":0.01466,"18":0.01954,"84":0.00977,"89":0.00977,"92":0.02443,"93":0.01466,"94":0.6839,"95":5.90108,"96":2.23245,_:"13 14 79 80 81 83 85 86 87 88 90 91"},E:{"4":0.00977,"13":0.01954,"14":0.23937,"15":0.63994,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.02931,"10.1":0.00977,"11.1":0.0342,"12.1":0.04397,"13.1":0.2296,"14.1":1.38734,"15.1":0.76695},G:{"8":0.00356,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00474,"5.0-5.1":0.04033,"6.0-6.1":0,"7.0-7.1":0.00949,"8.1-8.4":0.00119,"9.0-9.2":0.00356,"9.3":0.09015,"10.0-10.2":0.01068,"10.3":0.20283,"11.0-11.2":0.00356,"11.3-11.4":0.10201,"12.0-12.1":0.00949,"12.2-12.5":0.54681,"13.0-13.1":0.01305,"13.2":0.00356,"13.3":0.29416,"13.4-13.7":0.21588,"14.0-14.4":0.54799,"14.5-14.8":4.86195,"15.0-15.1":4.89161},P:{"4":0.23361,"5.0-5.4":0.08232,"6.2-6.4":0.01025,"7.2-7.4":0.3671,"8.2":0.01112,"9.2":0.04101,"10.1":0.03076,"11.1-11.2":0.21136,"12.0":0.02225,"13.0":0.15574,"14.0":0.14461,"15.0":4.43854},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.00059,"4.4":0,"4.4.3-4.4.4":0.02419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00489,"11":0.26868,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":33.83869},S:{"2.5":0},R:{_:"0"},M:{"0":0.50639},Q:{"10.4":0},O:{"0":0.03581},H:{"0":0.12591}}; +module.exports={C:{"45":0.00933,"78":0.01867,"83":0.00933,"87":0.014,"89":0.014,"91":0.014,"93":0.01867,"94":0.62538,"95":1.49811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 84 85 86 88 90 92 96 97 3.5 3.6"},D:{"47":0.00933,"49":0.00933,"53":0.00467,"62":0.00467,"65":0.00467,"67":0.00467,"69":0.00467,"70":0.00933,"73":0.00467,"75":0.00933,"76":0.10267,"77":0.014,"79":0.21002,"80":0.07001,"81":0.01867,"83":0.01867,"84":0.014,"85":0.00933,"86":0.028,"87":0.10734,"88":0.03267,"89":0.03267,"90":0.03734,"91":0.08867,"92":0.07467,"93":0.17268,"94":0.79806,"95":0.63471,"96":24.73977,"97":0.00933,"98":0.01867,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 56 57 58 59 60 61 63 64 66 68 71 72 74 78 99"},F:{"28":0.00933,"66":0.07001,"69":0.04667,"81":0.4107,"82":0.41536,_:"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 67 68 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.00933,"13":0.014,"14":0.30802,"15":0.42936,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.014,"9.1":0.03734,"11.1":0.03734,"12.1":0.03267,"13.1":0.20068,"14.1":1.28809,"15.1":1.54011,"15.2":0.21468},B:{"12":0.01867,"14":0.00933,"15":0.00467,"17":0.01867,"18":0.00933,"89":0.00467,"92":0.00933,"93":0.00933,"94":0.30336,"95":0.17735,"96":7.26185,_:"13 16 79 80 81 83 84 85 86 87 88 90 91"},G:{"8":0.00379,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04171,"6.0-6.1":0,"7.0-7.1":0.01643,"8.1-8.4":0.00632,"9.0-9.2":0,"9.3":0.05056,"10.0-10.2":0,"10.3":0.10365,"11.0-11.2":0.00632,"11.3-11.4":0.17191,"12.0-12.1":0.01264,"12.2-12.5":0.46517,"13.0-13.1":0.00632,"13.2":0,"13.3":0.1934,"13.4-13.7":0.13905,"14.0-14.4":0.77107,"14.5-14.8":3.35352,"15.0-15.1":6.63119,"15.2":0.66615},P:{"4":0.14099,"5.0-5.4":0.01042,"6.2-6.4":0.02085,"7.2-7.4":0.28199,"8.2":0.01019,"9.2":0.02085,"10.1":0.01042,"11.1-11.2":0.15184,"12.0":0.02169,"13.0":0.10846,"14.0":0.13015,"15.0":0.77004},I:{"0":0,"3":0,"4":0.00163,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00065,"4.2-4.3":0.00098,"4.4":0,"4.4.3-4.4.4":0.03941},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21002,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0.00533},O:{"0":0.04266},H:{"0":0.13632},L:{"0":36.51599},S:{"2.5":0},R:{_:"0"},M:{"0":0.68796},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js index 42ab8a06d0300c..0985a38ef1eba9 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.01262,"41":0.00315,"43":0.00631,"47":0.01262,"48":0.01262,"49":0.00315,"50":0.00315,"51":0.00631,"52":0.07254,"56":0.00946,"62":0.00315,"65":0.00315,"67":0.00946,"68":0.00315,"72":0.01262,"77":0.00631,"78":0.01262,"80":0.00631,"81":0.00631,"82":0.00315,"83":0.00631,"84":0.00946,"85":0.00631,"86":0.00315,"87":0.00631,"88":0.00946,"89":0.02839,"90":0.04416,"91":0.03154,"92":0.02208,"93":0.47941,"94":2.78498,"95":0.24601,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 44 45 46 53 54 55 57 58 59 60 61 63 64 66 69 70 71 73 74 75 76 79 96 3.5 3.6"},D:{"11":0.01577,"29":0.00315,"38":0.00631,"43":0.00315,"44":0.01577,"49":0.05362,"50":0.00631,"55":0.00315,"56":0.00946,"61":0.02208,"62":0.00315,"63":0.00631,"64":0.01262,"65":0.00315,"69":0.01892,"70":0.00631,"71":0.00946,"72":0.01262,"73":0.01577,"74":0.00946,"75":0.00315,"76":0.00631,"77":0.00631,"78":0.00631,"79":0.03785,"80":0.14193,"81":0.01892,"83":0.02839,"84":0.03469,"85":0.02839,"86":0.09462,"87":0.2744,"88":0.03154,"89":0.03785,"90":0.03154,"91":0.06623,"92":0.09777,"93":0.10408,"94":0.36271,"95":10.37666,"96":6.53193,"97":0.05046,"98":0.00946,_:"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 45 46 47 48 51 52 53 54 57 58 59 60 66 67 68 99"},F:{"36":0.00631,"68":0.00315,"79":0.02523,"80":0.41317,"81":0.17347,_:"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 73 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.00946,"16":0.00315,"18":0.01892,"84":0.00631,"89":0.00631,"91":0.00315,"92":0.00946,"93":0.00631,"94":0.01892,"95":0.84843,"96":0.36902,_:"13 14 15 17 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.00631,"14":0.01892,"15":0.03469,_:"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.00631,"13.1":0.00946,"14.1":0.06308,"15.1":0.0757},G:{"8":0.00038,"3.2":0.00019,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00265,"6.0-6.1":0.00151,"7.0-7.1":0.05538,"8.1-8.4":0.00132,"9.0-9.2":0.00208,"9.3":0.02722,"10.0-10.2":0.00454,"10.3":0.10755,"11.0-11.2":0.00756,"11.3-11.4":0.00454,"12.0-12.1":0.00851,"12.2-12.5":0.20697,"13.0-13.1":0.00888,"13.2":0.00302,"13.3":0.01134,"13.4-13.7":0.06578,"14.0-14.4":0.14138,"14.5-14.8":0.60485,"15.0-15.1":0.62357},P:{"4":0.42035,"5.0-5.4":0.08232,"6.2-6.4":0.01025,"7.2-7.4":0.15379,"8.2":0.05025,"9.2":0.04101,"10.1":0.03076,"11.1-11.2":0.10253,"12.0":0.10253,"13.0":0.14354,"14.0":0.16404,"15.0":1.11753},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00274,"4.2-4.3":0.01278,"4.4":0,"4.4.3-4.4.4":0.14876},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02914,"9":0.01093,"10":0.01093,"11":0.20763,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":62.54317},S:{"2.5":0},R:{_:"0"},M:{"0":0.19851},Q:{"10.4":0},O:{"0":3.21715},H:{"0":3.8688}}; +module.exports={C:{"40":0.01927,"41":0.00321,"43":0.00642,"47":0.00963,"48":0.00642,"49":0.00321,"51":0.00321,"52":0.04817,"56":0.00642,"57":0.00321,"62":0.00321,"65":0.00321,"67":0.00321,"72":0.00963,"78":0.01284,"80":0.00321,"81":0.00321,"82":0.00642,"83":0.00642,"84":0.00963,"85":0.00321,"86":0.00321,"87":0.00321,"88":0.01284,"89":0.01927,"90":0.02248,"91":0.03532,"92":0.01284,"93":0.02248,"94":1.07247,"95":1.95229,"96":0.15092,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 44 45 46 50 53 54 55 58 59 60 61 63 64 66 68 69 70 71 73 74 75 76 77 79 97 3.5 3.6"},D:{"11":0.00642,"29":0.00321,"38":0.00642,"43":0.00321,"49":0.02248,"50":0.00642,"53":0.00321,"55":0.00321,"56":0.00642,"61":0.00963,"62":0.00321,"63":0.00321,"64":0.01606,"65":0.00321,"66":0.00321,"67":0.00321,"69":0.01284,"70":0.00642,"71":0.00963,"72":0.00321,"73":0.00963,"74":0.00963,"75":0.00321,"76":0.00321,"77":0.00321,"78":0.00963,"79":0.03532,"80":0.01606,"81":0.02248,"83":0.0289,"84":0.02569,"85":0.02569,"86":0.05459,"87":0.09312,"88":0.01927,"89":0.03853,"90":0.02248,"91":0.05459,"92":0.11239,"93":0.18624,"94":0.1445,"95":0.22156,"96":17.31692,"97":0.04495,"98":0.01927,_:"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 44 45 46 47 48 51 52 54 57 58 59 60 68 99"},F:{"28":0.00963,"29":0.00642,"36":0.01284,"46":0.00642,"66":0.00321,"79":0.00963,"80":0.00642,"81":0.26009,"82":0.38532,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00642,"14":0.01606,"15":0.02248,_:"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.00321,"13.1":0.01284,"14.1":0.0578,"15.1":0.10596,"15.2":0.02248},B:{"12":0.00963,"16":0.00642,"18":0.01284,"84":0.00642,"89":0.00642,"92":0.00963,"94":0.00642,"95":0.02248,"96":1.21697,_:"13 14 15 17 79 80 81 83 85 86 87 88 90 91 93"},G:{"8":0.00021,"3.2":0.00062,"4.0-4.1":0,"4.2-4.3":0.00041,"5.0-5.1":0.00554,"6.0-6.1":0.00062,"7.0-7.1":0.07895,"8.1-8.4":0.00144,"9.0-9.2":0.00328,"9.3":0.0283,"10.0-10.2":0.00185,"10.3":0.06911,"11.0-11.2":0.00697,"11.3-11.4":0.00492,"12.0-12.1":0.00697,"12.2-12.5":0.20609,"13.0-13.1":0.00513,"13.2":0.00226,"13.3":0.01066,"13.4-13.7":0.05578,"14.0-14.4":0.12878,"14.5-14.8":0.43229,"15.0-15.1":0.87749,"15.2":0.12263},P:{"4":0.39614,"5.0-5.4":0.01042,"6.2-6.4":0.02085,"7.2-7.4":0.14594,"8.2":0.01019,"9.2":0.02085,"10.1":0.01042,"11.1-11.2":0.06255,"12.0":0.06255,"13.0":0.10425,"14.0":0.11467,"15.0":0.26062},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00397,"4.2-4.3":0.00873,"4.4":0,"4.4.3-4.4.4":0.10951},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04121,"9":0.01124,"10":0.01124,"11":0.20604,_:"6 7 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":3.5778},H:{"0":3.27797},L:{"0":63.41244},S:{"2.5":0},R:{_:"0"},M:{"0":0.16973},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js index b8ca31adc8ebeb..050c710101c3fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js @@ -1 +1 @@ -module.exports={C:{"48":0.01183,"52":0.05322,"56":0.03548,"60":0.00591,"68":0.00591,"78":0.136,"80":0.00591,"84":0.02957,"87":0.11235,"88":0.01774,"89":0.02365,"90":0.01183,"91":0.10643,"92":0.04139,"93":0.65634,"94":3.81389,"95":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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 81 82 83 85 86 96 3.5 3.6"},D:{"38":0.01183,"49":0.10643,"53":0.01183,"57":0.00591,"65":0.00591,"66":0.01183,"67":0.02365,"68":0.00591,"69":0.01774,"74":0.02365,"75":0.03548,"76":0.02957,"77":0.02957,"78":0.272,"79":0.39026,"80":0.06504,"81":0.02365,"83":0.10643,"84":0.03548,"85":0.20104,"86":0.04139,"87":0.52626,"88":0.04139,"89":0.10643,"90":0.07687,"91":0.13009,"92":0.20104,"93":0.28974,"94":1.77981,"95":19.83812,"96":12.76025,"97":0.00591,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 61 62 63 64 70 71 72 73 98 99"},F:{"46":0.00591,"79":0.01183,"80":0.75095,"81":0.33704,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.01183,"17":0.00591,"18":0.04139,"84":0.00591,"85":0.00591,"86":0.01183,"87":0.01183,"89":0.01183,"90":0.01183,"91":0.01774,"92":0.01774,"93":0.0473,"94":0.20104,"95":4.77179,"96":1.96312,_:"12 13 14 15 79 80 81 83 88"},E:{"4":0,"11":0.01774,"12":0.01183,"13":0.0887,"14":0.57356,"15":0.98747,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1","6.1":0.00591,"9.1":0.00591,"10.1":0.02957,"11.1":0.06504,"12.1":0.136,"13.1":0.56765,"14.1":2.50711,"15.1":1.75616},G:{"8":0.00166,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00331,"7.0-7.1":0.02318,"8.1-8.4":0.01159,"9.0-9.2":0.00166,"9.3":0.09108,"10.0-10.2":0.00497,"10.3":0.15732,"11.0-11.2":0.03146,"11.3-11.4":0.03478,"12.0-12.1":0.0265,"12.2-12.5":0.64915,"13.0-13.1":0.03643,"13.2":0.00994,"13.3":0.07618,"13.4-13.7":0.40075,"14.0-14.4":1.0234,"14.5-14.8":7.7616,"15.0-15.1":6.20332},P:{"4":0.10605,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.3671,"8.2":0.01112,"9.2":0.04101,"10.1":0.03076,"11.1-11.2":0.04242,"12.0":0.02121,"13.0":0.08484,"14.0":0.11666,"15.0":3.11798},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.00241,"4.4":0,"4.4.3-4.4.4":0.03256},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00625,"11":0.43131,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":20.84369},S:{"2.5":0},R:{_:"0"},M:{"0":0.27383},Q:{"10.4":0},O:{"0":0.03678},H:{"0":0.10447}}; +module.exports={C:{"48":0.00579,"52":0.04634,"56":0.02896,"68":0.00579,"78":0.10426,"80":0.01158,"82":0.00579,"87":0.12742,"88":0.01158,"89":0.02896,"90":0.01738,"91":0.09267,"92":0.01738,"93":0.02896,"94":1.35533,"95":2.83229,"96":0.00579,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 69 70 71 72 73 74 75 76 77 79 81 83 84 85 86 97 3.5 3.6"},D:{"38":0.01158,"49":0.08109,"53":0.01158,"57":0.00579,"65":0.01158,"66":0.02317,"67":0.02317,"69":0.00579,"72":0.01158,"74":0.03475,"75":0.04634,"76":0.04054,"77":0.04054,"78":0.41123,"79":0.5792,"80":0.05792,"81":0.02317,"83":0.08109,"84":0.02896,"85":0.11005,"86":0.04054,"87":0.2201,"88":0.02896,"89":0.09267,"90":0.08109,"91":0.08109,"92":0.12742,"93":0.37069,"94":0.52128,"95":0.73558,"96":31.52586,"97":0.01158,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 61 62 63 64 68 70 71 73 98 99"},F:{"46":0.00579,"79":0.00579,"80":0.01738,"81":0.57341,"82":0.48074,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.01738,"12":0.01158,"13":0.09846,"14":0.49232,"15":0.52707,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02896,"11.1":0.05792,"12.1":0.11584,"13.1":0.53286,"14.1":1.87082,"15.1":3.24931,"15.2":0.37648},B:{"16":0.01158,"17":0.00579,"18":0.02896,"85":0.00579,"86":0.01158,"87":0.00579,"89":0.01158,"90":0.00579,"91":0.01158,"92":0.01738,"93":0.02317,"94":0.06371,"95":0.16218,"96":6.64342,_:"12 13 14 15 79 80 81 83 84 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00373,"7.0-7.1":0.02237,"8.1-8.4":0.00932,"9.0-9.2":0,"9.3":0.10066,"10.0-10.2":0.00373,"10.3":0.16776,"11.0-11.2":0.03169,"11.3-11.4":0.0466,"12.0-12.1":0.02796,"12.2-12.5":0.60394,"13.0-13.1":0.0261,"13.2":0.00746,"13.3":0.06897,"13.4-13.7":0.27214,"14.0-14.4":0.90777,"14.5-14.8":4.90232,"15.0-15.1":10.718,"15.2":0.70832},P:{"4":0.09576,"5.0-5.4":0.01042,"6.2-6.4":0.06478,"7.2-7.4":0.28199,"8.2":0.01019,"9.2":0.02085,"10.1":0.01042,"11.1-11.2":0.03192,"12.0":0.01064,"13.0":0.06384,"14.0":0.12768,"15.0":0.26601},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00204,"4.2-4.3":0.00339,"4.4":0,"4.4.3-4.4.4":0.03665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.41123,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.02946},H:{"0":0.0996},L:{"0":20.42218},S:{"2.5":0},R:{_:"0"},M:{"0":0.2609},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js index 3d48242cea8c59..cf2b69d9bcfa65 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.01363,"39":0.00273,"41":0.00545,"43":0.01363,"44":0.00818,"47":0.0109,"48":0.00818,"50":0.00545,"52":0.17985,"56":0.00545,"62":0.00545,"69":0.00545,"72":0.01908,"75":0.02453,"76":0.0327,"78":0.02453,"80":0.01635,"81":0.00818,"82":0.00545,"83":0.00273,"84":0.0109,"85":0.00545,"86":0.01363,"88":0.0109,"89":0.22073,"90":0.00818,"91":0.109,"92":0.12535,"93":0.70578,"94":3.09288,"95":0.03543,_:"2 3 4 5 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 40 42 45 46 49 51 53 54 55 57 58 59 60 61 63 64 65 66 67 68 70 71 73 74 77 79 87 96 3.5 3.6"},D:{"11":0.00273,"21":0.00273,"24":0.03815,"27":0.00818,"31":0.01635,"32":0.00545,"33":0.00545,"49":0.07085,"50":0.01363,"55":0.00273,"57":0.00545,"58":0.00818,"59":0.0327,"62":0.01635,"64":0.01363,"65":0.00273,"67":0.00545,"69":0.02998,"72":0.01363,"74":0.05995,"75":0.00818,"76":0.00818,"77":0.0327,"79":0.01635,"80":0.0218,"81":0.01363,"83":0.00818,"84":0.00545,"85":0.01908,"86":0.07903,"87":0.1526,"88":0.01635,"89":0.01635,"90":0.07085,"91":0.07358,"92":0.15805,"93":0.09265,"94":0.37878,"95":6.0059,"96":3.02203,"98":0.01908,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 25 26 28 29 30 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 56 60 61 63 66 68 70 71 73 78 97 99"},F:{"51":0.00273,"77":0.00818,"78":0.00818,"79":0.01363,"80":0.9156,"81":0.2616,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 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 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.08993,"13":0.0109,"14":0.01363,"15":0.00818,"16":0.00818,"17":0.01908,"18":0.19893,"83":0.00818,"84":0.0327,"85":0.02453,"89":0.02453,"90":0.00818,"91":0.00818,"92":0.0218,"93":0.01908,"94":0.1199,"95":1.69768,"96":0.61858,_:"79 80 81 86 87 88"},E:{"4":0,"8":0.00545,"13":0.02725,"14":0.07903,"15":0.0436,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0109,"10.1":0.00545,"11.1":0.00545,"12.1":0.00545,"13.1":0.02998,"14.1":0.0654,"15.1":0.15533},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00056,"7.0-7.1":0.00842,"8.1-8.4":0,"9.0-9.2":0.00112,"9.3":0.02977,"10.0-10.2":0.00225,"10.3":0.02415,"11.0-11.2":0.19153,"11.3-11.4":0.12132,"12.0-12.1":0.02527,"12.2-12.5":0.89923,"13.0-13.1":0.00955,"13.2":0.01236,"13.3":0.14379,"13.4-13.7":0.19546,"14.0-14.4":0.78689,"14.5-14.8":1.48223,"15.0-15.1":1.68163},P:{"4":0.06416,"5.0-5.4":0.08232,"6.2-6.4":0.0105,"7.2-7.4":0.04277,"8.2":0.01024,"9.2":0.03208,"10.1":0.02111,"11.1-11.2":0.02139,"12.0":0.01069,"13.0":0.04277,"14.0":0.19247,"15.0":0.65226},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00213,"4.2-4.3":0.00498,"4.4":0,"4.4.3-4.4.4":0.18928},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22073,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00727},N:{"10":0.01155,_:"11"},L:{"0":67.824},S:{"2.5":0},R:{_:"0"},M:{"0":0.13821},Q:{"10.4":0.24004},O:{"0":0.65466},H:{"0":3.62921}}; +module.exports={C:{"20":0.00757,"28":0.00252,"31":0.00504,"35":0.00757,"37":0.00504,"38":0.00504,"43":0.02018,"47":0.01009,"48":0.00252,"50":0.00504,"52":0.02522,"56":0.00252,"59":0.00504,"63":0.00504,"67":0.00504,"72":0.02522,"75":0.0227,"76":0.07062,"78":0.02018,"80":0.00504,"81":0.00757,"82":0.00252,"84":0.01261,"86":0.00504,"87":0.00252,"88":0.01009,"89":0.09836,"90":0.01513,"91":0.14375,"92":0.00757,"93":0.02522,"94":1.38962,"95":2.05039,"96":0.01261,_:"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 29 30 32 33 34 36 39 40 41 42 44 45 46 49 51 53 54 55 57 58 60 61 62 64 65 66 68 69 70 71 73 74 77 79 83 85 97 3.5 3.6"},D:{"11":0.00252,"27":0.00252,"29":0.00252,"32":0.01009,"37":0.01261,"47":0.00504,"49":0.05296,"50":0.02018,"55":0.00504,"58":0.01765,"62":0.00757,"63":0.00504,"64":0.00757,"65":0.00757,"67":0.00252,"68":0.00252,"70":0.00757,"71":0.00504,"72":0.00757,"74":0.00757,"75":0.03279,"77":0.01765,"78":0.00252,"79":0.03279,"80":0.01513,"81":0.01513,"83":0.02018,"84":0.00504,"85":0.00757,"86":0.04287,"87":0.08323,"88":0.02018,"89":0.01765,"90":0.08575,"91":0.06809,"92":0.08575,"93":0.04287,"94":0.1261,"95":0.23707,"96":7.74506,"97":0.01009,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 30 31 33 34 35 36 38 39 40 41 42 43 44 45 46 48 51 52 53 54 56 57 59 60 61 66 69 73 76 98 99"},F:{"44":0.00504,"76":0.00504,"77":0.00252,"79":0.00757,"80":0.01513,"81":0.31525,"82":0.48927,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00504,"14":0.04287,"15":0.01765,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 11.1 12.1","5.1":0.00757,"9.1":0.00252,"10.1":0.01513,"13.1":0.02018,"14.1":0.10088,"15.1":0.15132,"15.2":0.02774},B:{"12":0.10088,"13":0.02018,"14":0.00504,"15":0.00504,"16":0.01261,"17":0.01513,"18":0.10088,"80":0.00757,"83":0.00252,"84":0.03279,"85":0.03279,"88":0.00252,"89":0.05296,"90":0.00504,"91":0.00757,"92":0.01765,"93":0.01261,"94":0.02018,"95":0.06809,"96":2.05543,_:"79 81 86 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00817,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0441,"10.0-10.2":0.00272,"10.3":0.09202,"11.0-11.2":0.17586,"11.3-11.4":0.7481,"12.0-12.1":0.05118,"12.2-12.5":0.95772,"13.0-13.1":0.00926,"13.2":0.00762,"13.3":0.08875,"13.4-13.7":0.20309,"14.0-14.4":0.65445,"14.5-14.8":0.95827,"15.0-15.1":1.24847,"15.2":0.19492},P:{"4":0.01045,_:"5.0-5.4 8.2","6.2-6.4":0.01031,"7.2-7.4":0.26117,"9.2":0.07313,"10.1":0.02119,"11.1-11.2":0.03134,"12.0":0.03176,"13.0":0.20894,"14.0":0.22983,"15.0":0.22983},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00175,"4.2-4.3":0.00524,"4.4":0,"4.4.3-4.4.4":0.15008},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14123,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00748},O:{"0":0.86756},H:{"0":4.99185},L:{"0":69.44786},S:{"2.5":0.00748},R:{_:"0"},M:{"0":0.18698},Q:{"10.4":0.06731}}; 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 f798b275f77121..09a4cb120d324c 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:{"47":0.01879,"48":0.0047,"51":0.0047,"52":0.23015,"54":0.00939,"56":0.01409,"60":0.00939,"62":0.0047,"63":0.01879,"66":0.0047,"67":0.01409,"68":0.07985,"70":0.00939,"72":0.01409,"73":0.0047,"77":0.0047,"78":0.1597,"80":0.02349,"81":0.00939,"83":0.00939,"84":0.02349,"85":0.02349,"86":0.01409,"87":0.02818,"88":0.05167,"89":0.10803,"90":0.01879,"91":0.11743,"92":0.05167,"93":0.95349,"94":4.88488,"95":0.03288,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 53 55 57 58 59 61 64 65 69 71 74 75 76 79 82 96 3.5 3.6"},D:{"38":0.00939,"41":0.0047,"48":0.02349,"49":0.38985,"50":0.0047,"56":0.00939,"58":0.01409,"61":0.22546,"63":0.01409,"65":0.0047,"66":0.0047,"67":0.00939,"68":0.00939,"69":0.03288,"70":0.00939,"71":0.01409,"72":0.0047,"73":0.01879,"74":0.00939,"75":0.01409,"76":0.00939,"77":0.01409,"78":0.01409,"79":0.18788,"80":0.01879,"81":0.05167,"83":0.03288,"84":0.02349,"85":0.02349,"86":0.05636,"87":0.18318,"88":0.04697,"89":0.05636,"90":0.02818,"91":0.11273,"92":0.14561,"93":0.16909,"94":1.12728,"95":18.72694,"96":9.98582,"97":0.01879,_:"4 5 6 7 8 9 10 11 12 13 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 51 52 53 54 55 57 59 60 62 64 98 99"},F:{"28":0.00939,"36":0.01409,"40":0.0047,"46":0.01409,"78":0.00939,"79":0.03288,"80":1.35743,"81":0.46031,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0047,"16":0.0047,"17":0.00939,"18":0.02349,"84":0.00939,"85":0.01409,"89":0.0047,"91":0.0047,"92":0.00939,"93":0.00939,"94":0.05167,"95":2.16532,"96":0.74682,_:"12 13 14 79 80 81 83 86 87 88 90"},E:{"4":0,"7":0.0047,"13":0.01879,"14":0.07515,"15":0.13621,_:"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.00939,"12.1":0.01879,"13.1":0.07046,"14.1":0.33818,"15.1":0.22076},G:{"8":0,"3.2":0,"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.00882,"8.1-8.4":0.00147,"9.0-9.2":0.00735,"9.3":0.02574,"10.0-10.2":0.00735,"10.3":0.06251,"11.0-11.2":0.01691,"11.3-11.4":0.01985,"12.0-12.1":0.01912,"12.2-12.5":0.29856,"13.0-13.1":0.00956,"13.2":0.00809,"13.3":0.03677,"13.4-13.7":0.16472,"14.0-14.4":0.4574,"14.5-14.8":3.41062,"15.0-15.1":2.79291},P:{"4":0.08399,"5.0-5.4":0.08232,"6.2-6.4":0.0105,"7.2-7.4":0.04222,"8.2":0.01024,"9.2":0.0105,"10.1":0.02111,"11.1-11.2":0.07349,"12.0":0.0315,"13.0":0.11549,"14.0":0.15749,"15.0":2.00533},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00265,"4.2-4.3":0.01989,"4.4":0,"4.4.3-4.4.4":0.12064},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00484,"11":0.61516,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":43.59855},S:{"2.5":0},R:{_:"0"},M:{"0":0.1803},Q:{"10.4":0},O:{"0":0.03712},H:{"0":0.21588}}; +module.exports={C:{"48":0.00891,"51":0.00446,"52":0.23612,"56":0.00891,"60":0.00891,"61":0.00446,"62":0.00446,"63":0.01782,"65":0.00446,"66":0.00891,"67":0.00891,"68":0.09801,"70":0.00446,"72":0.02228,"75":0.00446,"78":0.07128,"79":0.00446,"80":0.02228,"81":0.00891,"83":0.00891,"84":0.01782,"85":0.01337,"86":0.01782,"87":0.02673,"88":0.0401,"89":0.06237,"90":0.01337,"91":0.12474,"92":0.01782,"93":0.04901,"94":1.81319,"95":3.68874,"96":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 47 49 50 53 54 55 57 58 59 64 69 71 73 74 76 77 82 97 3.5 3.6"},D:{"34":0.00446,"38":0.01337,"48":0.01782,"49":0.23166,"50":0.00446,"51":0.08465,"53":0.00446,"56":0.01337,"58":0.00446,"61":0.04901,"63":0.01782,"65":0.00891,"66":0.00891,"67":0.01337,"68":0.00891,"69":0.03564,"70":0.00891,"71":0.01782,"72":0.00446,"73":0.00891,"74":0.00891,"75":0.00891,"76":0.00891,"77":0.01782,"78":0.00891,"79":0.21384,"80":0.02228,"81":0.03564,"83":0.02228,"84":0.02673,"85":0.01782,"86":0.03564,"87":0.14256,"88":0.0401,"89":0.06237,"90":0.02673,"91":0.07574,"92":0.1292,"93":0.52569,"94":0.24057,"95":0.5747,"96":27.05522,"97":0.01337,"98":0.00446,_:"4 5 6 7 8 9 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 54 55 57 59 60 62 64 99"},F:{"28":0.01782,"36":0.01782,"40":0.00891,"46":0.02228,"68":0.00891,"78":0.00891,"79":0.00891,"80":0.03119,"81":0.7529,"82":1.0202,_:"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 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00891},E:{"4":0,"7":0.00446,"10":0.00446,"13":0.00891,"14":0.06683,"15":0.06683,_:"0 5 6 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00891,"12.1":0.02228,"13.1":0.05346,"14.1":0.2183,"15.1":0.30294,"15.2":0.05792},B:{"17":0.01337,"18":0.01782,"89":0.00446,"91":0.00446,"92":0.00891,"93":0.00446,"94":0.01337,"95":0.05792,"96":2.7131,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0023,"6.0-6.1":0.00154,"7.0-7.1":0.01306,"8.1-8.4":0,"9.0-9.2":0.00154,"9.3":0.02612,"10.0-10.2":0.00615,"10.3":0.05762,"11.0-11.2":0.02151,"11.3-11.4":0.02151,"12.0-12.1":0.0169,"12.2-12.5":0.29271,"13.0-13.1":0.01076,"13.2":0.00461,"13.3":0.03611,"13.4-13.7":0.13906,"14.0-14.4":0.39182,"14.5-14.8":2.27409,"15.0-15.1":3.98658,"15.2":0.37722},P:{"4":0.10586,_:"5.0-5.4 8.2","6.2-6.4":0.01031,"7.2-7.4":0.03179,"9.2":0.01059,"10.1":0.02119,"11.1-11.2":0.0741,"12.0":0.03176,"13.0":0.10586,"14.0":0.13762,"15.0":0.29641},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00372,"4.2-4.3":0.01362,"4.4":0,"4.4.3-4.4.4":0.11022},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00458,"11":0.49884,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.03882},H:{"0":0.25203},L:{"0":45.95016},S:{"2.5":0},R:{_:"0"},M:{"0":0.19966},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js index 597f4c53a82423..a65a5e0c986601 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.00803,"36":0.01205,"52":0.01205,"59":0.05622,"63":0.05221,"68":0.04418,"78":0.04016,"79":0.01606,"88":0.00402,"91":0.23293,"92":0.00402,"93":0.18875,"94":1.02408,"95":0.00402,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 89 90 96 3.5 3.6"},D:{"38":0.00803,"49":0.04016,"50":0.00402,"55":0.00402,"56":0.01205,"60":0.00803,"64":0.00402,"65":0.0241,"67":0.00402,"71":0.00402,"73":0.00402,"74":0.00803,"75":0.00402,"77":0.00803,"78":0.00803,"79":0.06024,"80":0.01205,"81":0.01205,"83":0.0241,"84":0.02008,"85":0.0241,"86":0.03614,"87":0.15662,"88":0.04418,"89":0.0241,"90":0.14056,"91":0.05221,"92":0.22088,"93":0.18875,"94":1.02408,"95":16.44954,"96":10.09622,"97":0.01205,_:"4 5 6 7 8 9 10 11 12 13 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 57 58 59 61 62 63 66 68 69 70 72 76 98 99"},F:{"36":0.01205,"46":0.01205,"64":0.00803,"76":0.00402,"77":0.0241,"78":0.02008,"79":0.09237,"80":0.21285,"81":0.03213,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 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.00402,"15":0.00803,"17":0.01205,"18":0.04016,"84":0.0241,"89":0.01205,"91":0.01205,"92":0.01205,"93":0.01205,"94":0.14458,"95":2.82726,"96":1.14858,_:"13 14 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"12":0.00803,"13":0.03614,"14":0.42168,"15":0.55822,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00402,"11.1":0.00803,"12.1":0.04819,"13.1":0.26907,"14.1":1.11645,"15.1":0.71485},G:{"8":0.00344,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01204,"6.0-6.1":0,"7.0-7.1":0.01892,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.11869,"10.0-10.2":0.00688,"10.3":0.07913,"11.0-11.2":0.03784,"11.3-11.4":0.02236,"12.0-12.1":0.043,"12.2-12.5":0.50572,"13.0-13.1":0.04816,"13.2":0.01892,"13.3":0.09633,"13.4-13.7":0.32855,"14.0-14.4":1.20238,"14.5-14.8":6.28025,"15.0-15.1":8.37539},P:{"4":0.16428,"5.0-5.4":0.08232,"6.2-6.4":0.01027,"7.2-7.4":0.0616,"8.2":0.05025,"9.2":0.07187,"10.1":0.03153,"11.1-11.2":0.17455,"12.0":0.04107,"13.0":0.20535,"14.0":0.23615,"15.0":2.65927},I:{"0":0,"3":0,"4":0.00076,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00191,"4.4":0,"4.4.3-4.4.4":0.01528},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0203,"9":0.00406,"11":0.34511,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":35.86176},S:{"2.5":0},R:{_:"0"},M:{"0":0.23338},Q:{"10.4":0},O:{"0":3.21341},H:{"0":0.48155}}; +module.exports={C:{"34":0.00785,"36":0.01178,"52":0.05104,"63":0.0157,"68":0.01963,"78":0.00785,"80":0.0157,"89":0.00393,"91":0.02748,"92":0.00393,"93":0.00393,"94":0.38475,"95":0.84802,_:"2 3 4 5 6 7 8 9 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 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 90 96 97 3.5 3.6"},D:{"38":0.0157,"49":0.04319,"50":0.01178,"53":0.00393,"56":0.01178,"60":0.00393,"65":0.0157,"68":0.00393,"70":0.00785,"73":0.03141,"74":0.01178,"75":0.00785,"78":0.00785,"79":0.04711,"80":0.0157,"81":0.00785,"83":0.03533,"84":0.03926,"85":0.01178,"86":0.03141,"87":0.10208,"88":0.03141,"89":0.01963,"90":0.12563,"91":0.04711,"92":0.16882,"93":0.10993,"94":0.27875,"95":0.49468,"96":26.03723,"97":0.01963,"98":0.00393,_:"4 5 6 7 8 9 10 11 12 13 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 57 58 59 61 62 63 64 66 67 69 71 72 76 77 99"},F:{"36":0.01963,"76":0.01963,"77":0.01178,"78":0.0157,"79":0.07067,"80":0.04319,"81":0.15704,"82":0.06282,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00785,"13":0.03141,"14":0.33764,"15":0.32978,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00393,"11.1":0.0157,"12.1":0.04711,"13.1":0.23556,"14.1":1.09535,"15.1":0.9815,"15.2":0.16097},B:{"15":0.00393,"17":0.00785,"18":0.02356,"84":0.00785,"89":0.00785,"92":0.01178,"93":0.00785,"94":0.02356,"95":0.16097,"96":3.89852,_:"12 13 14 16 79 80 81 83 85 86 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00732,"6.0-6.1":0,"7.0-7.1":0.01281,"8.1-8.4":0,"9.0-9.2":0.00366,"9.3":0.12449,"10.0-10.2":0.00366,"10.3":0.10984,"11.0-11.2":0.04577,"11.3-11.4":0.01831,"12.0-12.1":0.04211,"12.2-12.5":0.44669,"13.0-13.1":0.03295,"13.2":0.01281,"13.3":0.05675,"13.4-13.7":0.32953,"14.0-14.4":0.99224,"14.5-14.8":4.56028,"15.0-15.1":10.42586,"15.2":1.08195},P:{"4":0.15395,"5.0-5.4":0.01085,"6.2-6.4":0.03103,"7.2-7.4":0.09237,"8.2":0.01019,"9.2":0.02053,"10.1":0.01019,"11.1-11.2":0.16422,"12.0":0.04105,"13.0":0.12316,"14.0":0.15395,"15.0":0.41054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00354,"4.4":0,"4.4.3-4.4.4":0.01468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27089,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":3.13418},H:{"0":0.47154},L:{"0":36.3222},S:{"2.5":0},R:{_:"0"},M:{"0":0.20044},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js index 4eb87be8a236b9..7108d7ef8b46f5 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:{"4":0.01257,"5":0.04085,"15":0.02514,"17":0.06598,"24":0.00314,"35":0.00628,"39":0.00628,"41":0.00628,"43":0.00628,"47":0.00628,"52":0.01571,"54":0.01571,"56":0.04713,"60":0.00943,"68":0.01571,"72":0.01571,"73":0.00628,"76":0.00943,"78":0.00943,"80":0.00628,"81":0.00314,"84":0.01571,"86":0.01257,"88":0.14453,"89":0.03142,"90":0.01257,"91":0.04085,"92":0.06912,"93":0.4336,"94":1.82236,"95":0.08483,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 36 37 38 40 42 44 45 46 48 49 50 51 53 55 57 58 59 61 62 63 64 65 66 67 69 70 71 74 75 77 79 82 83 85 87 96 3.5 3.6"},D:{"23":0.02514,"24":0.06598,"25":0.01885,"43":0.01571,"49":0.01257,"55":0.00314,"57":0.05341,"59":0.00628,"60":0.00314,"64":0.06598,"66":0.00314,"67":0.00943,"68":0.01885,"70":0.00628,"71":0.00943,"73":0.00628,"76":0.02828,"78":0.00628,"79":0.05341,"80":0.05656,"81":0.85777,"83":0.06598,"84":0.00314,"85":0.01257,"86":0.04085,"87":0.06598,"88":0.0377,"89":0.04713,"90":0.22937,"91":0.10683,"92":0.19795,"93":0.31734,"94":0.59698,"95":8.36086,"96":4.60931,"97":0.00314,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 56 58 61 62 63 65 69 72 74 75 77 98 99"},F:{"21":0.00628,"42":0.00943,"53":0.00628,"60":0.00628,"67":0.00628,"74":0.00314,"77":0.00943,"78":0.01257,"79":0.05027,"80":0.95203,"81":0.24508,_:"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 45 46 47 48 49 50 51 52 54 55 56 57 58 62 63 64 65 66 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.11311,"13":0.02514,"14":0.00628,"15":0.02828,"16":0.00943,"17":0.04399,"18":0.12568,"84":0.02514,"85":0.03456,"88":0.00628,"89":0.0597,"90":0.03456,"91":0.02828,"92":0.0377,"93":0.01885,"94":0.40532,"95":2.52303,"96":1.05257,_:"79 80 81 83 86 87"},E:{"4":0,"13":0.00314,"14":0.00943,"15":0.04085,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 12.1","5.1":0.02514,"10.1":0.00943,"11.1":0.00314,"13.1":0.09112,"14.1":0.07227,"15.1":0.05341},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01775,"7.0-7.1":0.0192,"8.1-8.4":0.00543,"9.0-9.2":0,"9.3":0.0192,"10.0-10.2":0.00072,"10.3":0.04491,"11.0-11.2":0.0239,"11.3-11.4":0.01521,"12.0-12.1":0.02934,"12.2-12.5":0.57043,"13.0-13.1":0.03006,"13.2":0.01376,"13.3":0.21441,"13.4-13.7":0.1264,"14.0-14.4":0.86705,"14.5-14.8":1.00576,"15.0-15.1":0.61751},P:{"4":2.85401,"5.0-5.4":0.01023,"6.2-6.4":0.02046,"7.2-7.4":0.07161,"8.2":0.01024,"9.2":0.05115,"10.1":0.02046,"11.1-11.2":0.09206,"12.0":0.01069,"13.0":0.08184,"14.0":0.08184,"15.0":0.95134},I:{"0":0,"3":0,"4":0.0003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0009,"4.2-4.3":0.00461,"4.4":0,"4.4.3-4.4.4":0.04906},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00628,"10":0.02199,"11":0.10683,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":49.78393},S:{"2.5":0.01372},R:{_:"0"},M:{"0":0.09601},Q:{"10.4":0},O:{"0":1.67335},H:{"0":14.01127}}; +module.exports={C:{"3":0.00299,"4":0.01793,"7":0.01195,"15":0.02988,"20":0.00299,"28":0.00598,"32":0.00598,"33":0.00299,"43":0.00598,"44":0.01793,"52":0.03884,"56":0.01494,"66":0.03287,"72":0.01494,"73":0.00299,"77":0.00598,"78":0.00598,"81":0.00896,"85":0.00299,"88":0.03287,"91":0.02689,"92":0.01494,"93":0.02092,"94":0.73505,"95":1.78085,"96":0.12251,_:"2 5 6 8 9 10 11 12 13 14 16 17 18 19 21 22 23 24 25 26 27 29 30 31 34 35 36 37 38 39 40 41 42 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 74 75 76 79 80 82 83 84 86 87 89 90 97 3.5 3.6"},D:{"23":0.00896,"24":0.00299,"25":0.01793,"26":0.00299,"43":0.01793,"44":0.00299,"46":0.00299,"49":0.00896,"55":0.00896,"57":0.00896,"63":0.01793,"65":0.00896,"67":0.00896,"68":0.00299,"69":0.00299,"70":0.00299,"72":0.05677,"74":0.00896,"75":0.01793,"76":0.02988,"79":0.03884,"80":0.09263,"81":0.20617,"83":0.02988,"84":0.01793,"85":0.01793,"86":0.02689,"87":0.10757,"88":0.03586,"89":0.04781,"90":0.04183,"91":0.08964,"92":0.11354,"93":0.13147,"94":0.2241,"95":0.41234,"96":12.57052,"97":0.00598,"98":0.03586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 47 48 50 51 52 53 54 56 58 59 60 61 62 64 66 71 73 77 78 99"},F:{"42":0.06275,"57":0.02689,"70":0.00299,"75":0.00299,"79":0.06275,"80":0.03586,"81":0.25099,"82":0.51692,_:"9 11 12 15 16 17 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 58 60 62 63 64 65 66 67 68 69 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},E:{"4":0,"6":0.00598,"12":0.01494,"13":0.00896,"14":0.00896,"15":0.00598,_:"0 5 7 8 9 10 11 3.1 3.2 6.1 9.1","5.1":0.01494,"7.1":0.01494,"10.1":0.00896,"11.1":0.01793,"12.1":0.0239,"13.1":0.10159,"14.1":0.08665,"15.1":0.14342,"15.2":0.00598},B:{"12":0.04781,"13":0.01494,"14":0.08068,"15":0.00598,"16":0.00598,"17":0.04183,"18":0.11056,"84":0.01195,"85":0.01195,"89":0.01195,"90":0.04781,"91":0.02092,"92":0.03287,"93":0.01195,"94":0.01494,"95":0.03586,"96":2.77585,_:"79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00068,"6.0-6.1":0.01355,"7.0-7.1":0.00474,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02167,"10.0-10.2":0,"10.3":0.02303,"11.0-11.2":0.00271,"11.3-11.4":0.04199,"12.0-12.1":0.0149,"12.2-12.5":0.508,"13.0-13.1":0.01829,"13.2":0.01084,"13.3":0.22318,"13.4-13.7":0.11582,"14.0-14.4":0.52493,"14.5-14.8":0.86156,"15.0-15.1":0.95029,"15.2":0.05012},P:{"4":6.92235,"5.0-5.4":0.02015,"6.2-6.4":0.05038,"7.2-7.4":0.03023,_:"8.2","9.2":0.03023,"10.1":0.03023,"11.1-11.2":0.07053,"12.0":0.14107,"13.0":0.03023,"14.0":0.05038,"15.0":0.35267},I:{"0":0,"3":0,"4":0.00035,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00052,"4.2-4.3":0.00408,"4.4":0,"4.4.3-4.4.4":0.05114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00305,"9":0.00305,"10":0.01222,"11":0.11912,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.02103},O:{"0":1.12176},H:{"0":11.32368},L:{"0":52.35249},S:{"2.5":0.00701},R:{_:"0"},M:{"0":0.08413},Q:{"10.4":0.00701}}; 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 6b62364ef41450..2a5ecc5d0bc3c4 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:{"15":0.00689,"17":0.00689,"40":0.00689,"47":0.01034,"50":0.00345,"52":0.01378,"56":0.00345,"65":0.00689,"67":0.00689,"68":0.00345,"72":0.03101,"78":0.03445,"79":0.01034,"82":0.00689,"85":0.11024,"88":0.01034,"89":0.02067,"90":0.00689,"91":0.11024,"92":0.02756,"93":0.32039,"94":1.67083,"95":0.11369,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 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 48 49 51 53 54 55 57 58 59 60 61 62 63 64 66 69 70 71 73 74 75 76 77 80 81 83 84 86 87 96 3.5 3.6"},D:{"19":0.00689,"23":0.00689,"27":0.02067,"31":0.2756,"33":0.01034,"38":0.00689,"43":0.00689,"44":0.00689,"47":0.01034,"48":0.01034,"49":0.02067,"55":0.00689,"57":0.00689,"58":0.00689,"59":0.05857,"60":0.00689,"62":0.04823,"63":0.08268,"64":0.01034,"65":0.01723,"66":0.00345,"67":0.00345,"68":0.00689,"69":0.10335,"70":0.03445,"71":0.01378,"72":0.02067,"73":0.00689,"74":0.0379,"75":0.01378,"76":0.01378,"77":0.03445,"78":0.01378,"79":0.05857,"80":0.03445,"81":0.02412,"83":0.02756,"84":0.02412,"85":0.07235,"86":0.07579,"87":0.94393,"88":0.05857,"89":0.01723,"90":0.10335,"91":0.23771,"92":0.26527,"93":0.47541,"94":0.80958,"95":9.10514,"96":5.49133,"97":0.07579,"98":0.00689,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 24 25 26 28 29 30 32 34 35 36 37 39 40 41 42 45 46 50 51 52 53 54 56 61 99"},F:{"42":0.00689,"46":0.00345,"57":0.02067,"65":0.01034,"77":0.00345,"79":0.01034,"80":0.63733,"81":0.2067,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 66 67 68 69 70 71 72 73 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.01723,"13":0.01034,"14":0.00689,"16":0.00689,"17":0.00345,"18":0.07579,"84":0.01034,"85":0.00689,"89":0.01723,"90":0.00345,"92":0.04134,"93":0.01034,"94":0.03445,"95":1.21264,"96":0.43407,_:"15 79 80 81 83 86 87 88 91"},E:{"4":0,"13":0.01034,"14":0.10335,"15":0.07579,_:"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.01034,"12.1":0.01034,"13.1":0.06201,"14.1":0.11024,"15.1":0.06546},G:{"8":0.0018,"3.2":0.003,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0024,"7.0-7.1":0.18443,"8.1-8.4":0,"9.0-9.2":0.0024,"9.3":0.05587,"10.0-10.2":0,"10.3":0.01862,"11.0-11.2":0.06608,"11.3-11.4":0.01021,"12.0-12.1":0.01862,"12.2-12.5":1.27717,"13.0-13.1":0.02103,"13.2":0.0036,"13.3":0.29256,"13.4-13.7":0.1598,"14.0-14.4":0.80319,"14.5-14.8":1.80822,"15.0-15.1":1.27537},P:{"4":0.13035,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.1738,"8.2":0.01112,"9.2":0.01156,"10.1":0.03076,"11.1-11.2":0.02312,"12.0":0.01086,"13.0":0.12717,"14.0":0.04624,"15.0":0.41618},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.01944,"4.4":0,"4.4.3-4.4.4":0.10877},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01109,"10":0.00555,"11":0.31063,_:"6 7 9 5.5"},J:{"7":0,"10":0.01967},N:{"10":0.01155,_:"11"},L:{"0":62.33131},S:{"2.5":0.08522},R:{_:"0"},M:{"0":0.11799},Q:{"10.4":0.01967},O:{"0":0.98325},H:{"0":4.07724}}; +module.exports={C:{"4":0.00357,"43":0.00715,"47":0.00715,"52":0.01072,"63":0.00357,"69":0.00715,"72":0.02501,"78":0.01787,"79":0.00715,"84":0.00715,"85":0.07146,"87":0.00357,"88":0.01429,"89":0.01072,"90":0.06074,"91":0.03573,"92":0.00357,"93":0.02858,"94":0.5431,"95":0.83966,"96":0.03216,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 73 74 75 76 77 80 81 82 83 86 97 3.5 3.6"},D:{"11":0.00715,"25":0.00357,"26":0.00357,"43":0.00357,"46":0.00357,"47":0.01072,"48":0.00357,"49":0.00357,"50":0.00357,"55":0.00357,"57":0.00357,"58":0.00715,"62":0.01787,"63":0.10362,"64":0.00715,"65":0.02144,"68":0.00357,"69":0.0536,"70":0.01429,"71":0.00715,"72":0.00715,"73":0.00357,"74":0.02858,"75":0.01429,"76":0.07146,"77":0.03573,"78":0.01072,"79":0.03573,"80":0.13935,"81":0.01429,"83":0.01429,"84":0.04645,"85":0.01429,"86":0.03573,"87":0.21081,"88":0.05717,"89":0.02858,"90":0.02858,"91":0.14649,"92":0.1858,"93":0.30371,"94":0.20366,"95":0.52523,"96":13.30943,"98":0.00357,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 51 52 53 54 56 59 60 61 66 67 97 99"},F:{"57":0.01429,"77":0.02501,"79":0.01429,"80":0.01787,"81":0.26083,"82":0.37159,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00357,"14":0.04645,"15":0.02858,_:"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.01072,"12.1":0.00715,"13.1":0.03216,"14.1":0.04288,"15.1":0.09647,"15.2":0.01072},B:{"12":0.01429,"13":0.00357,"14":0.00357,"15":0.00357,"17":0.00715,"18":0.03573,"81":0.01787,"84":0.01072,"85":0.00357,"89":0.0393,"92":0.02144,"93":0.00715,"94":0.01072,"95":0.04645,"96":1.18624,_:"16 79 80 83 86 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00104,"7.0-7.1":0.0334,"8.1-8.4":0.00104,"9.0-9.2":0,"9.3":0.03132,"10.0-10.2":0,"10.3":0.02871,"11.0-11.2":0.03184,"11.3-11.4":0.00522,"12.0-12.1":0.05063,"12.2-12.5":1.47861,"13.0-13.1":0.00731,"13.2":0.00783,"13.3":0.24583,"13.4-13.7":0.13257,"14.0-14.4":0.49061,"14.5-14.8":1.16337,"15.0-15.1":1.3831,"15.2":0.12631},P:{"4":0.05699,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.06478,"7.2-7.4":0.12539,"11.1-11.2":0.08439,"12.0":0.07558,"13.0":0.05699,"14.0":0.0114,"15.0":0.09119},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00102,"4.2-4.3":0.00123,"4.4":0,"4.4.3-4.4.4":0.02988},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00517,"11":0.19134,_:"6 7 8 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.03214},O:{"0":1.15043},H:{"0":3.30397},L:{"0":68.78719},S:{"2.5":0.03856},R:{_:"0"},M:{"0":0.09641},Q:{"10.4":0.01285}}; 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 3bde2ca2c081dd..d05e1461596b8d 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.10036,"89":0.00502,"91":0.02509,"92":0.01004,"93":0.23083,"94":0.72259,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"49":0.05018,"65":0.02509,"70":0.01004,"71":0.00502,"76":0.01505,"77":0.17061,"78":0.1104,"79":0.00502,"80":0.01004,"81":0.23083,"85":0.05018,"86":0.06523,"87":0.11541,"88":0.02509,"89":0.03513,"90":0.04014,"91":0.19068,"92":0.1104,"93":0.43155,"94":2.88033,"95":13.54358,"96":7.67252,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 72 73 74 75 83 84 97 98 99"},F:{"79":0.0552,"80":0.62223,"81":0.28603,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"16":0.01505,"17":0.01505,"18":0.07025,"89":0.01004,"94":0.16058,"95":4.95778,"96":1.24446,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 90 91 92 93"},E:{"4":0,"12":0.01004,"13":0.06022,"14":0.37133,"15":1.24948,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 7.1 9.1","6.1":0.02007,"10.1":0.66739,"11.1":0.09032,"12.1":0.08531,"13.1":1.4502,"14.1":4.2653,"15.1":5.99149},G:{"8":0,"3.2":0,"4.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.0034,"9.0-9.2":0.04075,"9.3":0.19695,"10.0-10.2":0,"10.3":0.12564,"11.0-11.2":0.0034,"11.3-11.4":0.02717,"12.0-12.1":0.02377,"12.2-12.5":1.13757,"13.0-13.1":0.01019,"13.2":0,"13.3":0.26147,"13.4-13.7":0.59765,"14.0-14.4":1.13078,"14.5-14.8":12.84605,"15.0-15.1":17.55253},P:{"4":0.38159,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.0212,"8.2":0.01112,"9.2":0.0106,"10.1":0.03076,"11.1-11.2":0.0318,"12.0":0.01086,"13.0":0.0742,"14.0":0.0954,"15.0":3.01032},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.72761,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00996},N:{"10":0.01155,_:"11"},L:{"0":11.87968},S:{"2.5":0},R:{_:"0"},M:{"0":0.17437},Q:{"10.4":0},O:{"0":0.00498},H:{"0":0.0283}}; +module.exports={C:{"52":0.00445,"78":0.0578,"85":0.00445,"89":0.00445,"91":0.01334,"93":0.00889,"94":0.2223,"95":0.44905,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 88 90 92 96 97 3.5 3.6"},D:{"49":0.03112,"63":0.00445,"65":0.05335,"66":0.00445,"67":0.03557,"71":0.01778,"73":0.01334,"77":0.19118,"78":0.00889,"79":0.04446,"80":0.00445,"83":0.02223,"85":0.05335,"86":0.04891,"87":0.04446,"89":0.03557,"90":0.05335,"91":0.24453,"92":0.03557,"93":0.09781,"94":1.09816,"95":0.57353,"96":18.56205,"97":0.00889,"98":0.01334,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 69 70 72 74 75 76 81 84 88 99"},F:{"81":0.3379,"82":0.34679,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.14227,"14":0.26231,"15":0.62244,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1","6.1":0.02668,"9.1":0.00889,"10.1":0.41348,"11.1":0.05335,"12.1":0.09781,"13.1":0.81806,"14.1":2.64982,"15.1":8.38516,"15.2":1.14262},B:{"13":0.01334,"15":0.00889,"17":0.01334,"18":0.03112,"85":0.00445,"91":0.00889,"94":0.04001,"95":0.15561,"96":5.23294,_:"12 14 16 79 80 81 83 84 86 87 88 89 90 92 93"},G:{"8":0,"3.2":0,"4.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.00429,"9.0-9.2":0.01716,"9.3":0.06007,"10.0-10.2":0,"10.3":0.07294,"11.0-11.2":0.00858,"11.3-11.4":0.00858,"12.0-12.1":0.01716,"12.2-12.5":0.9396,"13.0-13.1":0.00858,"13.2":0,"13.3":0.16733,"13.4-13.7":0.74653,"14.0-14.4":0.75941,"14.5-14.8":5.86502,"15.0-15.1":31.70198,"15.2":2.51848},P:{"4":0.17715,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.06478,"7.2-7.4":0.12539,"11.1-11.2":0.03126,"12.0":0.07558,"13.0":0.02084,"14.0":0.03126,"15.0":0.29178},I:{"0":0,"3":0,"4":0.0002,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00054,"4.4":0,"4.4.3-4.4.4":0.00481},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.5024,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01578},L:{"0":10.0892},S:{"2.5":0},R:{_:"0"},M:{"0":0.09999},Q:{"10.4":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 40a431129590aa..5734f77ca9d8d6 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:{"48":0.03056,"52":0.03929,"78":0.03056,"80":0.00873,"83":0.00437,"86":0.01746,"88":0.0131,"89":0.01746,"91":0.0131,"92":0.03056,"93":0.33618,"94":1.84245,"95":0.03056,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 81 82 84 85 87 90 96 3.5 3.6"},D:{"34":0.00873,"38":0.03056,"47":0.16591,"49":0.22703,"50":0.00873,"52":0.0131,"53":0.0262,"55":0.06986,"60":0.0131,"62":0.03929,"63":0.00437,"65":0.04803,"67":0.02183,"68":0.01746,"70":0.00437,"71":0.02183,"72":0.02183,"73":0.03056,"74":0.04803,"75":0.02183,"78":0.03056,"79":0.15281,"80":0.0262,"81":0.06986,"83":0.01746,"84":0.0262,"85":0.03493,"86":0.01746,"87":0.15281,"88":0.03056,"89":0.01746,"90":0.03929,"91":0.03056,"92":0.25759,"93":0.17027,"94":1.10896,"95":17.4509,"96":10.08983,"97":0.03929,_:"4 5 6 7 8 9 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 54 56 57 58 59 61 64 66 69 76 77 98 99"},F:{"28":0.02183,"36":0.00873,"46":0.01746,"79":0.03056,"80":0.55885,"81":0.21393,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.03056,"15":0.00873,"17":0.00437,"18":0.02183,"89":0.00873,"91":0.00437,"92":0.0131,"94":0.08295,"95":1.7202,"96":0.668,_:"12 13 16 79 80 81 83 84 85 86 87 88 90 93"},E:{"4":0,"12":0.00873,"13":0.15281,"14":0.4104,"15":1.08713,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.13535,"10.1":0.04366,"11.1":0.04803,"12.1":0.09169,"13.1":0.29252,"14.1":1.86428,"15.1":1.38402},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01895,"7.0-7.1":0.09002,"8.1-8.4":0.04106,"9.0-9.2":0.04422,"9.3":0.46747,"10.0-10.2":0.01579,"10.3":0.23215,"11.0-11.2":0.0379,"11.3-11.4":0.01421,"12.0-12.1":0.03316,"12.2-12.5":1.17498,"13.0-13.1":0.03001,"13.2":0.03001,"13.3":0.10739,"13.4-13.7":0.2969,"14.0-14.4":0.78964,"14.5-14.8":4.1235,"15.0-15.1":8.2391},P:{"4":0.5172,"5.0-5.4":0.08232,"6.2-6.4":0.03096,"7.2-7.4":0.04222,"8.2":0.01024,"9.2":0.02093,"10.1":0.02111,"11.1-11.2":0.03167,"12.0":0.01056,"13.0":0.095,"14.0":0.13722,"15.0":1.59382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00032,"4.2-4.3":0.00494,"4.4":0,"4.4.3-4.4.4":0.01164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17027,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":34.81987},S:{"2.5":0},R:{_:"0"},M:{"0":0.20282},Q:{"10.4":0.00563},O:{"0":2.23106},H:{"0":1.5735}}; +module.exports={C:{"32":0.00427,"44":0.00427,"48":0.01707,"52":0.0384,"78":0.01707,"80":0.00427,"84":0.00853,"88":0.00853,"89":0.0128,"91":0.02134,"92":0.00427,"93":0.00853,"94":0.70832,"95":1.35264,"96":0.02134,_:"2 3 4 5 6 7 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 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 81 82 83 85 86 87 90 97 3.5 3.6"},D:{"34":0.00853,"38":0.0128,"47":0.09387,"49":0.24322,"50":0.00853,"52":0.0128,"53":0.0256,"55":0.05974,"56":0.00427,"60":0.00853,"62":0.0512,"63":0.00427,"65":0.08107,"66":0.00427,"67":0.0128,"68":0.0128,"70":0.00853,"71":0.0256,"72":0.02134,"73":0.04267,"74":0.01707,"75":0.05547,"77":0.00853,"78":0.02134,"79":0.16641,"80":0.02134,"81":0.0512,"83":0.00853,"84":0.02134,"86":0.00853,"87":0.08961,"88":0.02134,"89":0.02134,"90":0.02987,"91":0.0256,"92":0.15361,"93":0.05547,"94":0.24749,"95":0.4395,"96":27.06131,"97":0.05974,_:"4 5 6 7 8 9 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 54 57 58 59 61 64 69 76 85 98 99"},F:{"28":0.03414,"36":0.00853,"46":0.01707,"79":0.0128,"80":0.00853,"81":0.46937,"82":0.43097,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.02134,"13":0.14081,"14":0.34989,"15":0.64858,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.18348,"10.1":0.04694,"11.1":0.0512,"12.1":0.10241,"13.1":0.29869,"14.1":1.47638,"15.1":2.22311,"15.2":0.30296},B:{"14":0.00853,"17":0.0128,"18":0.0256,"84":0.00427,"89":0.00427,"92":0.00853,"94":0.00853,"95":0.04694,"96":2.21031,_:"12 13 15 16 79 80 81 83 85 86 87 88 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01508,"7.0-7.1":0.13233,"8.1-8.4":0.00838,"9.0-9.2":0.05695,"9.3":0.33167,"10.0-10.2":0.0067,"10.3":0.25629,"11.0-11.2":0.02178,"11.3-11.4":0.01173,"12.0-12.1":0.04188,"12.2-12.5":1.0637,"13.0-13.1":0.01843,"13.2":0.01675,"13.3":0.06533,"13.4-13.7":0.26969,"14.0-14.4":0.66837,"14.5-14.8":2.77566,"15.0-15.1":10.11768,"15.2":0.86771},P:{"4":0.46619,_:"5.0-5.4 8.2","6.2-6.4":0.01031,"7.2-7.4":0.03179,"9.2":0.02119,"10.1":0.02119,"11.1-11.2":0.04238,"12.0":0.0106,"13.0":0.08476,"14.0":0.04238,"15.0":0.2225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00051,"4.2-4.3":0.00137,"4.4":0,"4.4.3-4.4.4":0.00958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07254,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":2.10401},H:{"0":1.71513},L:{"0":35.27854},S:{"2.5":0},R:{_:"0"},M:{"0":0.22359},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js index 72d22626386cf2..8abfef71db7641 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:{"17":0.00389,"48":0.00389,"52":0.05054,"56":0.00778,"63":0.01166,"66":0.00389,"68":0.00778,"69":0.00389,"71":0.00389,"72":0.01555,"73":0.01166,"78":0.03888,"80":0.00389,"82":0.00389,"83":0.00778,"84":0.01555,"85":0.00778,"86":0.00389,"87":0.00778,"88":0.01555,"89":0.02722,"90":0.00778,"91":0.01944,"92":0.02722,"93":0.33826,"94":2.07619,"95":0.0311,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 64 65 67 70 74 75 76 77 79 81 96 3.5 3.6"},D:{"24":0.00389,"38":0.00778,"41":0.00389,"49":0.04666,"53":0.00389,"62":0.00778,"63":0.01555,"65":0.00778,"66":0.00778,"67":0.01555,"68":0.00778,"69":0.01555,"70":0.05054,"71":0.01166,"72":0.00778,"73":0.00778,"74":0.00778,"75":0.02333,"76":0.01166,"77":0.01166,"78":0.01166,"79":0.06221,"80":0.02722,"81":0.0311,"83":0.03499,"84":0.01944,"85":0.05443,"86":0.03888,"87":0.10886,"88":0.04277,"89":0.07776,"90":0.04666,"91":0.31493,"92":0.25272,"93":0.20606,"94":0.72317,"95":16.75339,"96":10.6609,"97":0.00389,_:"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 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 64 98 99"},F:{"77":0.00778,"78":0.00778,"79":0.01166,"80":1.01477,"81":0.44323,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00389,"15":0.00389,"16":0.00389,"17":0.00778,"18":0.0311,"89":0.01555,"91":0.01166,"92":0.01166,"93":0.00778,"94":0.0311,"95":1.33747,"96":0.58709,_:"12 13 79 80 81 83 84 85 86 87 88 90"},E:{"4":0,"13":0.00778,"14":0.06221,"15":0.08165,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0661,"11.1":0.01944,"12.1":0.00778,"13.1":0.05832,"14.1":0.1944,"15.1":0.12442},G:{"8":0.00025,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00051,"5.0-5.1":0.00229,"6.0-6.1":0.00153,"7.0-7.1":0.0173,"8.1-8.4":0.00025,"9.0-9.2":0.00229,"9.3":0.02569,"10.0-10.2":0.00127,"10.3":0.01526,"11.0-11.2":0.00585,"11.3-11.4":0.01221,"12.0-12.1":0.00331,"12.2-12.5":0.13458,"13.0-13.1":0.00407,"13.2":0.00229,"13.3":0.01043,"13.4-13.7":0.06741,"14.0-14.4":0.18749,"14.5-14.8":0.97891,"15.0-15.1":1.06897},P:{"4":0.50154,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.55272,"8.2":0.01024,"9.2":0.07165,"10.1":0.01024,"11.1-11.2":0.26613,"12.0":0.09212,"13.0":0.30707,"14.0":0.33777,"15.0":2.23136},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00525,"4.2-4.3":0.00976,"4.4":0,"4.4.3-4.4.4":0.07054},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00885,"11":0.11946,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04278},N:{"10":0.01155,_:"11"},L:{"0":54.73752},S:{"2.5":0},R:{_:"0"},M:{"0":0.12222},Q:{"10.4":0},O:{"0":0.22},H:{"0":0.46863}}; +module.exports={C:{"47":0.00411,"51":0.00411,"52":0.06165,"54":0.00822,"56":0.00822,"63":0.00822,"67":0.00411,"68":0.00822,"69":0.01233,"71":0.00822,"72":0.00822,"73":0.01233,"78":0.0411,"79":0.00411,"82":0.00411,"83":0.00822,"84":0.00411,"86":0.00822,"88":0.01233,"89":0.02055,"90":0.00822,"91":0.09864,"92":0.02055,"93":0.03699,"94":0.80556,"95":1.65222,"96":0.02055,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 53 55 57 58 59 60 61 62 64 65 66 70 74 75 76 77 80 81 85 87 97 3.5 3.6"},D:{"38":0.01233,"42":0.00411,"49":0.0411,"62":0.00411,"63":0.00822,"65":0.00822,"66":0.00822,"67":0.00822,"68":0.00411,"69":0.02055,"70":0.02055,"71":0.00822,"72":0.01233,"73":0.00411,"74":0.01233,"75":0.00411,"76":0.01233,"77":0.01233,"78":0.01644,"79":0.10686,"80":0.02466,"81":0.02877,"83":0.02877,"84":0.02466,"85":0.07809,"86":0.04932,"87":0.06987,"88":0.02877,"89":0.04932,"90":0.03288,"91":0.26304,"92":0.18495,"93":0.10275,"94":0.24249,"95":1.08915,"96":23.97363,"97":0.00822,_:"4 5 6 7 8 9 10 11 12 13 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 64 98 99"},F:{"77":0.00822,"79":0.00411,"80":0.01644,"81":0.7398,"82":0.71925,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00822,"13":0.00411,"14":0.04932,"15":0.06576,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06576,"11.1":0.02055,"12.1":0.00822,"13.1":0.04932,"14.1":0.1233,"15.1":0.22194,"15.2":0.03699},B:{"13":0.01233,"15":0.00411,"16":0.00411,"17":0.00822,"18":0.02055,"84":0.00822,"89":0.01233,"91":0.00411,"92":0.00822,"93":0.00411,"94":0.01233,"95":0.02466,"96":1.71798,_:"12 14 79 80 81 83 85 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00244,"6.0-6.1":0.00136,"7.0-7.1":0.0095,"8.1-8.4":0.00136,"9.0-9.2":0.00407,"9.3":0.02607,"10.0-10.2":0.00081,"10.3":0.01249,"11.0-11.2":0.00625,"11.3-11.4":0.00896,"12.0-12.1":0.00272,"12.2-12.5":0.14798,"13.0-13.1":0.00244,"13.2":0.00299,"13.3":0.00869,"13.4-13.7":0.07386,"14.0-14.4":0.18518,"14.5-14.8":0.71928,"15.0-15.1":1.3628,"15.2":0.13549},P:{"4":0.61218,"5.0-5.4":0.01042,"6.2-6.4":0.0102,"7.2-7.4":0.52036,"8.2":0.01019,"9.2":0.06122,"10.1":0.02041,"11.1-11.2":0.25508,"12.0":0.08162,"13.0":0.31629,"14.0":0.24487,"15.0":0.57137},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00362,"4.2-4.3":0.0094,"4.4":0,"4.4.3-4.4.4":0.06944},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00482,"11":0.10615,_:"6 7 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0.01767},O:{"0":0.25327},H:{"0":0.46283},L:{"0":57.71718},S:{"2.5":0},R:{_:"0"},M:{"0":0.15903},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js index 0ee3d8af441303..f96d13ee16d3c7 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.00497,"52":0.02484,"56":0.00497,"60":0.00993,"67":0.00993,"68":0.0149,"72":0.00497,"78":0.05464,"79":0.00497,"80":0.00993,"81":0.00993,"82":0.00993,"83":0.00497,"84":0.00993,"85":0.00497,"86":0.00993,"87":0.00497,"88":0.0149,"89":0.0149,"90":0.0149,"91":0.0447,"92":0.0298,"93":0.27815,"94":1.62421,"95":0.00993,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 61 62 63 64 65 66 69 70 71 73 74 75 76 77 96 3.5 3.6"},D:{"38":0.00993,"47":0.0149,"49":0.05464,"53":0.00497,"54":0.01987,"55":0.00993,"58":0.00993,"61":0.03974,"63":0.0149,"65":0.00497,"67":0.00993,"68":0.00497,"69":0.00993,"70":0.00993,"71":0.00497,"72":0.00993,"73":0.00993,"74":0.01987,"75":0.0447,"76":0.01987,"77":0.00993,"78":0.0149,"79":0.13908,"80":0.03477,"81":0.03974,"83":0.0447,"84":0.06954,"85":0.0596,"86":0.07947,"87":0.27815,"88":0.0447,"89":0.07451,"90":0.06457,"91":3.22855,"92":0.19371,"93":0.36756,"94":0.81459,"95":19.26699,"96":13.19732,"97":0.0447,"98":0.00497,_:"4 5 6 7 8 9 10 11 12 13 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 56 57 59 60 62 64 66 99"},F:{"36":0.00993,"75":0.00497,"77":0.00497,"78":0.00993,"79":0.0149,"80":2.26495,"81":1.13248,_:"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 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00497,"16":0.00497,"17":0.00497,"18":0.02484,"84":0.00993,"85":0.00497,"86":0.00497,"89":0.0298,"90":0.00497,"91":0.01987,"92":0.01987,"93":0.00993,"94":0.07451,"95":2.21528,"96":0.9189,_:"12 13 14 79 80 81 83 87 88"},E:{"4":0,"13":0.01987,"14":0.05464,"15":0.11921,_:"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.00993,"12.1":0.01987,"13.1":0.06954,"14.1":0.22848,"15.1":0.17881},G:{"8":0.00063,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00568,"6.0-6.1":0.00126,"7.0-7.1":0.00189,"8.1-8.4":0.00504,"9.0-9.2":0.00063,"9.3":0.03342,"10.0-10.2":0.00189,"10.3":0.03846,"11.0-11.2":0.00757,"11.3-11.4":0.01829,"12.0-12.1":0.0082,"12.2-12.5":0.26862,"13.0-13.1":0.01009,"13.2":0.00504,"13.3":0.03405,"13.4-13.7":0.1299,"14.0-14.4":0.3796,"14.5-14.8":2.98198,"15.0-15.1":2.36906},P:{"4":0.12439,"5.0-5.4":0.08232,"6.2-6.4":0.03096,"7.2-7.4":0.19695,"8.2":0.01024,"9.2":0.02073,"10.1":0.02048,"11.1-11.2":0.10366,"12.0":0.0311,"13.0":0.11402,"14.0":0.12439,"15.0":1.76215},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.00403,"4.4":0,"4.4.3-4.4.4":0.02366},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01605,"9":0.0107,"11":0.18187,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":41.75143},S:{"2.5":0},R:{_:"0"},M:{"0":0.12079},Q:{"10.4":0},O:{"0":0.11576},H:{"0":0.17154}}; +module.exports={C:{"47":0.0051,"52":0.02548,"60":0.01019,"67":0.0051,"68":0.01529,"72":0.0051,"78":0.04077,"79":0.0051,"80":0.0051,"81":0.01019,"82":0.0051,"84":0.01529,"87":0.0051,"88":0.01529,"89":0.01019,"90":0.01019,"91":0.04077,"92":0.01529,"93":0.02548,"94":0.61662,"95":1.12622,"96":0.0051,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 61 62 63 64 65 66 69 70 71 73 74 75 76 77 83 85 86 97 3.5 3.6"},D:{"38":0.01019,"47":0.01529,"49":0.04077,"51":0.01019,"53":0.0051,"54":0.02548,"55":0.01019,"58":0.01019,"61":0.01019,"63":0.01529,"65":0.01019,"67":0.01019,"68":0.0051,"69":0.01019,"70":0.01019,"71":0.01019,"72":0.01019,"73":0.0051,"74":0.01529,"75":0.03567,"76":0.02038,"77":0.01019,"78":0.01529,"79":0.1325,"80":0.03567,"81":0.05606,"83":0.04586,"84":0.08154,"85":0.06115,"86":0.08154,"87":0.19365,"88":0.02548,"89":0.05606,"90":0.05606,"91":2.10974,"92":0.14778,"93":0.32614,"94":0.2548,"95":0.45864,"96":29.29181,"97":0.05606,"98":0.01019,_:"4 5 6 7 8 9 10 11 12 13 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 56 57 59 60 62 64 66 99"},F:{"36":0.01019,"75":0.0051,"78":0.01019,"79":0.0051,"80":0.02038,"81":2.21166,"82":1.21794,_:"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 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02038,"14":0.04586,"15":0.06115,_:"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.0051,"12.1":0.01529,"13.1":0.06625,"14.1":0.16817,"15.1":0.22932,"15.2":0.03567},B:{"15":0.0051,"16":0.0051,"17":0.0051,"18":0.02038,"84":0.01019,"89":0.01019,"91":0.02038,"92":0.01529,"94":0.01019,"95":0.09173,"96":2.86395,_:"12 13 14 79 80 81 83 85 86 87 88 90 93"},G:{"8":0.00129,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0071,"6.0-6.1":0.00129,"7.0-7.1":0.00258,"8.1-8.4":0.00065,"9.0-9.2":0,"9.3":0.03294,"10.0-10.2":0.00129,"10.3":0.04327,"11.0-11.2":0.00904,"11.3-11.4":0.01421,"12.0-12.1":0.00904,"12.2-12.5":0.25642,"13.0-13.1":0.01098,"13.2":0.00388,"13.3":0.03359,"13.4-13.7":0.13241,"14.0-14.4":0.33651,"14.5-14.8":2.09783,"15.0-15.1":3.23587,"15.2":0.22348},P:{"4":0.12451,"5.0-5.4":0.01042,"6.2-6.4":0.01031,"7.2-7.4":0.20752,"8.2":0.01019,"9.2":0.02075,"10.1":0.01031,"11.1-11.2":0.09338,"12.0":0.02075,"13.0":0.11414,"14.0":0.11414,"15.0":0.29053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00237,"4.2-4.3":0.00592,"4.4":0,"4.4.3-4.4.4":0.02604},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01664,"9":0.01109,"10":0.00555,"11":0.15528,_:"6 7 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.11279},H:{"0":0.18107},L:{"0":46.55794},S:{"2.5":0},R:{_:"0"},M:{"0":0.1226},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js index 846b785e50bf1d..40bf7281a56d2f 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.06292,"52":0.01452,"78":0.02904,"81":0.00484,"85":0.00968,"88":0.03872,"91":0.03872,"92":0.01452,"93":0.28072,"94":1.19548,"95":0.01936,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 86 87 89 90 96 3.5 3.6"},D:{"49":0.11132,"56":0.00968,"58":0.00484,"65":0.03388,"68":0.02904,"71":0.00968,"72":0.00484,"73":0.00968,"75":0.04356,"76":0.36784,"77":0.03388,"78":0.00968,"79":0.05324,"80":0.01452,"81":0.01452,"83":0.03872,"84":0.00968,"85":0.00968,"86":0.01452,"87":0.05324,"88":0.0242,"89":0.01936,"90":0.0968,"91":0.15004,"92":0.1936,"93":0.36784,"94":1.8634,"95":13.59556,"96":7.53588,"97":0.01936,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 69 70 74 98 99"},F:{"80":0.28072,"81":0.08228,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.01936,"14":0.00968,"15":0.00968,"16":0.04356,"17":0.02904,"18":0.09196,"86":0.01452,"89":0.00968,"90":0.00968,"91":0.01452,"92":0.04356,"93":0.04356,"94":0.20328,"95":6.71792,"96":2.16348,_:"12 79 80 81 83 84 85 87 88"},E:{"4":0,"12":0.00484,"13":0.0484,"14":0.49368,"15":0.90024,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00484,"10.1":0.00968,"11.1":0.0484,"12.1":0.10164,"13.1":0.57596,"14.1":2.76848,"15.1":1.14708},G:{"8":0.00577,"3.2":0,"4.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.00577,"9.0-9.2":0,"9.3":0.10383,"10.0-10.2":0.00577,"10.3":0.13845,"11.0-11.2":0.04038,"11.3-11.4":0.03077,"12.0-12.1":0.02884,"12.2-12.5":0.71338,"13.0-13.1":0.02307,"13.2":0.00769,"13.3":0.12499,"13.4-13.7":0.21536,"14.0-14.4":1.18064,"14.5-14.8":9.71818,"15.0-15.1":6.8781},P:{"4":0.04203,"5.0-5.4":0.08232,"6.2-6.4":0.03087,"7.2-7.4":0.39932,"8.2":0.05025,"9.2":0.08407,"10.1":0.03153,"11.1-11.2":0.89321,"12.0":0.10508,"13.0":0.32576,"14.0":0.31525,"15.0":4.12979},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.01548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.37268,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":30.73472},S:{"2.5":0},R:{_:"0"},M:{"0":0.12384},Q:{"10.4":0},O:{"0":0.01548},H:{"0":0.02443}}; +module.exports={C:{"48":0.02698,"52":0.01349,"78":0.02248,"88":0.04496,"91":0.04946,"93":0.00899,"94":0.63843,"95":0.87672,"96":0.00899,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 97 3.5 3.6"},D:{"49":0.16186,"56":0.01798,"65":0.02248,"67":0.0045,"71":0.00899,"72":0.0045,"75":0.04046,"76":0.26976,"77":0.01798,"78":0.00899,"79":0.01798,"80":0.00899,"81":0.01798,"83":0.03597,"84":0.0045,"85":0.0045,"87":0.09442,"88":0.04046,"89":0.02248,"90":0.04496,"91":0.08992,"92":0.35968,"93":0.32821,"94":0.54851,"95":0.50355,"96":20.3489,"97":0.02698,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 69 70 73 74 86 98 99"},F:{"81":0.13488,"82":0.21131,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.0045,"13":0.03147,"14":0.3417,"15":0.36867,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0045,"11.1":0.04496,"12.1":0.1079,"13.1":0.49006,"14.1":2.03669,"15.1":2.57621,"15.2":0.31922},B:{"12":0.0045,"13":0.01349,"14":0.00899,"15":0.0045,"16":0.04496,"17":0.01798,"18":0.05395,"89":0.0045,"90":0.00899,"91":0.01798,"92":0.00899,"93":0.02698,"94":0.02698,"95":0.23379,"96":7.0767,_:"79 80 81 83 84 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00455,"8.1-8.4":0.00227,"9.0-9.2":0,"9.3":0.10686,"10.0-10.2":0.01137,"10.3":0.12959,"11.0-11.2":0.03183,"11.3-11.4":0.02274,"12.0-12.1":0.03638,"12.2-12.5":0.66841,"13.0-13.1":0.01364,"13.2":0.00455,"13.3":0.08412,"13.4-13.7":0.21826,"14.0-14.4":1.17541,"14.5-14.8":6.48178,"15.0-15.1":12.86353,"15.2":0.87075},P:{"4":0.06276,"5.0-5.4":0.01085,"6.2-6.4":0.03103,"7.2-7.4":0.36613,"8.2":0.01019,"9.2":0.06276,"10.1":0.01019,"11.1-11.2":0.89963,"12.0":0.06276,"13.0":0.37659,"14.0":0.34521,"15.0":0.5858},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,"4.4":0,"4.4.3-4.4.4":0.00487},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23829,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.01651},H:{"0":0.03126},L:{"0":29.9808},S:{"2.5":0},R:{_:"0"},M:{"0":0.15962},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js index d577ab58078ead..a498b0b18b5aed 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:{"29":0.00248,"35":0.00248,"51":0.00248,"52":0.00743,"57":0.00248,"72":0.00496,"75":0.00248,"78":0.00991,"87":0.00991,"88":0.00496,"89":0.00743,"90":0.01239,"91":0.00496,"92":0.00248,"93":0.1016,"94":0.58481,"95":0.11151,_:"2 3 4 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 96 3.5 3.6"},D:{"29":0.00743,"43":0.01487,"49":0.03717,"63":0.00743,"66":0.00248,"67":0.00496,"69":0.01239,"71":0.00248,"72":0.00248,"74":0.01239,"77":0.01487,"78":0.01487,"79":0.02974,"80":0.00743,"81":0.02478,"83":0.00743,"84":0.00991,"85":0.00248,"86":0.00743,"87":0.07682,"88":0.01735,"89":0.00991,"90":0.04213,"91":0.04956,"92":0.1239,"93":0.13133,"94":0.58976,"95":10.97258,"96":6.4651,"97":0.11399,"98":0.00496,_:"4 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 65 68 70 73 75 76 99"},F:{"28":0.00248,"79":0.00496,"80":0.0793,"81":0.03469,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00991,"13":0.00496,"14":0.00248,"15":0.00248,"18":0.02726,"84":0.00991,"85":0.00496,"87":0.00496,"88":0.00496,"89":0.00496,"90":0.00991,"91":0.00496,"92":0.02726,"93":0.06938,"94":0.05204,"95":1.00607,"96":0.35188,_:"16 17 79 80 81 83 86"},E:{"4":0,"13":0.05452,"14":0.08177,"15":0.2032,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00496,"11.1":0.00743,"12.1":0.0223,"13.1":0.07682,"14.1":0.29736,"15.1":0.24284},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00381,"8.1-8.4":0.00095,"9.0-9.2":0.00856,"9.3":0.01998,"10.0-10.2":0.00666,"10.3":0.01047,"11.0-11.2":0.04377,"11.3-11.4":0.02284,"12.0-12.1":0.05138,"12.2-12.5":0.52428,"13.0-13.1":0.05138,"13.2":0.0333,"13.3":0.12655,"13.4-13.7":0.2845,"14.0-14.4":1.84401,"14.5-14.8":3.41875,"15.0-15.1":3.06288},P:{"4":0.20448,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.18403,"8.2":0.01112,"9.2":0.05112,"10.1":0.03076,"11.1-11.2":0.10224,"12.0":0.05112,"13.0":0.15336,"14.0":0.18403,"15.0":0.98149},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.08673,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":63.54509},S:{"2.5":0},R:{_:"0"},M:{"0":0.05265},Q:{"10.4":0},O:{"0":2.00811},H:{"0":0.22785}}; +module.exports={C:{"52":0.01375,"57":0.00229,"69":0.00229,"75":0.00229,"76":0.00458,"78":0.00688,"85":0.00917,"87":0.01375,"88":0.00229,"89":0.00229,"91":0.00229,"92":0.00229,"93":0.00458,"94":0.20857,"95":0.41027,"96":0.06647,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 77 79 80 81 82 83 84 86 90 97 3.5 3.6"},D:{"20":0.00917,"38":0.00229,"43":0.00917,"49":0.0298,"55":0.00229,"63":0.00458,"65":0.02292,"66":0.00458,"67":0.01604,"69":0.00917,"70":0.00229,"74":0.00229,"75":0.00229,"78":0.00229,"79":0.01834,"80":0.0275,"81":0.0573,"83":0.00688,"84":0.00458,"85":0.00229,"86":0.00688,"87":0.1444,"88":0.01604,"89":0.00458,"90":0.05959,"91":0.02063,"92":0.09397,"93":0.05042,"94":0.23608,"95":0.33234,"96":15.4412,"97":0.11918,"98":0.0298,_:"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 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 64 68 71 72 73 76 77 99"},F:{"40":0.00229,"46":0.01146,"81":0.04813,"82":0.15586,_:"9 11 12 15 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"7":0.00458,"12":0.00229,"13":0.07334,"14":0.07334,"15":0.11231,_:"0 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00229,"11.1":0.02063,"12.1":0.0848,"13.1":0.06647,"14.1":0.30713,"15.1":0.22462,"15.2":0.01834},B:{"12":0.00229,"13":0.00917,"14":0.01375,"15":0.00458,"16":0.00458,"18":0.0298,"84":0.01604,"85":0.00688,"87":0.01375,"89":0.00688,"90":0.00229,"91":0.02292,"92":0.01146,"93":0.01604,"94":0.0573,"95":0.04813,"96":1.10933,_:"17 79 80 81 83 86 88"},G:{"8":0,"3.2":0,"4.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.00381,"9.3":0.01714,"10.0-10.2":0.01428,"10.3":0.0238,"11.0-11.2":0.0438,"11.3-11.4":0.02095,"12.0-12.1":0.05046,"12.2-12.5":0.52556,"13.0-13.1":0.04189,"13.2":0.02475,"13.3":0.12187,"13.4-13.7":0.25992,"14.0-14.4":1.58334,"14.5-14.8":2.86773,"15.0-15.1":3.50468,"15.2":0.4075},P:{"4":0.22787,_:"5.0-5.4 8.2","6.2-6.4":0.06478,"7.2-7.4":0.21751,"9.2":0.04143,"10.1":0.02072,"11.1-11.2":0.08286,"12.0":0.05179,"13.0":0.19679,"14.0":0.15536,"15.0":0.31073},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.01834,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":2.80535},H:{"0":0.27727},L:{"0":64.99457},S:{"2.5":0},R:{_:"0"},M:{"0":0.03083},Q:{"10.4":0.00771}}; 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 3fe8614fbd710d..493d6397eeff45 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.01874,"36":0.01406,"40":0.00937,"43":0.00937,"47":0.01406,"49":0.00937,"52":0.05623,"60":0.01874,"61":0.00469,"65":0.00469,"70":0.00937,"72":0.00937,"78":0.07498,"82":0.00937,"87":0.00937,"88":0.01874,"89":0.01874,"90":0.00469,"91":0.02812,"92":0.03749,"93":0.40768,"94":1.94938,"95":0.10309,_:"2 3 4 5 6 7 8 9 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 41 42 44 45 46 48 50 51 53 54 55 56 57 58 59 62 63 64 66 67 68 69 71 73 74 75 76 77 79 80 81 83 84 85 86 96 3.5 3.6"},D:{"30":0.00469,"39":0.01406,"43":0.0328,"49":0.02812,"50":0.01406,"57":0.02812,"63":0.02343,"65":0.00937,"66":0.00937,"67":0.01406,"68":0.00937,"69":0.03749,"70":0.00937,"71":0.01406,"72":0.01874,"73":0.00937,"74":0.01406,"75":0.00937,"76":0.01406,"77":0.00937,"78":0.00469,"79":0.0656,"80":0.01874,"81":0.04217,"83":0.01406,"84":0.01406,"85":0.02343,"86":0.0328,"87":0.1687,"88":0.09372,"89":0.06092,"90":0.07498,"91":0.18275,"92":0.38425,"93":0.39362,"94":1.32145,"95":16.77119,"96":9.27828,"97":0.00937,_:"4 5 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 40 41 42 44 45 46 47 48 51 52 53 54 55 56 58 59 60 61 62 64 98 99"},F:{"28":0.00469,"79":0.02343,"80":0.80599,"81":0.22961,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05623,"13":0.04686,"14":0.01874,"15":0.02812,"16":0.14995,"17":0.0328,"18":0.14527,"80":0.00469,"84":0.0328,"85":0.00937,"89":0.02343,"90":0.00937,"91":0.01406,"92":0.06092,"93":0.02343,"94":0.15464,"95":4.03465,"96":1.30739,_:"79 81 83 86 87 88"},E:{"4":0,"11":0.00937,"12":0.02343,"14":0.16401,"15":0.23899,_:"0 5 6 7 8 9 10 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02343,"12.1":0.02343,"13.1":0.12184,"14.1":0.52483,"15.1":0.15464},G:{"8":0,"3.2":0.00039,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00473,"6.0-6.1":0.00039,"7.0-7.1":0.15719,"8.1-8.4":0.00079,"9.0-9.2":0.00552,"9.3":0.03349,"10.0-10.2":0.00039,"10.3":0.06028,"11.0-11.2":0.06382,"11.3-11.4":0.02679,"12.0-12.1":0.02167,"12.2-12.5":0.28641,"13.0-13.1":0.00433,"13.2":0.00473,"13.3":0.01891,"13.4-13.7":0.1174,"14.0-14.4":0.35339,"14.5-14.8":1.43403,"15.0-15.1":1.34302},P:{"4":0.23732,"5.0-5.4":0.08232,"6.2-6.4":0.03096,"7.2-7.4":0.46433,"8.2":0.01024,"9.2":0.04127,"10.1":0.02048,"11.1-11.2":0.17541,"12.0":0.03096,"13.0":0.15478,"14.0":0.25796,"15.0":1.72318},I:{"0":0,"3":0,"4":0.00052,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00026,"4.2-4.3":0.00284,"4.4":0,"4.4.3-4.4.4":0.06547},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01359,"11":1.54216,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01063},N:{"10":0.01155,_:"11"},L:{"0":47.21993},S:{"2.5":0.02657},R:{_:"0"},M:{"0":0.11691},Q:{"10.4":0},O:{"0":1.31787},H:{"0":1.20743}}; +module.exports={C:{"34":0.01332,"43":0.00444,"44":0.00888,"47":0.0222,"52":0.03552,"60":0.01332,"61":0.00444,"70":0.00444,"72":0.00888,"74":0.00444,"78":0.03996,"83":0.00444,"88":0.01332,"89":0.01776,"90":0.00888,"91":0.0222,"92":0.01776,"93":0.01776,"94":0.76368,"95":1.1988,"96":0.03552,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 45 46 48 49 50 51 53 54 55 56 57 58 59 62 63 64 65 66 67 68 69 71 73 75 76 77 79 80 81 82 84 85 86 87 97 3.5 3.6"},D:{"11":0.00444,"38":0.00444,"39":0.01776,"43":0.09324,"47":0.01776,"49":0.02664,"50":0.01776,"55":0.00888,"56":0.00444,"57":0.06216,"58":0.00444,"59":0.00888,"63":0.05328,"65":0.00888,"66":0.00444,"67":0.01776,"68":0.00888,"70":0.01332,"71":0.00444,"72":0.07548,"73":0.00888,"74":0.00888,"75":0.00888,"76":0.00444,"77":0.01776,"78":0.00888,"79":0.0222,"80":0.03108,"81":0.03552,"83":0.0222,"84":0.01332,"85":0.00888,"86":0.04884,"87":0.1554,"88":0.04884,"89":0.0222,"90":0.05328,"91":0.19536,"92":0.3774,"93":0.222,"94":0.50172,"95":0.6216,"96":24.23796,"97":0.00444,"98":0.00444,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 45 46 48 51 52 53 54 60 61 62 64 69 99"},F:{"28":0.00888,"73":0.00888,"79":0.00888,"80":0.0222,"81":0.40848,"82":0.5106,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.02664,"14":0.12876,"15":0.10656,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1","5.1":0.00444,"10.1":0.01776,"11.1":0.03996,"12.1":0.0222,"13.1":0.16872,"14.1":0.50172,"15.1":0.32412,"15.2":0.03108},B:{"12":0.03552,"13":0.03552,"14":0.03108,"15":0.03996,"16":0.12432,"17":0.02664,"18":0.06216,"84":0.01776,"85":0.00888,"88":0.00444,"89":0.01776,"90":0.00888,"91":0.00888,"92":0.03552,"93":0.0222,"94":0.05328,"95":0.11988,"96":4.67088,_:"79 80 81 83 86 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0.00364,"6.0-6.1":0.00273,"7.0-7.1":0.13177,"8.1-8.4":0.00136,"9.0-9.2":0.00227,"9.3":0.03317,"10.0-10.2":0,"10.3":0.04907,"11.0-11.2":0.00318,"11.3-11.4":0.01409,"12.0-12.1":0.01454,"12.2-12.5":0.39714,"13.0-13.1":0.00364,"13.2":0.01499,"13.3":0.01181,"13.4-13.7":0.09497,"14.0-14.4":0.34397,"14.5-14.8":1.13824,"15.0-15.1":2.11927,"15.2":0.16176},P:{"4":0.35042,_:"5.0-5.4 8.2","6.2-6.4":0.01031,"7.2-7.4":0.52562,"9.2":0.03092,"10.1":0.01031,"11.1-11.2":0.09276,"12.0":0.04123,"13.0":0.12368,"14.0":0.3195,"15.0":0.39164},I:{"0":0,"3":0,"4":0.00158,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00105,"4.2-4.3":0.01528,"4.4":0,"4.4.3-4.4.4":0.13221},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00647,"10":0.00647,"11":1.28798,_:"6 7 8 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.01668},O:{"0":1.13424},H:{"0":1.0633},L:{"0":50.48044},S:{"2.5":0.03336},R:{_:"0"},M:{"0":0.17236},Q:{"10.4":0.01112}}; 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 26c95175261a3d..a6664852767b47 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:{"16":0.01141,"48":0.01141,"50":0.01712,"52":0.38794,"55":0.05135,"56":0.00571,"57":0.00571,"60":0.01712,"69":0.03994,"72":0.01141,"78":0.06846,"79":0.00571,"80":0.00571,"81":0.00571,"82":0.02282,"84":0.01141,"86":0.01141,"87":0.00571,"88":0.03994,"89":0.02853,"90":0.01712,"91":0.13122,"92":0.05135,"93":0.46781,"94":2.27059,"95":0.02282,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 58 59 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 83 85 96 3.5 3.6"},D:{"22":0.01712,"24":0.00571,"41":0.01712,"49":0.21679,"51":0.01712,"53":0.01712,"57":0.01141,"58":0.01141,"59":0.02282,"61":0.16545,"63":0.02853,"64":0.00571,"66":0.01141,"67":0.00571,"68":0.00571,"69":0.23961,"70":0.01141,"71":0.01141,"72":0.07417,"73":0.04564,"74":0.02282,"75":0.02853,"76":0.01141,"77":0.01712,"78":0.01712,"79":0.09699,"80":0.03994,"81":0.02282,"83":0.06846,"84":0.06276,"85":0.06276,"86":0.15974,"87":0.26814,"88":0.23961,"89":0.15974,"90":0.09699,"91":0.16545,"92":0.34801,"93":0.29096,"94":1.16382,"95":18.90637,"96":11.36436,"97":0.02853,_:"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 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 52 54 55 56 60 62 65 98 99"},F:{"36":0.10269,"60":0.01141,"62":0.00571,"67":0.00571,"74":0.01141,"75":0.06276,"76":0.01712,"77":0.02853,"78":0.02853,"79":0.07417,"80":4.68951,"81":1.75144,_:"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 63 64 65 66 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.5648},B:{"18":0.03423,"87":0.01141,"89":0.00571,"94":0.03423,"95":1.35779,"96":0.50775,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 90 91 92 93"},E:{"4":0,"13":0.03423,"14":0.27384,"15":0.38794,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.15404,"10.1":0.01712,"11.1":0.03423,"12.1":0.03423,"13.1":0.1084,"14.1":0.64467,"15.1":0.92421},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00671,"7.0-7.1":0.00587,"8.1-8.4":0,"9.0-9.2":0.00084,"9.3":0.03775,"10.0-10.2":0.01762,"10.3":0.03775,"11.0-11.2":0.04782,"11.3-11.4":0.02181,"12.0-12.1":0.02181,"12.2-12.5":0.30619,"13.0-13.1":0.01929,"13.2":0.01342,"13.3":0.04698,"13.4-13.7":0.17533,"14.0-14.4":0.61742,"14.5-14.8":2.67689,"15.0-15.1":4.33034},P:{"4":0.01108,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.3671,"8.2":0.01112,"9.2":0.04101,"10.1":0.03076,"11.1-11.2":0.01108,"12.0":0.07759,"13.0":0.08868,"14.0":0.05542,"15.0":1.0974},I:{"0":0,"3":0,"4":0.00026,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0.00394,"4.4":0,"4.4.3-4.4.4":0.01946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00661,"8":0.02642,"11":0.21799,_:"7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":30.75765},S:{"2.5":0},R:{_:"0"},M:{"0":0.12456},Q:{"10.4":0.02577},O:{"0":0.1718},H:{"0":1.17514}}; +module.exports={C:{"50":0.01074,"52":0.30598,"55":0.09662,"69":0.04831,"72":0.01074,"78":0.0161,"80":0.01074,"83":0.01074,"84":0.01074,"86":0.00537,"88":0.13957,"89":0.02147,"90":0.01074,"91":0.09126,"92":0.01074,"93":0.0161,"94":0.76762,"95":1.70166,"96":0.01074,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 81 82 85 87 97 3.5 3.6"},D:{"11":0.00537,"22":0.00537,"47":0.0161,"49":0.19862,"51":0.0161,"53":0.06442,"59":0.0161,"63":0.00537,"65":0.00537,"66":0.00537,"67":0.00537,"68":0.0161,"69":0.2523,"70":0.01074,"71":0.01074,"72":0.0161,"73":0.04294,"74":0.02147,"75":0.01074,"76":0.03221,"77":0.0161,"78":0.02147,"79":0.11273,"80":0.04294,"81":0.0161,"83":0.04294,"84":0.04831,"85":0.03221,"86":0.15567,"87":0.17714,"88":0.1181,"89":0.05905,"90":0.08589,"91":0.1181,"92":0.32745,"93":0.16104,"94":0.3865,"95":0.75152,"96":27.17282,"97":0.02147,"98":0.01074,_:"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 37 38 39 40 41 42 43 44 45 46 48 50 52 54 55 56 57 58 60 61 62 64 99"},F:{"36":0.12346,"43":0.00537,"48":0.00537,"60":0.01074,"62":0.00537,"63":0.01074,"72":0.01074,"73":0.00537,"74":0.00537,"75":0.01074,"77":0.0161,"78":0.01074,"79":0.04294,"80":0.08052,"81":2.62495,"82":4.13873,_:"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 44 45 46 47 49 50 51 52 53 54 55 56 57 58 64 65 66 67 68 69 70 71 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.47775},E:{"4":0,"13":0.0161,"14":0.17714,"15":0.19325,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.12883,"10.1":0.01074,"11.1":0.0161,"12.1":0.02684,"13.1":0.10736,"14.1":0.40797,"15.1":1.18096,"15.2":0.20398},B:{"18":0.03758,"84":0.01074,"85":0.01074,"95":0.02684,"96":1.99153,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00107,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02579,"10.0-10.2":0.02364,"10.3":0.03439,"11.0-11.2":0.02257,"11.3-11.4":0.01182,"12.0-12.1":0.01934,"12.2-12.5":0.28153,"13.0-13.1":0.01612,"13.2":0.00537,"13.3":0.04406,"13.4-13.7":0.13862,"14.0-14.4":0.55125,"14.5-14.8":2.01694,"15.0-15.1":6.84815,"15.2":0.69631},P:{"4":0.14099,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.06478,"7.2-7.4":0.28199,"11.1-11.2":0.03239,"12.0":0.07558,"13.0":0.09717,"14.0":0.05399,"15.0":0.20515},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00106,"4.2-4.3":0.00234,"4.4":0,"4.4.3-4.4.4":0.01512},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03904,"11":0.17568,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.16675},H:{"0":0.97792},L:{"0":32.6016},S:{"2.5":0},R:{_:"0"},M:{"0":0.08801},Q:{"10.4":0.03242}}; 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 8d1b601a403973..0d4af663d082aa 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:{"3":0.16121,"4":0.00489,"5":0.00489,"17":0.00489,"52":0.00977,"78":0.11236,"79":0.00977,"81":0.52758,"91":0.07816,"92":0.00977,"93":0.24425,"94":1.6609,"95":0.01466,_:"2 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 89 90 96 3.5 3.6"},D:{"38":0.02931,"43":0.00977,"49":0.02931,"63":0.00489,"70":0.00977,"74":0.00489,"75":0.05374,"76":0.06839,"77":0.00977,"78":0.01466,"79":0.02931,"80":0.02443,"81":0.05374,"83":0.01466,"84":0.00489,"85":0.00489,"86":0.02443,"87":0.03908,"88":0.01466,"89":0.04885,"90":0.0342,"91":0.13678,"92":0.37615,"93":1.49481,"94":3.67352,"95":13.98576,"96":8.71973,"97":0.00977,_:"4 5 6 7 8 9 10 11 12 13 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 61 62 64 65 66 67 68 69 71 72 73 98 99"},F:{"28":0.01466,"80":1.50458,"81":0.42988,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00489,"15":0.00489,"17":0.00977,"18":0.02443,"83":0.01954,"84":0.00489,"88":0.01466,"89":0.01954,"90":0.00489,"92":0.00489,"93":0.06351,"94":0.11236,"95":4.67006,"96":1.64136,_:"13 14 16 79 80 81 85 86 87 91"},E:{"4":0,"12":0.02443,"13":0.01466,"14":0.42988,"15":0.43477,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00977,"11.1":0.01466,"12.1":0.01954,"13.1":0.28822,"14.1":1.00631,"15.1":3.13129},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.16129,"6.0-6.1":0.00336,"7.0-7.1":0.0168,"8.1-8.4":0,"9.0-9.2":0.0504,"9.3":0.12769,"10.0-10.2":0,"10.3":0.07224,"11.0-11.2":0.00168,"11.3-11.4":0.10249,"12.0-12.1":0.01512,"12.2-12.5":0.47211,"13.0-13.1":0.02856,"13.2":0.00336,"13.3":0.06048,"13.4-13.7":0.10753,"14.0-14.4":0.56787,"14.5-14.8":5.89881,"15.0-15.1":9.10275},P:{"4":0.13035,"5.0-5.4":0.08232,"6.2-6.4":0.06651,"7.2-7.4":0.1738,"8.2":0.01112,"9.2":0.01086,"10.1":0.03076,"11.1-11.2":0.1738,"12.0":0.01086,"13.0":0.1738,"14.0":0.15207,"15.0":1.97696},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00158,"4.2-4.3":0.00158,"4.4":0,"4.4.3-4.4.4":0.04288},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10259,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":30.43013},S:{"2.5":0},R:{_:"0"},M:{"0":0.09719},Q:{"10.4":0.09207},O:{"0":2.43986},H:{"0":0.09201}}; +module.exports={C:{"4":0.0087,"52":0.0087,"76":0.02176,"78":0.09574,"81":0.49178,"87":0.00435,"91":0.04352,"92":0.00435,"93":0.05658,"94":0.57446,"95":0.97485,"96":0.0087,_:"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 77 79 80 82 83 84 85 86 88 89 90 97 3.5 3.6"},D:{"49":0.05658,"56":0.0087,"69":0.0087,"70":0.01306,"75":0.04787,"76":0.09139,"77":0.0087,"79":0.03917,"80":0.01741,"81":0.02611,"83":0.0087,"84":0.01306,"85":0.07398,"86":0.08269,"87":0.09139,"88":0.01306,"89":0.0087,"90":0.04787,"91":0.06528,"92":0.19149,"93":0.36122,"94":0.9792,"95":0.36557,"96":21.28563,"97":0.0087,"98":0.0087,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 68 71 72 73 74 78 99"},F:{"28":0.08704,"81":0.60928,"82":1.19245,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.04787,"13":0.0087,"14":0.45696,"15":0.30899,_:"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.01306,"13.1":0.15667,"14.1":0.84429,"15.1":4.66099,"15.2":0.73984},B:{"12":0.00435,"13":0.00435,"17":0.01306,"18":0.03046,"84":0.01306,"86":0.02176,"89":0.01306,"90":0.0087,"92":0.0087,"93":0.05222,"94":0.01306,"95":0.08704,"96":4.55654,_:"14 15 16 79 80 81 83 85 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00802,"6.0-6.1":0.00267,"7.0-7.1":0.0107,"8.1-8.4":0,"9.0-9.2":0.02941,"9.3":0.11498,"10.0-10.2":0.00267,"10.3":0.07754,"11.0-11.2":0.00535,"11.3-11.4":0.18717,"12.0-12.1":0.00267,"12.2-12.5":0.45991,"13.0-13.1":0.123,"13.2":0,"13.3":0.0508,"13.4-13.7":0.12033,"14.0-14.4":0.50804,"14.5-14.8":3.77289,"15.0-15.1":19.18797,"15.2":2.06693},P:{"4":0.12659,"5.0-5.4":0.01042,"6.2-6.4":0.06478,"7.2-7.4":0.16878,"8.2":0.01019,"9.2":0.02085,"10.1":0.01042,"11.1-11.2":0.08439,"12.0":0.01064,"13.0":0.21098,"14.0":0.12659,"15.0":0.22153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00087,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01608},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06963,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":1.13545},H:{"0":0.08022},L:{"0":28.07234},S:{"2.5":0},R:{_:"0"},M:{"0":0.16382},Q:{"10.4":0.06214}}; 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 6fcaa70dd62138..2ee8dcd668a632 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.01715,"43":0.01715,"44":0.07431,"45":0.02286,"48":0.01143,"52":0.05716,"55":0.06288,"57":0.01715,"60":0.00572,"63":0.06288,"66":0.00572,"68":0.01143,"72":0.00572,"77":0.01143,"78":0.11432,"79":0.01715,"80":0.01715,"81":0.01715,"82":0.0343,"83":0.01143,"84":0.01143,"85":0.00572,"86":0.01715,"87":0.01143,"88":0.02286,"89":0.02858,"90":0.01715,"91":0.07431,"92":0.08574,"93":0.49729,"94":2.67509,"95":0.01715,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 56 58 59 61 62 64 65 67 69 70 71 73 74 75 76 96 3.5 3.6"},D:{"38":0.00572,"47":0.02286,"48":0.20006,"49":0.25722,"53":0.00572,"56":0.00572,"57":0.00572,"58":0.00572,"59":0.00572,"60":0.01143,"61":0.04001,"63":0.00572,"64":0.02286,"65":0.01715,"66":0.01143,"67":0.02858,"68":0.00572,"69":0.0343,"70":0.09717,"71":0.01143,"72":0.04001,"73":0.01143,"74":0.02286,"75":0.02286,"76":0.29723,"77":0.01143,"78":0.02286,"79":1.21179,"80":0.07431,"81":0.0343,"83":1.15463,"84":0.12004,"85":0.12004,"86":0.13147,"87":0.40012,"88":0.07431,"89":0.1086,"90":0.09717,"91":0.28008,"92":0.45728,"93":0.61733,"94":2.92088,"95":16.84505,"96":9.40282,"97":0.01715,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 62 98 99"},F:{"52":0.00572,"71":0.00572,"79":0.01715,"80":0.38297,"81":0.16576,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00572,"13":0.00572,"14":0.00572,"16":0.00572,"17":0.06859,"18":0.04001,"84":0.01143,"85":0.01143,"86":0.01143,"87":0.00572,"88":0.00572,"89":0.0343,"90":0.00572,"91":0.01143,"92":0.02858,"93":0.02858,"94":0.25722,"95":4.72713,"96":1.79482,_:"15 79 80 81 83"},E:{"4":0,"8":0.01143,"9":0.02858,"11":0.00572,"12":0.01715,"13":0.10289,"14":0.58875,"15":1.12034,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01715,"10.1":0.04573,"11.1":0.1086,"12.1":0.17148,"13.1":0.66877,"14.1":3.48676,"15.1":1.56047},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00426,"6.0-6.1":0.0149,"7.0-7.1":0.02767,"8.1-8.4":0.03406,"9.0-9.2":0.02129,"9.3":0.26609,"10.0-10.2":0.02342,"10.3":0.28099,"11.0-11.2":0.11282,"11.3-11.4":0.06599,"12.0-12.1":0.0596,"12.2-12.5":1.09416,"13.0-13.1":0.04257,"13.2":0.0298,"13.3":0.12347,"13.4-13.7":0.44277,"14.0-14.4":1.14738,"14.5-14.8":10.92885,"15.0-15.1":6.5671},P:{"4":0.11167,"5.0-5.4":0.09131,"6.2-6.4":0.02046,"7.2-7.4":0.14204,"8.2":0.01015,"9.2":0.1116,"10.1":0.02046,"11.1-11.2":0.02233,"12.0":0.02233,"13.0":0.07817,"14.0":0.067,"15.0":2.75824},I:{"0":0,"3":0,"4":0.00066,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00099,"4.2-4.3":0.00362,"4.4":0,"4.4.3-4.4.4":0.02043},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02908,"9":0.05089,"10":0.00727,"11":0.66156,_:"6 7 5.5"},J:{"7":0,"10":0.00428},N:{"10":0.01155,_:"11"},L:{"0":17.9005},S:{"2.5":0},R:{_:"0"},M:{"0":0.43697},Q:{"10.4":0.01714},O:{"0":0.18421},H:{"0":0.16629}}; +module.exports={C:{"32":0.00564,"38":0.01692,"43":0.01128,"44":0.0564,"45":0.01692,"48":0.01128,"50":0.00564,"52":0.0564,"55":0.07896,"56":0.01128,"57":0.01128,"60":0.00564,"63":0.03948,"66":0.01128,"68":0.01128,"72":0.00564,"77":0.01128,"78":0.09588,"79":0.01692,"80":0.01692,"81":0.01692,"82":0.01128,"83":0.01128,"84":0.01128,"87":0.0282,"88":0.01692,"89":0.02256,"90":0.01692,"91":0.06204,"92":0.01692,"93":0.03384,"94":1.09416,"95":1.97964,"96":0.01128,_:"2 3 4 5 6 7 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 39 40 41 42 46 47 49 51 53 54 58 59 61 62 64 65 67 69 70 71 73 74 75 76 85 86 97 3.5 3.6"},D:{"38":0.01128,"47":0.01692,"48":0.15228,"49":0.17484,"55":0.00564,"56":0.00564,"58":0.00564,"60":0.02256,"63":0.01128,"64":0.0282,"65":0.02256,"66":0.01128,"67":0.0282,"68":0.01128,"69":0.03384,"70":0.07332,"71":0.01128,"72":0.04512,"73":0.01128,"74":0.0282,"75":0.01692,"76":0.35532,"77":0.01692,"78":0.0282,"79":1.5792,"80":0.07332,"81":0.04512,"83":1.4946,"84":0.141,"85":0.13536,"86":0.141,"87":0.23688,"88":0.05076,"89":0.06768,"90":0.06768,"91":0.15792,"92":0.28764,"93":0.31584,"94":1.35924,"95":1.16184,"96":26.20908,"97":0.02256,"98":0.00564,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 57 59 61 62 99"},F:{"52":0.01128,"68":0.00564,"71":0.00564,"79":0.00564,"80":0.01692,"81":0.29892,"82":0.29328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 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 69 70 72 73 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},E:{"4":0,"8":0.00564,"9":0.02256,"11":0.01128,"12":0.01128,"13":0.09588,"14":0.52452,"15":0.55272,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01692,"10.1":0.03948,"11.1":0.09588,"12.1":0.16356,"13.1":0.65988,"14.1":2.56056,"15.1":2.88204,"15.2":0.3666},B:{"12":0.00564,"13":0.00564,"14":0.00564,"15":0.00564,"16":0.01128,"17":0.03948,"18":0.03384,"84":0.01692,"85":0.01692,"86":0.01128,"87":0.00564,"88":0.00564,"89":0.01128,"90":0.01128,"91":0.00564,"92":0.01692,"93":0.01128,"94":0.03948,"95":0.24816,"96":6.19836,_:"79 80 81 83"},G:{"8":0.00218,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00436,"6.0-6.1":0.01742,"7.0-7.1":0.02831,"8.1-8.4":0.03702,"9.0-9.2":0.01742,"9.3":0.29397,"10.0-10.2":0.02178,"10.3":0.29397,"11.0-11.2":0.11105,"11.3-11.4":0.07186,"12.0-12.1":0.06097,"12.2-12.5":1.12143,"13.0-13.1":0.04137,"13.2":0.02831,"13.3":0.11759,"13.4-13.7":0.44204,"14.0-14.4":1.04957,"14.5-14.8":6.55004,"15.0-15.1":10.60679,"15.2":0.85577},P:{"4":0.14322,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2","10.1":0.02203,"11.1-11.2":0.01102,"12.0":0.02203,"13.0":0.0661,"14.0":0.05508,"15.0":0.22033},I:{"0":0,"3":0,"4":0.00067,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00101,"4.2-4.3":0.00369,"4.4":0,"4.4.3-4.4.4":0.02079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02845,"9":0.05691,"10":0.00711,"11":0.69712,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00436},O:{"0":0.18308},H:{"0":0.17745},L:{"0":18.28583},S:{"2.5":0},R:{_:"0"},M:{"0":0.43154},Q:{"10.4":0.01744}}; 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 ace4e6b3f8f53b..69a03b8e0ce684 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:{"3":0.00179,"29":0.00179,"32":0.00179,"38":0.00359,"40":0.00179,"45":0.00179,"47":0.00359,"52":0.01076,"56":0.00718,"57":0.00897,"59":0.00179,"63":0.00179,"70":0.00179,"72":0.00897,"78":0.02512,"84":0.00718,"85":0.00179,"86":0.00359,"88":0.00179,"89":0.00897,"90":0.00897,"91":0.02332,"92":0.01076,"93":0.21528,"94":0.836,"95":0.01435,_:"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 30 31 33 34 35 36 37 39 41 42 43 44 46 48 49 50 51 53 54 55 58 60 61 62 64 65 66 67 68 69 71 73 74 75 76 77 79 80 81 82 83 87 96 3.5 3.6"},D:{"11":0.00359,"38":0.00179,"43":0.00359,"49":0.00897,"55":0.00179,"57":0.00718,"58":0.00897,"62":0.00179,"63":0.01076,"64":0.00897,"65":0.00179,"69":0.00359,"70":0.00538,"72":0.00179,"73":0.00359,"74":0.00359,"75":0.00538,"76":0.01435,"77":0.00538,"78":0.01256,"79":0.01435,"80":0.00718,"81":0.00718,"83":0.00897,"84":0.01435,"85":0.02153,"86":0.15967,"87":0.0287,"88":0.02512,"89":0.02691,"90":0.01973,"91":0.04485,"92":0.09149,"93":0.07714,"94":0.4198,"95":3.05339,"96":1.70251,"97":0.00179,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 59 60 61 66 67 68 71 98 99"},F:{"36":0.00179,"37":0.00179,"42":0.00359,"63":0.00179,"65":0.00718,"66":0.00538,"73":0.00359,"76":0.00179,"77":0.00538,"78":0.00538,"79":0.02332,"80":0.36956,"81":0.16146,_:"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 64 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00179},B:{"12":0.04844,"13":0.01615,"14":0.01076,"15":0.01794,"16":0.00718,"17":0.02332,"18":0.05382,"80":0.00359,"84":0.01256,"85":0.01256,"87":0.00179,"89":0.01615,"90":0.00718,"91":0.01256,"92":0.06458,"93":0.01973,"94":0.06279,"95":0.88803,"96":0.27986,_:"79 81 83 86 88"},E:{"4":0,"11":0.00179,"12":0.00179,"13":0.01076,"14":0.02332,"15":0.01973,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 9.1 10.1","5.1":0.00359,"7.1":0.00538,"11.1":0.00718,"12.1":0.00718,"13.1":0.05203,"14.1":0.13993,"15.1":0.061},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0033,"5.0-5.1":0.00083,"6.0-6.1":0.00248,"7.0-7.1":0.02145,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0462,"10.0-10.2":0,"10.3":0.10725,"11.0-11.2":0.32176,"11.3-11.4":0.0495,"12.0-12.1":0.1452,"12.2-12.5":1.92063,"13.0-13.1":0.02558,"13.2":0.03053,"13.3":0.15263,"13.4-13.7":0.47356,"14.0-14.4":1.59558,"14.5-14.8":2.11781,"15.0-15.1":1.23175},P:{"4":0.45948,"5.0-5.4":0.02089,"6.2-6.4":0.01022,"7.2-7.4":0.12531,"8.2":0.02044,"9.2":0.08354,"10.1":0.03065,"11.1-11.2":0.08354,"12.0":0.03133,"13.0":0.10443,"14.0":0.11487,"15.0":0.41771},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00357,"4.2-4.3":0.03036,"4.4":0,"4.4.3-4.4.4":0.15478},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0083,"11":0.19084,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.03282},N:{"10":0.00821,_:"11"},L:{"0":52.07587},S:{"2.5":0.09846},R:{_:"0"},M:{"0":0.12308},Q:{"10.4":0.05744},O:{"0":1.39485},H:{"0":24.49239}}; +module.exports={C:{"22":0.00196,"29":0.00393,"30":0.00196,"36":0.00196,"43":0.00393,"47":0.00393,"52":0.00196,"56":0.00196,"72":0.02357,"78":0.01571,"88":0.00393,"89":0.00589,"90":0.00589,"91":0.01768,"92":0.00786,"93":0.00982,"94":0.41048,"95":0.65205,"96":0.01571,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 31 32 33 34 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 97 3.5 3.6"},D:{"11":0.00982,"21":0.00589,"26":0.00196,"33":0.00196,"38":0.00196,"42":0.00196,"43":0.01571,"49":0.00589,"55":0.00196,"56":0.00589,"57":0.00393,"58":0.00393,"63":0.00786,"64":0.01178,"65":0.00393,"67":0.00196,"70":0.00393,"72":0.00393,"74":0.00393,"76":0.00982,"77":0.00393,"78":0.00196,"79":0.01375,"80":0.01768,"81":0.00786,"83":0.00589,"84":0.02357,"85":0.10998,"86":0.25336,"87":0.05499,"88":0.01964,"89":0.01571,"90":0.00786,"91":0.04124,"92":0.04321,"93":0.04517,"94":0.25139,"95":0.15908,"96":4.53095,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 27 28 29 30 31 32 34 35 36 37 39 40 41 44 45 46 47 48 50 51 52 53 54 59 60 61 62 66 68 69 71 73 75 97 98 99"},F:{"18":0.00393,"36":0.00196,"37":0.00196,"42":0.00196,"64":0.00196,"65":0.00393,"66":0.00982,"77":0.00786,"78":0.00196,"79":0.01375,"80":0.01964,"81":0.20426,"82":0.3712,_:"9 11 12 15 16 17 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 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00589,"13":0.00393,"14":0.0216,"15":0.00982,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00196,"11.1":0.00393,"12.1":0.00393,"13.1":0.0216,"14.1":0.14534,"15.1":0.07267,"15.2":0.00982},B:{"12":0.04321,"13":0.01571,"14":0.00982,"15":0.01375,"16":0.03142,"17":0.01571,"18":0.06285,"84":0.01178,"85":0.01178,"89":0.00982,"90":0.00786,"91":0.00393,"92":0.03339,"93":0.00982,"94":0.01571,"95":0.06874,"96":1.11359,_:"79 80 81 83 86 87 88"},G:{"8":0.00312,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00156,"7.0-7.1":0.00935,"8.1-8.4":0.0039,"9.0-9.2":0.00857,"9.3":0.02337,"10.0-10.2":0.00234,"10.3":0.19401,"11.0-11.2":0.11064,"11.3-11.4":0.03039,"12.0-12.1":0.13869,"12.2-12.5":1.89023,"13.0-13.1":0.02104,"13.2":0.02182,"13.3":0.0896,"13.4-13.7":0.40594,"14.0-14.4":1.36898,"14.5-14.8":1.63467,"15.0-15.1":1.70479,"15.2":0.12389},P:{"4":0.49287,"5.0-5.4":0.03146,"6.2-6.4":0.03082,"7.2-7.4":0.11535,_:"8.2","9.2":0.09438,"10.1":0.01049,"11.1-11.2":0.08389,"12.0":0.18491,"13.0":0.05243,"14.0":0.06292,"15.0":0.14681},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00369,"4.2-4.3":0.03977,"4.4":0,"4.4.3-4.4.4":0.11726},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00354,"11":0.14179,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.01607},O:{"0":0.85182},H:{"0":25.98881},L:{"0":51.76888},S:{"2.5":0.06429},R:{_:"0"},M:{"0":0.08036},Q:{"10.4":0.04018}}; 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 1b6c72ddb91f08..256414750720b0 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:{"23":0.00723,"30":0.00361,"35":0.00723,"42":0.00361,"43":0.01446,"45":0.00361,"47":0.01084,"52":0.00723,"56":0.01446,"60":0.02168,"65":0.02168,"72":0.01446,"78":0.31442,"79":0.00723,"83":0.00723,"85":0.00361,"91":0.17709,"92":0.00723,"93":0.27828,"94":0.83845,_:"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 31 32 33 34 36 37 38 39 40 41 44 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 80 81 82 84 86 87 88 89 90 95 96 3.5 3.6"},D:{"22":0.00723,"37":0.00723,"43":0.00361,"44":0.03253,"49":0.01807,"52":0.01084,"56":0.02891,"60":0.00723,"66":0.01084,"80":0.01084,"81":0.01446,"83":0.00361,"84":0.01084,"87":0.01807,"89":0.02168,"90":0.32526,"91":0.00361,"92":0.01807,"93":0.0506,"94":0.40115,"95":11.91897,"96":2.85867,"97":0.0253,_:"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 38 39 40 41 42 45 46 47 48 50 51 53 54 55 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 85 86 88 98 99"},F:{"15":0.02168,"36":0.00723,"79":0.01807,"80":0.206,"81":0.04698,_:"9 11 12 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.10842,"13":0.01446,"14":0.0253,"15":0.01084,"17":0.00361,"18":0.04698,"84":0.00723,"85":0.01446,"88":0.01084,"89":0.00723,"92":0.01446,"93":0.06505,"94":0.00723,"95":0.55656,"96":0.11926,_:"16 79 80 81 83 86 87 90 91"},E:{"4":0,"10":0.0253,"14":0.00723,"15":0.02891,_:"0 5 6 7 8 9 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 13.1","5.1":0.00723,"12.1":0.00723,"14.1":0.02891,"15.1":0.00361},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03986,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04263,"10.0-10.2":0.00276,"10.3":0.0221,"11.0-11.2":0.02644,"11.3-11.4":0.28615,"12.0-12.1":0.2159,"12.2-12.5":0.2084,"13.0-13.1":0.00434,"13.2":0.00158,"13.3":0.0075,"13.4-13.7":0.38285,"14.0-14.4":0.53126,"14.5-14.8":1.76507,"15.0-15.1":0.40969},P:{"4":0.19475,"5.0-5.4":0.01025,"6.2-6.4":0.01023,"7.2-7.4":0.05239,"8.2":0.33825,"9.2":0.041,"10.1":1.54777,"11.1-11.2":0.164,"12.0":0.01025,"13.0":0.05125,"14.0":0.41001,"15.0":0.43051},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.06505,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02554},N:{"10":0.01155,_:"11"},L:{"0":68.20236},S:{"2.5":0.06386},R:{_:"0"},M:{"0":0.08302},Q:{"10.4":0},O:{"0":0.10856},H:{"0":4.84273}}; +module.exports={C:{"30":0.01587,"34":0.00317,"37":0.00317,"43":0.05077,"44":0.00635,"49":0.00952,"55":0.00952,"56":0.01587,"60":0.01269,"65":0.01269,"66":0.00952,"68":0.00317,"72":0.02856,"78":0.50451,"84":0.00317,"91":0.18721,"93":0.00317,"94":0.37759,"95":0.50451,"96":0.00952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 38 39 40 41 42 45 46 47 48 50 51 52 53 54 57 58 59 61 62 63 64 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 97 3.5 3.6"},D:{"11":0.00317,"23":0.01587,"28":0.00635,"49":0.09202,"55":0.00317,"57":0.02221,"60":0.00635,"74":0.00952,"79":0.00317,"81":0.02538,"83":0.01269,"84":0.00635,"85":0.00635,"87":0.04125,"88":0.00952,"89":0.01269,"90":0.01587,"91":0.00635,"92":0.02856,"93":0.01269,"94":0.00952,"95":0.0825,"96":10.53119,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 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 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 86 97 98 99"},F:{"42":0.01269,"66":0.00952,"77":0.00635,"79":0.00952,"80":0.00317,"81":0.02856,"82":0.11106,_:"9 11 12 15 16 17 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 67 68 69 70 71 72 73 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},E:{"4":0,"7":0.00952,"14":0.09202,"15":0.02856,_:"0 5 6 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 13.1 15.2","9.1":0.01587,"10.1":0.00635,"11.1":0.02221,"12.1":0.00317,"14.1":0.02221,"15.1":0.01904},B:{"12":0.0349,"13":0.01904,"14":0.0349,"17":0.00952,"18":0.02856,"80":0.01587,"84":0.01904,"85":0.0476,"89":0.00635,"93":0.09836,"95":0.01587,"96":0.44422,_:"15 16 79 81 83 86 87 88 90 91 92 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02097,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00315,"10.0-10.2":0,"10.3":0.04194,"11.0-11.2":0.00175,"11.3-11.4":0.6193,"12.0-12.1":0.00489,"12.2-12.5":0.49872,"13.0-13.1":0,"13.2":0.00629,"13.3":0.01118,"13.4-13.7":0.26666,"14.0-14.4":0.49872,"14.5-14.8":0.93768,"15.0-15.1":0.52913,"15.2":0.05452},P:{"4":2.35375,"5.0-5.4":0.02029,"6.2-6.4":0.01031,"7.2-7.4":0.05073,"8.2":0.01019,"9.2":0.03044,"10.1":0.09131,"11.1-11.2":0.02029,"12.0":0.04058,"13.0":0.03044,"14.0":0.04058,"15.0":0.16233},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00064,"4.2-4.3":0.00147,"4.4":0,"4.4.3-4.4.4":0.03201},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1174,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0.00683},O:{"0":0.58021},H:{"0":5.91957},L:{"0":72.20258},S:{"2.5":0.08874},R:{_:"0"},M:{"0":0.15017},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js index 2f8397200b631e..5df497c68d479c 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:{"32":0.00915,"47":0.00458,"52":0.03203,"60":0.00458,"72":0.00458,"78":0.02288,"82":0.01373,"84":0.00458,"88":0.00458,"89":0.48048,"90":0.01373,"91":0.05949,"92":0.0183,"93":0.50794,"94":3.16202,"95":0.01373,_:"2 3 4 5 6 7 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 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 85 86 87 96 3.5 3.6"},D:{"31":0.27914,"38":0.01373,"39":0.01373,"55":0.00915,"56":0.00915,"58":0.12355,"60":0.00458,"63":0.00458,"65":0.01373,"69":0.11898,"70":0.00915,"71":0.01373,"75":0.21965,"76":0.03661,"79":0.05491,"80":0.00915,"81":0.00915,"83":0.00458,"84":0.05034,"85":0.02746,"86":0.03661,"87":0.3615,"88":0.05491,"89":0.07779,"90":0.00458,"91":0.05491,"92":0.17389,"93":0.1327,"94":0.60861,"95":10.36006,"96":5.2807,_:"4 5 6 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 57 59 61 62 64 66 67 68 72 73 74 77 78 97 98 99"},F:{"21":0.05034,"34":0.00915,"42":0.00915,"77":0.00458,"78":0.01373,"79":0.02288,"80":2.9744,"81":0.6681,_:"9 11 12 15 16 17 18 19 20 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 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00458},B:{"12":0.05034,"13":0.00915,"14":0.10982,"16":0.06406,"17":0.04118,"18":0.51709,"84":0.00915,"87":0.03661,"88":0.01373,"89":0.03661,"91":0.00915,"92":0.04576,"93":0.0183,"94":0.04118,"95":3.63792,"96":1.72515,_:"15 79 80 81 83 85 86 90"},E:{"4":0,"13":0.00458,"14":0.06864,"15":0.04576,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 9.1 11.1","7.1":0.01373,"10.1":0.01373,"12.1":0.00458,"13.1":0.10067,"14.1":0.03661,"15.1":0.04576},G:{"8":0.00208,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01875,"5.0-5.1":0,"6.0-6.1":0.00139,"7.0-7.1":0.13401,"8.1-8.4":0.00347,"9.0-9.2":0,"9.3":0.03055,"10.0-10.2":0.00278,"10.3":0.10762,"11.0-11.2":1.61434,"11.3-11.4":0.01458,"12.0-12.1":0.01805,"12.2-12.5":1.74071,"13.0-13.1":0.00278,"13.2":0.05485,"13.3":0.02014,"13.4-13.7":0.05694,"14.0-14.4":0.66032,"14.5-14.8":0.92209,"15.0-15.1":1.53727},P:{"4":0.39075,"5.0-5.4":0.01056,"6.2-6.4":0.01022,"7.2-7.4":0.0528,"8.2":0.02044,"9.2":0.01056,"10.1":0.03065,"11.1-11.2":0.26402,"12.0":0.03133,"13.0":0.43299,"14.0":0.03168,"15.0":0.55972},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01131,"4.2-4.3":0.01625,"4.4":0,"4.4.3-4.4.4":0.10177},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29744,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.13018},N:{"10":0.00821,_:"11"},L:{"0":54.25206},S:{"2.5":0.65088},R:{_:"0"},M:{"0":0.07594},Q:{"10.4":0.19526},O:{"0":0.82445},H:{"0":1.26323}}; +module.exports={C:{"47":0.00811,"52":0.03243,"59":0.00811,"60":0.00405,"66":0.00405,"68":0.01622,"72":0.00811,"78":0.02838,"82":0.01216,"88":0.00405,"89":0.47837,"90":0.06486,"91":0.04054,"92":0.01622,"93":0.01216,"94":1.28106,"95":1.88106,"96":0.00811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 87 97 3.5 3.6"},D:{"31":0.00405,"33":0.02027,"39":0.00405,"49":0.00405,"56":0.02027,"58":0.01216,"60":0.00811,"63":0.02838,"65":0.01216,"69":0.15,"70":0.00405,"72":0.00405,"75":0.04054,"76":0.17432,"78":0.00811,"79":0.04459,"80":0.01216,"81":0.01622,"83":0.01216,"84":0.12973,"85":0.03243,"86":0.02838,"87":0.18648,"88":0.04459,"89":0.05676,"90":0.00811,"91":0.1054,"92":0.14189,"93":0.04054,"94":0.19459,"95":0.27162,"96":12.79442,"98":0.00811,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 61 62 64 66 67 68 71 73 74 77 97 99"},F:{"21":0.05676,"36":0.03243,"65":0.01216,"71":0.00405,"79":0.02838,"80":0.04865,"81":1.09458,"82":1.22836,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 72 73 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},E:{"4":0,"14":0.07297,"15":0.00811,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 9.1 10.1 12.1","7.1":0.00405,"11.1":0.00405,"13.1":0.18648,"14.1":0.06892,"15.1":0.09324,"15.2":0.01216},B:{"12":0.01622,"13":0.01216,"14":0.00811,"15":0.00405,"16":0.34459,"17":0.01216,"18":0.48243,"84":0.00811,"85":0.01622,"87":0.01216,"89":0.01216,"91":0.00405,"92":0.08919,"93":0.02027,"94":0.03243,"95":0.06486,"96":5.33101,_:"79 80 81 83 86 88 90"},G:{"8":0.00078,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.12642,"8.1-8.4":0.00156,"9.0-9.2":0,"9.3":0.02497,"10.0-10.2":0.00624,"10.3":0.17792,"11.0-11.2":1.44287,"11.3-11.4":0.01014,"12.0-12.1":0.01639,"12.2-12.5":2.39021,"13.0-13.1":0.01014,"13.2":0.01717,"13.3":0.10925,"13.4-13.7":0.06399,"14.0-14.4":0.54312,"14.5-14.8":0.94188,"15.0-15.1":1.7792,"15.2":0.1389},P:{"4":0.35266,"5.0-5.4":0.05186,"6.2-6.4":0.03082,"7.2-7.4":0.13484,_:"8.2","9.2":0.03112,"10.1":0.01049,"11.1-11.2":0.12447,"12.0":0.18491,"13.0":0.23857,"14.0":0.02074,"15.0":0.09335},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0056,"4.2-4.3":0.01045,"4.4":0,"4.4.3-4.4.4":0.07909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02513,"11":0.35189,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.08324},O:{"0":0.92163},H:{"0":1.55931},L:{"0":58.22756},S:{"2.5":0.52325},R:{_:"0"},M:{"0":0.0773},Q:{"10.4":0.04162}}; 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 541c45990163b3..0538e682874591 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js @@ -1 +1 @@ -module.exports={C:{"48":0.0232,"52":0.0406,"55":0.0058,"57":0.0116,"60":0.0116,"67":0.0058,"68":0.0174,"71":0.0058,"72":0.0116,"74":0.0058,"77":0.0058,"78":0.29,"80":0.0174,"81":0.0116,"82":0.0058,"83":0.0058,"84":0.029,"85":0.0406,"86":0.0058,"87":0.0116,"88":0.087,"89":0.0348,"90":0.0406,"91":0.2726,"92":0.0928,"93":1.0672,"94":5.7014,"95":0.0174,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 58 59 61 62 63 64 65 66 69 70 73 75 76 79 96 3.5 3.6"},D:{"38":0.0116,"49":0.0812,"52":0.1044,"60":0.0058,"63":0.0116,"64":0.0116,"65":0.0116,"66":0.0348,"67":0.0174,"68":0.0116,"70":0.0174,"72":0.0174,"73":0.0058,"74":0.0116,"75":0.0174,"76":0.0116,"77":0.0058,"78":0.0116,"79":0.1044,"80":0.0754,"81":0.0174,"83":0.0348,"84":0.0986,"85":0.058,"86":0.058,"87":0.6264,"88":0.087,"89":0.087,"90":0.0638,"91":0.1566,"92":0.232,"93":0.3132,"94":1.4152,"95":14.5638,"96":8.5202,"97":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 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 69 71 98 99"},F:{"28":0.0058,"38":0.0406,"46":0.0058,"68":0.0116,"78":0.0116,"79":0.029,"80":1.0208,"81":0.4466,_:"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 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.0058,"17":0.0058,"18":0.058,"84":0.0116,"85":0.0232,"86":0.0174,"87":0.0174,"88":0.0116,"89":0.0348,"90":0.0348,"91":0.0348,"92":0.0406,"93":0.0696,"94":0.3712,"95":6.1306,"96":2.407,_:"12 13 15 16 79 80 81 83"},E:{"4":0,"8":0.0116,"10":0.0116,"11":0.0348,"12":0.029,"13":0.1218,"14":0.9396,"15":1.6356,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.0116,"10.1":0.0464,"11.1":0.1334,"12.1":0.3074,"13.1":1.015,"14.1":4.1238,"15.1":2.233},G:{"8":0,"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.00925,"8.1-8.4":0.02082,"9.0-9.2":0.13184,"9.3":0.23593,"10.0-10.2":0.00694,"10.3":0.16422,"11.0-11.2":0.04395,"11.3-11.4":0.08096,"12.0-12.1":0.03932,"12.2-12.5":0.63608,"13.0-13.1":0.0532,"13.2":0.0347,"13.3":0.13416,"13.4-13.7":0.43254,"14.0-14.4":1.63531,"14.5-14.8":11.78718,"15.0-15.1":7.66537},P:{"4":0.08471,"5.0-5.4":0.07152,"6.2-6.4":0.08174,"7.2-7.4":0.5315,"8.2":0.03043,"9.2":0.01059,"10.1":0.01059,"11.1-11.2":0.04236,"12.0":0.03177,"13.0":0.10589,"14.0":0.16943,"15.0":3.0497},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.00156,"4.4":0,"4.4.3-4.4.4":0.01867},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.522,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":14.8352},S:{"2.5":0},R:{_:"0"},M:{"0":0.4998},Q:{"10.4":0.021},O:{"0":0.063},H:{"0":0.21472}}; +module.exports={C:{"48":0.02195,"50":0.00549,"52":0.0439,"54":0.01097,"55":0.00549,"56":0.00549,"57":0.01097,"60":0.00549,"66":0.00549,"68":0.01097,"71":0.00549,"72":0.00549,"78":0.26886,"80":0.01097,"81":0.00549,"82":0.00549,"83":0.01097,"84":0.01097,"85":0.01646,"86":0.00549,"87":0.00549,"88":0.08231,"89":0.03292,"90":0.02744,"91":0.27435,"92":0.04938,"93":0.05487,"94":2.20577,"95":4.38411,"96":0.01097,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 58 59 61 62 63 64 65 67 69 70 73 74 75 76 77 79 97 3.5 3.6"},D:{"38":0.01646,"49":0.04938,"52":0.13718,"53":0.00549,"55":0.01097,"60":0.01097,"63":0.01097,"64":0.01646,"65":0.01646,"66":0.05487,"67":0.01646,"68":0.01097,"70":0.02195,"71":0.00549,"72":0.02195,"74":0.01646,"75":0.01646,"76":0.01097,"77":0.01097,"78":0.01646,"79":0.13169,"80":0.07682,"81":0.01646,"83":0.02744,"84":0.09877,"85":0.06036,"86":0.06584,"87":0.22497,"88":0.03292,"89":0.0439,"90":0.0439,"91":0.11523,"92":0.1262,"93":0.1701,"94":0.48834,"95":0.7188,"96":21.73949,"97":0.01097,_:"4 5 6 7 8 9 10 11 12 13 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 54 56 57 58 59 61 62 69 73 98 99"},F:{"46":0.00549,"79":0.01097,"80":0.03292,"81":0.74075,"82":0.71331,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00549,"10":0.01646,"11":0.02195,"12":0.01646,"13":0.13169,"14":0.77915,"15":0.87792,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.01646,"10.1":0.02744,"11.1":0.11523,"12.1":0.26886,"13.1":0.99863,"14.1":2.99042,"15.1":3.47876,"15.2":0.54321},B:{"14":0.00549,"15":0.00549,"16":0.01097,"17":0.01097,"18":0.06036,"81":0.00549,"84":0.01097,"85":0.01646,"86":0.01097,"87":0.01646,"88":0.01097,"89":0.02195,"90":0.02195,"91":0.02744,"92":0.02195,"93":0.02195,"94":0.07682,"95":0.36763,"96":8.00553,_:"12 13 79 80 83"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01472,"6.0-6.1":0,"7.0-7.1":0.01226,"8.1-8.4":0.01717,"9.0-9.2":0.12999,"9.3":0.25998,"10.0-10.2":0.01226,"10.3":0.17659,"11.0-11.2":0.02943,"11.3-11.4":0.0932,"12.0-12.1":0.04415,"12.2-12.5":0.67937,"13.0-13.1":0.0515,"13.2":0.02698,"13.3":0.12999,"13.4-13.7":0.40468,"14.0-14.4":1.48628,"14.5-14.8":7.8508,"15.0-15.1":11.87799,"15.2":1.2263},P:{"4":0.07476,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.02136,"11.1-11.2":0.03204,"12.0":0.02136,"13.0":0.1068,"14.0":0.17087,"15.0":0.48058},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.00174,"4.4":0,"4.4.3-4.4.4":0.01953},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01144,"10":0.01716,"11":0.50912,_:"6 7 8 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.07672},H:{"0":0.23499},L:{"0":16.2593},S:{"2.5":0},R:{_:"0"},M:{"0":0.58669},Q:{"10.4":0.02708}}; 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 4a44baa22d4645..cd9fe456880f65 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:{"43":0.00357,"47":0.00357,"48":0.00357,"50":0.00357,"52":0.05004,"56":0.00357,"57":0.00715,"71":0.00357,"72":0.01787,"75":0.0143,"77":0.00357,"78":0.03217,"82":0.00357,"83":0.00357,"88":0.00715,"89":0.0143,"90":0.00715,"91":0.02144,"92":0.02144,"93":0.40029,"94":2.54469,"95":0.03574,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 76 79 80 81 84 85 86 87 96 3.5 3.6"},D:{"31":0.01072,"32":0.00715,"43":0.00357,"47":0.01072,"49":0.05718,"50":0.00715,"56":0.00357,"57":0.00357,"62":0.01072,"63":0.01072,"64":0.00715,"65":0.00715,"66":0.04289,"67":0.00715,"68":0.01787,"69":0.07148,"70":0.03574,"71":0.0143,"72":0.02859,"73":0.0143,"74":0.04289,"75":0.02859,"76":0.02144,"77":0.02144,"78":0.05004,"79":0.05004,"80":0.05718,"81":0.06076,"83":0.06433,"84":0.03574,"85":0.07505,"86":0.10365,"87":0.38599,"88":0.10722,"89":0.11794,"90":0.09292,"91":0.193,"92":0.38242,"93":0.28949,"94":1.18657,"95":10.34316,"96":7.4232,"97":0.02144,"98":0.02502,_:"4 5 6 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 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 55 58 59 60 61 99"},F:{"76":0.00357,"77":0.01072,"79":0.01787,"80":0.74697,"81":0.32881,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 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.0143,"14":0.00715,"15":0.0143,"16":0.01072,"17":0.00715,"18":0.05361,"84":0.00715,"85":0.01787,"89":0.01787,"90":0.00357,"91":0.00715,"92":0.03217,"93":0.0143,"94":0.06076,"95":1.4153,"96":0.62902,_:"13 79 80 81 83 86 87 88"},E:{"4":0,"13":0.00715,"14":0.05718,"15":0.0965,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0143,"11.1":0.00715,"12.1":0.0143,"13.1":0.06076,"14.1":0.193,"15.1":0.13939},G:{"8":0.00588,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03382,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.15733,"10.0-10.2":0.00882,"10.3":0.49112,"11.0-11.2":0.72786,"11.3-11.4":0.14704,"12.0-12.1":0.07499,"12.2-12.5":3.01729,"13.0-13.1":0.04705,"13.2":0.02794,"13.3":0.21909,"13.4-13.7":0.37496,"14.0-14.4":2.26003,"14.5-14.8":3.38343,"15.0-15.1":3.72603},P:{"4":0.2175,"5.0-5.4":0.01036,"6.2-6.4":0.01036,"7.2-7.4":0.16572,"8.2":0.02044,"9.2":0.0725,"10.1":0.01036,"11.1-11.2":0.09321,"12.0":0.03107,"13.0":0.06214,"14.0":0.26929,"15.0":0.77679},I:{"0":0,"3":0,"4":0.00179,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00026,"4.2-4.3":0.01252,"4.4":0,"4.4.3-4.4.4":0.03041},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24661,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.04498},N:{"10":0.00821,_:"11"},L:{"0":51.50152},S:{"2.5":0.01928},R:{_:"0"},M:{"0":0.17993},Q:{"10.4":0.0257},O:{"0":0.39199},H:{"0":1.81295}}; +module.exports={C:{"43":0.00684,"52":0.04446,"57":0.01026,"60":0.00342,"66":0.00342,"67":0.00342,"68":0.00684,"70":0.00684,"72":0.0171,"74":0.00342,"78":0.0171,"84":0.01026,"88":0.01368,"89":0.01368,"91":0.02394,"92":0.01368,"93":0.03762,"94":0.93366,"95":1.70316,"96":0.02736,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 58 59 61 62 63 64 65 69 71 73 75 76 77 79 80 81 82 83 85 86 87 90 97 3.5 3.6"},D:{"29":0.00342,"43":0.0171,"47":0.01026,"49":0.0342,"50":0.00684,"56":0.00684,"57":0.00684,"58":0.0171,"62":0.00684,"63":0.00684,"64":0.00684,"65":0.00342,"66":0.06498,"67":0.00684,"68":0.0171,"69":0.04788,"70":0.04446,"71":0.00684,"72":0.01368,"73":0.00684,"74":0.0855,"75":0.02394,"76":0.02394,"77":0.01368,"78":0.03078,"79":0.0513,"80":0.04104,"81":0.06498,"83":0.03762,"84":0.04104,"85":0.0513,"86":0.0684,"87":0.28386,"88":0.13338,"89":0.10602,"90":0.09234,"91":0.1881,"92":0.32832,"93":0.17784,"94":0.37962,"95":0.55746,"96":16.45362,"97":0.00342,"98":0.01026,"99":0.00684,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 55 59 60 61"},F:{"75":0.00342,"77":0.00684,"79":0.01026,"80":0.02394,"81":0.28728,"82":0.67374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00684,"14":0.05814,"15":0.06156,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01368,"11.1":0.00684,"12.1":0.00684,"13.1":0.04446,"14.1":0.14706,"15.1":0.16416,"15.2":0.02394},B:{"12":0.01368,"13":0.00342,"14":0.01026,"15":0.00684,"16":0.01368,"17":0.01026,"18":0.02736,"84":0.01026,"85":0.00684,"89":0.02052,"90":0.00684,"91":0.00684,"92":0.02394,"93":0.00684,"94":0.0171,"95":0.05472,"96":1.83996,_:"79 80 81 83 86 87 88"},G:{"8":0.00567,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0255,"8.1-8.4":0,"9.0-9.2":0.017,"9.3":0.14168,"10.0-10.2":0,"10.3":0.38962,"11.0-11.2":0.775,"11.3-11.4":0.09634,"12.0-12.1":0.06092,"12.2-12.5":3.68939,"13.0-13.1":0.04959,"13.2":0.01842,"13.3":0.27911,"13.4-13.7":0.32445,"14.0-14.4":1.90987,"14.5-14.8":2.42417,"15.0-15.1":3.54629,"15.2":0.41371},P:{"4":0.20421,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.17358,_:"8.2","9.2":0.08168,"10.1":0.01021,"11.1-11.2":0.1021,"12.0":0.02042,"13.0":0.06126,"14.0":0.21442,"15.0":0.28589},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00056,"4.2-4.3":0.00508,"4.4":0,"4.4.3-4.4.4":0.03299},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18126,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.04606},O:{"0":0.37506},H:{"0":1.47017},L:{"0":55.09052},S:{"2.5":0.02632},R:{_:"0"},M:{"0":0.19082},Q:{"10.4":0.05264}}; 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 617ab317ac4136..e0662defb164ce 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:{"78":0.03553,"88":0.01184,"93":0.1421,"94":1.53946,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 95 96 3.5 3.6"},D:{"49":1.75854,"55":0.05921,"65":0.02368,"67":0.01184,"74":0.01776,"79":2.40985,"81":0.02368,"83":0.00592,"86":0.04145,"87":0.08289,"92":0.18947,"93":0.08289,"94":0.88815,"95":28.02409,"96":18.28405,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 69 70 71 72 73 75 76 77 78 80 84 85 88 89 90 91 97 98 99"},F:{"80":0.45592,"81":0.02961,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.15395,"87":0.04737,"89":0.01776,"90":0.01776,"93":0.01184,"94":0.01184,"95":1.43288,"96":0.62171,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 88 91 92"},E:{"4":0,"13":0.21908,"14":0.40855,"15":0.04145,_:"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.05329,"13.1":0.225,"14.1":0.45,"15.1":0.08882},G:{"8":0,"3.2":0,"4.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.00199,"10.0-10.2":0,"10.3":0.01191,"11.0-11.2":0.00199,"11.3-11.4":0.00199,"12.0-12.1":0.03773,"12.2-12.5":0.31074,"13.0-13.1":0.04567,"13.2":0.00695,"13.3":0.08836,"13.4-13.7":0.35144,"14.0-14.4":2.33997,"14.5-14.8":4.15774,"15.0-15.1":2.57426},P:{"4":0.10204,"5.0-5.4":0.01056,"6.2-6.4":0.01022,"7.2-7.4":0.12245,"8.2":0.02044,"9.2":0.03061,"10.1":0.03065,"11.1-11.2":0.37754,"12.0":0.03061,"13.0":0.36734,"14.0":0.55101,"15.0":3.69378},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.21316,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":25.60753},S:{"2.5":0},R:{_:"0"},M:{"0":0.08568},Q:{"10.4":0},O:{"0":0.42432},H:{"0":0.15837}}; +module.exports={C:{"78":0.04735,"94":0.4676,"95":1.20748,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 97 3.5 3.6"},D:{"49":1.76978,"55":0.08879,"67":0.00592,"76":0.01776,"79":5.14361,"81":0.03551,"86":0.04143,"88":0.01776,"89":0.00592,"91":0.02368,"92":0.08879,"93":0.03551,"94":0.08287,"95":0.20717,"96":44.13798,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 65 66 68 69 70 71 72 73 74 75 77 78 80 83 84 85 87 90 97 98 99"},F:{"81":0.27819,"82":0.06511,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.13614,"14":0.51495,"15":0.05327,_:"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.0296,"13.1":0.08879,"14.1":0.89377,"15.1":0.16573,"15.2":0.04143},B:{"16":0.01776,"17":0.01776,"18":0.01184,"95":0.02368,"96":1.79346,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.02085,"10.0-10.2":0,"10.3":0.01043,"11.0-11.2":0.00313,"11.3-11.4":0.00417,"12.0-12.1":0.08759,"12.2-12.5":0.34096,"13.0-13.1":0.06986,"13.2":0.0146,"13.3":0.16058,"13.4-13.7":0.49424,"14.0-14.4":1.64433,"14.5-14.8":3.7902,"15.0-15.1":3.52118,"15.2":0.26484},P:{"4":0.01017,"5.0-5.4":0.05186,"6.2-6.4":0.03082,"7.2-7.4":0.18311,_:"8.2","9.2":0.10173,"10.1":0.01049,"11.1-11.2":0.24415,"12.0":0.02035,"13.0":0.13225,"14.0":0.36622,"15.0":0.52898},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.14206,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.66112},H:{"0":0.11205},L:{"0":25.95002},S:{"2.5":0},R:{_:"0"},M:{"0":0.32648},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js index 1504cc4e731555..81f69518294319 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:{"47":0.05575,"52":0.02323,"73":0.00465,"78":0.03717,"84":0.01394,"88":0.00465,"89":0.00929,"90":0.01394,"91":0.01858,"92":0.01394,"93":0.23695,"94":1.38915,"95":0.00929,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 81 82 83 85 86 87 96 3.5 3.6"},D:{"26":0.00465,"38":0.01858,"47":0.00465,"48":0.01394,"49":0.0604,"53":0.00929,"63":0.00929,"65":0.00465,"67":0.01394,"72":0.01394,"74":0.00929,"75":0.01858,"76":0.00929,"77":0.00929,"78":0.01394,"79":0.07898,"80":0.01858,"81":0.01858,"83":0.01858,"84":0.03252,"85":0.02788,"86":0.04646,"87":0.15332,"88":0.02788,"89":0.18119,"90":0.04181,"91":0.15796,"92":0.2323,"93":0.19049,"94":0.87345,"95":19.19727,"96":12.01456,"97":0.00929,_:"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 50 51 52 54 55 56 57 58 59 60 61 62 64 66 68 69 70 71 73 98 99"},F:{"78":0.00465,"79":0.01858,"80":2.67145,"81":1.30088,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00465,"18":0.01858,"84":0.00465,"86":0.00929,"89":0.00465,"91":0.00929,"92":0.01394,"93":0.00929,"94":0.05575,"95":1.83982,"96":0.7573,_:"12 13 14 16 17 79 80 81 83 85 87 88 90"},E:{"4":0,"13":0.16261,"14":0.13938,"15":0.36703,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00465,"11.1":0.01394,"12.1":0.02788,"13.1":0.15332,"14.1":0.52964,"15.1":0.37168},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.00075,"7.0-7.1":0.00298,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0343,"10.0-10.2":0.00149,"10.3":0.02311,"11.0-11.2":0.00895,"11.3-11.4":0.0164,"12.0-12.1":0.01267,"12.2-12.5":0.3124,"13.0-13.1":0.01267,"13.2":0.00596,"13.3":0.05145,"13.4-13.7":0.18938,"14.0-14.4":0.50476,"14.5-14.8":3.66977,"15.0-15.1":2.60209},P:{"4":0.06242,"5.0-5.4":0.09126,"6.2-6.4":0.04056,"7.2-7.4":0.07283,"8.2":0.33825,"9.2":0.02081,"10.1":0.0507,"11.1-11.2":0.14566,"12.0":0.02081,"13.0":0.13525,"14.0":0.15606,"15.0":1.33172},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00257,"4.4":0,"4.4.3-4.4.4":0.01884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01055,"8":0.03166,"9":0.01055,"10":0.01055,"11":0.24797,_:"6 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":45.30385},S:{"2.5":0},R:{_:"0"},M:{"0":0.16594},Q:{"10.4":0},O:{"0":0.03747},H:{"0":0.17231}}; +module.exports={C:{"47":0.03247,"52":0.02319,"67":0.00464,"70":0.02319,"73":0.00464,"78":0.02319,"84":0.00928,"88":0.00464,"89":0.00928,"90":0.01391,"91":0.01855,"92":0.00464,"93":0.00928,"94":0.52873,"95":1.10384,"96":0.00928,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 68 69 71 72 74 75 76 77 79 80 81 82 83 85 86 87 97 3.5 3.6"},D:{"26":0.00464,"38":0.02319,"47":0.00928,"48":0.01391,"49":0.06029,"53":0.00928,"56":0.00928,"63":0.00928,"65":0.00464,"67":0.00928,"68":0.00464,"70":0.00928,"72":0.00928,"74":0.00464,"75":0.00928,"76":0.00928,"77":0.00928,"78":0.00928,"79":0.07421,"80":0.01855,"81":0.00928,"83":0.02319,"84":0.03247,"85":0.03247,"86":0.0371,"87":0.21799,"88":0.02319,"89":0.19943,"90":0.02783,"91":0.20407,"92":0.17624,"93":0.17161,"94":0.22262,"95":0.54265,"96":29.97076,"97":0.00464,"99":0.01391,_:"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 50 51 52 54 55 57 58 59 60 61 62 64 66 69 71 73 98"},F:{"77":0.00464,"78":0.00464,"79":0.00464,"80":0.02783,"81":2.69004,"82":1.4888,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.12059,"14":0.10204,"15":0.18088,_:"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.00928,"12.1":0.03247,"13.1":0.14378,"14.1":0.44525,"15.1":0.49163,"15.2":0.08812},B:{"18":0.01391,"84":0.00928,"86":0.00464,"89":0.00464,"91":0.00464,"92":0.01391,"94":0.01391,"95":0.06493,"96":2.65757,_:"12 13 14 15 16 17 79 80 81 83 85 87 88 90 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00311,"6.0-6.1":0.00155,"7.0-7.1":0.00311,"8.1-8.4":0.00078,"9.0-9.2":0,"9.3":0.03494,"10.0-10.2":0.00311,"10.3":0.02795,"11.0-11.2":0.00854,"11.3-11.4":0.01475,"12.0-12.1":0.01087,"12.2-12.5":0.33774,"13.0-13.1":0.01165,"13.2":0.00466,"13.3":0.04969,"13.4-13.7":0.17702,"14.0-14.4":0.52098,"14.5-14.8":2.64373,"15.0-15.1":3.59718,"15.2":0.30746},P:{"4":0.07336,"5.0-5.4":0.06053,"6.2-6.4":0.02018,"7.2-7.4":0.07336,_:"8.2","9.2":0.02096,"10.1":0.02018,"11.1-11.2":0.14672,"12.0":0.02096,"13.0":0.12576,"14.0":0.13624,"15.0":0.30393},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00228,"4.4":0,"4.4.3-4.4.4":0.01917},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00525,"8":0.03148,"9":0.01049,"10":0.01574,"11":0.25707,_:"6 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.05362},H:{"0":0.17767},L:{"0":46.10733},S:{"2.5":0},R:{_:"0"},M:{"0":0.16086},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js index 92f89b3eda8d8c..9c8bfa5ff651a0 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.00575,"31":0.00287,"32":0.00287,"34":0.00287,"38":0.00862,"43":0.00575,"45":0.00287,"47":0.00862,"48":0.00862,"49":0.00287,"50":0.00862,"51":0.00862,"52":0.12067,"56":0.00575,"61":0.00575,"62":0.00862,"63":0.00287,"64":0.00575,"66":0.00575,"68":0.00575,"70":0.00575,"72":0.02586,"78":0.02586,"80":0.00575,"81":0.00862,"82":0.00575,"83":0.00287,"84":0.00862,"85":0.00575,"86":0.01149,"87":0.00862,"88":0.01724,"89":0.02586,"90":0.01437,"91":0.04022,"92":0.03735,"93":0.51139,"94":1.98237,"95":0.05171,_:"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 33 35 36 37 39 40 41 42 44 46 53 54 55 57 58 59 60 65 67 69 71 73 74 75 76 77 79 96 3.5 3.6"},D:{"27":0.00575,"38":0.01149,"39":0.00287,"40":0.00575,"43":0.00575,"46":0.00287,"49":0.04597,"50":0.00862,"53":0.00575,"55":0.00287,"56":0.06033,"57":0.00862,"58":0.00862,"63":0.01437,"64":0.00575,"65":0.01149,"66":0.00287,"67":0.00575,"68":0.08906,"69":0.02011,"70":0.00575,"71":0.00287,"73":0.00575,"74":0.00862,"75":0.01724,"76":0.02873,"77":0.00575,"79":0.08044,"80":0.02298,"81":0.10056,"83":0.01437,"84":0.00575,"85":0.01149,"86":0.10343,"87":0.16663,"88":0.05746,"89":0.06321,"90":0.05171,"91":0.0747,"92":0.1494,"93":0.12067,"94":0.43957,"95":5.57075,"96":2.99079,"97":0.01149,_:"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 41 42 44 45 47 48 51 52 54 59 60 61 62 72 78 98 99"},F:{"30":0.00287,"42":0.00575,"44":0.00287,"56":0.00287,"76":0.00575,"77":0.00575,"78":0.00862,"79":0.02873,"80":0.56885,"81":0.20398,_:"9 11 12 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 43 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02873,"13":0.01149,"14":0.06321,"15":0.01724,"16":0.02586,"17":0.01437,"18":0.06895,"84":0.02586,"85":0.01437,"88":0.00287,"89":0.01724,"90":0.00862,"91":0.01437,"92":0.02011,"93":0.01437,"94":0.05459,"95":0.84754,"96":0.30454,_:"79 80 81 83 86 87"},E:{"4":0,"10":0.00575,"13":0.00862,"14":0.04022,"15":0.02011,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00575,"10.1":0.00575,"11.1":0.00287,"12.1":0.00575,"13.1":0.01724,"14.1":0.09768,"15.1":0.0431},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0022,"6.0-6.1":0.00147,"7.0-7.1":0.03672,"8.1-8.4":0,"9.0-9.2":0.00073,"9.3":0.08225,"10.0-10.2":0.04773,"10.3":0.3121,"11.0-11.2":0.24527,"11.3-11.4":0.07417,"12.0-12.1":0.1219,"12.2-12.5":1.85128,"13.0-13.1":0.06609,"13.2":0.05948,"13.3":0.2203,"13.4-13.7":0.41784,"14.0-14.4":1.48999,"14.5-14.8":1.41288,"15.0-15.1":0.89737},P:{"4":0.45655,"5.0-5.4":0.09131,"6.2-6.4":0.02046,"7.2-7.4":0.14204,"8.2":0.01015,"9.2":0.1116,"10.1":0.02046,"11.1-11.2":0.07102,"12.0":0.03044,"13.0":0.09131,"14.0":0.14204,"15.0":0.59858},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00388,"4.2-4.3":0.0097,"4.4":0,"4.4.3-4.4.4":0.08619},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01766,"11":0.46788,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04276},N:{"10":0.01155,_:"11"},L:{"0":68.34732},S:{"2.5":0.06413},R:{_:"0"},M:{"0":0.32067},Q:{"10.4":0.13539},O:{"0":0.79811},H:{"0":3.79824}}; +module.exports={C:{"4":0.00277,"17":0.00555,"32":0.00277,"38":0.00555,"41":0.00277,"43":0.0111,"47":0.01387,"48":0.00277,"49":0.00277,"50":0.00555,"51":0.00832,"52":0.11096,"56":0.00555,"57":0.00277,"62":0.03051,"63":0.00555,"64":0.00277,"66":0.00277,"67":0.00277,"68":0.00832,"69":0.00277,"72":0.04161,"77":0.00832,"78":0.02219,"80":0.00277,"81":0.00277,"83":0.00832,"84":0.01942,"85":0.00555,"86":0.00555,"87":0.00555,"88":0.01387,"89":0.02497,"90":0.01664,"91":0.04716,"92":0.02219,"93":0.02774,"94":0.8433,"95":1.35094,"96":0.04161,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 39 40 42 44 45 46 53 54 55 58 59 60 61 65 70 71 73 74 75 76 79 82 97 3.5 3.6"},D:{"31":0.00277,"34":0.00277,"38":0.0111,"40":0.00832,"43":0.00555,"49":0.02219,"50":0.00555,"53":0.00555,"55":0.02497,"56":0.0638,"57":0.01387,"58":0.01387,"60":0.00555,"63":0.00277,"64":0.00555,"65":0.00555,"67":0.00277,"68":0.11928,"69":0.00832,"70":0.00277,"71":0.00277,"72":0.00555,"73":0.0111,"74":0.00832,"75":0.01942,"76":0.00555,"77":0.0111,"78":0.00277,"79":0.13315,"80":0.03329,"81":0.03606,"83":0.01664,"84":0.0111,"85":0.02219,"86":0.08322,"87":0.14147,"88":0.03884,"89":0.03051,"90":0.07767,"91":0.06103,"92":0.10541,"93":0.07212,"94":0.16367,"95":0.32456,"96":8.30813,"97":0.00555,"98":0.00277,_:"4 5 6 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 41 42 44 45 46 47 48 51 52 54 59 61 62 66 99"},F:{"44":0.00555,"76":0.00555,"77":0.00277,"79":0.00832,"80":0.02219,"81":0.2885,"82":0.5437,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00277,"10":0.0111,"13":0.00555,"14":0.02497,"15":0.01942,_:"0 5 6 7 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00555,"11.1":0.00555,"12.1":0.00832,"13.1":0.0111,"14.1":0.06103,"15.1":0.05271,"15.2":0.00832},B:{"12":0.04716,"13":0.01387,"14":0.04438,"15":0.01664,"16":0.02219,"17":0.02219,"18":0.06103,"84":0.0111,"85":0.01387,"88":0.00277,"89":0.01664,"90":0.02219,"91":0.00832,"92":0.01387,"93":0.00555,"94":0.01942,"95":0.05271,"96":1.10128,_:"79 80 81 83 86 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00079,"5.0-5.1":0.00158,"6.0-6.1":0,"7.0-7.1":0.05122,"8.1-8.4":0,"9.0-9.2":0.00473,"9.3":0.09534,"10.0-10.2":0.0591,"10.3":0.38688,"11.0-11.2":0.36088,"11.3-11.4":0.05673,"12.0-12.1":0.1505,"12.2-12.5":1.76028,"13.0-13.1":0.0654,"13.2":0.03861,"13.3":0.23245,"13.4-13.7":0.42313,"14.0-14.4":1.4254,"14.5-14.8":1.51444,"15.0-15.1":1.14331,"15.2":0.10559},P:{"4":0.44259,"5.0-5.4":0.04117,"6.2-6.4":0.05038,"7.2-7.4":0.15439,_:"8.2","9.2":0.10293,"10.1":0.03023,"11.1-11.2":0.05146,"12.0":0.03088,"13.0":0.08234,"14.0":0.11322,"15.0":0.24703},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.00526,"4.4":0,"4.4.3-4.4.4":0.04985},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01782,"11":0.40105,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.0289},O:{"0":1.03332},H:{"0":3.7284},L:{"0":68.49014},S:{"2.5":0.03613},R:{_:"0"},M:{"0":0.41188},Q:{"10.4":0.06503}}; 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 e8624927f17d60..7ae5f83d3a3f31 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.01391,"43":1.16827,"47":0.00348,"52":0.03129,"53":0.00348,"54":0.02086,"55":0.00695,"56":0.00695,"57":0.00695,"58":0.00348,"59":0.00695,"60":0.00348,"61":0.00348,"63":0.01043,"66":0.00348,"67":0.00348,"68":0.00695,"69":0.00348,"72":0.00695,"78":0.02434,"79":0.00695,"80":0.00695,"81":0.01043,"82":0.01391,"83":0.00695,"84":0.00695,"86":0.00695,"87":0.00348,"88":0.00695,"89":0.01391,"90":0.01739,"91":0.02782,"92":0.01391,"93":0.16342,"94":0.97008,_:"2 3 4 5 6 7 8 9 10 11 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 48 49 50 51 62 64 65 70 71 73 74 75 76 77 85 95 96 3.5 3.6"},D:{"4":0.02086,"11":0.01043,"17":0.00348,"31":0.00695,"33":0.00348,"39":0.01043,"40":0.01043,"41":0.01043,"42":0.01043,"43":0.01043,"44":0.00695,"45":0.02434,"46":0.00695,"47":0.03129,"48":0.10431,"49":0.10431,"50":0.01391,"51":0.01043,"52":0.00695,"53":0.01391,"54":0.01739,"55":0.06259,"56":0.02086,"57":0.11822,"58":0.06606,"59":0.02086,"60":0.01043,"61":0.01043,"62":0.1217,"63":0.07302,"64":0.00695,"65":0.05216,"66":0.00695,"67":0.02086,"68":0.02086,"69":1.11264,"70":0.44506,"71":0.02434,"72":0.60152,"73":0.07302,"74":0.50417,"75":0.29207,"76":0.04868,"77":0.01391,"78":0.35813,"79":0.23991,"80":0.11822,"81":0.09388,"83":0.20862,"84":0.1669,"85":0.14256,"86":0.2573,"87":0.20862,"88":0.05216,"89":0.11822,"90":0.08693,"91":0.13213,"92":0.76494,"93":0.26078,"94":0.83448,"95":3.06324,"96":1.26215,"97":0.00695,_:"5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 98 99"},F:{"79":0.00348,"80":0.05563,"81":0.01739,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"13":0.00348,"14":0.00695,"15":0.00348,"16":0.01043,"17":0.02434,"18":0.1217,"84":0.00695,"85":0.00695,"86":0.01043,"87":0.00695,"88":0.00695,"89":0.01739,"90":0.00348,"91":0.01739,"92":0.03129,"93":0.02782,"94":0.05216,"95":2.79551,"96":0.98399,_:"12 79 80 81 83"},E:{"4":0,"9":0.01043,"10":0.00348,"11":0.00695,"12":0.01043,"13":0.03129,"14":0.12517,"15":0.15647,_:"0 5 6 7 8 3.1 3.2 5.1 6.1 7.1","9.1":0.00348,"10.1":0.00695,"11.1":0.01739,"12.1":0.03129,"13.1":0.14951,"14.1":0.27121,"15.1":0.22948},G:{"8":0.0009,"3.2":0,"4.0-4.1":0.00448,"4.2-4.3":0.05015,"5.0-5.1":0.01881,"6.0-6.1":0.03134,"7.0-7.1":0.01343,"8.1-8.4":0.02239,"9.0-9.2":0.08956,"9.3":0.05911,"10.0-10.2":0.14419,"10.3":0.33315,"11.0-11.2":0.57853,"11.3-11.4":0.08508,"12.0-12.1":0.11821,"12.2-12.5":0.38509,"13.0-13.1":0.04478,"13.2":0.02508,"13.3":0.13971,"13.4-13.7":0.89825,"14.0-14.4":1.27886,"14.5-14.8":2.52279,"15.0-15.1":2.11084},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.01133,"14.0":0.04531,"15.0":0.37381},I:{"0":0,"3":0,"4":0.0249,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05811,"4.2-4.3":0.0498,"4.4":0,"4.4.3-4.4.4":0.32373},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.07952,"8":0.75548,"9":0.55667,"10":0.19881,"11":8.62841,_:"7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":38.75216},S:{"2.5":0},R:{_:"0"},M:{"0":0.20218},Q:{"10.4":5.32195},O:{"0":11.43307},H:{"0":0.10497}}; +module.exports={C:{"36":0.02442,"43":1.16882,"52":0.0314,"53":0.00349,"54":0.01396,"55":0.02093,"56":0.01396,"57":0.00698,"58":0.00698,"59":0.00698,"60":0.00349,"61":0.00349,"63":0.00698,"64":0.00349,"66":0.00349,"67":0.00349,"68":0.00698,"72":0.01047,"78":0.02442,"79":0.00349,"80":0.00698,"81":0.01047,"82":0.01047,"83":0.00698,"84":0.00698,"85":0.00349,"86":0.00698,"87":0.01396,"88":0.00698,"89":0.01745,"90":0.02093,"91":0.02791,"92":0.00698,"93":0.01396,"94":0.36286,"95":0.6036,_:"2 3 4 5 6 7 8 9 10 11 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 51 62 65 69 70 71 73 74 75 76 77 96 97 3.5 3.6"},D:{"11":0.01047,"17":0.00698,"31":0.00698,"33":0.00349,"39":0.01047,"40":0.01047,"41":0.00698,"42":0.01047,"43":0.00698,"44":0.00698,"45":0.02093,"46":0.00698,"47":0.02791,"48":0.10118,"49":0.09071,"50":0.01396,"51":0.00698,"52":0.00698,"53":0.01396,"54":0.01745,"55":0.05931,"56":0.01745,"57":0.11165,"58":0.1256,"59":0.01745,"60":0.01047,"61":0.01047,"62":0.13607,"63":0.0628,"64":0.00349,"65":0.04536,"66":0.01047,"67":0.02093,"68":0.02093,"69":1.05019,"70":0.45008,"71":0.02442,"72":0.6978,"73":0.0628,"74":0.24772,"75":0.30703,"76":0.03838,"77":0.01396,"78":0.38728,"79":0.24423,"80":0.11514,"81":0.10118,"83":0.20934,"84":0.17445,"85":0.10816,"86":0.26516,"87":0.16398,"88":0.04885,"89":0.12909,"90":0.08723,"91":0.10816,"92":0.71525,"93":0.16398,"94":0.58615,"95":0.55475,"96":4.0612,"97":0.02442,"98":0.00698,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 99"},F:{"81":0.0314,"82":0.04536,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"9":0.01047,"10":0.00349,"11":0.00698,"12":0.01047,"13":0.03489,"14":0.12212,"15":0.09071,_:"0 5 6 7 8 3.1 3.2 5.1 6.1 7.1","9.1":0.00349,"10.1":0.00698,"11.1":0.01745,"12.1":0.02791,"13.1":0.13956,"14.1":0.23376,"15.1":0.30703,"15.2":0.05931},B:{"14":0.00349,"15":0.00349,"16":0.01047,"17":0.02442,"18":0.11514,"84":0.00349,"85":0.00698,"86":0.00698,"87":0.00698,"88":0.00698,"89":0.01745,"91":0.00698,"92":0.02791,"93":0.01745,"94":0.02442,"95":0.07327,"96":4.02631,_:"12 13 79 80 81 83 90"},G:{"8":0,"3.2":0,"4.0-4.1":0.00893,"4.2-4.3":0.05162,"5.0-5.1":0.01985,"6.0-6.1":0.02879,"7.0-7.1":0.01291,"8.1-8.4":0.02482,"9.0-9.2":0.09232,"9.3":0.05659,"10.0-10.2":0.30179,"10.3":0.37624,"11.0-11.2":0.78823,"11.3-11.4":0.08537,"12.0-12.1":0.12508,"12.2-12.5":0.39511,"13.0-13.1":0.04964,"13.2":0.0278,"13.3":0.14196,"13.4-13.7":0.89346,"14.0-14.4":1.29353,"14.5-14.8":1.97156,"15.0-15.1":2.80744,"15.2":0.37624},P:{"4":0.33292,"5.0-5.4":0.06053,"6.2-6.4":0.02018,"7.2-7.4":0.33292,"8.2":0.01019,"9.2":0.08071,"10.1":0.02018,"11.1-11.2":0.37328,"12.0":0.02018,"13.0":0.16142,"14.0":0.03356,"15.0":0.12304},I:{"0":0,"3":0,"4":0.03599,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05398,"4.2-4.3":0.05398,"4.4":0,"4.4.3-4.4.4":0.35088},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.07747,"8":0.65846,"9":0.581,"10":0.19367,"11":8.79242,_:"7 5.5"},N:{"10":0.01302,_:"11"},J:{"7":0,"10":0},O:{"0":11.6612},H:{"0":0.11712},L:{"0":36.87943},S:{"2.5":0},R:{_:"0"},M:{"0":0.20184},Q:{"10.4":5.80781}}; 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 851f6e7bc223c9..68b95c7354b5cd 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:{"17":0.00492,"50":0.00984,"52":0.01477,"60":0.00492,"73":0.00492,"78":0.02461,"84":0.02953,"88":0.01477,"89":0.01477,"90":0.0443,"91":0.02461,"92":0.01477,"93":0.19688,"94":1.16651,"95":0.01477,"96":0.00492,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 3.5 3.6"},D:{"22":0.00984,"24":0.00492,"26":0.00492,"38":0.02461,"42":0.00492,"47":0.00984,"49":0.05906,"53":0.00492,"58":0.00492,"61":0.01969,"62":0.00492,"63":0.00984,"65":0.00984,"67":0.00984,"68":0.00492,"69":0.01477,"70":0.00984,"71":0.00984,"72":0.00984,"73":0.00984,"74":0.00984,"75":0.01477,"76":0.02953,"77":0.01477,"78":0.01477,"79":0.13289,"80":0.03445,"81":0.02461,"83":0.02953,"84":0.03938,"85":0.02953,"86":0.05414,"87":0.27071,"88":0.06891,"89":0.06891,"90":0.05414,"91":0.22149,"92":0.32977,"93":0.27071,"94":0.91549,"95":22.4394,"96":13.74715,"97":0.01477,"98":0.00492,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 54 55 56 57 59 60 64 66 99"},F:{"77":0.00492,"78":0.01477,"79":0.01477,"80":1.34371,"81":0.59556,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00492,"18":0.01969,"84":0.00492,"89":0.00984,"91":0.00492,"92":0.01969,"93":0.00984,"94":0.04922,"95":1.77684,"96":0.67431,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"12":0.00492,"13":0.01969,"14":0.12797,"15":0.22149,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00492,"11.1":0.00984,"12.1":0.01969,"13.1":0.12797,"14.1":0.38884,"15.1":0.30024},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00277,"6.0-6.1":0.00415,"7.0-7.1":0.00876,"8.1-8.4":0.00046,"9.0-9.2":0.00138,"9.3":0.04334,"10.0-10.2":0.00323,"10.3":0.0272,"11.0-11.2":0.00599,"11.3-11.4":0.01014,"12.0-12.1":0.00646,"12.2-12.5":0.29094,"13.0-13.1":0.00646,"13.2":0.00415,"13.3":0.02859,"13.4-13.7":0.09821,"14.0-14.4":0.26466,"14.5-14.8":2.00939,"15.0-15.1":1.79037},P:{"4":0.15862,"5.0-5.4":0.09126,"6.2-6.4":0.04056,"7.2-7.4":0.10575,"8.2":0.33825,"9.2":0.02081,"10.1":0.0507,"11.1-11.2":0.0423,"12.0":0.01057,"13.0":0.06345,"14.0":0.0846,"15.0":0.87772},I:{"0":0,"3":0,"4":0.00144,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.00789,"4.4":0,"4.4.3-4.4.4":0.05454},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01029,"10":0.00515,"11":0.09777,_:"6 7 9 5.5"},J:{"7":0,"10":0.00508},N:{"10":0.01155,_:"11"},L:{"0":46.56714},S:{"2.5":0},R:{_:"0"},M:{"0":0.16761},Q:{"10.4":0},O:{"0":0.03555},H:{"0":0.12021}}; +module.exports={C:{"17":0.00926,"50":0.00926,"52":0.01389,"60":0.00463,"73":0.00463,"78":0.02316,"81":0.00463,"84":0.01852,"88":0.01852,"89":0.00926,"90":0.05557,"91":0.01852,"92":0.00463,"93":0.00926,"94":0.42142,"95":0.78264,"96":0.00926,"97":0.00926,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 82 83 85 86 87 3.5 3.6"},D:{"22":0.00926,"24":0.00926,"26":0.00463,"38":0.01852,"47":0.00926,"49":0.03705,"53":0.00463,"58":0.00926,"61":0.00926,"62":0.00463,"63":0.00926,"65":0.00926,"66":0.00463,"67":0.00926,"68":0.00926,"69":0.00926,"70":0.00463,"71":0.00463,"72":0.00926,"73":0.00926,"74":0.00926,"75":0.00926,"76":0.02316,"77":0.01389,"78":0.01389,"79":0.16672,"80":0.02779,"81":0.02779,"83":0.02779,"84":0.03705,"85":0.02316,"86":0.04631,"87":0.22692,"88":0.05557,"89":0.04631,"90":0.04631,"91":0.15282,"92":0.25007,"93":0.28712,"94":0.30102,"95":0.54183,"96":30.59702,"97":0.01389,"98":0.00463,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 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 56 57 59 60 64 99"},F:{"79":0.00463,"80":0.01389,"81":1.1346,"82":0.74559,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.02779,"14":0.10188,"15":0.11114,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00463,"11.1":0.00926,"12.1":0.01852,"13.1":0.09725,"14.1":0.28249,"15.1":0.36585,"15.2":0.05557},B:{"17":0.00463,"18":0.01389,"84":0.00463,"89":0.00463,"92":0.01389,"93":0.00463,"94":0.01852,"95":0.0602,"96":2.20436,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.003,"6.0-6.1":0.00549,"7.0-7.1":0.00799,"8.1-8.4":0.001,"9.0-9.2":0.0025,"9.3":0.03996,"10.0-10.2":0.002,"10.3":0.02847,"11.0-11.2":0.00649,"11.3-11.4":0.00949,"12.0-12.1":0.00599,"12.2-12.5":0.29422,"13.0-13.1":0.00549,"13.2":0.0025,"13.3":0.02647,"13.4-13.7":0.07743,"14.0-14.4":0.24027,"14.5-14.8":1.43611,"15.0-15.1":2.54953,"15.2":0.24876},P:{"4":0.19618,"5.0-5.4":0.06053,"6.2-6.4":0.02018,"7.2-7.4":0.10325,_:"8.2","9.2":0.02096,"10.1":0.02018,"11.1-11.2":0.03098,"12.0":0.01033,"13.0":0.06195,"14.0":0.0826,"15.0":0.17553},I:{"0":0,"3":0,"4":0.00141,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00281,"4.2-4.3":0.00633,"4.4":0,"4.4.3-4.4.4":0.04851},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01389,"10":0.00463,"11":0.11578,_:"6 7 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04295},H:{"0":0.14232},L:{"0":52.60483},S:{"2.5":0},R:{_:"0"},M:{"0":0.16644},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js index 35fdfddd4fd07b..39314e7186d7f2 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.00915,"73":0.05034,"78":0.03661,"84":0.00915,"88":0.16931,"89":0.01373,"90":0.03661,"91":0.09152,"92":0.00915,"93":0.42099,"94":2.24682,"95":0.03661,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 96 3.5 3.6"},D:{"11":0.00458,"49":0.03661,"63":0.00458,"65":0.00915,"67":0.00915,"71":0.01373,"73":0.00458,"75":0.00915,"76":0.00915,"77":0.00915,"78":0.00915,"79":0.0183,"80":0.02288,"81":0.02288,"83":0.02746,"84":0.02746,"85":0.01373,"86":0.05034,"87":0.64979,"88":0.03661,"89":0.03203,"90":0.03203,"91":0.10525,"92":0.16931,"93":0.14643,"94":0.88317,"95":19.21005,"96":10.09923,"97":0.00458,_:"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 69 70 72 74 98 99"},F:{"68":0.00458,"72":0.0183,"78":0.00915,"79":0.00915,"80":1.19891,"81":0.5537,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.0183,"18":0.01373,"84":0.00458,"89":0.0183,"90":0.00458,"91":0.00915,"92":0.02746,"93":0.00915,"94":0.05949,"95":2.54883,"96":0.96096,_:"12 13 14 15 16 79 80 81 83 85 86 87 88"},E:{"4":0,"13":0.05034,"14":0.21965,"15":0.52624,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01373,"9.1":0.00458,"10.1":0.00458,"11.1":0.03203,"12.1":0.03661,"13.1":0.31574,"14.1":1.17603,"15.1":0.76877},G:{"8":0,"3.2":0.00186,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00928,"6.0-6.1":0.00557,"7.0-7.1":0.02134,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05381,"10.0-10.2":0,"10.3":0.05103,"11.0-11.2":0.00928,"11.3-11.4":0.02227,"12.0-12.1":0.01021,"12.2-12.5":0.33679,"13.0-13.1":0.00742,"13.2":0.00649,"13.3":0.04917,"13.4-13.7":0.13731,"14.0-14.4":0.48617,"14.5-14.8":4.09622,"15.0-15.1":3.9654},P:{"4":0.08261,"5.0-5.4":0.01056,"6.2-6.4":0.01022,"7.2-7.4":0.12392,"8.2":0.02044,"9.2":0.02065,"10.1":0.03065,"11.1-11.2":0.12392,"12.0":0.03098,"13.0":0.14457,"14.0":0.18588,"15.0":2.32345},I:{"0":0,"3":0,"4":0.0074,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00211,"4.2-4.3":0.00634,"4.4":0,"4.4.3-4.4.4":0.06551},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00479,"11":0.19655,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":42.55042},S:{"2.5":0},R:{_:"0"},M:{"0":0.30374},Q:{"10.4":0},O:{"0":0.04882},H:{"0":0.30811}}; +module.exports={C:{"48":0.00434,"52":0.01301,"73":0.05637,"78":0.02602,"88":0.21246,"89":0.01301,"90":0.04336,"91":0.06504,"93":0.01734,"94":0.70243,"95":1.59998,"96":0.03469,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 92 97 3.5 3.6"},D:{"49":0.02602,"52":0.00434,"63":0.00434,"65":0.00434,"67":0.02168,"69":0.00867,"71":0.00867,"73":0.00434,"75":0.00867,"76":0.00434,"77":0.01301,"78":0.00867,"79":0.02602,"80":0.01301,"81":0.02602,"83":0.02168,"84":0.01734,"85":0.01301,"86":0.04336,"87":0.09106,"88":0.03469,"89":0.01734,"90":0.03902,"91":0.05637,"92":0.1691,"93":0.26883,"94":0.28184,"95":1.30947,"96":25.03173,"97":0.00867,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 70 72 74 98 99"},F:{"28":0.00434,"72":0.00434,"79":0.01301,"80":0.02168,"81":1.084,"82":0.58102,_:"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 73 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},E:{"4":0,"13":0.03035,"14":0.23848,"15":0.24715,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01734,"11.1":0.02602,"12.1":0.0477,"13.1":0.2775,"14.1":0.79349,"15.1":1.30947,"15.2":0.16043},B:{"17":0.01734,"18":0.01734,"84":0.00867,"89":0.00867,"91":0.01301,"92":0.01301,"93":0.00434,"94":0.01734,"95":0.1084,"96":3.1436,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00323,"6.0-6.1":0.00646,"7.0-7.1":0.028,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06354,"10.0-10.2":0,"10.3":0.04415,"11.0-11.2":0.00646,"11.3-11.4":0.02369,"12.0-12.1":0.00969,"12.2-12.5":0.40169,"13.0-13.1":0.01077,"13.2":0.00646,"13.3":0.056,"13.4-13.7":0.12923,"14.0-14.4":0.45769,"14.5-14.8":2.84736,"15.0-15.1":6.03826,"15.2":0.62892},P:{"4":0.06205,"5.0-5.4":0.05186,"6.2-6.4":0.03082,"7.2-7.4":0.15513,_:"8.2","9.2":0.02068,"10.1":0.01049,"11.1-11.2":0.09308,"12.0":0.03103,"13.0":0.14479,"14.0":0.17582,"15.0":0.393},I:{"0":0,"3":0,"4":0.00894,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00335,"4.2-4.3":0.00783,"4.4":0,"4.4.3-4.4.4":0.06484},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17778,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04531},H:{"0":0.3271},L:{"0":45.85694},S:{"2.5":0},R:{_:"0"},M:{"0":0.32851},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js index 2554d98e2da9e0..750fc904c10ddc 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:{"3":0.00544,"33":0.00272,"34":0.01903,"35":0.00272,"36":0.00272,"37":0.01087,"38":0.01087,"39":0.00272,"40":0.01631,"41":0.01087,"42":0.00544,"43":0.01359,"44":0.00815,"45":0.02174,"46":0.00815,"47":0.01903,"48":0.04349,"49":0.00815,"50":0.02446,"51":0.01087,"52":0.16852,"53":0.00544,"54":0.18211,"55":0.01087,"56":0.05708,"57":0.13862,"58":0.03262,"59":0.02174,"60":0.05708,"61":0.0299,"62":0.0299,"63":0.01631,"64":0.03805,"65":0.03533,"66":0.04892,"67":0.07067,"68":0.06523,"69":0.03533,"70":0.05164,"71":0.07339,"72":0.16308,"73":0.02446,"74":0.03262,"75":0.01903,"76":0.01087,"77":0.03805,"78":0.13862,"79":0.02174,"80":0.02174,"81":0.07882,"82":0.06523,"83":0.04077,"84":0.08698,"85":0.04077,"86":0.09241,"87":0.05436,"88":0.14949,"89":0.24734,"90":0.1957,"91":0.26093,"92":0.23918,"93":1.71778,"94":5.58005,"95":0.10328,"96":0.02718,_:"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 3.5 3.6"},D:{"26":0.00272,"34":0.01087,"43":0.00544,"44":0.00272,"49":0.01359,"54":0.00815,"56":0.02446,"58":0.00272,"60":0.01359,"61":0.00272,"62":0.04077,"63":0.01631,"65":0.01087,"66":0.00544,"67":0.01359,"68":0.01359,"69":0.00272,"70":0.05164,"71":0.02718,"72":0.01903,"73":0.00815,"74":0.02174,"75":0.03262,"76":0.01903,"77":0.07067,"78":0.00815,"79":0.07339,"80":0.08154,"81":0.11144,"83":0.04077,"84":0.10872,"85":0.10057,"86":0.09513,"87":0.66591,"88":0.20113,"89":0.0598,"90":0.07067,"91":0.08969,"92":0.43216,"93":0.25549,"94":0.43216,"95":3.76443,"96":2.01947,_:"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 45 46 47 48 50 51 52 53 55 57 59 64 97 98 99"},F:{"34":0.00272,"42":0.00272,"69":0.02718,"71":0.00272,"75":0.01631,"76":0.00544,"77":0.01631,"78":0.00815,"79":0.03533,"80":0.53816,"81":0.1957,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01087,"13":0.01631,"14":0.02446,"15":0.01087,"16":0.01631,"17":0.01903,"18":0.09513,"79":0.00544,"80":0.00272,"83":0.00544,"84":0.05436,"85":0.01087,"89":0.03262,"90":0.04077,"91":0.02718,"92":0.02174,"93":0.05708,"94":0.106,"95":0.59252,"96":0.18482,_:"81 86 87 88"},E:{"4":0,"11":0.00272,"13":0.00815,"14":0.02174,"15":0.02446,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05164,"11.1":0.00544,"12.1":0.00544,"13.1":0.00815,"14.1":0.02446,"15.1":0.04077},G:{"8":0.0006,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00119,"6.0-6.1":0.00238,"7.0-7.1":0.07151,"8.1-8.4":0.08759,"9.0-9.2":0.00655,"9.3":0.0572,"10.0-10.2":0.02443,"10.3":0.10726,"11.0-11.2":0.04588,"11.3-11.4":0.1442,"12.0-12.1":0.07508,"12.2-12.5":1.05412,"13.0-13.1":0.08998,"13.2":0.04827,"13.3":0.20737,"13.4-13.7":0.51246,"14.0-14.4":1.48673,"14.5-14.8":0.94567,"15.0-15.1":0.98738},P:{"4":0.44808,"5.0-5.4":0.05092,"6.2-6.4":0.02037,"7.2-7.4":0.35643,"8.2":0.02037,"9.2":0.14257,"10.1":0.07129,"11.1-11.2":0.16294,"12.0":0.09165,"13.0":0.24441,"14.0":0.29533,"15.0":1.13039},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01515,"4.2-4.3":0.14802,"4.4":0,"4.4.3-4.4.4":0.48484},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00373,"9":0.00746,"11":0.14917,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":64.96293},S:{"2.5":0},R:{_:"0"},M:{"0":0.881},Q:{"10.4":0.00728},O:{"0":0.18931},H:{"0":1.22699}}; +module.exports={C:{"24":0.01116,"34":0.01674,"35":0.00558,"38":0.01116,"40":0.01953,"41":0.00837,"43":0.00837,"44":0.01116,"45":0.00837,"46":0.00558,"47":0.01953,"48":0.03906,"49":0.00837,"50":0.03627,"51":0.00558,"52":0.17019,"53":0.00837,"54":0.3348,"55":0.00558,"56":0.04464,"57":0.12834,"58":0.01674,"59":0.01953,"60":0.06696,"61":0.03348,"62":0.02511,"63":0.01116,"64":0.03069,"65":0.03069,"66":0.03627,"67":0.06417,"68":0.0558,"69":0.03348,"70":0.03348,"71":0.0558,"72":0.17019,"73":0.01953,"74":0.02232,"75":0.01674,"76":0.00558,"77":0.03348,"78":0.10044,"79":0.01395,"80":0.04464,"81":0.05301,"82":0.04743,"83":0.03069,"84":0.06696,"85":0.03348,"86":0.05022,"87":0.04464,"88":0.32643,"89":0.17856,"90":0.17856,"91":0.29574,"92":0.14508,"93":0.24273,"94":2.96856,"95":4.28265,"96":0.06696,"97":0.00558,_:"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 36 37 39 42 3.5 3.6"},D:{"33":0.00279,"34":0.00558,"42":0.00279,"45":0.00558,"47":0.00279,"49":0.01116,"50":0.00279,"52":0.00558,"54":0.00279,"56":0.01116,"59":0.00558,"60":0.00558,"62":0.02232,"63":0.00837,"65":0.00279,"67":0.01116,"68":0.01953,"69":0.00279,"70":0.02511,"71":0.02232,"72":0.00837,"73":0.0279,"74":0.01395,"75":0.03348,"76":0.00558,"77":0.07254,"78":0.00837,"79":0.05859,"80":0.05859,"81":0.11718,"83":0.03069,"84":0.08091,"85":0.12555,"86":0.17298,"87":0.44082,"88":0.2232,"89":0.06138,"90":0.10044,"91":0.07812,"92":0.25947,"93":0.09765,"94":0.15066,"95":0.46593,"96":5.93433,"97":0.00279,_:"4 5 6 7 8 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 43 44 46 48 51 53 55 57 58 61 64 66 98 99"},F:{"27":0.00837,"34":0.00279,"58":0.00279,"62":0.00558,"64":0.00279,"68":0.00558,"69":0.00837,"71":0.00837,"72":0.00558,"74":0.00279,"75":0.00837,"77":0.01674,"78":0.01395,"79":0.02232,"80":0.05859,"81":0.31248,"82":0.5022,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 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 60 63 65 66 67 70 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00279,"11":0.00837,"13":0.01116,"14":0.02232,"15":0.0279,_:"0 5 6 7 9 10 12 3.1 3.2 6.1 9.1 10.1","5.1":0.05301,"7.1":0.00279,"11.1":0.00279,"12.1":0.00279,"13.1":0.01116,"14.1":0.02232,"15.1":0.04185,"15.2":0.01953},B:{"12":0.01116,"13":0.03348,"14":0.01674,"15":0.01395,"16":0.01674,"17":0.01674,"18":0.09207,"79":0.01395,"83":0.00279,"84":0.0558,"85":0.01116,"89":0.03627,"90":0.0558,"91":0.02232,"92":0.01674,"93":0.02232,"94":0.03069,"95":0.13392,"96":0.90675,_:"80 81 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00472,"6.0-6.1":0.00202,"7.0-7.1":0.06811,"8.1-8.4":0.0499,"9.0-9.2":0.00877,"9.3":0.11464,"10.0-10.2":0.01484,"10.3":0.10317,"11.0-11.2":0.07687,"11.3-11.4":0.18207,"12.0-12.1":0.16454,"12.2-12.5":1.02432,"13.0-13.1":0.08362,"13.2":0.04518,"13.3":0.26771,"13.4-13.7":0.45248,"14.0-14.4":1.65752,"14.5-14.8":0.87192,"15.0-15.1":1.33519,"15.2":0.21376},P:{"4":0.47766,"5.0-5.4":0.04065,"6.2-6.4":0.04065,"7.2-7.4":0.32521,"8.2":0.01016,"9.2":0.11179,"10.1":0.07114,"11.1-11.2":0.15244,"12.0":0.07114,"13.0":0.24391,"14.0":0.29472,"15.0":0.57929},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01005,"4.2-4.3":0.10298,"4.4":0,"4.4.3-4.4.4":0.37005},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0142,"8":0.0071,"9":0.01065,"11":0.12428,_:"7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.19467},H:{"0":1.18772},L:{"0":64.42519},S:{"2.5":0},R:{_:"0"},M:{"0":0.82915},Q:{"10.4":0.00721}}; 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 edfa4b8c79e253..91f32928a14f58 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:{"43":0.00382,"52":0.10325,"61":0.01912,"78":0.00382,"91":0.03442,"92":0.0153,"93":0.16443,"94":1.93877,"95":0.00765,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 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 96 3.5 3.6"},D:{"42":0.00765,"43":0.02294,"49":0.1109,"50":0.00382,"53":0.00765,"55":0.02677,"57":0.00382,"60":0.00765,"63":0.0153,"64":0.00382,"65":0.02294,"66":0.00382,"68":0.03442,"69":0.0153,"70":0.00765,"71":0.00765,"73":0.01147,"74":0.00765,"75":0.01147,"76":0.06118,"77":0.00382,"79":0.02677,"80":0.02677,"81":0.02677,"83":0.0153,"84":0.0153,"85":0.01912,"86":0.02294,"87":0.12237,"88":0.01912,"89":0.78392,"90":0.16443,"91":0.08413,"92":0.17973,"93":0.09942,"94":0.8451,"95":12.12973,"96":8.3975,"97":0.0153,"98":0.00765,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 48 51 52 54 56 58 59 61 62 67 72 78 99"},F:{"63":0.00765,"80":0.99806,"81":0.44741,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00382,"13":0.00382,"15":0.00765,"16":0.00765,"17":0.0153,"18":0.0803,"80":0.01147,"84":0.00382,"85":0.03824,"89":0.00765,"90":0.22944,"91":0.11472,"92":0.02677,"93":0.07266,"94":0.45123,"95":2.64621,"96":1.2581,_:"14 79 81 83 86 87 88"},E:{"4":0,"13":0.04971,"14":0.11472,"15":0.83363,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00765,"11.1":0.01912,"12.1":0.0153,"13.1":0.11472,"14.1":0.55448,"15.1":0.34034},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00576,"7.0-7.1":0.11331,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0749,"10.0-10.2":0.00672,"10.3":0.19878,"11.0-11.2":0.12868,"11.3-11.4":0.06338,"12.0-12.1":0.02305,"12.2-12.5":1.01405,"13.0-13.1":0.01248,"13.2":0.02593,"13.3":0.24295,"13.4-13.7":0.78838,"14.0-14.4":1.17057,"14.5-14.8":2.99125,"15.0-15.1":2.7435},P:{"4":0.32744,"5.0-5.4":0.02046,"6.2-6.4":0.01023,"7.2-7.4":0.26604,"8.2":0.01015,"9.2":0.10232,"10.1":0.20465,"11.1-11.2":0.17395,"12.0":0.07163,"13.0":0.21488,"14.0":0.30697,"15.0":1.69858},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00189,"4.2-4.3":0.00492,"4.4":0,"4.4.3-4.4.4":0.04878},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34798,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01235},N:{"10":0.01155,_:"11"},L:{"0":51.45323},S:{"2.5":0},R:{_:"0"},M:{"0":0.09264},Q:{"10.4":0},O:{"0":0.07411},H:{"0":0.24558}}; +module.exports={C:{"52":0.08952,"61":0.01557,"69":0.01557,"78":0.01557,"84":0.08562,"90":0.03503,"91":0.01557,"92":0.00778,"94":0.49428,"95":1.01192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 93 96 97 3.5 3.6"},D:{"22":0.00389,"40":0.01557,"43":0.03892,"49":0.17514,"50":0.00389,"55":0.01946,"60":0.01557,"62":0.00389,"63":0.01168,"65":0.00778,"68":0.01168,"70":0.00778,"71":0.00778,"72":0.01168,"73":0.01946,"74":0.00389,"76":0.01168,"77":0.00389,"78":0.01557,"79":0.02335,"80":0.03503,"81":0.02335,"83":0.03114,"84":0.04281,"85":0.05449,"86":0.05449,"87":1.42836,"88":0.04281,"89":0.50985,"90":0.03114,"91":0.06227,"92":0.0973,"93":0.31525,"94":0.3425,"95":0.56045,"96":20.73658,"97":0.03892,"98":0.12065,_:"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 41 42 44 45 46 47 48 51 52 53 54 56 57 58 59 61 64 66 67 69 75 99"},F:{"37":0.00389,"40":0.03114,"79":0.00778,"80":0.00778,"81":0.45147,"82":0.70834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.17903,"14":0.21795,"15":0.51374,_:"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.02724,"11.1":0.01168,"13.1":0.08173,"14.1":0.45147,"15.1":0.3386,"15.2":0.03892},B:{"12":0.00778,"13":0.01168,"14":0.00778,"15":0.00778,"17":0.00389,"18":0.04281,"84":0.01168,"85":0.00389,"86":0.00778,"89":0.00778,"90":0.01168,"91":0.01557,"92":0.03114,"93":0.00389,"94":0.03892,"95":0.07006,"96":3.62345,_:"16 79 80 81 83 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00096,"7.0-7.1":0.21687,"8.1-8.4":0,"9.0-9.2":0.00096,"9.3":0.06497,"10.0-10.2":0.00191,"10.3":0.37069,"11.0-11.2":0.14617,"11.3-11.4":0.06879,"12.0-12.1":0.02197,"12.2-12.5":1.09869,"13.0-13.1":0.02293,"13.2":0.00764,"13.3":0.07643,"13.4-13.7":0.50922,"14.0-14.4":0.92959,"14.5-14.8":2.59579,"15.0-15.1":3.15373,"15.2":0.2656},P:{"4":0.37101,"5.0-5.4":0.05153,"6.2-6.4":0.01031,"7.2-7.4":0.28856,_:"8.2","9.2":0.06184,"10.1":0.02061,"11.1-11.2":0.30918,"12.0":0.08245,"13.0":0.10306,"14.0":0.26795,"15.0":0.50499},I:{"0":0,"3":0,"4":0.00062,"2.1":0,"2.2":0,"2.3":0.00062,"4.1":0.0112,"4.2-4.3":0.02241,"4.4":0,"4.4.3-4.4.4":0.1606},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01221,"11":0.16683,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.13438},H:{"0":0.26022},L:{"0":52.40863},S:{"2.5":0},R:{_:"0"},M:{"0":0.08551},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js index d3471d34591416..57f55ce10cf53b 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:{"92":7.84013,"94":9.80016,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 93 95 96 3.5 3.6"},D:{"81":13.72983,"93":7.84013,"95":21.56996,"96":7.84013,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 94 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"95":1.96003,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96"},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"},G:{"8":0,"3.2":0,"4.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":1.96,"14.5-14.8":0,"15.0-15.1":0},P:{"4":0.06242,"5.0-5.4":0.09126,"6.2-6.4":0.04056,"7.2-7.4":0.07283,"8.2":0.33825,"9.2":0.02081,"10.1":0.0507,"11.1-11.2":0.14566,"12.0":0.02081,"13.0":0.13525,"14.0":0.15606,"15.0":1.33172},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.01155,_:"11"},L:{"0":3.92003},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"43":3.45191,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 3.5 3.6"},D:{"81":17.24162,"96":68.96647,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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"},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"},G:{"8":0,"3.2":0,"4.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":0},P:{"4":0.33292,"5.0-5.4":0.06053,"6.2-6.4":0.02018,"7.2-7.4":0.33292,"8.2":0.01019,"9.2":0.08071,"10.1":0.02018,"11.1-11.2":0.37328,"12.0":0.02018,"13.0":0.16142,"14.0":0.03356,"15.0":0.12304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.01302,_:"11"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":10.34},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 fad6657b81c827..d4750e1373b0e6 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.22894,"78":0.03982,"79":0.00498,"80":0.00995,"84":0.02489,"86":0.00995,"88":0.01493,"89":0.02489,"90":0.00995,"91":0.02489,"92":0.01493,"93":0.22894,"94":1.71707,"95":0.01493,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 82 83 85 87 96 3.5 3.6"},D:{"38":0.01991,"42":1.07006,"47":0.01991,"49":0.14433,"53":0.01991,"54":0.00995,"56":0.01493,"57":0.01493,"65":0.03484,"66":0.03484,"69":0.01991,"70":1.39356,"71":0.02489,"72":0.01991,"73":0.01493,"74":0.00995,"75":0.01991,"76":0.00498,"77":0.00498,"78":0.00995,"79":0.13936,"80":0.04479,"81":0.01991,"83":0.02489,"84":0.01493,"85":0.02489,"86":0.05972,"87":0.1941,"88":0.03484,"89":0.05475,"90":0.03484,"91":0.09954,"92":0.18415,"93":0.18415,"94":1.17955,"95":20.2116,"96":11.99955,"97":0.00498,_:"4 5 6 7 8 9 10 11 12 13 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 55 58 59 60 61 62 63 64 67 68 98 99"},F:{"28":0.01991,"40":0.00498,"46":0.00995,"79":0.00995,"80":0.86102,"81":0.41309,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00995,"17":0.00498,"18":0.01991,"85":0.00995,"89":0.00498,"90":0.00498,"92":0.00995,"94":0.05475,"95":2.64279,"96":1.08499,_:"12 13 14 15 79 80 81 83 84 86 87 88 91 93"},E:{"4":0,"13":0.03982,"14":0.29364,"15":0.37825,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00498,"11.1":0.01493,"12.1":0.28867,"13.1":0.31853,"14.1":1.15964,"15.1":0.50268},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00377,"6.0-6.1":0.00251,"7.0-7.1":0.01004,"8.1-8.4":0,"9.0-9.2":0.00377,"9.3":0.06906,"10.0-10.2":0.02135,"10.3":0.11677,"11.0-11.2":0.08162,"11.3-11.4":0.01758,"12.0-12.1":0.02135,"12.2-12.5":0.44072,"13.0-13.1":0.01632,"13.2":0.01256,"13.3":0.06027,"13.4-13.7":0.23229,"14.0-14.4":0.69562,"14.5-14.8":6.21785,"15.0-15.1":4.52904},P:{"4":0.1046,"5.0-5.4":0.05092,"6.2-6.4":0.02037,"7.2-7.4":0.06276,"8.2":0.02037,"9.2":0.14257,"10.1":0.07129,"11.1-11.2":0.07322,"12.0":0.01046,"13.0":0.09414,"14.0":0.12552,"15.0":2.88687},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.00341,"4.4":0,"4.4.3-4.4.4":0.05573},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00498,"11":0.39318,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":33.15292},S:{"2.5":0},R:{_:"0"},M:{"0":0.1306},Q:{"10.4":0},O:{"0":1.16031},H:{"0":0.44701}}; +module.exports={C:{"52":0.29482,"78":0.03498,"81":0.00999,"83":0.00999,"84":0.005,"86":0.01499,"88":0.02499,"89":0.03998,"91":0.01999,"92":0.005,"93":0.00999,"94":0.52469,"95":1.4991,"96":0.005,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 85 87 90 97 3.5 3.6"},D:{"38":0.02499,"42":1.4991,"47":0.01499,"49":0.06996,"53":0.01999,"54":0.005,"56":0.005,"57":0.005,"65":0.02499,"67":0.005,"68":0.00999,"69":0.01499,"70":1.54407,"71":0.01499,"72":0.01999,"73":0.01499,"74":0.01999,"75":0.00999,"76":0.00999,"77":0.07496,"78":0.01999,"79":0.1649,"80":0.08995,"81":0.02499,"83":0.01999,"84":0.03498,"85":0.02998,"86":0.10494,"87":0.21487,"88":0.02998,"89":0.05497,"90":0.03498,"91":0.08995,"92":0.14991,"93":0.06996,"94":0.19488,"95":0.65461,"96":31.50109,_:"4 5 6 7 8 9 10 11 12 13 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 55 58 59 60 61 62 63 64 66 97 98 99"},F:{"28":0.01999,"40":0.005,"46":0.005,"71":0.01499,"80":0.01499,"81":0.69458,"82":0.85449,_:"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 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.03998,"14":0.29982,"15":0.1649,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.03998,"10.1":0.005,"11.1":0.01999,"12.1":0.02998,"13.1":0.71457,"14.1":0.75954,"15.1":0.81451,"15.2":0.10494},B:{"13":0.005,"15":0.005,"16":0.005,"17":0.005,"18":0.01499,"84":0.005,"92":0.005,"94":0.01499,"95":0.03998,"96":3.64781,_:"12 14 79 80 81 83 85 86 87 88 89 90 91 93"},G:{"8":0.00126,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00253,"6.0-6.1":0.00505,"7.0-7.1":0.01263,"8.1-8.4":0.00379,"9.0-9.2":0.00379,"9.3":0.07828,"10.0-10.2":0.01641,"10.3":0.09974,"11.0-11.2":0.08711,"11.3-11.4":0.02778,"12.0-12.1":0.02525,"12.2-12.5":0.43304,"13.0-13.1":0.01515,"13.2":0.0101,"13.3":0.09343,"13.4-13.7":0.2121,"14.0-14.4":0.59338,"14.5-14.8":3.71684,"15.0-15.1":6.73046,"15.2":0.44946},P:{"4":0.16775,"5.0-5.4":0.04065,"6.2-6.4":0.04065,"7.2-7.4":0.10485,"8.2":0.01016,"9.2":0.11179,"10.1":0.07114,"11.1-11.2":0.05242,"12.0":0.02097,"13.0":0.08388,"14.0":0.08388,"15.0":0.28309},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00625,"4.2-4.3":0.00876,"4.4":0,"4.4.3-4.4.4":0.05503},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.005,"11":0.27484,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.81549},H:{"0":0.3505},L:{"0":33.87868},S:{"2.5":0},R:{_:"0"},M:{"0":0.14008},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js index 1ded77bfe6eb2f..982d49a0c6b900 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.01253,"52":0.15668,"54":0.00627,"56":0.03134,"57":0.00627,"60":0.01253,"61":0.00627,"63":0.00627,"66":0.00627,"68":0.0188,"72":0.00627,"76":0.0376,"78":0.12534,"81":0.01253,"82":0.00627,"83":0.00627,"84":0.56403,"85":0.01253,"86":0.03134,"87":0.0188,"88":0.0564,"89":0.08147,"90":0.02507,"91":0.18801,"92":0.08774,"93":0.99019,"94":5.72804,"95":0.0188,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 55 58 59 62 64 65 67 69 70 71 73 74 75 77 79 80 96 3.5 3.6"},D:{"38":0.01253,"42":0.00627,"47":0.00627,"49":0.11281,"53":0.01253,"56":0.00627,"57":0.00627,"58":0.01253,"60":0.00627,"61":0.00627,"63":0.00627,"64":0.01253,"66":0.00627,"67":0.0188,"68":0.01253,"69":0.01253,"70":0.01253,"71":0.00627,"72":0.01253,"73":0.01253,"74":0.01253,"75":0.02507,"76":0.01253,"77":0.01253,"78":0.0188,"79":0.10027,"80":0.02507,"81":0.06267,"83":0.03134,"84":0.0376,"85":0.04387,"86":0.06267,"87":0.54523,"88":0.08147,"89":0.18801,"90":0.14414,"91":0.36349,"92":0.16294,"93":0.21935,"94":1.04032,"95":21.40807,"96":13.24844,"97":0.01253,_:"4 5 6 7 8 9 10 11 12 13 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 54 55 59 62 65 98 99"},F:{"36":0.00627,"46":0.00627,"78":0.0376,"79":0.05014,"80":2.38146,"81":1.02152,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03134},B:{"12":0.00627,"13":0.00627,"14":0.00627,"15":0.00627,"16":0.0188,"17":0.0188,"18":0.0376,"83":0.00627,"84":0.01253,"85":0.00627,"86":0.01253,"87":0.00627,"89":0.05014,"90":0.02507,"91":0.03134,"92":0.03134,"93":0.0188,"94":0.18174,"95":4.75039,"96":1.94277,_:"79 80 81 88"},E:{"4":0,"12":0.01253,"13":0.0376,"14":0.28202,"15":0.57656,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 10.1","5.1":0.00627,"9.1":0.01253,"11.1":0.03134,"12.1":0.0376,"13.1":0.23188,"14.1":0.97139,"15.1":0.83978},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0.0046,"6.0-6.1":0.00092,"7.0-7.1":0.00368,"8.1-8.4":0.00184,"9.0-9.2":0.00184,"9.3":0.04508,"10.0-10.2":0.00552,"10.3":0.06165,"11.0-11.2":0.01288,"11.3-11.4":0.01196,"12.0-12.1":0.0138,"12.2-12.5":0.2705,"13.0-13.1":0.00644,"13.2":0.00552,"13.3":0.04048,"13.4-13.7":0.15365,"14.0-14.4":0.41128,"14.5-14.8":4.0456,"15.0-15.1":4.09528},P:{"4":0.11694,"5.0-5.4":0.05092,"6.2-6.4":0.02037,"7.2-7.4":0.06276,"8.2":0.02037,"9.2":0.14257,"10.1":0.07129,"11.1-11.2":0.03189,"12.0":0.01063,"13.0":0.08505,"14.0":0.08505,"15.0":1.48833},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00448,"4.2-4.3":0.0112,"4.4":0,"4.4.3-4.4.4":0.05898},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00673,"10":0.04712,"11":0.67312,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":25.89731},S:{"2.5":0},R:{_:"0"},M:{"0":0.3285},Q:{"10.4":0},O:{"0":0.16799},H:{"0":0.48771}}; +module.exports={C:{"50":0.01247,"52":0.16837,"56":0.03742,"60":0.00624,"66":0.00624,"68":0.00624,"72":0.01247,"76":0.01871,"78":0.0873,"80":0.01247,"81":0.01247,"82":0.00624,"84":0.30556,"85":0.01247,"86":0.01871,"87":0.00624,"88":0.04365,"89":0.06236,"90":0.01871,"91":0.17461,"92":0.0873,"93":0.04989,"94":2.17636,"95":4.4338,"96":0.01247,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 61 62 63 64 65 67 69 70 71 73 74 75 77 79 83 97 3.5 3.6"},D:{"22":0.01247,"38":0.01247,"49":0.08107,"53":0.01247,"58":0.00624,"60":0.01247,"63":0.00624,"65":0.01247,"66":0.00624,"67":0.01871,"68":0.01247,"69":0.01871,"70":0.01247,"71":0.00624,"72":0.01247,"73":0.00624,"74":0.01247,"75":0.01247,"77":0.00624,"78":0.02494,"79":0.13719,"80":0.02494,"81":0.07483,"83":0.03118,"84":0.06236,"85":0.17461,"86":0.04365,"87":0.36792,"88":0.05612,"89":0.09354,"90":0.12472,"91":0.32427,"92":0.14343,"93":0.41158,"94":0.25568,"95":1.22226,"96":33.7617,"97":0.00624,_:"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 56 57 59 61 62 64 76 98 99"},F:{"46":0.00624,"79":0.01247,"80":0.06236,"81":1.64007,"82":2.0267,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0873},E:{"4":0,"12":0.00624,"13":0.03118,"14":0.23697,"15":0.27438,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00624,"11.1":0.02494,"12.1":0.03742,"13.1":0.20579,"14.1":0.75456,"15.1":1.0913,"15.2":0.19955},B:{"15":0.00624,"16":0.01247,"17":0.01247,"18":0.03118,"87":0.00624,"88":0.00624,"89":0.01871,"90":0.01871,"91":0.01247,"92":0.02494,"93":0.01247,"94":0.04989,"95":0.16837,"96":6.77853,_:"12 13 14 79 80 81 83 84 85 86"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00451,"6.0-6.1":0,"7.0-7.1":0.0018,"8.1-8.4":0,"9.0-9.2":0.00271,"9.3":0.04061,"10.0-10.2":0.00361,"10.3":0.06317,"11.0-11.2":0.01444,"11.3-11.4":0.01715,"12.0-12.1":0.01083,"12.2-12.5":0.28066,"13.0-13.1":0.00632,"13.2":0.00541,"13.3":0.0379,"13.4-13.7":0.15161,"14.0-14.4":0.34744,"14.5-14.8":2.38064,"15.0-15.1":5.12677,"15.2":0.52432},P:{"4":0.11594,"5.0-5.4":0.04065,"6.2-6.4":0.04065,"7.2-7.4":0.10485,"8.2":0.01016,"9.2":0.11179,"10.1":0.07114,"11.1-11.2":0.03162,"12.0":0.01054,"13.0":0.06324,"14.0":0.06324,"15.0":0.18972},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.01133,"4.4":0,"4.4.3-4.4.4":0.0671},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02006,"9":0.02006,"10":0.05348,"11":0.64849,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00376},O:{"0":0.16557},H:{"0":0.50588},L:{"0":26.76315},S:{"2.5":0},R:{_:"0"},M:{"0":0.36501},Q:{"10.4":0}}; 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 067e0adc80ff5c..31b645307a4cb2 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:{"48":0.01152,"51":0.01728,"52":0.1037,"56":0.00576,"59":0.02304,"60":0.01728,"61":0.00576,"63":0.00576,"66":0.01152,"68":0.03457,"69":0.00576,"72":0.01152,"74":0.00576,"75":0.00576,"76":0.00576,"77":0.1037,"78":0.29381,"79":0.12674,"80":0.02304,"81":0.02304,"82":0.01728,"83":0.02304,"84":0.02881,"85":0.01728,"86":0.03457,"87":0.01152,"88":0.04609,"89":0.04609,"90":0.04609,"91":0.32262,"92":0.17859,"93":1.45753,"94":8.33617,"95":0.01728,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 57 58 62 64 65 67 70 71 73 96 3.5 3.6"},D:{"34":0.00576,"35":0.02304,"37":0.00576,"38":0.01152,"39":0.00576,"41":0.00576,"42":0.00576,"43":0.00576,"45":0.00576,"46":0.00576,"47":0.00576,"48":0.01152,"49":0.15555,"51":0.04033,"52":0.03457,"53":0.00576,"55":0.00576,"56":0.01152,"57":0.00576,"58":0.01152,"59":0.01152,"60":0.01152,"61":0.04609,"62":0.00576,"63":0.01728,"64":0.00576,"65":0.1325,"66":0.07489,"67":0.01152,"68":0.01152,"69":0.05185,"70":0.02304,"71":0.05761,"72":0.04609,"73":0.01152,"74":0.01728,"75":1.20981,"76":0.01728,"77":0.01728,"78":0.03457,"79":0.06913,"80":0.34566,"81":0.03457,"83":0.1037,"84":0.17859,"85":0.18435,"86":0.19011,"87":0.61067,"88":0.12674,"89":0.07489,"90":0.12098,"91":0.12674,"92":0.2074,"93":0.23044,"94":1.22709,"95":13.28487,"96":7.43745,"97":0.00576,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 40 44 50 54 98 99"},F:{"36":0.00576,"46":0.00576,"68":0.00576,"70":0.00576,"71":0.01152,"72":0.01152,"75":0.00576,"77":0.00576,"78":0.01152,"79":0.04609,"80":2.82289,"81":1.16372,_:"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 69 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05185,"16":0.00576,"17":0.01728,"18":0.05185,"83":0.00576,"84":0.01728,"85":0.01728,"86":0.02304,"87":0.01152,"88":0.01152,"89":0.02881,"90":0.01728,"91":0.02881,"92":0.04609,"93":0.05185,"94":0.22468,"95":4.85076,"96":1.73406,_:"13 14 15 79 80 81"},E:{"4":0,"12":0.01152,"13":0.06337,"14":0.53001,"15":1.11187,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00576,"10.1":0.01152,"11.1":0.05761,"12.1":0.07489,"13.1":0.37447,"14.1":2.20646,"15.1":1.5958},G:{"8":0.00316,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00316,"6.0-6.1":0.00158,"7.0-7.1":0.00631,"8.1-8.4":0.00631,"9.0-9.2":0.02209,"9.3":0.0931,"10.0-10.2":0.00631,"10.3":0.09468,"11.0-11.2":0.03156,"11.3-11.4":0.0647,"12.0-12.1":0.01894,"12.2-12.5":0.44184,"13.0-13.1":0.02051,"13.2":0.0142,"13.3":0.06628,"13.4-13.7":0.21619,"14.0-14.4":0.82688,"14.5-14.8":7.00954,"15.0-15.1":6.82649},P:{"4":0.106,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.13651,"8.2":0.0102,"9.2":0.021,"10.1":0.0102,"11.1-11.2":0.0636,"12.0":0.0318,"13.0":0.1378,"14.0":0.1378,"15.0":3.68882},I:{"0":0,"3":0,"4":0.00146,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00195,"4.2-4.3":0.00536,"4.4":0,"4.4.3-4.4.4":0.03361},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01223,"7":0.02445,"8":0.01834,"9":0.01834,"10":0.00611,"11":0.51967,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":21.49798},S:{"2.5":0},R:{_:"0"},M:{"0":0.72046},Q:{"10.4":0.00424},O:{"0":0.15681},H:{"0":0.40123}}; +module.exports={C:{"48":0.01078,"51":0.01617,"52":0.1186,"55":0.26955,"56":0.01617,"59":0.02156,"60":0.01617,"61":0.00539,"63":0.00539,"66":0.01078,"68":0.02696,"69":0.00539,"70":0.00539,"72":0.01617,"76":0.00539,"77":0.10243,"78":0.20486,"79":0.1186,"80":0.02156,"81":0.02156,"82":0.01617,"83":0.01617,"84":0.02696,"85":0.01617,"86":0.02696,"87":0.01617,"88":0.03235,"89":0.04313,"90":0.2426,"91":0.35042,"92":0.07008,"93":0.07008,"94":3.10522,"95":6.07027,"96":0.01617,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 57 58 62 64 65 67 71 73 74 75 97 3.5 3.6"},D:{"35":0.02156,"37":0.00539,"38":0.01078,"41":0.00539,"47":0.00539,"49":0.0593,"51":0.04313,"52":0.03235,"53":0.00539,"55":0.00539,"56":0.01078,"58":0.00539,"59":0.00539,"60":0.01078,"61":0.01617,"63":0.01078,"64":0.00539,"65":0.10243,"66":0.09165,"67":0.01078,"68":0.02156,"69":0.07547,"70":0.03235,"71":0.03774,"72":0.04313,"73":0.01078,"74":0.01617,"75":1.33158,"76":0.01617,"77":0.01078,"78":0.03774,"79":0.07547,"80":0.32346,"81":0.04852,"83":0.08087,"84":0.16173,"85":0.15095,"86":0.17251,"87":0.24799,"88":0.0593,"89":0.12399,"90":0.08087,"91":0.08087,"92":0.11321,"93":0.36659,"94":0.49597,"95":0.44745,"96":18.71216,"97":0.01078,_:"4 5 6 7 8 9 10 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 39 40 42 43 44 45 46 48 50 54 57 62 98 99"},F:{"36":0.00539,"46":0.00539,"70":0.00539,"71":0.01078,"72":0.00539,"77":0.00539,"79":0.07547,"80":0.03774,"81":2.0971,"82":1.64426,_:"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 73 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},E:{"4":0,"7":0.00539,"12":0.01078,"13":0.0593,"14":0.42589,"15":0.50675,_:"0 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00539,"10.1":0.01078,"11.1":0.05391,"12.1":0.07008,"13.1":0.35042,"14.1":1.51487,"15.1":2.399,"15.2":0.39893},B:{"12":0.06469,"15":0.00539,"16":0.00539,"17":0.01617,"18":0.04313,"84":0.01617,"85":0.01617,"86":0.02156,"87":0.01078,"88":0.00539,"89":0.01617,"90":0.01617,"91":0.02156,"92":0.03235,"93":0.02696,"94":0.0593,"95":0.21025,"96":6.232,_:"13 14 79 80 81 83"},G:{"8":0.00344,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00172,"6.0-6.1":0.00172,"7.0-7.1":0.00689,"8.1-8.4":0.00689,"9.0-9.2":0.02066,"9.3":0.10328,"10.0-10.2":0.00516,"10.3":0.09468,"11.0-11.2":0.02754,"11.3-11.4":0.07574,"12.0-12.1":0.01721,"12.2-12.5":0.44928,"13.0-13.1":0.01721,"13.2":0.00861,"13.3":0.05853,"13.4-13.7":0.19451,"14.0-14.4":0.72125,"14.5-14.8":4.56163,"15.0-15.1":9.74122,"15.2":1.08274},P:{"4":0.12533,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.01044,"11.1-11.2":0.06266,"12.0":0.03133,"13.0":0.12533,"14.0":0.12533,"15.0":0.87731},I:{"0":0,"3":0,"4":0.00106,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00266,"4.2-4.3":0.00532,"4.4":0,"4.4.3-4.4.4":0.03245},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00583,"7":0.01165,"8":0.01748,"9":0.01748,"10":0.00583,"11":0.51857,_:"5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.15674},H:{"0":0.41026},L:{"0":22.88748},S:{"2.5":0},R:{_:"0"},M:{"0":0.81597},Q:{"10.4":0.00461}}; 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 9cf0e6cb2f3ea9..fd63112cd5b12a 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:{"34":0.006,"41":0.006,"47":0.009,"52":0.006,"67":0.012,"72":0.006,"78":0.03299,"82":0.006,"87":0.009,"88":0.009,"89":0.02999,"91":0.006,"92":0.003,"93":0.75875,"94":3.28091,"95":0.03599,_:"2 3 4 5 6 7 8 9 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 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 90 96 3.5 3.6"},D:{"11":0.16195,"37":0.006,"38":0.009,"44":0.006,"46":0.015,"49":0.08397,"58":0.012,"59":0.10796,"67":0.01799,"73":0.02099,"77":0.006,"78":0.006,"79":0.015,"80":0.06298,"81":0.04499,"84":0.02999,"86":0.01799,"87":0.17994,"88":0.01799,"89":0.04798,"90":0.02999,"91":0.32689,"92":0.15295,"93":0.06598,"94":0.55182,"95":9.63279,"96":7.98034,"97":0.02699,"98":0.02699,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 45 47 48 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 68 69 70 71 72 74 75 76 83 85 99"},F:{"80":0.34189,"81":0.18894,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.006,"14":0.009,"15":0.04499,"16":0.02999,"17":0.03299,"18":0.06598,"84":0.006,"85":0.006,"87":0.009,"89":0.009,"91":0.03299,"92":0.015,"93":0.015,"94":0.03899,"95":1.39154,"96":0.80073,_:"13 79 80 81 83 86 88 90"},E:{"4":0,"10":0.006,"13":0.01799,"14":0.11696,"15":0.06298,_:"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.02099,"13.1":0.16794,"14.1":0.23392,"15.1":0.09897},G:{"8":0.00483,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00387,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01063,"9.3":0.01546,"10.0-10.2":0,"10.3":0.03962,"11.0-11.2":0.02029,"11.3-11.4":0.00193,"12.0-12.1":0.01063,"12.2-12.5":0.28026,"13.0-13.1":0.02609,"13.2":0.00483,"13.3":0.05219,"13.4-13.7":0.28316,"14.0-14.4":1.16358,"14.5-14.8":5.46418,"15.0-15.1":2.2798},P:{"4":0.52776,"5.0-5.4":0.05092,"6.2-6.4":0.07104,"7.2-7.4":0.70029,"8.2":0.02037,"9.2":0.27403,"10.1":0.07129,"11.1-11.2":0.38567,"12.0":0.07104,"13.0":0.42627,"14.0":0.27403,"15.0":3.15639},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.02883},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17394,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":52.78158},S:{"2.5":0},R:{_:"0"},M:{"0":0.06301},Q:{"10.4":0.95914},O:{"0":1.49821},H:{"0":0.71583}}; +module.exports={C:{"12":0.00337,"29":0.01012,"34":0.00337,"44":0.01012,"47":0.00337,"48":0.00675,"49":0.00337,"52":0.00337,"53":0.00337,"72":0.02024,"78":0.02362,"79":0.00337,"88":0.00675,"89":0.0135,"93":0.02024,"94":1.28549,"95":2.44615,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 50 51 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 87 90 91 92 96 97 3.5 3.6"},D:{"11":0.00675,"25":0.00337,"43":0.03711,"46":0.0135,"47":0.0135,"49":0.0776,"53":0.02362,"58":0.02699,"59":0.12484,"67":0.00337,"69":0.01012,"70":0.00675,"71":0.01012,"72":0.00337,"74":0.02024,"76":0.00337,"77":0.00675,"79":0.02024,"80":0.02699,"81":0.01687,"85":0.00337,"86":0.04724,"87":0.10797,"88":0.01687,"89":0.02024,"90":0.01687,"91":0.63769,"92":0.21594,"93":0.06748,"94":0.19907,"95":0.32053,"96":18.74932,"97":0.00675,"98":0.08098,_:"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 40 41 42 44 45 48 50 51 52 54 55 56 57 60 61 62 63 64 65 66 68 73 75 78 83 84 99"},F:{"36":0.00337,"74":0.41838,"78":0.00337,"79":0.00675,"80":0.11134,"81":0.18894,"82":0.35427,_:"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 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"14":0.13159,"15":0.08098,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.01012,"10.1":0.01012,"12.1":0.0135,"13.1":0.1687,"14.1":0.25642,"15.1":0.1687,"15.2":0.04386},B:{"12":0.00337,"13":0.00337,"14":0.00337,"15":0.06411,"16":0.0135,"17":0.03037,"18":0.13833,"84":0.02699,"85":0.0135,"89":0.06073,"90":0.00675,"92":0.05398,"93":0.02024,"94":0.00675,"95":0.0911,"96":3.18506,_:"79 80 81 83 86 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00885,"6.0-6.1":0,"7.0-7.1":0.00796,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03981,"10.0-10.2":0.01061,"10.3":0.11057,"11.0-11.2":0.1088,"11.3-11.4":0.01061,"12.0-12.1":0.00708,"12.2-12.5":0.14153,"13.0-13.1":0.01061,"13.2":0.00973,"13.3":0.02919,"13.4-13.7":0.28306,"14.0-14.4":0.62893,"14.5-14.8":3.84258,"15.0-15.1":3.33572,"15.2":0.26006},P:{"4":0.30315,"5.0-5.4":0.02021,"6.2-6.4":0.11115,"7.2-7.4":0.85892,"8.2":0.01016,"9.2":0.15157,"10.1":0.07114,"11.1-11.2":0.43451,"12.0":0.17178,"13.0":0.37388,"14.0":0.45472,"15.0":0.84881},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.03885,"4.4":0,"4.4.3-4.4.4":0.05783},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22943,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.8089},H:{"0":0.62103},L:{"0":50.37628},S:{"2.5":0},R:{_:"0"},M:{"0":0.19878},Q:{"10.4":0.28492}}; 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 6faceef751b3e6..81e69fd61931c9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js @@ -1 +1 @@ -module.exports={C:{"52":0.0213,"70":0.0071,"78":0.071,"82":0.071,"88":0.0071,"89":0.0071,"90":0.0142,"91":0.0284,"92":0.0284,"93":0.2982,"94":1.6046,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 95 96 3.5 3.6"},D:{"49":0.0426,"52":0.0142,"59":0.0071,"66":0.0142,"67":0.0071,"68":0.0071,"69":0.1278,"70":0.0284,"71":0.0071,"72":0.0142,"73":0.0142,"74":0.0071,"75":0.0213,"76":0.071,"77":0.0142,"78":0.0355,"79":0.0639,"80":0.0781,"81":0.0284,"83":0.0284,"84":0.0284,"85":0.0284,"86":0.0213,"87":0.3692,"88":0.0639,"89":0.1633,"90":0.142,"91":0.426,"92":0.568,"93":1.349,"94":5.0694,"95":29.0177,"96":13.9515,"97":0.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 43 44 45 46 47 48 50 51 53 54 55 56 57 58 60 61 62 63 64 65 98 99"},F:{"76":0.0142,"79":0.0284,"80":0.71,"81":0.355,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0142,"85":0.0071,"86":0.0071,"89":0.0071,"90":0.0142,"91":0.0142,"92":0.0213,"93":0.0213,"94":0.1136,"95":3.2092,"96":1.2496,_:"12 13 14 15 16 17 79 80 81 83 84 87 88"},E:{"4":0,"12":0.0142,"13":0.1136,"14":1.2922,"15":1.5975,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0142,"11.1":0.0568,"12.1":0.1704,"13.1":0.7313,"14.1":4.4162,"15.1":1.7253},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00186,"8.1-8.4":0,"9.0-9.2":0.02603,"9.3":0.06507,"10.0-10.2":0.00372,"10.3":0.11526,"11.0-11.2":0.03532,"11.3-11.4":0.02603,"12.0-12.1":0.01673,"12.2-12.5":0.50008,"13.0-13.1":0.01859,"13.2":0.01487,"13.3":0.07436,"13.4-13.7":0.22494,"14.0-14.4":0.91836,"14.5-14.8":10.65404,"15.0-15.1":5.87636},P:{"4":0.01113,"5.0-5.4":0.05092,"6.2-6.4":0.02037,"7.2-7.4":0.06276,"8.2":0.02037,"9.2":0.14257,"10.1":0.07129,"11.1-11.2":0.03189,"12.0":0.01063,"13.0":0.01113,"14.0":0.0334,"15.0":1.07999},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00443,"4.4":0,"4.4.3-4.4.4":0.03617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0508,"11":0.2758,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":9.1156},S:{"2.5":0},R:{_:"0"},M:{"0":0.2175},Q:{"10.4":0.0058},O:{"0":0.0116},H:{"0":0.07138}}; +module.exports={C:{"52":0.03973,"70":0.01324,"78":0.07283,"84":0.03311,"87":0.05959,"88":0.00662,"89":0.01324,"90":0.01986,"91":0.03311,"92":0.01324,"93":0.01324,"94":0.68858,"95":1.39703,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 82 83 85 86 96 97 3.5 3.6"},D:{"38":0.01324,"49":0.04635,"52":0.01986,"59":0.01324,"60":0.01324,"66":0.01324,"67":0.00662,"69":0.22511,"70":0.01324,"71":0.00662,"72":0.01986,"73":0.01324,"74":0.00662,"75":0.01986,"76":0.03973,"77":0.00662,"78":0.01986,"79":0.07945,"80":0.06621,"81":0.02648,"83":0.02648,"84":0.03973,"85":0.01986,"86":0.01986,"87":0.35753,"88":0.07283,"89":0.07945,"90":0.08607,"91":0.19863,"92":0.21849,"93":0.39064,"94":1.69498,"95":1.71484,"96":40.89792,"97":0.01986,"98":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 47 48 50 51 53 54 55 56 57 58 61 62 63 64 65 68 99"},F:{"79":0.00662,"80":0.00662,"81":0.73493,"82":0.51644,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"5":0.00662,"12":0.01324,"13":0.11918,"14":0.95342,"15":0.81438,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00662,"11.1":0.03973,"12.1":0.13242,"13.1":0.60913,"14.1":3.27077,"15.1":3.23767,"15.2":0.34429},B:{"18":0.01324,"85":0.00662,"86":0.00662,"90":0.01986,"91":0.01324,"92":0.01986,"93":0.01986,"94":0.02648,"95":0.14566,"96":4.80685,_:"12 13 14 15 16 17 79 80 81 83 84 87 88 89"},G:{"8":0,"3.2":0,"4.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.00218,"9.0-9.2":0.0415,"9.3":0.09611,"10.0-10.2":0.00437,"10.3":0.13979,"11.0-11.2":0.0284,"11.3-11.4":0.03276,"12.0-12.1":0.01747,"12.2-12.5":0.58319,"13.0-13.1":0.01747,"13.2":0.00874,"13.3":0.0699,"13.4-13.7":0.22498,"14.0-14.4":0.87151,"14.5-14.8":7.34343,"15.0-15.1":11.60052,"15.2":0.74264},P:{"4":0.01109,"5.0-5.4":0.04065,"6.2-6.4":0.04065,"7.2-7.4":0.10485,"8.2":0.01016,"9.2":0.11179,"10.1":0.07114,"11.1-11.2":0.03162,"12.0":0.01054,"13.0":0.01109,"14.0":0.02219,"15.0":0.13314},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.00185,"4.4":0,"4.4.3-4.4.4":0.05281},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00684,"10":0.04789,"11":0.35577,_:"6 7 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.01014},H:{"0":0.07998},L:{"0":10.56869},S:{"2.5":0},R:{_:"0"},M:{"0":0.27032},Q:{"10.4":0.00676}}; 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 9a27ea76930358..b14ad87508bf04 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:{"77":0.05603,"82":0.0056,"87":0.01121,"92":0.02241,"93":0.07844,"94":0.71718,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 83 84 85 86 88 89 90 91 95 96 3.5 3.6"},D:{"34":0.01121,"38":0.09525,"39":0.0056,"59":0.09525,"65":0.02802,"69":0.15128,"71":0.0056,"73":0.0056,"74":0.02241,"75":0.23533,"76":2.07311,"77":0.20731,"78":0.0056,"79":0.01681,"81":0.01121,"83":0.02241,"84":0.06163,"85":0.01121,"87":0.02241,"88":0.25214,"89":0.01121,"90":0.05603,"91":0.12327,"92":0.95251,"93":0.23533,"94":3.31137,"95":19.17907,"96":11.12756,"97":0.05043,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 66 67 68 70 72 80 86 98 99"},F:{"80":0.52668,"81":0.1905,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0056,"15":0.01121,"16":0.01121,"18":0.07844,"92":0.03362,"94":0.14568,"95":5.36767,"96":2.12914,_:"12 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93"},E:{"4":0,"13":0.10085,"14":0.06163,"15":0.22972,_:"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.01681,"13.1":0.23533,"14.1":0.43703,"15.1":1.10379},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00288,"6.0-6.1":0.00216,"7.0-7.1":0.00288,"8.1-8.4":0,"9.0-9.2":0.13457,"9.3":0.04246,"10.0-10.2":0.00144,"10.3":0.01295,"11.0-11.2":0,"11.3-11.4":0.00864,"12.0-12.1":0.03238,"12.2-12.5":0.26555,"13.0-13.1":0.01008,"13.2":0.00288,"13.3":0.01943,"13.4-13.7":0.0734,"14.0-14.4":0.17271,"14.5-14.8":3.37729,"15.0-15.1":3.03618},P:{"4":0.2677,"5.0-5.4":0.05092,"6.2-6.4":0.07104,"7.2-7.4":0.06692,"8.2":0.02037,"9.2":0.27403,"10.1":0.02231,"11.1-11.2":0.04462,"12.0":0.04462,"13.0":0.15616,"14.0":0.22308,"15.0":3.22355},I:{"0":0,"3":0,"4":0.01737,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00289,"4.2-4.3":0.00386,"4.4":0,"4.4.3-4.4.4":0.2441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.44264,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":36.10348},S:{"2.5":0},R:{_:"0"},M:{"0":0.10113},Q:{"10.4":0.00879},O:{"0":1.03769},H:{"0":0.01665}}; +module.exports={C:{"77":0.02164,"94":0.29209,"95":0.51386,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 3.5 3.6"},D:{"22":0.01082,"38":0.07032,"49":0.01082,"62":0.02705,"65":0.00541,"69":0.07032,"75":0.09195,"76":1.66597,"77":0.41649,"79":0.02705,"81":0.02705,"83":0.02164,"84":0.01623,"85":0.01082,"87":0.03245,"88":0.19472,"90":0.02164,"91":0.0595,"92":0.9033,"93":0.06491,"94":1.14671,"95":0.33536,"96":30.67985,"97":0.04327,_:"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 53 54 55 56 57 58 59 60 61 63 64 66 67 68 70 71 72 73 74 78 80 86 89 98 99"},F:{"28":0.00541,"79":0.01082,"80":0.02705,"81":0.24341,"82":0.34077,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02164,"14":0.12441,"15":0.07573,_:"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.00541,"12.1":0.01082,"13.1":0.09736,"14.1":0.52467,"15.1":0.66531,"15.2":0.16768},B:{"15":0.07573,"17":0.02164,"18":0.16227,"80":0.01082,"83":0.01082,"90":0.01082,"92":0.01082,"93":0.03786,"94":0.02705,"95":0.20554,"96":6.81534,_:"12 13 14 16 79 81 84 85 86 87 88 89 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00376,"6.0-6.1":0,"7.0-7.1":0.02179,"8.1-8.4":0,"9.0-9.2":0.01277,"9.3":0.04959,"10.0-10.2":0.00225,"10.3":0.00902,"11.0-11.2":0.00075,"11.3-11.4":0.00075,"12.0-12.1":0,"12.2-12.5":0.29154,"13.0-13.1":0.01202,"13.2":0.00225,"13.3":0.00827,"13.4-13.7":0.0804,"14.0-14.4":0.23444,"14.5-14.8":2.26396,"15.0-15.1":3.88547,"15.2":0.63643},P:{"4":0.18547,"5.0-5.4":0.02021,"6.2-6.4":0.11115,"7.2-7.4":0.05455,"8.2":0.01016,"9.2":0.02182,"10.1":0.07114,"11.1-11.2":0.08728,"12.0":0.17178,"13.0":0.17456,"14.0":0.02182,"15.0":0.26185},I:{"0":0,"3":0,"4":0.01185,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00222,"4.2-4.3":0.00815,"4.4":0,"4.4.3-4.4.4":0.04665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.43813,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.02755},O:{"0":1.18448},H:{"0":0.04346},L:{"0":38.89007},S:{"2.5":0},R:{_:"0"},M:{"0":0.101},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js index e624f8f2187d0b..d1f9f8daf8cdeb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js @@ -1 +1 @@ -module.exports={C:{"4":0.00455,"17":0.0091,"52":0.0182,"73":0.03185,"78":0.03185,"79":0.0091,"80":0.0182,"81":0.0182,"82":0.0091,"83":0.00455,"84":0.0182,"87":0.00455,"88":0.0182,"89":0.0182,"90":0.0273,"91":0.01365,"92":0.01365,"93":0.25025,"94":1.2649,"95":0.0091,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 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 85 86 96 3.5 3.6"},D:{"24":0.0091,"38":0.02275,"45":0.00455,"47":0.0091,"49":0.29575,"50":0.0091,"59":0.00455,"63":0.0182,"65":0.02275,"66":0.00455,"67":0.0091,"68":0.00455,"70":0.0091,"71":0.00455,"72":0.01365,"73":0.0091,"74":0.0091,"75":0.03185,"76":0.05005,"77":0.0091,"78":0.01365,"79":0.0455,"80":0.0364,"81":0.0364,"83":0.0728,"84":0.09555,"85":0.1638,"86":0.14105,"87":0.31395,"88":0.0637,"89":0.05915,"90":0.1092,"91":0.3094,"92":0.25935,"93":0.31395,"94":1.2012,"95":17.4993,"96":10.62425,"97":0.0091,_:"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 43 44 46 48 51 52 53 54 55 56 57 58 60 61 62 64 69 98 99"},F:{"70":0.01365,"72":0.00455,"77":0.00455,"78":0.01365,"79":0.0091,"80":1.23305,"81":0.5551,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00455,"13":0.00455,"15":0.00455,"16":0.00455,"17":0.0091,"18":0.26845,"84":0.02275,"85":0.00455,"87":0.0091,"89":0.0273,"90":0.0091,"91":0.0091,"92":0.0182,"93":0.01365,"94":0.0637,"95":2.2841,"96":0.9009,_:"14 79 80 81 83 86 88"},E:{"4":0,"12":0.01365,"13":0.0364,"14":0.3185,"15":0.49595,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.0728,"10.1":0.0091,"11.1":0.0273,"12.1":0.0637,"13.1":0.2184,"14.1":0.82355,"15.1":0.4459},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00434,"6.0-6.1":0.00434,"7.0-7.1":0.03907,"8.1-8.4":0.00434,"9.0-9.2":0,"9.3":0.06367,"10.0-10.2":0.00289,"10.3":0.06078,"11.0-11.2":0.03907,"11.3-11.4":0.0246,"12.0-12.1":0.03039,"12.2-12.5":0.79883,"13.0-13.1":0.02315,"13.2":0.01447,"13.3":0.11867,"13.4-13.7":0.39073,"14.0-14.4":1.26771,"14.5-14.8":6.58021,"15.0-15.1":4.99702},P:{"4":0.09623,"5.0-5.4":0.01069,"6.2-6.4":0.07104,"7.2-7.4":0.09623,"8.2":0.02037,"9.2":0.02138,"10.1":0.02231,"11.1-11.2":0.32077,"12.0":0.02138,"13.0":0.06415,"14.0":0.12831,"15.0":1.36862},I:{"0":0,"3":0,"4":0.00417,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00278,"4.2-4.3":0.01113,"4.4":0,"4.4.3-4.4.4":0.11271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01456,"9":0.01941,"10":0.00971,"11":0.10192,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":39.95625},S:{"2.5":0},R:{_:"0"},M:{"0":0.3815},Q:{"10.4":0},O:{"0":0.109},H:{"0":0.22703}}; +module.exports={C:{"17":0.00468,"48":0.00468,"52":0.01405,"72":0.00468,"73":0.0281,"77":0.00468,"78":0.05152,"79":0.00468,"80":0.00937,"81":0.00937,"83":0.00937,"84":0.01405,"87":0.0281,"88":0.02342,"89":0.00937,"90":0.0281,"91":0.00937,"92":0.00468,"93":0.00937,"94":0.50119,"95":0.91806,"96":0.00937,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 74 75 76 82 85 86 97 3.5 3.6"},D:{"24":0.00468,"29":0.00937,"38":0.03279,"47":0.01405,"49":0.12178,"51":0.00468,"53":0.00468,"54":0.00468,"63":0.01405,"65":0.01405,"70":0.01405,"72":0.00937,"73":0.00468,"74":0.00937,"75":0.01874,"76":0.03747,"77":0.00937,"78":0.01874,"79":0.04216,"80":0.03747,"81":0.03747,"83":0.06558,"84":0.06558,"85":0.10773,"86":0.10773,"87":0.26699,"88":0.03747,"89":0.06089,"90":0.07494,"91":0.10773,"92":0.2623,"93":0.16394,"94":0.4403,"95":0.69323,"96":26.99389,"97":0.01405,"98":0.00937,_:"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 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 55 56 57 58 59 60 61 62 64 66 67 68 69 71 99"},F:{"68":0.00468,"70":0.00937,"72":0.01874,"80":0.01874,"81":0.96959,"82":0.72602,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.00468,"12":0.01405,"13":0.03747,"14":0.27636,"15":0.27167,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.07494,"11.1":0.01874,"12.1":0.03279,"13.1":0.2342,"14.1":0.68855,"15.1":0.59487,"15.2":0.08431},B:{"17":0.00937,"18":0.19673,"83":0.00468,"84":0.00937,"85":0.00937,"87":0.00937,"89":0.01874,"90":0.00937,"92":0.01874,"93":0.00468,"94":0.01405,"95":0.06558,"96":2.89471,_:"12 13 14 15 16 79 80 81 86 88 91"},G:{"8":0.00293,"3.2":0.00293,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00293,"6.0-6.1":0.00439,"7.0-7.1":0.05704,"8.1-8.4":0.00293,"9.0-9.2":0,"9.3":0.07021,"10.0-10.2":0.00878,"10.3":0.05704,"11.0-11.2":0.0234,"11.3-11.4":0.0234,"12.0-12.1":0.02048,"12.2-12.5":0.76202,"13.0-13.1":0.02486,"13.2":0.01316,"13.3":0.10238,"13.4-13.7":0.3481,"14.0-14.4":1.10574,"14.5-14.8":4.83101,"15.0-15.1":6.49401,"15.2":0.66403},P:{"4":0.11641,"5.0-5.4":0.01058,"6.2-6.4":0.11115,"7.2-7.4":0.09524,"8.2":0.01016,"9.2":0.02116,"10.1":0.07114,"11.1-11.2":0.31747,"12.0":0.03175,"13.0":0.06349,"14.0":0.10582,"15.0":0.26456},I:{"0":0,"3":0,"4":0.00181,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00121,"4.2-4.3":0.00665,"4.4":0,"4.4.3-4.4.4":0.0435},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.08945,"9":0.02795,"10":0.03354,"11":0.19567,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.10102},H:{"0":0.22652},L:{"0":42.39772},S:{"2.5":0},R:{_:"0"},M:{"0":0.36687},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js index 98bfd0d239386e..a554d6a3e18724 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:{"15":0.0078,"29":0.0039,"30":0.0078,"33":0.0039,"34":0.0039,"35":0.0039,"36":0.0078,"38":0.0117,"39":0.0039,"40":0.0078,"41":0.0078,"43":0.0156,"44":0.0039,"47":0.0273,"48":0.0117,"52":0.1989,"56":0.0078,"60":0.0039,"68":0.0039,"72":0.0156,"78":0.0273,"80":0.0039,"81":0.0039,"82":0.0039,"83":0.0039,"84":0.0624,"85":0.0078,"86":0.0078,"87":0.0078,"88":0.0351,"89":0.0468,"90":0.0117,"91":0.0507,"92":0.0351,"93":0.3705,"94":2.2503,"95":0.039,_:"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 31 32 37 42 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 96 3.5 3.6"},D:{"11":0.0039,"18":0.0078,"22":0.0078,"26":0.0117,"28":0.0039,"29":0.0039,"30":0.0117,"31":0.0156,"32":0.0156,"33":0.039,"34":0.0078,"37":0.0078,"38":0.0195,"39":0.0273,"40":0.0351,"42":0.0078,"43":0.2769,"46":0.0078,"47":0.0117,"49":0.2145,"50":0.0429,"51":0.0117,"52":0.0195,"53":0.0078,"54":0.0117,"55":0.0195,"56":0.0468,"57":0.0156,"58":0.0273,"59":0.0039,"60":0.0156,"61":0.0507,"62":0.0156,"63":0.0702,"64":0.0195,"65":0.0156,"66":0.0078,"67":0.0429,"68":0.0156,"69":0.039,"70":0.0312,"71":0.0234,"72":0.0156,"73":0.0156,"74":0.0234,"75":0.0156,"76":0.0195,"77":0.0195,"78":0.0195,"79":0.1209,"80":0.0429,"81":0.1131,"83":0.0507,"84":0.0624,"85":0.0468,"86":0.1248,"87":0.6864,"88":0.0858,"89":0.1014,"90":0.0819,"91":0.1911,"92":0.2613,"93":0.2301,"94":0.7371,"95":12.9909,"96":8.8764,"97":0.0195,"98":0.0039,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 23 24 25 27 35 36 41 44 45 48 99"},F:{"25":0.0078,"28":0.0156,"36":0.0039,"77":0.0078,"78":0.0078,"79":0.0273,"80":1.1895,"81":0.4914,_:"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 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0117,"13":0.0078,"14":0.0039,"15":0.0078,"16":0.0156,"17":0.0195,"18":0.0273,"84":0.0078,"85":0.0039,"89":0.0117,"90":0.0039,"91":0.0078,"92":0.0156,"93":0.0117,"94":0.0585,"95":0.8619,"96":0.3705,_:"79 80 81 83 86 87 88"},E:{"4":0,"12":0.0078,"13":0.0663,"14":0.0273,"15":0.039,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0156,"11.1":0.0039,"12.1":0.0078,"13.1":0.0195,"14.1":0.0663,"15.1":0.1053},G:{"8":0,"3.2":0.00057,"4.0-4.1":0.00019,"4.2-4.3":0.00019,"5.0-5.1":0.01047,"6.0-6.1":0.00133,"7.0-7.1":0.06225,"8.1-8.4":0.00419,"9.0-9.2":0.00171,"9.3":0.08338,"10.0-10.2":0.00228,"10.3":0.05482,"11.0-11.2":0.00952,"11.3-11.4":0.008,"12.0-12.1":0.008,"12.2-12.5":0.17703,"13.0-13.1":0.00761,"13.2":0.00381,"13.3":0.03331,"13.4-13.7":0.09004,"14.0-14.4":0.17456,"14.5-14.8":0.51054,"15.0-15.1":0.6594},P:{"4":0.2685,"5.0-5.4":0.01033,"6.2-6.4":0.02065,"7.2-7.4":0.17556,"8.2":0.05025,"9.2":0.06196,"10.1":0.03098,"11.1-11.2":0.18589,"12.0":0.07229,"13.0":0.19621,"14.0":0.21687,"15.0":1.1876},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0.00095,"4.1":0.00286,"4.2-4.3":0.01018,"4.4":0,"4.4.3-4.4.4":0.08875},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01771,"9":0.02361,"11":0.17708,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":60.6072},S:{"2.5":0},R:{_:"0"},M:{"0":0.1159},Q:{"10.4":0.0244},O:{"0":0.3599},H:{"0":0.49088}}; +module.exports={C:{"15":0.01253,"27":0.00835,"30":0.00418,"35":0.00418,"36":0.00418,"38":0.00835,"39":0.00418,"40":0.00418,"41":0.00418,"43":0.01253,"45":0.00418,"47":0.02088,"48":0.00835,"52":0.20458,"56":0.00835,"68":0.00418,"72":0.0167,"74":0.00418,"78":0.04593,"79":0.00418,"80":0.00418,"81":0.00418,"82":0.00418,"83":0.01253,"84":0.09185,"85":0.00835,"86":0.00835,"87":0.00835,"88":0.02505,"89":0.04175,"90":0.00835,"91":0.05428,"92":0.02088,"93":0.02088,"94":0.92685,"95":1.87875,"96":0.02923,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 28 29 31 32 33 34 37 42 44 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 75 76 77 97 3.5 3.6"},D:{"11":0.00418,"18":0.00418,"22":0.00835,"26":0.00835,"30":0.00835,"31":0.01253,"32":0.00418,"33":0.02505,"34":0.00835,"38":0.0167,"39":0.0167,"40":0.02923,"42":0.00835,"43":0.2171,"45":0.00418,"46":0.00835,"47":0.00835,"48":0.00418,"49":0.2171,"50":0.02088,"51":0.01253,"52":0.00835,"53":0.00835,"54":0.00418,"55":0.02088,"56":0.04593,"57":0.0167,"58":0.02088,"60":0.01253,"61":0.02505,"62":0.00835,"63":0.05428,"64":0.0167,"65":0.01253,"66":0.00835,"67":0.03758,"68":0.0167,"69":0.0334,"70":0.02923,"71":0.02505,"72":0.01253,"73":0.02088,"74":0.02088,"75":0.01253,"76":0.0167,"77":0.0167,"78":0.02505,"79":0.1837,"80":0.05428,"81":0.1002,"83":0.05428,"84":0.06263,"85":0.04175,"86":0.1336,"87":0.52605,"88":0.06263,"89":0.08768,"90":0.07515,"91":0.1336,"92":0.25468,"93":0.3841,"94":0.30478,"95":0.54693,"96":24.09393,"97":0.0167,"98":0.00835,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 23 24 25 27 28 29 35 36 37 41 44 59 99"},F:{"25":0.00835,"28":0.0167,"36":0.00835,"77":0.00835,"78":0.00835,"79":0.01253,"80":0.0334,"81":0.82248,"82":1.09385,_:"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 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00418,"12":0.00418,"13":0.0835,"14":0.02505,"15":0.0334,_:"0 5 6 7 8 9 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02505,"11.1":0.00835,"12.1":0.00835,"13.1":0.02505,"14.1":0.06263,"15.1":0.17118,"15.2":0.02923},B:{"12":0.01253,"13":0.00835,"14":0.00418,"15":0.00418,"16":0.02088,"17":0.01253,"18":0.02923,"84":0.01253,"85":0.00418,"89":0.00835,"90":0.00418,"91":0.00835,"92":0.0167,"93":0.00835,"94":0.02088,"95":0.10438,"96":1.67418,_:"79 80 81 83 86 87 88"},G:{"8":0.00026,"3.2":0.00026,"4.0-4.1":0.00051,"4.2-4.3":0.00026,"5.0-5.1":0.01207,"6.0-6.1":0.00257,"7.0-7.1":0.05986,"8.1-8.4":0.00539,"9.0-9.2":0.00206,"9.3":0.07039,"10.0-10.2":0.00231,"10.3":0.04675,"11.0-11.2":0.00848,"11.3-11.4":0.00873,"12.0-12.1":0.00796,"12.2-12.5":0.17931,"13.0-13.1":0.01002,"13.2":0.00283,"13.3":0.03725,"13.4-13.7":0.12896,"14.0-14.4":0.19421,"14.5-14.8":0.54306,"15.0-15.1":1.10694,"15.2":0.13795},P:{"4":0.17974,"5.0-5.4":0.42234,"6.2-6.4":0.01057,"7.2-7.4":0.13745,"8.2":0.03017,"9.2":0.04229,"10.1":0.02115,"11.1-11.2":0.1163,"12.0":0.04229,"13.0":0.15859,"14.0":0.14802,"15.0":0.32776},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0.00057,"4.1":0.00256,"4.2-4.3":0.00825,"4.4":0,"4.4.3-4.4.4":0.06347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01973,"9":0.0263,"11":0.217,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.46592},H:{"0":0.53484},L:{"0":56.88728},S:{"2.5":0},R:{_:"0"},M:{"0":0.15142},Q:{"10.4":0.01747}}; 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 642457e47c36b8..e8911afc70c1e1 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:{"52":0.02863,"72":0.01145,"73":0.01718,"76":0.00573,"78":0.05726,"79":0.01145,"80":0.00573,"81":0.00573,"83":0.00573,"84":0.04581,"87":0.01145,"88":0.04581,"89":0.03436,"90":0.02863,"91":0.05153,"92":0.04581,"93":0.37792,"94":3.08631,"95":0.01145,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 77 82 85 86 96 3.5 3.6"},D:{"22":0.01145,"38":0.0229,"47":0.01718,"49":0.06299,"53":0.01145,"55":0.01718,"61":0.33211,"63":0.01145,"65":0.01718,"66":0.01718,"67":0.00573,"69":0.00573,"70":0.01145,"71":0.01145,"73":0.00573,"74":0.01718,"75":0.02863,"76":0.02863,"77":0.01145,"78":0.01145,"79":0.10307,"80":0.02863,"81":0.01718,"83":0.03436,"84":0.03436,"85":0.0229,"86":0.05153,"87":0.28057,"88":0.03436,"89":0.05726,"90":0.05153,"91":0.49816,"92":0.38937,"93":0.25194,"94":1.0135,"95":23.98621,"96":16.85162,"97":0.01718,_:"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 56 57 58 59 60 62 64 68 72 98 99"},F:{"77":0.00573,"78":0.01145,"79":0.01145,"80":1.53457,"81":0.72148,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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,"84":0.00573,"89":0.01145,"91":0.0229,"92":0.0229,"93":0.01145,"94":0.05153,"95":2.18161,"96":0.92761,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.01718,"14":0.1546,"15":0.30348,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06871,"11.1":0.0229,"12.1":0.04008,"13.1":0.18323,"14.1":0.47526,"15.1":0.47526},G:{"8":0.00048,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0091,"6.0-6.1":0.01628,"7.0-7.1":0.00287,"8.1-8.4":0,"9.0-9.2":0.00239,"9.3":0.03017,"10.0-10.2":0.00144,"10.3":0.03208,"11.0-11.2":0.01006,"11.3-11.4":0.01149,"12.0-12.1":0.00814,"12.2-12.5":0.30074,"13.0-13.1":0.00718,"13.2":0.00862,"13.3":0.02203,"13.4-13.7":0.08093,"14.0-14.4":0.26386,"14.5-14.8":1.8614,"15.0-15.1":2.11761},P:{"4":0.15671,"5.0-5.4":0.01069,"6.2-6.4":0.07104,"7.2-7.4":0.12537,"8.2":0.02037,"9.2":0.0209,"10.1":0.02231,"11.1-11.2":0.09403,"12.0":0.04179,"13.0":0.15671,"14.0":0.15671,"15.0":1.57758},I:{"0":0,"3":0,"4":0.00237,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00315,"4.2-4.3":0.00788,"4.4":0,"4.4.3-4.4.4":0.0678},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1317,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":36.25781},S:{"2.5":0},R:{_:"0"},M:{"0":0.14104},Q:{"10.4":0},O:{"0":0.05129},H:{"0":0.09711}}; +module.exports={C:{"52":0.02873,"56":0.00575,"61":0.00575,"66":0.00575,"68":0.01149,"72":0.01149,"73":0.02298,"78":0.04596,"79":0.00575,"80":0.00575,"81":0.00575,"83":0.01149,"84":0.01149,"87":0.00575,"88":0.08043,"89":0.02873,"90":0.02873,"91":0.04022,"92":0.03447,"93":0.02298,"94":1.15475,"95":2.09118,"96":0.00575,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 62 63 64 65 67 69 70 71 74 75 76 77 82 85 86 97 3.5 3.6"},D:{"22":0.02298,"38":0.02298,"42":0.1149,"47":0.01149,"49":0.03447,"53":0.01149,"55":0.01149,"61":0.12065,"63":0.01149,"65":0.01724,"66":0.01149,"67":0.01724,"69":0.00575,"70":0.01149,"71":0.01149,"74":0.01149,"75":0.01724,"76":0.02298,"77":0.01149,"78":0.01724,"79":0.08043,"80":0.02298,"81":0.01724,"83":0.03447,"84":0.02873,"85":0.03447,"86":0.04596,"87":0.1149,"88":0.02873,"89":0.03447,"90":0.03447,"91":0.50556,"92":0.32172,"93":0.37343,"94":0.37917,"95":0.56876,"96":35.85455,"97":0.00575,"98":0.01149,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 54 56 57 58 59 60 62 64 68 72 73 99"},F:{"29":0.01149,"80":0.01149,"81":1.19496,"82":0.8043,_:"9 11 12 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01724,"14":0.10341,"15":0.14937,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0632,"11.1":0.01724,"12.1":0.03447,"13.1":0.14363,"14.1":0.3447,"15.1":0.47684,"15.2":0.0632},B:{"18":0.01724,"85":0.00575,"89":0.00575,"91":0.03447,"92":0.01724,"93":0.00575,"94":0.01724,"95":0.04596,"96":2.92421,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00718,"6.0-6.1":0.01244,"7.0-7.1":0.00861,"8.1-8.4":0,"9.0-9.2":0.00191,"9.3":0.0244,"10.0-10.2":0.00144,"10.3":0.03397,"11.0-11.2":0.00861,"11.3-11.4":0.00574,"12.0-12.1":0.00574,"12.2-12.5":0.29761,"13.0-13.1":0.00718,"13.2":0.00335,"13.3":0.01531,"13.4-13.7":0.0799,"14.0-14.4":0.25263,"14.5-14.8":1.29952,"15.0-15.1":2.47895,"15.2":0.23924},P:{"4":0.15665,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.11487,"9.2":0.01044,"11.1-11.2":0.0731,"12.0":0.05222,"13.0":0.15665,"14.0":0.12532,"15.0":0.30285},I:{"0":0,"3":0,"4":0.00287,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00382,"4.2-4.3":0.00764,"4.4":0,"4.4.3-4.4.4":0.0793},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12639,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04256},H:{"0":0.12894},L:{"0":42.55771},S:{"2.5":0},R:{_:"0"},M:{"0":0.15747},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js index ae229507da6cb5..64802978f063d2 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.05385,"55":0.00673,"66":0.01346,"68":0.08077,"69":0.01346,"71":0.02692,"78":0.04712,"82":0.60579,"84":0.07404,"88":0.01346,"89":0.01346,"90":0.00673,"91":0.1077,"92":0.05385,"93":0.68656,"94":3.53378,"95":0.02019,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 67 70 72 73 74 75 76 77 79 80 81 83 85 86 87 96 3.5 3.6"},D:{"48":0.01346,"49":0.10097,"59":0.01346,"60":0.03366,"61":0.00673,"64":0.00673,"67":0.00673,"69":0.59233,"70":0.00673,"73":0.04039,"74":0.00673,"75":0.02019,"76":0.01346,"77":0.00673,"78":0.02019,"79":0.06731,"80":0.02692,"81":0.01346,"83":0.02692,"84":0.02692,"85":0.02692,"86":0.03366,"87":0.0875,"88":0.08077,"89":0.07404,"90":0.08077,"91":3.23761,"92":0.28943,"93":0.3029,"94":1.88468,"95":25.00567,"96":13.87932,"97":0.02019,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 62 63 65 66 68 71 72 98 99"},F:{"70":0.00673,"78":0.02692,"79":0.02019,"80":4.00495,"81":1.17793,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02019,"85":0.00673,"89":0.06731,"90":0.01346,"92":0.03366,"93":0.02692,"94":0.16828,"95":3.0828,"96":1.15773,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 91"},E:{"4":0.02019,"12":0.00673,"13":0.06058,"14":0.51829,"15":0.75387,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01346,"11.1":0.02692,"12.1":0.06731,"13.1":0.44425,"14.1":1.35966,"15.1":1.09715},G:{"8":0,"3.2":0,"4.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.01523,"9.0-9.2":0,"9.3":0.02066,"10.0-10.2":0.00979,"10.3":0.14139,"11.0-11.2":0.03372,"11.3-11.4":0.01088,"12.0-12.1":0.02066,"12.2-12.5":0.2371,"13.0-13.1":0.00979,"13.2":0.0087,"13.3":0.04133,"13.4-13.7":0.13595,"14.0-14.4":0.70041,"14.5-14.8":4.85611,"15.0-15.1":4.63098},P:{"4":0.05319,"5.0-5.4":0.04134,"6.2-6.4":0.04117,"7.2-7.4":0.57643,"8.2":0.02037,"9.2":0.04117,"10.1":0.01029,"11.1-11.2":0.05319,"12.0":0.03192,"13.0":0.07447,"14.0":0.1383,"15.0":1.89371},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.0049,"4.4":0,"4.4.3-4.4.4":0.02382},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00781,"11":0.38259,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":19.33448},S:{"2.5":0},R:{_:"0"},M:{"0":0.19941},Q:{"10.4":0},O:{"0":0.03923},H:{"0":0.3002}}; +module.exports={C:{"52":0.0421,"55":0.00601,"66":0.01203,"68":0.06615,"69":0.0421,"71":0.01203,"78":0.03608,"81":0.00601,"82":0.03007,"83":0.01203,"84":0.05413,"87":0.44504,"88":0.01804,"89":0.01203,"90":0.00601,"91":0.12629,"92":0.01203,"93":0.0421,"94":1.27497,"95":2.53791,"96":0.01203,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 67 70 72 73 74 75 76 77 79 80 85 86 97 3.5 3.6"},D:{"48":0.01804,"49":0.05413,"56":0.00601,"60":0.03608,"61":0.15636,"63":0.00601,"65":0.01203,"67":0.01203,"68":0.00601,"69":0.98028,"70":0.01203,"71":0.01203,"72":0.00601,"73":0.02406,"74":0.00601,"75":0.01203,"76":0.01804,"77":0.00601,"78":0.02406,"79":0.04811,"80":0.01804,"81":0.02406,"83":0.02406,"84":0.0421,"85":0.02406,"86":0.07217,"87":0.0842,"88":0.03608,"89":0.03608,"90":0.05413,"91":2.26126,"92":0.13832,"93":0.28867,"94":0.36685,"95":1.44937,"96":34.01518,"97":0.01203,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 57 58 59 62 64 66 98 99"},F:{"36":0.01203,"56":0.00601,"68":0.01203,"70":0.00601,"78":0.01203,"80":0.03007,"81":1.4614,"82":3.01301,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 69 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.00601,"12":0.01203,"13":0.06615,"14":0.41497,"15":0.44504,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01203,"11.1":0.02406,"12.1":0.07217,"13.1":0.36685,"14.1":1.10056,"15.1":1.51553,"15.2":0.20448},B:{"18":0.02406,"88":0.00601,"89":0.02406,"92":0.01203,"93":0.03007,"94":0.01804,"95":0.09021,"96":3.59637,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00119,"6.0-6.1":0,"7.0-7.1":0.00119,"8.1-8.4":0.02139,"9.0-9.2":0,"9.3":0.02258,"10.0-10.2":0.01188,"10.3":0.14736,"11.0-11.2":0.01901,"11.3-11.4":0.01307,"12.0-12.1":0.02496,"12.2-12.5":0.25906,"13.0-13.1":0.00594,"13.2":0.00594,"13.3":0.02733,"13.4-13.7":0.16162,"14.0-14.4":0.66548,"14.5-14.8":3.32385,"15.0-15.1":6.62513,"15.2":0.54427},P:{"4":0.0812,"5.0-5.4":0.01025,"6.2-6.4":0.12301,"7.2-7.4":0.60478,"8.2":0.01016,"9.2":0.05125,"10.1":0.0232,"11.1-11.2":0.0348,"12.0":0.0232,"13.0":0.0696,"14.0":0.1392,"15.0":0.32481},I:{"0":0,"3":0,"4":0.00257,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00772,"4.4":0,"4.4.3-4.4.4":0.02958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05613,"10":0.01123,"11":0.60621,_:"6 7 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.07974},H:{"0":0.25668},L:{"0":25.44215},S:{"2.5":0},R:{_:"0"},M:{"0":0.28706},Q:{"10.4":0.00797}}; 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 ccd41d51b3e0f4..98d9dfd5a7bdf9 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:{"43":0.00489,"52":0.0587,"57":0.00489,"72":0.00489,"78":0.01468,"84":0.01957,"88":0.00978,"89":0.01468,"91":0.02446,"92":0.01957,"93":3.3657,"94":29.92436,"95":0.01957,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 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 90 96 3.5 3.6"},D:{"33":0.00978,"38":0.00489,"40":0.00978,"43":0.12719,"49":0.0587,"53":0.00489,"63":0.00978,"69":0.00978,"72":0.00489,"74":0.00978,"75":0.00489,"77":0.00489,"78":0.00489,"79":0.07338,"80":0.01468,"81":0.00978,"83":0.01468,"84":0.01468,"85":0.01468,"86":0.04403,"87":0.13208,"88":0.02935,"89":0.02935,"90":0.02446,"91":0.0587,"92":0.11252,"93":0.09784,"94":0.3033,"95":6.6042,"96":4.45661,"97":0.00978,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 73 76 98 99"},F:{"64":0.01468,"68":0.00978,"70":0.00978,"71":0.00978,"72":0.02446,"73":0.01957,"74":0.00978,"75":0.00978,"76":0.00978,"77":0.02446,"78":0.01957,"79":0.02446,"80":0.0636,"81":0.00978,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01468,"84":0.01957,"89":0.00489,"92":0.01468,"94":0.01957,"95":0.72402,"96":0.28374,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93"},E:{"4":0,"13":0.02935,"14":0.04403,"15":0.0636,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01468,"11.1":0.00489,"12.1":0.01468,"13.1":0.02935,"14.1":0.09295,"15.1":0.07827},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00276,"6.0-6.1":0.47128,"7.0-7.1":0.02209,"8.1-8.4":0.00368,"9.0-9.2":0.01473,"9.3":0.13255,"10.0-10.2":0.09297,"10.3":0.25773,"11.0-11.2":0.09113,"11.3-11.4":0.06811,"12.0-12.1":0.05247,"12.2-12.5":2.3343,"13.0-13.1":0.03314,"13.2":0.01105,"13.3":0.13071,"13.4-13.7":0.41973,"14.0-14.4":1.72587,"14.5-14.8":1.50956,"15.0-15.1":1.82896},P:{"4":0.13763,"5.0-5.4":0.01069,"6.2-6.4":0.07104,"7.2-7.4":0.05293,"8.2":0.02037,"9.2":0.02117,"10.1":0.02231,"11.1-11.2":0.06352,"12.0":0.02117,"13.0":0.11645,"14.0":0.09528,"15.0":0.8787},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00437,"4.2-4.3":0.03207,"4.4":0,"4.4.3-4.4.4":0.67854},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01223,"11":0.11007,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":39.83461},S:{"2.5":0},R:{_:"0"},M:{"0":0.12257},Q:{"10.4":0},O:{"0":0.33706},H:{"0":0.27559}}; +module.exports={C:{"52":0.05774,"78":0.00525,"88":0.0105,"89":0.0105,"91":0.021,"92":0.0105,"93":0.0105,"94":11.11738,"95":25.97205,"96":0.0105,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 97 3.5 3.6"},D:{"33":0.0105,"40":0.0105,"43":0.13647,"49":0.04724,"53":0.00525,"63":0.0105,"69":0.00525,"74":0.00525,"75":0.00525,"79":0.07349,"80":0.01575,"81":0.0105,"83":0.0105,"84":0.0105,"85":0.01575,"86":0.04199,"87":0.04724,"88":0.021,"89":0.03149,"90":0.01575,"91":0.05774,"92":0.08923,"93":0.05249,"94":0.09973,"95":0.18372,"96":10.28804,"97":0.00525,_:"4 5 6 7 8 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 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 76 77 78 98 99"},F:{"64":0.01575,"70":0.00525,"71":0.00525,"72":0.01575,"73":0.01575,"74":0.00525,"75":0.00525,"76":0.00525,"77":0.0105,"78":0.0105,"79":0.03149,"80":0.03674,"81":0.05249,"82":0.01575,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00525,"14":0.03674,"15":0.03149,_:"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.01575,"11.1":0.00525,"13.1":0.02625,"14.1":0.06824,"15.1":0.09448,"15.2":0.01575},B:{"18":0.0105,"92":0.0105,"94":0.00525,"95":0.02625,"96":0.92382,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00644,"7.0-7.1":0.01564,"8.1-8.4":0.00276,"9.0-9.2":0.0092,"9.3":0.11316,"10.0-10.2":0.0322,"10.3":0.25115,"11.0-11.2":0.092,"11.3-11.4":0.08004,"12.0-12.1":0.0644,"12.2-12.5":2.70747,"13.0-13.1":0.02944,"13.2":0.01288,"13.3":0.13156,"13.4-13.7":0.45722,"14.0-14.4":1.87581,"14.5-14.8":1.03588,"15.0-15.1":2.01289,"15.2":0.26587},P:{"4":0.16005,"5.0-5.4":0.01058,"6.2-6.4":0.11115,"7.2-7.4":0.05335,"8.2":0.01016,"9.2":0.01067,"10.1":0.07114,"11.1-11.2":0.06402,"12.0":0.02134,"13.0":0.09603,"14.0":0.07469,"15.0":0.17072},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00407,"4.2-4.3":0.01423,"4.4":0,"4.4.3-4.4.4":0.44721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00612,"11":0.10411,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.304},H:{"0":0.25183},L:{"0":37.60788},S:{"2.5":0},R:{_:"0"},M:{"0":0.1045},Q:{"10.4":0}}; 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 3ba7e0aefb2b76..edd7b90d3c9ffb 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:{"29":0.00553,"31":0.00276,"33":0.18519,"35":0.00553,"40":0.02764,"41":0.00276,"43":0.00829,"47":0.00276,"49":0.00276,"50":0.01382,"52":0.00553,"53":0.06634,"54":0.00553,"55":0.00553,"56":0.01106,"57":0.00829,"59":0.09121,"60":0.00829,"64":0.00553,"72":0.01658,"77":0.01106,"79":0.00276,"81":0.00553,"82":0.00829,"84":0.29298,"85":0.01106,"87":0.00829,"88":0.00829,"89":0.00829,"91":0.00829,"92":0.01106,"93":0.64954,"94":2.19185,"95":0.08568,_:"2 3 4 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 36 37 38 39 42 44 45 46 48 51 58 61 62 63 65 66 67 68 69 70 71 73 74 75 76 78 80 83 86 90 96 3.5 3.6"},D:{"11":0.00829,"33":0.01106,"34":0.00553,"36":0.00553,"38":0.03317,"40":0.02488,"43":0.08016,"44":0.00276,"50":0.02764,"53":0.00276,"55":0.00553,"57":0.02211,"59":0.01935,"63":0.01658,"65":0.00553,"67":0.0387,"69":0.01106,"70":0.00276,"72":0.00553,"74":0.01658,"75":0.00276,"77":0.04422,"79":0.00829,"80":0.00553,"81":0.04699,"83":0.00553,"84":0.00829,"85":0.02488,"86":0.08016,"87":0.12714,"88":0.01106,"89":0.00829,"90":0.05804,"91":0.03593,"92":0.18242,"93":0.08845,"94":0.35656,"95":6.93488,"96":3.67059,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 37 39 41 42 45 46 47 48 49 51 52 54 56 58 60 61 62 64 66 68 71 73 76 78 97 98 99"},F:{"36":0.01382,"40":0.00276,"67":0.00553,"70":0.00553,"77":0.00553,"79":0.0387,"80":0.84578,"81":0.5224,_:"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 68 69 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.00553},B:{"12":0.05528,"13":0.00276,"14":0.00553,"15":0.00553,"16":0.01658,"17":0.02488,"18":0.05804,"84":0.00829,"85":0.02488,"88":0.02211,"89":0.00553,"91":0.00553,"92":0.02211,"93":0.01658,"94":0.12714,"95":1.36542,"96":0.60255,_:"79 80 81 83 86 87 90"},E:{"4":0,"14":0.00553,"15":0.00553,_:"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.00829,"12.1":0.00276,"13.1":0.01382,"14.1":0.07463,"15.1":0.00553},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.13598,"8.1-8.4":0.0102,"9.0-9.2":0.00907,"9.3":0.05704,"10.0-10.2":0.0102,"10.3":0.06874,"11.0-11.2":0.00869,"11.3-11.4":0.00434,"12.0-12.1":0.13806,"12.2-12.5":0.28499,"13.0-13.1":0.00642,"13.2":0.03324,"13.3":0.16544,"13.4-13.7":0.06081,"14.0-14.4":0.31917,"14.5-14.8":0.34561,"15.0-15.1":0.2306},P:{"4":0.52497,"5.0-5.4":0.04134,"6.2-6.4":0.04117,"7.2-7.4":0.57643,"8.2":0.02037,"9.2":0.04117,"10.1":0.01029,"11.1-11.2":0.08235,"12.0":0.05147,"13.0":0.22646,"14.0":0.12352,"15.0":0.48379},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00082,"4.1":0.00191,"4.2-4.3":0.14342,"4.4":0,"4.4.3-4.4.4":0.22289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00357,"11":0.38892,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":52.77649},S:{"2.5":0},R:{_:"0"},M:{"0":0.08683},Q:{"10.4":0},O:{"0":1.58468},H:{"0":19.14736}}; +module.exports={C:{"29":0.00928,"36":0.01238,"38":0.00928,"42":0.00928,"43":0.01238,"46":0.00309,"47":0.02475,"48":0.00619,"49":0.00309,"50":0.00619,"52":0.02166,"53":0.03403,"56":0.01856,"57":0.00928,"69":0.00309,"70":0.00619,"72":0.01856,"73":0.00309,"74":0.00309,"78":0.00309,"79":0.00309,"82":0.02785,"84":0.01238,"85":0.00928,"88":0.02475,"89":0.00619,"91":0.0526,"92":0.01238,"93":0.00619,"94":0.45172,"95":1.185,"96":0.19802,_:"2 3 4 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 37 39 40 41 44 45 51 54 55 58 59 60 61 62 63 64 65 66 67 68 71 75 76 77 80 81 83 86 87 90 97 3.5 3.6"},D:{"11":0.00928,"33":0.03094,"37":0.01238,"39":0.00309,"40":0.04641,"43":0.06807,"49":0.02475,"52":0.00619,"53":0.00309,"54":0.00309,"55":0.01238,"56":0.00619,"57":0.01238,"58":0.00619,"59":0.01856,"60":0.00309,"61":0.01238,"63":0.01238,"64":0.03094,"67":0.03094,"68":0.00928,"69":0.00928,"70":0.00619,"72":0.00928,"74":0.00619,"76":0.00928,"77":0.01238,"78":0.00309,"79":0.01856,"80":0.02475,"81":0.04641,"84":0.00619,"85":0.00619,"86":0.12685,"87":0.12376,"88":0.00619,"89":0.01547,"90":0.18564,"91":0.03094,"92":0.91582,"93":0.14851,"94":0.09591,"95":0.39603,"96":14.72125,"97":0.06807,_:"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 38 41 42 44 45 46 47 48 50 51 62 65 66 71 73 75 83 98 99"},F:{"28":0.00619,"65":0.00309,"75":0.0495,"78":0.00619,"79":0.01856,"80":0.02475,"81":0.79206,"82":1.09528,_:"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 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"14":0.04332,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.2","5.1":0.00619,"11.1":0.00309,"13.1":0.00928,"14.1":0.02166,"15.1":0.00619},B:{"12":0.04022,"13":0.01238,"14":0.00619,"15":0.02166,"16":0.00928,"17":0.03713,"18":0.04641,"83":0.00619,"84":0.01238,"85":0.03094,"88":0.00619,"89":0.01238,"90":0.01238,"92":0.01547,"93":0.00928,"94":0.01238,"95":0.04332,"96":1.62126,_:"79 80 81 86 87 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00145,"6.0-6.1":0,"7.0-7.1":0.19043,"8.1-8.4":0.00145,"9.0-9.2":0.00048,"9.3":0.01383,"10.0-10.2":0.03313,"10.3":0.13913,"11.0-11.2":0.0082,"11.3-11.4":0.02059,"12.0-12.1":0.01158,"12.2-12.5":0.20925,"13.0-13.1":0.00193,"13.2":0.00048,"13.3":0.0883,"13.4-13.7":0.04327,"14.0-14.4":0.21166,"14.5-14.8":0.25187,"15.0-15.1":0.35642,"15.2":0.02541},P:{"4":0.56377,"5.0-5.4":0.01025,"6.2-6.4":0.12301,"7.2-7.4":0.60478,"8.2":0.01016,"9.2":0.05125,"10.1":0.07114,"11.1-11.2":0.09225,"12.0":0.05125,"13.0":0.13326,"14.0":0.19476,"15.0":0.30751},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00084,"4.2-4.3":0.08307,"4.4":0,"4.4.3-4.4.4":0.27515},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00347,"11":0.28118,_:"6 7 8 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.27743},H:{"0":13.74775},L:{"0":53.96061},S:{"2.5":0},R:{_:"0"},M:{"0":0.10358},Q:{"10.4":0.04143}}; 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 9fb8e73c634745..df64bc320e017c 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.00967,"52":0.07734,"55":0.00967,"59":0.00483,"60":0.0145,"64":0.00483,"66":0.00483,"67":0.00967,"68":0.01934,"69":0.00483,"72":0.00967,"77":0.00483,"78":0.13052,"79":0.00967,"80":0.00483,"81":0.00967,"82":0.00967,"83":0.00967,"84":0.0145,"85":0.00967,"86":0.00967,"87":0.00967,"88":0.06284,"89":0.01934,"90":0.0145,"91":0.07734,"92":0.03384,"93":0.4689,"94":2.45567,"95":0.0145,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 65 70 71 73 74 75 76 96 3.5 3.6"},D:{"38":0.01934,"49":0.17402,"53":0.00967,"58":0.00483,"61":0.02417,"63":0.00967,"64":0.00483,"65":0.0145,"66":0.02417,"67":0.0145,"68":0.0145,"69":0.01934,"70":0.0145,"71":0.00967,"72":0.00967,"73":0.0145,"74":0.0145,"75":0.08701,"76":0.01934,"77":0.0145,"78":0.01934,"79":0.11118,"80":0.03867,"81":0.029,"83":0.03867,"84":0.05317,"85":0.05317,"86":0.07734,"87":0.36255,"88":0.04834,"89":0.08701,"90":0.07251,"91":0.17886,"92":0.19819,"93":0.33838,"94":1.84175,"95":18.01148,"96":11.32606,"97":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 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 62 98 99"},F:{"36":0.00483,"46":0.00483,"78":0.00483,"79":0.00967,"80":1.06348,"81":0.43506,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00483,"17":0.00967,"18":0.01934,"84":0.00483,"86":0.00483,"87":0.00967,"89":0.0145,"90":0.00967,"91":0.00967,"92":0.02417,"93":0.0145,"94":0.07734,"95":2.46534,"96":1.01031,_:"12 13 14 15 79 80 81 83 85 88"},E:{"4":0,"12":0.00967,"13":0.06284,"14":0.39155,"15":0.67193,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00967,"11.1":0.04834,"12.1":0.08218,"13.1":0.32871,"14.1":1.50821,"15.1":0.81695},G:{"8":0.00102,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00204,"6.0-6.1":0.00204,"7.0-7.1":0.0092,"8.1-8.4":0.00511,"9.0-9.2":0.00204,"9.3":0.09913,"10.0-10.2":0.00715,"10.3":0.09197,"11.0-11.2":0.02657,"11.3-11.4":0.03168,"12.0-12.1":0.02044,"12.2-12.5":0.45272,"13.0-13.1":0.03066,"13.2":0.01124,"13.3":0.07358,"13.4-13.7":0.20847,"14.0-14.4":0.72046,"14.5-14.8":4.7622,"15.0-15.1":3.65545},P:{"4":0.12644,"5.0-5.4":0.02015,"6.2-6.4":0.02015,"7.2-7.4":0.55417,"8.2":0.01008,"9.2":0.06045,"10.1":0.0403,"11.1-11.2":0.10537,"12.0":0.03161,"13.0":0.12644,"14.0":0.12644,"15.0":1.98096},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.009,"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.01107,"9":0.00553,"11":0.36528,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.55727},S:{"2.5":0},R:{_:"0"},M:{"0":0.2273},Q:{"10.4":0.01033},O:{"0":0.06199},H:{"0":0.19563}}; +module.exports={C:{"48":0.00457,"52":0.07309,"55":0.0137,"59":0.00457,"60":0.00914,"67":0.00914,"68":0.0137,"72":0.00914,"78":0.1005,"79":0.00457,"80":0.00457,"81":0.00914,"82":0.00457,"83":0.00457,"84":0.00914,"85":0.00914,"86":0.00914,"87":0.00914,"88":0.05025,"89":0.01827,"90":0.0137,"91":0.08222,"92":0.01827,"93":0.10963,"94":1.06891,"95":1.78609,"96":0.00914,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 66 69 70 71 73 74 75 76 77 97 3.5 3.6"},D:{"38":0.01827,"49":0.14161,"53":0.00914,"58":0.00457,"61":0.00457,"63":0.0137,"64":0.00457,"65":0.0137,"66":0.02284,"67":0.0137,"68":0.0137,"69":0.02284,"70":0.0137,"71":0.00914,"72":0.00914,"73":0.00914,"74":0.00914,"75":0.09136,"76":0.0137,"77":0.0137,"78":0.0137,"79":0.10963,"80":0.03198,"81":0.02741,"83":0.03198,"84":0.04568,"85":0.05025,"86":0.05482,"87":0.19186,"88":0.03198,"89":0.07766,"90":0.05025,"91":0.11877,"92":0.12334,"93":0.28778,"94":0.75372,"95":0.58014,"96":27.65467,"97":0.00914,_:"4 5 6 7 8 9 10 11 12 13 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 62 98 99"},F:{"36":0.00457,"79":0.00457,"80":0.09593,"81":0.86792,"82":0.63038,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00914,"13":0.05938,"14":0.32433,"15":0.33346,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00457,"10.1":0.00914,"11.1":0.04568,"12.1":0.07766,"13.1":0.31976,"14.1":1.12373,"15.1":1.27447,"15.2":0.15074},B:{"16":0.00457,"17":0.00914,"18":0.0137,"86":0.00457,"87":0.00457,"89":0.00457,"90":0.00457,"91":0.00914,"92":0.0137,"93":0.00914,"94":0.0137,"95":0.09136,"96":3.3255,_:"12 13 14 15 79 80 81 83 84 85 88"},G:{"8":0.00108,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00324,"6.0-6.1":0.00108,"7.0-7.1":0.00756,"8.1-8.4":0.00756,"9.0-9.2":0.00108,"9.3":0.0972,"10.0-10.2":0.00864,"10.3":0.09936,"11.0-11.2":0.02484,"11.3-11.4":0.03456,"12.0-12.1":0.02052,"12.2-12.5":0.46439,"13.0-13.1":0.02808,"13.2":0.0108,"13.3":0.06912,"13.4-13.7":0.19872,"14.0-14.4":0.64259,"14.5-14.8":3.15572,"15.0-15.1":5.50145,"15.2":0.41579},P:{"4":0.13736,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.08453,"12.0":0.0317,"13.0":0.11622,"14.0":0.12679,"15.0":0.28528},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.01059,"4.4":0,"4.4.3-4.4.4":0.05767},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01042,"9":0.00521,"11":0.35437,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.06518},H:{"0":0.19542},L:{"0":41.98141},S:{"2.5":0},R:{_:"0"},M:{"0":0.23358},Q:{"10.4":0.01086}}; 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 c5678ab3447c91..4cbb3e3cf612ea 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.01113,"30":0.00742,"31":0.00371,"33":0.00742,"34":0.01113,"35":0.00742,"37":0.00371,"38":0.00742,"39":0.00371,"40":0.00742,"41":0.01484,"43":0.02225,"44":0.00742,"47":0.02596,"48":0.00742,"52":0.36719,"56":0.00742,"57":0.00371,"60":0.02225,"63":0.00742,"64":0.01855,"65":0.00371,"66":0.00742,"67":0.05934,"68":0.03338,"72":0.07789,"77":0.09643,"78":0.05564,"81":0.01113,"84":0.22254,"85":0.00742,"87":0.01484,"88":0.06676,"89":0.0816,"90":0.01855,"91":0.09643,"92":0.04822,"93":0.64908,"94":2.74466,"95":0.36348,_:"2 3 4 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 36 42 45 46 49 50 51 53 54 55 58 59 61 62 69 70 71 73 74 75 76 79 80 82 83 86 96 3.5 3.6"},D:{"11":0.01113,"30":0.02967,"33":0.01484,"36":0.00371,"38":0.01484,"40":0.13723,"42":0.00742,"43":0.11127,"44":0.00371,"46":0.02225,"48":0.00371,"49":0.01484,"50":0.00742,"51":0.00371,"53":0.01113,"55":0.00742,"56":0.02225,"57":0.00742,"58":0.00742,"60":0.00742,"63":0.02967,"64":0.00742,"65":0.02596,"66":0.00742,"67":0.01113,"68":0.01855,"69":0.03338,"70":0.02596,"71":0.01484,"72":0.01484,"73":0.0408,"74":0.01113,"75":0.01855,"76":0.02225,"77":0.02596,"78":0.08902,"79":0.29672,"80":0.02967,"81":0.04822,"83":0.01855,"84":0.07418,"85":0.06676,"86":0.13723,"87":0.22625,"88":0.05193,"89":0.09273,"90":0.07047,"91":0.12982,"92":0.32639,"93":0.18545,"94":1.10528,"95":10.11444,"96":7.5812,"97":0.17432,"98":0.05934,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 37 39 41 45 47 52 54 59 61 62 99"},F:{"28":0.01113,"74":0.00371,"76":0.00371,"77":0.01484,"78":0.00742,"79":0.03338,"80":1.55407,"81":0.58973,_:"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 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.06676,"13":0.03709,"14":0.02225,"15":0.02225,"16":0.04822,"17":0.05564,"18":0.08531,"84":0.01484,"85":0.00371,"88":0.01113,"89":0.01855,"90":0.00742,"91":0.01113,"92":0.05193,"93":0.02225,"94":0.04822,"95":1.68018,"96":0.67875,_:"79 80 81 83 86 87"},E:{"4":0,"7":0.02596,"8":0.01113,"13":0.00371,"14":0.02225,"15":0.02967,_:"0 5 6 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01484,"13.1":0.02225,"14.1":0.07789,"15.1":0.03338},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00063,"5.0-5.1":0.00031,"6.0-6.1":0.01907,"7.0-7.1":0.18073,"8.1-8.4":0.05816,"9.0-9.2":0.00907,"9.3":0.08536,"10.0-10.2":0.0172,"10.3":0.37178,"11.0-11.2":0.15196,"11.3-11.4":0.06504,"12.0-12.1":0.10756,"12.2-12.5":0.50811,"13.0-13.1":0.00844,"13.2":0.03377,"13.3":0.13039,"13.4-13.7":0.05847,"14.0-14.4":0.28141,"14.5-14.8":0.65038,"15.0-15.1":0.38929},P:{"4":0.81749,"5.0-5.4":0.0207,"6.2-6.4":0.01035,"7.2-7.4":0.2794,"8.2":0.02037,"9.2":0.08278,"10.1":0.01035,"11.1-11.2":0.10348,"12.0":0.0207,"13.0":0.09313,"14.0":0.20696,"15.0":0.81749},I:{"0":0,"3":0,"4":0.00188,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00399,"4.2-4.3":0.03553,"4.4":0,"4.4.3-4.4.4":0.1222},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00426,"11":0.11072,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01258},N:{"10":0.00821,_:"11"},L:{"0":52.55691},S:{"2.5":0},R:{_:"0"},M:{"0":0.12584},Q:{"10.4":0.05034},O:{"0":1.48491},H:{"0":6.43341}}; +module.exports={C:{"29":0.01184,"30":0.00789,"34":0.01974,"35":0.00789,"38":0.00789,"39":0.00395,"40":0.00789,"43":0.01974,"44":0.00395,"47":0.02368,"48":0.00789,"52":0.27234,"56":0.00789,"58":0.00395,"60":0.01974,"66":0.00789,"67":0.01579,"68":0.03552,"70":0.02368,"72":0.02368,"77":0.06315,"78":0.02763,"79":0.00395,"80":0.00789,"81":0.00789,"84":0.28418,"85":0.00395,"86":0.00789,"87":0.00789,"88":0.07105,"89":0.10262,"90":0.03158,"91":0.09078,"92":0.03947,"93":0.11052,"94":1.18805,"95":2.53397,"96":0.22893,_:"2 3 4 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 36 37 41 42 45 46 49 50 51 53 54 55 57 59 61 62 63 64 65 69 71 73 74 75 76 82 83 97 3.5 3.6"},D:{"11":0.01184,"30":0.03158,"33":0.01579,"34":0.00395,"36":0.01184,"38":0.01579,"40":0.07499,"42":0.02763,"43":0.1263,"44":0.00789,"46":0.03947,"49":0.01579,"50":0.00789,"51":0.00395,"53":0.00789,"55":0.00789,"56":0.01184,"57":0.00789,"58":0.00395,"60":0.00789,"63":0.0671,"64":0.01184,"65":0.03158,"67":0.00789,"68":0.01184,"69":0.01579,"70":0.04342,"71":0.01579,"72":0.00395,"73":0.02368,"74":0.01184,"75":0.01579,"76":0.03947,"77":0.01974,"78":0.06315,"79":0.30392,"80":0.02368,"81":0.07499,"83":0.01974,"84":0.03158,"85":0.04736,"86":0.10657,"87":0.21314,"88":0.05526,"89":0.08683,"90":0.06315,"91":0.11052,"92":0.31181,"93":0.17367,"94":0.39075,"95":0.41838,"96":18.37723,"97":0.02763,"98":0.13815,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 35 37 39 41 45 47 48 52 54 59 61 62 66 99"},F:{"28":0.00789,"42":0.00395,"74":0.00395,"75":0.00789,"77":0.01184,"79":0.02763,"80":0.03158,"81":0.71441,"82":1.48013,_:"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 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"7":0.00395,"8":0.00789,"14":0.02368,"15":0.01579,_:"0 5 6 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00395,"13.1":0.02763,"14.1":0.07499,"15.1":0.03552,"15.2":0.01579},B:{"12":0.04736,"13":0.02763,"14":0.12236,"15":0.01974,"16":0.04736,"17":0.03158,"18":0.09473,"84":0.00789,"85":0.01579,"89":0.01579,"90":0.00789,"91":0.00789,"92":0.06315,"93":0.01184,"94":0.01579,"95":0.10262,"96":2.53397,_:"79 80 81 83 86 87 88"},G:{"8":0.00081,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00054,"6.0-6.1":0.00648,"7.0-7.1":0.20575,"8.1-8.4":0.01647,"9.0-9.2":0.01134,"9.3":0.06048,"10.0-10.2":0.00405,"10.3":0.17281,"11.0-11.2":0.0856,"11.3-11.4":0.05724,"12.0-12.1":0.10774,"12.2-12.5":0.49332,"13.0-13.1":0.00675,"13.2":0.08317,"13.3":0.11395,"13.4-13.7":0.04131,"14.0-14.4":0.28892,"14.5-14.8":0.51384,"15.0-15.1":0.38127,"15.2":0.04779},P:{"4":0.67138,"5.0-5.4":0.02066,"6.2-6.4":0.02066,"7.2-7.4":0.29954,"8.2":0.01016,"9.2":0.10329,"10.1":0.0232,"11.1-11.2":0.0723,"12.0":0.03099,"13.0":0.0723,"14.0":0.12395,"15.0":0.26855},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00314,"4.2-4.3":0.0418,"4.4":0,"4.4.3-4.4.4":0.13059},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14209,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.02421},O:{"0":1.41035},H:{"0":5.43833},L:{"0":53.59398},S:{"2.5":0},R:{_:"0"},M:{"0":0.10895},Q:{"10.4":0.03027}}; 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 350220bd086707..e1c189b3a428ea 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:{"3":0.01202,"50":0.00601,"52":0.03605,"55":0.02404,"57":0.01202,"59":0.01803,"60":0.01803,"63":0.01202,"66":0.00601,"68":0.02404,"74":0.01202,"76":0.01202,"78":0.18628,"79":0.01803,"80":0.01803,"81":0.02404,"82":0.04807,"83":0.02404,"84":0.0661,"85":0.00601,"86":0.00601,"87":0.01202,"88":0.03005,"89":0.01202,"90":0.03605,"91":0.21632,"92":0.0661,"93":0.78117,"94":4.65698,"95":0.01803,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 56 58 61 62 64 65 67 69 70 71 72 73 75 77 96 3.5 3.6"},D:{"38":0.01202,"41":0.01202,"42":0.01803,"48":0.09614,"49":0.12018,"52":0.0661,"53":0.01202,"56":0.02404,"59":0.01202,"61":0.16224,"63":0.00601,"64":0.54081,"66":0.08413,"67":0.01803,"68":0.00601,"69":0.15023,"70":0.56485,"71":0.01202,"72":0.56485,"73":0.01202,"75":0.02404,"76":0.03605,"77":0.00601,"78":0.02404,"79":1.17776,"80":0.62494,"81":0.04206,"83":0.11417,"84":0.18027,"85":0.20431,"86":0.27041,"87":0.60691,"88":0.04206,"89":0.0661,"90":0.06009,"91":0.22233,"92":0.25839,"93":0.7331,"94":5.37806,"95":17.56431,"96":10.26938,"97":0.01202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 50 51 54 55 57 58 60 62 65 74 98 99"},F:{"68":0.01202,"70":0.02404,"71":0.01803,"79":0.04206,"80":0.90135,"81":0.39059,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01803},B:{"16":0.00601,"17":0.02404,"18":0.03605,"81":0.01803,"84":0.00601,"85":0.04807,"86":0.01803,"89":0.01803,"91":0.00601,"92":0.02404,"93":0.02404,"94":0.10215,"95":2.92037,"96":1.10566,_:"12 13 14 15 79 80 83 87 88 90"},E:{"4":0.01803,"8":0.00601,"12":0.00601,"13":0.16224,"14":0.35453,"15":0.87731,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00601,"11.1":0.0661,"12.1":0.07812,"13.1":0.3305,"14.1":1.76064,"15.1":1.05758},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0028,"6.0-6.1":0.0014,"7.0-7.1":0.00419,"8.1-8.4":0.01538,"9.0-9.2":0.03775,"9.3":0.06012,"10.0-10.2":0.01118,"10.3":0.11744,"11.0-11.2":0.03076,"11.3-11.4":0.08249,"12.0-12.1":0.03915,"12.2-12.5":0.46137,"13.0-13.1":0.02237,"13.2":0.01538,"13.3":0.09227,"13.4-13.7":0.38867,"14.0-14.4":1.317,"14.5-14.8":6.54165,"15.0-15.1":4.73113},P:{"4":0.0434,"5.0-5.4":0.01085,"6.2-6.4":0.04066,"7.2-7.4":2.68377,"8.2":0.02033,"9.2":0.0217,"10.1":0.05083,"11.1-11.2":0.0868,"12.0":0.0434,"13.0":0.14105,"14.0":0.18445,"15.0":1.85535},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00466,"4.2-4.3":0.00532,"4.4":0,"4.4.3-4.4.4":0.02993},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00742,"7":0.01483,"8":0.25216,"9":0.07417,"10":0.11866,"11":0.35599,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":23.46611},S:{"2.5":0},R:{_:"0"},M:{"0":0.53479},Q:{"10.4":0},O:{"0":0.11175},H:{"0":0.38162}}; +module.exports={C:{"3":0.01185,"45":0.00592,"50":0.00592,"52":0.05332,"55":0.07109,"56":0.04147,"59":0.01777,"60":0.01185,"63":0.00592,"65":0.01185,"66":0.00592,"68":0.01185,"74":0.00592,"78":0.1244,"79":0.06516,"80":0.02962,"81":0.03554,"82":0.01777,"83":0.0237,"84":0.05332,"86":0.01185,"87":0.00592,"88":0.03554,"89":0.00592,"90":0.0237,"91":0.20734,"92":0.02962,"93":0.03554,"94":1.72981,"95":3.50701,"96":0.01185,_:"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 51 53 54 57 58 61 62 64 67 69 70 71 72 73 75 76 77 85 97 3.5 3.6"},D:{"38":0.01185,"42":0.02962,"48":0.10071,"49":0.0237,"52":0.08886,"56":0.0237,"61":0.0237,"64":0.5924,"66":0.08294,"67":0.0237,"69":0.28435,"70":0.6161,"72":0.6161,"73":0.01777,"74":0.00592,"75":0.01777,"76":0.01777,"77":0.01185,"78":0.0237,"79":1.29736,"80":0.67534,"81":0.02962,"83":0.06516,"84":0.19549,"85":0.18364,"86":0.20142,"87":0.47984,"88":0.03554,"89":0.05332,"90":0.03554,"91":0.60425,"92":0.14218,"93":0.73458,"94":5.46193,"95":0.72273,"96":26.21962,"97":0.01777,_:"4 5 6 7 8 9 10 11 12 13 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 53 54 55 57 58 59 60 62 63 65 68 71 98 99"},F:{"69":0.01185,"70":0.01777,"71":0.01185,"72":0.01777,"79":0.0237,"80":0.01777,"81":0.7405,"82":0.69311,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 73 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},E:{"4":0.01777,"10":0.00592,"13":0.13033,"14":0.34359,"15":0.43838,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00592,"11.1":0.05332,"12.1":0.06516,"13.1":0.2962,"14.1":1.27958,"15.1":1.57578,"15.2":0.3199},B:{"15":0.01185,"17":0.01777,"18":0.0237,"81":0.01777,"83":0.01777,"84":0.00592,"87":0.00592,"89":0.01185,"92":0.01185,"93":0.01185,"94":0.01185,"95":0.15402,"96":3.7262,_:"12 13 14 16 79 80 85 86 88 90 91"},G:{"8":0,"3.2":0,"4.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.00422,"9.0-9.2":0.07592,"9.3":0.05764,"10.0-10.2":0.00844,"10.3":0.10967,"11.0-11.2":0.02812,"11.3-11.4":0.07452,"12.0-12.1":0.03374,"12.2-12.5":0.44429,"13.0-13.1":0.01687,"13.2":0.01968,"13.3":0.07311,"13.4-13.7":0.35149,"14.0-14.4":1.16555,"14.5-14.8":4.22634,"15.0-15.1":6.61508,"15.2":0.74938},P:{"4":0.07562,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.0108,"11.1-11.2":0.04321,"12.0":0.03241,"13.0":0.14043,"14.0":0.17284,"15.0":0.4645},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.00735,"4.4":0,"4.4.3-4.4.4":0.03074},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01491,"7":0.01491,"8":0.26096,"9":0.05965,"10":0.12675,"11":0.38772,_:"5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00408},O:{"0":0.12636},H:{"0":0.38589},L:{"0":24.40981},S:{"2.5":0},R:{_:"0"},M:{"0":0.53803},Q:{"10.4":0.00408}}; 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 b2839e23f802ec..faaf8e3bdbb798 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:{"47":0.00679,"51":0.00679,"52":0.02038,"56":0.0034,"63":0.0034,"65":0.04756,"66":0.00679,"72":0.0034,"73":0.0034,"78":0.02038,"84":0.01699,"86":0.00679,"88":0.03057,"89":0.00679,"90":0.04416,"91":0.01359,"92":0.02038,"93":0.37367,"94":1.64755,"95":0.05096,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 64 67 68 69 70 71 74 75 76 77 79 80 81 82 83 85 87 96 3.5 3.6"},D:{"39":0.19703,"45":0.01359,"49":0.05096,"50":0.0034,"53":0.02038,"55":0.0034,"56":0.01699,"58":0.01019,"63":0.0034,"65":0.01699,"69":0.00679,"70":0.01019,"71":0.00679,"72":0.00679,"73":0.00679,"74":0.01019,"75":0.02038,"76":0.01019,"77":0.03397,"78":0.01019,"79":0.05775,"80":0.01019,"81":0.02038,"83":0.00679,"84":0.00679,"85":0.01019,"86":0.01019,"87":0.09851,"88":0.01359,"89":0.05775,"90":0.01699,"91":0.03737,"92":0.17664,"93":0.14607,"94":0.55031,"95":11.60755,"96":7.04198,"97":0.03397,_:"4 5 6 7 8 9 10 11 12 13 14 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 46 47 48 51 52 54 57 59 60 61 62 64 66 67 68 98 99"},F:{"80":0.26497,"81":0.15626,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00679,"13":0.01019,"14":0.01019,"15":0.01359,"16":0.02718,"17":0.03737,"18":0.05775,"80":0.00679,"84":0.01019,"85":0.01699,"87":0.01359,"89":0.03397,"90":0.02718,"91":0.01359,"92":0.05435,"93":0.06794,"94":0.08832,"95":3.10486,"96":1.07685,_:"79 81 83 86 88"},E:{"4":0,"13":0.04756,"14":0.08493,"15":0.13588,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01699,"10.1":0.0034,"11.1":0.00679,"12.1":0.01019,"13.1":0.12569,"14.1":0.34649,"15.1":0.20722},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00899,"6.0-6.1":0,"7.0-7.1":0.02824,"8.1-8.4":0.00043,"9.0-9.2":0,"9.3":0.20413,"10.0-10.2":0.06547,"10.3":0.0612,"11.0-11.2":0.00471,"11.3-11.4":0.00385,"12.0-12.1":0.02653,"12.2-12.5":0.40697,"13.0-13.1":0.00471,"13.2":0.00556,"13.3":0.10698,"13.4-13.7":0.31839,"14.0-14.4":0.61281,"14.5-14.8":1.32832,"15.0-15.1":1.09081},P:{"4":0.58962,"5.0-5.4":0.0207,"6.2-6.4":0.04066,"7.2-7.4":2.68377,"8.2":0.02033,"9.2":0.20332,"10.1":0.05083,"11.1-11.2":0.92509,"12.0":0.23381,"13.0":0.93525,"14.0":1.6367,"15.0":4.13748},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00459,"4.4":0,"4.4.3-4.4.4":0.01521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.73036,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":52.32445},S:{"2.5":0},R:{_:"0"},M:{"0":0.05942},Q:{"10.4":0.23767},O:{"0":1.26758},H:{"0":0.30002}}; +module.exports={C:{"43":0.00682,"47":0.01705,"52":0.02046,"54":0.00682,"65":0.05797,"78":0.00682,"87":0.00341,"88":0.02046,"89":0.00341,"90":0.01705,"91":0.00341,"92":0.00682,"93":0.03069,"94":0.68882,"95":1.44243,"96":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 44 45 46 48 49 50 51 53 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 97 3.5 3.6"},D:{"39":0.05115,"45":0.00682,"49":0.02728,"51":0.01705,"53":0.00682,"56":0.02046,"58":0.00682,"63":0.01023,"65":0.04433,"67":0.00682,"69":0.01705,"72":0.00682,"73":0.00682,"74":0.01023,"75":0.04092,"76":0.00682,"77":0.0682,"78":0.01023,"79":0.05115,"80":0.00682,"81":0.03751,"83":0.02728,"84":0.00682,"85":0.00682,"86":0.01705,"87":0.08184,"88":0.02387,"89":0.03069,"90":0.00682,"91":0.04092,"92":0.13981,"93":0.12617,"94":0.24893,"95":0.94457,"96":17.41146,"97":0.15345,_:"4 5 6 7 8 9 10 11 12 13 14 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 46 47 48 50 52 54 55 57 59 60 61 62 64 66 68 70 71 98 99"},F:{"28":0.01023,"36":0.01364,"80":0.00682,"81":0.33759,"82":0.24893,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00341,"13":0.02728,"14":0.04092,"15":0.05115,_:"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.00341,"12.1":0.00682,"13.1":0.19437,"14.1":0.34782,"15.1":0.31372,"15.2":0.07161},B:{"12":0.00682,"13":0.01023,"14":0.00682,"15":0.01364,"16":0.00682,"17":0.02387,"18":0.03751,"84":0.01023,"85":0.02046,"86":0.01705,"87":0.13981,"88":0.00341,"89":0.01705,"91":0.00682,"92":0.02728,"93":0.03069,"94":0.02046,"95":0.11594,"96":3.751,_:"79 80 81 83 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01084,"6.0-6.1":0.00217,"7.0-7.1":0.08565,"8.1-8.4":0,"9.0-9.2":0.00054,"9.3":0.16534,"10.0-10.2":0.06559,"10.3":0.07481,"11.0-11.2":0.00542,"11.3-11.4":0.00271,"12.0-12.1":0.02982,"12.2-12.5":0.47055,"13.0-13.1":0.01138,"13.2":0.00271,"13.3":0.09487,"13.4-13.7":0.28298,"14.0-14.4":0.57843,"14.5-14.8":1.39809,"15.0-15.1":1.94778,"15.2":0.18811},P:{"4":0.42904,_:"5.0-5.4","6.2-6.4":0.12258,"7.2-7.4":2.564,"8.2":0.01022,"9.2":0.12258,"10.1":0.06129,"11.1-11.2":0.65377,"12.0":0.22473,"13.0":0.64355,"14.0":1.44034,"15.0":1.8183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00037,"4.2-4.3":0.00187,"4.4":0,"4.4.3-4.4.4":0.01753},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.51491,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.43025},H:{"0":0.2184},L:{"0":52.71525},S:{"2.5":0},R:{_:"0"},M:{"0":0.12523},Q:{"10.4":0.03296}}; 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 c61d4a0230469b..3897d6773d4c29 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:{"63":0.00961,"76":0.00961,"78":0.85974,"80":0.02402,"83":0.00961,"87":0.00961,"89":0.00961,"90":0.00961,"91":0.05283,"92":0.08645,"93":1.87317,"94":6.37838,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 77 79 81 82 84 85 86 88 95 96 3.5 3.6"},D:{"49":5.87887,"77":0.00961,"81":0.12008,"88":0.05283,"91":0.00961,"92":0.00961,"93":0.08645,"94":0.11047,"95":10.06709,"96":5.2881,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 83 84 85 86 87 89 90 97 98 99"},F:{"73":0.28818,"80":1.73869,"81":0.33141,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00961,"17":0.04323,"18":0.6388,"80":0.00961,"84":0.00961,"85":0.00961,"89":0.02402,"92":0.02402,"93":0.03362,"94":0.08645,"95":3.6791,"96":0.85013,_:"12 14 15 16 79 81 83 86 87 88 90 91"},E:{"4":0,"13":0.69163,"14":0.11047,"15":2.54559,_:"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.33141,"13.1":0.03362,"14.1":1.95962,"15.1":0.61478},G:{"8":0,"3.2":0,"4.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.08876,"10.0-10.2":0.0111,"10.3":0.0111,"11.0-11.2":0,"11.3-11.4":0.03329,"12.0-12.1":0.03329,"12.2-12.5":6.94021,"13.0-13.1":0.0111,"13.2":0,"13.3":0,"13.4-13.7":0.06657,"14.0-14.4":0.25335,"14.5-14.8":7.72983,"15.0-15.1":3.31754},P:{"4":0.01042,"5.0-5.4":0.0207,"6.2-6.4":0.01035,"7.2-7.4":0.0724,"8.2":0.02037,"9.2":0.0417,"10.1":0.0724,"11.1-11.2":0.10343,"12.0":0.22754,"13.0":1.8617,"14.0":0.81708,"15.0":9.42225},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.03638},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.46874,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":20.81609},S:{"2.5":0},R:{_:"0"},M:{"0":0.40017},Q:{"10.4":0},O:{"0":0.01039},H:{"0":0.0246}}; +module.exports={C:{"48":0.00769,"52":0.00769,"63":0.00769,"69":0.704,"76":0.14234,"78":0.35392,"87":0.05001,"88":0.00769,"89":0.01539,"90":0.02693,"92":0.11926,"94":1.50802,"95":3.18147,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 64 65 66 67 68 70 71 72 73 74 75 77 79 80 81 82 83 84 85 86 91 93 96 97 3.5 3.6"},D:{"33":0.03462,"43":0.43086,"49":0.23851,"77":0.01539,"81":0.09233,"91":0.10002,"92":0.00769,"93":0.01539,"94":0.14234,"95":0.16927,"96":15.04946,_:"4 5 6 7 8 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 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 83 84 85 86 87 88 89 90 97 98 99"},F:{"73":0.04232,"81":0.15388,"82":0.59244,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00769,"12":0.14234,"13":0.49242,"14":0.11156,"15":0.17696,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01539,"13.1":0.03462,"14.1":5.11266,"15.1":0.36547,"15.2":0.15388},B:{"12":0.00769,"13":0.08463,"14":0.00769,"17":0.02693,"18":0.33854,"83":0.00769,"84":0.52319,"85":0.05771,"86":0.00769,"90":0.01539,"91":0.00769,"92":0.01539,"94":0.01539,"95":0.13465,"96":2.51209,_:"15 16 79 80 81 87 88 89 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03679,"8.1-8.4":0.00761,"9.0-9.2":0,"9.3":0.11545,"10.0-10.2":0.02157,"10.3":0.2677,"11.0-11.2":0,"11.3-11.4":0.00761,"12.0-12.1":0.03679,"12.2-12.5":4.9251,"13.0-13.1":0,"13.2":0.00761,"13.3":0,"13.4-13.7":0.1015,"14.0-14.4":0.39837,"14.5-14.8":2.4524,"15.0-15.1":3.8264,"15.2":0.48464},P:{"4":0.67138,"5.0-5.4":0.02096,"6.2-6.4":0.02066,"7.2-7.4":0.29954,"8.2":0.01016,"9.2":0.01034,"10.1":0.0232,"11.1-11.2":0.02096,"12.0":0.03099,"13.0":0.98492,"14.0":0.27243,"15.0":0.29338},I:{"0":0,"3":0,"4":0.00529,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00048,"4.4":0,"4.4.3-4.4.4":0.06807},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.62343,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":20.7636},H:{"0":0.36122},L:{"0":27.10436},S:{"2.5":0},R:{_:"0"},M:{"0":0.43078},Q:{"10.4":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 93765107b9c35f..cae8a3501831f1 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:{"72":0.01149,"78":0.02298,"80":0.01149,"82":0.01149,"89":0.08619,"91":0.01149,"92":0.06321,"93":0.76996,"94":3.8843,"95":0.18387,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 83 84 85 86 87 88 90 96 3.5 3.6"},D:{"65":0.06321,"72":0.11492,"76":0.01149,"79":0.10343,"80":0.08044,"84":0.01149,"87":0.02873,"88":0.02873,"90":0.02298,"91":0.08044,"92":0.04597,"93":0.48266,"94":2.49376,"95":18.68599,"96":9.81417,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 73 74 75 77 78 81 83 85 86 89 97 98 99"},F:{"80":0.89063,"81":0.41946,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01149,"15":0.01724,"17":0.01724,"18":0.02873,"86":0.362,"90":0.01149,"92":0.01724,"93":0.01149,"94":0.1494,"95":7.27444,"96":2.2984,_:"12 13 16 79 80 81 83 84 85 87 88 89 91"},E:{"4":0,"13":0.02873,"14":0.06321,"15":0.1494,_:"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.01724,"12.1":0.18387,"13.1":0.44819,"14.1":0.62057,"15.1":0.24708},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01132,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.6092,"10.0-10.2":0.0072,"10.3":0.02676,"11.0-11.2":0.01955,"11.3-11.4":0.01544,"12.0-12.1":0.01544,"12.2-12.5":1.88009,"13.0-13.1":0.01544,"13.2":0,"13.3":0.09056,"13.4-13.7":0.57113,"14.0-14.4":1.01156,"14.5-14.8":4.48257,"15.0-15.1":1.53844},P:{"4":0.03264,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":0.10881,"8.2":0.01029,"9.2":0.02091,"10.1":0.05029,"11.1-11.2":0.31556,"12.0":0.08233,"13.0":0.32644,"14.0":0.09793,"15.0":1.03372},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.31603,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":35.6357},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0.00425},O:{"0":0.22546},H:{"0":0.08055}}; +module.exports={C:{"78":0.05738,"89":0.02086,"92":0.0313,"93":0.02086,"94":1.24662,"95":1.62218,"96":0.05738,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 97 3.5 3.6"},D:{"33":0.01565,"49":0.04173,"50":0.01565,"71":0.01565,"72":0.01043,"73":0.02086,"79":0.03651,"87":0.05216,"90":0.02086,"91":0.11475,"92":0.0313,"93":0.3912,"94":2.14378,"95":0.23994,"96":21.07786,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 74 75 76 77 78 80 81 83 84 85 86 88 89 97 98 99"},F:{"81":0.32861,"82":0.58941,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"14":0.04173,"15":0.06259,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.01565,"13.1":1.38224,"14.1":0.50074,"15.1":0.23994,"15.2":0.20864},B:{"15":0.02086,"18":0.04694,"86":0.23994,"87":0.24515,"88":0.10954,"91":0.0313,"94":0.01565,"95":0.08346,"96":11.40739,_:"12 13 14 16 17 79 80 81 83 84 85 89 90 92 93"},G:{"8":0,"3.2":0,"4.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.07953,"10.0-10.2":0,"10.3":0.05146,"11.0-11.2":0.00819,"11.3-11.4":0.0117,"12.0-12.1":0.03626,"12.2-12.5":2.36019,"13.0-13.1":0.00819,"13.2":0.00819,"13.3":0.05146,"13.4-13.7":0.09824,"14.0-14.4":1.96488,"14.5-14.8":3.45959,"15.0-15.1":3.1555,"15.2":0.4035},P:{"4":0.11567,"5.0-5.4":0.01069,"6.2-6.4":0.09073,"7.2-7.4":0.05346,_:"8.2","9.2":0.0308,"10.1":0.0103,"11.1-11.2":0.47046,"12.0":0.02103,"13.0":0.18177,"14.0":0.14969,"15.0":0.37423},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.00478},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21907,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.0909},H:{"0":0.09964},L:{"0":42.3561},S:{"2.5":0},R:{_:"0"},M:{"0":0.05741},Q:{"10.4":0.07176}}; 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 6a119a79920b47..7bef4ed5a47ae9 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:{"48":0.0174,"78":0.2378,"88":0.0174,"89":0.0116,"90":0.2146,"91":0.1276,"92":0.0116,"93":0.2784,"94":2.6216,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 95 96 3.5 3.6"},D:{"38":0.0116,"49":0.029,"71":0.3712,"72":0.0058,"75":0.0116,"76":0.0058,"78":0.029,"79":0.0754,"80":0.0464,"84":0.0696,"85":0.058,"86":0.116,"87":0.2262,"88":0.0696,"89":0.0116,"90":0.1044,"91":0.1624,"92":0.928,"93":1.3746,"94":5.887,"95":18.4266,"96":8.6536,_:"4 5 6 7 8 9 10 11 12 13 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 67 68 69 70 73 74 77 81 83 97 98 99"},F:{"78":0.0058,"80":0.7366,"81":0.5626,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0058,"89":0.0406,"90":0.0058,"93":0.0464,"94":0.1276,"95":3.7294,"96":1.4036,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 91 92"},E:{"4":0,"12":0.0986,"13":0.0058,"14":1.1078,"15":1.2006,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0116,"10.1":0.0116,"11.1":0.1972,"12.1":0.0928,"13.1":0.6612,"14.1":4.5182,"15.1":1.914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0028,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09801,"10.0-10.2":0.13721,"10.3":0.0756,"11.0-11.2":0.0448,"11.3-11.4":0.0168,"12.0-12.1":0.0504,"12.2-12.5":0.44803,"13.0-13.1":0.0448,"13.2":0.11481,"13.3":0.09241,"13.4-13.7":0.17361,"14.0-14.4":3.04659,"14.5-14.8":14.15208,"15.0-15.1":9.50099},P:{"4":0.01042,"5.0-5.4":0.0207,"6.2-6.4":0.01035,"7.2-7.4":0.2794,"8.2":0.02037,"9.2":0.0417,"10.1":0.01035,"11.1-11.2":0.08339,"12.0":0.0207,"13.0":0.06254,"14.0":0.20696,"15.0":2.06392},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.0126},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.9454,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":11.34712},S:{"2.5":0},R:{_:"0"},M:{"0":0.10498},Q:{"10.4":0},O:{"0":0},H:{"0":0.20672}}; +module.exports={C:{"52":0.01157,"71":0.00771,"78":0.12336,"84":0.00386,"91":0.06168,"93":0.02313,"94":0.48959,"95":1.02158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 85 86 87 88 89 90 92 96 97 3.5 3.6"},D:{"49":0.01542,"53":0.01542,"71":0.14649,"73":0.00771,"79":0.00386,"80":0.01928,"81":0.00386,"83":0.01928,"84":0.09252,"87":0.01157,"88":0.00771,"89":0.01157,"90":0.00386,"91":0.01542,"92":0.23516,"93":0.08481,"94":1.01387,"95":0.60909,"96":14.59503,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 74 75 76 77 78 85 86 97 98 99"},F:{"78":0.01157,"81":0.52428,"82":0.13107,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00386,"12":0.00771,"13":0.01157,"14":0.99459,"15":0.33539,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1 9.1","6.1":0.00386,"10.1":0.00771,"11.1":0.03084,"12.1":0.05397,"13.1":0.28527,"14.1":1.27215,"15.1":11.50718,"15.2":1.04471},B:{"14":0.02313,"18":0.00386,"89":0.00771,"93":0.00386,"94":0.01928,"95":0.05012,"96":2.84114,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 90 91 92"},G:{"8":0,"3.2":0,"4.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.10037,"10.0-10.2":0.11542,"10.3":0.14052,"11.0-11.2":0.12044,"11.3-11.4":0.01506,"12.0-12.1":0.00502,"12.2-12.5":0.37137,"13.0-13.1":0,"13.2":0.00502,"13.3":0.0552,"13.4-13.7":0.11041,"14.0-14.4":1.87691,"14.5-14.8":6.97066,"15.0-15.1":37.80916,"15.2":2.46407},P:{"4":0.67138,"5.0-5.4":0.02066,"6.2-6.4":0.02066,"7.2-7.4":0.29954,"8.2":0.01016,"9.2":0.01034,"10.1":0.0232,"11.1-11.2":0.05172,"12.0":0.03099,"13.0":0.02069,"14.0":0.12395,"15.0":0.13447},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.21203,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01163},L:{"0":9.71667},S:{"2.5":0},R:{_:"0"},M:{"0":0.07373},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js index cb49c0ac8b5369..a05f3a707cca57 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.01005,"47":0.01005,"48":0.04021,"52":0.11057,"56":0.01508,"59":0.01508,"60":0.0201,"62":0.00503,"63":0.00503,"66":0.01005,"68":0.04021,"72":0.01005,"74":0.00503,"77":0.01005,"78":0.37192,"79":0.0201,"80":0.0201,"81":0.33172,"82":0.02513,"83":0.01508,"84":0.03016,"85":0.0201,"86":0.01508,"87":0.01005,"88":0.03518,"89":0.04523,"90":0.04021,"91":0.22114,"92":0.15078,"93":0.87955,"94":5.02097,"95":0.01508,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 61 64 65 67 69 70 71 73 75 76 96 3.5 3.6"},D:{"38":0.00503,"39":0.00503,"48":0.01005,"49":0.39203,"50":0.00503,"51":0.01005,"52":0.0201,"53":0.01005,"54":0.08042,"56":0.03016,"57":0.00503,"58":0.01005,"60":0.03518,"61":0.04021,"63":0.01508,"64":0.04523,"65":0.01508,"66":0.05026,"67":0.0201,"68":0.00503,"69":0.01005,"70":0.03518,"71":0.0201,"72":0.03518,"73":0.01005,"74":0.01508,"75":0.0201,"76":0.01508,"77":0.0201,"78":0.02513,"79":0.10052,"80":0.08042,"81":0.03016,"83":0.11057,"84":0.18596,"85":0.21109,"86":0.21109,"87":0.71872,"88":0.07539,"89":0.12062,"90":0.07036,"91":0.1156,"92":0.20104,"93":0.32166,"94":1.17608,"95":15.0579,"96":8.6598,"97":0.01005,_:"4 5 6 7 8 9 10 11 12 13 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 55 59 62 98 99"},F:{"68":0.01005,"70":0.00503,"71":0.00503,"79":0.0201,"80":0.8695,"81":0.31664,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00503,"15":0.00503,"16":0.01005,"17":0.0201,"18":0.05529,"83":0.01005,"84":0.01508,"85":0.01508,"86":0.0201,"87":0.01005,"88":0.00503,"89":0.0201,"90":0.01005,"91":0.0201,"92":0.03016,"93":0.02513,"94":0.17088,"95":3.61369,"96":1.35199,_:"12 13 79 80 81"},E:{"4":0,"11":0.01005,"12":0.01508,"13":0.09047,"14":0.5227,"15":0.83934,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01005,"10.1":0.02513,"11.1":0.08544,"12.1":0.16586,"13.1":0.51265,"14.1":1.88475,"15.1":0.93484},G:{"8":0.00975,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00162,"6.0-6.1":0.00812,"7.0-7.1":0.01462,"8.1-8.4":0.0065,"9.0-9.2":0.02275,"9.3":0.20635,"10.0-10.2":0.02275,"10.3":0.15761,"11.0-11.2":0.05849,"11.3-11.4":0.04874,"12.0-12.1":0.0455,"12.2-12.5":0.7003,"13.0-13.1":0.05849,"13.2":0.02275,"13.3":0.12674,"13.4-13.7":0.35421,"14.0-14.4":1.13088,"14.5-14.8":7.53755,"15.0-15.1":5.70312},P:{"4":0.06339,"5.0-5.4":0.01057,"6.2-6.4":0.04066,"7.2-7.4":0.02113,"8.2":0.02033,"9.2":0.0317,"10.1":0.01057,"11.1-11.2":0.10566,"12.0":0.05283,"13.0":0.16905,"14.0":0.19018,"15.0":2.67313},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00308,"4.2-4.3":0.00847,"4.4":0,"4.4.3-4.4.4":0.0531},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02288,"9":0.0286,"10":0.01144,"11":0.43466,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":29.88263},S:{"2.5":0},R:{_:"0"},M:{"0":0.52217},Q:{"10.4":0},O:{"0":0.47244},H:{"0":0.3484}}; +module.exports={C:{"45":0.00963,"47":0.00963,"48":0.02408,"52":0.10114,"56":0.01445,"59":0.01445,"60":0.01926,"62":0.00482,"63":0.00482,"66":0.00482,"68":0.03371,"69":0.00482,"72":0.00963,"74":0.00482,"77":0.00963,"78":0.30341,"79":0.01445,"80":0.01926,"81":0.40936,"82":0.01926,"83":0.01445,"84":0.03853,"85":0.01445,"86":0.00963,"87":0.01445,"88":0.0289,"89":0.04334,"90":0.04816,"91":0.2697,"92":0.03853,"93":0.04816,"94":1.97456,"95":3.71795,"96":0.00963,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 61 64 65 67 70 71 73 75 76 97 3.5 3.6"},D:{"38":0.00482,"48":0.00963,"49":0.13485,"50":0.00482,"51":0.00963,"52":0.0289,"53":0.00963,"54":0.08187,"56":0.01445,"58":0.01926,"60":0.06261,"61":0.00963,"63":0.01445,"64":0.05298,"65":0.01445,"66":0.05779,"67":0.01926,"68":0.00963,"69":0.01445,"70":0.03853,"71":0.02408,"72":0.04816,"73":0.01445,"74":0.01445,"75":0.02408,"76":0.01926,"77":0.01445,"78":0.0289,"79":0.10114,"80":0.07706,"81":0.03853,"83":0.09632,"84":0.1493,"85":0.17338,"86":0.18782,"87":0.45752,"88":0.06261,"89":0.08187,"90":0.06261,"91":0.08187,"92":0.11558,"93":0.29859,"94":0.40454,"95":0.57792,"96":22.81339,"97":0.00963,"98":0.00482,_:"4 5 6 7 8 9 10 11 12 13 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 55 57 59 62 99"},F:{"68":0.00482,"70":0.00963,"71":0.00482,"72":0.00482,"79":0.00482,"80":0.01926,"81":0.61645,"82":0.56347,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00482,"11":0.00482,"12":0.01445,"13":0.09632,"14":0.44307,"15":0.4527,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.0289,"10.1":0.01926,"11.1":0.08187,"12.1":0.15411,"13.1":0.47197,"14.1":1.49296,"15.1":1.49778,"15.2":0.19746},B:{"14":0.00482,"15":0.00482,"16":0.00482,"17":0.01926,"18":0.04816,"83":0.00482,"84":0.01445,"85":0.01445,"86":0.01926,"87":0.00963,"88":0.00482,"89":0.01445,"90":0.00963,"91":0.01445,"92":0.01926,"93":0.00963,"94":0.03371,"95":0.16374,"96":4.92677,_:"12 13 79 80 81"},G:{"8":0.01225,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.007,"7.0-7.1":0.014,"8.1-8.4":0.0105,"9.0-9.2":0.0455,"9.3":0.19427,"10.0-10.2":0.0245,"10.3":0.16976,"11.0-11.2":0.0455,"11.3-11.4":0.0525,"12.0-12.1":0.0455,"12.2-12.5":0.72981,"13.0-13.1":0.05775,"13.2":0.0175,"13.3":0.12426,"13.4-13.7":0.36228,"14.0-14.4":1.06758,"14.5-14.8":5.19441,"15.0-15.1":8.69294,"15.2":0.6178},P:{"4":0.06371,_:"5.0-5.4 6.2-6.4","7.2-7.4":0.02124,"8.2":0.01062,"9.2":0.03185,"10.1":0.01062,"11.1-11.2":0.09556,"12.0":0.04247,"13.0":0.15927,"14.0":0.15927,"15.0":0.42471},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00377,"4.2-4.3":0.00566,"4.4":0,"4.4.3-4.4.4":0.06315},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02195,"9":0.02195,"10":0.01098,"11":0.41709,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.49766},H:{"0":0.35337},L:{"0":30.93744},S:{"2.5":0},R:{_:"0"},M:{"0":0.54432},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js index eff0fb2b4f2af0..179ff1b9fd1e67 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:{"29":0.00361,"52":0.03609,"54":0.02526,"56":0.00361,"72":0.01083,"78":0.02526,"88":0.08301,"89":0.01805,"91":0.05774,"92":0.02887,"93":0.34646,"94":2.20871,"95":0.00722,_:"2 3 4 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 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 96 3.5 3.6"},D:{"22":0.01083,"38":0.00361,"48":0.00361,"49":0.02526,"53":0.02165,"55":0.01083,"58":0.00722,"63":0.02165,"65":0.00361,"68":0.00361,"69":0.42225,"71":0.01083,"74":0.02165,"75":0.05053,"76":0.04692,"77":0.00722,"78":0.01444,"79":0.71458,"80":0.01083,"81":0.00722,"83":0.01805,"84":0.01444,"85":0.00722,"86":0.00722,"87":0.21293,"88":0.02165,"89":0.01444,"90":0.02526,"91":0.07579,"92":0.2418,"93":0.1191,"94":0.46195,"95":9.71543,"96":6.71635,"97":0.15158,_:"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 50 51 52 54 56 57 59 60 61 62 64 66 67 70 72 73 98 99"},F:{"28":0.28511,"76":0.01083,"77":0.01083,"78":0.01083,"79":0.01805,"80":1.98856,"81":0.61714,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02887,"13":0.00361,"14":0.01444,"15":0.00722,"16":0.00722,"17":0.01083,"18":0.10105,"84":0.01083,"85":0.00722,"86":0.00361,"87":0.00722,"89":0.02165,"90":0.00722,"91":0.14075,"92":0.03248,"93":0.01805,"94":0.10466,"95":2.03187,"96":0.85533,_:"79 80 81 83 88"},E:{"4":0,"12":0.00722,"13":0.00722,"14":0.06857,"15":0.0397,_:"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.01083,"12.1":0.00722,"13.1":0.03609,"14.1":0.08301,"15.1":0.15519},G:{"8":0.00067,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.14742,"6.0-6.1":0.00201,"7.0-7.1":0.0201,"8.1-8.4":0.02613,"9.0-9.2":0,"9.3":0.23722,"10.0-10.2":0,"10.3":0.03418,"11.0-11.2":0.19165,"11.3-11.4":0.03686,"12.0-12.1":0.00268,"12.2-12.5":1.81935,"13.0-13.1":0.00268,"13.2":0.00268,"13.3":0.02345,"13.4-13.7":0.08041,"14.0-14.4":0.60578,"14.5-14.8":1.5111,"15.0-15.1":1.95338},P:{"4":0.49948,"5.0-5.4":0.01057,"6.2-6.4":0.01019,"7.2-7.4":2.77263,"8.2":0.02033,"9.2":0.04077,"10.1":0.01036,"11.1-11.2":0.09174,"12.0":0.20387,"13.0":0.42813,"14.0":0.39755,"15.0":1.91638},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00051,"4.2-4.3":0.00436,"4.4":0,"4.4.3-4.4.4":0.07182},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36451,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.15978},N:{"10":0.00821,_:"11"},L:{"0":52.75396},S:{"2.5":0.01278},R:{_:"0"},M:{"0":0.09587},Q:{"10.4":0.24925},O:{"0":0.61354},H:{"0":2.36578}}; +module.exports={C:{"29":0.00362,"46":0.00362,"48":0.00362,"52":0.01812,"54":0.01812,"72":0.00725,"78":0.03261,"88":0.14854,"90":0.00362,"91":0.07246,"92":0.00725,"93":0.01449,"94":0.74996,"95":1.6702,_:"2 3 4 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 47 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 89 96 97 3.5 3.6"},D:{"38":0.01812,"43":0.00362,"44":0.02536,"48":0.00725,"49":0.01812,"63":0.03985,"65":0.00725,"69":0.39853,"70":0.00725,"73":0.06521,"74":0.05072,"75":0.06521,"76":0.00725,"77":0.00725,"79":1.13762,"80":0.0471,"81":0.02174,"83":0.02536,"84":0.02898,"85":0.00362,"86":0.02174,"87":0.10869,"88":0.01087,"89":0.01087,"90":0.01087,"91":0.06159,"92":0.19564,"93":0.04348,"94":0.12681,"95":0.4094,"96":15.626,"97":0.01087,"98":0.24274,_:"4 5 6 7 8 9 10 11 12 13 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 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 71 72 78 99"},F:{"18":0.00725,"28":0.1739,"46":0.02536,"65":0.01087,"73":0.00362,"79":0.00725,"80":0.01812,"81":0.55794,"82":1.07965,_:"9 11 12 15 16 17 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 66 67 68 69 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},E:{"4":0,"14":0.04348,"15":0.06159,_:"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.01087,"11.1":0.01087,"13.1":0.03261,"14.1":0.07246,"15.1":0.11231,"15.2":0.02174},B:{"12":0.00725,"13":0.03623,"14":0.00362,"16":0.01087,"17":0.01449,"18":0.1413,"83":0.00725,"84":0.01087,"85":0.00362,"88":0.00362,"89":0.01087,"91":0.02174,"92":0.01812,"93":0.00725,"94":0.01449,"95":0.07608,"96":2.88029,_:"15 79 80 81 86 87 90"},G:{"8":0.00203,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.10811,"6.0-6.1":0,"7.0-7.1":0.01014,"8.1-8.4":0.00473,"9.0-9.2":0,"9.3":0.0696,"10.0-10.2":0,"10.3":0.05946,"11.0-11.2":0.20676,"11.3-11.4":0.01419,"12.0-12.1":0.00676,"12.2-12.5":1.79804,"13.0-13.1":0.00203,"13.2":0.00135,"13.3":0.01149,"13.4-13.7":0.08379,"14.0-14.4":0.53651,"14.5-14.8":1.16018,"15.0-15.1":2.27441,"15.2":0.40474},P:{"4":0.98429,"5.0-5.4":0.01015,"6.2-6.4":0.02029,"7.2-7.4":2.45564,_:"8.2","9.2":0.05074,"10.1":0.01015,"11.1-11.2":0.05074,"12.0":0.08118,"13.0":0.34501,"14.0":0.28412,"15.0":0.72046},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.00245,"4.4":0,"4.4.3-4.4.4":0.03526},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22463,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.01276},O:{"0":0.48473},H:{"0":2.3187},L:{"0":54.64046},S:{"2.5":0},R:{_:"0"},M:{"0":0.73985},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js index 45077d86f17106..c4b8ec4c4aa9da 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js @@ -1 +1 @@ -module.exports={C:{"48":0.00945,"52":0.03779,"59":0.00945,"78":0.06614,"82":0.01417,"84":0.0189,"88":0.00945,"89":0.0189,"90":0.02362,"91":0.03779,"92":0.02834,"93":0.42516,"94":1.89432,"95":0.00945,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 85 86 87 96 3.5 3.6"},D:{"36":0.00472,"38":0.00945,"40":0.18424,"43":0.00472,"49":0.10865,"56":0.04252,"60":0.0189,"61":0.02834,"63":0.00472,"64":0.01417,"65":0.01417,"66":0.04724,"67":0.01417,"68":0.00472,"69":0.03307,"70":0.0189,"71":0.00472,"72":0.02362,"74":0.0189,"75":0.0189,"76":0.04724,"77":0.0189,"78":0.0189,"79":0.08031,"80":0.05669,"81":0.02362,"83":0.06141,"84":0.04252,"85":0.07086,"86":0.04252,"87":0.41099,"88":0.04724,"89":0.06614,"90":0.06614,"91":0.15117,"92":0.29761,"93":0.41099,"94":2.05966,"95":14.59716,"96":7.78043,"97":0.00945,_:"4 5 6 7 8 9 10 11 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 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 62 73 98 99"},F:{"71":0.00472,"75":0.00472,"78":0.00472,"79":0.0992,"80":0.48657,"81":0.24565,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00945,"16":0.00945,"17":0.0189,"18":0.06614,"84":0.00472,"85":0.01417,"88":0.00472,"89":0.00945,"90":0.00945,"91":0.0189,"92":0.02834,"93":0.03307,"94":0.22675,"95":4.9413,"96":1.71954,_:"12 13 14 79 80 81 83 86 87"},E:{"4":0,"11":0.00472,"12":0.00945,"13":0.0992,"14":0.65664,"15":1.05345,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00472,"10.1":0.0189,"11.1":0.07558,"12.1":0.12755,"13.1":0.52436,"14.1":3.67055,"15.1":1.35106},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.00544,"7.0-7.1":0.01359,"8.1-8.4":0.01359,"9.0-9.2":0.01087,"9.3":0.29082,"10.0-10.2":0.01359,"10.3":0.29626,"11.0-11.2":0.08154,"11.3-11.4":0.06523,"12.0-12.1":0.04077,"12.2-12.5":1.33723,"13.0-13.1":0.04077,"13.2":0.01359,"13.3":0.11415,"13.4-13.7":0.40226,"14.0-14.4":1.41062,"14.5-14.8":14.59542,"15.0-15.1":8.42294},P:{"4":0.02173,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.0652,"12.0":0.0326,"13.0":0.11954,"14.0":0.14127,"15.0":3.56444},I:{"0":0,"3":0,"4":0.01341,"2.1":0,"2.2":0.0008,"2.3":0,"4.1":0.00134,"4.2-4.3":0.00322,"4.4":0,"4.4.3-4.4.4":0.02871},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01041,"9":0.01562,"11":0.43219,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.53065},S:{"2.5":0},R:{_:"0"},M:{"0":0.29546},Q:{"10.4":0.00528},O:{"0":0.12135},H:{"0":0.18481}}; +module.exports={C:{"48":0.00477,"52":0.03818,"55":0.00955,"59":0.01432,"78":0.10023,"84":0.01432,"87":0.02864,"88":0.00955,"89":0.01909,"90":0.04296,"91":0.03818,"92":0.01432,"93":0.01909,"94":0.77323,"95":1.43667,"96":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 49 50 51 53 54 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 97 3.5 3.6"},D:{"36":0.00477,"38":0.00955,"40":0.19569,"43":0.00477,"49":0.06205,"56":0.05728,"60":0.00955,"63":0.00955,"64":0.01432,"65":0.01432,"66":0.05728,"67":0.01432,"69":0.04296,"70":0.01909,"71":0.00477,"72":0.02387,"74":0.01432,"75":0.01432,"76":0.06205,"77":0.01909,"78":0.01909,"79":0.08591,"80":0.05728,"81":0.02864,"83":0.02387,"84":0.04296,"85":0.0525,"86":0.03818,"87":0.19092,"88":0.03341,"89":0.05728,"90":0.04773,"91":0.1241,"92":0.20047,"93":0.41048,"94":1.03574,"95":0.75413,"96":23.5118,"97":0.04773,"98":0.00477,_:"4 5 6 7 8 9 10 11 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 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 61 62 68 73 99"},F:{"46":0.00477,"79":0.00955,"80":0.01432,"81":0.46775,"82":0.3532,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00477},E:{"4":0,"12":0.00955,"13":0.08591,"14":0.55844,"15":0.52026,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00477,"10.1":0.01432,"11.1":0.0716,"12.1":0.11455,"13.1":0.4773,"14.1":2.56787,"15.1":2.63947,"15.2":0.27206},B:{"15":0.00477,"16":0.00955,"17":0.01432,"18":0.06682,"84":0.00477,"85":0.00955,"86":0.00477,"89":0.01432,"90":0.00955,"91":0.01432,"92":0.01909,"93":0.02387,"94":0.02864,"95":0.28161,"96":6.76334,_:"12 13 14 79 80 81 83 87 88"},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.00534,"7.0-7.1":0.01336,"8.1-8.4":0.01336,"9.0-9.2":0.01069,"9.3":0.27792,"10.0-10.2":0.01069,"10.3":0.27525,"11.0-11.2":0.03741,"11.3-11.4":0.06948,"12.0-12.1":0.03741,"12.2-12.5":1.28004,"13.0-13.1":0.03207,"13.2":0.01069,"13.3":0.10155,"13.4-13.7":0.36611,"14.0-14.4":1.21323,"14.5-14.8":8.79995,"15.0-15.1":13.35893,"15.2":0.79902},P:{"4":0.04341,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.05426,"12.0":0.03256,"13.0":0.10852,"14.0":0.11937,"15.0":0.34726},I:{"0":0,"3":0,"4":0.01485,"2.1":0,"2.2":0.00119,"2.3":0,"4.1":0.00148,"4.2-4.3":0.00386,"4.4":0,"4.4.3-4.4.4":0.03089},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01085,"9":0.01628,"11":0.36902,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.1359},H:{"0":0.18805},L:{"0":21.69013},S:{"2.5":0},R:{_:"0"},M:{"0":0.35021},Q:{"10.4":0.00523}}; 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 391ca05476f5b8..69240bb24049cf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js @@ -1 +1 @@ -module.exports={C:{"52":0.00881,"60":0.00881,"78":0.02644,"86":0.00881,"91":0.03084,"92":0.01762,"93":0.12777,"94":0.8063,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 87 88 89 90 95 96 3.5 3.6"},D:{"42":0.00441,"49":0.02203,"63":0.00881,"64":0.00441,"65":0.00881,"66":0.01322,"67":0.00441,"71":0.00441,"75":0.00441,"76":0.05287,"77":0.03965,"78":0.01322,"79":0.06609,"80":0.01762,"81":0.03525,"83":0.00881,"84":0.01762,"85":0.02644,"86":0.03965,"87":0.03084,"88":0.03525,"89":0.01322,"90":0.03084,"91":0.05728,"92":0.22911,"93":0.14099,"94":1.85493,"95":15.59724,"96":9.31869,"97":0.14099,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 68 69 70 72 73 74 98 99"},F:{"56":0.00441,"79":0.00881,"80":0.33926,"81":0.12337,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 63 64 65 66 67 68 69 70 71 72 73 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:{"17":0.01322,"18":0.04406,"84":0.00881,"86":0.00441,"89":0.01322,"91":0.01322,"92":0.19386,"93":0.02203,"94":0.05728,"95":6.00538,"96":1.79324,_:"12 13 14 15 16 79 80 81 83 85 87 88 90"},E:{"4":0,"10":0.00881,"13":0.01322,"14":0.17624,"15":0.55075,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00881,"11.1":0.00881,"12.1":0.01762,"13.1":0.1498,"14.1":0.89882,"15.1":1.10591},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00742,"6.0-6.1":0,"7.0-7.1":0.06783,"8.1-8.4":0,"9.0-9.2":0.01378,"9.3":0.21302,"10.0-10.2":0,"10.3":0.19607,"11.0-11.2":0.00318,"11.3-11.4":0.00954,"12.0-12.1":0,"12.2-12.5":0.42075,"13.0-13.1":0.00848,"13.2":0.00318,"13.3":0.02438,"13.4-13.7":0.08373,"14.0-14.4":0.33172,"14.5-14.8":4.50318,"15.0-15.1":4.70879},P:{"4":0.07596,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.41238,"8.2":0.0102,"9.2":0.06424,"10.1":0.01071,"11.1-11.2":0.21704,"12.0":0.03147,"13.0":0.11937,"14.0":0.13023,"15.0":3.32074},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00777,"4.4":0,"4.4.3-4.4.4":0.15445},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02203,"11":0.15421,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":42.44927},S:{"2.5":0.22376},R:{_:"0"},M:{"0":0.25732},Q:{"10.4":0},O:{"0":0.23495},H:{"0":0.07414}}; +module.exports={C:{"52":0.00446,"56":0.00446,"78":0.02229,"83":0.00891,"86":0.11588,"88":0.00446,"90":0.02674,"91":0.03566,"93":0.00891,"94":0.51701,"95":0.75769,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 87 89 92 96 97 3.5 3.6"},D:{"47":0.00446,"49":0.09805,"53":0.00446,"58":0.00446,"62":0.00446,"63":0.01783,"66":0.00446,"73":0.05794,"76":0.06686,"77":0.04903,"79":0.09805,"80":0.00446,"81":0.0624,"83":0.01337,"84":0.0312,"85":0.00446,"86":0.01337,"87":0.04457,"88":0.0312,"89":0.00891,"90":0.11588,"91":0.04011,"92":0.09805,"93":0.08023,"94":0.33873,"95":0.75769,"96":23.55079,"97":0.03566,"98":0.11143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 56 57 59 60 61 64 65 67 68 69 70 71 72 74 75 78 99"},F:{"66":0.0624,"80":0.00446,"81":0.24514,"82":0.43679,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"9":0.00891,"13":0.00891,"14":0.18274,"15":0.30753,_:"0 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00891,"9.1":0.00891,"10.1":0.02674,"11.1":0.01783,"12.1":0.01337,"13.1":0.15154,"14.1":0.78889,"15.1":0.86912,"15.2":0.17382},B:{"15":0.00891,"16":0.00891,"17":0.03566,"18":0.01337,"86":0.00891,"88":0.00446,"89":0.00446,"90":0.00891,"92":0.24068,"93":0.00891,"94":0.00446,"95":0.06686,"96":7.76409,_:"12 13 14 79 80 81 83 84 85 87 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02108,"6.0-6.1":0,"7.0-7.1":0.18553,"8.1-8.4":0.00527,"9.0-9.2":0.01054,"9.3":0.07274,"10.0-10.2":0,"10.3":0.26038,"11.0-11.2":0,"11.3-11.4":0.00211,"12.0-12.1":0.00843,"12.2-12.5":0.60088,"13.0-13.1":0.00211,"13.2":0.00633,"13.3":0.01265,"13.4-13.7":0.04849,"14.0-14.4":0.25195,"14.5-14.8":3.46507,"15.0-15.1":5.1022,"15.2":0.48703},P:{"4":0.1523,"5.0-5.4":0.02112,"6.2-6.4":0.02104,"7.2-7.4":0.28284,"8.2":0.06097,"9.2":0.01088,"10.1":0.01015,"11.1-11.2":0.16318,"12.0":0.01059,"13.0":0.07615,"14.0":0.03264,"15.0":0.33723},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00243,"4.4":0,"4.4.3-4.4.4":0.04192},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1248,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.02217},O:{"0":0.44344},H:{"0":0.05773},L:{"0":45.2344},S:{"2.5":0.01109},R:{_:"0"},M:{"0":0.19955},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js index 71509368adb0a2..9caf3cd3b47561 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.00469,"52":0.02347,"56":0.00939,"68":0.00469,"78":0.03285,"84":0.00939,"88":0.10325,"89":0.00939,"90":0.00469,"91":0.00939,"92":0.00939,"93":0.17833,"94":1.21079,"95":0.00939,_:"2 3 4 5 6 7 8 9 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 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 96 3.5 3.6"},D:{"38":0.00469,"39":0.00939,"47":0.01877,"49":0.08447,"50":0.00939,"53":0.00939,"56":0.00939,"59":0.02347,"62":0.01408,"63":0.01877,"64":0.00469,"65":0.00939,"66":0.00939,"67":0.00939,"68":0.04224,"69":0.01408,"70":0.00469,"71":0.01877,"72":0.00939,"73":0.03285,"74":0.01408,"75":0.02816,"76":0.02816,"77":0.00939,"78":0.01877,"79":0.16895,"80":0.02816,"81":0.02347,"83":0.03285,"84":0.05162,"85":0.03754,"86":0.08447,"87":0.21588,"88":0.10325,"89":0.11263,"90":0.14079,"91":0.11733,"92":0.19241,"93":0.20649,"94":0.8025,"95":18.94564,"96":12.00469,"97":0.05632,"98":0.00939,_:"4 5 6 7 8 9 10 11 12 13 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 51 52 54 55 57 58 60 61 99"},F:{"28":0.03285,"36":0.04224,"45":0.00469,"46":0.00939,"48":0.01877,"57":0.04693,"60":0.03285,"66":0.00469,"67":0.00939,"72":0.01408,"77":0.04693,"78":0.01408,"79":0.06101,"80":2.78764,"81":1.06062,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 47 49 50 51 52 53 54 55 56 58 62 63 64 65 68 69 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01877,"13":0.0704,"14":0.19241,"15":0.00469,"16":0.08917,"17":0.00939,"18":0.15956,"84":0.05632,"86":0.00469,"87":0.00469,"89":0.00939,"90":0.01408,"91":0.01408,"92":0.02816,"93":0.01408,"94":0.07509,"95":2.24325,"96":1.04654,_:"79 80 81 83 85 88"},E:{"4":0,"13":0.02816,"14":0.09855,"15":0.16426,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00469,"11.1":0.00469,"12.1":0.03285,"13.1":0.0704,"14.1":0.38483,"15.1":0.23934},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05927,"6.0-6.1":0.00121,"7.0-7.1":0.11855,"8.1-8.4":0.01935,"9.0-9.2":0.00242,"9.3":0.13064,"10.0-10.2":0.01694,"10.3":0.14274,"11.0-11.2":0.06774,"11.3-11.4":0.03629,"12.0-12.1":0.03387,"12.2-12.5":1.09352,"13.0-13.1":0.0254,"13.2":0.02419,"13.3":0.1004,"13.4-13.7":0.29152,"14.0-14.4":1.12981,"14.5-14.8":4.39585,"15.0-15.1":4.4019},P:{"4":0.40952,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.13651,"8.2":0.0102,"9.2":0.021,"10.1":0.0102,"11.1-11.2":0.10501,"12.0":0.042,"13.0":0.14701,"14.0":0.19951,"15.0":1.23907},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0038,"4.2-4.3":0.01519,"4.4":0,"4.4.3-4.4.4":0.09779},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1314,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":38.93728},S:{"2.5":0},R:{_:"0"},M:{"0":0.07962},Q:{"10.4":0},O:{"0":0.07431},H:{"0":0.25629}}; +module.exports={C:{"4":0.00955,"34":0.01432,"52":0.0191,"56":0.00955,"68":0.01432,"78":0.03819,"88":0.16709,"89":0.00955,"91":0.00955,"92":0.01432,"93":0.00955,"94":0.43443,"95":0.91183,"96":0.01432,_:"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 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 97 3.5 3.6"},D:{"38":0.00477,"39":0.00955,"47":0.0191,"49":0.08593,"50":0.00477,"53":0.00477,"56":0.0191,"59":0.0191,"62":0.00955,"63":0.01432,"64":0.00955,"66":0.02864,"67":0.00955,"68":0.0191,"69":0.00955,"70":0.00477,"71":0.0191,"72":0.00955,"73":0.00955,"74":0.00955,"75":0.02864,"76":0.02864,"77":0.00477,"78":0.01432,"79":0.18141,"80":0.02387,"81":0.02387,"83":0.04297,"84":0.05251,"85":0.03342,"86":0.08593,"87":0.16709,"88":0.10025,"89":0.07161,"90":0.14322,"91":0.09071,"92":0.18141,"93":0.15754,"94":0.28644,"95":0.46785,"96":31.0501,"97":0.02864,"98":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 34 35 36 37 40 41 42 43 44 45 46 48 51 52 54 55 57 58 60 61 65 99"},F:{"28":0.04774,"36":0.00477,"46":0.00955,"48":0.01432,"60":0.02387,"67":0.00955,"72":0.00955,"77":0.03342,"78":0.00955,"79":0.0191,"80":0.03342,"81":1.4513,"82":2.20081,_:"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 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 68 69 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02387,"14":0.10503,"15":0.09548,_:"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.00955,"12.1":0.02864,"13.1":0.07161,"14.1":0.3485,"15.1":0.41056,"15.2":0.05251},B:{"12":0.0191,"13":0.08116,"14":0.16709,"16":0.11935,"17":0.00955,"18":0.14799,"84":0.05729,"85":0.00477,"86":0.00477,"87":0.00477,"89":0.00955,"90":0.04297,"91":0.01432,"92":0.0191,"93":0.00955,"94":0.02387,"95":0.1289,"96":3.85262,_:"15 79 80 81 83 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04971,"6.0-6.1":0,"7.0-7.1":0.13966,"8.1-8.4":0.00947,"9.0-9.2":0,"9.3":0.09587,"10.0-10.2":0.01065,"10.3":0.13375,"11.0-11.2":0.07693,"11.3-11.4":0.03314,"12.0-12.1":0.03906,"12.2-12.5":0.99303,"13.0-13.1":0.02249,"13.2":0.02486,"13.3":0.10416,"13.4-13.7":0.26868,"14.0-14.4":1.03446,"14.5-14.8":3.31169,"15.0-15.1":5.06814,"15.2":0.41071},P:{"4":0.46297,"5.0-5.4":0.0813,"6.2-6.4":0.02104,"7.2-7.4":0.14731,"8.2":0.06097,"9.2":0.01052,"10.1":0.01015,"11.1-11.2":0.0947,"12.0":0.02104,"13.0":0.10522,"14.0":0.17887,"15.0":0.19992},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00345,"4.2-4.3":0.01468,"4.4":0,"4.4.3-4.4.4":0.08116},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1289,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.05749},H:{"0":0.25728},L:{"0":38.8281},S:{"2.5":0},R:{_:"0"},M:{"0":0.10452},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js index 520e2224a4fe69..154478595d9fbe 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.03182,"52":0.02273,"60":0.01818,"64":0.03182,"68":0.01818,"72":0.01364,"78":0.14544,"81":0.00455,"85":0.09999,"86":0.00455,"88":0.01364,"89":0.00909,"91":0.13635,"92":0.01364,"93":0.9999,"94":4.25412,_:"2 3 4 5 6 7 8 9 10 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 61 62 63 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 84 87 90 95 96 3.5 3.6"},D:{"49":0.34542,"57":0.04545,"67":0.00909,"76":0.01818,"78":0.00909,"79":0.02273,"81":0.00909,"84":0.05454,"85":0.01364,"86":0.00455,"87":0.01818,"88":0.08636,"89":0.03636,"90":0.06363,"91":0.09999,"92":0.35451,"93":0.35451,"94":3.07697,"95":11.7261,"96":7.322,"97":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 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 68 69 70 71 72 73 74 75 77 80 83 98 99"},F:{"40":0.01364,"46":0.01364,"78":0.00909,"80":0.66812,"81":0.22271,_:"9 11 12 15 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 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01818,"13":0.00455,"15":0.00909,"16":0.01364,"17":0.02727,"18":0.05909,"84":0.04545,"85":0.00909,"87":0.00909,"89":0.02273,"90":0.01818,"91":0.03182,"92":0.01364,"93":0.07272,"94":0.40451,"95":5.49945,"96":2.26796,_:"14 79 80 81 83 86 88"},E:{"4":0,"12":0.00455,"13":0.08636,"14":0.3227,"15":0.74993,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01364,"11.1":0.02727,"12.1":0.13181,"13.1":0.29543,"14.1":1.5953,"15.1":0.69539},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03893,"6.0-6.1":0,"7.0-7.1":0.05101,"8.1-8.4":0,"9.0-9.2":0.00268,"9.3":0.19734,"10.0-10.2":0.00403,"10.3":0.30206,"11.0-11.2":0.14096,"11.3-11.4":0.00403,"12.0-12.1":0.10874,"12.2-12.5":0.3289,"13.0-13.1":0.01074,"13.2":0.00805,"13.3":0.06981,"13.4-13.7":0.22822,"14.0-14.4":0.96926,"14.5-14.8":6.04513,"15.0-15.1":4.9094},P:{"4":0.06339,"5.0-5.4":0.01057,"6.2-6.4":0.04066,"7.2-7.4":0.10389,"8.2":0.02033,"9.2":0.05195,"10.1":0.02078,"11.1-11.2":0.21817,"12.0":0.03117,"13.0":0.21817,"14.0":0.21817,"15.0":3.01286},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.01592,"4.4":0,"4.4.3-4.4.4":0.04777},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00623,"11":0.43009,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":38.14194},S:{"2.5":0.00546},R:{_:"0"},M:{"0":0.41458},Q:{"10.4":0},O:{"0":0.03273},H:{"0":0.06197}}; +module.exports={C:{"35":0.01467,"52":0.01956,"60":0.03912,"68":0.00978,"73":0.00978,"78":0.06357,"82":0.00489,"84":0.00489,"85":0.01956,"86":0.00978,"88":0.00978,"89":0.00489,"91":0.11736,"92":0.00978,"93":0.03912,"94":2.27874,"95":3.50124,_:"2 3 4 5 6 7 8 9 10 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 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 79 80 81 83 87 90 96 97 3.5 3.6"},D:{"47":0.02934,"49":0.06846,"57":0.02934,"58":0.00978,"67":0.00489,"78":0.00489,"79":0.02934,"80":0.01467,"81":0.00489,"86":0.00978,"87":0.09291,"88":0.02934,"89":0.01956,"90":0.05379,"91":0.03423,"92":0.03423,"93":0.15648,"94":2.22006,"95":0.59169,"96":19.76049,"97":0.07824,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 83 84 85 98 99"},F:{"28":0.00978,"36":0.00978,"40":0.00489,"46":0.00489,"81":0.38142,"82":0.55746,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.15159,"14":0.40098,"15":0.4401,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02934,"11.1":0.02934,"12.1":0.15159,"13.1":0.1467,"14.1":1.69683,"15.1":1.0269,"15.2":0.05868},B:{"12":0.06846,"15":0.00978,"16":0.00978,"17":0.0489,"18":0.02445,"84":0.01956,"90":0.01956,"92":0.01956,"93":0.01467,"94":0.13203,"95":0.26406,"96":9.69198,_:"13 14 79 80 81 83 85 86 87 88 89 91"},G:{"8":0.0066,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.08847,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.15185,"10.0-10.2":0,"10.3":0.02377,"11.0-11.2":0.1294,"11.3-11.4":0.03565,"12.0-12.1":0.19806,"12.2-12.5":0.72623,"13.0-13.1":0.09903,"13.2":0.00924,"13.3":0.08451,"13.4-13.7":0.22315,"14.0-14.4":0.80546,"14.5-14.8":3.73548,"15.0-15.1":6.2971,"15.2":0.59023},P:{"4":0.06371,_:"5.0-5.4 6.2-6.4","7.2-7.4":0.07311,"8.2":0.01062,"9.2":0.03185,"10.1":0.01062,"11.1-11.2":0.15667,"12.0":0.01044,"13.0":0.13578,"14.0":0.15667,"15.0":0.41778},I:{"0":0,"3":0,"4":0.00204,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00204,"4.2-4.3":0.00307,"4.4":0,"4.4.3-4.4.4":0.02862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.53301,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.03577},H:{"0":0.0387},L:{"0":37.11912},S:{"2.5":0.00511},R:{_:"0"},M:{"0":0.44968},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js index 4a0e33ca950f84..a2aa1f31db8a56 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.40675,"68":0.00535,"78":0.06958,"88":0.0107,"91":0.0107,"93":0.28901,"94":1.63771,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 95 96 3.5 3.6"},D:{"49":0.0107,"63":0.00535,"65":0.02141,"67":0.00535,"69":0.01606,"76":0.40675,"77":0.02676,"81":0.0107,"85":0.0107,"86":0.01606,"87":0.08563,"88":0.00535,"89":0.09634,"90":0.18197,"91":0.26225,"92":0.17662,"93":0.2569,"94":2.83121,"95":15.60108,"96":8.028,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 74 75 78 79 80 83 84 97 98 99"},F:{"78":0.06422,"80":0.23549,"81":0.09634,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0107,"17":0.0107,"18":0.02676,"81":0.00535,"87":0.01606,"91":0.05887,"92":0.0107,"93":0.01606,"94":0.17126,"95":4.34582,"96":1.60025,_:"12 13 14 16 79 80 83 84 85 86 88 89 90"},E:{"4":0,"11":0.18732,"12":0.0107,"13":0.03746,"14":1.07575,"15":1.82503,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1 9.1","6.1":0.0107,"10.1":0.04282,"11.1":0.10704,"12.1":0.08563,"13.1":0.8135,"14.1":7.51956,"15.1":2.48333},G:{"8":0.0259,"3.2":0,"4.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.00575,"9.3":1.94503,"10.0-10.2":0,"10.3":0.64163,"11.0-11.2":0.34239,"11.3-11.4":0.01439,"12.0-12.1":0.06618,"12.2-12.5":1.93352,"13.0-13.1":0.01151,"13.2":0.00288,"13.3":0.21867,"13.4-13.7":0.56394,"14.0-14.4":1.45014,"14.5-14.8":15.06249,"15.0-15.1":6.4681},P:{"4":0.09346,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.20768,"8.2":0.0102,"9.2":0.01128,"10.1":0.01071,"11.1-11.2":0.28037,"12.0":0.03115,"13.0":0.04513,"14.0":0.24823,"15.0":4.0958},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.96336,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":13.46564},S:{"2.5":0},R:{_:"0"},M:{"0":0.15338},Q:{"10.4":0},O:{"0":0.0093},H:{"0":0.0396}}; +module.exports={C:{"52":0.38266,"78":0.01511,"87":0.00504,"88":0.01007,"91":0.01007,"94":0.81567,"95":1.12281,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 96 97 3.5 3.6"},D:{"38":0.00504,"49":0.02518,"65":0.02014,"67":0.03021,"73":0.00504,"76":0.21651,"77":0.07049,"81":0.02518,"83":0.02014,"84":0.02518,"86":0.01007,"87":0.06546,"89":0.02518,"90":0.13091,"91":0.20644,"92":0.05035,"93":0.24168,"94":0.23665,"95":2.15498,"96":21.95764,_:"4 5 6 7 8 9 10 11 12 13 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 68 69 70 71 72 74 75 78 79 80 85 88 97 98 99"},F:{"80":0.01511,"81":0.15609,"82":0.24672,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.16616,"12":0.02518,"13":0.06042,"14":0.84085,"15":1.08756,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01511,"11.1":0.09567,"12.1":0.10574,"13.1":0.74518,"14.1":4.40563,"15.1":5.81039,"15.2":0.54882},B:{"15":0.04028,"17":0.02014,"87":0.00504,"91":0.02014,"93":0.00504,"95":0.33231,"96":5.6392,_:"12 13 14 16 18 79 80 81 83 84 85 86 88 89 90 92 94"},G:{"8":0.01797,"3.2":0,"4.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":2.13208,"10.0-10.2":0,"10.3":0.57794,"11.0-11.2":0.34437,"11.3-11.4":0.01198,"12.0-12.1":0.03893,"12.2-12.5":1.65296,"13.0-13.1":0.00898,"13.2":0,"13.3":0.10481,"13.4-13.7":0.40126,"14.0-14.4":1.31758,"14.5-14.8":9.38175,"15.0-15.1":13.18476,"15.2":0.7636},P:{"4":0.103,"5.0-5.4":0.02112,"6.2-6.4":0.01042,"7.2-7.4":0.19571,"8.2":0.06097,"9.2":0.0412,"10.1":0.01015,"11.1-11.2":0.06645,"12.0":0.0309,"13.0":0.0443,"14.0":0.19936,"15.0":0.49841},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.98686,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.0141},L:{"0":15.72396},S:{"2.5":0},R:{_:"0"},M:{"0":0.16881},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js index 2b6ca23e83ddd1..41bbed231e076c 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:{"36":0.00845,"41":0.00564,"43":0.00564,"44":0.00564,"45":0.00845,"46":0.00282,"47":0.01127,"48":0.00564,"50":0.00845,"51":0.00564,"52":0.02254,"53":0.00564,"54":0.00564,"55":0.00564,"56":0.01127,"57":0.00845,"58":0.00564,"59":0.00845,"60":0.00564,"61":0.00845,"62":0.00564,"63":0.00564,"65":0.00282,"66":0.00845,"67":0.00564,"68":0.00845,"69":0.00564,"72":0.01409,"73":0.00282,"75":0.00564,"76":0.00564,"77":0.00564,"78":0.031,"79":0.00564,"80":0.00564,"81":0.00845,"82":0.00282,"83":0.00564,"84":0.01127,"85":0.01127,"86":0.01691,"87":0.01127,"88":0.01691,"89":0.02254,"90":0.00845,"91":0.02536,"92":0.031,"93":0.37479,"94":1.60062,"95":0.10145,_:"2 3 4 5 6 7 8 9 10 11 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 42 49 64 70 71 74 96 3.5 3.6"},D:{"37":0.00282,"39":0.00282,"40":0.01127,"41":0.00282,"42":0.00282,"43":0.00845,"44":0.00282,"45":0.00564,"46":0.00564,"47":0.01127,"48":0.00282,"49":0.01973,"50":0.01409,"51":0.00564,"52":0.00282,"53":0.00564,"54":0.00564,"55":0.00845,"56":0.00564,"57":0.01409,"58":0.00845,"59":0.00282,"60":0.01127,"61":0.00564,"62":0.00282,"63":0.01409,"64":0.00845,"65":0.01691,"66":0.00845,"67":0.01127,"68":0.062,"69":0.01691,"70":0.08454,"71":0.00845,"72":0.01409,"73":0.00564,"74":0.03945,"75":0.01409,"76":0.01691,"77":0.03945,"78":0.01409,"79":0.05354,"80":0.03945,"81":0.05354,"83":0.031,"84":0.02818,"85":0.01973,"86":0.05636,"87":0.17472,"88":0.031,"89":0.05354,"90":0.03945,"91":0.08736,"92":0.16908,"93":0.18881,"94":0.61714,"95":7.83404,"96":4.46371,"97":0.01973,"98":0.00564,_:"4 5 6 7 8 9 10 11 12 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 99"},F:{"42":0.00564,"46":0.00564,"54":0.00282,"55":0.00282,"65":0.00564,"66":0.00282,"73":0.00282,"77":0.01127,"78":0.01127,"79":0.031,"80":0.86794,"81":0.32689,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 56 57 58 60 62 63 64 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00564},B:{"12":0.031,"13":0.01127,"14":0.01127,"15":0.01691,"16":0.02536,"17":0.01691,"18":0.09581,"80":0.00564,"81":0.00564,"83":0.00564,"84":0.031,"85":0.02536,"86":0.00845,"87":0.00564,"88":0.00564,"89":0.031,"90":0.02818,"91":0.01127,"92":0.04791,"93":0.04509,"94":0.10145,"95":1.70207,"96":0.51569,_:"79"},E:{"4":0,"10":0.00282,"11":0.00564,"12":0.00845,"13":0.031,"14":0.09299,"15":0.14654,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1 9.1","5.1":0.00845,"10.1":0.00564,"11.1":0.04227,"12.1":0.01973,"13.1":0.08736,"14.1":0.2029,"15.1":0.27053},G:{"8":0.0057,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00285,"7.0-7.1":0.00854,"8.1-8.4":0.0057,"9.0-9.2":0,"9.3":0.06408,"10.0-10.2":0.00427,"10.3":0.21787,"11.0-11.2":0.60235,"11.3-11.4":0.05269,"12.0-12.1":0.06978,"12.2-12.5":1.84691,"13.0-13.1":0.09114,"13.2":0.04414,"13.3":0.178,"13.4-13.7":0.45425,"14.0-14.4":2.76965,"14.5-14.8":3.65822,"15.0-15.1":4.15662},P:{"4":0.17131,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.11778,"8.2":0.0102,"9.2":0.06424,"10.1":0.01071,"11.1-11.2":0.09636,"12.0":0.03212,"13.0":0.09636,"14.0":0.24626,"15.0":0.9101},I:{"0":0,"3":0,"4":0.00063,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00314,"4.2-4.3":0.00691,"4.4":0,"4.4.3-4.4.4":0.03959},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00741,"9":0.00741,"10":0.0037,"11":0.11111,_:"6 7 5.5"},J:{"7":0,"10":0.01436},N:{"10":0.00821,"11":0.22582},L:{"0":44.85289},S:{"2.5":0},R:{_:"0"},M:{"0":0.32315},Q:{"10.4":0},O:{"0":2.14712},H:{"0":13.02594}}; +module.exports={C:{"27":0.00268,"29":0.00537,"40":0.00268,"41":0.00268,"42":0.00268,"43":0.00537,"44":0.00268,"45":0.00537,"47":0.00805,"48":0.00805,"49":0.00537,"50":0.00268,"52":0.02146,"56":0.00805,"57":0.00268,"60":0.00268,"66":0.00537,"68":0.00268,"69":0.00268,"72":0.01342,"73":0.00268,"76":0.00537,"77":0.00268,"78":0.02146,"79":0.00268,"80":0.00268,"81":0.00537,"83":0.00537,"84":0.01073,"85":0.00805,"86":0.01073,"87":0.00805,"88":0.01073,"89":0.01878,"90":0.00537,"91":0.01878,"92":0.01878,"93":0.02951,"94":0.6627,"95":1.11881,"96":0.06439,_:"2 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 30 31 32 33 34 35 36 37 38 39 46 51 53 54 55 58 59 61 62 63 64 65 67 70 71 74 75 82 97 3.5 3.6"},D:{"11":0.00268,"33":0.00268,"40":0.00537,"43":0.00805,"46":0.00268,"47":0.00537,"49":0.02146,"50":0.0161,"55":0.00268,"56":0.00537,"57":0.0161,"60":0.00805,"63":0.01073,"64":0.00805,"65":0.01342,"67":0.00805,"68":0.05634,"69":0.01342,"70":0.01342,"71":0.00805,"72":0.00537,"73":0.00268,"74":0.02146,"75":0.01878,"76":0.0161,"77":0.06171,"78":0.01342,"79":0.07244,"80":0.04293,"81":0.03756,"83":0.02951,"84":0.0161,"85":0.01878,"86":0.03488,"87":0.12342,"88":0.0322,"89":0.04829,"90":0.04025,"91":0.07512,"92":0.13415,"93":0.08586,"94":0.24952,"95":0.30586,"96":11.16396,"97":0.01878,"98":0.00805,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 41 42 44 45 48 51 52 53 54 58 59 61 62 66 99"},F:{"42":0.00537,"46":0.00268,"65":0.00805,"66":0.00537,"73":0.00268,"77":0.00805,"78":0.00268,"79":0.04829,"80":0.0322,"81":0.37562,"82":0.72978,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00268,"12":0.00805,"13":0.0161,"14":0.07512,"15":0.07512,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 9.1","5.1":0.00805,"7.1":0.00268,"10.1":0.0161,"11.1":0.01073,"12.1":0.02146,"13.1":0.06976,"14.1":0.16903,"15.1":0.31928,"15.2":0.04561},B:{"12":0.0322,"13":0.01342,"14":0.01342,"15":0.02146,"16":0.03488,"17":0.02146,"18":0.08586,"81":0.00268,"83":0.00268,"84":0.04025,"85":0.01878,"88":0.00537,"89":0.04293,"90":0.02683,"91":0.00537,"92":0.03756,"93":0.02146,"94":0.04025,"95":0.12342,"96":1.88078,_:"79 80 86 87"},G:{"8":0.00816,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00272,"7.0-7.1":0.0136,"8.1-8.4":0.0068,"9.0-9.2":0.00408,"9.3":0.06119,"10.0-10.2":0.00272,"10.3":0.26244,"11.0-11.2":0.5915,"11.3-11.4":0.04895,"12.0-12.1":0.05167,"12.2-12.5":1.48079,"13.0-13.1":0.08295,"13.2":0.04079,"13.3":0.17405,"13.4-13.7":0.39297,"14.0-14.4":2.40951,"14.5-14.8":3.14923,"15.0-15.1":4.3771,"15.2":0.43377},P:{"4":0.18007,"5.0-5.4":0.02119,"6.2-6.4":0.02104,"7.2-7.4":0.1377,"8.2":0.06097,"9.2":0.05296,"10.1":0.01015,"11.1-11.2":0.10593,"12.0":0.02119,"13.0":0.09533,"14.0":0.22245,"15.0":0.34956},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00245,"4.2-4.3":0.00771,"4.4":0,"4.4.3-4.4.4":0.04837},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00313,"9":0.00626,"10":0.00313,"11":0.10017,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.03659},O:{"0":2.32681},H:{"0":13.75754},L:{"0":46.8227},S:{"2.5":0.00732},R:{_:"0"},M:{"0":0.29268},Q:{"10.4":0.01463}}; 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 3225fb36a42510..b4899c93a1019c 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.01735,"78":0.08676,"84":0.0347,"87":0.00578,"89":0.01735,"90":0.02314,"91":0.01735,"93":0.21979,"94":0.85025,"95":0.01157,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 88 92 96 3.5 3.6"},D:{"41":0.01735,"49":0.04049,"55":0.01735,"60":0.0347,"74":0.01157,"75":0.00578,"79":0.01157,"80":0.00578,"81":0.01735,"83":0.01735,"84":0.19087,"85":0.01157,"86":0.02892,"87":1.56168,"88":0.02892,"89":0.06362,"90":0.05206,"91":0.26028,"92":0.23136,"93":0.26606,"94":1.24356,"95":22.13537,"96":11.28458,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 76 77 78 97 98 99"},F:{"36":0.0347,"80":0.71143,"81":0.46272,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01735,"18":0.04627,"91":0.01735,"92":0.06362,"94":0.16774,"95":4.54044,"96":1.39394,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 93"},E:{"4":0,"12":0.01157,"13":0.48586,"14":0.49164,"15":0.78662,_:"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.02314,"12.1":0.07519,"13.1":0.44537,"14.1":5.7493,"15.1":1.13366},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0,"6.0-6.1":0.00867,"7.0-7.1":0.00867,"8.1-8.4":0.00867,"9.0-9.2":0.26652,"9.3":0.12568,"10.0-10.2":0.00433,"10.3":0.07151,"11.0-11.2":0.02167,"11.3-11.4":0.02817,"12.0-12.1":0.0325,"12.2-12.5":0.80389,"13.0-13.1":0.39436,"13.2":0.01083,"13.3":0.06934,"13.4-13.7":0.19718,"14.0-14.4":1.57312,"14.5-14.8":10.97717,"15.0-15.1":7.05737},P:{"4":0.23612,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.11778,"8.2":0.0102,"9.2":0.06424,"10.1":0.01071,"11.1-11.2":0.1288,"12.0":0.01073,"13.0":0.0966,"14.0":0.0322,"15.0":2.53297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00133,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15038,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":18.24976},S:{"2.5":0},R:{_:"0"},M:{"0":0.1054},Q:{"10.4":0},O:{"0":0},H:{"0":0.62266}}; +module.exports={C:{"78":0.06371,"89":0.03716,"90":0.07964,"91":0.01062,"92":0.01062,"93":0.04778,"94":0.30792,"95":0.69548,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 97 3.5 3.6"},D:{"49":0.00531,"60":0.06371,"79":0.01062,"80":0.00531,"81":0.03185,"83":0.01593,"84":0.08494,"86":0.02124,"87":0.07964,"89":0.02124,"90":0.03185,"91":0.21236,"92":0.12742,"93":0.292,"94":0.292,"95":0.76981,"96":30.63293,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 85 88 97 98 99"},F:{"36":0.02124,"81":0.49374,"82":0.28669,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.08494,"14":0.63177,"15":0.42472,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01062,"11.1":0.02655,"12.1":0.04778,"13.1":0.292,"14.1":4.0083,"15.1":3.10577,"15.2":0.28138},B:{"15":0.00531,"18":0.1168,"92":0.03716,"93":0.00531,"95":0.26545,"96":6.254,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00458,"7.0-7.1":0.00916,"8.1-8.4":0.00229,"9.0-9.2":0.48332,"9.3":0.08704,"10.0-10.2":0,"10.3":0.04581,"11.0-11.2":0.01374,"11.3-11.4":0.03436,"12.0-12.1":0.01374,"12.2-12.5":0.58181,"13.0-13.1":0.00687,"13.2":0,"13.3":0.04352,"13.4-13.7":0.21532,"14.0-14.4":1.20027,"14.5-14.8":6.75954,"15.0-15.1":12.60284,"15.2":0.79255},P:{"4":0.19066,"5.0-5.4":0.02119,"6.2-6.4":0.02104,"7.2-7.4":0.02118,"8.2":0.06097,"9.2":0.05296,"10.1":0.01015,"11.1-11.2":0.03178,"12.0":0.01059,"13.0":0.07415,"14.0":0.15888,"15.0":0.42369},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.1168,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.00938},H:{"0":0.50629},L:{"0":20.40468},S:{"2.5":0},R:{_:"0"},M:{"0":0.19233},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js index 30467112e90ad8..34c87cf0235b72 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:{"50":0.02756,"52":0.01653,"67":0.01102,"69":0.02756,"78":0.07715,"88":0.07164,"89":0.01102,"91":0.1488,"92":0.33617,"93":0.73847,"94":2.1548,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 95 96 3.5 3.6"},D:{"49":0.03307,"65":0.02756,"74":0.03858,"79":0.06613,"80":0.0992,"81":0.06613,"83":0.01102,"85":0.02204,"86":0.00551,"87":0.0992,"88":0.12124,"89":0.09369,"90":0.03307,"91":0.11022,"92":0.19289,"93":0.11022,"94":1.72494,"95":16.6322,"96":8.39325,"97":0.01653,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 75 76 77 78 84 98 99"},F:{"36":0.01653,"40":0.05511,"80":0.74399,"81":0.29759,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01102,"17":0.01102,"18":0.11022,"80":0.02204,"84":0.01102,"88":0.01102,"89":0.01653,"91":0.03307,"92":0.02204,"93":0.04409,"94":0.05511,"95":3.56011,"96":1.74148,_:"12 13 15 16 79 81 83 85 86 87 90"},E:{"4":0,"13":0.30862,"14":1.06362,"15":1.4549,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01102,"11.1":0.13226,"12.1":0.11573,"13.1":0.62825,"14.1":7.61069,"15.1":3.24047},G:{"8":0,"3.2":0,"4.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.03694,"9.3":0.01616,"10.0-10.2":0,"10.3":0.02309,"11.0-11.2":0,"11.3-11.4":0.02309,"12.0-12.1":0.00693,"12.2-12.5":0.31168,"13.0-13.1":0.01385,"13.2":0.00231,"13.3":0.02309,"13.4-13.7":0.12467,"14.0-14.4":0.67184,"14.5-14.8":8.48228,"15.0-15.1":13.33754},P:{"4":0.1259,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.11778,"8.2":0.0102,"9.2":0.06424,"10.1":0.01071,"11.1-11.2":0.08422,"12.0":0.03147,"13.0":0.02098,"14.0":0.13639,"15.0":2.83273},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.59519,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":18.22569},S:{"2.5":0},R:{_:"0"},M:{"0":0.18854},Q:{"10.4":0},O:{"0":0.06285},H:{"0":0.37399}}; +module.exports={C:{"52":0.00459,"64":0.00459,"78":0.03675,"88":0.04594,"89":0.02756,"91":0.01838,"92":0.00459,"93":0.00919,"94":1.04284,"95":0.85448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 96 97 3.5 3.6"},D:{"34":0.00919,"53":0.00919,"58":0.01838,"65":0.10107,"73":0.01378,"74":0.0781,"78":0.00459,"79":0.04594,"80":0.08729,"81":0.03675,"83":0.00919,"85":0.00919,"86":0.00459,"87":0.05513,"88":0.10107,"89":0.05513,"90":0.0781,"91":0.03216,"92":0.10107,"93":0.05972,"94":0.25726,"95":0.73045,"96":20.16307,_:"4 5 6 7 8 9 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 54 55 56 57 59 60 61 62 63 64 66 67 68 69 70 71 72 75 76 77 84 97 98 99"},F:{"80":0.04135,"81":0.35374,"82":0.45021,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00459,"13":0.26186,"14":0.611,"15":0.49156,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00919,"11.1":0.00459,"12.1":0.03675,"13.1":0.52372,"14.1":2.94475,"15.1":6.62914,"15.2":0.71666},B:{"13":0.05513,"15":0.01378,"17":0.01838,"18":0.01838,"84":0.01838,"86":0.02297,"89":0.00919,"92":0.08729,"93":0.04135,"94":0.01378,"95":0.03675,"96":5.80222,_:"12 14 16 79 80 81 83 85 87 88 90 91"},G:{"8":0,"3.2":0,"4.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.01603,"9.0-9.2":0.01603,"9.3":0.05451,"10.0-10.2":0,"10.3":0.10902,"11.0-11.2":0,"11.3-11.4":0.01924,"12.0-12.1":0.01603,"12.2-12.5":0.6317,"13.0-13.1":0.00321,"13.2":0.00641,"13.3":0.02886,"13.4-13.7":0.1924,"14.0-14.4":0.4393,"14.5-14.8":4.9061,"15.0-15.1":23.6102,"15.2":1.99771},P:{"4":0.04224,"5.0-5.4":0.02112,"6.2-6.4":0.02104,"7.2-7.4":0.02118,"8.2":0.06097,"9.2":0.01052,"10.1":0.01015,"11.1-11.2":0.08471,"12.0":0.01059,"13.0":0.02112,"14.0":0.09504,"15.0":0.28513},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00154,"4.4":0,"4.4.3-4.4.4":0.00927},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00459,"11":0.33077,_:"6 7 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.04865},H:{"0":0.24055},L:{"0":18.83005},S:{"2.5":0},R:{_:"0"},M:{"0":0.22165},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js index 887e7950a94a90..2a483eebc688f2 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:{"40":0.00442,"43":0.03097,"44":0.00885,"50":0.01548,"51":0.00221,"52":0.01106,"53":0.00221,"54":0.00442,"55":0.00442,"56":0.01327,"57":0.00442,"58":0.00885,"59":0.00442,"60":0.00442,"63":0.00664,"65":0.00442,"68":0.01991,"69":0.00885,"72":0.0177,"75":0.00442,"78":0.00885,"81":0.00442,"83":0.00221,"84":0.01106,"86":0.00664,"87":0.00442,"88":0.01991,"89":0.0177,"90":0.00664,"91":0.02654,"92":0.03097,"93":0.48443,"94":2.44868,"95":0.05972,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 45 46 47 48 49 61 62 64 66 67 70 71 73 74 76 77 79 80 82 85 96 3.5 3.6"},D:{"25":0.00221,"31":0.00221,"42":0.00664,"43":0.01991,"47":0.00442,"49":0.00664,"50":0.00442,"51":0.00221,"55":0.00442,"56":0.00885,"57":0.00664,"58":0.00885,"60":0.03539,"61":0.00221,"62":0.00442,"64":0.01548,"65":0.01991,"66":0.00885,"67":0.01327,"68":0.00221,"69":0.00221,"70":0.00442,"72":0.00442,"74":0.03318,"75":0.03539,"76":0.01991,"77":0.0177,"78":0.00442,"79":0.06857,"80":0.06415,"81":0.00885,"83":0.01548,"84":0.00442,"85":0.01106,"86":0.01548,"87":0.04424,"88":0.01106,"89":0.00664,"90":0.01106,"91":0.19687,"92":0.04645,"93":0.06194,"94":0.44682,"95":5.05884,"96":2.7473,"97":0.07078,_:"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 32 33 34 35 36 37 38 39 40 41 44 45 46 48 52 53 54 59 63 71 73 98 99"},F:{"31":0.01548,"33":0.00221,"55":0.00221,"56":0.00221,"58":0.00221,"66":0.00664,"77":0.00442,"78":0.00442,"79":0.0177,"80":0.3318,"81":0.1482,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 57 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0177,"13":0.01106,"14":0.00442,"15":0.00664,"16":0.04645,"17":0.01106,"18":0.10396,"81":0.01106,"83":0.00664,"84":0.00664,"85":0.01548,"86":0.00442,"87":0.00442,"88":0.00442,"89":0.01327,"90":0.00442,"91":0.00885,"92":0.01991,"93":0.0177,"94":0.05309,"95":0.97549,"96":0.40701,_:"79 80"},E:{"4":0,"6":0.00221,"11":0.00221,"12":0.00664,"13":0.00885,"14":0.08627,"15":0.09954,_:"0 5 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.00221,"10.1":0.01106,"11.1":0.00885,"12.1":0.01327,"13.1":0.03097,"14.1":0.23447,"15.1":0.2212},G:{"8":0.00138,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00413,"6.0-6.1":0,"7.0-7.1":0.00413,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.4227,"10.0-10.2":0.00138,"10.3":0.66503,"11.0-11.2":0.14733,"11.3-11.4":0.0537,"12.0-12.1":0.1074,"12.2-12.5":2.25946,"13.0-13.1":0.06747,"13.2":0.01928,"13.3":0.34697,"13.4-13.7":0.42683,"14.0-14.4":2.02952,"14.5-14.8":4.93611,"15.0-15.1":2.2746},P:{"4":1.44902,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.43879,"8.2":0.0102,"9.2":0.07143,"10.1":0.0102,"11.1-11.2":0.2347,"12.0":0.02041,"13.0":0.14286,"14.0":0.14286,"15.0":1.23472},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00022,"4.2-4.3":0.0096,"4.4":0,"4.4.3-4.4.4":0.0369},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04866,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.18689},N:{"10":0.00821,"11":0.22582},L:{"0":63.10506},S:{"2.5":0},R:{_:"0"},M:{"0":0.04672},Q:{"10.4":0.00779},O:{"0":0.80206},H:{"0":1.79145}}; +module.exports={C:{"33":0.00401,"34":0.01203,"43":0.01404,"44":0.01404,"47":0.00602,"50":0.00602,"51":0.00401,"52":0.00401,"53":0.00401,"56":0.00401,"58":0.00201,"60":0.00201,"61":0.00201,"63":0.00602,"67":0.00401,"68":0.00201,"69":0.00802,"72":0.01203,"78":0.01604,"79":0.01003,"89":0.00602,"91":0.01203,"92":0.00401,"93":0.01003,"94":0.76591,"95":1.26516,"96":0.14436,_:"2 3 4 5 6 7 8 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 45 46 48 49 54 55 57 59 62 64 65 66 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 88 90 97 3.5 3.6"},D:{"38":0.00401,"40":0.00802,"43":0.00802,"46":0.00201,"49":0.01604,"53":0.00401,"54":0.00602,"55":0.00201,"56":0.00602,"57":0.00802,"58":0.00401,"60":0.03008,"62":0.01203,"64":0.01604,"65":0.00401,"67":0.00602,"69":0.03208,"70":0.00602,"71":0.00401,"73":0.00201,"74":0.00401,"75":0.00802,"76":0.01203,"77":0.04211,"79":0.05815,"80":0.01003,"81":0.01805,"83":0.00401,"84":0.00201,"85":0.01404,"86":0.03008,"87":0.0381,"88":0.01203,"89":0.00401,"90":0.01604,"91":0.05414,"92":0.02406,"93":0.04812,"94":0.10827,"95":0.12231,"96":6.15535,_:"4 5 6 7 8 9 10 11 12 13 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 47 48 50 51 52 59 61 63 66 68 72 78 97 98 99"},F:{"75":0.00201,"76":0.23258,"79":0.03409,"80":0.00401,"81":0.18045,"82":0.63759,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00401,"13":0.01805,"14":0.04812,"15":0.06617,_:"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.00201,"12.1":0.02005,"13.1":0.0381,"14.1":0.34085,"15.1":0.12431,"15.2":0.00401},B:{"12":0.01805,"13":0.01003,"14":0.01003,"15":0.00602,"16":0.04211,"17":0.00602,"18":0.05013,"80":0.00201,"83":0.00201,"84":0.01003,"85":0.01003,"87":0.00201,"89":0.00802,"90":0.00802,"91":0.00602,"92":0.01604,"93":0.00401,"94":0.01404,"95":0.04211,"96":1.59999,_:"79 81 86 88"},G:{"8":0.00283,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00283,"5.0-5.1":0.00708,"6.0-6.1":0.00567,"7.0-7.1":0.01984,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.22953,"10.0-10.2":0.03542,"10.3":0.45906,"11.0-11.2":0.26354,"11.3-11.4":0.08218,"12.0-12.1":0.04392,"12.2-12.5":3.28427,"13.0-13.1":0.09068,"13.2":0.01133,"13.3":0.29329,"13.4-13.7":0.54124,"14.0-14.4":1.65347,"14.5-14.8":3.80426,"15.0-15.1":2.98815,"15.2":0.34855},P:{"4":1.90033,"5.0-5.4":0.0813,"6.2-6.4":0.02032,"7.2-7.4":0.38616,"8.2":0.06097,"9.2":0.12195,"10.1":0.01015,"11.1-11.2":0.18292,"12.0":0.02032,"13.0":0.15243,"14.0":0.19308,"15.0":0.4573},I:{"0":0,"3":0,"4":0.00016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00169,"4.2-4.3":0.00666,"4.4":0,"4.4.3-4.4.4":0.05545},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00602,"11":0.03609,_:"6 7 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.37577},O:{"0":0.75153},H:{"0":1.8393},L:{"0":64.69674},S:{"2.5":0},R:{_:"0"},M:{"0":0.05597},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js index 3ac764be585862..88c3d72b7cb742 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:{"4":0.00228,"17":0.00342,"37":0.00685,"48":0.00228,"52":0.00456,"57":0.00114,"72":0.00685,"78":0.00228,"79":0.00228,"80":0.00114,"82":0.00228,"83":0.00228,"89":0.00114,"92":0.01141,"93":0.11182,"94":0.46439,"95":0.00114,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 81 84 85 86 87 88 90 91 96 3.5 3.6"},D:{"24":0.00114,"25":0.00342,"26":0.00228,"28":0.00228,"29":0.00456,"33":0.00456,"37":0.00342,"38":0.00342,"39":0.00114,"40":0.00799,"42":0.00913,"43":0.00456,"45":0.00114,"49":0.00228,"50":0.00342,"54":0.01141,"55":0.00342,"57":0.00114,"58":0.00228,"63":0.00913,"69":0.00342,"70":0.00342,"72":0.00685,"73":0.00114,"74":0.00456,"76":0.00228,"77":0.00342,"78":0.03081,"79":0.00228,"80":0.00685,"81":0.01141,"83":0.01483,"84":0.00228,"85":0.00342,"86":0.00685,"87":0.02054,"88":0.00913,"89":0.04336,"90":0.00456,"91":0.02054,"92":0.04906,"93":0.03423,"94":0.1392,"95":1.36464,"96":0.76219,"97":0.02624,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 27 30 31 32 34 35 36 41 44 46 47 48 51 52 53 56 59 60 61 62 64 65 66 67 68 71 75 98 99"},F:{"34":0.00342,"53":0.00228,"72":0.00114,"79":0.00114,"80":0.21223,"81":0.03765,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 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.02054,"13":0.00342,"16":0.00114,"17":0.01141,"18":0.03309,"84":0.00571,"85":0.00799,"87":0.00228,"88":0.00456,"89":0.00685,"90":0.00571,"91":0.01027,"92":0.01027,"93":0.00571,"94":0.02054,"95":0.39593,"96":0.15175,_:"14 15 79 80 81 83 86"},E:{"4":0,"8":0.02396,"12":0.00228,"13":0.00799,"14":0.00913,"15":0.01826,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01255,"11.1":0.02054,"12.1":0.0194,"13.1":0.00456,"14.1":0.03081,"15.1":0.01712},G:{"8":0.00219,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03718,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12466,"10.0-10.2":0.05249,"10.3":0.20012,"11.0-11.2":0.58832,"11.3-11.4":0.91747,"12.0-12.1":0.33025,"12.2-12.5":3.26965,"13.0-13.1":0.55989,"13.2":0.05249,"13.3":0.27448,"13.4-13.7":0.32259,"14.0-14.4":1.33629,"14.5-14.8":1.90602,"15.0-15.1":0.95793},P:{"4":0.71909,"5.0-5.4":0.08102,"6.2-6.4":0.13166,"7.2-7.4":0.67858,"8.2":0.12154,"9.2":0.22282,"10.1":0.01071,"11.1-11.2":0.20256,"12.0":0.03038,"13.0":0.17218,"14.0":0.44563,"15.0":0.84063},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00151,"4.2-4.3":0.00242,"4.4":0,"4.4.3-4.4.4":0.06694},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05477,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01772},N:{"10":0.02658,"11":0.22582},L:{"0":74.02863},S:{"2.5":0.21262},R:{_:"0"},M:{"0":0.0443},Q:{"10.4":0.15946},O:{"0":0.38094},H:{"0":5.48518}}; +module.exports={C:{"4":0.00225,"15":0.00113,"17":0.00225,"33":0.00113,"37":0.00338,"39":0.00225,"43":0.00113,"48":0.00113,"49":0.00225,"52":0.00113,"63":0.00113,"72":0.0045,"78":0.00225,"79":0.00113,"86":0.00225,"89":0.00113,"91":0.01013,"92":0.00225,"93":0.00563,"94":0.18225,"95":0.24975,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 38 40 41 42 44 45 46 47 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 87 88 90 96 97 3.5 3.6"},D:{"25":0.0045,"26":0.00225,"28":0.00225,"33":0.00563,"37":0.00338,"38":0.00675,"40":0.00225,"42":0.0135,"43":0.0045,"49":0.00675,"50":0.00563,"53":0.0045,"55":0.00788,"56":0.00788,"64":0.00113,"66":0.00225,"67":0.00113,"69":0.00225,"70":0.00113,"72":0.00338,"73":0.00113,"74":0.00225,"76":0.00675,"77":0.00338,"78":0.01688,"79":0.00225,"80":0.00563,"81":0.01013,"83":0.00563,"86":0.01125,"87":0.0225,"88":0.00563,"89":0.036,"90":0.00225,"91":0.01463,"92":0.0225,"93":0.0135,"94":0.0225,"95":0.1215,"96":2.35125,"97":0.01125,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 29 30 31 32 34 35 36 39 41 44 45 46 47 48 51 52 54 57 58 59 60 61 62 63 65 68 71 75 84 85 98 99"},F:{"38":0.00225,"42":0.00563,"56":0.00225,"64":0.0045,"79":0.00675,"80":0.00338,"81":0.07988,"82":0.14063,_:"9 11 12 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 49 50 51 52 53 54 55 57 58 60 62 63 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.00225,"13":0.01688,"14":0.00338,"15":0.00338,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 15.2","10.1":0.00563,"11.1":0.00563,"12.1":0.02025,"13.1":0.00563,"14.1":0.05063,"15.1":0.01913},B:{"12":0.02363,"14":0.00113,"15":0.00113,"16":0.00113,"17":0.02138,"18":0.03038,"83":0.00788,"84":0.00338,"85":0.01013,"89":0.009,"90":0.0045,"92":0.06863,"93":0.0045,"94":0.02025,"95":0.01238,"96":0.48938,_:"13 79 80 81 86 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04213,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06788,"10.0-10.2":0.07842,"10.3":0.41197,"11.0-11.2":0.71861,"11.3-11.4":1.04749,"12.0-12.1":0.43538,"12.2-12.5":3.98865,"13.0-13.1":0.40612,"13.2":0.06671,"13.3":0.37569,"13.4-13.7":0.23173,"14.0-14.4":1.22539,"14.5-14.8":1.34125,"15.0-15.1":1.17623,"15.2":0.09246},P:{"4":1.49621,"5.0-5.4":0.14058,"6.2-6.4":0.11046,"7.2-7.4":0.63263,"8.2":0.11046,"9.2":0.22092,"10.1":0.01015,"11.1-11.2":0.25104,"12.0":0.03013,"13.0":0.19079,"14.0":0.39163,"15.0":0.43179},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.00144,"4.4":0,"4.4.3-4.4.4":0.04271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03825,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.01775},O:{"0":0.38163},H:{"0":5.5539},L:{"0":72.6905},S:{"2.5":0.25738},R:{_:"0"},M:{"0":0.01775},Q:{"10.4":0.12425}}; 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 494c411d8fa577..34ada22aca91bf 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:{"48":0.00897,"50":0.00897,"52":0.01345,"54":0.00448,"60":1.12548,"68":0.00897,"72":0.00897,"76":0.00448,"77":0.01345,"78":0.06278,"82":0.00448,"84":0.00897,"88":0.00897,"90":0.00897,"91":0.03139,"92":0.03139,"93":0.63673,"94":2.99531,"95":0.00448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 79 80 81 83 85 86 87 89 96 3.5 3.6"},D:{"49":0.04932,"53":0.00448,"58":0.00448,"62":0.00897,"63":0.01794,"65":0.04036,"74":0.00448,"75":0.00897,"76":0.02242,"79":0.04484,"80":0.01345,"81":0.00897,"83":0.00897,"84":0.05829,"85":0.01345,"87":0.08071,"88":0.02242,"89":0.18384,"90":0.0269,"91":0.04484,"92":0.11658,"93":0.18833,"94":1.121,"95":12.40274,"96":9.03526,"97":0.00897,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 59 60 61 64 66 67 68 69 70 71 72 73 77 78 86 98 99"},F:{"80":0.51118,"81":0.2242,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00448,"17":0.03139,"18":0.05829,"80":0.00448,"81":0.00448,"84":0.00448,"86":0.03587,"89":0.02242,"90":0.02242,"91":0.00897,"92":0.01794,"93":0.0269,"94":0.24214,"95":4.15667,"96":2.23303,_:"12 13 14 15 79 83 85 87 88"},E:{"4":0,"8":0.01345,"12":0.00897,"13":0.04484,"14":0.66363,"15":0.82954,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0269,"11.1":0.08071,"12.1":0.11658,"13.1":0.79367,"14.1":2.21061,"15.1":1.52456},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01307,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01634,"9.0-9.2":0,"9.3":0.29089,"10.0-10.2":0,"10.3":0.05066,"11.0-11.2":0.01144,"11.3-11.4":0.02288,"12.0-12.1":0.04412,"12.2-12.5":0.42163,"13.0-13.1":0.08335,"13.2":0.00654,"13.3":0.16669,"13.4-13.7":0.33012,"14.0-14.4":1.48062,"14.5-14.8":6.49609,"15.0-15.1":6.90138},P:{"4":0.02077,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.15577,"8.2":0.0102,"9.2":0.02077,"10.1":0.01071,"11.1-11.2":0.24924,"12.0":0.06231,"13.0":0.21808,"14.0":0.25962,"15.0":4.18513},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00426,"4.2-4.3":0.00586,"4.4":0,"4.4.3-4.4.4":0.05057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19281,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":34.49528},S:{"2.5":0},R:{_:"0"},M:{"0":0.37516},Q:{"10.4":0},O:{"0":0},H:{"0":0.18281}}; +module.exports={C:{"38":0.0137,"50":0.0137,"52":0.0137,"56":0.0137,"60":1.08238,"68":0.02284,"72":0.00457,"77":0.00913,"78":0.07307,"83":0.00913,"84":0.0137,"86":0.00457,"88":0.00457,"89":0.00457,"90":0.00457,"91":0.05937,"92":0.01827,"93":0.02284,"94":1.16915,"95":2.00948,"96":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 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 85 87 97 3.5 3.6"},D:{"47":0.00457,"49":0.03197,"53":0.00457,"63":0.00913,"65":0.0137,"67":0.00457,"73":0.00913,"74":0.00913,"76":0.00913,"77":0.00457,"79":0.03197,"80":0.00913,"81":0.0137,"83":0.0137,"84":0.0548,"86":0.0411,"87":0.12788,"88":0.02284,"89":0.18725,"90":0.00913,"91":0.0137,"92":0.05024,"93":0.03654,"94":0.22835,"95":0.52064,"96":20.89859,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 56 57 58 59 60 61 62 64 66 68 69 70 71 72 75 78 85 97 98 99"},F:{"80":0.00913,"81":0.4567,"82":0.4978,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.0137,"13":0.06394,"14":0.67135,"15":0.443,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00913,"11.1":0.08677,"12.1":0.10961,"13.1":0.59371,"14.1":2.41594,"15.1":2.37484,"15.2":0.4978},B:{"17":0.03197,"18":0.0548,"84":0.0137,"86":0.01827,"89":0.00913,"91":0.01827,"92":0.00913,"93":0.0137,"94":0.0411,"95":0.43843,"96":6.59018,_:"12 13 14 15 16 79 80 81 83 85 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00165,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08918,"10.0-10.2":0.0033,"10.3":0.04459,"11.0-11.2":0.03138,"11.3-11.4":0.01651,"12.0-12.1":0.02973,"12.2-12.5":0.47726,"13.0-13.1":0.05285,"13.2":0.02973,"13.3":0.17175,"13.4-13.7":0.36827,"14.0-14.4":1.3393,"14.5-14.8":4.67517,"15.0-15.1":8.66169,"15.2":0.51855},P:{"4":0.06249,"5.0-5.4":0.02112,"6.2-6.4":0.01042,"7.2-7.4":0.1354,"8.2":0.06097,"9.2":0.02083,"10.1":0.01015,"11.1-11.2":0.15623,"12.0":0.02083,"13.0":0.19789,"14.0":0.32287,"15.0":0.80197},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00458,"4.2-4.3":0.01576,"4.4":0,"4.4.3-4.4.4":0.06659},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20095,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.23661},L:{"0":34.92828},S:{"2.5":0},R:{_:"0"},M:{"0":0.27708},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js index b3de5048e888e3..3e5b2f9055f1d0 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:{"43":0.03478,"47":0.00497,"49":0.00994,"51":0.01491,"52":0.04969,"57":0.04969,"62":0.00994,"63":0.00497,"67":0.03478,"72":0.10435,"77":0.00994,"78":0.02981,"81":0.00994,"84":0.02485,"86":0.00994,"89":0.01988,"91":0.01491,"92":0.00994,"93":0.82485,"94":4.9044,"95":0.00994,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 53 54 55 56 58 59 60 61 64 65 66 68 69 70 71 73 74 75 76 79 80 82 83 85 87 88 90 96 3.5 3.6"},D:{"18":0.11926,"38":0.01491,"41":0.00994,"43":0.00994,"49":0.00497,"53":0.01988,"54":0.04969,"55":0.09441,"58":0.01491,"60":0.01491,"62":0.00994,"63":0.00994,"66":1.14287,"69":0.02981,"71":0.00497,"74":0.01491,"77":0.00497,"78":0.01491,"79":0.06957,"80":0.00994,"81":0.02981,"83":0.00497,"84":0.00994,"85":0.01988,"86":0.01988,"87":0.13416,"88":0.00497,"89":0.03975,"90":0.01988,"91":0.02981,"92":0.40746,"93":0.38758,"94":1.26213,"95":12.29331,"96":10.67341,"97":0.01491,_:"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 42 44 45 46 47 48 50 51 52 56 57 59 61 64 65 67 68 70 72 73 75 76 98 99"},F:{"49":0.01491,"51":0.10435,"53":0.00994,"64":0.28323,"71":0.00497,"73":0.02981,"75":0.02485,"76":0.01988,"77":0.04969,"78":0.01491,"80":0.04472,"81":0.01988,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 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 54 55 56 57 58 60 62 63 65 66 67 68 69 70 72 74 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05466,"13":0.05466,"14":0.02485,"15":0.02485,"16":0.33789,"17":0.00994,"18":0.26833,"84":0.04472,"85":0.01988,"86":0.00497,"89":0.04969,"90":0.01491,"91":0.00994,"92":0.0646,"93":0.09441,"94":0.03478,"95":5.98268,"96":2.43481,_:"79 80 81 83 87 88"},E:{"4":0,"13":0.05466,"14":0.11926,"15":0.11429,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.00497,"10.1":0.00497,"12.1":0.00497,"13.1":0.09441,"14.1":0.54659,"15.1":0.80995},G:{"8":0.00174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00436,"7.0-7.1":0.0061,"8.1-8.4":0.00087,"9.0-9.2":0,"9.3":0.03659,"10.0-10.2":0,"10.3":0.05402,"11.0-11.2":0.38856,"11.3-11.4":0.00871,"12.0-12.1":0.02527,"12.2-12.5":0.67955,"13.0-13.1":0,"13.2":0.01045,"13.3":0.07231,"13.4-13.7":0.12633,"14.0-14.4":2.39932,"14.5-14.8":1.99856,"15.0-15.1":2.89766},P:{"4":1.44707,"5.0-5.4":0.04134,"6.2-6.4":0.07104,"7.2-7.4":0.04134,"8.2":0.02037,"9.2":0.03101,"10.1":0.05168,"11.1-11.2":0.03101,"12.0":0.03101,"13.0":0.74421,"14.0":1.76749,"15.0":2.05691},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01154,"4.2-4.3":0.2366,"4.4":0,"4.4.3-4.4.4":0.52679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.14784,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00503},N:{"10":0.00821,_:"11"},L:{"0":36.03957},S:{"2.5":0},R:{_:"0"},M:{"0":0.1409},Q:{"10.4":0.04529},O:{"0":0.55855},H:{"0":0.41447}}; +module.exports={C:{"43":0.16807,"47":0.0096,"51":0.10084,"52":0.40817,"54":0.0048,"57":0.0096,"64":0.0096,"71":0.06243,"72":0.0096,"78":0.03842,"81":0.0048,"83":0.05762,"85":0.01441,"88":0.01441,"89":0.07203,"93":0.0048,"94":1.57506,"95":3.22694,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 53 55 56 58 59 60 61 62 63 65 66 67 68 69 70 73 74 75 76 77 79 80 82 84 86 87 90 91 92 96 97 3.5 3.6"},D:{"11":0.02401,"18":0.06723,"38":0.02401,"42":0.01921,"46":0.01921,"48":0.0096,"50":0.02401,"53":0.01921,"54":0.07203,"55":0.02881,"60":0.01441,"62":0.03361,"63":0.01921,"66":0.13446,"69":0.04322,"71":0.0096,"74":0.0096,"75":0.01441,"79":0.21609,"80":0.01441,"81":0.02401,"84":0.0096,"85":0.0048,"86":0.01921,"87":0.09604,"88":0.0096,"89":0.04802,"90":0.32173,"91":0.09604,"92":0.38416,"93":0.60505,"94":0.27852,"95":0.39857,"96":20.39409,_:"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 39 40 41 43 44 45 47 49 51 52 56 57 58 59 61 64 65 67 68 70 72 73 76 77 78 83 97 98 99"},F:{"31":0.0096,"42":0.0096,"44":0.0048,"46":0.0048,"49":0.0096,"51":0.31693,"62":0.01441,"64":0.35535,"68":0.0048,"69":0.0048,"71":0.0096,"73":0.0096,"76":0.0096,"77":0.02881,"78":0.0048,"80":0.01921,"81":0.01921,"82":0.0096,_:"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 43 45 47 48 50 52 53 54 55 56 57 58 60 63 65 66 67 70 72 74 75 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.03361,"13":0.02401,"14":0.04322,"15":0.04802,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.05762,"10.1":0.01441,"11.1":0.03361,"12.1":0.0096,"13.1":0.13446,"14.1":0.20168,"15.1":1.16208,"15.2":0.32654},B:{"12":0.11045,"13":0.02401,"14":0.01441,"15":0.0096,"16":0.10084,"17":0.08163,"18":0.16807,"80":0.0096,"84":0.01921,"85":0.0096,"89":0.01441,"90":0.03842,"91":0.01921,"92":0.02881,"95":0.2401,"96":8.58598,_:"79 81 83 86 87 88 93 94"},G:{"8":0,"3.2":0,"4.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.01818,"9.3":0.00909,"10.0-10.2":0,"10.3":0.06667,"11.0-11.2":2.66087,"11.3-11.4":0.01818,"12.0-12.1":0.06516,"12.2-12.5":0.95616,"13.0-13.1":0.00909,"13.2":0.02424,"13.3":0.01515,"13.4-13.7":0.12122,"14.0-14.4":3.44883,"14.5-14.8":1.75775,"15.0-15.1":5.73845,"15.2":0.2379},P:{"4":2.16326,"5.0-5.4":0.0205,"6.2-6.4":0.11115,"7.2-7.4":0.17639,"8.2":0.01016,"9.2":0.07177,"10.1":0.07114,"11.1-11.2":0.05126,"12.0":0.0205,"13.0":0.11278,"14.0":0.04101,"15.0":0.2153},I:{"0":0,"3":0,"4":0.00019,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00505,"4.2-4.3":0.06093,"4.4":0,"4.4.3-4.4.4":0.17814},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.1957,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.45742},H:{"0":0.45274},L:{"0":35.80198},S:{"2.5":0.0104},R:{_:"0"},M:{"0":0.17153},Q:{"10.4":0.05198}}; 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 9f6ffbf56c73d3..69902b182792e7 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.65111,"60":0.01152,"65":0.01152,"68":0.01152,"72":0.00576,"77":0.00576,"78":0.06338,"80":0.00576,"81":0.06914,"82":0.04033,"84":0.02881,"87":0.05186,"88":0.05762,"89":0.01729,"90":0.00576,"91":0.07491,"92":0.04033,"93":0.96802,"94":6.4592,"95":0.01152,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 66 67 69 70 71 73 74 75 76 79 83 85 86 96 3.5 3.6"},D:{"22":0.47825,"38":0.20743,"39":0.00576,"47":0.27081,"49":0.61653,"53":0.00576,"56":0.00576,"58":0.02881,"62":0.25353,"63":0.00576,"65":0.01152,"68":0.00576,"69":0.12676,"70":0.00576,"71":0.02305,"72":0.02305,"73":0.01152,"74":0.00576,"75":0.02881,"76":0.00576,"77":0.08067,"78":0.01729,"79":0.19015,"80":0.02881,"81":0.01729,"83":0.01152,"84":0.01729,"85":0.02305,"86":0.03457,"87":0.19591,"88":0.04033,"89":0.08067,"90":0.01729,"91":0.32843,"92":0.10948,"93":0.10372,"94":0.71449,"95":20.80082,"96":13.05093,"97":0.00576,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 64 66 67 98 99"},F:{"12":0.08067,"25":0.08643,"28":0.00576,"31":0.87582,"40":0.50706,"46":0.00576,"79":0.00576,"80":0.85854,"81":0.38605,_:"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 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"15":0.121,"18":0.01152,"90":0.00576,"92":0.03457,"93":0.01152,"94":0.02881,"95":2.07432,"96":0.83549,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 91"},E:{"4":0,"13":0.0461,"14":0.10372,"15":0.18438,_:"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.03457,"12.1":0.04033,"13.1":0.11524,"14.1":0.50129,"15.1":0.30539},G:{"8":0,"3.2":0.00063,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0044,"6.0-6.1":0,"7.0-7.1":0.21185,"8.1-8.4":0.0044,"9.0-9.2":0,"9.3":0.06915,"10.0-10.2":0.00817,"10.3":0.05846,"11.0-11.2":0.01634,"11.3-11.4":0.0176,"12.0-12.1":0.01257,"12.2-12.5":0.3778,"13.0-13.1":0.0132,"13.2":0.01823,"13.3":0.03457,"13.4-13.7":0.14773,"14.0-14.4":0.36271,"14.5-14.8":2.70684,"15.0-15.1":2.22029},P:{"4":0.56851,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.11778,"8.2":0.0102,"9.2":0.06424,"10.1":0.01071,"11.1-11.2":0.08422,"12.0":0.02106,"13.0":0.10528,"14.0":0.0737,"15.0":1.36862},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01333,"4.2-4.3":0.12993,"4.4":0,"4.4.3-4.4.4":0.43311},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.43791,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":33.52686},S:{"2.5":0},R:{_:"0"},M:{"0":0.19919},Q:{"10.4":0.00424},O:{"0":0.1229},H:{"0":0.23271}}; +module.exports={C:{"52":0.53618,"56":0.01141,"60":0.01141,"65":0.0057,"68":0.02282,"72":0.01141,"78":0.04563,"81":0.06845,"84":0.02852,"87":0.11408,"88":0.03993,"89":0.01711,"91":0.05704,"92":0.02282,"93":0.02282,"94":2.05344,"95":4.80847,"96":0.01141,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 66 67 69 70 71 73 74 75 76 77 79 80 82 83 85 86 90 97 3.5 3.6"},D:{"22":0.45632,"38":0.22246,"39":0.02282,"47":0.26809,"49":0.5647,"53":0.0057,"56":0.01141,"58":0.02852,"62":0.30231,"65":0.01141,"68":0.01141,"69":0.18253,"71":0.02282,"72":0.02282,"73":0.01141,"74":0.01141,"75":0.01711,"77":0.08556,"78":0.01711,"79":0.18823,"80":0.02282,"81":0.02282,"83":0.01711,"84":0.02852,"85":0.03422,"86":0.02852,"87":0.15971,"88":0.03422,"89":0.08556,"90":0.01711,"91":0.30231,"92":0.06274,"93":0.06274,"94":0.15401,"95":0.55899,"96":33.43114,"97":0.01141,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 63 64 66 67 70 76 98 99"},F:{"12":0.08556,"25":0.02852,"28":0.0057,"31":0.91264,"36":0.01141,"40":0.50766,"46":0.0057,"80":0.01711,"81":0.52477,"82":0.73582,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.05134,"14":0.09697,"15":0.09126,_:"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.02852,"12.1":0.03422,"13.1":0.10838,"14.1":0.38217,"15.1":0.4278,"15.2":0.07415},B:{"15":0.13119,"18":0.0057,"92":0.02852,"93":0.0057,"94":0.0057,"95":0.06845,"96":2.91474,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91"},G:{"8":0,"3.2":0.00129,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00193,"6.0-6.1":0.00129,"7.0-7.1":0.21076,"8.1-8.4":0.00451,"9.0-9.2":0,"9.3":0.05865,"10.0-10.2":0.00645,"10.3":0.05994,"11.0-11.2":0.01418,"11.3-11.4":0.02191,"12.0-12.1":0.01289,"12.2-12.5":0.39703,"13.0-13.1":0.0116,"13.2":0.01482,"13.3":0.03674,"13.4-13.7":0.15727,"14.0-14.4":0.3242,"14.5-14.8":1.67255,"15.0-15.1":3.12081,"15.2":0.31517},P:{"4":0.52944,"5.0-5.4":0.0813,"6.2-6.4":0.02104,"7.2-7.4":0.02118,"8.2":0.06097,"9.2":0.01052,"10.1":0.01015,"11.1-11.2":0.08471,"12.0":0.01059,"13.0":0.10589,"14.0":0.07412,"15.0":0.16942},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01506,"4.2-4.3":0.19274,"4.4":0,"4.4.3-4.4.4":0.37645},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00594,"11":0.43327,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.1031},H:{"0":0.2359},L:{"0":34.60758},S:{"2.5":0},R:{_:"0"},M:{"0":0.20191},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js index c84b3bee4f14b6..e31af1babf6053 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.0257,"54":0.00367,"72":0.00367,"73":0.11383,"78":0.04039,"87":0.00367,"88":0.01102,"89":0.01469,"90":0.0257,"91":0.02938,"92":0.01102,"93":0.22399,"94":1.4688,"95":0.01102,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 96 3.5 3.6"},D:{"38":0.00734,"49":0.04406,"53":0.00367,"63":0.00734,"65":0.01469,"69":0.00734,"70":0.01102,"73":0.00734,"74":0.01102,"75":0.00734,"76":0.04406,"77":0.00734,"78":0.02203,"79":0.05508,"80":0.01469,"81":0.02203,"83":0.02203,"84":0.02938,"85":0.00734,"86":0.08078,"87":0.06977,"88":0.03672,"89":0.04774,"90":0.04039,"91":0.11016,"92":0.13586,"93":0.13219,"94":0.54346,"95":15.15067,"96":9.05882,"97":0.01102,_:"4 5 6 7 8 9 10 11 12 13 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 66 67 68 71 72 98 99"},F:{"78":0.00367,"79":0.01102,"80":1.21176,"81":0.51775,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00734,"17":0.00734,"18":0.01836,"84":0.00367,"85":0.00367,"89":0.01102,"90":0.00734,"91":0.00734,"92":0.01469,"93":0.01102,"94":0.05141,"95":1.75522,"96":0.65362,_:"12 13 14 16 79 80 81 83 86 87 88"},E:{"4":0,"13":0.01836,"14":0.17258,"15":0.3672,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00367,"11.1":0.00734,"12.1":0.02203,"13.1":0.14321,"14.1":0.54713,"15.1":0.56549},G:{"8":0.0048,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0024,"6.0-6.1":0.0056,"7.0-7.1":0.0072,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02559,"10.0-10.2":0,"10.3":0.02959,"11.0-11.2":0.0064,"11.3-11.4":0.0104,"12.0-12.1":0.0072,"12.2-12.5":0.32067,"13.0-13.1":0.01439,"13.2":0.0064,"13.3":0.03519,"13.4-13.7":0.10156,"14.0-14.4":0.43502,"14.5-14.8":2.938,"15.0-15.1":4.04314},P:{"4":0.09346,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.20768,"8.2":0.0102,"9.2":0.05192,"10.1":0.01071,"11.1-11.2":0.28037,"12.0":0.03115,"13.0":0.20768,"14.0":0.23883,"15.0":2.18066},I:{"0":0,"3":0,"4":0.00475,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00475,"4.2-4.3":0.00316,"4.4":0,"4.4.3-4.4.4":0.06962},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07344,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":53.49073},S:{"2.5":0},R:{_:"0"},M:{"0":0.22784},Q:{"10.4":0},O:{"0":0.08861},H:{"0":0.28761}}; +module.exports={C:{"52":0.02871,"72":0.00359,"73":0.17227,"78":0.0323,"88":0.00718,"89":0.01077,"90":0.02871,"91":0.01436,"92":0.00359,"93":0.00718,"94":0.5563,"95":1.0767,"96":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 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 97 3.5 3.6"},D:{"38":0.00718,"49":0.04307,"53":0.00718,"63":0.00718,"65":0.01436,"67":0.00718,"69":0.00718,"70":0.00718,"74":0.02153,"75":0.00718,"76":0.03589,"77":0.00359,"78":0.02153,"79":0.06101,"80":0.01436,"81":0.02512,"83":0.01795,"84":0.02153,"85":0.00718,"86":0.06819,"87":0.07178,"88":0.02871,"89":0.03948,"90":0.02871,"91":0.10049,"92":0.12562,"93":0.04666,"94":0.15433,"95":0.3589,"96":21.68115,"97":0.00359,_:"4 5 6 7 8 9 10 11 12 13 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 66 68 71 72 73 98 99"},F:{"78":0.00359,"80":0.00718,"81":0.9798,"82":0.70344,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00359,"13":0.01436,"14":0.1292,"15":0.18304,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 7.1 9.1","6.1":0.02512,"10.1":0.01077,"11.1":0.00718,"12.1":0.01795,"13.1":0.11844,"14.1":0.38761,"15.1":0.7501,"15.2":0.1292},B:{"15":0.00359,"17":0.01436,"18":0.01795,"84":0.00359,"85":0.01436,"89":0.01077,"90":0.00718,"91":0.00359,"92":0.01795,"93":0.00718,"94":0.01436,"95":0.0323,"96":2.25748,_:"12 13 14 16 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00087,"6.0-6.1":0.01039,"7.0-7.1":0.00433,"8.1-8.4":0,"9.0-9.2":0.00087,"9.3":0.02252,"10.0-10.2":0,"10.3":0.02512,"11.0-11.2":0.00779,"11.3-11.4":0.00866,"12.0-12.1":0.01212,"12.2-12.5":0.29705,"13.0-13.1":0.00866,"13.2":0.00433,"13.3":0.0407,"13.4-13.7":0.08747,"14.0-14.4":0.37326,"14.5-14.8":1.98237,"15.0-15.1":5.10879,"15.2":0.65819},P:{"4":0.103,"5.0-5.4":0.02112,"6.2-6.4":0.01042,"7.2-7.4":0.19571,"8.2":0.06097,"9.2":0.0412,"10.1":0.01015,"11.1-11.2":0.23691,"12.0":0.0309,"13.0":0.18541,"14.0":0.20601,"15.0":0.43262},I:{"0":0,"3":0,"4":0.00256,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00385,"4.2-4.3":0.00385,"4.4":0,"4.4.3-4.4.4":0.05384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07896,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.09615},H:{"0":0.3095},L:{"0":55.55008},S:{"2.5":0},R:{_:"0"},M:{"0":0.32691},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js index c0852df7f18165..aa6a475b080a82 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js @@ -1 +1 @@ -module.exports={C:{"48":0.00457,"52":0.01828,"78":0.02285,"84":0.03655,"87":0.02285,"88":0.02285,"89":2.64088,"91":0.03655,"92":0.01828,"93":0.42949,"94":2.38502,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 90 95 96 3.5 3.6"},D:{"49":0.02741,"65":0.1919,"66":0.00457,"68":0.00914,"71":0.01371,"75":0.01828,"76":0.05483,"77":0.03198,"79":0.30155,"80":0.00914,"81":0.00914,"84":0.02741,"85":0.01371,"86":0.04112,"87":0.30155,"88":0.01371,"89":0.02741,"90":0.00914,"91":0.22388,"92":0.66707,"93":0.20104,"94":1.50777,"95":13.35062,"96":6.95859,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 69 70 72 73 74 78 83 97 98 99"},F:{"79":0.01371,"80":0.42492,"81":0.29699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"15":0.00457,"17":0.00914,"18":0.05026,"84":0.00457,"89":0.00457,"91":0.00914,"92":0.12336,"93":0.00914,"94":0.11423,"95":3.2577,"96":0.89096,_:"12 13 14 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"9":0.00457,"12":0.02285,"13":0.73561,"14":0.54371,"15":1.15139,_:"0 5 6 7 8 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.03198,"10.1":0.08224,"11.1":0.0594,"12.1":0.13707,"13.1":0.40664,"14.1":2.72312,"15.1":2.40329},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01969,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.14349,"9.0-9.2":0,"9.3":0.30949,"10.0-10.2":0.00844,"10.3":0.1238,"11.0-11.2":0.01407,"11.3-11.4":0.0422,"12.0-12.1":0.09847,"12.2-12.5":0.82999,"13.0-13.1":0.01688,"13.2":0.00844,"13.3":0.34044,"13.4-13.7":0.4164,"14.0-14.4":2.23114,"14.5-14.8":12.85225,"15.0-15.1":10.67738},P:{"4":0.37497,"5.0-5.4":0.15307,"6.2-6.4":0.03061,"7.2-7.4":0.02083,"8.2":0.0102,"9.2":0.01042,"10.1":0.01071,"11.1-11.2":0.15624,"12.0":0.01042,"13.0":0.30206,"14.0":0.22915,"15.0":3.67677},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00165,"4.4":0,"4.4.3-4.4.4":0.00378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.77216,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,"11":0.22582},L:{"0":21.33557},S:{"2.5":0},R:{_:"0"},M:{"0":0.14664},Q:{"10.4":0},O:{"0":0.26069},H:{"0":0.10798}}; +module.exports={C:{"52":0.00453,"78":0.0136,"84":0.03626,"87":0.0136,"88":0.01813,"89":3.38162,"91":0.04533,"93":0.00907,"94":0.78421,"95":1.16951,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 92 96 97 3.5 3.6"},D:{"49":0.0136,"53":0.00907,"65":0.10426,"67":0.00907,"69":0.00453,"71":0.02267,"73":0.00907,"75":0.01813,"76":0.03626,"77":0.03626,"79":0.15412,"80":0.0136,"83":0.01813,"84":0.01813,"86":0.01813,"87":0.15412,"88":0.00907,"89":0.02267,"91":0.16319,"92":0.54396,"93":0.11333,"94":0.64822,"95":0.53489,"96":21.99412,"97":0.00453,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 70 72 74 78 81 85 90 98 99"},F:{"81":0.29011,"82":0.4397,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.47143,"14":0.38531,"15":0.55756,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.03626,"10.1":0.04533,"11.1":0.0136,"12.1":0.15412,"13.1":0.32184,"14.1":1.97639,"15.1":3.34535,"15.2":1.04712},B:{"16":0.00453,"17":0.00453,"18":0.00907,"89":0.00907,"92":0.07706,"94":0.00453,"95":0.12692,"96":3.30456,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00608,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0152,"9.0-9.2":0,"9.3":0.31614,"10.0-10.2":0.00304,"10.3":0.06688,"11.0-11.2":0.0152,"11.3-11.4":0.04864,"12.0-12.1":0.02432,"12.2-12.5":0.92411,"13.0-13.1":0.02128,"13.2":0,"13.3":0.55021,"13.4-13.7":0.23407,"14.0-14.4":1.31321,"14.5-14.8":7.71814,"15.0-15.1":17.67057,"15.2":1.45304},P:{"4":0.28135,"5.0-5.4":0.02112,"6.2-6.4":0.01042,"7.2-7.4":0.02084,"8.2":0.06097,"9.2":0.02084,"10.1":0.01015,"11.1-11.2":0.08336,"12.0":0.01042,"13.0":0.12504,"14.0":0.2084,"15.0":0.46891},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03332,"4.4":0,"4.4.3-4.4.4":0.01041},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.56209,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.12027},H:{"0":0.09316},L:{"0":20.75399},S:{"2.5":0},R:{_:"0"},M:{"0":0.16401},Q:{"10.4":0}}; 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 f5ea625c0896e2..d08403d4e87331 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:{"78":0.00526,"93":0.18147,"94":0.22355,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"21":0.00526,"33":0.08153,"43":0.01315,"57":0.01841,"63":0.00789,"65":0.00263,"67":0.02367,"70":0.00789,"76":0.09994,"77":0.00263,"79":0.01315,"81":0.01315,"85":0.00526,"87":0.01315,"88":0.02893,"89":0.00526,"91":0.00789,"92":0.02367,"93":0.45499,"94":0.62594,"95":7.89263,"96":4.78397,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 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 62 64 66 68 69 71 72 73 74 75 78 80 83 84 86 90 97 98 99"},F:{"46":0.01315,"77":0.04208,"79":0.00526,"80":0.65487,"81":0.1315,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00526,"13":0.01052,"14":0.00789,"15":0.01052,"17":0.00789,"18":0.0789,"85":0.01052,"90":0.00789,"91":0.01578,"92":0.00526,"94":0.1052,"95":0.49707,"96":0.74429,_:"16 79 80 81 83 84 86 87 88 89 93"},E:{"4":0,"13":0.00526,"14":0.01315,"15":0.02367,_:"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.00526,"14.1":0.00789,"15.1":0.09994},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00079,"7.0-7.1":0.18163,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04482,"10.0-10.2":0.85625,"10.3":0.03381,"11.0-11.2":0.01573,"11.3-11.4":0.00472,"12.0-12.1":0.30743,"12.2-12.5":0.78549,"13.0-13.1":0.02516,"13.2":0.00157,"13.3":0.00079,"13.4-13.7":3.12071,"14.0-14.4":0.2178,"14.5-14.8":0.8075,"15.0-15.1":1.45854},P:{"4":0.64632,"5.0-5.4":0.08102,"6.2-6.4":0.13166,"7.2-7.4":0.41698,"8.2":0.12154,"9.2":0.02085,"10.1":0.01071,"11.1-11.2":0.18764,"12.0":0.05212,"13.0":0.06255,"14.0":0.06255,"15.0":0.23976},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0002,"4.2-4.3":0.00145,"4.4":0,"4.4.3-4.4.4":0.02045},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.05726,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":70.57158},S:{"2.5":0.43477},R:{_:"0"},M:{"0":0.02211},Q:{"10.4":0},O:{"0":0.02948},H:{"0":1.10229}}; +module.exports={C:{"54":0.00473,"56":0.03549,"78":0.0071,"90":0.01183,"93":0.02366,"94":0.22004,"95":0.28629,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 79 80 81 82 83 84 85 86 87 88 89 91 92 96 97 3.5 3.6"},D:{"11":0.02129,"33":0.0071,"43":0.01656,"46":0.0071,"57":0.00946,"64":0.00946,"67":0.01183,"71":0.00473,"77":0.00237,"79":0.00946,"81":0.00473,"83":0.0071,"85":0.0071,"86":0.0071,"88":0.0142,"91":0.00237,"92":0.01893,"93":0.02129,"94":0.18691,"95":0.1041,"96":11.57684,"97":0.00237,_:"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 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 65 66 68 69 70 72 73 74 75 76 78 80 84 87 89 90 98 99"},F:{"76":0.00237,"77":0.00473,"79":0.01183,"81":0.18455,"82":1.51897,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"15":0.26736,_:"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","14.1":0.00473,"15.1":0.00237,"15.2":0.00946},B:{"13":0.00237,"14":0.00237,"15":0.01183,"18":0.04732,"83":0.00237,"85":0.00237,"91":0.00237,"92":0.00473,"94":0.00237,"95":0.04022,"96":1.4267,_:"12 16 17 79 80 81 84 86 87 88 89 90 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00056,"6.0-6.1":0.01291,"7.0-7.1":0.11843,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00393,"10.0-10.2":0.86828,"10.3":0.07802,"11.0-11.2":0.01796,"11.3-11.4":0.00337,"12.0-12.1":0.2941,"12.2-12.5":0.32778,"13.0-13.1":0.03929,"13.2":0.00056,"13.3":0.00842,"13.4-13.7":1.64002,"14.0-14.4":0.27839,"14.5-14.8":0.38952,"15.0-15.1":1.47669,"15.2":0.05276},P:{"4":0.41426,"5.0-5.4":0.14058,"6.2-6.4":0.0101,"7.2-7.4":0.34353,"8.2":0.11046,"9.2":0.04042,"10.1":0.01015,"11.1-11.2":0.11114,"12.0":0.04042,"13.0":0.23239,"14.0":0.06062,"15.0":0.12125},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0076},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.05442,"11":0.43534,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.01527},H:{"0":1.09133},L:{"0":73.91439},S:{"2.5":0.83974},R:{_:"0"},M:{"0":0},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js index 9323fe58725daf..ccf08c86b3bf87 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:{"52":0.00801,"78":0.01201,"89":0.004,"91":0.01601,"92":0.04403,"93":0.18814,"94":1.0608,"95":0.01201,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 96 3.5 3.6"},D:{"11":0.01601,"33":0.00801,"38":0.00801,"49":0.01201,"60":0.004,"63":0.01201,"65":0.03603,"68":0.02802,"70":0.00801,"75":0.02802,"76":0.01601,"77":0.10008,"78":0.01201,"79":0.2602,"80":0.04003,"81":0.05204,"83":0.00801,"84":0.02802,"85":0.01201,"86":0.05204,"87":0.08006,"88":0.04804,"89":0.02802,"90":0.08006,"91":0.07205,"92":0.35226,"93":0.20816,"94":1.58919,"95":13.15386,"96":7.26545,"97":0.01201,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 64 66 67 69 71 72 73 74 98 99"},F:{"28":0.01201,"79":0.00801,"80":0.69252,"81":0.24418,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00801,"13":0.00801,"15":0.01201,"16":0.04003,"17":0.01201,"18":0.04403,"80":0.004,"81":0.00801,"84":0.01201,"88":0.01201,"89":0.02002,"91":0.06005,"92":0.04804,"93":0.03603,"94":0.12009,"95":5.70428,"96":2.02152,_:"14 79 83 85 86 87 90"},E:{"4":0,"12":0.00801,"13":0.004,"14":0.07606,"15":0.2682,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.004,"10.1":0.01601,"11.1":0.01201,"12.1":0.00801,"13.1":0.70853,"14.1":0.32424,"15.1":0.18014},G:{"8":0,"3.2":0.0018,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03066,"6.0-6.1":0,"7.0-7.1":0.06493,"8.1-8.4":0.0018,"9.0-9.2":0.02796,"9.3":0.07756,"10.0-10.2":0,"10.3":0.03517,"11.0-11.2":0.06042,"11.3-11.4":0.01082,"12.0-12.1":0.00812,"12.2-12.5":0.5357,"13.0-13.1":0.00451,"13.2":0.00361,"13.3":0.07035,"13.4-13.7":0.47167,"14.0-14.4":0.57539,"14.5-14.8":3.26744,"15.0-15.1":3.76707},P:{"4":0.25632,"5.0-5.4":0.08102,"6.2-6.4":0.13166,"7.2-7.4":0.37381,"8.2":0.12154,"9.2":0.03204,"10.1":0.13884,"11.1-11.2":0.30972,"12.0":0.02136,"13.0":0.13884,"14.0":0.73693,"15.0":3.58854},I:{"0":0,"3":0,"4":0.01951,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00115,"4.2-4.3":0.00459,"4.4":0,"4.4.3-4.4.4":0.10671},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.30823,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":47.39622},S:{"2.5":0},R:{_:"0"},M:{"0":0.08397},Q:{"10.4":0.04798},O:{"0":0.83372},H:{"0":0.24985}}; +module.exports={C:{"38":0.00823,"52":0.01235,"78":0.00823,"83":0.00823,"84":0.01646,"87":0.00823,"91":0.02058,"94":0.3334,"95":0.79439,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 72 73 74 75 76 77 79 80 81 82 85 86 88 89 90 92 93 96 97 3.5 3.6"},D:{"11":0.01235,"31":0.00823,"38":0.00823,"43":0.00823,"47":0.03293,"49":0.01646,"58":0.00823,"60":0.00823,"63":0.00412,"65":0.01235,"68":0.03704,"70":0.00823,"72":0.00412,"73":0.00412,"74":0.01235,"75":0.01235,"76":0.02881,"77":0.09467,"78":0.00412,"79":0.12348,"80":0.01235,"81":0.05762,"83":0.00412,"84":0.04116,"85":0.00823,"86":0.0247,"87":0.0782,"88":0.0247,"89":0.01646,"90":0.06997,"91":0.06174,"92":0.2058,"93":0.23873,"94":0.76969,"95":0.42395,"96":18.99534,"97":0.0247,"98":0.03293,"99":0.0247,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 51 52 53 54 55 56 57 59 61 62 64 66 67 69 71"},F:{"28":0.06586,"80":0.00412,"81":0.37867,"82":0.37867,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01235,"14":0.1029,"15":0.12348,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00823,"10.1":0.02881,"11.1":0.00823,"12.1":0.02058,"13.1":0.53096,"14.1":0.3334,"15.1":0.44864,"15.2":0.05351},B:{"14":0.00412,"15":0.00823,"16":0.01235,"17":0.01235,"18":0.04939,"81":0.01235,"84":0.00823,"85":0.00412,"89":0.00412,"90":0.00823,"91":0.00412,"92":0.04528,"93":0.01235,"94":0.0247,"95":0.23461,"96":8.40076,_:"12 13 79 80 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02025,"6.0-6.1":0,"7.0-7.1":0.19978,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19057,"10.0-10.2":0.00092,"10.3":0.09759,"11.0-11.2":0.10403,"11.3-11.4":0.01289,"12.0-12.1":0.00829,"12.2-12.5":0.38758,"13.0-13.1":0.01105,"13.2":0.00737,"13.3":0.02854,"13.4-13.7":0.26606,"14.0-14.4":0.41336,"14.5-14.8":2.58604,"15.0-15.1":4.31774,"15.2":0.55053},P:{"4":0.22801,"5.0-5.4":0.14058,"6.2-6.4":0.0101,"7.2-7.4":0.31486,"8.2":0.11046,"9.2":0.03257,"10.1":0.17372,"11.1-11.2":0.24972,"12.0":0.01086,"13.0":0.16286,"14.0":0.30401,"15.0":0.47772},I:{"0":0,"3":0,"4":0.03202,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0083,"4.4":0,"4.4.3-4.4.4":0.11266},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13994,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":1.05324},H:{"0":0.24511},L:{"0":48.9993},S:{"2.5":0},R:{_:"0"},M:{"0":0.07061},Q:{"10.4":0.04119}}; 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 9f780ca21d163d..3db18fb8b7c62a 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.02523,"52":0.03532,"68":0.00505,"72":0.01009,"78":0.0656,"84":0.00505,"87":0.00505,"88":0.01009,"89":0.02523,"90":0.03532,"91":0.03028,"92":0.02523,"93":0.29771,"94":1.3826,_:"2 3 4 5 6 7 8 9 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 73 74 75 76 77 79 80 81 82 83 85 86 95 96 3.5 3.6"},D:{"19":0.01009,"22":0.02523,"26":0.01514,"30":0.01009,"34":0.08074,"38":0.16652,"42":0.00505,"48":0.00505,"49":0.11606,"53":0.0656,"54":0.00505,"55":0.02523,"56":0.01514,"57":0.01009,"58":0.00505,"61":0.03028,"62":0.02018,"63":0.02018,"64":0.01009,"65":0.02018,"66":0.00505,"67":0.02523,"68":0.02018,"69":0.03532,"70":0.01514,"71":0.02018,"72":0.02018,"73":0.02018,"74":0.03028,"75":0.04541,"76":0.02523,"77":0.02018,"78":0.07064,"79":0.59543,"80":0.0656,"81":0.05046,"83":0.08074,"84":0.04037,"85":0.03532,"86":0.09587,"87":0.17661,"88":0.08578,"89":0.09587,"90":0.11101,"91":0.21698,"92":0.83764,"93":0.48946,"94":1.8317,"95":17.01511,"96":9.23923,"97":0.02018,_:"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 45 46 47 50 51 52 59 60 98 99"},F:{"28":0.01514,"36":0.04037,"40":0.01009,"46":0.07569,"78":0.00505,"79":0.01009,"80":0.14633,"81":0.04541,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01009,"16":0.00505,"17":0.01009,"18":0.03028,"86":0.00505,"89":0.01009,"90":0.00505,"91":0.01009,"92":0.02018,"93":0.02523,"94":0.07569,"95":3.08815,"96":1.1959,_:"13 14 15 79 80 81 83 84 85 87 88"},E:{"4":0,"8":0.02018,"11":0.01009,"12":0.02018,"13":0.15643,"14":0.7569,"15":0.99911,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00505,"10.1":0.03028,"11.1":0.05046,"12.1":0.09083,"13.1":0.51469,"14.1":3.93083,"15.1":1.16563},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00394,"5.0-5.1":0.02558,"6.0-6.1":0.01574,"7.0-7.1":0.02755,"8.1-8.4":0.03148,"9.0-9.2":0.02361,"9.3":0.23613,"10.0-10.2":0.02755,"10.3":0.16726,"11.0-11.2":0.06493,"11.3-11.4":0.07084,"12.0-12.1":0.07281,"12.2-12.5":0.8717,"13.0-13.1":0.07281,"13.2":0.02164,"13.3":0.14955,"13.4-13.7":0.48406,"14.0-14.4":1.52302,"14.5-14.8":9.48837,"15.0-15.1":6.29475},P:{"4":0.915,"5.0-5.4":0.12272,"6.2-6.4":0.03068,"7.2-7.4":0.17512,"8.2":0.05114,"9.2":0.05446,"10.1":0.0103,"11.1-11.2":0.07625,"12.0":0.05446,"13.0":0.16339,"14.0":0.17429,"15.0":4.06306},I:{"0":0,"3":0,"4":0.00044,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00219,"4.2-4.3":0.00483,"4.4":0,"4.4.3-4.4.4":0.02721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.06975,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":24.72425},S:{"2.5":0},R:{_:"0"},M:{"0":0.28727},Q:{"10.4":0.1585},O:{"0":0.62408},H:{"0":0.09847}}; +module.exports={C:{"34":0.02528,"52":0.02528,"56":0.00506,"68":0.00506,"72":0.01011,"78":0.07077,"83":0.00506,"84":0.00506,"88":0.01011,"89":0.03539,"90":0.05055,"91":0.03033,"92":0.01517,"93":0.02022,"94":0.52572,"95":1.05144,_:"2 3 4 5 6 7 8 9 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 66 67 69 70 71 73 74 75 76 77 79 80 81 82 85 86 87 96 97 3.5 3.6"},D:{"19":0.01011,"22":0.02528,"26":0.01517,"30":0.01011,"34":0.07583,"38":0.17693,"42":0.00506,"48":0.01011,"49":0.11121,"50":0.00506,"53":0.06066,"54":0.00506,"55":0.03033,"56":0.02528,"57":0.01011,"61":0.03033,"62":0.02022,"63":0.02528,"64":0.01011,"65":0.02022,"66":0.00506,"67":0.02528,"68":0.02022,"69":0.03539,"70":0.01517,"71":0.01517,"72":0.02528,"73":0.02022,"74":0.03033,"75":0.06066,"76":0.03033,"77":0.01517,"78":0.06066,"79":0.61671,"80":0.06572,"81":0.05561,"83":0.07583,"84":0.04044,"85":0.03539,"86":0.09605,"87":0.18198,"88":0.07077,"89":0.09099,"90":0.09605,"91":0.14154,"92":0.71276,"93":0.31341,"94":0.89474,"95":1.0565,"96":26.26578,"97":0.03033,"98":0.01517,_:"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 45 46 47 51 52 58 59 60 99"},F:{"28":0.02022,"36":0.0455,"40":0.01011,"46":0.08088,"79":0.00506,"81":0.07077,"82":0.12132,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.02022,"11":0.00506,"12":0.02022,"13":0.1466,"14":0.68243,"15":0.57627,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01011,"10.1":0.03033,"11.1":0.05561,"12.1":0.08088,"13.1":0.48528,"14.1":2.92179,"15.1":2.51739,"15.2":0.24264},B:{"12":0.01011,"14":0.00506,"16":0.00506,"17":0.00506,"18":0.03033,"86":0.01011,"89":0.00506,"91":0.00506,"92":0.01011,"93":0.01011,"94":0.02022,"95":0.08088,"96":4.40796,_:"13 15 79 80 81 83 84 85 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.004,"5.0-5.1":0.02598,"6.0-6.1":0.01798,"7.0-7.1":0.02797,"8.1-8.4":0.02598,"9.0-9.2":0.02198,"9.3":0.22779,"10.0-10.2":0.01798,"10.3":0.16385,"11.0-11.2":0.05595,"11.3-11.4":0.06194,"12.0-12.1":0.06994,"12.2-12.5":0.84524,"13.0-13.1":0.06794,"13.2":0.01998,"13.3":0.13388,"13.4-13.7":0.43161,"14.0-14.4":1.37476,"14.5-14.8":5.8667,"15.0-15.1":9.75119,"15.2":0.75931},P:{"4":0.97483,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.16636,"8.2":0.04108,"9.2":0.03286,"10.1":0.02054,"11.1-11.2":0.07667,"12.0":0.04381,"13.0":0.17525,"14.0":0.14239,"15.0":0.5148},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00225,"4.2-4.3":0.0054,"4.4":0,"4.4.3-4.4.4":0.02608},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02509,"11":1.01624,_:"6 7 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.60836},H:{"0":0.09365},L:{"0":24.51164},S:{"2.5":0},R:{_:"0"},M:{"0":0.30665},Q:{"10.4":0.15333}}; 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 8e3f3f21668e5b..b3df7f499de7c4 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:{"52":0.05104,"63":0.00425,"72":0.02977,"73":0.06805,"78":0.02127,"82":0.01701,"85":0.00851,"86":0.00851,"87":0.00425,"88":0.00425,"89":0.00425,"91":0.02977,"92":0.01276,"93":0.29346,"94":1.11854,"95":0.00851,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 83 84 90 96 3.5 3.6"},D:{"38":0.01276,"47":0.00851,"49":0.05104,"53":0.03828,"63":0.00851,"65":0.02127,"66":0.00851,"68":0.08081,"69":0.00425,"70":0.00851,"71":0.00851,"72":0.00425,"73":0.01701,"74":0.01276,"75":0.03828,"76":0.05529,"77":0.01701,"78":0.01701,"79":0.15736,"80":0.08931,"81":0.02127,"83":0.01701,"84":0.11058,"85":0.02977,"86":0.04253,"87":0.21265,"88":0.10633,"89":0.11058,"90":0.0638,"91":0.14886,"92":0.34024,"93":0.25093,"94":1.33119,"95":16.38256,"96":9.55224,"97":0.00425,_:"4 5 6 7 8 9 10 11 12 13 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 56 57 58 59 60 61 62 64 67 98 99"},F:{"77":0.00425,"78":0.00425,"79":0.01276,"80":1.21636,"81":0.55714,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00851,"14":0.00851,"15":0.02552,"16":0.00851,"17":0.00851,"18":0.08506,"84":0.00851,"89":0.01701,"90":0.00425,"91":0.01276,"92":0.03828,"93":0.03402,"94":0.08081,"95":2.66238,"96":0.96118,_:"12 79 80 81 83 85 86 87 88"},E:{"4":0,"13":0.03402,"14":0.17437,"15":0.26369,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0638,"10.1":0.00425,"11.1":0.02127,"12.1":0.02127,"13.1":0.10633,"14.1":0.55289,"15.1":0.45932},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00348,"6.0-6.1":0.0061,"7.0-7.1":0.04529,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08796,"10.0-10.2":0.00261,"10.3":0.06009,"11.0-11.2":0.0061,"11.3-11.4":0.01393,"12.0-12.1":0.01306,"12.2-12.5":0.49292,"13.0-13.1":0.00871,"13.2":0.00348,"13.3":0.04441,"13.4-13.7":0.12105,"14.0-14.4":0.7089,"14.5-14.8":3.26231,"15.0-15.1":3.82055},P:{"4":0.24723,"5.0-5.4":0.12272,"6.2-6.4":0.03068,"7.2-7.4":0.17512,"8.2":0.05114,"9.2":0.0412,"10.1":0.0103,"11.1-11.2":0.23693,"12.0":0.0412,"13.0":0.16482,"14.0":0.25753,"15.0":1.95723},I:{"0":0,"3":0,"4":0.00072,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00144,"4.2-4.3":0.00503,"4.4":0,"4.4.3-4.4.4":0.06178},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17437,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":48.28383},S:{"2.5":0},R:{_:"0"},M:{"0":0.15517},Q:{"10.4":0.01724},O:{"0":0.12069},H:{"0":0.21219}}; +module.exports={C:{"52":0.0739,"72":0.00869,"73":0.06521,"78":0.01304,"85":0.00869,"91":0.02608,"92":0.00869,"93":0.02608,"94":0.48686,"95":0.79985,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 86 87 88 89 90 96 97 3.5 3.6"},D:{"38":0.01739,"41":0.00435,"47":0.01304,"49":0.04782,"53":0.04782,"58":0.00435,"63":0.00869,"65":0.01304,"66":0.00435,"67":0.00869,"68":0.09563,"69":0.00869,"70":0.01304,"71":0.00435,"72":0.00869,"73":0.00869,"74":0.00869,"75":0.02608,"76":0.05216,"77":0.00869,"78":0.01304,"79":0.14345,"80":0.09129,"81":0.03043,"83":0.01739,"84":0.11302,"85":0.03478,"86":0.03043,"87":0.13476,"88":0.06955,"89":0.09563,"90":0.05651,"91":0.08694,"92":0.2217,"93":0.1478,"94":0.5086,"95":0.39992,"96":24.2041,"97":0.01739,"98":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 34 35 36 37 39 40 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 64 99"},F:{"65":0.00869,"80":0.01304,"81":1.15196,"82":0.76942,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00435,"13":0.03478,"14":0.13041,"15":0.12606,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06521,"11.1":0.00869,"12.1":0.03043,"13.1":0.12172,"14.1":0.67379,"15.1":0.55207,"15.2":0.06955},B:{"13":0.00869,"15":0.01304,"16":0.00869,"17":0.01304,"18":0.06955,"84":0.00869,"89":0.00869,"90":0.00435,"91":0.00435,"92":0.01739,"94":0.02174,"95":0.06521,"96":3.12115,_:"12 14 79 80 81 83 85 86 87 88 93"},G:{"8":0,"3.2":0.00377,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00283,"6.0-6.1":0.00566,"7.0-7.1":0.0764,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07546,"10.0-10.2":0.00755,"10.3":0.06225,"11.0-11.2":0.00755,"11.3-11.4":0.01321,"12.0-12.1":0.01698,"12.2-12.5":0.46218,"13.0-13.1":0.00849,"13.2":0.00472,"13.3":0.04622,"13.4-13.7":0.12545,"14.0-14.4":0.60838,"14.5-14.8":2.26751,"15.0-15.1":5.14152,"15.2":0.49142},P:{"4":0.22874,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.16636,"8.2":0.04108,"9.2":0.03119,"10.1":0.02054,"11.1-11.2":0.18715,"12.0":0.04159,"13.0":0.14556,"14.0":0.18715,"15.0":0.35351},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.00571,"4.4":0,"4.4.3-4.4.4":0.0645},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15649,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.13},H:{"0":0.22474},L:{"0":50.84464},S:{"2.5":0},R:{_:"0"},M:{"0":0.13},Q:{"10.4":0.0113}}; 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 a7bc304c82ddaf..4057362a578cf4 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:{"47":0.00982,"48":0.00982,"52":0.1816,"63":0.01963,"68":0.00982,"69":0.02945,"71":0.00491,"72":0.00982,"75":0.00491,"77":0.00982,"78":0.08834,"84":0.01472,"87":0.00982,"88":0.01963,"89":0.03926,"90":0.01472,"91":0.05399,"92":0.10307,"93":0.82454,"94":4.65769,"95":0.02454,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 64 65 66 67 70 73 74 76 79 80 81 82 83 85 86 96 3.5 3.6"},D:{"38":0.01472,"49":0.20123,"53":0.00982,"59":0.00491,"63":0.00982,"65":0.00491,"66":0.00982,"68":0.00982,"69":0.01472,"70":0.00982,"71":0.00982,"74":0.01472,"75":0.10307,"76":0.00982,"77":0.21104,"78":0.01472,"79":0.07853,"80":0.01963,"81":0.31411,"83":0.01472,"84":0.00982,"85":0.00982,"86":0.08344,"87":0.27485,"88":0.05399,"89":0.0638,"90":0.03926,"91":0.07362,"92":0.11779,"93":0.14724,"94":0.89326,"95":19.3866,"96":11.70067,"97":0.00982,_:"4 5 6 7 8 9 10 11 12 13 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 60 61 62 64 67 72 73 98 99"},F:{"36":0.00982,"46":0.00491,"79":0.0589,"80":1.36442,"81":0.66258,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00491,"17":0.00982,"18":0.01963,"88":0.02454,"89":0.01472,"91":0.00982,"92":0.01472,"93":0.01472,"94":0.05399,"95":2.12516,"96":0.87853,_:"12 13 14 15 79 80 81 83 84 85 86 87 90"},E:{"4":0,"13":0.1816,"14":0.15706,"15":0.1816,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00491,"11.1":0.00982,"12.1":0.02945,"13.1":0.14724,"14.1":0.58405,"15.1":0.28466},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00442,"6.0-6.1":0,"7.0-7.1":0.00442,"8.1-8.4":0.00295,"9.0-9.2":0.00074,"9.3":0.07816,"10.0-10.2":0.00295,"10.3":0.06857,"11.0-11.2":0.01327,"11.3-11.4":0.01548,"12.0-12.1":0.01475,"12.2-12.5":0.25806,"13.0-13.1":0.01622,"13.2":0.00664,"13.3":0.04645,"13.4-13.7":0.14894,"14.0-14.4":0.55152,"14.5-14.8":3.53767,"15.0-15.1":2.60201},P:{"4":0.13453,"5.0-5.4":0.01036,"6.2-6.4":0.01036,"7.2-7.4":0.16572,"8.2":0.02044,"9.2":0.01035,"10.1":0.03105,"11.1-11.2":0.10349,"12.0":0.03105,"13.0":0.13453,"14.0":0.23802,"15.0":3.20809},I:{"0":0,"3":0,"4":0.00072,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00143,"4.2-4.3":0.0043,"4.4":0,"4.4.3-4.4.4":0.01901},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34847,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":39.94866},S:{"2.5":0},R:{_:"0"},M:{"0":0.2546},Q:{"10.4":0},O:{"0":0.08147},H:{"0":0.41459}}; +module.exports={C:{"48":0.00976,"50":0.03417,"52":0.1904,"56":0.00488,"63":0.01953,"66":0.00488,"68":0.01465,"72":0.00488,"77":0.00488,"78":0.07323,"84":0.01953,"87":0.00976,"88":0.03906,"89":0.0537,"90":0.01465,"91":0.0537,"92":0.0537,"93":0.07811,"94":1.77217,"95":3.70056,"96":0.01465,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 60 61 62 64 65 67 69 70 71 73 74 75 76 79 80 81 82 83 85 86 97 3.5 3.6"},D:{"38":0.00976,"49":0.14158,"53":0.00488,"60":0.00488,"63":0.03417,"66":0.00976,"67":0.00488,"68":0.00488,"69":0.01465,"70":0.00488,"71":0.00976,"74":0.01953,"75":0.11717,"76":0.00976,"77":0.17087,"78":0.01953,"79":0.05858,"80":0.02441,"81":0.25386,"83":0.00976,"84":0.02441,"85":0.03417,"86":0.07323,"87":0.16111,"88":0.04394,"89":0.05858,"90":0.02929,"91":0.06347,"92":0.07811,"93":0.14646,"94":0.27339,"95":0.53702,"96":30.36604,"97":0.00976,"98":0.00488,_:"4 5 6 7 8 9 10 11 12 13 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 62 64 65 72 73 99"},F:{"46":0.00976,"69":0.00488,"79":0.01953,"80":0.04394,"81":0.85923,"82":1.28397,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.07811,"14":0.1074,"15":0.07811,_:"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.00976,"12.1":0.02441,"13.1":0.15622,"14.1":0.44914,"15.1":0.44914,"15.2":0.10252},B:{"16":0.00976,"17":0.00976,"18":0.01953,"87":0.00976,"88":0.02441,"89":0.00976,"91":0.00976,"92":0.00976,"93":0.00488,"94":0.01465,"95":0.04882,"96":3.02684,_:"12 13 14 15 79 80 81 83 84 85 86 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00222,"6.0-6.1":0,"7.0-7.1":0.00443,"8.1-8.4":0.00222,"9.0-9.2":0.00148,"9.3":0.06133,"10.0-10.2":0.00369,"10.3":0.04729,"11.0-11.2":0.01478,"11.3-11.4":0.01995,"12.0-12.1":0.01404,"12.2-12.5":0.25642,"13.0-13.1":0.01626,"13.2":0.00591,"13.3":0.03769,"13.4-13.7":0.17366,"14.0-14.4":0.45742,"14.5-14.8":2.17331,"15.0-15.1":3.73993,"15.2":0.35323},P:{"4":0.103,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.17358,_:"8.2","9.2":0.08168,"10.1":0.0309,"11.1-11.2":0.1339,"12.0":0.0412,"13.0":0.1236,"14.0":0.19569,"15.0":0.45318},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.00614,"4.4":0,"4.4.3-4.4.4":0.02325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.3515,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.08701},H:{"0":0.45547},L:{"0":40.92268},S:{"2.5":0},R:{_:"0"},M:{"0":0.28661},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js index cb77444e04a7d9..9c3d230f392b96 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:{"17":0.00442,"45":0.00589,"52":0.00442,"59":0.00147,"65":0.00147,"78":0.00589,"87":0.00295,"89":0.00737,"90":0.00589,"91":0.02357,"92":0.00295,"93":0.06629,"94":0.48904,"95":0.01915,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 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 88 96 3.5 3.6"},D:{"11":0.02357,"18":0.00147,"33":0.00442,"34":0.00295,"42":0.00589,"43":0.00295,"46":0.00589,"49":0.03093,"50":0.00442,"52":0.00147,"55":0.00295,"56":0.00589,"57":0.00147,"58":0.00442,"59":0.00737,"60":0.0766,"61":0.00147,"63":0.03683,"64":0.00295,"65":0.00589,"66":0.00295,"67":0.00737,"68":0.00295,"69":0.00589,"70":0.01326,"72":0.00147,"73":0.00589,"74":0.01915,"75":0.00884,"76":0.0766,"77":0.11048,"78":0.00147,"79":0.02799,"80":0.02799,"81":0.0162,"83":0.01768,"84":0.13994,"85":0.05892,"86":0.03241,"87":0.09722,"88":0.2018,"89":0.08691,"90":0.03535,"91":0.04714,"92":0.43012,"93":0.14877,"94":0.63781,"95":3.10508,"96":2.38037,_:"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 35 36 37 38 39 40 41 44 45 47 48 51 53 54 62 71 97 98 99"},F:{"53":0.00295,"77":0.00589,"78":0.00295,"79":0.00589,"80":0.34616,"81":0.17381,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02799,"13":0.01178,"14":0.00737,"15":0.00589,"16":0.01768,"17":0.0162,"18":0.03388,"80":0.00295,"84":0.01915,"85":0.00884,"87":0.00295,"89":0.02651,"90":0.00589,"91":0.02062,"92":0.01768,"93":0.01178,"94":0.06776,"95":1.07971,"96":0.45516,_:"79 81 83 86 88"},E:{"4":0,"7":0.00295,"8":0.00295,"13":0.02357,"14":0.03535,"15":0.10016,_:"0 5 6 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01178,"10.1":0.05303,"11.1":0.00442,"12.1":0.01915,"13.1":0.0383,"14.1":0.1856,"15.1":0.15908},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00343,"7.0-7.1":0.0332,"8.1-8.4":0.00229,"9.0-9.2":0.0103,"9.3":0.12136,"10.0-10.2":0.00801,"10.3":0.51406,"11.0-11.2":0.28966,"11.3-11.4":0.26104,"12.0-12.1":0.21066,"12.2-12.5":2.46382,"13.0-13.1":0.22554,"13.2":0.03091,"13.3":0.26562,"13.4-13.7":0.55642,"14.0-14.4":2.02074,"14.5-14.8":3.12557,"15.0-15.1":1.3006},P:{"4":0.41931,"5.0-5.4":0.12272,"6.2-6.4":0.03068,"7.2-7.4":0.36817,"8.2":0.05114,"9.2":0.22499,"10.1":0.02045,"11.1-11.2":0.43976,"12.0":0.1125,"13.0":0.13295,"14.0":0.2659,"15.0":1.00225},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00069,"4.2-4.3":0.00537,"4.4":0,"4.4.3-4.4.4":0.02805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07954,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.03411},N:{"10":0.02658,"11":0.22582},L:{"0":72.06105},S:{"2.5":0},R:{_:"0"},M:{"0":0.07674},Q:{"10.4":0},O:{"0":0.18759},H:{"0":0.94452}}; +module.exports={C:{"17":0.00477,"37":0.00159,"47":0.00318,"52":0.00953,"77":0.01112,"78":0.07309,"85":0.00795,"88":0.00159,"89":0.00318,"90":0.00477,"91":0.0143,"94":0.2161,"95":0.40043,"96":0.02225,_:"2 3 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 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 86 87 92 93 97 3.5 3.6"},D:{"18":0.00318,"28":0.00159,"38":0.03496,"42":0.00477,"43":0.00636,"46":0.00318,"48":0.01112,"49":0.00953,"50":0.00636,"52":0.00159,"53":0.00159,"55":0.00318,"56":0.00953,"58":0.00953,"59":0.01112,"60":0.05403,"63":0.01748,"64":0.00318,"65":0.01112,"66":0.00159,"67":0.00477,"68":0.00636,"69":0.00795,"70":0.01112,"71":0.00318,"72":0.01271,"73":0.00477,"74":0.03496,"75":0.00477,"76":0.07151,"77":0.01589,"78":0.02066,"79":0.06992,"80":0.03655,"81":0.03814,"83":0.01112,"84":0.06992,"85":0.03496,"86":0.03973,"87":0.05085,"88":0.15254,"89":0.03655,"90":0.03496,"91":0.05085,"92":0.09375,"93":0.11123,"94":0.40837,"95":0.13507,"96":5.92856,"97":0.00477,"98":0.00159,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 41 44 45 47 51 54 57 61 62 99"},F:{"71":0.00636,"77":0.00477,"79":0.01271,"80":0.00795,"81":0.17479,"82":0.2749,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00159,"10":0.00159,"13":0.02066,"14":0.04608,"15":0.03337,_:"0 5 6 7 9 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00795,"10.1":0.08263,"11.1":0.00636,"12.1":0.01271,"13.1":0.0429,"14.1":0.15254,"15.1":0.4481,"15.2":0.0286},B:{"12":0.0572,"13":0.0143,"14":0.00795,"15":0.01271,"16":0.01112,"17":0.01112,"18":0.03814,"80":0.00477,"81":0.00159,"84":0.01271,"85":0.01907,"87":0.00318,"89":0.02225,"90":0.00636,"91":0.0143,"92":0.01589,"93":0.01112,"94":0.02066,"95":0.07627,"96":1.67798,_:"79 83 86 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00601,"7.0-7.1":0.02603,"8.1-8.4":0,"9.0-9.2":0.01101,"9.3":0.12212,"10.0-10.2":0.00701,"10.3":0.52952,"11.0-11.2":0.3013,"11.3-11.4":0.33433,"12.0-12.1":0.16917,"12.2-12.5":2.31129,"13.0-13.1":0.11712,"13.2":0.06206,"13.3":0.27828,"13.4-13.7":0.48448,"14.0-14.4":1.43542,"14.5-14.8":2.25723,"15.0-15.1":1.39238,"15.2":0.16316},P:{"4":0.49294,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.27728,"8.2":0.04108,"9.2":0.24647,"10.1":0.02054,"11.1-11.2":0.39025,"12.0":0.1027,"13.0":0.13351,"14.0":0.29782,"15.0":0.41079},I:{"0":0,"3":0,"4":0.00066,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00276,"4.4":0,"4.4.3-4.4.4":0.02063},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07627,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.21866},H:{"0":0.86786},L:{"0":73.47456},S:{"2.5":0},R:{_:"0"},M:{"0":0.0841},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js index 1026206336f29c..6218488a18b781 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:{"50":0.00481,"51":0.00481,"52":0.1443,"57":0.00481,"63":0.00481,"66":0.00481,"68":0.01443,"69":0.00481,"72":0.01443,"74":0.05772,"78":0.05772,"80":0.00481,"81":0.01443,"82":0.00481,"83":0.00481,"84":0.05772,"85":0.00962,"86":0.00962,"87":0.00962,"88":0.04329,"89":0.03367,"90":0.00962,"91":0.10101,"92":0.10101,"93":2.20779,"94":5.3391,"95":0.00962,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 53 54 55 56 58 59 60 61 62 64 65 67 70 71 73 75 76 77 79 96 3.5 3.6"},D:{"24":0.00481,"33":0.00481,"34":0.01443,"37":0.00481,"38":0.03367,"49":0.44733,"53":0.02405,"61":0.03367,"63":0.00481,"68":0.00962,"71":0.00481,"72":0.00962,"73":0.00962,"75":0.00481,"76":0.00962,"77":0.00962,"78":0.01443,"79":0.24531,"80":0.01443,"81":0.01924,"83":0.03367,"84":0.01443,"85":0.01443,"86":0.02405,"87":0.29822,"88":0.03848,"89":0.05291,"90":0.03848,"91":0.05772,"92":0.12025,"93":0.1443,"94":1.1544,"95":16.83981,"96":10.90427,"97":0.01443,_:"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 35 36 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 64 65 66 67 69 70 74 98 99"},F:{"36":0.00962,"46":0.00481,"79":0.03367,"80":1.54882,"81":0.68302,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01443,"18":0.01443,"87":0.00962,"89":0.00962,"92":0.01443,"93":0.00962,"94":0.06253,"95":2.09716,"96":0.88985,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 90 91"},E:{"4":0,"13":0.08177,"14":0.17797,"15":0.29341,_:"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.02405,"12.1":0.03848,"13.1":0.12025,"14.1":0.57239,"15.1":0.46657},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00203,"6.0-6.1":0.00102,"7.0-7.1":0.01221,"8.1-8.4":0.00814,"9.0-9.2":0,"9.3":0.03154,"10.0-10.2":0.00203,"10.3":0.04578,"11.0-11.2":0.02136,"11.3-11.4":0.01729,"12.0-12.1":0.01729,"12.2-12.5":0.31436,"13.0-13.1":0.01323,"13.2":0.0061,"13.3":0.05799,"13.4-13.7":0.23297,"14.0-14.4":0.60938,"14.5-14.8":4.28805,"15.0-15.1":4.48643},P:{"4":0.27883,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.04131,"12.0":0.02065,"13.0":0.10327,"14.0":0.13425,"15.0":2.27199},I:{"0":0,"3":0,"4":0,"2.1":0.00278,"2.2":0,"2.3":0,"4.1":0.00278,"4.2-4.3":0.01111,"4.4":0,"4.4.3-4.4.4":0.08194},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21645,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":39.00443},S:{"2.5":0},R:{_:"0"},M:{"0":0.30621},Q:{"10.4":0},O:{"0":0.04671},H:{"0":0.40291}}; +module.exports={C:{"47":0.00959,"52":0.15341,"63":0.00479,"66":0.00959,"68":0.01438,"69":0.00959,"72":0.01438,"74":0.00959,"78":0.04315,"79":0.00479,"80":0.00479,"81":0.00959,"83":0.00479,"84":0.06712,"85":0.00959,"86":0.00479,"87":0.00959,"88":0.04315,"89":0.02876,"90":0.00959,"91":0.11506,"92":0.02397,"93":0.97318,"94":2.40179,"95":4.48239,"96":0.01438,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 64 65 67 70 71 73 75 76 77 82 97 3.5 3.6"},D:{"26":0.00479,"34":0.00959,"38":0.03356,"48":0.00479,"49":0.39311,"53":0.02397,"58":0.00479,"61":0.01438,"66":0.00959,"68":0.00479,"71":0.00479,"72":0.00479,"73":0.00479,"74":0.00479,"75":0.00479,"76":0.00479,"77":0.00959,"78":0.00959,"79":0.27805,"80":0.01438,"81":0.01918,"83":0.01438,"84":0.01918,"85":0.01438,"86":0.02397,"87":0.29723,"88":0.03356,"89":0.05273,"90":0.04794,"91":0.04794,"92":0.10067,"93":0.15341,"94":0.14861,"95":0.62801,"96":27.42647,"97":0.00959,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 54 55 56 57 59 60 62 63 64 65 67 69 70 98 99"},F:{"36":0.00959,"46":0.00479,"79":0.01438,"80":0.03356,"81":1.00195,"82":1.35191,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.0767,"14":0.13903,"15":0.13903,_:"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.02397,"12.1":0.03835,"13.1":0.10547,"14.1":0.41228,"15.1":0.62322,"15.2":0.14382},B:{"17":0.00959,"18":0.00959,"87":0.00479,"89":0.00479,"91":0.00479,"92":0.01438,"93":0.00479,"94":0.00959,"95":0.0767,"96":2.97228,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00201,"6.0-6.1":0.00101,"7.0-7.1":0.01106,"8.1-8.4":0.01508,"9.0-9.2":0,"9.3":0.03117,"10.0-10.2":0.00201,"10.3":0.04223,"11.0-11.2":0.02111,"11.3-11.4":0.01207,"12.0-12.1":0.01609,"12.2-12.5":0.30465,"13.0-13.1":0.01408,"13.2":0.00804,"13.3":0.05128,"13.4-13.7":0.19104,"14.0-14.4":0.50675,"14.5-14.8":2.58102,"15.0-15.1":5.58031,"15.2":0.65657},P:{"4":0.28911,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.16636,"8.2":0.04108,"9.2":0.03286,"10.1":0.02054,"11.1-11.2":0.0413,"12.0":0.02065,"13.0":0.09293,"14.0":0.12391,"15.0":0.28911},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00268,"4.2-4.3":0.01073,"4.4":0,"4.4.3-4.4.4":0.07509},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01048,"11":0.21484,_:"6 7 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.04685},H:{"0":0.41894},L:{"0":39.58758},S:{"2.5":0},R:{_:"0"},M:{"0":0.31236},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js index 4ff7e673415985..abdc96a8be7883 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.11405,"43":0.00368,"45":0.00368,"47":0.00736,"48":0.00368,"52":0.03311,"56":0.01104,"59":0.00368,"60":0.00368,"61":0.00368,"66":0.00368,"68":0.00368,"69":0.00368,"70":0.00368,"72":0.0184,"78":0.02943,"79":0.00368,"80":0.00736,"81":0.00368,"82":0.00368,"83":0.00736,"84":0.01104,"85":0.00736,"86":0.00736,"87":0.00736,"88":0.02943,"89":0.02943,"90":0.01104,"91":0.03679,"92":0.03679,"93":0.53713,"94":2.60473,"95":0.09198,_:"2 3 4 5 6 7 8 9 10 11 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 46 49 50 51 53 54 55 57 58 62 63 64 65 67 71 73 74 75 76 77 96 3.5 3.6"},D:{"25":0.00736,"49":0.0184,"56":0.00368,"58":0.00736,"61":0.01104,"63":0.02207,"64":0.00368,"65":0.00736,"66":0.00736,"67":0.00736,"69":0.00736,"70":0.01104,"71":0.02575,"72":0.00736,"73":0.01104,"74":0.01472,"75":0.01104,"76":0.01104,"77":0.01104,"78":0.01472,"79":0.07726,"80":0.04047,"81":0.0184,"83":0.03679,"84":0.02943,"85":0.04047,"86":0.04783,"87":0.19499,"88":0.04047,"89":0.0699,"90":0.04783,"91":0.08462,"92":0.5261,"93":0.18395,"94":0.61439,"95":15.83074,"96":7.78476,"97":0.01104,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 62 68 98 99"},F:{"79":0.01104,"80":0.71741,"81":0.16923,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.00736,"14":0.00736,"15":0.00368,"17":0.00368,"18":0.0184,"84":0.00736,"89":0.00736,"91":0.00736,"92":0.01472,"93":0.01472,"94":0.04047,"95":1.54886,"96":0.51506,_:"13 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"12":0.00736,"13":0.02575,"14":0.10669,"15":0.11405,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.11405,"11.1":0.01104,"12.1":0.02575,"13.1":0.10669,"14.1":0.25017,"15.1":0.14348},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0.00103,"6.0-6.1":0.00154,"7.0-7.1":0.00051,"8.1-8.4":0,"9.0-9.2":0.00051,"9.3":0.01028,"10.0-10.2":0.00257,"10.3":0.01748,"11.0-11.2":0.01285,"11.3-11.4":0.01131,"12.0-12.1":0.01851,"12.2-12.5":0.35884,"13.0-13.1":0.02159,"13.2":0.00977,"13.3":0.06838,"13.4-13.7":0.15217,"14.0-14.4":0.63697,"14.5-14.8":1.87802,"15.0-15.1":1.9356},P:{"4":0.21092,"5.0-5.4":0.12272,"6.2-6.4":0.02138,"7.2-7.4":0.06328,"8.2":0.05114,"9.2":0.03164,"10.1":0.02109,"11.1-11.2":0.1371,"12.0":0.06328,"13.0":0.15819,"14.0":0.20038,"15.0":1.0757},I:{"0":0,"3":0.01545,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00843,"4.2-4.3":0.00702,"4.4":0,"4.4.3-4.4.4":0.05759},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00818,"11":0.0654,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":56.08953},S:{"2.5":0},R:{_:"0"},M:{"0":0.09482},Q:{"10.4":0},O:{"0":1.16306},H:{"0":1.07119}}; +module.exports={C:{"36":0.14358,"45":0.0035,"47":0.007,"48":0.0035,"52":0.03152,"56":0.01051,"59":0.007,"60":0.0035,"61":0.0035,"62":0.0035,"66":0.007,"68":0.0035,"69":0.007,"70":0.0035,"72":0.01401,"78":0.01751,"79":0.0035,"80":0.0035,"81":0.0035,"82":0.0035,"83":0.0035,"84":0.02101,"85":0.007,"86":0.007,"87":0.007,"88":0.02451,"89":0.02101,"90":0.01051,"91":0.02802,"92":0.01751,"93":0.02451,"94":0.96655,"95":1.86306,"96":0.05603,_:"2 3 4 5 6 7 8 9 10 11 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 63 64 65 67 71 73 74 75 76 77 97 3.5 3.6"},D:{"25":0.0035,"49":0.01751,"56":0.0035,"58":0.007,"63":0.02101,"64":0.0035,"65":0.01051,"66":0.0035,"67":0.01401,"69":0.007,"70":0.01051,"71":0.02451,"72":0.007,"73":0.007,"74":0.01401,"75":0.01051,"76":0.01051,"77":0.01051,"78":0.01401,"79":0.05603,"80":0.02802,"81":0.01401,"83":0.02451,"84":0.02451,"85":0.03502,"86":0.03852,"87":0.12607,"88":0.03852,"89":0.07004,"90":0.03152,"91":0.06304,"92":0.59184,"93":0.11557,"94":0.1821,"95":0.31518,"96":21.91201,"97":0.007,"98":0.007,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 68 99"},F:{"79":0.007,"80":0.007,"81":0.40623,"82":0.65838,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.007,"13":0.02101,"14":0.08405,"15":0.05953,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.10156,"11.1":0.01051,"12.1":0.02101,"13.1":0.09105,"14.1":0.19611,"15.1":0.18911,"15.2":0.02802},B:{"12":0.007,"14":0.0035,"15":0.0035,"17":0.0035,"18":0.01401,"84":0.0035,"89":0.0035,"91":0.0035,"92":0.01051,"93":0.007,"94":0.01401,"95":0.03852,"96":1.88408,_:"13 16 79 80 81 83 85 86 87 88 90"},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.0005,"8.1-8.4":0,"9.0-9.2":0.0005,"9.3":0.00996,"10.0-10.2":0.00199,"10.3":0.01594,"11.0-11.2":0.01096,"11.3-11.4":0.00996,"12.0-12.1":0.01644,"12.2-12.5":0.31682,"13.0-13.1":0.01744,"13.2":0.00797,"13.3":0.05679,"13.4-13.7":0.13201,"14.0-14.4":0.52803,"14.5-14.8":1.36691,"15.0-15.1":2.23518,"15.2":0.24808},P:{"4":0.20769,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.09346,"8.2":0.04108,"9.2":0.05192,"10.1":0.02077,"11.1-11.2":0.15577,"12.0":0.05192,"13.0":0.14538,"14.0":0.20769,"15.0":0.34268},I:{"0":0,"3":0.00217,"4":0,"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.00987},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00759,"11":0.08346,_:"6 7 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":1.12415},H:{"0":1.09504},L:{"0":58.622},S:{"2.5":0},R:{_:"0"},M:{"0":0.09747},Q:{"10.4":0}}; 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 4ec43e20717c09..a117fbaf33e694 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.00915,"38":0.03661,"43":0.03661,"44":0.16931,"45":0.03661,"52":0.01373,"78":0.06864,"79":0.00458,"84":0.02746,"87":0.01373,"88":0.00915,"89":0.02288,"90":0.05034,"91":0.15558,"92":0.00915,"93":0.2105,"94":1.06621,"95":0.00915,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 85 86 96 3.5 3.6"},D:{"38":0.00915,"47":0.04118,"48":0.45302,"49":0.17846,"53":0.00458,"65":0.01373,"67":0.00915,"68":0.00458,"69":0.00915,"70":0.00915,"71":0.01373,"72":0.00915,"74":0.00915,"75":0.00915,"76":0.04118,"77":0.0183,"78":0.0183,"79":0.05034,"80":0.0183,"81":0.06864,"83":0.02288,"84":0.05034,"85":0.05491,"86":0.07322,"87":0.39811,"88":0.1327,"89":0.04118,"90":0.04118,"91":0.10982,"92":0.18304,"93":0.3249,"94":2.17818,"95":10.83597,"96":6.63978,"97":0.00915,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 73 98 99"},F:{"70":0.00458,"78":0.00458,"79":0.00915,"80":0.31574,"81":0.14643,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 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.01373,"16":0.00915,"17":0.00915,"18":0.04118,"85":0.00915,"88":0.02288,"89":0.00915,"90":0.00458,"91":0.00915,"92":0.0183,"93":0.00915,"94":0.13728,"95":11.67338,"96":0.83283,_:"14 15 79 80 81 83 84 86 87"},E:{"4":0,"8":0.01373,"9":0.06406,"13":0.17389,"14":1.38195,"15":0.58115,_:"0 5 6 7 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00915,"10.1":0.01373,"11.1":0.02746,"12.1":0.08237,"13.1":0.38896,"14.1":2.88288,"15.1":0.84656},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00771,"7.0-7.1":0.02826,"8.1-8.4":0.01028,"9.0-9.2":0.01285,"9.3":0.1413,"10.0-10.2":0.00771,"10.3":0.20296,"11.0-11.2":0.04624,"11.3-11.4":0.04368,"12.0-12.1":0.04368,"12.2-12.5":1.09703,"13.0-13.1":0.03083,"13.2":0.01798,"13.3":0.1413,"13.4-13.7":0.483,"14.0-14.4":1.72391,"14.5-14.8":14.97823,"15.0-15.1":6.65414},P:{"4":0.01052,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.01052,"8.2":0.0906,"9.2":0.05098,"10.1":0.01052,"11.1-11.2":0.11575,"12.0":0.05261,"13.0":0.13679,"14.0":0.21045,"15.0":2.92529},I:{"0":0,"3":0,"4":0.00289,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00289,"4.2-4.3":0.00145,"4.4":0,"4.4.3-4.4.4":0.03617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00512,"9":0.10754,"11":0.31749,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":25.33256},S:{"2.5":0},R:{_:"0"},M:{"0":0.28753},Q:{"10.4":0.01628},O:{"0":0.0434},H:{"0":0.11813}}; +module.exports={C:{"24":0.00374,"38":0.05616,"43":0.04867,"44":0.23962,"45":0.0599,"52":0.01498,"66":0.00374,"70":0.00749,"78":0.10483,"79":0.01498,"80":0.00749,"81":0.00749,"84":0.03744,"87":0.16474,"88":0.00749,"89":0.05616,"90":0.10858,"91":0.19469,"92":0.00749,"93":0.01123,"94":0.5953,"95":0.90605,"96":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 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 71 72 73 74 75 76 77 82 83 85 86 97 3.5 3.6"},D:{"34":0.00374,"38":0.00749,"43":0.00374,"47":0.05616,"48":0.65894,"49":0.20218,"53":0.00749,"56":0.00374,"60":0.00749,"63":0.00749,"65":0.01872,"66":0.00374,"67":0.01123,"68":0.00749,"69":0.01123,"70":0.01123,"71":0.01498,"72":0.01123,"74":0.01498,"75":0.00749,"76":0.04493,"77":0.01498,"78":0.03744,"79":0.07488,"80":0.02621,"81":0.16099,"83":0.05242,"84":0.08611,"85":0.07862,"86":0.11606,"87":0.20966,"88":0.04493,"89":0.05242,"90":0.05616,"91":0.08611,"92":0.13853,"93":0.26208,"94":1.61366,"95":0.58406,"96":17.35718,"97":0.06365,"98":0.00374,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 51 52 54 55 57 58 59 61 62 64 73 99"},F:{"68":0.00374,"70":0.00749,"72":0.00374,"79":0.00749,"80":0.01123,"81":0.30701,"82":0.2808,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 73 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},E:{"4":0,"6":0.00374,"8":0.02246,"9":0.09734,"13":0.11232,"14":0.92851,"15":0.35568,_:"0 5 7 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00749,"10.1":0.01498,"11.1":0.02621,"12.1":0.08611,"13.1":0.32947,"14.1":2.0592,"15.1":1.66234,"15.2":0.14602},B:{"12":0.01872,"13":0.01872,"15":0.00749,"16":0.01498,"17":0.01123,"18":0.02995,"84":0.00749,"85":0.00749,"86":0.00749,"88":0.01123,"89":0.00374,"91":0.00374,"92":0.01498,"93":0.00374,"94":0.02995,"95":0.1535,"96":3.05136,_:"14 79 80 81 83 87 90"},G:{"8":0.00585,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01169,"7.0-7.1":0.04678,"8.1-8.4":0.01754,"9.0-9.2":0.01462,"9.3":0.19588,"10.0-10.2":0.01169,"10.3":0.26897,"11.0-11.2":0.04678,"11.3-11.4":0.04385,"12.0-12.1":0.04385,"12.2-12.5":1.30979,"13.0-13.1":0.03801,"13.2":0.02339,"13.3":0.15495,"13.4-13.7":0.49702,"14.0-14.4":1.74541,"14.5-14.8":11.09229,"15.0-15.1":12.79385,"15.2":0.85955},P:{"4":0.0416,"5.0-5.4":0.08216,"6.2-6.4":0.02123,"7.2-7.4":0.0312,"8.2":0.04108,"9.2":0.0208,"10.1":0.01053,"11.1-11.2":0.12481,"12.0":0.052,"13.0":0.15601,"14.0":0.21841,"15.0":0.50963},I:{"0":0,"3":0,"4":0.00363,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00272,"4.2-4.3":0.00363,"4.4":0,"4.4.3-4.4.4":0.04631},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.16416,"11":0.34128,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.00626},O:{"0":0.0563},H:{"0":0.1303},L:{"0":29.89571},S:{"2.5":0},R:{_:"0"},M:{"0":0.4129},Q:{"10.4":0.02502}}; 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 14ad5939f683ba..3da34a53c9462e 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:{"25":0.00862,"26":0.02587,"45":0.00431,"52":0.02587,"66":0.00431,"72":0.00431,"78":0.03018,"79":0.11642,"80":0.00862,"84":0.02156,"88":0.02156,"89":0.01294,"90":0.00431,"91":0.01725,"92":0.01294,"93":0.21991,"94":1.23323,"95":0.00862,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 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 67 68 69 70 71 73 74 75 76 77 81 82 83 85 86 87 96 3.5 3.6"},D:{"31":0.0345,"32":0.00862,"38":0.02587,"49":0.07762,"53":0.00862,"56":0.00862,"58":0.00431,"61":0.04743,"63":0.00431,"65":0.00862,"67":0.00862,"68":0.01294,"69":0.00862,"70":0.01294,"71":0.01725,"72":0.01294,"73":0.02587,"74":0.02587,"75":0.01725,"76":0.01725,"77":0.00862,"78":0.01294,"79":0.12074,"80":0.34065,"81":0.03018,"83":0.01725,"84":0.01725,"85":0.05174,"86":0.03881,"87":0.14661,"88":0.0345,"89":0.11211,"90":0.05174,"91":0.09486,"92":0.17248,"93":0.17248,"94":1.30654,"95":19.47299,"96":11.53029,"97":0.01294,_:"4 5 6 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 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 62 64 66 98 99"},F:{"28":0.00431,"69":0.00431,"79":0.01294,"80":0.539,"81":0.22422,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00431,"18":0.0345,"84":0.00862,"85":0.00862,"86":0.01725,"88":0.00431,"89":0.00862,"91":0.03018,"92":0.03018,"93":0.02587,"94":0.09486,"95":1.78948,"96":0.6813,_:"12 13 14 15 16 79 80 81 83 87 90"},E:{"4":0,"8":0.14661,"13":0.02156,"14":0.15954,"15":0.19835,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 7.1 9.1 10.1","6.1":0.00862,"11.1":0.01294,"12.1":0.02156,"13.1":0.09918,"14.1":0.69423,"15.1":0.38808},G:{"8":0.0026,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0065,"6.0-6.1":0.0026,"7.0-7.1":0.02472,"8.1-8.4":0.02081,"9.0-9.2":0.0026,"9.3":0.07675,"10.0-10.2":0.01041,"10.3":0.08716,"11.0-11.2":0.04163,"11.3-11.4":0.03642,"12.0-12.1":0.04033,"12.2-12.5":0.39676,"13.0-13.1":0.03122,"13.2":0.01821,"13.3":0.08586,"13.4-13.7":0.23936,"14.0-14.4":0.87417,"14.5-14.8":6.81513,"15.0-15.1":4.19523},P:{"4":0.07215,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.01031,"8.2":0.01031,"9.2":0.07215,"10.1":0.02061,"11.1-11.2":0.29891,"12.0":0.08246,"13.0":0.24737,"14.0":0.39167,"15.0":4.71038},I:{"0":0,"3":0,"4":0.00124,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00124,"4.2-4.3":0.00248,"4.4":0,"4.4.3-4.4.4":0.01779},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00439,"9":0.00879,"10":0.00439,"11":0.43949,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":37.74422},S:{"2.5":0},R:{_:"0"},M:{"0":0.18202},Q:{"10.4":0.01138},O:{"0":0.06826},H:{"0":0.22079}}; +module.exports={C:{"25":0.00855,"26":0.02138,"45":0.00428,"52":0.02566,"55":0.00428,"66":0.00428,"78":0.03421,"79":0.11118,"80":0.02138,"83":0.00428,"84":0.02138,"88":0.0171,"89":0.00428,"91":0.02138,"93":0.00855,"94":0.46181,"95":0.94072,"96":0.00428,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 82 85 86 87 90 92 97 3.5 3.6"},D:{"31":0.03421,"32":0.00855,"38":0.02566,"49":0.05986,"53":0.01283,"55":0.00428,"56":0.00428,"61":0.0171,"65":0.00855,"67":0.00855,"68":0.01283,"69":0.01283,"70":0.00855,"71":0.02566,"72":0.00855,"73":0.02138,"74":0.0171,"75":0.0171,"76":0.01283,"77":0.00855,"78":0.0171,"79":0.11973,"80":0.31642,"81":0.03421,"83":0.0171,"84":0.0171,"85":0.02993,"86":0.03848,"87":0.17104,"88":0.04276,"89":0.11118,"90":0.03848,"91":0.05986,"92":0.12828,"93":0.14966,"94":0.27366,"95":0.68844,"96":30.84706,"97":0.02993,_:"4 5 6 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 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 57 58 59 60 62 63 64 66 98 99"},F:{"28":0.00855,"79":0.00428,"80":0.01283,"81":0.35491,"82":0.37629,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.14538,"13":0.0171,"14":0.11973,"15":0.1069,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 7.1 9.1 10.1","6.1":0.00855,"11.1":0.01283,"12.1":0.0171,"13.1":0.0898,"14.1":0.49174,"15.1":0.71409,"15.2":0.09835},B:{"17":0.00855,"18":0.02566,"85":0.00428,"86":0.00855,"89":0.00855,"90":0.00428,"91":0.01283,"92":0.01283,"93":0.00855,"94":0.02566,"95":0.09407,"96":2.4416,_:"12 13 14 15 16 79 80 81 83 84 87 88"},G:{"8":0.00133,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00667,"6.0-6.1":0.00267,"7.0-7.1":0.02401,"8.1-8.4":0.01734,"9.0-9.2":0,"9.3":0.06536,"10.0-10.2":0.008,"10.3":0.08137,"11.0-11.2":0.04402,"11.3-11.4":0.03468,"12.0-12.1":0.03335,"12.2-12.5":0.37484,"13.0-13.1":0.02535,"13.2":0.01201,"13.3":0.0787,"13.4-13.7":0.18809,"14.0-14.4":0.91776,"14.5-14.8":4.47943,"15.0-15.1":6.44836,"15.2":0.49356},P:{"4":0.0821,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.01026,"8.2":0.01026,"9.2":0.09236,"10.1":0.01026,"11.1-11.2":0.27709,"12.0":0.07184,"13.0":0.20525,"14.0":0.28735,"15.0":0.70811},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.00286,"4.4":0,"4.4.3-4.4.4":0.01889},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00873,"10":0.00436,"11":0.41023,_:"6 7 8 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.06296},H:{"0":0.2276},L:{"0":38.13563},S:{"2.5":0},R:{_:"0"},M:{"0":0.18317},Q:{"10.4":0.01145}}; 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 2556f5940c7f14..0f53105b4ebeed 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.52323,"63":0.06357,"78":0.03423,"84":0.01467,"87":0.00489,"91":0.00489,"92":0.02934,"93":0.31296,"94":1.69683,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 95 96 3.5 3.6"},D:{"49":0.13692,"65":0.02934,"67":0.04401,"70":0.01956,"72":0.00489,"75":0.02445,"76":0.00978,"78":0.02445,"79":0.01467,"80":0.00978,"81":0.00489,"83":0.00978,"84":0.00489,"85":0.0489,"86":0.03423,"87":0.11736,"88":0.02934,"89":0.01956,"90":0.03912,"91":0.23961,"92":0.17604,"93":0.66504,"94":1.65771,"95":13.68711,"96":6.93891,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 71 73 74 77 97 98 99"},F:{"76":0.03423,"79":0.00489,"80":0.3912,"81":0.12714,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.02934,"17":0.00978,"18":0.02934,"87":0.01467,"89":0.00489,"90":0.00978,"91":0.05379,"92":0.03912,"93":0.03423,"94":0.35208,"95":5.74086,"96":2.13693,_:"12 13 14 15 79 80 81 83 84 85 86 88"},E:{"4":0,"11":0.01467,"13":0.15648,"14":1.20783,"15":2.27385,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00978,"10.1":0.01956,"11.1":0.20049,"12.1":0.18093,"13.1":0.94377,"14.1":4.65528,"15.1":1.82397},G:{"8":0,"3.2":0,"4.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.00301,"9.0-9.2":0,"9.3":0.52904,"10.0-10.2":0.00301,"10.3":0.60118,"11.0-11.2":0.03006,"11.3-11.4":0.23145,"12.0-12.1":0.03306,"12.2-12.5":1.67728,"13.0-13.1":0.03908,"13.2":0.00902,"13.3":0.09919,"13.4-13.7":0.26151,"14.0-14.4":1.61416,"14.5-14.8":18.07136,"15.0-15.1":6.84439},P:{"4":0.04355,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.01052,"8.2":0.0906,"9.2":0.05098,"10.1":0.01089,"11.1-11.2":0.11575,"12.0":0.02178,"13.0":0.05444,"14.0":0.11977,"15.0":3.40805},I:{"0":0,"3":0,"4":0.00438,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00219,"4.4":0,"4.4.3-4.4.4":0.00876},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.46455,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":16.96572},S:{"2.5":0},R:{_:"0"},M:{"0":0.55699},Q:{"10.4":0},O:{"0":0},H:{"0":0.05805}}; +module.exports={C:{"48":0.03785,"52":0.52987,"63":0.08516,"70":0.00473,"78":0.10408,"84":0.03312,"87":0.0757,"88":0.02839,"89":0.00473,"91":0.00946,"92":0.01419,"93":0.00473,"94":0.79008,"95":1.51392,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 82 83 85 86 90 96 97 3.5 3.6"},D:{"49":0.04258,"65":0.02366,"67":0.04731,"70":0.00473,"75":0.00473,"76":0.00946,"77":0.00473,"78":0.04731,"79":0.10408,"80":0.00473,"81":0.01892,"84":0.02366,"85":0.15139,"86":0.02366,"87":0.11828,"89":0.02366,"90":0.02366,"91":0.1372,"92":0.08043,"93":0.09462,"94":0.84212,"95":0.64342,"96":18.36101,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 71 72 73 74 83 88 97 98 99"},F:{"76":0.03785,"81":0.35956,"82":0.28859,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.02366,"13":0.17032,"14":0.76642,"15":2.4412,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02839,"11.1":0.11354,"12.1":0.08989,"13.1":0.8847,"14.1":3.53879,"15.1":4.30048,"15.2":0.32644},B:{"15":0.00473,"16":0.02839,"18":0.01892,"79":0.00473,"81":0.00946,"85":0.00946,"86":0.01419,"87":0.00946,"90":0.01419,"91":0.01419,"92":0.0615,"93":0.01892,"94":0.02839,"95":0.29805,"96":7.79669,_:"12 13 14 17 80 83 84 88 89"},G:{"8":0,"3.2":0,"4.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.5919,"10.0-10.2":0,"10.3":0.44776,"11.0-11.2":0.04907,"11.3-11.4":0.31588,"12.0-12.1":0.01533,"12.2-12.5":1.60088,"13.0-13.1":0.0276,"13.2":0,"13.3":0.1012,"13.4-13.7":0.6011,"14.0-14.4":1.26046,"14.5-14.8":11.07428,"15.0-15.1":13.71787,"15.2":0.84644},P:{"4":0.0416,"5.0-5.4":0.08216,"6.2-6.4":0.02123,"7.2-7.4":0.0312,"8.2":0.04108,"9.2":0.0208,"10.1":0.01053,"11.1-11.2":0.12481,"12.0":0.02177,"13.0":0.07619,"14.0":0.10884,"15.0":1.11019},I:{"0":0,"3":0,"4":0.00556,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00176,"4.4":0,"4.4.3-4.4.4":0.00849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01075,"11":0.42451,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.07483},L:{"0":16.69376},S:{"2.5":0},R:{_:"0"},M:{"0":0.46367},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js index 51ac4592e50169..637a84491c51d5 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.00471,"43":0.00236,"47":0.00707,"48":0.00236,"52":0.02592,"56":0.00471,"60":0.00236,"66":0.00471,"68":0.00236,"72":0.00707,"78":0.01178,"81":0.00236,"82":0.00236,"83":0.00236,"86":0.00236,"87":0.00236,"88":0.01414,"89":0.01178,"90":0.00942,"91":0.02356,"92":0.01885,"93":0.17199,"94":0.93769,"95":0.06597,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 84 85 96 3.5 3.6"},D:{"49":0.02592,"50":0.00236,"55":0.00236,"56":0.00471,"58":0.00471,"61":0.01414,"63":0.01414,"64":0.00707,"65":0.00707,"66":0.00236,"67":0.00471,"68":0.00236,"69":0.00471,"70":0.0212,"71":0.0377,"72":0.00707,"73":0.00471,"74":0.01414,"75":0.00471,"76":0.00471,"77":0.00707,"78":0.00942,"79":0.02592,"80":0.03298,"81":0.01414,"83":0.04005,"84":0.01649,"85":0.01649,"86":0.03063,"87":0.13194,"88":0.02592,"89":0.03534,"90":0.05419,"91":0.07304,"92":0.13194,"93":0.14843,"94":0.51361,"95":9.53002,"96":5.55074,"97":0.01885,"98":0.00236,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 59 60 62 99"},F:{"79":0.00942,"80":0.18141,"81":0.07304,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.00707,"16":0.00236,"17":0.00236,"18":0.01178,"84":0.00471,"85":0.00236,"89":0.00707,"90":0.00236,"91":0.00471,"92":0.00942,"93":0.00707,"94":0.0212,"95":0.61256,"96":0.2356,_:"13 14 15 79 80 81 83 86 87 88"},E:{"4":0,"13":0.00471,"14":0.03063,"15":0.06361,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00707,"11.1":0.00236,"12.1":0.00471,"13.1":0.0212,"14.1":0.11544,"15.1":0.10838},G:{"8":0.00088,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00022,"5.0-5.1":0.00022,"6.0-6.1":0.00022,"7.0-7.1":0.00744,"8.1-8.4":0,"9.0-9.2":0.00066,"9.3":0.00744,"10.0-10.2":0.00109,"10.3":0.01006,"11.0-11.2":0.06235,"11.3-11.4":0.00591,"12.0-12.1":0.00853,"12.2-12.5":0.14483,"13.0-13.1":0.007,"13.2":0.0035,"13.3":0.01553,"13.4-13.7":0.04419,"14.0-14.4":0.20652,"14.5-14.8":0.613,"15.0-15.1":1.0466},P:{"4":0.28865,"5.0-5.4":0.12272,"6.2-6.4":0.02138,"7.2-7.4":0.12829,"8.2":0.05114,"9.2":0.04276,"10.1":0.01048,"11.1-11.2":0.05345,"12.0":0.03207,"13.0":0.14967,"14.0":0.16036,"15.0":0.62007},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00226,"4.2-4.3":0.00226,"4.4":0,"4.4.3-4.4.4":0.02605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00236,"11":0.05654,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":70.22413},S:{"2.5":0.61916},R:{_:"0"},M:{"0":0.15288},Q:{"10.4":0},O:{"0":2.45372},H:{"0":2.75}}; +module.exports={C:{"42":0.00516,"47":0.00774,"48":0.00258,"52":0.02838,"56":0.00516,"60":0.00258,"66":0.00516,"68":0.00258,"72":0.00774,"78":0.01032,"81":0.00258,"84":0.00258,"87":0.00258,"88":0.0129,"89":0.01806,"90":0.01032,"91":0.02322,"92":0.00774,"93":0.0129,"94":0.38442,"95":0.80496,"96":0.04902,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 83 85 86 97 3.5 3.6"},D:{"27":0.00258,"41":0.00258,"49":0.0258,"55":0.00258,"56":0.00258,"58":0.00516,"61":0.00258,"63":0.0129,"64":0.00774,"65":0.01806,"66":0.00258,"67":0.00258,"68":0.00258,"69":0.00516,"70":0.02064,"71":0.03354,"72":0.00516,"73":0.00516,"74":0.0129,"75":0.00516,"76":0.00516,"77":0.00516,"78":0.00774,"79":0.02322,"80":0.03096,"81":0.01548,"83":0.04128,"84":0.01548,"85":0.01548,"86":0.02838,"87":0.0903,"88":0.02064,"89":0.02838,"90":0.0516,"91":0.06192,"92":0.10578,"93":0.08772,"94":0.20124,"95":0.28896,"96":16.80096,"97":0.02322,"98":0.00774,_:"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 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 62 99"},F:{"79":0.00774,"80":0.00516,"81":0.09546,"82":0.1677,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.00516,"14":0.02838,"15":0.03354,_:"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.00774,"12.1":0.00516,"13.1":0.02322,"14.1":0.09288,"15.1":0.1419,"15.2":0.03096},B:{"12":0.00774,"16":0.00258,"17":0.00258,"18":0.0129,"84":0.00516,"89":0.00516,"91":0.00258,"92":0.00774,"93":0.00258,"94":0.00774,"95":0.02322,"96":0.87462,_:"13 14 15 79 80 81 83 85 86 87 88 90"},G:{"8":0.00093,"3.2":0.00023,"4.0-4.1":0,"4.2-4.3":0.00047,"5.0-5.1":0.00023,"6.0-6.1":0.00047,"7.0-7.1":0.00769,"8.1-8.4":0,"9.0-9.2":0.0007,"9.3":0.00699,"10.0-10.2":0.00163,"10.3":0.01003,"11.0-11.2":0.06761,"11.3-11.4":0.00583,"12.0-12.1":0.00769,"12.2-12.5":0.13896,"13.0-13.1":0.00676,"13.2":0.00326,"13.3":0.01422,"13.4-13.7":0.04267,"14.0-14.4":0.18955,"14.5-14.8":0.47983,"15.0-15.1":1.13008,"15.2":0.21403},P:{"4":0.25477,"5.0-5.4":0.08216,"6.2-6.4":0.02123,"7.2-7.4":0.12739,"8.2":0.04108,"9.2":0.04246,"10.1":0.01053,"11.1-11.2":0.05308,"12.0":0.03185,"13.0":0.11677,"14.0":0.12739,"15.0":0.22292},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00371,"4.4":0,"4.4.3-4.4.4":0.01855},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04902,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":2.28536},H:{"0":2.73264},L:{"0":68.68486},S:{"2.5":0.57134},R:{_:"0"},M:{"0":0.1484},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js index 963e1332082a91..d18455ab56e6b3 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:{"38":0.00228,"43":0.00456,"44":0.00228,"47":0.00456,"50":0.00456,"51":0.00456,"52":0.05472,"53":0.00456,"54":0.00456,"55":0.00228,"56":0.00456,"57":0.00456,"58":0.00228,"59":0.00456,"60":0.00456,"61":0.00228,"62":0.00228,"63":0.00456,"65":0.00228,"68":0.00228,"69":0.01596,"70":0.00228,"72":0.00456,"78":0.02736,"81":0.00228,"84":0.00456,"87":0.00456,"88":0.0114,"89":0.00912,"90":0.00684,"91":0.01596,"92":0.04788,"93":0.11172,"94":0.66348,"95":0.0114,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 48 49 64 66 67 71 73 74 75 76 77 79 80 82 83 85 86 96 3.5 3.6"},D:{"11":0.00456,"22":0.00228,"25":0.00684,"26":0.00228,"31":0.00228,"33":0.00684,"34":0.00456,"38":0.02964,"40":0.00456,"41":0.00228,"42":0.00228,"43":0.04788,"45":0.00228,"46":0.00228,"47":0.00684,"49":0.01824,"50":0.00228,"51":0.00228,"52":0.00228,"53":0.00912,"55":0.00684,"56":0.00912,"57":0.00456,"58":0.00456,"59":0.00228,"60":0.00912,"61":0.00228,"63":0.02736,"64":0.00456,"65":0.00912,"66":0.00456,"67":0.00456,"68":0.00912,"69":0.01368,"70":0.02964,"71":0.0114,"72":0.00684,"73":0.0114,"74":0.00912,"75":0.01368,"76":0.00912,"77":0.00456,"78":0.00912,"79":0.19152,"80":0.01824,"81":0.02736,"83":0.03192,"84":0.01368,"85":0.01824,"86":0.04788,"87":0.0798,"88":0.05244,"89":0.05928,"90":0.02736,"91":0.1482,"92":0.14136,"93":0.1254,"94":0.46284,"95":7.752,"96":5.5176,"97":0.00912,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 32 35 36 37 39 44 48 54 62 98 99"},F:{"28":0.00456,"46":0.00228,"78":0.00228,"79":0.01824,"80":0.37848,"81":0.17784,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00684,"13":0.00456,"14":0.00456,"15":0.00684,"16":0.00912,"17":0.00684,"18":0.04332,"81":0.00456,"83":0.00456,"84":0.01596,"85":0.00456,"86":0.00456,"87":0.00228,"89":0.01368,"90":0.00456,"91":0.00684,"92":0.01824,"93":0.00912,"94":0.057,"95":1.03968,"96":0.44232,_:"79 80 88"},E:{"4":0,"12":0.00456,"13":0.02052,"14":0.1482,"15":0.25536,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06156,"11.1":0.00456,"12.1":0.00912,"13.1":0.06612,"14.1":0.59736,"15.1":0.27132},G:{"8":0.00157,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.011,"6.0-6.1":0.00628,"7.0-7.1":0.06756,"8.1-8.4":0.00314,"9.0-9.2":0.00471,"9.3":0.05656,"10.0-10.2":0.01414,"10.3":0.07699,"11.0-11.2":0.04399,"11.3-11.4":0.03614,"12.0-12.1":0.04242,"12.2-12.5":0.98041,"13.0-13.1":0.02985,"13.2":0.01257,"13.3":0.1037,"13.4-13.7":0.28438,"14.0-14.4":1.20509,"14.5-14.8":6.17944,"15.0-15.1":6.55024},P:{"4":0.17332,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.13254,"8.2":0.0906,"9.2":0.05098,"10.1":0.02039,"11.1-11.2":0.24469,"12.0":0.06117,"13.0":0.30586,"14.0":0.30586,"15.0":2.9974},I:{"0":0,"3":0,"4":0.00097,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00483,"4.4":0,"4.4.3-4.4.4":0.06224},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00802,"9":0.01203,"11":0.31283,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":57.71336},S:{"2.5":0},R:{_:"0"},M:{"0":0.10036},Q:{"10.4":0.00772},O:{"0":0.7334},H:{"0":0.29235}}; +module.exports={C:{"34":0.00284,"38":0.00284,"41":0.00284,"43":0.00284,"44":0.00284,"47":0.00567,"50":0.00284,"52":0.07938,"53":0.00284,"56":0.00567,"57":0.00284,"69":0.00851,"72":0.00567,"78":0.01134,"82":0.00284,"87":0.00284,"88":0.01134,"89":0.00567,"90":0.00284,"91":0.01418,"92":0.01418,"93":0.01134,"94":0.30335,"95":0.74561,"96":0.00851,_:"2 3 4 5 6 7 8 9 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 45 46 48 49 51 54 55 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 83 84 85 86 97 3.5 3.6"},D:{"11":0.00284,"24":0.00284,"33":0.00851,"34":0.00567,"38":0.03969,"39":0.00284,"40":0.00284,"41":0.00284,"42":0.00284,"43":0.05954,"47":0.00851,"49":0.00851,"53":0.01701,"55":0.00851,"56":0.00851,"57":0.00284,"58":0.00567,"60":0.00567,"61":0.00284,"63":0.01985,"64":0.00567,"65":0.00851,"66":0.00284,"67":0.00567,"68":0.01701,"69":0.01134,"70":0.02268,"71":0.01418,"72":0.00567,"73":0.00567,"74":0.00851,"75":0.00851,"76":0.00567,"77":0.01134,"78":0.00851,"79":0.21546,"80":0.01701,"81":0.02835,"83":0.02835,"84":0.02268,"85":0.01701,"86":0.06804,"87":0.0567,"88":0.04536,"89":0.06237,"90":0.03119,"91":0.04253,"92":0.12758,"93":0.06804,"94":0.17861,"95":0.32036,"96":14.78169,"97":0.00284,_:"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 35 36 37 44 45 46 48 50 51 52 54 59 62 98 99"},F:{"28":0.00851,"79":0.01134,"80":0.00851,"81":0.25232,"82":0.36855,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01701,"14":0.14459,"15":0.15026,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06804,"11.1":0.00284,"12.1":0.00567,"13.1":0.06237,"14.1":0.48762,"15.1":0.49613,"15.2":0.09639},B:{"12":0.00567,"13":0.00567,"14":0.00284,"15":0.00567,"16":0.00851,"17":0.00567,"18":0.03686,"81":0.00284,"83":0.00284,"84":0.01134,"85":0.00567,"86":0.00284,"87":0.00284,"89":0.01134,"90":0.00284,"91":0.00567,"92":0.01418,"93":0.00567,"94":0.01418,"95":0.1049,"96":1.77755,_:"79 80 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00507,"6.0-6.1":0.00338,"7.0-7.1":0.06255,"8.1-8.4":0.00169,"9.0-9.2":0.00676,"9.3":0.06086,"10.0-10.2":0.01522,"10.3":0.07439,"11.0-11.2":0.04734,"11.3-11.4":0.03043,"12.0-12.1":0.0355,"12.2-12.5":0.96535,"13.0-13.1":0.02198,"13.2":0.01353,"13.3":0.10144,"13.4-13.7":0.28741,"14.0-14.4":1.16991,"14.5-14.8":4.76419,"15.0-15.1":8.10318,"15.2":1.13441},P:{"4":0.18418,"5.0-5.4":0.01023,"6.2-6.4":0.02046,"7.2-7.4":0.14325,_:"8.2 10.1","9.2":0.05116,"11.1-11.2":0.19442,"12.0":0.06139,"13.0":0.26604,"14.0":0.24558,"15.0":0.65487},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00134,"4.2-4.3":0.00368,"4.4":0,"4.4.3-4.4.4":0.04515},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00673,"11":0.20873,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.83842},H:{"0":0.346},L:{"0":54.56661},S:{"2.5":0},R:{_:"0"},M:{"0":0.10032},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js index efb06e96889d6f..7816759d9c87e0 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:{"29":0.00647,"30":0.00323,"31":0.00323,"32":0.00323,"33":0.01294,"34":0.00323,"37":0.00323,"38":0.0097,"39":0.00647,"40":0.00647,"41":0.0097,"42":0.00323,"43":0.0097,"47":0.02264,"48":0.0097,"49":0.00647,"50":0.00647,"52":0.09702,"54":0.00323,"56":0.01294,"60":0.00647,"62":0.00323,"66":0.00323,"68":0.0097,"69":0.00647,"70":0.00323,"71":0.00323,"72":0.03881,"73":0.00323,"76":0.00323,"77":0.00647,"78":0.03557,"79":0.0097,"80":0.0097,"81":0.01294,"82":0.0097,"83":0.00647,"84":0.01617,"85":0.01294,"86":0.01294,"87":0.01294,"88":0.02911,"89":0.04204,"90":0.02587,"91":0.1423,"92":0.05821,"93":0.83114,"94":4.38207,"95":0.03557,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 35 36 44 45 46 51 53 55 57 58 59 61 63 64 65 67 74 75 96 3.5 3.6"},D:{"29":0.00323,"34":0.00647,"35":0.00647,"38":0.0097,"48":0.00647,"49":0.04851,"51":0.00323,"55":0.00323,"56":0.00647,"57":0.00323,"58":0.0097,"60":0.00647,"61":0.03234,"62":0.0097,"63":0.02587,"64":0.00647,"65":0.00647,"66":0.00647,"67":0.00647,"68":0.00647,"69":0.0097,"70":0.0097,"71":0.0194,"72":0.0097,"73":0.0097,"74":0.0097,"75":0.0097,"76":0.0097,"77":0.0097,"78":0.02264,"79":0.03881,"80":0.03557,"81":0.03557,"83":0.05498,"84":0.07438,"85":0.07438,"86":0.11966,"87":0.19727,"88":0.04204,"89":0.04851,"90":0.04528,"91":0.12613,"92":0.17464,"93":0.14876,"94":0.43336,"95":10.72718,"96":6.75906,"97":0.01294,_:"4 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 36 37 39 40 41 42 43 44 45 46 47 50 52 53 54 59 98 99"},F:{"64":0.00647,"77":0.00647,"78":0.00647,"79":0.0194,"80":0.39131,"81":0.1617,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00647,"13":0.00647,"14":0.0097,"15":0.00647,"16":0.0097,"17":0.0097,"18":0.05174,"81":0.00647,"84":0.01294,"85":0.00323,"86":0.00323,"89":0.02587,"90":0.0097,"91":0.00647,"92":0.02264,"93":0.00647,"94":0.02587,"95":0.62416,"96":0.22638,_:"79 80 83 87 88"},E:{"4":0,"13":0.00647,"14":0.02911,"15":0.02911,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.23285,"11.1":0.00323,"12.1":0.00647,"13.1":0.01617,"14.1":0.05821,"15.1":0.05174},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00041,"6.0-6.1":0.00041,"7.0-7.1":0.00409,"8.1-8.4":0.00123,"9.0-9.2":0.00204,"9.3":0.02126,"10.0-10.2":0.0094,"10.3":0.03679,"11.0-11.2":0.03107,"11.3-11.4":0.03025,"12.0-12.1":0.03393,"12.2-12.5":0.53189,"13.0-13.1":0.02903,"13.2":0.01349,"13.3":0.08217,"13.4-13.7":0.17089,"14.0-14.4":0.60384,"14.5-14.8":1.29599,"15.0-15.1":1.18847},P:{"4":0.82542,"5.0-5.4":0.08053,"6.2-6.4":0.08053,"7.2-7.4":0.60397,"8.2":0.0906,"9.2":0.34225,"10.1":0.15099,"11.1-11.2":0.67443,"12.0":0.36238,"13.0":1.00661,"14.0":1.05694,"15.0":3.99626},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00294,"4.2-4.3":0.02453,"4.4":0,"4.4.3-4.4.4":0.08078},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0391,"9":0.01303,"10":0.01303,"11":2.95862,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":53.94533},S:{"2.5":0},R:{_:"0"},M:{"0":0.93371},Q:{"10.4":0},O:{"0":0.11502},H:{"0":0.41636}}; +module.exports={C:{"29":0.00637,"30":0.00637,"31":0.00319,"32":0.00319,"33":0.01274,"34":0.00319,"35":0.00319,"37":0.00319,"38":0.01274,"39":0.00637,"40":0.00637,"41":0.00956,"42":0.00319,"43":0.00956,"47":0.0223,"48":0.00956,"49":0.00637,"50":0.00319,"52":0.09874,"56":0.01274,"60":0.00637,"62":0.00319,"64":0.00319,"68":0.00637,"69":0.00319,"70":0.00319,"72":0.03185,"73":0.00319,"76":0.00319,"77":0.00637,"78":0.01593,"79":0.00637,"80":0.00956,"81":0.01274,"82":0.00956,"83":0.00637,"84":0.01274,"85":0.00956,"86":0.00637,"87":0.00637,"88":0.0223,"89":0.03185,"90":0.01593,"91":0.14333,"92":0.02548,"93":0.04459,"94":1.51925,"95":3.36336,"96":0.02548,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 36 44 45 46 51 53 54 55 57 58 59 61 63 65 66 67 71 74 75 97 3.5 3.6"},D:{"29":0.00319,"34":0.00637,"38":0.01274,"48":0.00637,"49":0.04141,"51":0.00319,"55":0.00319,"56":0.00637,"58":0.00637,"60":0.00637,"61":0.02548,"62":0.00956,"63":0.01593,"64":0.00319,"66":0.00319,"67":0.00637,"68":0.00319,"69":0.00956,"70":0.00956,"71":0.0223,"72":0.00637,"73":0.00956,"74":0.00956,"75":0.00956,"76":0.00637,"77":0.00637,"78":0.01911,"79":0.03185,"80":0.02867,"81":0.03822,"83":0.04141,"84":0.05733,"85":0.06052,"86":0.11148,"87":0.13696,"88":0.03504,"89":0.04778,"90":0.04141,"91":0.09874,"92":0.1497,"93":0.08281,"94":0.16881,"95":0.27073,"96":17.17671,"97":0.00956,"98":0.00319,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 52 53 54 57 59 65 99"},F:{"64":0.00637,"77":0.00319,"78":0.00319,"79":0.01593,"80":0.01911,"81":0.18792,"82":0.35035,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00637,"14":0.01911,"15":0.01911,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.2134,"11.1":0.00319,"12.1":0.00319,"13.1":0.01274,"14.1":0.04459,"15.1":0.05733,"15.2":0.01274},B:{"12":0.00637,"13":0.00637,"14":0.00637,"15":0.00637,"16":0.00637,"17":0.00637,"18":0.04141,"81":0.00637,"84":0.01274,"85":0.00319,"86":0.00319,"89":0.0223,"90":0.00956,"91":0.00637,"92":0.01911,"93":0.00637,"94":0.00956,"95":0.02867,"96":0.8281,_:"79 80 83 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00695,"8.1-8.4":0.00082,"9.0-9.2":0.00205,"9.3":0.02291,"10.0-10.2":0.00777,"10.3":0.0364,"11.0-11.2":0.02741,"11.3-11.4":0.02741,"12.0-12.1":0.03231,"12.2-12.5":0.49372,"13.0-13.1":0.02659,"13.2":0.01309,"13.3":0.07281,"13.4-13.7":0.15912,"14.0-14.4":0.54403,"14.5-14.8":1.01893,"15.0-15.1":1.39648,"15.2":0.19961},P:{"4":0.86783,"5.0-5.4":0.07064,"6.2-6.4":0.08073,"7.2-7.4":0.63574,"8.2":0.09082,"9.2":0.31282,"10.1":0.14128,"11.1-11.2":0.61556,"12.0":0.32291,"13.0":0.92838,"14.0":0.93847,"15.0":1.6953},I:{"0":0,"3":0,"4":0.00058,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00259,"4.2-4.3":0.02219,"4.4":0,"4.4.3-4.4.4":0.07003},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03526,"9":0.01282,"10":0.00962,"11":2.88524,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.14309},H:{"0":0.44512},L:{"0":54.99333},S:{"2.5":0},R:{_:"0"},M:{"0":0.91308},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js index e64fe2721a7d4e..e443e1124314b2 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:{"52":0.04273,"78":0.1465,"79":0.0061,"82":0.01221,"86":0.01221,"89":0.0061,"90":0.01221,"91":0.03052,"92":0.04273,"93":0.42118,"94":2.99706,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 83 84 85 87 88 95 96 3.5 3.6"},D:{"38":0.01221,"49":0.04883,"65":0.03662,"67":0.01831,"70":0.01221,"72":0.01221,"73":0.0061,"75":0.0061,"76":0.01831,"77":0.01221,"78":0.01221,"79":0.03052,"80":0.01831,"81":0.01221,"83":0.01221,"84":0.01831,"85":0.04273,"86":0.07325,"87":0.22585,"88":0.04883,"89":0.02442,"90":0.1526,"91":0.14039,"92":0.48832,"93":0.59819,"94":3.58305,"95":22.07817,"96":12.24462,_:"4 5 6 7 8 9 10 11 12 13 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 68 69 71 74 97 98 99"},F:{"78":0.0061,"79":0.02442,"80":0.87898,"81":0.32962,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01221,"18":0.0061,"89":0.0061,"90":0.01221,"92":0.02442,"93":0.0061,"94":0.10987,"95":3.31447,"96":1.39782,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 91"},E:{"4":0,"12":0.01221,"13":0.07935,"14":0.98885,"15":1.97159,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03662,"11.1":0.21974,"12.1":0.20754,"13.1":0.7691,"14.1":4.13241,"15.1":1.45275},G:{"8":0,"3.2":0,"4.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.03335,"9.0-9.2":0,"9.3":0.03924,"10.0-10.2":0.00392,"10.3":0.10986,"11.0-11.2":0.0255,"11.3-11.4":0.01569,"12.0-12.1":0.0412,"12.2-12.5":0.37079,"13.0-13.1":0.03727,"13.2":0.00392,"13.3":0.07455,"13.4-13.7":0.27073,"14.0-14.4":0.9456,"14.5-14.8":11.37666,"15.0-15.1":6.26805},P:{"4":0.04194,"5.0-5.4":0.12272,"6.2-6.4":0.03068,"7.2-7.4":0.17512,"8.2":0.05114,"9.2":0.05446,"10.1":0.01048,"11.1-11.2":0.03145,"12.0":0.03145,"13.0":0.06291,"14.0":0.07339,"15.0":2.80983},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00052,"4.4":0,"4.4.3-4.4.4":0.01117},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1526,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":16.02816},S:{"2.5":0},R:{_:"0"},M:{"0":0.23766},Q:{"10.4":0},O:{"0":0.01169},H:{"0":0.06639}}; +module.exports={C:{"52":0.02936,"60":0.03523,"62":0.01761,"76":0.01174,"77":0.00587,"78":0.13503,"79":0.00587,"81":0.01174,"82":0.01761,"88":0.00587,"89":0.01174,"91":0.09394,"92":0.01174,"93":0.00587,"94":1.18594,"95":3.00595,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 63 64 65 66 67 68 69 70 71 72 73 74 75 80 83 84 85 86 87 90 96 97 3.5 3.6"},D:{"38":0.01174,"39":0.00587,"49":0.02936,"65":0.02348,"66":0.00587,"67":0.01761,"72":0.01174,"75":0.00587,"76":0.01761,"77":0.00587,"78":0.02936,"79":0.03523,"80":0.00587,"83":0.02348,"84":0.02936,"85":0.04697,"86":0.0411,"87":0.24071,"88":0.00587,"89":0.01761,"90":0.10568,"91":0.06458,"92":0.21136,"93":0.45207,"94":1.18594,"95":1.52646,"96":32.13198,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 61 62 63 64 68 69 70 71 73 74 81 97 98 99"},F:{"80":0.01761,"81":0.83368,"82":0.78084,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00587,"13":0.04697,"14":1.08614,"15":0.95697,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02348,"11.1":0.24071,"12.1":0.24071,"13.1":0.6282,"14.1":2.88853,"15.1":2.74763,"15.2":0.41684},B:{"15":0.00587,"17":0.00587,"89":0.01761,"92":0.01174,"94":0.00587,"95":0.07632,"96":5.04906,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 90 91 93"},G:{"8":0,"3.2":0,"4.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.00824,"9.0-9.2":0,"9.3":0.04327,"10.0-10.2":0.00412,"10.3":0.09273,"11.0-11.2":0.03297,"11.3-11.4":0.02061,"12.0-12.1":0.03915,"12.2-12.5":0.42242,"13.0-13.1":0.05564,"13.2":0.00824,"13.3":0.07006,"13.4-13.7":0.31939,"14.0-14.4":0.89223,"14.5-14.8":7.50256,"15.0-15.1":10.44712,"15.2":0.63878},P:{"4":0.04214,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.16636,"8.2":0.04108,"9.2":0.03286,"10.1":0.01053,"11.1-11.2":0.04214,"12.0":0.02107,"13.0":0.05267,"14.0":0.09481,"15.0":0.4846},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.01239},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00587,"11":0.14678,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.04129},H:{"0":0.08991},L:{"0":17.388},S:{"2.5":0},R:{_:"0"},M:{"0":0.3138},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js index 7c72b1921a2a4a..a325170e68416d 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.01516,"52":0.10106,"56":0.01516,"59":0.01516,"68":0.01011,"72":0.00505,"78":0.12633,"82":0.03537,"83":0.02527,"84":0.01011,"85":0.00505,"86":0.01516,"87":0.01011,"88":0.02527,"89":0.02021,"90":0.01516,"91":0.06064,"92":0.04042,"93":0.57099,"94":3.34509,"95":0.01516,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 96 3.5 3.6"},D:{"36":0.02021,"38":0.01011,"49":0.21728,"52":0.01516,"61":0.01516,"63":0.01516,"65":0.01011,"66":0.08085,"67":0.02021,"68":0.00505,"69":0.14148,"70":0.01011,"71":0.01011,"72":0.00505,"73":0.01011,"74":0.04042,"75":0.01011,"76":0.01011,"77":0.01516,"78":0.01516,"79":0.05558,"80":0.03032,"81":0.03537,"83":0.03032,"84":0.04042,"85":0.04548,"86":0.0758,"87":0.28297,"88":0.05558,"89":0.11117,"90":0.07074,"91":0.09095,"92":0.18191,"93":0.18191,"94":0.90449,"95":19.27214,"96":11.98066,"97":0.01516,_:"4 5 6 7 8 9 10 11 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 47 48 50 51 53 54 55 56 57 58 59 60 62 64 98 99"},F:{"46":0.00505,"79":0.02527,"80":0.76806,"81":0.3436,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00505,"17":0.01011,"18":0.02527,"84":0.01011,"85":0.00505,"86":0.00505,"89":0.04042,"90":0.01011,"91":0.01011,"92":0.02021,"93":0.02021,"94":0.0758,"95":2.63261,"96":1.0864,_:"12 13 14 15 79 80 81 83 87 88"},E:{"4":0,"12":0.01516,"13":0.06064,"14":0.51541,"15":0.81353,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01011,"10.1":0.02021,"11.1":0.09601,"12.1":0.10106,"13.1":0.41435,"14.1":1.39968,"15.1":1.17735},G:{"8":0.00275,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00275,"6.0-6.1":0.00688,"7.0-7.1":0.01238,"8.1-8.4":0.00825,"9.0-9.2":0.01238,"9.3":0.1059,"10.0-10.2":0.00963,"10.3":0.10453,"11.0-11.2":0.05502,"11.3-11.4":0.05364,"12.0-12.1":0.03989,"12.2-12.5":0.50614,"13.0-13.1":0.03438,"13.2":0.01926,"13.3":0.08802,"13.4-13.7":0.26407,"14.0-14.4":0.99853,"14.5-14.8":5.63355,"15.0-15.1":5.7876},P:{"4":0.07398,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.01031,"8.2":0.01031,"9.2":0.02114,"10.1":0.01057,"11.1-11.2":0.13738,"12.0":0.04227,"13.0":0.15852,"14.0":0.21136,"15.0":2.56801},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00223,"4.2-4.3":0.0052,"4.4":0,"4.4.3-4.4.4":0.03711},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01735,"9":0.01157,"10":0.00578,"11":0.48576,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":32.67252},S:{"2.5":0},R:{_:"0"},M:{"0":0.26224},Q:{"10.4":0.02474},O:{"0":0.18802},H:{"0":0.22017}}; +module.exports={C:{"48":0.01454,"52":0.11148,"55":0.00969,"56":0.01939,"59":0.01454,"68":0.00969,"72":0.00485,"78":0.11148,"80":0.00485,"84":0.00969,"86":0.00485,"87":0.03878,"88":0.02424,"89":0.01939,"90":0.00969,"91":0.05816,"92":0.01454,"93":0.02908,"94":1.23599,"95":2.51559,"96":0.01454,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 81 82 83 85 97 3.5 3.6"},D:{"38":0.01454,"49":0.13572,"52":0.00485,"61":0.00485,"63":0.01454,"65":0.01454,"66":0.0824,"67":0.01939,"68":0.00485,"69":0.22296,"70":0.00485,"71":0.00969,"72":0.00485,"73":0.00485,"74":0.02908,"75":0.00969,"76":0.00969,"77":0.01454,"78":0.00969,"79":0.06301,"80":0.02908,"81":0.03393,"83":0.02424,"84":0.03393,"85":0.03878,"86":0.06301,"87":0.15026,"88":0.03878,"89":0.06786,"90":0.0824,"91":0.06786,"92":0.14541,"93":0.30536,"94":0.29082,"95":0.49924,"96":29.50369,"97":0.03393,_:"4 5 6 7 8 9 10 11 12 13 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 60 62 64 98 99"},F:{"46":0.00485,"74":0.00485,"79":0.01454,"80":0.01939,"81":0.48955,"82":0.58164,_:"9 11 12 15 16 17 18 19 20 21 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 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},E:{"4":0,"12":0.00969,"13":0.05332,"14":0.42169,"15":0.42654,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00969,"10.1":0.01454,"11.1":0.07271,"12.1":0.09209,"13.1":0.38291,"14.1":1.06634,"15.1":1.63344,"15.2":0.25204},B:{"16":0.00485,"17":0.00969,"18":0.02424,"84":0.00485,"86":0.00485,"87":0.00485,"89":0.00485,"90":0.00485,"91":0.00969,"92":0.01454,"93":0.00969,"94":0.01939,"95":0.0824,"96":3.67403,_:"12 13 14 15 79 80 81 83 85 88"},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.0042,"7.0-7.1":0.014,"8.1-8.4":0.007,"9.0-9.2":0.007,"9.3":0.10499,"10.0-10.2":0.0098,"10.3":0.10779,"11.0-11.2":0.05739,"11.3-11.4":0.05179,"12.0-12.1":0.0378,"12.2-12.5":0.48575,"13.0-13.1":0.035,"13.2":0.014,"13.3":0.07979,"13.4-13.7":0.25197,"14.0-14.4":0.8651,"14.5-14.8":3.79917,"15.0-15.1":7.39397,"15.2":0.66213},P:{"4":0.10438,"5.0-5.4":0.08216,"6.2-6.4":0.02123,"7.2-7.4":0.0312,"8.2":0.04108,"9.2":0.03131,"10.1":0.01044,"11.1-11.2":0.14613,"12.0":0.04175,"13.0":0.15656,"14.0":0.20875,"15.0":0.45926},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00166,"4.2-4.3":0.0058,"4.4":0,"4.4.3-4.4.4":0.03892},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02266,"9":0.01133,"10":0.00566,"11":0.46444,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.18032},H:{"0":0.239},L:{"0":34.72501},S:{"2.5":0},R:{_:"0"},M:{"0":0.27821},Q:{"10.4":0.02061}}; 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 0eb477635b4b0b..19ea68716d015e 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.00466,"66":0.86639,"78":0.00932,"90":0.00932,"91":0.10713,"92":0.00466,"93":0.3214,"94":1.89115,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 95 96 3.5 3.6"},D:{"49":0.02795,"67":0.04658,"72":0.09782,"76":0.02795,"78":0.00932,"79":0.00932,"80":0.0559,"83":0.04658,"84":0.0559,"86":0.00932,"87":0.02795,"89":0.04658,"90":0.02795,"91":0.06987,"92":0.16303,"93":0.1444,"94":1.36014,"95":11.19783,"96":6.70752,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 77 81 85 88 97 98 99"},F:{"79":0.00466,"80":0.40059,"81":0.13042,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"16":0.04192,"18":0.01397,"86":0.00466,"89":0.00466,"92":0.01863,"93":0.01863,"94":0.19098,"95":5.48247,"96":2.34297,_:"12 13 14 15 17 79 80 81 83 84 85 87 88 90 91"},E:{"4":0,"12":0.00932,"13":0.25619,"14":1.05271,"15":2.28708,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01397,"10.1":0.00932,"11.1":0.13042,"12.1":0.40059,"13.1":1.12724,"14.1":5.3008,"15.1":2.02623},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.17859,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00364,"9.3":0.38269,"10.0-10.2":0.02187,"10.3":0.67063,"11.0-11.2":0.03645,"11.3-11.4":0.04374,"12.0-12.1":0.03645,"12.2-12.5":1.41414,"13.0-13.1":0.01458,"13.2":0,"13.3":0.08018,"13.4-13.7":0.46652,"14.0-14.4":1.28658,"14.5-14.8":21.97755,"15.0-15.1":9.81883},P:{"4":0.13034,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.15191,"8.2":0.01031,"9.2":0.01086,"10.1":0.01057,"11.1-11.2":0.32551,"12.0":0.03255,"13.0":0.24982,"14.0":0.04345,"15.0":3.35623},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.09463,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":13.32771},S:{"2.5":0},R:{_:"0"},M:{"0":0.21368},Q:{"10.4":0},O:{"0":0},H:{"0":0.02023}}; +module.exports={C:{"48":0.00453,"52":0.00907,"60":0.0136,"66":0.04987,"78":0.00907,"90":0.0136,"91":0.06801,"94":0.6665,"95":1.11536,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 96 97 3.5 3.6"},D:{"38":0.00453,"49":0.04987,"65":0.03174,"67":0.01814,"72":0.12695,"79":0.0272,"80":0.05894,"83":0.01814,"84":0.02267,"86":0.00453,"87":0.03174,"88":0.01814,"89":0.05894,"90":0.0272,"91":0.06801,"92":0.1995,"93":0.04534,"94":0.61662,"95":0.35365,"96":18.04985,_:"4 5 6 7 8 9 10 11 12 13 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 68 69 70 71 73 74 75 76 77 78 81 85 97 98 99"},F:{"81":0.34912,"82":0.14055,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00453,"13":0.08161,"14":1.20604,"15":0.65743,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01814,"10.1":0.00907,"11.1":0.07708,"12.1":0.32191,"13.1":0.67557,"14.1":4.72443,"15.1":4.35264,"15.2":0.61662},B:{"16":0.04987,"18":0.0136,"80":0.00453,"83":0.00907,"92":0.01814,"94":0.0136,"95":0.36725,"96":7.75767,_:"12 13 14 15 17 79 81 84 85 86 87 88 89 90 91 93"},G:{"8":0,"3.2":0,"4.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.00375,"9.3":0.36344,"10.0-10.2":0.01499,"10.3":0.75685,"11.0-11.2":0.00749,"11.3-11.4":0.03747,"12.0-12.1":0.01499,"12.2-12.5":1.37508,"13.0-13.1":0.02248,"13.2":0.01124,"13.3":0.0637,"13.4-13.7":0.50582,"14.0-14.4":0.96667,"14.5-14.8":12.79533,"15.0-15.1":19.53208,"15.2":0.98166},P:{"4":0.15031,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.17283,"8.2":0.01026,"9.2":0.01074,"10.1":0.01026,"11.1-11.2":0.01074,"12.0":0.04321,"13.0":0.32209,"14.0":0.06442,"15.0":0.20399},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,"4.4":0,"4.4.3-4.4.4":0.00248},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.19244,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.01035},L:{"0":13.91926},S:{"2.5":0},R:{_:"0"},M:{"0":0.19131},Q:{"10.4":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 4f3949c59f583b..102c647557c963 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.01403,"73":0.04208,"78":0.1122,"86":0.00935,"87":0.00468,"88":0.01403,"89":0.00935,"91":0.04208,"92":0.00935,"93":0.1683,"94":0.88825,"95":0.00468,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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 90 96 3.5 3.6"},D:{"11":0.01403,"49":0.0935,"53":0.0187,"61":0.01403,"63":0.01403,"65":0.00935,"67":0.00468,"68":0.00935,"69":0.02338,"70":0.00935,"71":0.00935,"72":0.00935,"73":0.0187,"74":0.01403,"75":0.08415,"76":0.10753,"77":0.02338,"78":0.02338,"79":0.06078,"80":0.02805,"81":0.07013,"83":0.0374,"84":0.0374,"85":0.04208,"86":0.0187,"87":0.11688,"88":0.0374,"89":0.0374,"90":0.08415,"91":0.19168,"92":0.27115,"93":0.41608,"94":3.15095,"95":16.75053,"96":9.60245,"97":0.05143,_:"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 54 55 56 57 58 59 60 62 64 66 98 99"},F:{"79":0.02338,"80":0.62645,"81":0.25713,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.00935,"14":0.00468,"15":0.01403,"16":0.0187,"17":0.00935,"18":0.04208,"84":0.00935,"85":0.00935,"87":0.01403,"89":0.02338,"90":0.02338,"91":0.01403,"92":0.02338,"93":0.04675,"94":0.1683,"95":4.5628,"96":1.6082,_:"13 79 80 81 83 86 88"},E:{"4":0,"13":0.01403,"14":0.13558,"15":0.52828,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0187,"10.1":0.01403,"11.1":0.0187,"12.1":0.0374,"13.1":0.17765,"14.1":0.79475,"15.1":0.35998},G:{"8":0.01967,"3.2":0.00369,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00246,"6.0-6.1":0,"7.0-7.1":0.19668,"8.1-8.4":0.00123,"9.0-9.2":0.00246,"9.3":0.11186,"10.0-10.2":0.00246,"10.3":0.08974,"11.0-11.2":0.10572,"11.3-11.4":0.01844,"12.0-12.1":0.02336,"12.2-12.5":0.68592,"13.0-13.1":0.01352,"13.2":0.01106,"13.3":0.06761,"13.4-13.7":0.19422,"14.0-14.4":0.69699,"14.5-14.8":4.66871,"15.0-15.1":5.37431},P:{"4":0.24956,"5.0-5.4":0.08053,"6.2-6.4":0.0102,"7.2-7.4":0.15191,"8.2":0.01031,"9.2":0.0651,"10.1":0.01057,"11.1-11.2":0.32551,"12.0":0.03255,"13.0":0.22786,"14.0":0.21701,"15.0":3.08153},I:{"0":0,"3":0,"4":0.00072,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00036,"4.2-4.3":0.00179,"4.4":0,"4.4.3-4.4.4":0.03441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.07552,"9":0.00539,"10":0.01079,"11":0.1888,_:"6 7 5.5"},J:{"7":0,"10":0.01598},N:{"10":0.02658,"11":0.22582},L:{"0":38.93125},S:{"2.5":0},R:{_:"0"},M:{"0":0.09585},Q:{"10.4":0},O:{"0":0.42068},H:{"0":0.28736}}; +module.exports={C:{"52":0.01374,"73":0.02291,"78":0.0733,"87":0.00458,"88":0.00916,"89":0.01832,"91":0.04123,"93":0.00458,"94":0.3619,"95":0.70089,"96":0.00458,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 92 97 3.5 3.6"},D:{"11":0.00916,"22":0.00916,"47":0.00916,"49":0.02291,"53":0.02291,"55":0.00458,"62":0.00916,"63":0.00916,"64":0.00458,"65":0.01374,"68":0.01374,"69":0.01374,"71":0.00916,"73":0.02291,"74":0.01374,"75":0.07788,"76":0.10994,"77":0.01832,"78":0.00916,"79":0.05497,"80":0.03665,"81":0.06872,"83":0.0733,"84":0.02291,"85":0.03207,"86":0.01832,"87":0.0962,"88":0.03207,"89":0.04123,"90":0.05497,"91":0.13285,"92":0.16492,"93":0.2886,"94":1.19106,"95":0.59095,"96":26.5698,"97":0.05039,"98":0.01832,_:"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 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 58 59 60 61 66 67 70 72 99"},F:{"79":0.00458,"80":0.00916,"81":0.45352,"82":0.50391,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0.00458,"13":0.02291,"14":0.11453,"15":0.24279,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00916,"10.1":0.00916,"11.1":0.00458,"12.1":0.06413,"13.1":0.18324,"14.1":0.56346,"15.1":0.7238,"15.2":0.06413},B:{"12":0.00458,"14":0.00458,"15":0.02749,"16":0.00916,"17":0.00916,"18":0.06413,"80":0.00458,"84":0.00916,"85":0.01832,"87":0.00916,"89":0.02291,"90":0.01374,"91":0.00458,"92":0.01374,"93":0.00916,"94":0.03207,"95":0.16034,"96":5.87284,_:"13 79 81 83 86 88"},G:{"8":0.02729,"3.2":0.00248,"4.0-4.1":0,"4.2-4.3":0.00124,"5.0-5.1":0.0062,"6.0-6.1":0.00248,"7.0-7.1":0.27409,"8.1-8.4":0.00372,"9.0-9.2":0.00124,"9.3":0.12402,"10.0-10.2":0,"10.3":0.10914,"11.0-11.2":0.11038,"11.3-11.4":0.01984,"12.0-12.1":0.01488,"12.2-12.5":0.60772,"13.0-13.1":0.02108,"13.2":0.00372,"13.3":0.06945,"13.4-13.7":0.15627,"14.0-14.4":0.64244,"14.5-14.8":3.28911,"15.0-15.1":6.3277,"15.2":0.58415},P:{"4":0.22684,"5.0-5.4":0.08216,"6.2-6.4":0.02123,"7.2-7.4":0.17283,"8.2":0.04108,"9.2":0.04321,"10.1":0.01044,"11.1-11.2":0.28085,"12.0":0.04321,"13.0":0.25925,"14.0":0.20524,"15.0":0.66972},I:{"0":0,"3":0,"4":0.00203,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00029,"4.2-4.3":0.00145,"4.4":0,"4.4.3-4.4.4":0.02874},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.12725,"9":0.01018,"10":0.01527,"11":0.44283,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.53648},H:{"0":0.21548},L:{"0":40.14322},S:{"2.5":0},R:{_:"0"},M:{"0":0.12464},Q:{"10.4":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 7db2e8d5914366..245b9be94141b6 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.01758,"47":0.00352,"52":0.0211,"63":0.00703,"66":0.02813,"69":0.01406,"78":0.02461,"82":0.00352,"84":0.00703,"85":0.01055,"87":0.01055,"88":0.04571,"89":0.01406,"90":0.00703,"91":0.01406,"92":0.01406,"93":0.22151,"94":1.21302,"95":0.00703,_:"2 3 4 5 6 7 8 9 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 64 65 67 68 70 71 72 73 74 75 76 77 79 80 81 83 86 96 3.5 3.6"},D:{"11":0.02813,"38":0.01055,"43":0.00352,"47":0.00352,"49":0.05274,"51":0.00703,"55":0.00352,"58":0.00703,"61":0.20393,"63":0.01406,"65":0.03164,"66":0.00703,"67":0.00703,"68":0.00352,"69":0.01055,"70":0.01055,"71":0.00703,"73":0.00703,"74":0.00703,"75":0.00352,"76":0.00352,"77":0.00703,"78":0.01055,"79":0.07735,"80":0.01758,"81":0.01758,"83":0.03164,"84":0.02461,"85":0.03164,"86":0.07735,"87":0.61882,"88":0.07384,"89":0.04219,"90":0.04571,"91":0.08438,"92":0.14767,"93":0.15119,"94":0.76297,"95":13.97258,"96":9.09238,"97":0.0211,"98":0.00352,_:"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 59 60 62 64 72 99"},F:{"77":0.00703,"78":0.01758,"79":0.02461,"80":0.75242,"81":0.31996,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00352,"17":0.00703,"18":0.0211,"84":0.00352,"86":0.00703,"89":0.01406,"90":0.00703,"91":0.00703,"92":0.03516,"93":0.01055,"94":0.03516,"95":1.72284,"96":0.73484,_:"13 14 15 16 79 80 81 83 85 87 88"},E:{"4":0,"13":0.01406,"14":0.16174,"15":0.21096,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.01055,"9.1":0.03868,"11.1":0.01406,"12.1":0.01758,"13.1":0.16525,"14.1":0.46411,"15.1":0.28128},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.01951,"8.1-8.4":0,"9.0-9.2":0.00108,"9.3":0.04986,"10.0-10.2":0.00542,"10.3":0.04444,"11.0-11.2":0.03902,"11.3-11.4":0.02926,"12.0-12.1":0.01843,"12.2-12.5":0.54193,"13.0-13.1":0.02168,"13.2":0.00867,"13.3":0.06612,"13.4-13.7":0.22544,"14.0-14.4":1.08061,"14.5-14.8":4.56739,"15.0-15.1":4.10567},P:{"4":0.11435,"5.0-5.4":0.08053,"6.2-6.4":0.0104,"7.2-7.4":0.09356,"8.2":0.01031,"9.2":0.03119,"10.1":0.01057,"11.1-11.2":0.14554,"12.0":0.05198,"13.0":0.13514,"14.0":0.18712,"15.0":1.87118},I:{"0":0,"3":0,"4":0.11245,"2.1":0,"2.2":0,"2.3":0,"4.1":0.16867,"4.2-4.3":0.33735,"4.4":0,"4.4.3-4.4.4":5.17264},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00749,"9":0.00749,"11":0.10106,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.56373},S:{"2.5":0},R:{_:"0"},M:{"0":0.14267},Q:{"10.4":0},O:{"0":0.4345},H:{"0":0.30698}}; +module.exports={C:{"34":0.01359,"52":0.01359,"63":0.04076,"69":0.02378,"78":0.01699,"81":0.00679,"82":0.0034,"84":0.00679,"88":0.01019,"89":0.01019,"90":0.0034,"91":0.02718,"92":0.0034,"93":0.0034,"94":0.4484,"95":0.99532,"96":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 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 83 85 86 87 97 3.5 3.6"},D:{"11":0.02038,"38":0.01019,"43":0.00679,"49":0.03397,"50":0.0034,"51":0.01019,"58":0.0034,"61":0.01019,"63":0.01019,"65":0.03057,"66":0.00679,"67":0.0034,"68":0.00679,"69":0.01019,"70":0.00679,"71":0.00679,"73":0.00679,"74":0.00679,"75":0.01699,"76":0.00679,"77":0.0034,"78":0.01359,"79":0.06794,"80":0.01699,"81":0.02038,"83":0.03057,"84":0.03057,"85":0.02038,"86":0.05775,"87":0.31932,"88":0.06115,"89":0.03737,"90":0.02718,"91":0.07134,"92":0.10531,"93":0.13928,"94":0.15287,"95":0.37027,"96":21.87328,"97":0.01359,"98":0.01359,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 52 53 54 55 56 57 59 60 62 64 72 99"},F:{"28":0.0034,"65":0.0034,"73":0.0034,"78":0.01359,"79":0.00679,"80":0.01699,"81":0.51974,"82":0.58089,_:"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 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"7":0.00679,"12":0.0034,"13":0.01359,"14":0.14267,"15":0.12229,_:"0 5 6 8 9 10 11 3.1 3.2 6.1 7.1 10.1","5.1":0.01019,"9.1":0.01019,"11.1":0.01019,"12.1":0.01699,"13.1":0.1087,"14.1":0.43482,"15.1":0.44161,"15.2":0.06454},B:{"12":0.0034,"16":0.00679,"17":0.0034,"18":0.02378,"84":0.0034,"89":0.01019,"91":0.00679,"92":0.02378,"93":0.01019,"94":0.00679,"95":0.05775,"96":2.32355,_:"13 14 15 79 80 81 83 85 86 87 88 90"},G:{"8":0,"3.2":0.00232,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00232,"6.0-6.1":0.00116,"7.0-7.1":0.02205,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06152,"10.0-10.2":0.00812,"10.3":0.04294,"11.0-11.2":0.01625,"11.3-11.4":0.02089,"12.0-12.1":0.02089,"12.2-12.5":0.54319,"13.0-13.1":0.01857,"13.2":0.00812,"13.3":0.04875,"13.4-13.7":0.22053,"14.0-14.4":0.92969,"14.5-14.8":3.56557,"15.0-15.1":5.48183,"15.2":0.58498},P:{"4":0.0925,"5.0-5.4":0.08216,"6.2-6.4":0.01028,"7.2-7.4":0.08222,"8.2":0.01026,"9.2":0.03083,"10.1":0.01026,"11.1-11.2":0.13362,"12.0":0.03083,"13.0":0.13362,"14.0":0.17473,"15.0":0.35973},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.19941,"4.2-4.3":0.39882,"4.4":0,"4.4.3-4.4.4":5.25114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00353,"11":0.08819,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.31029},H:{"0":0.26876},L:{"0":48.08749},S:{"2.5":0},R:{_:"0"},M:{"0":0.15845},Q:{"10.4":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 13c82d235d710a..9e489dee57bc29 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.01156,"52":0.06356,"53":0.01156,"56":0.02889,"60":0.01156,"63":0.01156,"66":0.00578,"67":0.01156,"68":0.00578,"72":0.01733,"78":0.06934,"80":0.00578,"83":0.00578,"84":0.00578,"85":0.01733,"88":0.01156,"89":0.01733,"90":0.02311,"91":0.052,"92":0.08667,"93":0.58936,"94":2.93522,"95":0.01156,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 54 55 57 58 59 61 62 64 65 69 70 71 73 74 75 76 77 79 81 82 86 87 96 3.5 3.6"},D:{"34":0.00578,"48":0.01156,"49":0.19645,"61":0.19645,"62":0.01156,"64":0.01156,"65":0.01733,"67":0.02311,"69":0.04045,"70":0.02311,"71":0.01156,"72":0.02889,"73":0.01733,"74":0.03467,"75":0.02311,"76":0.01733,"77":0.01156,"78":0.01733,"79":0.052,"80":0.06934,"81":0.08667,"83":0.04622,"84":0.04622,"85":0.04045,"86":0.06356,"87":0.35246,"88":0.04045,"89":0.11556,"90":0.08089,"91":0.13867,"92":0.33512,"93":0.32935,"94":1.38094,"95":16.22462,"96":7.94475,"97":0.01733,_:"4 5 6 7 8 9 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 58 59 60 63 66 68 98 99"},F:{"79":0.01156,"80":0.22534,"81":0.06934,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"14":0.00578,"16":0.01156,"17":0.02311,"18":0.04045,"83":0.00578,"84":0.00578,"85":0.01156,"86":0.01156,"88":0.00578,"89":0.01156,"90":0.01156,"91":0.02311,"92":0.02311,"93":0.02311,"94":0.17334,"95":7.53451,"96":2.6001,_:"12 13 15 79 80 81 87"},E:{"4":0,"12":0.02311,"13":0.06934,"14":0.34668,"15":0.6298,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01156,"10.1":0.01733,"11.1":0.05778,"12.1":0.08667,"13.1":0.30046,"14.1":1.76807,"15.1":0.75692},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00261,"5.0-5.1":0,"6.0-6.1":0.00522,"7.0-7.1":0.04172,"8.1-8.4":0.01825,"9.0-9.2":0.21122,"9.3":0.12778,"10.0-10.2":0.0339,"10.3":0.11474,"11.0-11.2":0.09909,"11.3-11.4":0.07041,"12.0-12.1":0.08084,"12.2-12.5":0.63889,"13.0-13.1":0.04433,"13.2":0.02868,"13.3":0.15125,"13.4-13.7":0.55805,"14.0-14.4":1.71587,"14.5-14.8":14.62141,"15.0-15.1":7.50237},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 12.0","9.2":0.01086,"11.1-11.2":0.01086,"13.0":0.03257,"14.0":0.05428,"15.0":0.89024},I:{"0":0,"3":0,"4":0.00618,"2.1":0,"2.2":0.04019,"2.3":0.07729,"4.1":0.01391,"4.2-4.3":0.14686,"4.4":0,"4.4.3-4.4.4":0.10821},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00681,"11":2.59329,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":20.90733},S:{"2.5":0},R:{_:"0"},M:{"0":0.31665},Q:{"10.4":0.05911},O:{"0":0.30821},H:{"0":0.10792}}; +module.exports={C:{"45":0.00574,"48":0.01148,"52":0.06314,"53":0.01148,"56":0.0287,"60":0.01148,"63":0.00574,"66":0.00574,"67":0.00574,"68":0.00574,"72":0.01722,"78":0.0574,"83":0.00574,"84":0.01148,"85":0.01148,"86":0.00574,"88":0.01148,"89":0.01722,"90":0.04592,"91":0.05166,"92":0.05166,"93":0.03444,"94":1.10208,"95":2.2386,"96":0.01148,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 54 55 57 58 59 61 62 64 65 69 70 71 73 74 75 76 77 79 80 81 82 87 97 3.5 3.6"},D:{"49":0.1435,"52":0.00574,"61":0.03444,"62":0.01148,"64":0.01722,"65":0.01722,"66":0.00574,"67":0.01722,"69":0.04592,"70":0.01722,"71":0.01148,"72":0.02296,"73":0.01148,"74":0.0287,"75":0.01722,"76":0.01148,"77":0.00574,"78":0.02296,"79":0.05166,"80":0.08036,"81":0.10906,"83":0.04592,"84":0.04592,"85":0.03444,"86":0.0574,"87":0.33292,"88":0.03444,"89":0.10332,"90":0.07462,"91":0.10332,"92":0.22386,"93":1.41778,"94":0.56252,"95":0.65436,"96":23.57992,"97":0.01148,"98":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 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 63 68 99"},F:{"79":0.00574,"80":0.01148,"81":0.09758,"82":0.16646,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.01148,"13":0.06314,"14":0.29848,"15":0.30996,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01148,"10.1":0.01148,"11.1":0.04592,"12.1":0.07462,"13.1":0.26978,"14.1":1.28576,"15.1":1.2915,"15.2":0.17794},B:{"15":0.00574,"16":0.00574,"17":0.01722,"18":0.04018,"83":0.00574,"84":0.00574,"85":0.00574,"86":0.01148,"89":0.01148,"90":0.01148,"91":0.01148,"92":0.01722,"93":0.01148,"94":0.04592,"95":0.16072,"96":9.95316,_:"12 13 14 79 80 81 87 88"},G:{"8":0.00535,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00802,"7.0-7.1":0.03207,"8.1-8.4":0.01871,"9.0-9.2":0.28329,"9.3":0.12828,"10.0-10.2":0.03207,"10.3":0.09888,"11.0-11.2":0.09888,"11.3-11.4":0.06949,"12.0-12.1":0.06949,"12.2-12.5":0.5746,"13.0-13.1":0.03742,"13.2":0.0294,"13.3":0.1363,"13.4-13.7":0.53184,"14.0-14.4":1.59552,"14.5-14.8":9.20966,"15.0-15.1":12.87375,"15.2":0.88996},P:{"4":0.22684,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.17283,"8.2":0.01026,"9.2":0.01103,"10.1":0.01026,"11.1-11.2":0.01103,"12.0":0.04321,"13.0":0.0331,"14.0":0.0331,"15.0":0.11033},I:{"0":0,"3":0,"4":0.00413,"2.1":0,"2.2":0.06882,"2.3":0.10874,"4.1":0.01239,"4.2-4.3":0.19546,"4.4":0,"4.4.3-4.4.4":0.10461},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00678,"9":0.00678,"11":2.56944,_:"6 7 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.00426},O:{"0":0.30672},H:{"0":0.10486},L:{"0":20.86208},S:{"2.5":0},R:{_:"0"},M:{"0":0.32802},Q:{"10.4":0.05964}}; 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 1ccc269f972ce6..4de0f65f9ab33d 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.00889,"43":0.00296,"47":0.00889,"48":0.00296,"52":0.0563,"57":0.00889,"61":0.00296,"68":0.00593,"72":0.01482,"73":0.01185,"78":0.03852,"79":0.00296,"80":0.00296,"82":0.00296,"84":0.01185,"87":0.01482,"88":0.03259,"89":0.02667,"90":0.00889,"91":0.02667,"92":0.02963,"93":0.36741,"94":1.84595,"95":0.09482,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 56 58 59 60 62 63 64 65 66 67 69 70 71 74 75 76 77 81 83 85 86 96 3.5 3.6"},D:{"11":0.00296,"38":0.00593,"39":0.00889,"42":0.00296,"43":0.00296,"47":0.01482,"49":0.02963,"50":0.00593,"51":0.00296,"54":0.02074,"56":0.00889,"57":0.00889,"58":0.00296,"61":0.06222,"63":0.00889,"64":0.00296,"65":0.00593,"66":0.00593,"67":0.01185,"68":0.01778,"69":0.00593,"70":0.00593,"71":0.00296,"72":0.00889,"73":0.01185,"74":0.00889,"75":0.00889,"76":0.01482,"77":0.00593,"78":0.00889,"79":0.04445,"80":0.03259,"81":0.01778,"83":0.02074,"84":0.01778,"85":0.01778,"86":0.05926,"87":0.09482,"88":0.02667,"89":0.03259,"90":0.03852,"91":0.11259,"92":0.17185,"93":0.14815,"94":0.53334,"95":9.33345,"96":5.77785,"97":0.01778,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 44 45 46 48 52 53 55 59 60 62 98 99"},F:{"28":0.01482,"36":0.00296,"46":0.00296,"65":0.02074,"77":0.00296,"78":0.00296,"79":0.0237,"80":0.66668,"81":0.20445,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01185,"13":0.00593,"14":0.00296,"15":0.00296,"16":0.00889,"17":0.01185,"18":0.03852,"84":0.00593,"85":0.00593,"86":0.00296,"89":0.01185,"90":0.00593,"91":0.00889,"92":0.0237,"93":0.01482,"94":0.04741,"95":1.0489,"96":0.41778,_:"79 80 81 83 87 88"},E:{"4":0,"13":0.01482,"14":0.0563,"15":0.09185,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01185,"10.1":0.00296,"11.1":0.00296,"12.1":0.02963,"13.1":0.03852,"14.1":0.17482,"15.1":0.12445},G:{"8":0,"3.2":0,"4.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},P:{"4":0,"5.0-5.4":0.08053,"6.2-6.4":0,"7.2-7.4":0,"8.2":0.01014,"9.2":0.26376,"10.1":0.06087,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00593,"11":0.15408,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":6.23415},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"34":0.0052,"47":0.0078,"52":0.03639,"57":0.0052,"72":0.0078,"73":0.0104,"78":0.02599,"80":0.0026,"82":0.0052,"84":0.0104,"87":0.0078,"88":0.02079,"89":0.01559,"90":0.0052,"91":0.01819,"92":0.0078,"93":0.02339,"94":0.68874,"95":1.08378,"96":0.04158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 81 83 85 86 97 3.5 3.6"},D:{"11":0.0052,"34":0.0026,"38":0.0078,"39":0.0104,"43":0.0026,"47":0.0104,"49":0.02339,"50":0.0052,"51":0.0052,"54":0.0078,"56":0.0078,"57":0.0052,"60":0.0026,"61":0.02339,"62":0.0052,"63":0.0052,"64":0.0078,"65":0.0052,"66":0.0078,"67":0.0078,"68":0.01559,"69":0.0052,"70":0.0052,"71":0.0026,"72":0.013,"73":0.013,"74":0.0052,"75":0.0078,"76":0.01819,"77":0.0078,"78":0.013,"79":0.04418,"80":0.02079,"81":0.01559,"83":0.013,"84":0.01819,"85":0.013,"86":0.04158,"87":0.08577,"88":0.02859,"89":0.03639,"90":0.02339,"91":0.05198,"92":0.14295,"93":0.06498,"94":0.18973,"95":0.31188,"96":12.65453,"97":0.01559,"98":0.0026,_:"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 40 41 42 44 45 46 48 52 53 55 58 59 99"},F:{"28":0.013,"36":0.0026,"65":0.03119,"66":0.0078,"68":0.0026,"79":0.01819,"80":0.01559,"81":0.2573,"82":0.40025,_:"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 67 69 70 71 72 73 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},E:{"4":0,"7":0.0026,"12":0.0052,"13":0.013,"14":0.05198,"15":0.04158,_:"0 5 6 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.0104,"10.1":0.0026,"11.1":0.01559,"12.1":0.013,"13.1":0.04158,"14.1":0.12995,"15.1":0.16114,"15.2":0.02859},B:{"12":0.0078,"13":0.0052,"15":0.0052,"16":0.0052,"17":0.02339,"18":0.02859,"84":0.0078,"85":0.0026,"89":0.0078,"90":0.0026,"91":0.0052,"92":0.01819,"93":0.0078,"94":0.01819,"95":0.03899,"96":1.19554,_:"14 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00043,"5.0-5.1":0.00586,"6.0-6.1":0.00108,"7.0-7.1":0.0282,"8.1-8.4":0.00152,"9.0-9.2":0,"9.3":0.02885,"10.0-10.2":0.00152,"10.3":0.02798,"11.0-11.2":0.05272,"11.3-11.4":0.00456,"12.0-12.1":0.0115,"12.2-12.5":0.17029,"13.0-13.1":0.00629,"13.2":0.00347,"13.3":0.04209,"13.4-13.7":0.05879,"14.0-14.4":0.17051,"14.5-14.8":0.56425,"15.0-15.1":0.89399,"15.2":0.09458},P:{"4":0.19439,"5.0-5.4":0.08216,"6.2-6.4":0.01034,"7.2-7.4":0.0648,"8.2":0.01026,"9.2":0.0108,"10.1":0.01034,"11.1-11.2":0.0324,"12.0":0.0108,"13.0":0.0432,"14.0":0.0648,"15.0":0.14039},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.00385,"4.4":0,"4.4.3-4.4.4":0.03257},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00809,"10":0.00404,"11":0.13342,_:"6 7 9 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.0074},O:{"0":0.34785},H:{"0":35.11102},L:{"0":39.53579},S:{"2.5":0},R:{_:"0"},M:{"0":0.12582},Q:{"10.4":0.0148}}; 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 e0891d63ac29a8..65aacbc84cccc3 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.02773,"55":0.01849,"78":0.01387,"88":0.08782,"89":0.00924,"91":0.01849,"92":0.00462,"93":0.0832,"94":0.58237,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 95 96 3.5 3.6"},D:{"49":0.03698,"59":0.0416,"63":0.00462,"65":0.01387,"67":0.00924,"68":0.00924,"71":0.01387,"72":0.00462,"73":0.01387,"74":0.00924,"77":0.00924,"79":0.06009,"80":0.01849,"81":0.01387,"83":0.03698,"84":0.00924,"85":0.01387,"86":0.06933,"87":0.8412,"88":0.03698,"89":0.02773,"90":0.0416,"91":0.0416,"92":0.23572,"93":0.15715,"94":20.63261,"95":9.9789,"96":6.17961,"97":0.00462,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 64 66 69 70 75 76 78 98 99"},F:{"39":0.00462,"42":0.01849,"79":0.00924,"80":1.22483,"81":0.54077,_:"9 11 12 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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00462},B:{"18":0.00462,"86":0.02311,"92":0.00924,"94":0.00924,"95":0.31892,"96":0.12017,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 93"},E:{"4":0,"13":0.00924,"14":0.35127,"15":0.11093,_:"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.55926,"12.1":0.00462,"13.1":0.03698,"14.1":0.17101,"15.1":0.24497},G:{"8":0.001,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00199,"6.0-6.1":0.0005,"7.0-7.1":0.00299,"8.1-8.4":0,"9.0-9.2":0.00498,"9.3":0.01693,"10.0-10.2":0.00448,"10.3":0.01096,"11.0-11.2":0.00946,"11.3-11.4":0.01096,"12.0-12.1":0.01793,"12.2-12.5":0.30926,"13.0-13.1":0.01494,"13.2":0.00697,"13.3":0.04631,"13.4-13.7":0.16185,"14.0-14.4":0.72112,"14.5-14.8":1.87102,"15.0-15.1":1.76544},P:{"4":0.29913,"5.0-5.4":0.01994,"6.2-6.4":0.08974,"7.2-7.4":0.20939,"8.2":0.01994,"9.2":0.08974,"10.1":0.04986,"11.1-11.2":0.18945,"12.0":0.10968,"13.0":0.20939,"14.0":0.26922,"15.0":0.9672},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.00157,"4.4":0,"4.4.3-4.4.4":0.01377},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24497,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.1787},S:{"2.5":0},R:{_:"0"},M:{"0":0.03226},Q:{"10.4":0.01075},O:{"0":0.57534},H:{"0":0.31053}}; +module.exports={C:{"52":0.01778,"55":0.01778,"78":0.00445,"88":0.32449,"89":0.00445,"91":0.03112,"93":0.00889,"94":0.17336,"95":0.4045,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 92 96 97 3.5 3.6"},D:{"49":0.03556,"59":0.04001,"65":0.00889,"67":0.01334,"70":0.00889,"71":0.01778,"72":0.00889,"73":0.00445,"74":0.02223,"76":0.00889,"77":0.00889,"78":0.00889,"79":0.04001,"80":0.01778,"81":0.01334,"83":0.00889,"84":0.00889,"85":0.00889,"86":0.06223,"87":0.03112,"88":0.02667,"89":0.03556,"90":0.02667,"91":0.11113,"92":0.08001,"93":0.05334,"94":18.56677,"95":0.28448,"96":16.50873,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 69 75 97 98 99"},F:{"28":0.00445,"42":0.01334,"79":0.00445,"80":0.02223,"81":0.85789,"82":0.80899,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01334,"14":0.13335,"15":0.04445,_:"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.49784,"12.1":0.00445,"13.1":0.04001,"14.1":0.12891,"15.1":0.23559,"15.2":0.04445},B:{"18":0.01778,"86":0.01334,"95":0.01334,"96":0.52007,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94"},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.00055,"7.0-7.1":0.00333,"8.1-8.4":0,"9.0-9.2":0.00444,"9.3":0.01996,"10.0-10.2":0.00055,"10.3":0.02883,"11.0-11.2":0.00887,"11.3-11.4":0.00998,"12.0-12.1":0.00776,"12.2-12.5":0.31989,"13.0-13.1":0.01608,"13.2":0.00942,"13.3":0.05322,"13.4-13.7":0.13638,"14.0-14.4":0.69854,"14.5-14.8":1.60499,"15.0-15.1":2.39335,"15.2":0.22121},P:{"4":0.31632,"5.0-5.4":0.02041,"6.2-6.4":0.10204,"7.2-7.4":0.20408,"8.2":0.02041,"9.2":0.07143,"10.1":0.04082,"11.1-11.2":0.15306,"12.0":0.09183,"13.0":0.22448,"14.0":0.2653,"15.0":0.41836},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.00079,"4.4":0,"4.4.3-4.4.4":0.01468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2667,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.77201},H:{"0":0.39962},L:{"0":48.06972},S:{"2.5":0},R:{_:"0"},M:{"0":0.03332},Q:{"10.4":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 9ef3c4ea9c3aab..2da24fe2692ead 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:{"4":0.0084,"5":0.0042,"15":0.0084,"17":0.02101,"38":0.0042,"43":0.0042,"44":0.0042,"47":0.0168,"48":0.0042,"50":0.0084,"51":0.0084,"52":0.02101,"56":0.0084,"60":0.0042,"61":0.04621,"67":0.0126,"69":0.0084,"70":0.0042,"72":0.0042,"78":0.04621,"79":0.0084,"80":0.02941,"81":0.02941,"82":0.02101,"83":0.0168,"84":0.0126,"85":0.0084,"87":0.0084,"88":0.02941,"89":0.02521,"90":0.0084,"91":0.02101,"92":0.03361,"93":0.30247,"94":1.78543,"95":0.05461,_:"2 3 6 7 8 9 10 11 12 13 14 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 45 46 49 53 54 55 57 58 59 62 63 64 65 66 68 71 73 74 75 76 77 86 96 3.5 3.6"},D:{"23":0.0084,"24":0.0126,"25":0.0084,"38":0.02101,"40":0.0084,"47":0.0168,"48":0.0126,"49":0.05041,"53":0.04621,"55":0.0042,"56":0.03781,"57":0.0042,"58":0.0042,"62":0.0084,"63":0.0084,"65":0.0042,"67":0.0168,"68":0.0084,"69":0.0126,"70":0.0084,"71":0.05881,"72":0.0126,"73":0.0168,"74":0.0084,"75":0.02101,"76":0.0126,"78":0.03361,"79":0.10923,"80":0.04621,"81":0.02101,"83":0.09662,"84":0.17644,"85":0.21005,"86":0.19745,"87":2.05429,"88":0.04621,"89":0.05041,"90":0.08402,"91":0.13023,"92":0.22265,"93":0.21425,"94":0.61755,"95":16.3629,"96":8.08693,"97":0.03361,"98":0.0084,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 50 51 52 54 59 60 61 64 66 77 99"},F:{"28":0.0042,"36":0.0126,"40":0.0042,"46":0.0042,"52":0.0084,"68":0.0168,"69":0.0126,"70":0.0042,"71":0.0042,"72":0.0042,"78":0.0084,"79":0.0042,"80":1.29391,"81":0.56714,_:"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 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0042,"16":0.0042,"17":0.0042,"18":0.06722,"83":0.0084,"84":0.0084,"85":0.0084,"86":0.02941,"89":0.0168,"90":0.0042,"91":0.0084,"92":0.03781,"93":0.0168,"94":0.05041,"95":1.54177,"96":0.63855,_:"13 14 15 79 80 81 87 88"},E:{"4":0,"10":0.0042,"12":0.0126,"13":0.07562,"14":0.27307,"15":0.52933,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04621,"11.1":0.0126,"12.1":0.04201,"13.1":0.26886,"14.1":1.23509,"15.1":0.63855},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00661,"7.0-7.1":0.06608,"8.1-8.4":0.04846,"9.0-9.2":0.00881,"9.3":0.13657,"10.0-10.2":0.02864,"10.3":0.16741,"11.0-11.2":0.05507,"11.3-11.4":0.13437,"12.0-12.1":0.11675,"12.2-12.5":1.9803,"13.0-13.1":0.10794,"13.2":0.03745,"13.3":0.29517,"13.4-13.7":0.78419,"14.0-14.4":3.24029,"14.5-14.8":8.77148,"15.0-15.1":6.03122},P:{"4":0.23393,"5.0-5.4":0.01063,"6.2-6.4":0.02046,"7.2-7.4":0.07161,"8.2":0.02127,"9.2":0.05115,"10.1":0.02046,"11.1-11.2":0.01063,"12.0":0.0638,"13.0":0.08507,"14.0":0.0957,"15.0":1.28663},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00373,"4.4":0,"4.4.3-4.4.4":0.03107},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05361,"9":0.04289,"10":0.02144,"11":0.60043,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":33.70713},S:{"2.5":0},R:{_:"0"},M:{"0":0.203},Q:{"10.4":0.0348},O:{"0":0.7656},H:{"0":0.54362}}; +module.exports={C:{"4":0.00815,"5":0.00408,"15":0.00408,"17":0.00815,"43":0.00815,"44":0.00815,"47":0.00815,"48":0.00815,"50":0.00815,"51":0.00815,"52":0.0163,"56":0.00815,"57":0.00408,"59":0.0163,"60":0.00408,"61":0.0326,"67":0.00815,"69":0.00408,"72":0.01223,"78":0.03668,"79":0.0163,"80":0.01223,"81":0.02853,"82":0.01223,"83":0.00815,"84":0.01223,"87":0.00815,"88":0.02038,"89":0.02445,"90":0.00408,"91":0.02038,"92":0.01223,"93":0.01223,"94":0.652,"95":1.2225,"96":0.0978,_:"2 3 6 7 8 9 10 11 12 13 14 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 45 46 49 53 54 55 58 62 63 64 65 66 68 70 71 73 74 75 76 77 85 86 97 3.5 3.6"},D:{"23":0.00408,"24":0.00815,"25":0.00815,"38":0.02853,"40":0.01223,"41":0.00815,"43":0.01223,"47":0.0163,"48":0.00815,"49":0.02853,"53":0.0489,"55":0.0326,"56":0.04075,"57":0.00815,"58":0.00815,"59":0.00408,"63":0.00815,"65":0.01223,"66":0.00815,"67":0.0163,"68":0.00408,"69":0.01223,"70":0.00815,"71":0.05298,"72":0.02038,"73":0.01223,"74":0.01223,"76":0.02038,"78":0.02853,"79":0.1141,"80":0.0326,"81":0.02038,"83":0.06928,"84":0.1467,"85":0.1467,"86":0.1793,"87":1.47108,"88":0.04075,"89":0.0489,"90":0.1467,"91":0.10188,"92":0.23228,"93":0.14263,"94":0.22005,"95":0.54605,"96":23.97323,"97":0.02445,"98":0.02038,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 42 44 45 46 50 51 52 54 60 61 62 64 75 77 99"},F:{"36":0.01223,"46":0.00815,"52":0.00815,"68":0.02853,"70":0.01223,"80":0.00408,"81":0.36675,"82":0.4238,_:"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 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00408,"10":0.01223,"12":0.0163,"13":0.05298,"14":0.29748,"15":0.28933,_:"0 5 6 7 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01223,"11.1":0.00815,"12.1":0.05298,"13.1":0.2771,"14.1":1.1899,"15.1":1.3529,"15.2":0.17115},B:{"12":0.00408,"14":0.00408,"16":0.00815,"17":0.01223,"18":0.10188,"84":0.00815,"85":0.02853,"86":0.01223,"89":0.01223,"90":0.00815,"91":0.00408,"92":0.02853,"93":0.00408,"94":0.01223,"95":0.04075,"96":2.14345,_:"13 15 79 80 81 83 87 88"},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.00705,"7.0-7.1":0.07993,"8.1-8.4":0.04232,"9.0-9.2":0.0047,"9.3":0.1293,"10.0-10.2":0.03997,"10.3":0.16927,"11.0-11.2":0.05877,"11.3-11.4":0.14106,"12.0-12.1":0.09404,"12.2-12.5":1.92076,"13.0-13.1":0.12695,"13.2":0.03291,"13.3":0.27271,"13.4-13.7":0.71,"14.0-14.4":2.7295,"14.5-14.8":7.13761,"15.0-15.1":9.00665,"15.2":0.79464},P:{"4":0.30331,"5.0-5.4":0.02166,"6.2-6.4":0.05038,"7.2-7.4":0.01083,_:"8.2","9.2":0.03023,"10.1":0.03023,"11.1-11.2":0.07053,"12.0":0.04333,"13.0":0.06499,"14.0":0.08666,"15.0":0.20582},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00269,"4.4":0,"4.4.3-4.4.4":0.03878},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04086,"9":0.02919,"10":0.0467,"11":0.53118,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00592},O:{"0":0.85898},H:{"0":0.51598},L:{"0":34.07336},S:{"2.5":0},R:{_:"0"},M:{"0":0.18957},Q:{"10.4":0.03554}}; 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 dbe400a81fafa3..ac8befdfd95472 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:{"56":0.24045,"59":0.04508,"72":0.01127,"78":0.01127,"88":0.04508,"93":0.71759,"94":3.67059,"95":0.06387,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 96 3.5 3.6"},D:{"55":0.06387,"57":0.09768,"62":0.03381,"63":0.05636,"67":0.03381,"75":0.02254,"77":0.26299,"78":0.01127,"79":0.03381,"81":0.06387,"85":0.03381,"86":0.16531,"88":0.09768,"89":0.03381,"90":0.08641,"91":0.03381,"92":0.61991,"93":0.38321,"94":0.60863,"95":11.09066,"96":4.86907,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 58 59 60 61 64 65 66 68 69 70 71 72 73 74 76 80 83 84 87 97 98 99"},F:{"74":0.07514,"79":0.01127,"80":0.24045,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 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.20664,"13":0.04508,"14":0.15404,"15":0.04508,"16":0.05636,"17":0.03381,"18":0.22918,"80":0.05636,"81":0.10895,"84":0.01127,"85":0.05636,"86":0.03381,"89":0.16531,"90":0.10895,"91":0.08641,"92":0.19536,"93":0.09768,"94":0.49217,"95":6.75509,"96":1.5028,_:"79 83 87 88"},E:{"4":0,"14":0.16531,_:"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 14.1","13.1":0.03381,"15.1":0.03381},G:{"8":0,"3.2":0,"4.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.0089,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.01779,"11.3-11.4":0.0089,"12.0-12.1":0.01779,"12.2-12.5":0.03558,"13.0-13.1":0.0089,"13.2":0.0089,"13.3":0.01779,"13.4-13.7":0.10675,"14.0-14.4":0.25797,"14.5-14.8":0.09785,"15.0-15.1":0.06227},P:{"4":0.57426,"5.0-5.4":0.09067,"6.2-6.4":0.07052,"7.2-7.4":2.7907,"8.2":0.01014,"9.2":0.07052,"10.1":0.06087,"11.1-11.2":0.77575,"12.0":0.01007,"13.0":0.49366,"14.0":0.22164,"15.0":1.84368},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.02498},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06387,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":54.57697},S:{"2.5":0},R:{_:"0"},M:{"0":0.0999},Q:{"10.4":0.01249},O:{"0":2.48511},H:{"0":0.43744}}; +module.exports={C:{"35":0.02345,"50":0.02345,"54":0.01172,"56":0.2462,"59":0.02345,"72":0.03517,"86":0.01172,"89":0.01172,"91":0.03517,"92":0.05862,"94":2.21584,"95":2.40342,"96":0.11724,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 55 57 58 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 87 88 90 93 97 3.5 3.6"},D:{"56":0.01172,"57":0.02345,"72":0.14069,"75":0.01172,"77":0.01172,"78":0.03517,"79":0.0469,"80":0.03517,"81":0.08207,"85":0.02345,"86":0.34,"88":0.01172,"89":0.38689,"91":0.03517,"93":0.21103,"94":0.18758,"95":0.17586,"96":11.53642,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 76 83 84 87 90 92 97 98 99"},F:{"74":0.05862,"77":0.0469,"81":0.12896,"82":0.21103,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.0469,_:"0 5 6 7 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01172,"14.1":0.07034,"15.1":0.08207,"15.2":0.01172},B:{"12":0.01172,"13":0.01172,"15":0.03517,"16":0.03517,"17":0.02345,"18":0.07034,"80":0.01172,"83":0.07034,"84":0.16414,"86":0.02345,"90":0.18758,"93":0.10552,"94":0.25793,"95":0.08207,"96":2.84893,_:"14 79 81 85 87 88 89 91 92"},G:{"8":0,"3.2":0,"4.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.00698,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00698,"12.2-12.5":0.07683,"13.0-13.1":0.00698,"13.2":0,"13.3":0.03492,"13.4-13.7":0,"14.0-14.4":0.18853,"14.5-14.8":0.14663,"15.0-15.1":0.10472,"15.2":0},P:{"4":0.3418,"5.0-5.4":0.04021,"6.2-6.4":0.01005,"7.2-7.4":2.37251,"8.2":0.01026,"9.2":0.06032,"10.1":0.01034,"11.1-11.2":0.77408,"12.0":0.23122,"13.0":0.67355,"14.0":0.56297,"15.0":0.8344},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.18486,"4.4":0,"4.4.3-4.4.4":0.26049},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08207,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.72811},H:{"0":0.13385},L:{"0":67.79713},S:{"2.5":0},R:{_:"0"},M:{"0":0.12017},Q:{"10.4":0.04948}}; 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 70e67c5a75ef58..29be8454e5ce97 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.00796,"35":0.00199,"43":0.06365,"52":0.01591,"54":0.00199,"68":0.00398,"72":0.00597,"75":0.00796,"76":0.00199,"78":0.01392,"84":0.07956,"86":0.00398,"88":0.00199,"89":0.04376,"91":0.00995,"92":0.01392,"93":0.22874,"94":1.25108,_:"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 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 77 79 80 81 82 83 85 87 90 95 96 3.5 3.6"},D:{"11":0.00398,"23":0.00398,"28":0.00398,"47":0.00199,"49":0.01989,"51":0.00597,"53":0.00398,"60":0.00398,"62":0.00796,"63":0.00597,"65":0.00796,"66":0.00995,"67":0.00995,"69":0.00597,"72":0.09746,"74":0.02188,"75":0.03381,"79":0.0358,"80":0.0179,"81":0.05171,"83":0.04177,"87":0.24664,"88":0.31824,"89":0.09348,"90":0.00199,"91":0.03978,"92":0.12332,"93":0.03978,"94":0.38786,"95":4.50707,"96":2.31321,"97":0.00199,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 52 54 55 56 57 58 59 61 64 68 70 71 73 76 77 78 84 85 86 98 99"},F:{"42":0.00199,"49":0.00597,"70":0.00199,"72":0.00199,"73":0.00796,"76":0.00398,"78":0.00199,"79":0.03381,"80":0.48929,"81":0.32222,_:"9 11 12 15 16 17 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 60 62 63 64 65 66 67 68 69 71 74 75 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.02586,"14":0.00995,"15":0.00398,"16":0.02984,"17":0.00398,"18":0.04177,"80":0.00398,"84":0.00199,"85":0.00398,"88":0.00597,"89":0.01989,"90":0.00398,"91":0.01392,"92":0.00796,"93":0.00597,"94":0.03381,"95":0.543,"96":0.1094,_:"12 79 81 83 86 87"},E:{"4":0,"13":0.00796,"14":0.04376,"15":0.01392,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 15.1","5.1":0.00597,"11.1":0.00398,"12.1":0.00398,"13.1":0.05171,"14.1":0.09348},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00797,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.1526,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00429,"10.0-10.2":0.00429,"10.3":0.50498,"11.0-11.2":0.06619,"11.3-11.4":0.18937,"12.0-12.1":0.01226,"12.2-12.5":1.46776,"13.0-13.1":0.14831,"13.2":0.00184,"13.3":0.07232,"13.4-13.7":0.17711,"14.0-14.4":0.7446,"14.5-14.8":2.04689,"15.0-15.1":0.52766},P:{"4":0.07152,"5.0-5.4":0.04087,"6.2-6.4":0.01022,"7.2-7.4":0.42915,"8.2":0.02044,"9.2":0.12261,"10.1":0.03065,"11.1-11.2":0.80721,"12.0":0.06131,"13.0":0.22479,"14.0":0.13283,"15.0":0.7459},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00613,"4.2-4.3":0.02898,"4.4":0,"4.4.3-4.4.4":0.15715},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.5072,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":76.21267},S:{"2.5":0.00801},R:{_:"0"},M:{"0":0.09613},Q:{"10.4":0.02403},O:{"0":0.35248},H:{"0":1.17557}}; +module.exports={C:{"33":0.00227,"52":0.02494,"56":0.00227,"61":0.00227,"76":0.00227,"78":0.00453,"84":0.00453,"85":0.00227,"88":0.00227,"89":0.0136,"90":0.01134,"91":0.03174,"93":0.00227,"94":0.7005,"95":1.6141,"96":0.00227,_:"2 3 4 5 6 7 8 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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 86 87 92 97 3.5 3.6"},D:{"11":0.0068,"33":0.00453,"34":0.00227,"39":0.00453,"40":0.00227,"43":0.14055,"53":0.05668,"55":0.0068,"59":0.0068,"63":0.02494,"64":0.01814,"66":0.01134,"67":0.00453,"69":0.00227,"71":0.0068,"72":0.00227,"74":0.00227,"79":0.01814,"80":0.01134,"81":0.07481,"83":0.00227,"84":0.01587,"86":0.02494,"87":0.17909,"88":0.21083,"89":0.1927,"90":0.03174,"91":0.09748,"92":0.09975,"93":0.06348,"94":0.12242,"95":0.36499,"96":7.00276,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 41 42 44 45 46 47 48 49 50 51 52 54 56 57 58 60 61 62 65 68 70 73 75 76 77 78 85 97 98 99"},F:{"44":0.00227,"65":0.0136,"76":0.00453,"77":0.0068,"81":0.28338,"82":1.01335,_:"9 11 12 15 16 17 18 19 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 73 74 75 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00227,"14":0.00227,"15":0.00453,_:"0 5 6 7 8 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.13375,"11.1":0.07254,"12.1":0.0068,"13.1":0.03854,"14.1":0.07254,"15.1":0.05894,"15.2":0.0068},B:{"12":0.00453,"13":0.00453,"14":0.04081,"15":0.07028,"18":0.03174,"81":0.00227,"84":0.02494,"85":0.00453,"88":0.00227,"89":0.00453,"91":0.0068,"92":0.0136,"93":0.03174,"94":0.0068,"95":0.04081,"96":1.18337,_:"16 17 79 80 83 86 87 90"},G:{"8":0.03389,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.039,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04156,"10.0-10.2":0.00256,"10.3":0.31777,"11.0-11.2":0.19693,"11.3-11.4":0.09655,"12.0-12.1":0.00959,"12.2-12.5":1.33757,"13.0-13.1":0.08056,"13.2":0.01726,"13.3":0.05818,"13.4-13.7":0.11125,"14.0-14.4":0.98975,"14.5-14.8":2.31453,"15.0-15.1":0.65536,"15.2":0.09207},P:{"4":0.39038,"5.0-5.4":0.02055,"6.2-6.4":0.03082,"7.2-7.4":0.32874,_:"8.2","9.2":0.08218,"10.1":0.01027,"11.1-11.2":0.47256,"12.0":0.18491,"13.0":0.08218,"14.0":0.14382,"15.0":0.14382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00157,"4.2-4.3":0.00668,"4.4":0,"4.4.3-4.4.4":0.06133},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.4602,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.29382},H:{"0":0.7979},L:{"0":74.91884},S:{"2.5":0},R:{_:"0"},M:{"0":0.10052},Q:{"10.4":0.0232}}; 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 dc6f3ff3573e69..014c3ac10f340b 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:{"29":0.00941,"48":0.0047,"50":0.00941,"78":0.00941,"90":0.00941,"91":0.01411,"92":0.02822,"93":0.23515,"94":0.81832,"95":0.00941,_:"2 3 4 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 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 96 3.5 3.6"},D:{"40":0.0047,"49":0.00941,"65":0.01411,"66":0.02822,"69":0.0047,"73":0.0047,"75":0.02352,"76":0.01411,"77":0.03292,"79":0.03762,"80":0.0047,"81":0.01881,"84":0.01411,"85":0.00941,"86":0.01411,"87":0.01881,"88":0.01411,"89":0.01411,"90":0.04233,"91":0.01881,"92":0.07995,"93":0.07525,"94":1.91882,"95":16.3006,"96":9.11441,"97":0.01411,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 70 71 72 74 78 83 98 99"},F:{"75":0.00941,"79":0.03762,"80":0.23515,"81":0.10817,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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.01411,"13":0.00941,"15":0.14579,"16":0.00941,"17":0.0047,"18":0.04233,"84":0.0047,"85":0.05173,"86":0.0047,"87":0.0047,"89":0.00941,"90":0.02352,"91":0.00941,"92":0.0047,"93":0.0047,"94":0.1552,"95":5.84113,"96":2.49259,_:"14 79 80 81 83 88"},E:{"4":0,"12":0.01881,"13":0.00941,"14":0.16931,"15":1.00174,_:"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.04233,"12.1":0.02352,"13.1":0.51263,"14.1":1.7307,"15.1":0.85124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01193,"8.1-8.4":0.088,"9.0-9.2":0,"9.3":0.01193,"10.0-10.2":0,"10.3":0.25057,"11.0-11.2":0.01641,"11.3-11.4":0.00746,"12.0-12.1":0.04773,"12.2-12.5":1.09028,"13.0-13.1":0.01641,"13.2":0,"13.3":0.00895,"13.4-13.7":0.20433,"14.0-14.4":0.70846,"14.5-14.8":4.79364,"15.0-15.1":7.66027},P:{"4":0.0957,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.32964,"8.2":0.01026,"9.2":0.04253,"10.1":0.01053,"11.1-11.2":0.18077,"12.0":0.04214,"13.0":0.04253,"14.0":0.0638,"15.0":3.34953},I:{"0":0,"3":0,"4":0.0052,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00112,"4.4":0,"4.4.3-4.4.4":0.00427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0047,"11":0.63961,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":34.77648},S:{"2.5":0},R:{_:"0"},M:{"0":0.67802},Q:{"10.4":0},O:{"0":0.07416},H:{"0":1.27377}}; +module.exports={C:{"52":0.04215,"57":0.00937,"63":0.00468,"70":0.00468,"72":0.01405,"73":0.00468,"78":0.01873,"86":0.00937,"88":0.00937,"93":0.02342,"94":0.44957,"95":0.64625,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 64 65 66 67 68 69 71 74 75 76 77 79 80 81 82 83 84 85 87 89 90 91 92 96 97 3.5 3.6"},D:{"23":0.00937,"58":0.00468,"66":0.02342,"69":0.00468,"73":0.01873,"74":0.00937,"75":0.02342,"76":0.03746,"77":0.01405,"78":0.00468,"79":0.02342,"81":0.00937,"83":0.05151,"84":0.04215,"85":0.04215,"86":0.01405,"87":0.11708,"88":0.00937,"89":0.03746,"90":0.0281,"91":0.02342,"92":0.04683,"93":0.05151,"94":0.54791,"95":0.76801,"96":25.79396,"97":0.01873,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 67 68 70 71 72 80 98 99"},F:{"79":0.04215,"81":0.08429,"82":0.12176,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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},E:{"4":0,"12":0.00468,"13":0.05151,"14":0.08898,"15":0.25288,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00937,"9.1":0.00937,"10.1":0.01405,"11.1":0.00468,"12.1":0.04683,"13.1":0.33718,"14.1":1.47515,"15.1":0.83357,"15.2":0.07493},B:{"16":0.00468,"18":0.08898,"80":0.01405,"84":0.00468,"85":0.02342,"92":0.02342,"93":0.11708,"94":0.03746,"95":0.10303,"96":8.59799,_:"12 13 14 15 17 79 81 83 86 87 88 89 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0025,"7.0-7.1":0.0025,"8.1-8.4":0,"9.0-9.2":0.0025,"9.3":0.02246,"10.0-10.2":0.00749,"10.3":0.18346,"11.0-11.2":0.00874,"11.3-11.4":0,"12.0-12.1":0.00998,"12.2-12.5":1.36659,"13.0-13.1":0.0025,"13.2":0.0025,"13.3":0.01622,"13.4-13.7":0.10608,"14.0-14.4":0.58408,"14.5-14.8":3.63924,"15.0-15.1":5.79583,"15.2":0.72635},P:{"4":0.04218,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.34798,"8.2":0.02052,"9.2":0.06182,"10.1":0.03091,"11.1-11.2":0.10545,"12.0":0.01054,"13.0":0.06327,"14.0":0.05272,"15.0":1.07559},I:{"0":0,"3":0,"4":0.00057,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00122,"4.4":0,"4.4.3-4.4.4":0.00352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.35591,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.01063},H:{"0":1.50007},L:{"0":37.9297},S:{"2.5":0},R:{_:"0"},M:{"0":0.80287},Q:{"10.4":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 3998b3974d5a40..8b2f5d534f7a7d 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:{"90":0.7719,"92":0.05976,"96":0.11952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 91 93 94 95 3.5 3.6"},D:{"58":0.05976,"81":0.29631,"91":0.17679,"92":0.23655,"93":0.11952,"94":0.23655,"95":1.30476,"96":1.00845,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"95":0.23655,"96":0.17679,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},E:{"4":0,"15":0.35607,_:"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","14.1":0.05976,"15.1":19.20786},G:{"8":0,"3.2":0,"4.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.11714,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.06202,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.35831,"14.5-14.8":0.06202,"15.0-15.1":68.31394},P:{"4":0.57426,"5.0-5.4":0.09067,"6.2-6.4":0.07052,"7.2-7.4":2.7907,"8.2":0.01014,"9.2":0.07052,"10.1":0.06087,"11.1-11.2":0.77575,"12.0":0.01007,"13.0":0.49366,"14.0":0.22164,"15.0":0.06009},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.39558,"4.4":0,"4.4.3-4.4.4":0.19779},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.02658,"11":0.22582},L:{"0":5.1225},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.39821}}; +module.exports={C:{"84":0.0177,"90":0.03792,"94":0.07584,"95":0.14915,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 85 86 87 88 89 91 92 93 96 97 3.5 3.6"},D:{"71":0.05562,"81":0.03792,"92":0.0177,"95":3.43302,"96":0.93789,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 93 94 97 98 99"},F:{"77":0.2073,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"15":0.11376,_:"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","14.1":0.0177,"15.1":13.25936,"15.2":6.39584},B:{"95":0.0177,"96":0.33875,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.14904,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.17139,"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.05961,"15.0-15.1":70.62099,"15.2":3.53217},P:{"4":0.3418,"5.0-5.4":0.04021,"6.2-6.4":0.01005,"7.2-7.4":2.37251,"8.2":0.04108,"9.2":0.06032,"10.1":0.01034,"11.1-11.2":0.77408,"12.0":0.23122,"13.0":0.67355,"14.0":0.02242,"15.0":0.8344},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.11208,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.05978},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 2d73643898d20a..41811699472e62 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js @@ -1 +1 @@ -module.exports={C:{"52":0.01492,"78":0.02486,"79":0.00994,"80":0.00994,"81":0.00994,"83":0.00497,"84":0.00994,"90":0.00497,"91":0.02486,"93":0.0895,"94":0.58172,"95":0.01492,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 82 85 86 87 88 89 92 96 3.5 3.6"},D:{"42":0.02983,"48":0.00497,"49":0.04972,"56":0.00994,"61":0.05469,"63":0.00497,"64":0.02486,"68":0.07458,"69":0.00497,"70":0.02983,"72":0.02983,"74":0.00994,"75":0.00994,"76":0.00994,"77":0.11933,"78":0.01492,"79":0.07458,"80":0.04972,"81":0.02486,"83":0.04972,"84":0.0895,"85":0.06464,"86":0.09447,"87":0.25854,"88":0.01989,"89":0.07458,"90":0.08452,"91":0.06961,"92":0.11933,"93":0.1243,"94":0.65133,"95":19.98247,"96":11.21186,"97":0.00497,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 50 51 52 53 54 55 57 58 59 60 62 65 66 67 71 73 98 99"},F:{"71":0.00497,"80":0.18396,"81":0.07955,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.03978,"84":0.00994,"85":0.00497,"86":0.01989,"87":0.01492,"88":0.00497,"89":0.01492,"90":0.01492,"91":0.01989,"92":0.02983,"93":0.02486,"94":0.0895,"95":5.22557,"96":1.90428,_:"12 13 14 15 16 17 79 80 81 83"},E:{"4":0,"8":0.00497,"13":0.00994,"14":0.09944,"15":0.25854,_:"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.00497,"12.1":0.01492,"13.1":0.06961,"14.1":0.38782,"15.1":0.39279},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00362,"6.0-6.1":0.00121,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.10858,"9.3":0.01568,"10.0-10.2":0.00121,"10.3":0.00845,"11.0-11.2":0.00845,"11.3-11.4":0.00362,"12.0-12.1":0.01327,"12.2-12.5":0.10496,"13.0-13.1":0.0941,"13.2":0.00724,"13.3":0.03499,"13.4-13.7":0.13633,"14.0-14.4":0.63459,"14.5-14.8":4.91624,"15.0-15.1":5.96463},P:{"4":0.57426,"5.0-5.4":0.09067,"6.2-6.4":0.07052,"7.2-7.4":2.7907,"8.2":0.02031,"9.2":0.02031,"10.1":0.01016,"11.1-11.2":0.07109,"12.0":0.12187,"13.0":0.26406,"14.0":0.46719,"15.0":10.99921},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00287,"4.4":0,"4.4.3-4.4.4":0.01221},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01572,"9":0.02096,"11":1.61402,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":20.7794},S:{"2.5":0},R:{_:"0"},M:{"0":0.15084},Q:{"10.4":0.01508},O:{"0":0.15084},H:{"0":0.15709}}; +module.exports={C:{"52":0.01498,"78":0.01997,"79":0.00499,"80":0.00499,"81":0.00499,"88":0.00499,"91":0.02996,"93":0.00499,"94":0.2147,"95":0.50929,"96":0.01498,"97":0.00499,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 82 83 84 85 86 87 89 90 92 3.5 3.6"},D:{"42":0.03495,"49":0.02497,"56":0.00999,"61":0.07989,"64":0.02996,"66":0.00499,"67":0.00999,"68":0.05492,"69":0.00499,"70":0.03495,"72":0.03495,"74":0.00499,"75":0.00499,"76":0.00999,"77":0.14979,"78":0.01498,"79":0.07989,"80":0.04993,"81":0.04993,"83":0.03994,"84":0.0699,"85":0.05992,"86":0.0699,"87":0.11484,"88":0.01498,"89":0.04494,"90":0.07989,"91":0.03994,"92":0.08488,"93":0.79389,"94":0.1398,"95":0.3545,"96":31.01652,"97":0.01498,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 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 57 58 59 60 62 63 65 71 73 98 99"},F:{"81":0.07989,"82":0.16477,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00499,"13":0.00999,"14":0.08488,"15":0.11983,_:"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.01498,"13.1":0.06491,"14.1":0.27961,"15.1":0.55422,"15.2":0.09986},B:{"17":0.00999,"18":0.02497,"84":0.00499,"85":0.00499,"86":0.02497,"87":0.00999,"88":0.00499,"89":0.01498,"90":0.00999,"91":0.01498,"92":0.02497,"93":0.01498,"94":0.03495,"95":0.12483,"96":7.14498,_:"12 13 14 15 16 79 80 81 83"},G:{"8":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,"8.1-8.4":0,"9.0-9.2":0.11441,"9.3":0.0104,"10.0-10.2":0,"10.3":0.00809,"11.0-11.2":0.01271,"11.3-11.4":0.00693,"12.0-12.1":0.01387,"12.2-12.5":0.10286,"13.0-13.1":0.11095,"13.2":0.00578,"13.3":0.03005,"13.4-13.7":0.10979,"14.0-14.4":0.51197,"14.5-14.8":2.86265,"15.0-15.1":7.03932,"15.2":0.61021},P:{"4":0.3418,"5.0-5.4":0.01014,"6.2-6.4":0.01005,"7.2-7.4":2.37251,"8.2":0.01014,"9.2":0.03041,"10.1":0.01014,"11.1-11.2":0.07097,"12.0":0.10138,"13.0":0.25345,"14.0":0.39538,"15.0":1.28752},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.02003},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01051,"9":0.02102,"10":0.00526,"11":1.46111,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.1452},H:{"0":0.15643},L:{"0":20.48888},S:{"2.5":0},R:{_:"0"},M:{"0":0.16022},Q:{"10.4":0.01502}}; 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 008045813518ab..1b6f04e27c2845 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.00997,"52":0.20603,"56":0.00665,"78":0.29907,"84":0.01329,"85":0.00332,"88":0.00997,"89":0.00997,"91":0.04652,"92":0.01329,"93":0.11631,"94":0.65795,"95":0.00665,_:"2 3 4 5 6 7 8 9 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 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 86 87 90 96 3.5 3.6"},D:{"38":0.0432,"40":0.03655,"41":0.00665,"43":0.00332,"47":0.00997,"49":0.03323,"56":0.01329,"58":0.00332,"62":0.00332,"63":0.00665,"64":0.00332,"65":0.01329,"66":0.00997,"67":0.00332,"69":0.00665,"70":0.00997,"71":0.00997,"73":0.00332,"74":0.00332,"75":0.00332,"76":0.00997,"77":0.00665,"78":0.02991,"79":0.01662,"80":0.00997,"81":0.00665,"83":0.01329,"84":0.01662,"85":0.01662,"86":0.01662,"87":0.36885,"88":0.04985,"89":0.07311,"90":0.03655,"91":0.07643,"92":0.21267,"93":0.16947,"94":1.42224,"95":12.10237,"96":7.38703,"97":0.01994,"98":0.00665,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 42 44 45 46 48 50 51 52 53 54 55 57 59 60 61 68 72 99"},F:{"28":0.00997,"46":0.01329,"79":0.00665,"80":0.54165,"81":0.22929,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00332,"13":0.00332,"14":0.00332,"15":0.00665,"16":0.00332,"17":0.00665,"18":0.02991,"80":0.00332,"83":0.05317,"84":0.00997,"85":0.00997,"88":0.00665,"89":0.00997,"90":0.00997,"91":0.00665,"92":0.01329,"93":0.05649,"94":0.16283,"95":2.21644,"96":0.80749,_:"79 81 86 87"},E:{"4":0,"12":0.00997,"13":0.07643,"14":0.46522,"15":0.61476,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00665,"11.1":0.01329,"12.1":0.05981,"13.1":0.24258,"14.1":1.44218,"15.1":0.6214},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0028,"7.0-7.1":0.01681,"8.1-8.4":0,"9.0-9.2":0.01121,"9.3":0.18211,"10.0-10.2":0.02241,"10.3":0.09526,"11.0-11.2":0.20733,"11.3-11.4":0.05884,"12.0-12.1":0.07845,"12.2-12.5":0.93299,"13.0-13.1":0.12328,"13.2":0.06724,"13.3":0.36983,"13.4-13.7":0.73406,"14.0-14.4":3.14358,"14.5-14.8":11.52086,"15.0-15.1":10.43378},P:{"4":0.17394,"5.0-5.4":0.09067,"6.2-6.4":0.07052,"7.2-7.4":0.10232,"8.2":0.02031,"9.2":0.06139,"10.1":0.02046,"11.1-11.2":0.17394,"12.0":0.08185,"13.0":0.23533,"14.0":0.27625,"15.0":2.62952},I:{"0":0,"3":0,"4":0.00639,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01407,"4.4":0,"4.4.3-4.4.4":0.03964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28246,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":32.0889},S:{"2.5":0},R:{_:"0"},M:{"0":0.10017},Q:{"10.4":0},O:{"0":2.37737},H:{"0":0.94202}}; +module.exports={C:{"34":0.00924,"52":0.15097,"56":0.00308,"78":0.1941,"84":0.02465,"88":0.00308,"89":0.00616,"91":0.08319,"93":0.00616,"94":0.31734,"95":0.44983,"96":0.00308,_:"2 3 4 5 6 7 8 9 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 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 90 92 97 3.5 3.6"},D:{"34":0.00308,"38":0.03697,"40":0.00924,"43":0.00308,"47":0.00616,"49":0.02465,"56":0.00924,"63":0.00616,"65":0.00616,"66":0.03081,"69":0.00616,"70":0.00616,"71":0.01541,"73":0.00308,"74":0.00308,"75":0.00616,"76":0.00616,"77":0.00616,"78":0.01849,"79":0.01541,"80":0.01232,"81":0.01232,"83":0.01541,"84":0.01541,"85":0.01232,"86":0.01541,"87":0.29578,"88":0.03389,"89":0.05546,"90":0.02465,"91":0.04005,"92":0.13865,"93":0.0647,"94":0.25572,"95":0.36972,"96":18.29498,"97":0.01849,"98":0.00616,_:"4 5 6 7 8 9 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 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 64 67 68 72 99"},F:{"28":0.00924,"46":0.00616,"79":0.00616,"80":0.00616,"81":0.50528,"82":0.42826,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00616,"13":0.27729,"14":0.3574,"15":0.34815,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00308,"11.1":0.02773,"12.1":0.04622,"13.1":0.20335,"14.1":1.14921,"15.1":0.90273,"15.2":0.13865},B:{"13":0.00616,"14":0.00308,"15":0.00616,"16":0.00308,"17":0.00616,"18":0.01849,"80":0.00616,"83":0.0647,"84":0.00616,"85":0.00924,"86":0.00616,"89":0.01232,"90":0.00308,"91":0.00616,"92":0.01849,"93":0.03081,"94":0.01541,"95":0.20951,"96":2.63117,_:"12 79 81 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01764,"8.1-8.4":0,"9.0-9.2":0.00882,"9.3":0.16165,"10.0-10.2":0.00882,"10.3":0.09405,"11.0-11.2":0.14696,"11.3-11.4":0.04997,"12.0-12.1":0.07348,"12.2-12.5":0.87,"13.0-13.1":0.10875,"13.2":0.05584,"13.3":0.27334,"13.4-13.7":0.67895,"14.0-14.4":2.90684,"14.5-14.8":9.32893,"15.0-15.1":12.90591,"15.2":1.68121},P:{"4":0.13237,"5.0-5.4":0.01014,"6.2-6.4":0.01005,"7.2-7.4":0.09164,"8.2":0.01014,"9.2":0.06109,"10.1":0.02036,"11.1-11.2":0.15273,"12.0":0.07127,"13.0":0.18328,"14.0":0.33601,"15.0":0.53965},I:{"0":0,"3":0,"4":0.00503,"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.05032},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2588,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":2.3317},H:{"0":1.05462},L:{"0":33.22109},S:{"2.5":0},R:{_:"0"},M:{"0":0.12454},Q:{"10.4":0.0346}}; 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 59109dd55d6481..6c9f896e5b1e05 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.0055,"78":0.0165,"91":0.011,"93":0.32456,"94":2.23891,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 95 96 3.5 3.6"},D:{"49":0.03851,"67":0.011,"74":0.011,"75":0.03851,"76":0.0165,"79":0.08802,"80":0.0055,"83":0.0055,"84":0.011,"87":0.04951,"88":0.022,"89":0.39057,"90":0.0165,"91":0.21454,"92":0.19804,"93":0.08252,"94":1.34224,"95":19.93012,"96":9.67626,"97":0.08252,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 77 78 81 85 86 98 99"},F:{"78":0.022,"80":0.48959,"81":0.19254,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0055,"18":0.07701,"84":0.0055,"89":0.08802,"91":0.011,"92":0.0055,"93":0.08252,"94":0.5446,"95":6.78273,"96":1.87584,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90"},E:{"4":0,"12":0.011,"13":0.33006,"14":0.42908,"15":1.30924,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.0055,"10.1":0.011,"12.1":0.14303,"13.1":0.5446,"14.1":3.75718,"15.1":2.1894},G:{"8":0.00234,"3.2":0,"4.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.0211,"10.0-10.2":0,"10.3":1.05246,"11.0-11.2":0,"11.3-11.4":0.19455,"12.0-12.1":0.01641,"12.2-12.5":0.55319,"13.0-13.1":0.00469,"13.2":0.00469,"13.3":0.13595,"13.4-13.7":0.29066,"14.0-14.4":0.60476,"14.5-14.8":13.21557,"15.0-15.1":7.33443},P:{"4":0.13622,"5.0-5.4":0.02046,"6.2-6.4":0.01023,"7.2-7.4":0.05239,"8.2":0.01015,"9.2":0.10232,"10.1":0.20465,"11.1-11.2":0.17813,"12.0":0.07163,"13.0":0.14669,"14.0":0.11526,"15.0":3.2063},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.0045},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.45108,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":17.16485},S:{"2.5":0},R:{_:"0"},M:{"0":0.12147},Q:{"10.4":0},O:{"0":0.61186},H:{"0":0.01278}}; +module.exports={C:{"78":0.01018,"83":0.01018,"91":0.02036,"94":0.78401,"95":1.18111,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 96 97 3.5 3.6"},D:{"49":0.01527,"65":0.00509,"67":0.01527,"73":0.01018,"75":0.03564,"76":0.00509,"79":0.04582,"80":0.01018,"81":0.00509,"83":0.02036,"84":0.01018,"86":0.01527,"87":0.06109,"88":0.01527,"89":0.12218,"90":0.00509,"91":0.20873,"92":0.29528,"93":0.06618,"94":0.48365,"95":1.40512,"96":27.19612,"97":0.00509,"98":0.01018,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 74 77 78 85 99"},F:{"80":0.00509,"81":0.80947,"82":0.29528,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.01018,"13":0.05091,"14":0.26982,"15":1.51203,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01018,"10.1":0.01527,"11.1":0.01527,"12.1":0.04073,"13.1":0.43274,"14.1":2.68296,"15.1":2.55568,"15.2":0.54983},B:{"15":0.00509,"18":0.02546,"84":0.00509,"89":0.06109,"93":0.10691,"95":0.42255,"96":7.33104,_:"12 13 14 16 17 79 80 81 83 85 86 87 88 90 91 92 94"},G:{"8":0.00517,"3.2":0,"4.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.0543,"10.0-10.2":0,"10.3":1.19727,"11.0-11.2":0.00517,"11.3-11.4":0.21721,"12.0-12.1":0.01034,"12.2-12.5":0.60768,"13.0-13.1":0.02844,"13.2":0.01034,"13.3":0.1474,"13.4-13.7":0.35427,"14.0-14.4":0.52494,"14.5-14.8":7.30773,"15.0-15.1":14.31808,"15.2":1.0628},P:{"4":0.12629,"5.0-5.4":0.05153,"6.2-6.4":0.01031,"7.2-7.4":0.05262,"8.2":0.01019,"9.2":0.06184,"10.1":0.02061,"11.1-11.2":0.10525,"12.0":0.08245,"13.0":0.25259,"14.0":0.09472,"15.0":0.32626},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00131,"4.4":0,"4.4.3-4.4.4":0.00851},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00509,"11":0.27491,_:"6 7 8 9 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.28478},H:{"0":0.01859},L:{"0":18.97554},S:{"2.5":0},R:{_:"0"},M:{"0":0.11784},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js index 66e298e42fcc3e..a4f61f65916e9a 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:{"34":0.00862,"51":0.00431,"52":0.21981,"55":0.05172,"56":0.01293,"62":0.00431,"68":0.00431,"78":0.03017,"79":0.00862,"81":0.00431,"83":0.00431,"84":0.00431,"86":0.00431,"87":0.00431,"88":0.00862,"89":0.01293,"91":0.03017,"92":0.01724,"93":0.31032,"94":1.21111,"95":0.01293,_:"2 3 4 5 6 7 8 9 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 53 54 57 58 59 60 61 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 82 85 90 96 3.5 3.6"},D:{"11":0.01724,"22":0.01293,"26":0.00862,"34":0.00862,"38":0.02586,"45":0.00862,"49":0.06034,"51":0.02155,"53":0.02155,"55":0.00431,"56":0.00431,"57":0.01293,"58":0.00431,"59":0.03017,"61":0.00862,"63":0.00862,"65":0.00431,"66":0.00862,"67":0.01293,"68":0.01293,"69":0.00862,"70":0.00862,"71":0.05172,"72":0.01293,"73":0.02155,"74":0.01724,"75":0.01724,"76":0.00862,"77":0.00862,"78":0.00862,"79":0.22412,"80":0.07327,"81":0.01293,"83":0.03017,"84":0.0431,"85":0.03448,"86":0.15516,"87":0.12499,"88":0.0862,"89":0.04741,"90":0.04741,"91":0.13792,"92":0.23705,"93":0.18964,"94":0.90079,"95":15.61944,"96":7.96919,"97":0.01293,"98":0.00862,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 46 47 48 50 52 54 60 62 64 99"},F:{"25":0.01293,"31":0.01293,"36":0.01293,"38":0.00862,"40":0.00862,"47":0.00862,"71":0.00431,"72":0.05172,"74":0.01724,"76":0.00862,"77":0.01724,"78":0.00862,"79":0.0431,"80":2.76702,"81":0.89217,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 32 33 34 35 37 39 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 73 75 9.5-9.6 10.5 10.6 11.1 11.5","10.0-10.1":0,"11.6":0.2155,"12.1":0.02586},B:{"14":0.00431,"17":0.00431,"18":0.03879,"86":0.00862,"87":0.00862,"89":0.00862,"91":0.00862,"92":0.00431,"93":0.00431,"94":0.02586,"95":1.38351,"96":0.52151,_:"12 13 15 16 79 80 81 83 84 85 88 90"},E:{"4":0,"12":0.00862,"13":0.02586,"14":0.19395,"15":0.20688,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.3017,"11.1":0.00431,"12.1":0.02155,"13.1":0.0862,"14.1":0.51289,"15.1":0.40514},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0011,"7.0-7.1":0.00549,"8.1-8.4":0.0022,"9.0-9.2":0,"9.3":0.01318,"10.0-10.2":0.00878,"10.3":0.06589,"11.0-11.2":0.02965,"11.3-11.4":0.04832,"12.0-12.1":0.03294,"12.2-12.5":0.64348,"13.0-13.1":0.04502,"13.2":0.03075,"13.3":0.12518,"13.4-13.7":0.39751,"14.0-14.4":1.41763,"14.5-14.8":4.54608,"15.0-15.1":3.56659},P:{"4":0.20289,"5.0-5.4":0.08053,"6.2-6.4":0.02029,"7.2-7.4":0.21303,"8.2":0.01014,"9.2":0.26376,"10.1":0.06087,"11.1-11.2":0.40578,"12.0":0.13188,"13.0":0.35506,"14.0":0.50722,"15.0":3.15494},I:{"0":0,"3":0,"4":0.00096,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00096,"4.2-4.3":0.00864,"4.4":0,"4.4.3-4.4.4":0.02927},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00954,"9":0.01909,"10":0.00954,"11":0.49627,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.18553},S:{"2.5":0},R:{_:"0"},M:{"0":0.07965},Q:{"10.4":0},O:{"0":0.52339},H:{"0":0.3447}}; +module.exports={C:{"51":0.00435,"52":0.23903,"55":0.18253,"56":0.01304,"68":0.00435,"78":0.01738,"79":0.00869,"80":0.00869,"81":0.02173,"82":0.00869,"84":0.00869,"88":0.00869,"89":0.01304,"90":0.00435,"91":0.03042,"92":0.00869,"93":0.01304,"94":0.46068,"95":0.84312,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 83 85 86 87 96 97 3.5 3.6"},D:{"38":0.00869,"45":0.00869,"49":0.06954,"51":0.00869,"57":0.01304,"60":0.00435,"61":0.00435,"63":0.00869,"65":0.00435,"66":0.00869,"67":0.00869,"69":0.00869,"70":0.00869,"71":0.06519,"72":0.01304,"73":0.02608,"74":0.01738,"75":0.01304,"76":0.01304,"77":0.01738,"78":0.00869,"79":0.08257,"80":0.07823,"81":0.01738,"83":0.03477,"84":0.05215,"85":0.04781,"86":0.10865,"87":0.14342,"88":0.04346,"89":0.0565,"90":0.06084,"91":0.12603,"92":0.19557,"93":0.35203,"94":0.3303,"95":0.51717,"96":22.42536,"97":0.00869,"98":0.01304,"99":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 34 35 36 37 39 40 41 42 43 44 46 47 48 50 52 53 54 55 56 58 59 62 64 68"},F:{"36":0.00435,"46":0.01738,"50":0.00435,"69":0.00435,"72":0.06084,"73":0.01738,"74":0.01738,"77":0.00869,"78":0.00869,"79":0.01738,"80":0.03042,"81":1.59064,"82":1.83401,_:"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 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 75 76 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.39983},E:{"4":0,"12":0.00869,"13":0.02173,"14":0.18253,"15":0.14342,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.29118,"11.1":0.00435,"12.1":0.01304,"13.1":0.09127,"14.1":0.50848,"15.1":0.59106,"15.2":0.07823},B:{"14":0.00435,"18":0.03477,"84":0.00869,"86":0.00435,"89":0.00869,"90":0.00435,"91":0.00435,"92":0.00869,"93":0.00435,"94":0.00869,"95":0.03477,"96":2.04262,_:"12 13 15 16 17 79 80 81 83 85 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00128,"7.0-7.1":0.00513,"8.1-8.4":0.01154,"9.0-9.2":0.00513,"9.3":0.01667,"10.0-10.2":0.01282,"10.3":0.03461,"11.0-11.2":0.02564,"11.3-11.4":0.02949,"12.0-12.1":0.03077,"12.2-12.5":0.71149,"13.0-13.1":0.03974,"13.2":0.02949,"13.3":0.13076,"13.4-13.7":0.35767,"14.0-14.4":1.30889,"14.5-14.8":3.94589,"15.0-15.1":5.69834,"15.2":0.41664},P:{"4":0.10337,"5.0-5.4":0.08216,"6.2-6.4":0.01034,"7.2-7.4":0.13438,"8.2":0.01026,"9.2":0.03101,"10.1":0.01034,"11.1-11.2":0.16539,"12.0":0.10337,"13.0":0.20674,"14.0":0.24809,"15.0":0.45483},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.00256,"4.4":0,"4.4.3-4.4.4":0.01324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0114,"9":0.02279,"10":0.0114,"11":0.46724,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.4919},H:{"0":0.29976},L:{"0":40.77269},S:{"2.5":0},R:{_:"0"},M:{"0":0.09612},Q:{"10.4":0.01131}}; 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 3bc3a99daf433e..867f4856b9376d 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:{"4":0.00298,"38":0.00893,"40":0.00596,"47":0.00596,"48":0.00596,"50":0.00893,"51":0.00596,"52":0.0268,"53":0.00298,"54":0.00596,"55":0.00298,"56":0.00596,"57":0.00596,"58":0.00596,"59":0.00596,"60":0.00298,"63":0.00298,"66":0.00298,"67":0.00298,"71":0.72663,"72":0.00298,"77":0.00298,"78":0.03574,"80":0.00298,"81":0.0268,"83":0.00298,"84":0.01191,"88":0.00893,"89":0.00893,"90":0.00298,"91":0.0268,"92":0.02978,"93":0.25313,"94":1.11079,"95":0.03574,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 49 61 62 64 65 68 69 70 73 74 75 76 79 82 85 86 87 96 3.5 3.6"},D:{"26":0.00893,"37":0.00596,"38":0.00298,"43":0.02978,"47":0.00596,"48":0.00596,"49":0.01489,"55":0.00298,"56":0.03574,"57":0.00596,"58":0.00596,"61":0.02085,"62":0.00298,"63":0.03871,"64":0.00298,"65":0.01191,"66":0.00298,"67":0.00596,"69":0.00893,"70":0.01787,"71":0.01489,"72":0.02085,"73":0.00596,"74":0.01489,"75":0.02382,"76":0.01191,"77":0.00893,"78":0.04169,"79":0.02978,"80":0.0268,"81":0.01489,"83":0.03871,"84":0.02085,"85":0.01489,"86":0.04169,"87":0.23824,"88":0.03276,"89":0.02978,"90":0.06552,"91":0.06254,"92":0.30078,"93":0.41394,"94":0.63431,"95":11.09007,"96":6.32229,"97":0.02978,_:"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 50 51 52 53 54 59 60 68 98 99"},F:{"46":0.01191,"54":0.00298,"55":0.00298,"79":0.00298,"80":0.29184,"81":0.15486,_:"9 11 12 15 16 17 18 19 20 21 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 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.00596,"13":0.02382,"14":0.00298,"15":0.01191,"16":0.01191,"17":0.01489,"18":0.03871,"80":0.00298,"81":0.00298,"83":0.00298,"84":0.01489,"85":0.01191,"86":0.01191,"87":0.00893,"89":0.02085,"90":0.00893,"91":0.01489,"92":0.03276,"93":0.01787,"94":0.03871,"95":1.64386,"96":0.65516,_:"79 88"},E:{"4":0,"10":0.00298,"12":0.01191,"13":0.02085,"14":0.32758,"15":0.18761,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00596,"10.1":0.02382,"11.1":0.03574,"12.1":0.02382,"13.1":0.09827,"14.1":0.38714,"15.1":0.23824},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01113,"7.0-7.1":0.00495,"8.1-8.4":0.00865,"9.0-9.2":0.01236,"9.3":0.07047,"10.0-10.2":0.03585,"10.3":0.08778,"11.0-11.2":0.05934,"11.3-11.4":0.08778,"12.0-12.1":0.09025,"12.2-12.5":1.92494,"13.0-13.1":0.0544,"13.2":0.02102,"13.3":0.24974,"13.4-13.7":0.55387,"14.0-14.4":1.67273,"14.5-14.8":3.95002,"15.0-15.1":3.46168},P:{"4":0.50463,"5.0-5.4":0.02019,"6.2-6.4":0.03028,"7.2-7.4":0.29269,"8.2":0.01009,"9.2":0.1413,"10.1":0.04037,"11.1-11.2":0.2725,"12.0":0.11102,"13.0":0.24222,"14.0":0.49454,"15.0":1.90752},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00665,"4.2-4.3":0.00499,"4.4":0,"4.4.3-4.4.4":0.05155},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0209,"11":0.39007,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":53.75656},S:{"2.5":0},R:{_:"0"},M:{"0":0.1334},Q:{"10.4":0.33701},O:{"0":1.13038},H:{"0":0.41876}}; +module.exports={C:{"47":0.00955,"48":0.00955,"50":0.00318,"51":0.00318,"52":0.02864,"53":0.00318,"55":0.00318,"56":0.01591,"59":0.00318,"64":0.01273,"66":0.00318,"70":0.00318,"71":0.63004,"72":0.00636,"74":0.00636,"78":0.035,"81":0.03182,"84":0.00955,"88":0.01273,"89":0.00636,"91":0.03818,"92":0.00955,"93":0.00636,"94":0.45184,"95":1.07552,"96":0.02227,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 54 57 58 60 61 62 63 65 67 68 69 73 75 76 77 79 80 82 83 85 86 87 90 97 3.5 3.6"},D:{"11":0.00955,"26":0.01909,"37":0.00636,"38":0.00318,"42":0.00636,"43":0.04773,"44":0.02546,"48":0.00636,"49":0.03182,"55":0.00318,"56":0.04137,"57":0.01909,"58":0.00636,"63":0.05091,"65":0.02227,"66":0.00636,"67":0.00636,"68":0.00955,"69":0.01909,"70":0.00955,"71":0.00636,"72":0.01909,"73":0.00636,"74":0.01591,"75":0.01591,"76":0.01273,"77":0.00955,"78":0.03182,"79":0.02546,"80":0.02864,"81":0.035,"83":0.05091,"84":0.01591,"85":0.01273,"86":0.08273,"87":0.21638,"88":0.06364,"89":0.02227,"90":0.03182,"91":0.07319,"92":0.21956,"93":0.10182,"94":0.35957,"95":0.49003,"96":18.33787,"97":0.02864,"98":0.00955,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 39 40 41 45 46 47 50 51 52 53 54 59 60 61 62 64 99"},F:{"46":0.00636,"79":0.00636,"81":0.17183,"82":0.36911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00955},E:{"4":0,"10":0.00318,"12":0.00955,"13":0.02227,"14":0.04773,"15":0.12728,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00636,"10.1":0.00636,"11.1":0.04773,"12.1":0.03818,"13.1":0.09546,"14.1":0.33411,"15.1":0.50276,"15.2":0.10501},B:{"12":0.00955,"13":0.01273,"14":0.00955,"15":0.01273,"16":0.00955,"17":0.00318,"18":0.02864,"81":0.00318,"83":0.00318,"84":0.00955,"85":0.00318,"86":0.02227,"87":0.00636,"89":0.01273,"90":0.00318,"91":0.01909,"92":0.03182,"93":0.00636,"94":0.00955,"95":0.02864,"96":2.41514,_:"79 80 88"},G:{"8":0,"3.2":0,"4.0-4.1":0.00122,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00609,"7.0-7.1":0.00609,"8.1-8.4":0.00974,"9.0-9.2":0.00487,"9.3":0.04017,"10.0-10.2":0.03165,"10.3":0.0706,"11.0-11.2":0.05478,"11.3-11.4":0.07547,"12.0-12.1":0.09373,"12.2-12.5":1.61658,"13.0-13.1":0.05721,"13.2":0.02678,"13.3":0.22277,"13.4-13.7":0.50275,"14.0-14.4":1.52407,"14.5-14.8":3.37437,"15.0-15.1":3.99763,"15.2":0.44675},P:{"4":0.44847,"5.0-5.4":0.03058,"6.2-6.4":0.04077,"7.2-7.4":0.25481,"8.2":0.02041,"9.2":0.10193,"10.1":0.05096,"11.1-11.2":0.24462,"12.0":0.10193,"13.0":0.20385,"14.0":0.35674,"15.0":0.74406},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00298,"4.2-4.3":0.00199,"4.4":0,"4.4.3-4.4.4":0.04275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.41366,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":1.07043},H:{"0":0.45184},L:{"0":53.29431},S:{"2.5":0},R:{_:"0"},M:{"0":0.16363},Q:{"10.4":0.17045}}; 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 e97c5aad9e3483..f7a745ea6cec36 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.00361,"52":0.05048,"58":0.00361,"66":0.00361,"68":0.00721,"70":0.00721,"72":0.00361,"78":0.04688,"82":0.01082,"87":0.01082,"88":0.02164,"89":0.02164,"90":0.01082,"91":0.02885,"92":0.01803,"93":0.47239,"94":1.90397,"95":0.02164,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 59 60 61 62 63 64 65 67 69 71 73 74 75 76 77 79 80 81 83 84 85 86 96 3.5 3.6"},D:{"24":0.00361,"34":0.00361,"38":0.01442,"43":0.00721,"49":0.0577,"53":0.00361,"55":0.00361,"58":0.00361,"60":0.00721,"63":0.00721,"64":0.00361,"65":0.02885,"66":0.00721,"67":0.01082,"68":0.01082,"69":0.00721,"70":0.01082,"71":0.00361,"72":0.05409,"73":0.01082,"74":0.01442,"75":0.00721,"76":0.01082,"77":0.00361,"78":0.01803,"79":0.03245,"80":0.03967,"81":0.01803,"83":0.02524,"84":0.03245,"85":0.03606,"86":0.04327,"87":0.1226,"88":0.03606,"89":0.03967,"90":0.0577,"91":0.20194,"92":0.11539,"93":0.19472,"94":0.84741,"95":14.03455,"96":8.14235,"97":0.01082,_:"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 39 40 41 42 44 45 46 47 48 50 51 52 54 56 57 59 61 62 98 99"},F:{"28":0.00721,"36":0.00361,"79":0.00721,"80":0.55893,"81":0.21275,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00721,"13":0.00361,"14":0.00721,"15":0.03606,"16":0.02164,"17":0.01442,"18":0.03245,"84":0.01082,"89":0.01803,"90":0.01082,"91":0.01442,"92":0.01803,"93":0.01082,"94":0.08294,"95":1.76694,"96":0.76087,_:"79 80 81 83 85 86 87 88"},E:{"4":0,"11":0.00361,"12":0.01803,"13":0.03245,"14":0.3606,"15":0.33896,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.01442,"9.1":0.00361,"10.1":0.00721,"11.1":0.03606,"12.1":0.25963,"13.1":0.23078,"14.1":0.89789,"15.1":0.40027},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00417,"6.0-6.1":0.00278,"7.0-7.1":0.03895,"8.1-8.4":0.00696,"9.0-9.2":0.00556,"9.3":0.11129,"10.0-10.2":0.01252,"10.3":0.12381,"11.0-11.2":0.4062,"11.3-11.4":0.08347,"12.0-12.1":0.06538,"12.2-12.5":1.12819,"13.0-13.1":0.02087,"13.2":0.01669,"13.3":0.10155,"13.4-13.7":0.31022,"14.0-14.4":1.10037,"14.5-14.8":5.56862,"15.0-15.1":4.79934},P:{"4":0.21426,"5.0-5.4":0.02019,"6.2-6.4":0.03028,"7.2-7.4":0.29588,"8.2":0.0102,"9.2":0.06122,"10.1":0.03061,"11.1-11.2":0.26527,"12.0":0.13264,"13.0":0.3571,"14.0":0.3673,"15.0":4.4076},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00111,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.04396},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00721,"10":0.00361,"11":0.26324,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":44.71043},S:{"2.5":0},R:{_:"0"},M:{"0":0.12788},Q:{"10.4":0},O:{"0":0.25576},H:{"0":0.33899}}; +module.exports={C:{"43":0.00338,"47":0.00338,"52":0.05402,"66":0.00338,"68":0.00338,"72":0.00338,"78":0.03038,"87":0.00675,"88":0.01013,"89":0.01013,"90":0.00675,"91":0.02363,"92":0.00675,"93":0.01013,"94":0.73259,"95":1.27613,"96":0.01688,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 97 3.5 3.6"},D:{"22":0.00338,"34":0.00675,"38":0.0135,"43":0.01013,"49":0.06077,"55":0.00338,"58":0.01013,"60":0.00338,"63":0.01013,"64":0.00675,"65":0.01013,"66":0.00338,"67":0.00675,"68":0.00675,"69":0.00338,"70":0.00675,"71":0.00338,"72":0.06077,"73":0.01688,"74":0.0135,"75":0.01013,"76":0.00675,"78":0.00675,"79":0.04051,"80":0.04726,"81":0.02026,"83":0.02363,"84":0.02701,"85":0.04389,"86":0.03714,"87":0.10128,"88":0.03714,"89":0.03376,"90":0.04389,"91":0.11141,"92":0.11816,"93":0.06752,"94":0.17555,"95":0.56717,"96":19.57405,"97":0.0135,"98":0.00338,_:"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 44 45 46 47 48 50 51 52 53 54 56 57 59 61 62 77 99"},F:{"80":0.00338,"81":0.30046,"82":0.34435,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00675,"13":0.02701,"14":0.30384,"15":0.17555,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.0135,"10.1":0.02026,"11.1":0.02026,"12.1":0.05739,"13.1":0.21606,"14.1":0.78323,"15.1":0.52328,"15.2":0.12829},B:{"12":0.00675,"14":0.00675,"15":0.01013,"16":0.01013,"17":0.0135,"18":0.03038,"84":0.00675,"89":0.01013,"90":0.01013,"91":0.01013,"92":0.0135,"93":0.01013,"94":0.02363,"95":0.04726,"96":2.59277,_:"13 79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00292,"6.0-6.1":0.00438,"7.0-7.1":0.03214,"8.1-8.4":0.00438,"9.0-9.2":0.0073,"9.3":0.12271,"10.0-10.2":0.01169,"10.3":0.11686,"11.0-11.2":0.04967,"11.3-11.4":0.07742,"12.0-12.1":0.06281,"12.2-12.5":1.11606,"13.0-13.1":0.02191,"13.2":0.01169,"13.3":0.09933,"13.4-13.7":0.28632,"14.0-14.4":0.98604,"14.5-14.8":4.35905,"15.0-15.1":6.39687,"15.2":0.82974},P:{"4":0.28564,"5.0-5.4":0.0102,"6.2-6.4":0.01045,"7.2-7.4":0.31624,"8.2":0.02041,"9.2":0.04081,"10.1":0.0204,"11.1-11.2":0.27544,"12.0":0.11221,"13.0":0.36725,"14.0":0.37745,"15.0":0.7651},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.00479,"4.4":0,"4.4.3-4.4.4":0.05213},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00338,"11":0.20931,_:"6 7 8 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.24509},H:{"0":0.34491},L:{"0":47.63499},S:{"2.5":0},R:{_:"0"},M:{"0":0.13248},Q:{"10.4":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 1bf0d2a8218793..7568ee37a09bce 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.0121,"68":0.00807,"78":0.12102,"87":0.08471,"88":0.0121,"90":0.00403,"92":0.01614,"93":0.32675,"94":0.87538,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 91 95 96 3.5 3.6"},D:{"34":0.00403,"49":0.14522,"58":0.00403,"70":0.0121,"74":0.0121,"75":0.02017,"76":0.10488,"77":0.02824,"79":0.06454,"80":0.0121,"81":0.08068,"83":0.00403,"84":0.0121,"85":0.0121,"86":0.03631,"87":0.04437,"88":0.06051,"89":0.01614,"90":0.02824,"91":0.12505,"92":0.14119,"93":0.23801,"94":1.33122,"95":14.40138,"96":7.99942,"97":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 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 63 64 65 66 67 68 69 71 72 73 78 98 99"},F:{"28":0.05648,"78":0.00403,"80":0.37113,"81":0.16136,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.01614,"16":0.00403,"17":0.00807,"18":0.15733,"84":0.01614,"89":0.00807,"90":0.06051,"91":0.0121,"92":0.02017,"93":0.01614,"94":0.16136,"95":4.24377,"96":1.32315,_:"12 14 15 79 80 81 83 85 86 87 88"},E:{"4":0,"13":0.0121,"14":0.1775,"15":0.27835,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.06051,"11.1":0.00807,"12.1":0.04841,"13.1":0.1775,"14.1":0.78663,"15.1":0.24607},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0186,"6.0-6.1":0,"7.0-7.1":0.00496,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06819,"10.0-10.2":0.00248,"10.3":0.0781,"11.0-11.2":0.0124,"11.3-11.4":0.01116,"12.0-12.1":0.00868,"12.2-12.5":0.78477,"13.0-13.1":0.00372,"13.2":0.04091,"13.3":0.10786,"13.4-13.7":0.17481,"14.0-14.4":0.67691,"14.5-14.8":5.78471,"15.0-15.1":4.61314},P:{"4":0.1455,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.73791,"8.2":0.01026,"9.2":0.02079,"10.1":0.04157,"11.1-11.2":0.3014,"12.0":0.10393,"13.0":0.33258,"14.0":0.34297,"15.0":5.66425},I:{"0":0,"3":0,"4":0.00281,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0014,"4.4":0,"4.4.3-4.4.4":0.01965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27028,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":43.20405},S:{"2.5":0},R:{_:"0"},M:{"0":0.20881},Q:{"10.4":0},O:{"0":0.38779},H:{"0":0.15815}}; +module.exports={C:{"56":0.03291,"68":0.00411,"78":0.00411,"87":0.10285,"94":0.27564,"95":0.51836,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 96 97 3.5 3.6"},D:{"34":0.02057,"49":0.01646,"55":0.00823,"58":0.01234,"63":0.01234,"69":0.05348,"70":0.00823,"71":0.00823,"73":0.00411,"74":0.00411,"75":0.01646,"76":0.18924,"77":0.02468,"79":0.08639,"80":0.00823,"81":0.09462,"83":0.06582,"84":0.01646,"85":0.01234,"86":0.01646,"87":0.04937,"88":0.02468,"89":0.0288,"90":0.01234,"91":0.03703,"92":0.09462,"93":0.11519,"94":0.49368,"95":0.78166,"96":22.87795,"97":0.01646,"98":0.02057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 59 60 61 62 64 65 66 67 68 72 78 99"},F:{"28":0.02057,"81":0.37026,"82":0.58007,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00823,"14":0.08639,"15":0.23861,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00823,"10.1":0.21393,"11.1":0.00823,"12.1":0.11931,"13.1":0.16867,"14.1":0.83103,"15.1":0.59653,"15.2":0.11108},B:{"13":0.00411,"16":0.00411,"17":0.01646,"18":0.11519,"84":0.00823,"88":0.00823,"91":0.00411,"92":0.02468,"93":0.0288,"94":0.02468,"95":0.08639,"96":5.29883,_:"12 14 15 79 80 81 83 85 86 87 89 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02955,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0461,"10.0-10.2":0,"10.3":0.15723,"11.0-11.2":0.01064,"11.3-11.4":0.01064,"12.0-12.1":0.00473,"12.2-12.5":0.66084,"13.0-13.1":0.00355,"13.2":0.00355,"13.3":0.05793,"13.4-13.7":0.15132,"14.0-14.4":0.52725,"14.5-14.8":3.50871,"15.0-15.1":6.09768,"15.2":0.55326},P:{"4":0.18917,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.56751,"8.2":0.02052,"9.2":0.06182,"10.1":0.03091,"11.1-11.2":0.25223,"12.0":0.07357,"13.0":0.28376,"14.0":0.19968,"15.0":0.83025},I:{"0":0,"3":0,"4":0.00288,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00216,"4.4":0,"4.4.3-4.4.4":0.03027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00823,"11":0.17279,_:"6 7 8 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.51788},H:{"0":0.10586},L:{"0":44.13967},S:{"2.5":0},R:{_:"0"},M:{"0":0.16478},Q:{"10.4":0.01766}}; 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 a7e95d5eb7a073..28e2ae49b0a862 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.01495,"72":0.00748,"78":0.01121,"84":0.00374,"88":0.01121,"89":0.01869,"90":0.00748,"91":0.0785,"92":0.02243,"93":0.29156,"94":1.46156,"95":0.08224,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 96 3.5 3.6"},D:{"49":0.01869,"56":0.00374,"61":0.04859,"63":0.01495,"64":0.00374,"65":0.00374,"67":0.00748,"68":0.00374,"69":0.00374,"70":0.00748,"71":0.00748,"73":0.00374,"74":0.01869,"75":0.01121,"76":0.00748,"77":0.01121,"78":0.01121,"79":0.02617,"80":0.01869,"81":0.05607,"83":0.02243,"84":0.01121,"85":0.03364,"86":0.05607,"87":0.13457,"88":0.03738,"89":0.02243,"90":0.03364,"91":0.07102,"92":0.13831,"93":0.13457,"94":0.51211,"95":13.66987,"96":8.13015,"97":0.01121,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 66 72 98 99"},F:{"72":0.00374,"79":0.01869,"80":0.92702,"81":0.35885,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01121,"13":0.00374,"14":0.00374,"15":0.00748,"16":0.00748,"17":0.00748,"18":0.04112,"84":0.01121,"85":0.00374,"89":0.01495,"90":0.00748,"91":0.01121,"92":0.0299,"93":0.02617,"94":0.11214,"95":5.72662,"96":2.18299,_:"79 80 81 83 86 87 88"},E:{"4":0,"13":0.01495,"14":0.06355,"15":0.10093,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01121,"11.1":0.00374,"12.1":0.00748,"13.1":0.04112,"14.1":0.16821,"15.1":0.15326},G:{"8":0.00047,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00094,"5.0-5.1":0,"6.0-6.1":0.00235,"7.0-7.1":0.00659,"8.1-8.4":0.00471,"9.0-9.2":0.0033,"9.3":0.03344,"10.0-10.2":0.00989,"10.3":0.03579,"11.0-11.2":0.04286,"11.3-11.4":0.02873,"12.0-12.1":0.03391,"12.2-12.5":0.53926,"13.0-13.1":0.04663,"13.2":0.01884,"13.3":0.07206,"13.4-13.7":0.1865,"14.0-14.4":0.65653,"14.5-14.8":1.3352,"15.0-15.1":1.65027},P:{"4":0.91288,"5.0-5.4":0.02029,"6.2-6.4":0.03043,"7.2-7.4":1.01431,"8.2":0.03043,"9.2":0.12172,"10.1":0.04057,"11.1-11.2":0.38544,"12.0":0.09129,"13.0":0.33472,"14.0":0.42601,"15.0":1.39975},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.00396,"4.4":0,"4.4.3-4.4.4":0.05117},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05981,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":50.2441},S:{"2.5":0},R:{_:"0"},M:{"0":0.13148},Q:{"10.4":0},O:{"0":1.99726},H:{"0":2.02721}}; +module.exports={C:{"52":0.02206,"72":0.00368,"78":0.01103,"84":0.00735,"88":0.01103,"89":0.01103,"90":0.00368,"91":0.08457,"92":0.01103,"93":0.0956,"94":0.52581,"95":1.16193,"96":0.05148,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 97 3.5 3.6"},D:{"38":0.00735,"49":0.02206,"55":0.00735,"61":0.03309,"63":0.01471,"65":0.00735,"67":0.01103,"69":0.00368,"70":0.00735,"71":0.00735,"74":0.01839,"75":0.00735,"76":0.00735,"77":0.01103,"78":0.00735,"79":0.02206,"80":0.01839,"81":0.05516,"83":0.01839,"84":0.00735,"85":0.04412,"86":0.04045,"87":0.09928,"88":0.03677,"89":0.02574,"90":0.02942,"91":0.05516,"92":0.0956,"93":0.15076,"94":0.15443,"95":0.31255,"96":21.72372,"97":0.02206,_:"4 5 6 7 8 9 10 11 12 13 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 62 64 66 68 72 73 98 99"},F:{"72":0.00368,"79":0.01103,"80":0.01103,"81":0.4155,"82":0.81997,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01471,"14":0.06986,"15":0.05883,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01103,"11.1":0.00368,"12.1":0.01471,"13.1":0.04045,"14.1":0.14708,"15.1":0.20224,"15.2":0.03309},B:{"12":0.00735,"15":0.00368,"16":0.00735,"17":0.00735,"18":0.03309,"84":0.01103,"89":0.03677,"90":0.00368,"91":0.00735,"92":0.02206,"93":0.01471,"94":0.02206,"95":0.11766,"96":7.06719,_:"13 14 79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00051,"5.0-5.1":0,"6.0-6.1":0.00153,"7.0-7.1":0.00713,"8.1-8.4":0.00356,"9.0-9.2":0.00204,"9.3":0.03512,"10.0-10.2":0.00764,"10.3":0.04531,"11.0-11.2":0.04225,"11.3-11.4":0.03003,"12.0-12.1":0.03614,"12.2-12.5":0.54621,"13.0-13.1":0.03665,"13.2":0.01731,"13.3":0.07178,"13.4-13.7":0.18988,"14.0-14.4":0.60984,"14.5-14.8":1.1474,"15.0-15.1":1.99752,"15.2":0.26216},P:{"4":0.81247,"5.0-5.4":0.02031,"6.2-6.4":0.04062,"7.2-7.4":1.05621,"8.2":0.02031,"9.2":0.11172,"10.1":0.04062,"11.1-11.2":0.38592,"12.0":0.10156,"13.0":0.32499,"14.0":0.40624,"15.0":0.5992},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.00443,"4.4":0,"4.4.3-4.4.4":0.05122},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05148,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.96013},H:{"0":1.99939},L:{"0":50.96326},S:{"2.5":0},R:{_:"0"},M:{"0":0.13278},Q:{"10.4":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 e00434f25e180a..9fe247a9196faf 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.0365,"32":0.00281,"33":0.00281,"43":0.01966,"46":0.01404,"47":0.01123,"49":0.00281,"52":0.00281,"56":0.00281,"58":0.00842,"72":0.01123,"78":0.00562,"79":0.00281,"80":0.00281,"83":0.00562,"84":0.00281,"87":0.00281,"88":0.00281,"89":0.00842,"90":0.01966,"91":0.04493,"92":0.03089,"93":0.1769,"94":0.87048,"95":0.02527,_:"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 34 35 36 37 38 39 40 41 42 44 45 48 50 51 53 54 55 57 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 81 82 85 86 96 3.5 3.6"},D:{"11":0.00562,"37":0.00281,"39":0.00562,"43":0.03931,"48":0.00562,"49":0.01966,"52":0.00842,"56":0.00562,"57":0.00562,"58":0.00281,"59":0.00562,"61":0.02246,"63":0.01404,"64":0.08705,"65":0.00562,"67":0.00562,"69":0.00562,"72":0.00281,"74":0.01966,"75":0.01404,"76":0.01685,"77":0.01123,"78":0.01123,"79":0.04212,"80":0.02527,"81":0.02246,"83":0.01123,"84":0.00842,"85":0.01966,"86":0.01685,"87":0.0337,"88":0.01123,"89":0.02527,"90":0.01404,"91":0.04493,"92":0.08424,"93":0.16006,"94":0.60091,"95":5.41663,"96":3.20112,"97":0.00281,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 40 41 42 44 45 46 47 50 51 53 54 55 60 62 66 68 70 71 73 98 99"},F:{"21":0.00281,"36":0.00842,"42":0.00281,"73":0.00281,"77":0.00281,"79":0.02527,"80":0.35942,"81":0.09547,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 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 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.05335,"13":0.03931,"14":0.00842,"15":0.0337,"16":0.02808,"17":0.01966,"18":0.1769,"80":0.00562,"84":0.02246,"85":0.01123,"88":0.00562,"89":0.01123,"90":0.00842,"91":0.02246,"92":0.0365,"93":0.06458,"94":0.12074,"95":1.54721,"96":0.39312,_:"79 81 83 86 87"},E:{"4":0,"13":0.00562,"14":0.0365,"15":0.04774,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00562,"11.1":0.01966,"12.1":0.00562,"13.1":0.01966,"14.1":0.17129,"15.1":0.15163},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00731,"6.0-6.1":0,"7.0-7.1":0.07396,"8.1-8.4":0.00488,"9.0-9.2":0.00406,"9.3":0.09103,"10.0-10.2":0.00244,"10.3":0.06502,"11.0-11.2":0.02601,"11.3-11.4":0.02601,"12.0-12.1":0.07152,"12.2-12.5":1.03141,"13.0-13.1":0.68598,"13.2":0.01951,"13.3":0.17637,"13.4-13.7":0.30804,"14.0-14.4":1.94254,"14.5-14.8":2.12785,"15.0-15.1":1.463},P:{"4":0.11186,"5.0-5.4":3.58964,"6.2-6.4":0.02034,"7.2-7.4":0.11186,"8.2":0.0102,"9.2":0.07118,"10.1":0.02034,"11.1-11.2":0.18304,"12.0":0.05084,"13.0":0.09152,"14.0":0.19321,"15.0":0.74233},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00142,"4.2-4.3":0.00522,"4.4":0,"4.4.3-4.4.4":0.03556},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0185,"11":0.13875,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01438},N:{"10":0.02658,"11":0.22582},L:{"0":62.73507},S:{"2.5":0.20857},R:{_:"0"},M:{"0":0.14384},Q:{"10.4":0.04315},O:{"0":1.35929},H:{"0":6.13484}}; +module.exports={C:{"27":0.00257,"47":0.00515,"49":0.00257,"56":0.00257,"64":0.00515,"66":0.0103,"68":0.00515,"72":0.00257,"82":0.01287,"88":0.01802,"89":0.00515,"91":0.01287,"92":0.00515,"93":0.00257,"94":0.37838,"95":0.50965,"96":0.00772,_:"2 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 50 51 52 53 54 55 57 58 59 60 61 62 63 65 67 69 70 71 73 74 75 76 77 78 79 80 81 83 84 85 86 87 90 97 3.5 3.6"},D:{"11":0.01544,"44":0.00257,"47":0.00515,"49":0.00257,"51":0.0103,"52":0.00772,"56":0.00515,"57":0.00772,"60":0.00515,"62":0.0103,"63":0.01802,"64":0.04118,"65":0.00515,"67":0.0103,"69":0.01544,"70":0.00772,"71":0.01544,"72":0.01287,"73":0.00772,"74":0.0103,"75":0.01544,"76":0.01287,"77":0.00772,"79":0.11583,"80":0.03089,"81":0.02831,"83":0.00515,"84":0.01287,"85":0.0103,"86":0.04891,"87":0.04633,"88":0.01802,"89":0.01802,"90":0.01802,"91":0.02574,"92":0.07722,"93":0.12098,"94":0.14672,"95":0.21879,"96":7.22007,"98":0.00257,_:"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 48 50 53 54 55 58 59 61 66 68 78 97 99"},F:{"42":0.00257,"63":0.0103,"67":0.00515,"77":0.01802,"78":0.00515,"79":0.00515,"80":0.00772,"81":0.10553,"82":0.20077,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00515,"14":0.03604,"15":0.02574,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 10.1 11.1","7.1":0.00772,"9.1":0.00257,"12.1":0.01802,"13.1":0.03089,"14.1":0.15701,"15.1":0.10811,"15.2":0.01802},B:{"12":0.03604,"13":0.05148,"14":0.01544,"15":0.04376,"16":0.02059,"17":0.01544,"18":0.13385,"80":0.00257,"84":0.04891,"85":0.0103,"88":0.00257,"89":0.02574,"90":0.00772,"91":0.01544,"92":0.04118,"93":0.01544,"94":0.03861,"95":0.1184,"96":1.88932,_:"79 81 83 86 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0061,"6.0-6.1":0.00261,"7.0-7.1":0.03048,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07663,"10.0-10.2":0.00261,"10.3":0.06008,"11.0-11.2":0.02003,"11.3-11.4":0.03396,"12.0-12.1":0.06879,"12.2-12.5":1.23997,"13.0-13.1":0.22117,"13.2":0.01306,"13.3":0.18373,"13.4-13.7":0.29432,"14.0-14.4":1.77636,"14.5-14.8":2.36586,"15.0-15.1":2.00972,"15.2":0.2978},P:{"4":0.22145,"5.0-5.4":4.36856,"6.2-6.4":0.02013,"7.2-7.4":0.21138,"8.2":0.01007,"9.2":0.0302,"10.1":0.04026,"11.1-11.2":0.14092,"12.0":0.02013,"13.0":0.09059,"14.0":0.09059,"15.0":0.34224},I:{"0":0,"3":0,"4":0.00027,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00287,"4.4":0,"4.4.3-4.4.4":0.03399},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00282,"10":0.00564,"11":0.13825,_:"6 7 8 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":1.0842},H:{"0":7.46635},L:{"0":62.66147},S:{"2.5":0.23021},R:{_:"0"},M:{"0":0.08911},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js index d8fc616dea79b3..0f77e7722bb27d 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.00289,"30":0.00289,"34":0.00289,"39":0.00289,"45":0.00289,"52":0.00868,"72":0.00289,"78":0.01157,"87":0.00289,"88":0.0376,"89":0.06941,"93":0.2892,"94":0.82711,"95":0.00868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 35 36 37 38 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 73 74 75 76 77 79 80 81 82 83 84 85 86 90 91 92 96 3.5 3.6"},D:{"25":0.00868,"34":0.00578,"41":0.00578,"49":0.05784,"50":0.00578,"56":0.04916,"57":0.00578,"58":0.00578,"60":0.00289,"62":0.01446,"63":0.01735,"65":0.01446,"66":0.00868,"67":0.00578,"69":0.04049,"70":0.02603,"74":0.04916,"75":0.00289,"76":0.08387,"77":0.02892,"78":0.00868,"79":0.12436,"80":0.01446,"81":0.01446,"83":0.00289,"84":0.00868,"85":0.01735,"86":0.04627,"87":0.08965,"88":0.02892,"89":0.01735,"90":0.02314,"91":0.05495,"92":0.09833,"93":0.0723,"94":0.2545,"95":7.64645,"96":3.9765,"97":0.00868,_:"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 35 36 37 38 39 40 42 43 44 45 46 47 48 51 52 53 54 55 59 61 64 68 71 72 73 98 99"},F:{"35":0.00578,"74":0.00578,"79":0.00578,"80":0.59286,"81":0.1822,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.05206,"13":0.00868,"14":0.00868,"15":0.02314,"16":0.01446,"17":0.02892,"18":0.14749,"80":0.01446,"83":0.00289,"84":0.01446,"85":0.00868,"89":0.03181,"90":0.01735,"91":0.02892,"92":0.06073,"93":0.01735,"94":0.09544,"95":1.79882,"96":0.62178,_:"79 81 86 87 88"},E:{"4":0,"11":0.01157,"13":0.00578,"14":0.0376,"15":0.02603,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00868,"11.1":0.00578,"12.1":0.00289,"13.1":0.01446,"14.1":0.17063,"15.1":0.06941},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00032,"6.0-6.1":0.00576,"7.0-7.1":0.00608,"8.1-8.4":0.00064,"9.0-9.2":0,"9.3":0.04942,"10.0-10.2":0.0024,"10.3":0.00384,"11.0-11.2":0.01295,"11.3-11.4":0.01503,"12.0-12.1":0.0096,"12.2-12.5":0.15769,"13.0-13.1":0.01104,"13.2":0.0048,"13.3":0.05598,"13.4-13.7":0.07037,"14.0-14.4":0.1377,"14.5-14.8":0.51801,"15.0-15.1":0.53768},P:{"4":0.66599,"5.0-5.4":0.02019,"6.2-6.4":0.03027,"7.2-7.4":1.60442,"8.2":0.0102,"9.2":0.15136,"10.1":0.06054,"11.1-11.2":0.38345,"12.0":0.13118,"13.0":0.48435,"14.0":0.53481,"15.0":0.7568},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00155,"4.2-4.3":0.00414,"4.4":0,"4.4.3-4.4.4":0.05118},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00649,"11":0.17859,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01422},N:{"10":0.02658,"11":0.22582},L:{"0":65.55367},S:{"2.5":0.01422},R:{_:"0"},M:{"0":0.06397},Q:{"10.4":0.0853},O:{"0":1.09463},H:{"0":7.30812}}; +module.exports={C:{"17":0.00294,"40":0.00588,"45":0.00294,"47":0.00588,"55":0.00294,"56":0.00588,"60":0.00588,"63":0.00588,"74":0.00588,"78":0.00881,"82":0.00588,"88":0.01175,"89":0.04701,"91":0.00588,"92":0.00294,"93":0.00294,"94":0.40838,"95":0.49946,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 48 49 50 51 52 53 54 57 58 59 61 62 64 65 66 67 68 69 70 71 72 73 75 76 77 79 80 81 83 84 85 86 87 90 96 97 3.5 3.6"},D:{"25":0.00881,"40":0.00588,"44":0.01175,"49":0.06464,"55":0.00294,"56":0.00881,"63":0.01469,"65":0.00881,"66":0.00294,"69":0.02938,"70":0.02057,"71":0.01175,"72":0.00294,"73":0.00294,"74":0.0235,"75":0.00294,"77":0.00881,"78":0.00881,"79":0.0852,"80":0.00588,"81":0.01175,"83":0.00588,"84":0.04995,"85":0.00588,"86":0.00881,"87":0.06757,"88":0.0235,"89":0.0235,"90":0.02057,"91":0.0617,"92":0.0852,"93":0.04407,"94":0.15865,"95":0.42307,"96":10.74427,"98":0.00588,_:"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 41 42 43 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 64 67 68 76 97 99"},F:{"79":0.00588,"80":0.00881,"81":0.28205,"82":0.57585,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.00881,"14":0.0235,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00588,"12.1":0.0235,"13.1":0.00881,"14.1":0.15571,"15.1":0.17922,"15.2":0.04701},B:{"12":0.03232,"13":0.01469,"14":0.00588,"15":0.01175,"16":0.02644,"17":0.0235,"18":0.09989,"80":0.00588,"81":0.01175,"84":0.02057,"85":0.01469,"87":0.00294,"89":0.0235,"90":0.01175,"91":0.01175,"92":0.04701,"93":0.00881,"94":0.02938,"95":0.0617,"96":2.08304,_:"79 83 86 88"},G:{"8":0.00043,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0015,"6.0-6.1":0.00514,"7.0-7.1":0.01391,"8.1-8.4":0.00043,"9.0-9.2":0.0015,"9.3":0.01797,"10.0-10.2":0.0015,"10.3":0.00942,"11.0-11.2":0.0505,"11.3-11.4":0.01091,"12.0-12.1":0.01134,"12.2-12.5":0.28438,"13.0-13.1":0.00407,"13.2":0.01348,"13.3":0.07254,"13.4-13.7":0.07639,"14.0-14.4":0.17482,"14.5-14.8":0.54971,"15.0-15.1":0.75406,"15.2":0.08581},P:{"4":0.43317,"5.0-5.4":0.0102,"6.2-6.4":0.05037,"7.2-7.4":1.51106,"8.2":0.01007,"9.2":0.12088,"10.1":0.04029,"11.1-11.2":0.4231,"12.0":0.05037,"13.0":0.46339,"14.0":0.59435,"15.0":0.24177},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00268,"4.2-4.3":0.00335,"4.4":0,"4.4.3-4.4.4":0.05754},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17628,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.01412},O:{"0":1.12286},H:{"0":6.74602},L:{"0":66.85352},S:{"2.5":0.01412},R:{_:"0"},M:{"0":0.07062},Q:{"10.4":0.16243}}; 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 76197ad0412dd5..921d5187cc230e 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:{"11":0.0052,"48":0.01039,"51":0.01039,"52":0.09353,"60":0.01559,"61":0.0052,"65":0.0052,"68":0.01039,"72":0.01039,"76":0.01039,"78":0.05716,"84":0.01559,"85":0.0052,"86":0.0052,"87":0.01039,"88":0.02598,"89":0.03118,"90":0.03118,"91":0.11431,"92":0.30137,"93":0.63391,"94":3.98014,"95":0.01559,_:"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 53 54 55 56 57 58 59 62 63 64 66 67 69 70 71 73 74 75 77 79 80 81 82 83 96 3.6","3.5":0.01559},D:{"4":0.0052,"38":0.01039,"49":0.23902,"51":0.01039,"56":0.265,"58":0.0052,"59":0.01039,"61":0.04676,"62":0.0052,"63":0.01559,"64":0.01039,"65":0.0052,"66":0.01039,"67":0.0052,"68":0.0052,"69":0.0052,"70":0.0052,"72":0.01039,"73":0.02078,"74":0.01039,"75":0.01559,"76":0.01039,"77":0.01559,"78":0.01039,"79":0.10912,"80":0.02078,"81":0.02598,"83":0.03637,"84":0.06235,"85":0.03118,"86":0.06235,"87":1.04959,"88":0.07274,"89":0.06755,"90":0.09353,"91":0.21823,"92":0.29098,"93":0.23382,"94":1.12234,"95":18.51854,"96":12.01315,"97":0.04157,_:"5 6 7 8 9 10 11 12 13 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 53 54 55 57 60 71 98 99"},F:{"11":0.01039,"36":0.01559,"45":0.01039,"69":0.01559,"76":0.0052,"77":0.04157,"78":0.0052,"79":0.04157,"80":2.24467,"81":0.9041,_:"9 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 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01039},B:{"14":0.0052,"16":0.01039,"18":0.02078,"81":0.01039,"84":0.03118,"85":0.0052,"88":0.0052,"89":0.01559,"90":0.0052,"91":0.02078,"92":0.03118,"93":0.01039,"94":0.06755,"95":2.89417,"96":1.23665,_:"12 13 15 17 79 80 83 86 87"},E:{"4":0,"12":0.01039,"13":0.06235,"14":0.29617,"15":0.42607,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0052,"10.1":0.01039,"11.1":0.03118,"12.1":0.06235,"13.1":0.2546,"14.1":0.85734,"15.1":0.60274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00138,"7.0-7.1":0.00138,"8.1-8.4":0,"9.0-9.2":0.00413,"9.3":0.02889,"10.0-10.2":0.00688,"10.3":0.07842,"11.0-11.2":0.01789,"11.3-11.4":0.02064,"12.0-12.1":0.03164,"12.2-12.5":0.21464,"13.0-13.1":0.02064,"13.2":0.01513,"13.3":0.05779,"13.4-13.7":0.23115,"14.0-14.4":0.98375,"14.5-14.8":7.04032,"15.0-15.1":4.9944},P:{"4":0.04129,"5.0-5.4":0.01013,"6.2-6.4":0.0709,"7.2-7.4":0.6482,"8.2":0.02026,"9.2":0.01032,"10.1":0.01032,"11.1-11.2":0.06194,"12.0":0.02065,"13.0":0.12388,"14.0":0.19615,"15.0":3.57193},I:{"0":0,"3":0,"4":0.0017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.00424,"4.4":0,"4.4.3-4.4.4":0.02204},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0052,"11":0.24941,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":29.89419},S:{"2.5":0},R:{_:"0"},M:{"0":0.25942},Q:{"10.4":0.0048},O:{"0":0.03363},H:{"0":0.29563}}; +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 3.5 3.6"},D:{_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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"},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"},G:{"8":0,"3.2":0,"4.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":0},P:{"4":0.43598,"5.0-5.4":4.36856,"6.2-6.4":0.08111,"7.2-7.4":0.60834,"8.2":0.01014,"9.2":0.11153,"10.1":0.04056,"11.1-11.2":0.34473,"12.0":0.12167,"13.0":0.31431,"14.0":0.43598,"15.0":0.63876},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00242,"4.2-4.3":0.00484,"4.4":0,"4.4.3-4.4.4":0.0371},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.03992},O:{"0":0.03992},H:{"0":0.34858},L:{"0":27.46771},S:{"2.5":0},R:{_:"0"},M:{"0":0.24842},Q:{"10.4":0.00444}}; 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 66708917491c91..92a20728534ffe 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:{"17":0.01511,"45":0.01007,"48":0.01007,"51":0.01007,"52":0.09063,"59":0.01511,"60":0.02014,"61":0.03021,"62":0.00504,"63":0.01511,"68":0.04532,"72":0.00504,"78":0.38266,"81":0.01007,"84":0.02014,"85":0.01007,"86":0.02014,"87":0.01007,"88":0.03525,"89":0.08056,"90":0.05539,"91":0.69483,"92":0.04028,"93":0.77036,"94":4.60199,"95":0.02014,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 53 54 55 56 57 58 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 96 3.5 3.6"},D:{"38":0.01007,"49":0.19637,"61":0.23665,"66":0.03021,"67":0.01511,"68":0.08056,"69":0.37763,"70":0.05539,"71":0.02014,"72":0.27693,"73":0.03021,"74":0.02014,"75":0.02518,"76":0.09567,"77":0.01511,"78":0.14098,"79":0.08056,"80":0.07049,"81":0.02518,"83":0.03021,"84":0.04028,"85":0.07049,"86":0.22658,"87":0.47833,"88":0.08056,"89":0.0856,"90":0.06042,"91":0.16112,"92":0.3021,"93":0.36756,"94":0.97176,"95":12.61771,"96":7.53236,_:"4 5 6 7 8 9 10 11 12 13 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 62 63 64 65 97 98 99"},F:{"71":0.00504,"76":0.00504,"77":0.00504,"79":0.06042,"80":0.98183,"81":0.43301,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 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 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.07553,"85":0.01007,"89":0.04028,"90":0.02518,"91":0.02014,"92":0.01007,"93":0.30714,"94":0.13595,"95":3.58492,"96":1.35442,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88"},E:{"4":0,"8":0.01007,"12":0.00504,"13":0.07553,"14":0.70994,"15":1.50547,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1","5.1":0.02518,"9.1":0.01511,"10.1":0.01511,"11.1":0.06042,"12.1":0.19637,"13.1":0.81567,"14.1":3.63024,"15.1":2.36645},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0042,"7.0-7.1":0.0042,"8.1-8.4":0,"9.0-9.2":0.0042,"9.3":0.73491,"10.0-10.2":0.04409,"10.3":0.12389,"11.0-11.2":0.0399,"11.3-11.4":0.0147,"12.0-12.1":0.0252,"12.2-12.5":0.47454,"13.0-13.1":0.0294,"13.2":0.0084,"13.3":0.12599,"13.4-13.7":0.35276,"14.0-14.4":1.08137,"14.5-14.8":9.76176,"15.0-15.1":8.15755},P:{"4":0.10507,"5.0-5.4":0.01013,"6.2-6.4":0.0709,"7.2-7.4":0.04203,"8.2":0.02026,"9.2":0.02101,"10.1":0.01032,"11.1-11.2":0.06304,"12.0":0.06304,"13.0":0.08406,"14.0":0.1366,"15.0":3.7301},I:{"0":0,"3":0,"4":0.00063,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00125,"4.2-4.3":0.00271,"4.4":0,"4.4.3-4.4.4":0.02024},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01946,"11":0.3632,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":23.06762},S:{"2.5":0},R:{_:"0"},M:{"0":0.66531},Q:{"10.4":0.0149},O:{"0":0.64545},H:{"0":0.56877}}; +module.exports={C:{"24":0.02452,"38":0.00981,"45":0.01471,"48":0.00981,"50":0.02942,"52":0.1226,"56":0.0049,"59":0.03433,"60":0.07356,"61":0.05394,"62":0.03923,"63":0.03923,"64":0.0049,"66":0.02942,"68":0.04414,"77":0.0049,"78":0.30895,"83":0.01471,"85":0.00981,"86":0.00981,"87":0.00981,"88":0.03433,"89":0.08337,"90":0.01471,"91":1.64284,"92":0.06866,"93":0.10298,"94":1.94689,"95":3.58973,"96":0.02452,_:"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 43 44 46 47 49 51 53 54 55 57 58 65 67 69 70 71 72 73 74 75 76 79 80 81 82 84 97 3.5 3.6"},D:{"38":0.00981,"49":0.13241,"53":0.01962,"57":0.0049,"60":0.05394,"65":0.03923,"67":0.03923,"68":0.06375,"69":0.04414,"70":0.06375,"71":0.04414,"72":0.26972,"73":0.02452,"74":0.04904,"75":0.00981,"76":0.04904,"77":0.0049,"78":0.28443,"79":0.14222,"80":0.06866,"81":0.05394,"83":0.05885,"84":0.09318,"85":0.19616,"86":0.14222,"87":0.29424,"88":0.02452,"89":0.04414,"90":0.05394,"91":0.1177,"92":0.3629,"93":0.64242,"94":0.30895,"95":0.70127,"96":17.58084,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 61 62 63 64 66 97 98 99"},F:{"42":0.00981,"53":0.01962,"65":0.0049,"72":0.00981,"79":0.00981,"80":0.07356,"81":0.75031,"82":0.6081,_:"9 11 12 15 16 17 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 66 67 68 69 70 71 73 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},E:{"4":0,"8":0.00981,"12":0.0049,"13":0.08337,"14":0.54925,"15":0.68656,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1","5.1":0.02452,"9.1":0.0049,"10.1":0.01471,"11.1":0.02942,"12.1":0.20106,"13.1":0.62281,"14.1":2.60893,"15.1":3.7957,"15.2":0.45117},B:{"15":0.02942,"16":0.02942,"18":0.02452,"80":0.0049,"84":0.0049,"89":0.03433,"90":0.01471,"91":0.01962,"92":0.00981,"93":0.13241,"94":0.02452,"95":0.28934,"96":4.63428,_:"12 13 14 17 79 81 83 85 86 87 88"},G:{"8":0.00213,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00426,"7.0-7.1":0.00213,"8.1-8.4":0,"9.0-9.2":0.00213,"9.3":0.661,"10.0-10.2":0.00853,"10.3":0.12154,"11.0-11.2":0.01919,"11.3-11.4":0.04265,"12.0-12.1":0.03838,"12.2-12.5":0.41792,"13.0-13.1":0.04051,"13.2":0.0064,"13.3":0.09595,"13.4-13.7":0.39234,"14.0-14.4":0.86357,"14.5-14.8":5.93408,"15.0-15.1":11.61869,"15.2":1.02988},P:{"4":0.08402,"5.0-5.4":0.0105,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.03151,"9.2":0.021,"11.1-11.2":0.08402,"12.0":0.08402,"13.0":0.08402,"14.0":0.12603,"15.0":0.39908},I:{"0":0,"3":0.00066,"4":0.00066,"2.1":0,"2.2":0.00331,"2.3":0,"4.1":0.00331,"4.2-4.3":0.00728,"4.4":0,"4.4.3-4.4.4":0.03574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00577,"9":0.09808,"10":0.01731,"11":0.36924,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.81026},H:{"0":0.5307},L:{"0":23.29236},S:{"2.5":0},R:{_:"0"},M:{"0":0.85613},Q:{"10.4":0.05096}}; 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 323b288c33ee0c..e09638152a9aaa 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.11942,"53":0.00597,"55":0.02986,"56":0.01791,"66":0.00597,"72":0.05374,"74":0.00597,"78":0.11942,"79":0.01194,"81":0.01194,"83":0.00597,"84":0.02388,"85":0.01194,"86":0.00597,"87":0.03583,"88":0.04777,"89":0.02388,"90":0.02986,"91":0.10151,"92":0.05374,"93":0.99119,"94":5.49332,"95":0.03583,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 54 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 75 76 77 80 82 96 3.5 3.6"},D:{"38":0.00597,"49":0.24481,"53":0.00597,"57":0.00597,"61":0.07762,"67":0.01194,"68":0.00597,"71":0.00597,"73":0.03583,"74":0.01194,"75":0.02388,"77":0.02986,"78":0.01791,"79":0.16122,"80":0.02986,"81":0.01791,"83":0.02388,"84":0.0418,"85":0.02986,"86":0.07762,"87":0.72846,"88":0.05374,"89":0.12539,"90":0.11942,"91":0.1851,"92":0.35826,"93":0.34035,"94":1.20614,"95":23.36452,"96":13.07649,"97":0.01194,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 62 63 64 65 66 69 70 72 76 98 99"},F:{"36":0.01194,"78":0.00597,"79":0.04777,"80":1.95849,"81":0.92551,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02388,"84":0.01194,"85":0.00597,"87":0.00597,"88":0.00597,"89":0.0418,"92":0.02388,"93":0.01194,"94":0.10151,"95":2.80637,"96":1.06284,_:"12 13 14 15 16 17 79 80 81 83 86 90 91"},E:{"4":0,"13":0.03583,"14":0.35229,"15":0.46574,_:"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.03583,"12.1":0.06568,"13.1":0.28064,"14.1":1.0091,"15.1":0.84191},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01181,"8.1-8.4":0.00322,"9.0-9.2":0,"9.3":0.03435,"10.0-10.2":0.00429,"10.3":0.04616,"11.0-11.2":0.01503,"11.3-11.4":0.01932,"12.0-12.1":0.01503,"12.2-12.5":0.22648,"13.0-13.1":0.0161,"13.2":0.0161,"13.3":0.05796,"13.4-13.7":0.21468,"14.0-14.4":0.81899,"14.5-14.8":4.77547,"15.0-15.1":4.45561},P:{"4":0.03133,"5.0-5.4":0.02019,"6.2-6.4":0.03028,"7.2-7.4":0.29269,"8.2":0.01009,"9.2":0.1413,"10.1":0.04037,"11.1-11.2":0.12532,"12.0":0.04177,"13.0":0.15665,"14.0":0.21931,"15.0":3.47763},I:{"0":0,"3":0,"4":0.00291,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00291,"4.2-4.3":0.00728,"4.4":0,"4.4.3-4.4.4":0.05536},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01227,"11":0.20865,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":25.19629},S:{"2.5":0},R:{_:"0"},M:{"0":0.2739},Q:{"10.4":0},O:{"0":0.10876},H:{"0":0.35465}}; +module.exports={C:{"41":0.00574,"50":0.01148,"52":0.1263,"55":0.05741,"56":0.02296,"66":0.00574,"68":0.01148,"72":0.05741,"77":0.00574,"78":0.08612,"79":0.00574,"81":0.00574,"82":0.01148,"83":0.00574,"84":0.01722,"85":0.00574,"86":0.00574,"87":0.02296,"88":0.09186,"89":0.01722,"90":0.01722,"91":0.13778,"92":0.04019,"93":0.05741,"94":1.83138,"95":4.07037,"96":0.02296,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 51 53 54 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 80 97 3.5 3.6"},D:{"38":0.01722,"49":0.16075,"57":0.01148,"63":0.01148,"65":0.01148,"66":0.01148,"67":0.02296,"68":0.01722,"69":0.01722,"70":0.00574,"71":0.01148,"72":0.02296,"73":0.02296,"74":0.01722,"75":0.01722,"76":0.01148,"77":0.01148,"78":0.02871,"79":0.21242,"80":0.03445,"81":0.02296,"83":0.02296,"84":0.03445,"85":0.02296,"86":0.09186,"87":0.45928,"88":0.04019,"89":0.08612,"90":0.10334,"91":0.10908,"92":0.18945,"93":1.48692,"94":0.29279,"95":0.78078,"96":33.89486,"97":0.01148,"98":0.00574,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 61 62 64 99"},F:{"36":0.00574,"56":0.01148,"79":0.00574,"80":0.04019,"81":1.23432,"82":1.51562,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0.01148,"10":0.01148,"13":0.03445,"14":0.25835,"15":0.2239,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.03445,"11.1":0.01722,"12.1":0.05167,"13.1":0.2526,"14.1":0.71188,"15.1":1.1482,"15.2":0.19519},B:{"17":0.01148,"18":0.01148,"84":0.00574,"85":0.02871,"86":0.00574,"87":0.01722,"89":0.02296,"92":0.01722,"93":0.00574,"94":0.02871,"95":0.12056,"96":3.98425,_:"12 13 14 15 16 79 80 81 83 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00112,"5.0-5.1":0.00112,"6.0-6.1":0.00112,"7.0-7.1":0.00672,"8.1-8.4":0.00448,"9.0-9.2":0.00112,"9.3":0.02128,"10.0-10.2":0.00672,"10.3":0.07505,"11.0-11.2":0.03697,"11.3-11.4":0.02352,"12.0-12.1":0.02128,"12.2-12.5":0.22068,"13.0-13.1":0.02016,"13.2":0.02128,"13.3":0.04257,"13.4-13.7":0.19043,"14.0-14.4":0.73037,"14.5-14.8":3.40653,"15.0-15.1":5.78135,"15.2":0.58138},P:{"4":0.07317,"5.0-5.4":0.03058,"6.2-6.4":0.01045,"7.2-7.4":0.01045,"8.2":0.02041,"9.2":0.10193,"10.1":0.02091,"11.1-11.2":0.12543,"12.0":0.03136,"13.0":0.13589,"14.0":0.20906,"15.0":0.66898},I:{"0":0,"3":0,"4":0.00442,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00885,"4.2-4.3":0.01327,"4.4":0,"4.4.3-4.4.4":0.08848},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20668,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0.01278},O:{"0":0.15336},H:{"0":0.45574},L:{"0":26.94415},S:{"2.5":0},R:{_:"0"},M:{"0":0.31098},Q:{"10.4":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 e8c39a22fc70dc..86530d42001966 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:{"4":0.00439,"5":0.0022,"15":0.0022,"17":0.00659,"23":0.0022,"34":0.01098,"41":0.0022,"43":0.0022,"45":0.00659,"47":0.00659,"48":0.00439,"49":0.00439,"52":0.02854,"65":0.0022,"68":0.00439,"72":0.00659,"78":0.02854,"79":0.00439,"80":0.00439,"83":0.0022,"84":0.00439,"86":0.00439,"87":0.06366,"88":0.03951,"89":0.01098,"90":0.0022,"91":0.01317,"92":0.02195,"93":0.19097,"94":1.18969,"95":0.01976,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 44 46 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 81 82 85 96 3.5 3.6"},D:{"11":0.00439,"23":0.00659,"24":0.00659,"25":0.00878,"30":0.0022,"31":0.00439,"32":0.00439,"33":0.01756,"34":0.00659,"35":0.00878,"37":0.00439,"38":0.00439,"42":0.00659,"43":0.02634,"47":0.0022,"49":0.01976,"54":0.0022,"55":0.00439,"56":0.00439,"57":0.00659,"58":0.00659,"60":0.00659,"62":0.00659,"63":0.01756,"64":0.00439,"65":0.02415,"66":0.00439,"67":0.01098,"68":0.00439,"69":0.01098,"70":0.00439,"71":0.03073,"72":0.00659,"73":0.00659,"74":0.01317,"75":0.0022,"76":0.00659,"77":0.01098,"78":0.00878,"79":0.04171,"80":0.03512,"81":0.03951,"83":0.02195,"84":0.01098,"85":0.02195,"86":0.09219,"87":0.12731,"88":0.04171,"89":0.03732,"90":0.05268,"91":0.07463,"92":0.1778,"93":0.12512,"94":0.50705,"95":7.84713,"96":5.13411,"97":0.00659,"98":0.00659,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 36 39 40 41 44 45 46 48 50 51 52 53 59 61 99"},F:{"65":0.0022,"76":0.0022,"78":0.00439,"79":0.01976,"80":0.77264,"81":0.36657,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00439,"13":0.00659,"14":0.01098,"15":0.0022,"16":0.00878,"17":0.00659,"18":0.03512,"81":0.0022,"83":0.0022,"84":0.01317,"85":0.00439,"87":0.00439,"88":0.0022,"89":0.01317,"90":0.01976,"91":0.00659,"92":0.01976,"93":0.00878,"94":0.05268,"95":0.93288,"96":0.31608,_:"79 80 86"},E:{"4":0,"13":0.02854,"14":0.07024,"15":0.09439,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00878,"10.1":0.0022,"11.1":0.00659,"12.1":0.0022,"13.1":0.02195,"14.1":0.1756,"15.1":0.12073},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00164,"5.0-5.1":0.00082,"6.0-6.1":0.00329,"7.0-7.1":0.0337,"8.1-8.4":0.00493,"9.0-9.2":0.00164,"9.3":0.12495,"10.0-10.2":0.00904,"10.3":0.10522,"11.0-11.2":0.0337,"11.3-11.4":0.05754,"12.0-12.1":0.05261,"12.2-12.5":0.90177,"13.0-13.1":0.04192,"13.2":0.02795,"13.3":0.1044,"13.4-13.7":0.25647,"14.0-14.4":1.22976,"14.5-14.8":2.71106,"15.0-15.1":2.51624},P:{"4":0.44564,"5.0-5.4":0.01013,"6.2-6.4":0.0709,"7.2-7.4":0.6482,"8.2":0.02026,"9.2":0.09115,"10.1":0.04051,"11.1-11.2":0.42538,"12.0":0.09115,"13.0":0.31397,"14.0":0.50641,"15.0":1.95473},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.01548,"4.4":0,"4.4.3-4.4.4":0.06027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00439,"9":0.00439,"10":0.0022,"11":0.14268,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":61.54767},S:{"2.5":0},R:{_:"0"},M:{"0":0.08586},Q:{"10.4":0},O:{"0":0.56977},H:{"0":4.15277}}; +module.exports={C:{"4":0.00238,"5":0.00238,"15":0.00477,"17":0.00477,"27":0.00238,"30":0.00477,"33":0.00238,"34":0.00715,"35":0.00477,"37":0.00477,"43":0.00477,"45":0.00477,"47":0.00953,"48":0.00238,"52":0.0143,"56":0.00238,"64":0.00238,"68":0.00477,"72":0.00715,"78":0.00953,"79":0.00477,"82":0.00238,"84":0.00715,"86":0.00238,"87":0.00238,"88":0.01192,"89":0.00953,"90":0.00238,"91":0.00715,"92":0.00477,"93":0.00715,"94":0.31217,"95":0.82928,"96":0.0143,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 28 29 31 32 36 38 39 40 41 42 44 46 49 50 51 53 54 55 57 58 59 60 61 62 63 65 66 67 69 70 71 73 74 75 76 77 80 81 83 85 97 3.5 3.6"},D:{"11":0.00238,"22":0.00238,"23":0.00477,"24":0.00953,"25":0.00477,"32":0.00477,"33":0.01192,"34":0.00238,"37":0.00477,"38":0.01192,"42":0.00238,"43":0.01906,"47":0.00238,"49":0.01906,"50":0.00953,"53":0.00238,"54":0.00477,"55":0.00953,"56":0.00953,"57":0.00477,"58":0.00477,"60":0.00953,"61":0.01192,"63":0.02145,"64":0.00953,"65":0.02621,"66":0.00715,"67":0.01668,"68":0.00238,"69":0.00715,"70":0.00715,"71":0.0286,"72":0.00477,"73":0.00477,"74":0.00477,"75":0.00238,"76":0.00715,"77":0.00477,"78":0.00715,"79":0.03813,"80":0.0286,"81":0.03575,"83":0.02621,"84":0.0143,"85":0.0143,"86":0.05719,"87":0.05958,"88":0.03575,"89":0.04051,"90":0.03813,"91":0.05481,"92":0.14298,"93":0.12392,"94":0.1406,"95":0.25736,"96":13.56165,"97":0.00477,"98":0.00477,"99":0.00477,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 26 27 28 29 30 31 35 36 39 40 41 44 45 46 48 51 52 59 62"},F:{"76":0.00238,"79":0.04528,"80":0.0143,"81":0.3503,"82":0.49805,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01192,"14":0.04289,"15":0.06672,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00953,"10.1":0.00953,"11.1":0.00715,"12.1":0.00477,"13.1":0.05719,"14.1":0.17396,"15.1":0.16919,"15.2":0.04289},B:{"12":0.00477,"14":0.00477,"16":0.00715,"17":0.00953,"18":0.04528,"84":0.0143,"85":0.00715,"89":0.00953,"90":0.00715,"91":0.00477,"92":0.0143,"93":0.00477,"94":0.00953,"95":0.08817,"96":1.26776,_:"13 15 79 80 81 83 86 87 88"},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.00248,"7.0-7.1":0.02315,"8.1-8.4":0.00331,"9.0-9.2":0.00248,"9.3":0.09176,"10.0-10.2":0.00496,"10.3":0.10086,"11.0-11.2":0.02728,"11.3-11.4":0.04133,"12.0-12.1":0.05125,"12.2-12.5":0.90854,"13.0-13.1":0.03968,"13.2":0.03885,"13.3":0.09424,"13.4-13.7":0.28273,"14.0-14.4":1.00195,"14.5-14.8":2.13452,"15.0-15.1":2.90996,"15.2":0.50263},P:{"4":0.43598,"5.0-5.4":4.36856,"6.2-6.4":0.08111,"7.2-7.4":0.60834,"8.2":0.01014,"9.2":0.11153,"10.1":0.04056,"11.1-11.2":0.34473,"12.0":0.12167,"13.0":0.31431,"14.0":0.43598,"15.0":0.63876},I:{"0":0,"3":0,"4":0.00026,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00981,"4.4":0,"4.4.3-4.4.4":0.03382},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00477,"9":0.00477,"10":0.00715,"11":0.10247,_:"6 7 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0.59413},H:{"0":4.49984},L:{"0":61.67741},S:{"2.5":0},R:{_:"0"},M:{"0":0.08379},Q:{"10.4":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 0cfa8a8bb48d60..20cf024cf6b257 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.49421,"15":0.49823,"18":0.50627,"21":0.49421,"23":0.50225,"25":1.00852,"28":0.00402,"30":0.4902,"50":0.00402,"51":0.48216,"52":0.08438,"55":0.00402,"56":0.00402,"57":0.00402,"64":0.00402,"65":0.00804,"66":0.00402,"68":0.00804,"72":0.00804,"78":0.0442,"80":0.00804,"81":0.01205,"82":0.00804,"83":0.00804,"84":0.02813,"85":0.00402,"86":0.00402,"88":0.02009,"89":0.02411,"90":0.01205,"91":0.04018,"92":0.02813,"93":0.22099,"94":1.117,"95":0.02411,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 53 54 58 59 60 61 62 63 67 69 70 71 73 74 75 76 77 79 87 96 3.5 3.6"},D:{"19":0.4902,"24":1.47461,"30":0.49823,"33":0.49421,"35":1.01655,"38":0.00804,"43":0.00804,"49":0.1125,"53":0.01607,"54":0.49823,"55":0.50627,"56":2.49518,"58":0.00402,"60":0.00402,"61":0.01607,"62":0.00402,"63":0.01205,"65":0.00804,"66":0.00402,"67":0.01205,"68":0.01205,"69":0.01205,"70":0.01205,"71":0.00804,"72":0.02009,"73":0.00402,"74":0.01607,"75":0.02009,"76":0.01205,"77":0.00804,"78":0.01205,"79":0.07232,"80":0.02009,"81":0.03214,"83":0.05625,"84":0.10045,"85":0.09643,"86":0.14063,"87":0.48618,"88":0.10849,"89":0.06027,"90":0.07634,"91":0.14063,"92":0.14465,"93":0.34555,"94":0.75137,"95":7.38508,"96":5.04661,"97":0.01607,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 31 32 34 36 37 39 40 41 42 44 45 46 47 48 50 51 52 57 59 64 98 99"},F:{"28":0.00402,"40":0.00804,"43":0.50225,"75":0.00402,"78":0.00804,"79":0.03214,"80":0.6911,"81":0.27724,_:"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 44 45 46 47 48 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.49421},B:{"13":0.00402,"14":0.00402,"16":0.00804,"17":0.00804,"18":0.02411,"84":0.01205,"85":0.00804,"86":0.01205,"87":0.00402,"88":0.00402,"89":0.02411,"90":0.02009,"91":0.02009,"92":0.03214,"93":0.01607,"94":0.06027,"95":0.78351,"96":0.34153,_:"12 15 79 80 81 83"},E:{"4":0,"5":0.49823,"8":0.00402,"12":0.00804,"13":0.09241,"14":0.09241,"15":0.10447,_:"0 6 7 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00804,"9.1":0.00402,"10.1":0.00804,"11.1":0.01607,"12.1":0.02813,"13.1":0.10849,"14.1":0.18885,"15.1":0.09241},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01052,"6.0-6.1":9.44179,"7.0-7.1":0.03457,"8.1-8.4":0.00601,"9.0-9.2":0,"9.3":0.05111,"10.0-10.2":1.29879,"10.3":0.06013,"11.0-11.2":0.08568,"11.3-11.4":0.03758,"12.0-12.1":0.05712,"12.2-12.5":0.4675,"13.0-13.1":0.01804,"13.2":0.01052,"13.3":0.05111,"13.4-13.7":0.16536,"14.0-14.4":0.5111,"14.5-14.8":1.54682,"15.0-15.1":1.17553},P:{"4":0.42878,"5.0-5.4":0.05116,"6.2-6.4":0.02046,"7.2-7.4":0.15007,"8.2":0.05634,"9.2":0.04288,"10.1":0.01072,"11.1-11.2":0.12863,"12.0":0.04288,"13.0":0.19295,"14.0":0.17151,"15.0":1.55433},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01289,"4.2-4.3":0.40532,"4.4":0,"4.4.3-4.4.4":0.73651},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":1.00837,"9":1.0124,"10":1.0124,"11":0.1089,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":41.35778},S:{"2.5":0},R:{_:"0"},M:{"0":0.10769},Q:{"10.4":0},O:{"0":0.0718},H:{"0":0.21524}}; +module.exports={C:{"2":0.44189,"15":0.44189,"18":0.44189,"21":0.44189,"23":0.44189,"25":0.87582,"30":0.43791,"48":0.00796,"49":0.00398,"50":0.00796,"51":0.44587,"52":0.08758,"55":0.00796,"56":0.00796,"57":0.01194,"58":0.00796,"59":0.00796,"60":0.01194,"61":0.00796,"63":0.00398,"64":0.01194,"65":0.01194,"66":0.00796,"68":0.00796,"72":0.00796,"78":0.04777,"79":0.00398,"80":0.00796,"81":0.01194,"82":0.00796,"83":0.00796,"84":0.05972,"85":0.00398,"88":0.01991,"89":0.02787,"90":0.01194,"91":0.04379,"92":0.02389,"93":0.04777,"94":0.41801,"95":0.87582,"96":0.01592,_:"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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 53 54 62 67 69 70 71 73 74 75 76 77 86 87 97 3.5 3.6"},D:{"11":0.00398,"19":0.43791,"24":1.30975,"30":0.42597,"33":0.44587,"35":0.88378,"37":0.00398,"38":0.00796,"43":0.00796,"49":0.09156,"53":0.01194,"54":0.44587,"55":0.44587,"56":2.23732,"57":0.00796,"58":0.01194,"59":0.00796,"60":0.00796,"62":0.01194,"63":0.01991,"64":0.01194,"65":0.03185,"66":0.04777,"67":0.05573,"68":0.01991,"69":0.02389,"70":0.02787,"71":0.02389,"72":0.02389,"73":0.00398,"74":0.01991,"75":0.04777,"76":0.01194,"77":0.01194,"78":0.01592,"79":0.0836,"80":0.01991,"81":0.03981,"83":0.05175,"84":0.13535,"85":0.12739,"86":0.16322,"87":0.42995,"88":0.13934,"89":0.0637,"90":0.09156,"91":0.14332,"92":0.15526,"93":0.56928,"94":0.70862,"95":0.36227,"96":12.18584,"97":0.01592,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 31 32 34 36 39 40 41 42 44 45 46 47 48 50 51 52 61 98 99"},F:{"28":0.00398,"40":0.00796,"43":0.44985,"53":0.01991,"57":0.00796,"70":0.00398,"75":0.00398,"78":0.00796,"79":0.01592,"80":0.03583,"81":0.39014,"82":0.55734,_:"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 44 45 46 47 48 49 50 51 52 54 55 56 58 60 62 63 64 65 66 67 68 69 71 72 73 74 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.43393},E:{"4":0,"5":0.44189,"7":0.00398,"8":0.00796,"10":0.00796,"11":0.00796,"12":0.01194,"13":0.07564,"14":0.08758,"15":0.10749,_:"0 6 9 3.1 3.2 6.1 7.1","5.1":0.01194,"9.1":0.00796,"10.1":0.01194,"11.1":0.01991,"12.1":0.02787,"13.1":0.11147,"14.1":0.17915,"15.1":0.11943,"15.2":0.02389},B:{"13":0.00796,"14":0.00796,"15":0.00398,"16":0.01194,"17":0.00796,"18":0.02787,"84":0.01592,"85":0.01194,"86":0.01592,"87":0.00796,"88":0.00796,"89":0.02389,"90":0.02389,"91":0.02389,"92":0.03583,"93":0.01592,"94":0.05573,"95":0.08758,"96":1.20226,_:"12 79 80 81 83"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01189,"6.0-6.1":8.35912,"7.0-7.1":0.03271,"8.1-8.4":0.00595,"9.0-9.2":0,"9.3":0.08474,"10.0-10.2":1.18184,"10.3":0.08622,"11.0-11.2":0.15312,"11.3-11.4":0.09068,"12.0-12.1":0.14123,"12.2-12.5":0.89196,"13.0-13.1":0.01933,"13.2":0.00892,"13.3":0.05352,"13.4-13.7":0.17839,"14.0-14.4":0.56937,"14.5-14.8":1.34388,"15.0-15.1":1.50889,"15.2":0.14271},P:{"4":0.53755,"5.0-5.4":0.05121,"6.2-6.4":0.01024,"7.2-7.4":0.16127,"8.2":0.0443,"9.2":0.06451,"10.1":0.05135,"11.1-11.2":0.12901,"12.0":0.03225,"13.0":0.16127,"14.0":0.16127,"15.0":0.38704},I:{"0":0,"3":0,"4":0.00432,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02015,"4.2-4.3":0.31952,"4.4":0,"4.4.3-4.4.4":0.68509},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.90352,"9":0.90352,"10":0.90752,"11":0.11594,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.0662},H:{"0":0.2222},L:{"0":42.36444},S:{"2.5":0},R:{_:"0"},M:{"0":0.12036},Q:{"10.4":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 72cd1edaeb4125..06d1a8f193668f 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.00681,"68":0.00681,"78":0.44278,"82":0.01362,"90":0.01362,"91":0.04087,"92":0.06131,"93":0.66076,"94":5.08856,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 95 96 3.5 3.6"},D:{"6":1.29428,"49":0.14305,"53":0.01362,"63":0.06131,"70":0.00681,"72":0.02725,"74":0.04087,"76":0.01362,"77":0.40872,"79":0.06131,"80":0.02044,"81":0.03406,"83":0.01362,"84":0.04768,"85":0.10218,"86":0.06131,"87":0.34741,"88":0.02725,"89":0.36104,"90":0.08174,"91":0.14986,"92":0.47684,"93":0.80382,"94":3.02453,"95":18.07905,"96":10.68803,_:"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 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 69 71 73 75 78 97 98 99"},F:{"69":0.01362,"79":0.08174,"80":0.23161,"81":0.04768,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.06812,"85":0.00681,"92":0.01362,"93":0.02044,"94":0.07493,"95":4.42099,"96":1.0763,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91"},E:{"4":0,"12":0.02044,"13":0.10899,"14":1.67575,"15":2.3297,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02044,"10.1":0.08856,"11.1":0.18392,"12.1":0.20436,"13.1":3.13352,"14.1":6.03543,"15.1":2.84742},G:{"8":0,"3.2":0,"4.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.00423,"9.0-9.2":0.00846,"9.3":0.03807,"10.0-10.2":0.02749,"10.3":0.06767,"11.0-11.2":0.02961,"11.3-11.4":0.05076,"12.0-12.1":0.01692,"12.2-12.5":0.53293,"13.0-13.1":0.01903,"13.2":0.00423,"13.3":0.0571,"13.4-13.7":1.24139,"14.0-14.4":1.02357,"14.5-14.8":12.03749,"15.0-15.1":5.98068},P:{"4":0.01089,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":0.04143,"8.2":0.01029,"9.2":0.03107,"10.1":0.05029,"11.1-11.2":0.02178,"12.0":0.28308,"13.0":0.13465,"14.0":0.13465,"15.0":1.44806},I:{"0":0,"3":0.00013,"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.00625},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.93324,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":9.28779},S:{"2.5":0},R:{_:"0"},M:{"0":0.1594},Q:{"10.4":0},O:{"0":0.00319},H:{"0":0.05131}}; +module.exports={C:{"75":0.01338,"78":0.90342,"80":0.04015,"81":0.03346,"82":0.02008,"84":0.18738,"89":0.00669,"91":0.10038,"93":0.02677,"94":1.88714,"95":4.05535,"96":0.02008,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 83 85 86 87 88 90 92 97 3.5 3.6"},D:{"49":0.01338,"53":0.02008,"65":0.01338,"67":0.00669,"70":0.00669,"72":0.02008,"74":0.00669,"76":0.01338,"77":0.56882,"78":0.02008,"79":0.05354,"80":0.03346,"81":0.06692,"83":0.02008,"84":0.0803,"85":0.20076,"86":0.04015,"87":0.46175,"88":0.00669,"89":0.27437,"90":0.03346,"91":0.02008,"92":0.09369,"93":0.2476,"94":0.68928,"95":1.24471,"96":29.96008,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 69 71 73 75 97 98 99"},F:{"69":0.02008,"70":0.00669,"81":0.15392,"82":0.34129,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.02008,"13":0.06692,"14":1.53916,"15":1.586,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02008,"11.1":0.11376,"12.1":0.0803,"13.1":1.89384,"14.1":6.55816,"15.1":4.91862,"15.2":0.84319},B:{"17":0.0803,"18":0.20745,"85":0.02008,"91":0.00669,"93":0.01338,"94":0.01338,"95":0.20076,"96":3.90813,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 90 92"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00826,"6.0-6.1":0,"7.0-7.1":0.01652,"8.1-8.4":0,"9.0-9.2":0.00206,"9.3":0.05781,"10.0-10.2":0.064,"10.3":0.05781,"11.0-11.2":0.00826,"11.3-11.4":0.01032,"12.0-12.1":0.03716,"12.2-12.5":0.46245,"13.0-13.1":0.01445,"13.2":0.00206,"13.3":0.04335,"13.4-13.7":0.63381,"14.0-14.4":1.09213,"14.5-14.8":7.16802,"15.0-15.1":10.18016,"15.2":0.78658},P:{"4":0.02167,"5.0-5.4":0.01047,"6.2-6.4":0.09073,"7.2-7.4":0.05233,_:"8.2","9.2":0.0314,"10.1":0.0103,"11.1-11.2":0.05417,"12.0":0.30338,"13.0":0.02167,"14.0":0.02167,"15.0":0.08668},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.68258,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.00662},H:{"0":0.04071},L:{"0":11.51218},S:{"2.5":0},R:{_:"0"},M:{"0":0.16209},Q:{"10.4":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 6401a71d0fc4c2..c550660cb8edfc 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:{"44":0.00428,"52":0.08566,"55":0.06425,"56":0.00428,"60":0.00428,"68":0.01285,"72":0.00857,"73":0.00857,"78":0.07709,"79":0.01285,"80":0.00428,"81":0.00857,"82":0.20558,"84":0.0257,"85":0.01285,"87":0.00857,"88":0.0257,"89":0.03855,"90":0.01285,"91":0.09423,"92":0.03426,"93":0.29981,"94":1.47764,"95":0.01285,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 57 58 59 61 62 63 64 65 66 67 69 70 71 74 75 76 77 83 86 96 3.5","3.6":0.01285},D:{"26":0.00428,"33":0.01713,"35":0.00857,"49":0.17989,"53":0.01285,"57":0.00428,"58":0.00857,"59":0.04711,"60":0.00428,"63":0.00857,"66":0.00857,"67":0.0514,"69":0.02142,"70":0.01285,"71":0.02142,"72":0.00857,"73":0.03426,"74":0.00857,"75":0.01285,"76":0.0257,"77":0.02142,"78":0.01285,"79":0.04283,"80":0.13277,"81":0.01285,"83":0.03426,"84":0.08138,"85":0.08138,"86":0.13277,"87":0.4797,"88":0.07281,"89":0.05996,"90":0.04283,"91":0.07709,"92":0.227,"93":0.16275,"94":0.91656,"95":17.44038,"96":11.25572,"97":0.00857,_:"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 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 61 62 64 65 68 98 99"},F:{"70":0.03855,"71":0.01285,"78":0.01285,"79":0.02998,"80":1.59328,"81":0.73668,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00857},B:{"18":0.13277,"85":0.00428,"89":0.00857,"91":0.00428,"92":0.00857,"94":0.02998,"95":0.90371,"96":0.41973,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 90 93"},E:{"4":0,"11":0.01285,"13":0.02998,"14":0.46256,"15":0.17989,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05568,"11.1":0.00857,"12.1":0.0257,"13.1":0.11136,"14.1":0.4026,"15.1":0.27411},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00088,"6.0-6.1":0,"7.0-7.1":0.00971,"8.1-8.4":0.00088,"9.0-9.2":0.00353,"9.3":0.03443,"10.0-10.2":0.01059,"10.3":0.04061,"11.0-11.2":0.00971,"11.3-11.4":0.01589,"12.0-12.1":0.01413,"12.2-12.5":0.41496,"13.0-13.1":0.01766,"13.2":0.01148,"13.3":0.0671,"13.4-13.7":0.21013,"14.0-14.4":0.63657,"14.5-14.8":3.69054,"15.0-15.1":3.63668},P:{"4":0.13465,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":0.04143,"8.2":0.01029,"9.2":0.03107,"10.1":0.05029,"11.1-11.2":0.10358,"12.0":0.03107,"13.0":0.13465,"14.0":0.13465,"15.0":1.99901},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.00667,"4.4":0,"4.4.3-4.4.4":0.0326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01756,"9":0.00878,"11":0.14926,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.11979},S:{"2.5":0},R:{_:"0"},M:{"0":0.07431},Q:{"10.4":0},O:{"0":0.12575},H:{"0":0.20023}}; +module.exports={C:{"48":0.00892,"52":0.05797,"55":0.07134,"56":0.00446,"57":0.00892,"65":0.00446,"68":0.00446,"77":0.00446,"78":0.06689,"79":0.00446,"80":0.0223,"81":0.00446,"82":0.00446,"84":0.0223,"85":0.03567,"86":0.01338,"87":0.46374,"88":0.13377,"89":0.03121,"91":0.12039,"92":0.00892,"93":0.04459,"94":0.55738,"95":1.20393,"96":0.01338,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 83 90 97 3.5","3.6":0.00892},D:{"41":0.00892,"49":0.16498,"53":0.01338,"58":0.00892,"59":0.05351,"60":0.00446,"63":0.00892,"65":0.00892,"66":0.00892,"67":0.03121,"69":0.01338,"70":0.01338,"71":0.01338,"72":0.00446,"73":0.03121,"74":0.00892,"75":0.01784,"76":0.0223,"77":0.01784,"78":0.00892,"79":0.03121,"80":0.05797,"81":0.02675,"83":0.06689,"84":0.07134,"85":0.08918,"86":0.12039,"87":0.544,"88":0.04013,"89":0.04459,"90":0.04459,"91":0.0758,"92":0.16498,"93":0.29429,"94":0.30321,"95":1.86832,"96":28.02482,"97":0.01338,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 57 61 62 64 68 98 99"},F:{"36":0.00446,"70":0.00892,"79":0.00446,"80":0.02675,"81":1.07908,"82":1.24406,_:"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 71 72 73 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},E:{"4":0,"11":0.00446,"12":0.00446,"13":0.03121,"14":0.28092,"15":0.0981,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05797,"11.1":0.00446,"12.1":0.03121,"13.1":0.11593,"14.1":0.29429,"15.1":0.34334,"15.2":0.04905},B:{"17":0.00446,"18":0.02675,"84":0.00446,"86":0.01338,"89":0.00446,"94":0.00892,"95":0.0223,"96":1.45363,_:"12 13 14 15 16 79 80 81 83 85 87 88 90 91 92 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00178,"6.0-6.1":0.00089,"7.0-7.1":0.01071,"8.1-8.4":0.00178,"9.0-9.2":0.00089,"9.3":0.04641,"10.0-10.2":0.00625,"10.3":0.04195,"11.0-11.2":0.02053,"11.3-11.4":0.01963,"12.0-12.1":0.01696,"12.2-12.5":0.40251,"13.0-13.1":0.01071,"13.2":0.00714,"13.3":0.04819,"13.4-13.7":0.19902,"14.0-14.4":0.60242,"14.5-14.8":2.73633,"15.0-15.1":4.45078,"15.2":0.29452},P:{"4":0.0628,"5.0-5.4":0.01047,"6.2-6.4":0.09073,"7.2-7.4":0.05233,_:"8.2","9.2":0.0314,"10.1":0.0103,"11.1-11.2":0.10467,"12.0":0.0314,"13.0":0.11514,"14.0":0.1256,"15.0":0.33494},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00394,"4.2-4.3":0.00657,"4.4":0,"4.4.3-4.4.4":0.02826},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01784,"9":0.00892,"11":0.14715,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00554},O:{"0":0.12742},H:{"0":0.24651},L:{"0":45.28746},S:{"2.5":0},R:{_:"0"},M:{"0":0.07756},Q:{"10.4":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 f48d2270b71d74..3ae446731d6065 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:{"49":0.01237,"52":0.70898,"56":0.01649,"78":0.01649,"82":0.00412,"84":0.00412,"88":0.00824,"89":0.00824,"91":0.00824,"92":0.04122,"93":0.30915,"94":2.34542,"95":0.02473,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 85 86 87 90 96 3.5 3.6"},D:{"22":0.00412,"38":0.03298,"49":0.18961,"53":0.03298,"63":0.00824,"65":0.00412,"66":0.04946,"67":0.00824,"68":0.01237,"70":0.01237,"71":0.00412,"74":0.00824,"75":0.00412,"76":0.03298,"78":0.02885,"79":0.169,"80":0.01237,"81":0.00824,"83":0.01649,"84":0.20198,"85":0.03298,"86":0.03298,"87":0.0742,"88":0.1319,"89":0.04946,"90":0.05359,"91":0.06595,"92":0.18549,"93":0.12778,"94":0.92745,"95":15.29674,"96":8.73864,"97":0.00824,_:"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 56 57 58 59 60 61 62 64 69 72 73 77 98 99"},F:{"28":0.00824,"31":0.00412,"40":0.00412,"46":0.03298,"68":5.82851,"79":0.01649,"80":0.9563,"81":0.36274,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.02473,"17":0.00412,"18":0.02061,"84":0.01649,"89":0.00824,"92":0.01237,"94":0.02473,"95":0.88211,"96":0.35449,_:"12 13 14 15 79 80 81 83 85 86 87 88 90 91 93"},E:{"4":0,"12":0.01237,"13":0.01649,"14":0.10305,"15":0.11542,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00412,"11.1":0.00824,"12.1":0.01237,"13.1":0.08244,"14.1":0.45754,"15.1":0.25144},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,"7.0-7.1":0.02816,"8.1-8.4":0.00325,"9.0-9.2":0.00108,"9.3":0.05415,"10.0-10.2":0.01408,"10.3":0.11588,"11.0-11.2":0.03249,"11.3-11.4":0.03032,"12.0-12.1":0.01949,"12.2-12.5":0.52198,"13.0-13.1":0.01733,"13.2":0.01191,"13.3":0.08447,"13.4-13.7":0.26532,"14.0-14.4":0.78513,"14.5-14.8":5.39415,"15.0-15.1":3.44593},P:{"4":0.17434,"5.0-5.4":0.05116,"6.2-6.4":0.02046,"7.2-7.4":0.06153,"8.2":0.01029,"9.2":0.14325,"10.1":0.06153,"11.1-11.2":0.21537,"12.0":0.04102,"13.0":0.13332,"14.0":0.13332,"15.0":2.88181},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00024,"4.2-4.3":0.00094,"4.4":0,"4.4.3-4.4.4":0.01058},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00521,"11":0.09372,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":44.62121},S:{"2.5":0},R:{_:"0"},M:{"0":0.19985},Q:{"10.4":0},O:{"0":0.01763},H:{"0":0.20034}}; +module.exports={C:{"49":0.00428,"52":0.84704,"56":0.00856,"78":0.00856,"81":0.00428,"84":0.00856,"85":0.00428,"88":0.00856,"89":0.00856,"91":0.01283,"92":0.02995,"93":0.02139,"94":0.88982,"95":1.6727,"96":0.00428,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 86 87 90 97 3.5 3.6"},D:{"38":0.01711,"43":0.00428,"49":0.08128,"53":0.01283,"63":0.00856,"65":0.00428,"66":0.0385,"68":0.00428,"69":0.00428,"70":0.00428,"71":0.00428,"75":0.01711,"76":0.0385,"77":0.00428,"78":0.02995,"79":0.12406,"80":0.01283,"81":0.00856,"83":0.01711,"84":0.97966,"85":0.02567,"86":0.02567,"87":0.05989,"88":0.04706,"89":0.0385,"90":0.02139,"91":0.05989,"92":0.09839,"93":0.06845,"94":0.16684,"95":0.59036,"96":19.72158,"97":0.01283,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 67 72 73 74 98 99"},F:{"25":0.00428,"36":0.00428,"40":0.00856,"46":0.01711,"68":9.36454,"80":0.02567,"81":0.53047,"82":0.90266,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 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 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00856,"13":0.01711,"14":0.07273,"15":0.05134,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00428,"11.1":0.01283,"12.1":0.03422,"13.1":0.06417,"14.1":0.29518,"15.1":0.23101,"15.2":0.03422},B:{"16":0.00856,"18":0.01283,"92":0.01711,"94":0.00856,"95":0.02567,"96":1.18928,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.001,"6.0-6.1":0,"7.0-7.1":0.01294,"8.1-8.4":0.00299,"9.0-9.2":0.001,"9.3":0.06768,"10.0-10.2":0.01294,"10.3":0.09854,"11.0-11.2":0.01593,"11.3-11.4":0.02687,"12.0-12.1":0.01692,"12.2-12.5":0.42701,"13.0-13.1":0.01294,"13.2":0.01095,"13.3":0.05574,"13.4-13.7":0.25979,"14.0-14.4":0.62409,"14.5-14.8":3.84505,"15.0-15.1":4.15859,"15.2":0.2996},P:{"4":0.09244,"5.0-5.4":0.05121,"6.2-6.4":0.01024,"7.2-7.4":0.06162,_:"8.2","9.2":0.11267,"10.1":0.05135,"11.1-11.2":0.18487,"12.0":0.03081,"13.0":0.11298,"14.0":0.11298,"15.0":0.32866},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.00265,"4.4":0,"4.4.3-4.4.4":0.02507},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08128,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.02289},H:{"0":0.23836},L:{"0":47.07361},S:{"2.5":0},R:{_:"0"},M:{"0":0.16022},Q:{"10.4":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 092bed440cacc6..a4570a925353e7 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:{"33":0.00602,"40":0.00602,"41":0.00602,"43":0.01204,"44":0.00602,"46":0.00602,"47":0.08428,"48":0.03612,"52":0.24682,"56":0.04816,"57":0.01204,"60":0.00602,"61":0.01204,"65":0.02408,"66":0.00602,"67":0.01806,"68":0.01204,"70":0.0301,"71":0.09632,"72":0.10836,"73":0.03612,"74":0.01204,"77":0.02408,"78":0.09632,"80":0.04214,"81":0.03612,"83":0.01806,"84":0.0301,"85":0.02408,"86":0.04214,"87":0.02408,"88":0.07224,"89":0.25886,"90":0.04816,"91":0.16254,"92":0.16254,"93":1.24614,"94":6.66414,"95":0.07224,"96":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 34 35 36 37 38 39 42 45 49 50 51 53 54 55 58 59 62 63 64 69 75 76 79 82 3.5 3.6"},D:{"11":0.02408,"25":0.00602,"29":0.01806,"32":0.00602,"33":0.00602,"43":0.01204,"49":0.12642,"57":0.01806,"58":0.0301,"63":0.01806,"64":0.00602,"65":0.02408,"67":0.00602,"69":0.01204,"70":0.00602,"71":0.03612,"72":0.0602,"73":0.01806,"74":0.02408,"75":0.01204,"76":0.02408,"77":0.01204,"78":0.01806,"79":0.05418,"80":0.03612,"81":0.12642,"83":0.02408,"84":0.0301,"85":0.04816,"86":0.24682,"87":0.45752,"88":0.10234,"89":0.14448,"90":0.0903,"91":0.29498,"92":0.44548,"93":0.86688,"94":1.04146,"95":18.01184,"96":11.68482,"97":0.00602,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 30 31 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 59 60 61 62 66 68 98 99"},F:{"32":0.02408,"53":0.03612,"58":0.00602,"62":0.00602,"68":0.01806,"69":0.01204,"77":0.01204,"78":0.02408,"79":0.01806,"80":1.85416,"81":0.5117,_:"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 54 55 56 57 60 63 64 65 66 67 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01204,"14":0.00602,"15":0.01204,"17":0.01806,"18":0.16856,"84":0.01806,"89":0.04816,"90":0.01806,"91":0.01806,"92":0.03612,"93":0.07826,"94":0.05418,"95":2.29362,"96":0.98126,_:"13 16 79 80 81 83 85 86 87 88"},E:{"4":0.00602,"6":0.01806,"13":0.0602,"14":0.0602,"15":0.07826,_:"0 5 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.04816,"12.1":0.17458,"13.1":0.1204,"14.1":0.20468,"15.1":0.10234},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00237,"5.0-5.1":0.00119,"6.0-6.1":0.0019,"7.0-7.1":0.03251,"8.1-8.4":0,"9.0-9.2":0.0102,"9.3":0.05624,"10.0-10.2":0.06716,"10.3":0.08875,"11.0-11.2":0.03987,"11.3-11.4":0.00759,"12.0-12.1":0.00878,"12.2-12.5":0.24513,"13.0-13.1":0.01685,"13.2":0.00902,"13.3":0.02088,"13.4-13.7":0.11699,"14.0-14.4":0.42952,"14.5-14.8":0.68272,"15.0-15.1":0.53441},P:{"4":0.11153,"5.0-5.4":0.01047,"6.2-6.4":0.0709,"7.2-7.4":0.01115,"8.2":0.02026,"9.2":0.08657,"10.1":0.01032,"11.1-11.2":0.02231,"12.0":0.02231,"13.0":0.15614,"14.0":0.01115,"15.0":0.65801},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00391,"4.2-4.3":0.01636,"4.4":0,"4.4.3-4.4.4":0.05849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.11946,"9":0.03186,"10":0.03982,"11":0.57341,_:"6 7 5.5"},J:{"7":0,"10":0.01592},N:{"10":0.02658,"11":0.22582},L:{"0":35.93802},S:{"2.5":0.10348},R:{_:"0"},M:{"0":0.42586},Q:{"10.4":0.02786},O:{"0":1.89448},H:{"0":4.93986}}; +module.exports={C:{"28":0.00579,"31":0.01158,"33":0.00579,"35":0.01158,"38":0.00579,"41":0.01737,"43":0.01158,"47":0.04632,"48":0.04053,"49":0.04053,"52":0.2316,"56":0.01737,"57":0.01737,"58":0.00579,"60":0.00579,"61":0.01158,"64":0.00579,"65":0.00579,"66":0.01737,"67":0.00579,"68":0.02316,"70":0.05211,"72":0.26634,"75":0.00579,"76":0.02316,"77":0.00579,"78":0.07527,"79":0.01158,"80":0.03474,"81":0.03474,"82":0.01737,"83":0.01158,"84":0.01737,"85":0.01737,"86":0.01158,"87":0.02316,"88":0.06948,"89":0.11001,"90":0.04632,"91":0.1737,"92":0.07527,"93":0.15633,"94":2.47233,"95":4.38882,"96":0.04632,"97":0.04053,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 34 36 37 39 40 42 44 45 46 50 51 53 54 55 59 62 63 69 71 73 74 3.5 3.6"},D:{"11":0.02895,"32":0.01158,"38":0.01737,"40":0.00579,"42":0.09264,"46":0.01737,"49":0.07527,"50":0.01737,"57":0.03474,"58":0.00579,"60":0.00579,"61":0.01158,"63":0.01737,"64":0.02316,"65":0.00579,"66":0.01737,"67":0.00579,"69":0.01158,"70":0.01158,"71":0.04632,"72":0.0579,"73":0.06948,"74":0.02895,"75":0.00579,"76":0.01158,"77":0.01737,"78":0.01158,"79":0.12738,"80":0.04053,"81":0.11001,"83":0.03474,"84":0.02316,"85":0.06369,"86":0.27213,"87":0.35898,"88":0.08106,"89":0.27213,"90":0.12738,"91":0.22002,"92":0.26055,"93":0.94956,"94":0.4632,"95":0.79902,"96":27.01614,"97":0.02316,_:"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 39 41 43 44 45 47 48 51 52 53 54 55 56 59 62 68 98 99"},F:{"32":0.02316,"53":0.05211,"77":0.00579,"79":0.01158,"80":0.04053,"81":0.71217,"82":1.01325,_:"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 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"6":0.01158,"13":0.01158,"14":0.05211,"15":0.05211,_:"0 5 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00579,"11.1":0.02316,"12.1":0.13896,"13.1":0.09264,"14.1":0.16212,"15.1":0.13896,"15.2":0.02895},B:{"12":0.01737,"13":0.00579,"14":0.01158,"15":0.01158,"16":0.00579,"17":0.01737,"18":0.08685,"84":0.02316,"85":0.01158,"89":0.04632,"90":0.01158,"91":0.00579,"92":0.02895,"93":0.04053,"94":0.01158,"95":0.07527,"96":3.27714,_:"79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0.00401,"6.0-6.1":0.0005,"7.0-7.1":0.03858,"8.1-8.4":0.00225,"9.0-9.2":0.0015,"9.3":0.0699,"10.0-10.2":0.02255,"10.3":0.07867,"11.0-11.2":0.01278,"11.3-11.4":0.01653,"12.0-12.1":0.00601,"12.2-12.5":0.50131,"13.0-13.1":0.02781,"13.2":0.00601,"13.3":0.02781,"13.4-13.7":0.05637,"14.0-14.4":0.26857,"14.5-14.8":0.58975,"15.0-15.1":0.64411,"15.2":0.12977},P:{"4":0.08861,"5.0-5.4":0.01041,"6.2-6.4":0.01108,"7.2-7.4":0.02215,_:"8.2","9.2":0.07577,"10.1":0.01108,"11.1-11.2":0.03323,"12.0":0.02215,"13.0":0.07754,"14.0":0.144,"15.0":0.29907},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0077,"4.2-4.3":0.02417,"4.4":0,"4.4.3-4.4.4":0.08935},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01608,"9":0.03217,"11":0.24125,_:"6 7 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.01684},O:{"0":1.77283},H:{"0":5.25049},L:{"0":40.46486},S:{"2.5":0.13475},R:{_:"0"},M:{"0":0.47163},Q:{"10.4":0.01263}}; 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 33d3e23f222e31..d8eabf751f559b 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:{"78":0.12658,"80":0.01582,"89":0.00527,"90":0.00527,"92":0.00527,"93":0.21623,"94":3.51776,"95":0.01582,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 87 88 91 96 3.5 3.6"},D:{"42":0.00527,"63":0.05801,"66":0.0211,"67":2.77412,"69":0.00527,"73":0.04747,"75":0.0211,"76":0.06329,"77":0.00527,"79":0.18986,"80":0.00527,"84":0.01582,"87":0.00527,"88":0.07911,"89":0.00527,"90":0.00527,"91":0.03692,"92":0.85966,"93":0.15822,"94":0.74363,"95":17.85249,"96":12.76308,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 68 70 71 72 74 78 81 83 85 86 97 98 99"},F:{"80":0.08438,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00527,"84":0.00527,"91":0.02637,"92":0.0211,"93":0.00527,"94":0.08438,"95":2.42077,"96":1.6033,_:"13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90"},E:{"4":0,"13":0.02637,"14":0.40082,"15":0.27425,_:"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.06856,"12.1":0.72254,"13.1":1.39761,"14.1":0.35863,"15.1":0.35863},G:{"8":0,"3.2":0,"4.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.22069,"10.0-10.2":0,"10.3":0.14479,"11.0-11.2":0.33512,"11.3-11.4":0.01868,"12.0-12.1":0.11326,"12.2-12.5":0.34096,"13.0-13.1":0,"13.2":0,"13.3":0.10743,"13.4-13.7":0.1518,"14.0-14.4":2.22793,"14.5-14.8":6.19453,"15.0-15.1":1.82275},P:{"4":0.08656,"5.0-5.4":0.01082,"6.2-6.4":0.02053,"7.2-7.4":0.05269,"8.2":0.02026,"9.2":0.01054,"10.1":0.01032,"11.1-11.2":0.04328,"12.0":0.02107,"13.0":0.01082,"14.0":0.02164,"15.0":0.98462},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00097,"4.4":0,"4.4.3-4.4.4":0.00848},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03692,"11":0.06856,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.02764},S:{"2.5":0},R:{_:"0"},M:{"0":0.09925},Q:{"10.4":0},O:{"0":0.02363},H:{"0":0.02237}}; +module.exports={C:{"46":0.0122,"78":0.06098,"94":1.68305,"95":3.71368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 3.5 3.6"},D:{"49":0.0122,"68":0.0122,"73":0.58541,"75":0.02439,"80":0.01829,"87":0.02439,"89":0.02439,"91":0.03659,"92":0.34759,"93":0.22563,"94":0.87811,"95":0.39027,"96":29.2826,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 69 70 71 72 74 76 77 78 79 81 83 84 85 86 88 90 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.25612,"14":0.07318,"15":0.09147,_:"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.10976,"13.1":1.79891,"14.1":0.23782,"15.1":0.9208,"15.2":0.02439},B:{"17":0.02439,"18":0.0122,"92":0.02439,"93":0.01829,"95":0.10976,"96":2.55506,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 94"},G:{"8":0,"3.2":0,"4.0-4.1":0.02293,"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.0543,"10.0-10.2":0.00483,"10.3":2.22649,"11.0-11.2":0.10861,"11.3-11.4":0.04948,"12.0-12.1":0.22687,"12.2-12.5":0.4815,"13.0-13.1":0.00965,"13.2":0,"13.3":0.04948,"13.4-13.7":0.11826,"14.0-14.4":2.72488,"14.5-14.8":3.95941,"15.0-15.1":1.88739,"15.2":0.14481},P:{"4":0.12893,"5.0-5.4":0.01131,"6.2-6.4":0.01021,"7.2-7.4":0.01074,_:"8.2","9.2":0.06125,"10.1":0.01108,"11.1-11.2":0.03392,"12.0":0.3573,"13.0":0.01131,"14.0":0.06784,"15.0":0.35051},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04292,"4.4":0,"4.4.3-4.4.4":0.01171},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.1677,"11":0.10062,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.53067},H:{"0":0.09974},L:{"0":42.00863},S:{"2.5":0},R:{_:"0"},M:{"0":0.05463},Q:{"10.4":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 b731fdbad90961..e01d5abbf96510 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.02174,"43":0.01087,"44":0.00725,"47":0.00725,"48":0.00725,"51":0.01449,"52":0.1884,"53":0.00362,"56":0.01087,"57":0.00362,"68":0.00725,"72":0.02898,"75":0.00362,"77":0.02174,"78":0.05072,"79":0.02174,"80":0.02898,"81":0.03261,"82":0.02536,"83":0.01812,"84":0.00362,"85":0.01087,"86":0.00725,"87":0.00362,"88":0.01087,"89":0.01812,"90":0.00362,"91":0.04348,"92":0.01812,"93":0.2681,"94":1.89121,"95":0.00725,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 54 55 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 76 96 3.5 3.6"},D:{"22":0.00725,"31":0.00362,"34":0.00362,"38":0.04348,"47":0.02898,"48":0.00725,"49":0.16666,"53":0.01449,"56":0.00362,"58":0.00362,"62":0.01449,"63":0.01812,"65":0.00362,"66":0.00725,"68":0.01449,"69":0.01449,"70":0.00362,"71":0.01449,"72":0.03985,"73":0.01087,"74":0.01812,"75":0.01812,"77":0.01087,"78":0.01087,"79":0.14854,"80":0.01812,"81":0.02174,"83":0.10144,"84":0.19564,"85":0.2355,"86":0.21376,"87":0.2681,"88":0.04348,"89":0.04348,"90":0.05435,"91":0.08333,"92":0.13405,"93":0.10507,"94":0.66301,"95":15.42311,"96":9.38357,"97":0.00725,"98":0.00725,_:"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 41 42 43 44 45 46 50 51 52 54 55 57 59 60 61 64 67 76 99"},F:{"28":0.00725,"31":0.01087,"32":0.00362,"36":0.00725,"46":0.01449,"68":0.01449,"69":0.00725,"71":0.01087,"72":0.00725,"73":0.00362,"79":0.01087,"80":0.9601,"81":0.38766,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 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 70 74 75 76 77 78 9.5-9.6 10.5 10.6 11.5 11.6 12.1","10.0-10.1":0,"11.1":0.00362},B:{"13":0.00362,"15":0.00725,"17":0.00725,"18":0.02174,"83":0.00725,"84":0.01087,"85":0.01449,"86":0.01812,"88":0.00362,"89":0.00362,"90":0.00362,"91":0.00725,"92":0.01087,"93":0.01449,"94":0.03623,"95":1.15211,"96":0.49273,_:"12 14 16 79 80 81 87"},E:{"4":0,"13":0.01812,"14":0.04348,"15":0.11956,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00362,"11.1":0.01449,"12.1":0.00362,"13.1":0.03985,"14.1":0.20651,"15.1":0.24274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0013,"6.0-6.1":0,"7.0-7.1":0.03245,"8.1-8.4":0,"9.0-9.2":0.00519,"9.3":0.0623,"10.0-10.2":0.00779,"10.3":0.05711,"11.0-11.2":0.04154,"11.3-11.4":0.04413,"12.0-12.1":0.02985,"12.2-12.5":0.65159,"13.0-13.1":0.01817,"13.2":0.01428,"13.3":0.13759,"13.4-13.7":0.39199,"14.0-14.4":0.9644,"14.5-14.8":6.04988,"15.0-15.1":4.46764},P:{"4":0.11512,"5.0-5.4":0.01047,"6.2-6.4":0.0709,"7.2-7.4":0.01047,"8.2":0.02026,"9.2":0.08657,"10.1":0.01032,"11.1-11.2":0.13605,"12.0":0.02093,"13.0":0.15698,"14.0":0.14652,"15.0":1.87332},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00372,"4.2-4.3":0.00638,"4.4":0,"4.4.3-4.4.4":0.02817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02174,"9":0.03261,"10":0.00362,"11":0.15941,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":49.04888},S:{"2.5":0},R:{_:"0"},M:{"0":0.10203},Q:{"10.4":0},O:{"0":0.01275},H:{"0":0.17508}}; +module.exports={C:{"40":0.03266,"43":0.00726,"44":0.00363,"47":0.01089,"48":0.00726,"51":0.01815,"52":0.18871,"56":0.00363,"57":0.00363,"58":0.00726,"60":0.00363,"65":0.01089,"66":0.00363,"68":0.00726,"72":0.0254,"76":0.00363,"78":0.03992,"79":0.01089,"80":0.02177,"81":0.01815,"82":0.01452,"83":0.00726,"84":0.01089,"86":0.00726,"88":0.01089,"89":0.01452,"91":0.03992,"92":0.01452,"93":0.02177,"94":0.69314,"95":1.8145,"96":0.01089,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 55 59 61 62 63 64 67 69 70 71 73 74 75 77 85 87 90 97 3.5 3.6"},D:{"28":0.01815,"31":0.00363,"34":0.00363,"38":0.01815,"47":0.04355,"49":0.1379,"53":0.03629,"55":0.00363,"56":0.00726,"63":0.01452,"66":0.00726,"67":0.00363,"68":0.01089,"69":0.01452,"70":0.00363,"71":0.00363,"72":0.02903,"73":0.01089,"74":0.01452,"75":0.00363,"76":0.01089,"77":0.02177,"78":0.01815,"79":0.07258,"80":0.03266,"81":0.01815,"83":0.09435,"84":0.20685,"85":0.20685,"86":0.18145,"87":0.21774,"88":0.03629,"89":0.03992,"90":0.19597,"91":0.06895,"92":0.10161,"93":0.05444,"94":0.15605,"95":0.44274,"96":24.21269,"97":0.01089,"98":0.00726,"99":0.00363,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 62 64 65"},F:{"31":0.00363,"36":0.01089,"40":0.00726,"46":0.00726,"67":0.01089,"68":0.00726,"69":0.01815,"70":0.00363,"71":0.00726,"72":0.01815,"73":0.00363,"80":0.01815,"81":0.50806,"82":0.71854,_:"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 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00726,"14":0.03992,"15":0.04355,_:"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.01815,"12.1":0.00726,"13.1":0.03629,"14.1":0.11613,"15.1":0.22863,"15.2":0.03992},B:{"12":0.01089,"17":0.01452,"18":0.03266,"85":0.01452,"86":0.01452,"89":0.00363,"90":0.00363,"91":0.00726,"92":0.00726,"94":0.01815,"95":0.02903,"96":1.63668,_:"13 14 15 16 79 80 81 83 84 87 88 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00132,"6.0-6.1":0,"7.0-7.1":0.02112,"8.1-8.4":0,"9.0-9.2":0.00396,"9.3":0.04224,"10.0-10.2":0.00924,"10.3":0.04356,"11.0-11.2":0.0264,"11.3-11.4":0.04356,"12.0-12.1":0.03168,"12.2-12.5":0.565,"13.0-13.1":0.01716,"13.2":0.01188,"13.3":0.09505,"13.4-13.7":0.34982,"14.0-14.4":0.8541,"14.5-14.8":4.44872,"15.0-15.1":6.1292,"15.2":0.50032},P:{"4":0.07289,"5.0-5.4":0.01041,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.03151,"9.2":0.07577,"11.1-11.2":0.12495,"12.0":0.02082,"13.0":0.14577,"14.0":0.13536,"15.0":0.29154},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00645,"4.2-4.3":0.00496,"4.4":0,"4.4.3-4.4.4":0.02681},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01452,"9":0.03266,"10":0.00363,"11":0.10524,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.03186},H:{"0":0.19301},L:{"0":49.46272},S:{"2.5":0},R:{_:"0"},M:{"0":0.11468},Q:{"10.4":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 7f8759d1d1cbc3..79d417aff5babe 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.00473,"56":0.00237,"72":0.00473,"78":0.03076,"81":0.00237,"88":0.01183,"89":0.01656,"91":0.03786,"92":0.01656,"93":0.32178,"94":2.2548,"95":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 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 82 83 84 85 86 87 90 96 3.5 3.6"},D:{"32":0.01183,"40":0.00473,"43":0.00473,"44":0.00237,"49":0.0071,"57":0.00237,"61":0.03076,"63":0.00237,"64":0.00473,"65":0.00473,"70":0.00473,"71":0.00946,"73":0.01183,"74":0.00237,"76":0.03076,"79":0.0071,"80":0.0071,"81":0.00473,"83":0.00237,"84":0.02839,"85":0.00473,"86":0.00946,"87":0.07098,"88":0.0071,"89":0.00473,"90":0.03549,"91":0.01183,"92":0.12776,"93":0.15852,"94":1.14514,"95":3.96305,"96":3.04741,_:"4 5 6 7 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 41 42 45 46 47 48 50 51 52 53 54 55 56 58 59 60 62 66 67 68 69 72 75 77 78 97 98 99"},F:{"78":0.00237,"79":0.00473,"80":0.31468,"81":0.22714,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02603,"13":0.01656,"14":0.01183,"15":0.0071,"16":0.00946,"17":0.0142,"18":0.34307,"84":0.0071,"85":0.01183,"89":0.06388,"90":0.0071,"91":0.00473,"92":0.0071,"93":0.01183,"94":0.04495,"95":1.84785,"96":0.59623,_:"79 80 81 83 86 87 88"},E:{"4":0,"11":0.00237,"13":0.02129,"14":0.04495,"15":0.05915,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 9.1","7.1":0.02129,"10.1":0.00237,"11.1":0.00473,"12.1":0.0071,"13.1":0.05442,"14.1":0.09937,"15.1":0.04732},G:{"8":0.00141,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02681,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.35137,"10.0-10.2":0.00282,"10.3":0.30481,"11.0-11.2":0.22578,"11.3-11.4":0.02822,"12.0-12.1":0.01552,"12.2-12.5":2.48643,"13.0-13.1":0.00706,"13.2":0.01411,"13.3":0.09455,"13.4-13.7":0.82552,"14.0-14.4":2.00241,"14.5-14.8":3.35993,"15.0-15.1":4.35902},P:{"4":0.1746,"5.0-5.4":0.02054,"6.2-6.4":0.02053,"7.2-7.4":0.23622,"8.2":0.02026,"9.2":0.14379,"10.1":0.01032,"11.1-11.2":0.13352,"12.0":0.15406,"13.0":0.25676,"14.0":0.33892,"15.0":1.01677},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.00185,"4.4":0,"4.4.3-4.4.4":0.11966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20111,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01527},N:{"10":0.02658,"11":0.22582},L:{"0":65.3142},S:{"2.5":0.06106},R:{_:"0"},M:{"0":0.0687},Q:{"10.4":0.00763},O:{"0":0.77857},H:{"0":1.06229}}; +module.exports={C:{"10":0.00588,"34":0.00294,"43":0.00294,"47":0.00294,"52":0.00294,"72":0.00588,"78":0.06172,"87":0.00294,"88":0.00588,"89":0.01176,"90":0.00294,"91":0.05878,"92":0.00588,"93":0.00882,"94":1.16678,"95":1.99558,"96":0.01176,_:"2 3 4 5 6 7 8 9 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 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 97 3.5 3.6"},D:{"34":0.01176,"49":0.00882,"65":0.00294,"70":0.00294,"72":0.00294,"73":0.00294,"76":0.00882,"77":0.00588,"79":0.00882,"80":0.00588,"81":0.00882,"83":0.00882,"84":0.09111,"85":0.00294,"86":0.01176,"87":0.0147,"88":0.01176,"89":0.00294,"90":0.00588,"91":0.01176,"92":0.13813,"93":0.04409,"94":1.84569,"95":0.22336,"96":9.96909,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 74 75 78 97 98 99"},F:{"79":0.00588,"80":0.00882,"81":0.1881,"82":0.27039,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.00588,"14":0.02939,"15":0.02057,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 9.1","7.1":0.01176,"10.1":0.00294,"11.1":0.00588,"12.1":0.00882,"13.1":0.08229,"14.1":0.10874,"15.1":0.06466,"15.2":0.02645},B:{"12":0.00588,"13":0.03527,"14":0.00882,"15":0.00294,"16":0.01176,"17":0.04702,"18":0.4673,"84":0.01176,"89":0.03821,"90":0.00294,"92":0.00882,"93":0.00882,"94":0.02057,"95":0.02351,"96":1.82806,_:"79 80 81 83 85 86 87 88 91"},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.01756,"8.1-8.4":0.0027,"9.0-9.2":0,"9.3":0.44035,"10.0-10.2":0,"10.3":0.45386,"11.0-11.2":0.15669,"11.3-11.4":0.03647,"12.0-12.1":0.16074,"12.2-12.5":2.98385,"13.0-13.1":0.0081,"13.2":0.0081,"13.3":0.10401,"13.4-13.7":0.7983,"14.0-14.4":1.76816,"14.5-14.8":2.70964,"15.0-15.1":3.22429,"15.2":0.63351},P:{"4":0.17355,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.36751,_:"8.2","9.2":0.06125,"10.1":0.01108,"11.1-11.2":0.17355,"12.0":0.3573,"13.0":0.13271,"14.0":0.24501,"15.0":0.44918},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.00286,"4.4":0,"4.4.3-4.4.4":0.09518},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19397,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.24007},O:{"0":1.04503},H:{"0":1.18991},L:{"0":61.45041},S:{"2.5":0.02824},R:{_:"0"},M:{"0":0.08473},Q:{"10.4":0.02824}}; 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 a6097c7dfb021f..68e773a1265372 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:{"17":0.00289,"30":0.00578,"35":0.00289,"36":0.00578,"37":0.00289,"38":0.00289,"39":0.00578,"41":0.02603,"43":0.00868,"44":0.00578,"45":0.00578,"47":0.00868,"48":0.00868,"50":0.00578,"52":0.00868,"54":0.00289,"56":0.02892,"57":0.00578,"58":0.00289,"59":0.01446,"60":0.06652,"61":0.00578,"62":0.00289,"66":0.0376,"67":0.00578,"68":0.01157,"69":0.00289,"72":0.02892,"73":0.00289,"77":0.00289,"78":0.02603,"79":0.00578,"80":0.00578,"81":0.00868,"82":0.00868,"83":0.01446,"84":0.01157,"85":0.00868,"86":0.00578,"87":0.00868,"88":0.02892,"89":0.0723,"90":0.02024,"91":0.07519,"92":0.05495,"93":0.41356,"94":2.44663,"95":0.22268,"96":0.00578,_:"2 3 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 31 32 33 34 40 42 46 49 51 53 55 63 64 65 70 71 74 75 76 3.5 3.6"},D:{"24":0.00289,"31":0.00578,"32":0.00578,"37":0.01446,"38":0.02603,"39":0.00289,"47":0.01157,"48":0.00578,"49":0.01446,"53":0.01157,"55":0.00289,"56":0.00868,"61":0.00868,"62":0.00289,"63":0.01735,"64":0.00289,"66":0.00289,"67":0.00578,"69":0.00289,"70":0.00578,"71":0.02314,"72":0.00289,"73":0.00578,"74":0.01157,"75":0.00868,"76":0.00578,"77":0.00578,"78":0.01157,"79":0.08098,"80":0.02024,"81":0.02024,"83":0.02603,"84":0.02603,"85":0.02603,"86":0.06362,"87":0.18798,"88":0.06073,"89":0.05495,"90":0.06073,"91":0.08098,"92":0.12436,"93":0.14749,"94":0.49164,"95":9.66217,"96":6.08188,"97":0.00868,"98":0.00289,_:"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 33 34 35 36 40 41 42 43 44 45 46 50 51 52 54 57 58 59 60 65 68 99"},F:{"28":0.00289,"36":0.00578,"72":0.00578,"73":0.00289,"77":0.00578,"78":0.00578,"79":0.01735,"80":0.37596,"81":0.16774,_:"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 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00868,"15":0.00578,"16":0.00578,"17":0.00289,"18":0.04916,"84":0.00868,"85":0.01157,"86":0.00578,"89":0.02024,"90":0.01446,"91":0.00868,"92":0.02603,"93":0.01157,"94":0.02892,"95":1.64555,"96":0.65648,_:"13 14 79 80 81 83 87 88"},E:{"4":0,"8":0.00289,"11":0.00289,"12":0.01157,"13":0.02603,"14":0.19087,"15":0.34993,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00289,"10.1":0.0376,"11.1":0.02603,"12.1":0.07519,"13.1":0.17641,"14.1":0.65359,"15.1":0.45694},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00381,"5.0-5.1":0.01066,"6.0-6.1":0.00457,"7.0-7.1":0.01142,"8.1-8.4":0.00685,"9.0-9.2":0.00685,"9.3":0.1028,"10.0-10.2":0.00533,"10.3":0.10889,"11.0-11.2":0.03198,"11.3-11.4":0.01675,"12.0-12.1":0.02665,"12.2-12.5":0.54825,"13.0-13.1":0.02361,"13.2":0.01447,"13.3":0.07082,"13.4-13.7":0.19189,"14.0-14.4":0.56805,"14.5-14.8":2.78467,"15.0-15.1":3.07327},P:{"4":0.27419,"5.0-5.4":0.01055,"6.2-6.4":0.03082,"7.2-7.4":0.03164,"8.2":0.10275,"9.2":0.02109,"10.1":0.02055,"11.1-11.2":0.05273,"12.0":0.02109,"13.0":0.07382,"14.0":0.09491,"15.0":0.97022},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00131,"4.1":0.00131,"4.2-4.3":0.0092,"4.4":0,"4.4.3-4.4.4":0.40748},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01172,"9":0.00391,"10":0.00391,"11":0.12506,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":59.86141},S:{"2.5":0},R:{_:"0"},M:{"0":0.27717},Q:{"10.4":0.07107},O:{"0":2.49456},H:{"0":0.6392}}; +module.exports={C:{"30":0.00376,"36":0.00751,"37":0.00376,"41":0.01127,"43":0.01127,"44":0.00751,"45":0.00751,"47":0.01127,"48":0.01127,"50":0.00376,"52":0.00751,"56":0.02629,"57":0.01502,"59":0.01127,"60":0.154,"61":0.00376,"62":0.00376,"66":0.07512,"68":0.01127,"72":0.03005,"73":0.00751,"76":0.00376,"78":0.02254,"79":0.00376,"80":0.01127,"81":0.00751,"82":0.00751,"83":0.00751,"84":0.01127,"85":0.00751,"87":0.00376,"88":0.02629,"89":0.03005,"90":0.01502,"91":0.03005,"92":0.03005,"93":0.04507,"94":1.31836,"95":1.99068,"96":0.12019,_:"2 3 4 5 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 38 39 40 42 46 49 51 53 54 55 58 63 64 65 67 69 70 71 74 75 77 86 97 3.5 3.6"},D:{"24":0.00376,"31":0.00376,"32":0.00751,"37":0.01502,"38":0.01878,"39":0.00376,"47":0.00751,"48":0.00751,"49":0.00751,"53":0.01878,"55":0.00376,"56":0.00751,"57":0.00751,"61":0.00751,"62":0.00376,"63":0.01502,"65":0.01127,"69":0.00751,"70":0.00376,"71":0.01502,"72":0.00376,"73":0.00376,"74":0.00751,"76":0.00751,"78":0.01878,"79":0.06761,"80":0.0338,"81":0.02629,"83":0.01878,"84":0.01878,"85":0.01878,"86":0.02629,"87":0.08639,"88":0.05634,"89":0.03756,"90":0.03756,"91":0.05634,"92":0.1277,"93":0.07512,"94":0.20658,"95":0.31175,"96":16.19963,"97":0.01502,"98":0.00751,_:"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 33 34 35 36 40 41 42 43 44 45 46 50 51 52 54 58 59 60 64 66 67 68 75 77 99"},F:{"28":0.00376,"36":0.00751,"37":0.00751,"73":0.00376,"74":0.00376,"77":0.00376,"79":0.01878,"80":0.01878,"81":0.2216,"82":0.31175,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 75 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00751,"13":0.02629,"14":0.19907,"15":0.20282,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01878,"11.1":0.01502,"12.1":0.06385,"13.1":0.17278,"14.1":0.5634,"15.1":0.75871,"15.2":0.12019},B:{"12":0.01127,"15":0.00376,"16":0.00376,"17":0.00751,"18":0.04132,"84":0.00751,"85":0.01127,"86":0.00376,"89":0.01502,"90":0.02254,"92":0.01502,"93":0.00751,"94":0.01127,"95":0.03005,"96":2.27238,_:"13 14 79 80 81 83 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0.00723,"6.0-6.1":0.01044,"7.0-7.1":0.01847,"8.1-8.4":0.00803,"9.0-9.2":0.00402,"9.3":0.08432,"10.0-10.2":0.00642,"10.3":0.09075,"11.0-11.2":0.03132,"11.3-11.4":0.01606,"12.0-12.1":0.02811,"12.2-12.5":0.50675,"13.0-13.1":0.0257,"13.2":0.01124,"13.3":0.05702,"13.4-13.7":0.15259,"14.0-14.4":0.53325,"14.5-14.8":1.97721,"15.0-15.1":4.001,"15.2":0.45776},P:{"4":0.28933,"5.0-5.4":0.01033,"6.2-6.4":0.031,"7.2-7.4":0.04133,"8.2":0.15525,"9.2":0.01033,"10.1":0.01035,"11.1-11.2":0.062,"12.0":0.031,"13.0":0.062,"14.0":0.124,"15.0":0.17567},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00075,"4.1":0.00149,"4.2-4.3":0.01194,"4.4":0,"4.4.3-4.4.4":0.29173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02576,"9":0.00644,"10":0.01288,"11":0.18029,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":2.45974},H:{"0":0.65015},L:{"0":58.59256},S:{"2.5":0},R:{_:"0"},M:{"0":0.26221},Q:{"10.4":0.14983}}; 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 7aa7ee4f73f006..ae1dc00b2dff9b 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:{"3":0.0044,"35":0.0044,"40":0.0044,"42":0.04836,"47":0.0044,"52":0.03077,"78":0.02198,"87":0.01758,"88":0.04396,"89":0.03517,"90":0.00879,"91":0.02638,"92":0.02198,"93":0.30332,"94":1.543,"95":0.08352,_:"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 36 37 38 39 41 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 96 3.5 3.6"},D:{"38":0.02638,"48":0.07913,"49":0.05715,"63":0.01319,"65":0.03077,"66":0.00879,"67":0.00879,"68":0.0044,"69":0.01319,"70":0.01758,"71":0.00879,"72":0.00879,"73":0.01319,"74":0.03077,"75":0.01319,"76":0.0044,"77":0.0044,"78":0.01319,"79":0.06594,"80":0.02638,"81":0.01758,"83":0.01758,"84":0.06154,"85":0.01758,"86":0.06594,"87":0.46158,"88":0.03077,"89":0.07034,"90":0.06594,"91":0.1143,"92":0.2242,"93":0.20222,"94":0.94954,"95":19.07424,"96":10.1064,"97":0.02638,_:"4 5 6 7 8 9 10 11 12 13 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 53 54 55 56 57 58 59 60 61 62 64 98 99"},F:{"36":0.0044,"78":0.02198,"79":0.01319,"80":0.85722,"81":0.35608,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0044,"14":0.0044,"16":0.00879,"18":0.02638,"84":0.01319,"86":0.0044,"89":0.01758,"90":0.00879,"91":0.01319,"92":0.02198,"93":0.09232,"94":0.05275,"95":1.74082,"96":0.73413,_:"13 15 17 79 80 81 83 85 87 88"},E:{"4":0.00879,"11":0.00879,"12":0.00879,"13":0.02638,"14":0.35168,"15":0.26816,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.00879,"10.1":0.05715,"11.1":0.02198,"12.1":0.05275,"13.1":0.1099,"14.1":0.69457,"15.1":0.37806},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00342,"7.0-7.1":0.00855,"8.1-8.4":0.00171,"9.0-9.2":0,"9.3":0.11796,"10.0-10.2":0.00342,"10.3":0.06154,"11.0-11.2":0.0188,"11.3-11.4":0.0547,"12.0-12.1":0.04787,"12.2-12.5":1.14708,"13.0-13.1":0.03761,"13.2":0.02564,"13.3":0.16924,"13.4-13.7":0.45815,"14.0-14.4":2.04971,"14.5-14.8":6.74232,"15.0-15.1":6.13887},P:{"4":0.46044,"5.0-5.4":0.05116,"6.2-6.4":0.02046,"7.2-7.4":0.13302,"8.2":0.01029,"9.2":0.14325,"10.1":0.05029,"11.1-11.2":0.13302,"12.0":0.10232,"13.0":0.34789,"14.0":0.38882,"15.0":3.70401},I:{"0":0,"3":0,"4":0.00056,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00131,"4.2-4.3":0.00187,"4.4":0,"4.4.3-4.4.4":0.01868},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.03194,"7":0.03194,"8":0.14055,"9":0.03833,"10":0.08305,"11":0.56218,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":35.22704},S:{"2.5":0},R:{_:"0"},M:{"0":0.20174},Q:{"10.4":0.02242},O:{"0":0.11768},H:{"0":0.14325}}; +module.exports={C:{"40":0.00424,"42":0.03394,"47":0.00424,"52":0.04667,"61":0.00424,"78":0.01697,"88":0.02122,"89":0.02546,"90":0.00424,"91":0.02122,"92":0.00849,"93":0.00849,"94":0.62796,"95":1.2729,"96":0.04243,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 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 97 3.5 3.6"},D:{"38":0.02546,"48":0.02122,"49":0.03819,"58":0.00849,"63":0.05092,"66":0.00424,"67":0.01273,"69":0.00849,"70":0.01697,"71":0.00424,"72":0.00849,"73":0.00849,"74":0.03394,"75":0.00849,"76":0.00849,"77":0.00849,"78":0.01697,"79":0.04667,"80":0.02122,"81":0.01273,"83":0.01697,"84":0.03819,"85":0.01697,"86":0.08062,"87":0.28852,"88":0.0297,"89":0.05516,"90":0.04667,"91":0.08062,"92":0.24609,"93":0.09335,"94":0.34793,"95":0.5134,"96":28.52145,"97":0.02122,"98":0.00849,_:"4 5 6 7 8 9 10 11 12 13 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 53 54 55 56 57 59 60 61 62 64 65 68 99"},F:{"36":0.01273,"46":0.00849,"77":0.00424,"80":0.00849,"81":0.56008,"82":0.61099,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02546,"14":0.28852,"15":0.17821,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00849,"10.1":0.02122,"11.1":0.01697,"12.1":0.0594,"13.1":0.11032,"14.1":0.69585,"15.1":0.66191,"15.2":0.06789},B:{"12":0.00424,"14":0.00424,"16":0.00849,"18":0.01697,"84":0.00849,"89":0.01273,"90":0.00424,"91":0.00849,"92":0.01273,"93":0.07213,"94":0.02546,"95":0.05092,"96":2.52459,_:"13 15 17 79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00568,"8.1-8.4":0,"9.0-9.2":0.00189,"9.3":0.08897,"10.0-10.2":0.00189,"10.3":0.06058,"11.0-11.2":0.02082,"11.3-11.4":0.05111,"12.0-12.1":0.03975,"12.2-12.5":1.09799,"13.0-13.1":0.03975,"13.2":0.0265,"13.3":0.17795,"13.4-13.7":0.3843,"14.0-14.4":1.68106,"14.5-14.8":5.05832,"15.0-15.1":9.36887,"15.2":0.81781},P:{"4":0.34825,"5.0-5.4":0.05121,"6.2-6.4":0.01024,"7.2-7.4":0.16388,_:"8.2","9.2":0.11267,"10.1":0.0103,"11.1-11.2":0.11267,"12.0":0.0717,"13.0":0.2868,"14.0":0.38922,"15.0":0.7682},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.00164,"4.4":0,"4.4.3-4.4.4":0.02036},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01266,"7":0.01266,"8":0.05698,"9":0.01899,"10":0.03165,"11":0.26589,_:"5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.10363},H:{"0":0.14171},L:{"0":35.13227},S:{"2.5":0},R:{_:"0"},M:{"0":0.1612},Q:{"10.4":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 6158f2231c5eb0..f4b2c985f17181 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:{"11":0.04949,"17":0.009,"34":0.05849,"52":0.0135,"56":0.0225,"75":0.0225,"77":0.0135,"78":0.0045,"88":0.0225,"89":0.009,"91":0.0225,"92":0.0225,"93":0.27894,"94":1.14725,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 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 66 67 68 69 70 71 72 73 74 76 79 80 81 82 83 84 85 86 87 90 95 96 3.5 3.6"},D:{"22":0.04049,"26":0.03149,"30":0.009,"34":0.05849,"38":0.17996,"49":0.16646,"53":0.08548,"55":0.02699,"56":0.009,"57":0.0045,"58":0.03149,"59":0.0045,"60":0.0045,"61":0.06299,"62":0.018,"63":0.04949,"64":0.0045,"65":0.0045,"66":0.0045,"67":0.04949,"68":0.0225,"69":0.04049,"70":0.018,"71":0.05399,"72":0.03149,"73":0.04049,"74":0.018,"75":0.03149,"76":0.0225,"77":0.03599,"78":0.04499,"79":0.35542,"80":0.04049,"81":0.03599,"83":0.03149,"84":0.0135,"85":0.0135,"86":0.10798,"87":0.11697,"88":0.05849,"89":0.14397,"90":0.09448,"91":0.14397,"92":0.69735,"93":0.4454,"94":1.87158,"95":13.63197,"96":7.38286,"97":0.009,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 98 99"},F:{"36":0.05399,"46":0.07198,"80":0.12147,"81":0.07198,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0045,"17":0.0135,"18":0.04949,"89":0.0135,"92":0.009,"93":0.0045,"94":0.05399,"95":2.00655,"96":0.74234,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 90 91"},E:{"4":0,"11":0.0135,"12":0.0225,"13":0.18446,"14":0.94929,"15":1.42618,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0045,"10.1":0.05849,"11.1":0.08098,"12.1":0.08998,"13.1":0.55788,"14.1":5.96118,"15.1":1.30921},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.09783,"7.0-7.1":0.08301,"8.1-8.4":0.20751,"9.0-9.2":0.04743,"9.3":0.25791,"10.0-10.2":0.09783,"10.3":0.33795,"11.0-11.2":0.19269,"11.3-11.4":0.21937,"12.0-12.1":0.26384,"12.2-12.5":1.55042,"13.0-13.1":0.07708,"13.2":0.05929,"13.3":0.33499,"13.4-13.7":0.82412,"14.0-14.4":2.253,"14.5-14.8":14.91429,"15.0-15.1":7.82622},P:{"4":0.67092,"5.0-5.4":0.01013,"6.2-6.4":0.0709,"7.2-7.4":0.04203,"8.2":0.02026,"9.2":0.08657,"10.1":0.01032,"11.1-11.2":0.06304,"12.0":0.06304,"13.0":0.06493,"14.0":0.07575,"15.0":1.89372},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00105,"4.1":0.0007,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03126},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.01228,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":22.20879},S:{"2.5":0},R:{_:"0"},M:{"0":0.22008},Q:{"10.4":0.44566},O:{"0":0.73177},H:{"0":0.0573}}; +module.exports={C:{"11":0.0486,"34":0.06185,"52":0.01767,"56":0.01325,"75":0.01325,"84":0.01325,"88":0.05743,"90":0.00884,"91":0.02209,"92":0.01767,"93":0.02209,"94":0.48598,"95":0.87918,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 85 86 87 89 96 97 3.5 3.6"},D:{"22":0.03093,"26":0.03534,"30":0.00884,"34":0.05743,"38":0.18997,"49":0.15021,"53":0.08836,"54":0.01325,"55":0.03976,"56":0.00884,"58":0.02651,"59":0.00884,"61":0.06627,"62":0.01767,"63":0.06185,"65":0.01325,"66":0.00884,"67":0.04418,"68":0.02209,"69":0.04418,"70":0.00884,"71":0.05743,"72":0.02209,"73":0.02651,"74":0.03534,"75":0.03093,"76":0.01767,"77":0.02651,"78":0.05302,"79":0.37111,"80":0.06185,"81":0.05302,"83":0.03534,"84":0.01325,"85":0.01325,"86":0.10603,"87":0.10603,"88":0.03534,"89":0.13254,"90":0.06627,"91":0.10603,"92":0.5655,"93":0.21206,"94":0.87476,"95":1.02498,"96":20.43767,"97":0.0486,"98":0.00884,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 57 60 64 99"},F:{"28":0.00884,"36":0.0486,"46":0.09278,"77":0.00442,"78":0.00442,"81":0.08394,"82":0.1237,_:"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 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00884,"12":0.01325,"13":0.15905,"14":0.83942,"15":0.72013,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00884,"10.1":0.04418,"11.1":0.0486,"12.1":0.11487,"13.1":0.50365,"14.1":4.65657,"15.1":3.29141,"15.2":0.21206},B:{"17":0.01767,"18":0.03534,"92":0.00884,"94":0.01325,"95":0.03976,"96":2.96006,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00593,"5.0-5.1":0,"6.0-6.1":0.08303,"7.0-7.1":0.06821,"8.1-8.4":0.15124,"9.0-9.2":0.06228,"9.3":0.24614,"10.0-10.2":0.0771,"10.3":0.27876,"11.0-11.2":0.22834,"11.3-11.4":0.18089,"12.0-12.1":0.22538,"12.2-12.5":1.5035,"13.0-13.1":0.06524,"13.2":0.05931,"13.3":0.27876,"13.4-13.7":0.73248,"14.0-14.4":2.04619,"14.5-14.8":9.90474,"15.0-15.1":12.59147,"15.2":0.85703},P:{"4":0.73606,"5.0-5.4":0.0105,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.03151,"9.2":0.07577,"11.1-11.2":0.08402,"12.0":0.08402,"13.0":0.0433,"14.0":0.05412,"15.0":0.16237},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00108,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03241},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.94103,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.84846},H:{"0":0.06342},L:{"0":23.02819},S:{"2.5":0},R:{_:"0"},M:{"0":0.26794},Q:{"10.4":0.40749}}; 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 e33fd490a142bf..7b518057df7669 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.0848,"88":0.09691,"89":0.02423,"93":0.42399,"94":1.2114,"95":0.0424,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 91 92 96 3.5 3.6"},D:{"53":0.00606,"65":0.01211,"67":0.01211,"69":0.01211,"74":0.01211,"76":0.01817,"79":0.40582,"80":0.01211,"81":0.0424,"83":0.00606,"84":0.01211,"85":0.00606,"86":0.02423,"87":0.24228,"88":0.01211,"89":0.20594,"90":0.03029,"91":0.0848,"92":0.93278,"93":0.6057,"94":2.5924,"95":22.59867,"96":11.13882,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 68 70 71 72 73 75 77 78 97 98 99"},F:{"28":0.01211,"79":0.01211,"80":1.74442,"81":0.43005,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"83":0.00606,"92":0.01817,"93":0.01817,"94":0.0424,"95":4.21567,"96":1.33254,_:"12 13 14 15 16 17 18 79 80 81 84 85 86 87 88 89 90 91"},E:{"4":0,"12":0.02423,"13":0.15143,"14":1.13872,"15":0.49667,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01211,"11.1":0.01817,"12.1":0.30891,"13.1":0.63599,"14.1":5.40284,"15.1":0.75107},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02376,"8.1-8.4":0,"9.0-9.2":0.0025,"9.3":0.1413,"10.0-10.2":0,"10.3":1.03908,"11.0-11.2":0.50766,"11.3-11.4":0.01876,"12.0-12.1":0.02626,"12.2-12.5":1.23915,"13.0-13.1":0,"13.2":0.00875,"13.3":0.11129,"13.4-13.7":0.20632,"14.0-14.4":0.71023,"14.5-14.8":4.59898,"15.0-15.1":3.87},P:{"4":0.26253,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.03282,"8.2":0.10275,"9.2":0.0227,"10.1":0.02067,"11.1-11.2":0.09845,"12.0":0.0227,"13.0":0.05469,"14.0":0.03282,"15.0":5.42569},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.69596,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":21.03515},S:{"2.5":0},R:{_:"0"},M:{"0":0.21287},Q:{"10.4":0.01577},O:{"0":0.0749},H:{"0":0.01866}}; +module.exports={C:{"52":0.05195,"78":0.00577,"88":0.06349,"89":0.00577,"93":0.02309,"94":0.84848,"95":0.6176,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 91 92 96 97 3.5 3.6"},D:{"23":0.01732,"53":0.01154,"65":0.01154,"67":0.0404,"73":0.0404,"76":0.02886,"77":0.01154,"79":0.97547,"81":0.00577,"83":0.07504,"84":0.01154,"85":0.01732,"86":0.02309,"87":0.07504,"88":0.02886,"89":0.00577,"90":0.0404,"91":0.05195,"92":0.42136,"93":0.12698,"94":0.95238,"95":1.33333,"96":34.51656,"97":0.00577,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 74 75 78 80 98 99"},F:{"28":0.01732,"80":0.20202,"81":0.86003,"82":1.22366,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.07504,"14":0.87734,"15":0.24242,_:"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.01732,"12.1":0.51948,"13.1":0.3925,"14.1":3.50938,"15.1":1.72006,"15.2":0.10967},B:{"17":0.00577,"90":0.00577,"93":0.00577,"94":0.00577,"95":0.4733,"96":4.53679,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 91 92"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0024,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0875,"10.0-10.2":0,"10.3":0.99721,"11.0-11.2":0.28646,"11.3-11.4":0.01438,"12.0-12.1":0.00719,"12.2-12.5":1.23813,"13.0-13.1":0,"13.2":0.00719,"13.3":0.09109,"13.4-13.7":0.05993,"14.0-14.4":1.0967,"14.5-14.8":2.98685,"15.0-15.1":4.89618,"15.2":0.21095},P:{"4":0.18431,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.02168,"8.2":0.02052,"9.2":0.03253,"10.1":0.01026,"11.1-11.2":0.08674,"12.0":0.01116,"13.0":0.03253,"14.0":0.08674,"15.0":0.40115},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.22944,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.01268},H:{"0":0.11208},L:{"0":24.27973},S:{"2.5":0},R:{_:"0"},M:{"0":0.40166},Q:{"10.4":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 1235a857b86cd9..c7cf11ce516d71 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.01331,"60":0.00887,"78":0.0355,"81":0.00444,"82":0.17304,"84":0.00887,"86":0.01331,"88":0.00887,"89":0.02662,"91":0.02662,"92":0.02219,"93":0.67442,"94":4.1974,"95":0.00444,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 83 85 87 90 96 3.5 3.6"},D:{"49":0.02219,"58":0.02219,"63":0.03993,"65":0.01331,"67":0.04881,"75":0.00444,"76":0.00887,"77":0.00444,"78":0.01775,"79":0.03106,"80":0.00887,"81":0.00444,"83":0.00444,"84":0.03106,"86":0.00887,"87":0.03106,"88":0.01775,"89":0.02219,"90":0.01331,"91":0.03993,"92":0.16861,"93":0.11093,"94":0.97614,"95":13.65265,"96":9.09141,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 64 66 68 69 70 71 72 73 74 85 97 98 99"},F:{"36":0.00444,"78":0.00444,"80":0.71436,"81":0.35052,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01775,"16":0.01331,"17":0.01331,"18":0.04881,"84":0.00887,"85":0.00444,"86":0.00887,"88":0.01331,"89":0.00444,"90":0.00444,"91":0.01331,"92":0.02219,"93":0.00887,"94":0.12867,"95":3.31888,"96":1.84579,_:"13 14 15 79 80 81 83 87"},E:{"4":0,"12":0.00887,"13":0.0355,"14":0.47476,"15":1.10481,_:"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.03993,"12.1":0.30172,"13.1":0.27509,"14.1":2.44035,"15.1":0.93621},G:{"8":0.00281,"3.2":0,"4.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.42012,"10.0-10.2":0,"10.3":0.05339,"11.0-11.2":0.00141,"11.3-11.4":0.15315,"12.0-12.1":0.00703,"12.2-12.5":0.43557,"13.0-13.1":0.01827,"13.2":0.01265,"13.3":0.10257,"13.4-13.7":0.1658,"14.0-14.4":0.9119,"14.5-14.8":5.34352,"15.0-15.1":6.4184},P:{"4":0.06245,"5.0-5.4":0.01082,"6.2-6.4":0.02053,"7.2-7.4":0.06245,"8.2":0.02026,"9.2":0.12491,"10.1":0.01032,"11.1-11.2":0.24981,"12.0":0.05204,"13.0":0.22899,"14.0":0.81189,"15.0":3.79923},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00033,"4.2-4.3":0.00353,"4.4":0,"4.4.3-4.4.4":0.00727},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.59012,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":36.5025},S:{"2.5":0},R:{_:"0"},M:{"0":0.54517},Q:{"10.4":0},O:{"0":0.07232},H:{"0":0.10533}}; +module.exports={C:{"52":0.01724,"78":0.0474,"82":0.18529,"83":0.01724,"84":0.00431,"86":0.00431,"88":0.01293,"89":0.02155,"91":0.04309,"92":0.01293,"93":0.03447,"94":1.63311,"95":3.31793,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 85 87 90 96 97 3.5 3.6"},D:{"49":0.02585,"58":0.00431,"63":0.03016,"65":0.00862,"67":0.01724,"73":0.00431,"76":0.00431,"78":0.00431,"79":0.03878,"83":0.01724,"84":0.00862,"86":0.01293,"87":0.03016,"88":0.00862,"89":0.01293,"90":0.00862,"91":0.01724,"92":0.15943,"93":0.0474,"94":0.22838,"95":0.51708,"96":21.43728,"98":0.00431,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 64 66 68 69 70 71 72 74 75 77 80 81 85 97 99"},F:{"46":0.00862,"77":0.00862,"80":0.00862,"81":0.59895,"82":0.42228,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00862,"13":0.0474,"14":0.43521,"15":0.51708,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00431,"11.1":0.03878,"12.1":0.93505,"13.1":0.30163,"14.1":1.89596,"15.1":1.10741,"15.2":0.17236},B:{"14":0.00862,"17":0.00862,"18":0.02155,"84":0.01724,"85":0.00431,"89":0.00862,"91":0.00431,"92":0.01293,"93":0.00431,"94":0.03016,"95":0.15512,"96":5.13633,_:"12 13 15 16 79 80 81 83 86 87 88 90"},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.00602,"8.1-8.4":0,"9.0-9.2":0.00602,"9.3":0.32195,"10.0-10.2":0,"10.3":0.04664,"11.0-11.2":0.02407,"11.3-11.4":0.15797,"12.0-12.1":0.01354,"12.2-12.5":0.37611,"13.0-13.1":0.02708,"13.2":0.00752,"13.3":0.08876,"13.4-13.7":0.18204,"14.0-14.4":1.14186,"14.5-14.8":4.32675,"15.0-15.1":7.33561,"15.2":0.97788},P:{"4":0.03119,"5.0-5.4":0.01131,"6.2-6.4":0.01021,"7.2-7.4":0.08318,_:"8.2","9.2":0.14556,"10.1":0.01108,"11.1-11.2":0.24953,"12.0":0.06238,"13.0":0.39509,"14.0":0.86297,"15.0":0.65502},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02425,"4.4":0,"4.4.3-4.4.4":0.03835},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.43952,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.09106},H:{"0":0.14008},L:{"0":37.03911},S:{"2.5":0},R:{_:"0"},M:{"0":0.40975},Q:{"10.4":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 983d3d4ed8215c..d7b2906c13e0bf 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:{"32":0.0017,"38":0.01019,"39":0.0051,"42":0.0051,"43":0.0017,"45":0.0017,"47":0.03568,"49":0.09175,"52":0.06966,"54":0.0017,"65":0.0017,"68":0.01529,"72":0.01019,"78":0.01019,"79":0.0085,"80":0.0034,"81":0.0051,"88":0.03398,"89":0.0017,"90":0.0051,"91":0.01359,"92":0.01189,"93":0.22597,"94":1.24367,_:"2 3 4 5 6 7 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 40 41 44 46 48 50 51 53 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 82 83 84 85 86 87 95 96 3.5 3.6"},D:{"19":0.01699,"21":0.0017,"25":0.01359,"26":0.0034,"27":0.0017,"31":0.0034,"33":0.03228,"35":0.0051,"37":0.01189,"39":0.0051,"40":0.0068,"41":0.0034,"43":0.02549,"45":0.0017,"47":0.01019,"48":0.02039,"49":0.0068,"55":0.0068,"57":0.06286,"59":0.0017,"62":0.0034,"63":0.0051,"64":0.0034,"65":0.0051,"66":0.0017,"67":0.0034,"69":0.01359,"70":0.01869,"71":0.0034,"72":0.0051,"73":0.01019,"74":0.02379,"75":0.0051,"76":0.0051,"77":0.0051,"78":0.0068,"79":0.0085,"80":0.01189,"81":0.0085,"83":0.02209,"84":0.06626,"85":0.0051,"86":0.02718,"87":0.27864,"88":0.01359,"89":0.02718,"90":0.02888,"91":0.09854,"92":0.06796,"93":0.11044,"94":0.30922,"95":5.28389,"96":3.065,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 22 23 24 28 29 30 32 34 36 38 42 44 46 50 51 52 53 54 56 58 60 61 68 97 98 99"},F:{"66":0.0017,"77":0.01019,"79":0.02209,"80":0.1648,"81":0.08665,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 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.0051,"13":0.0034,"14":0.0068,"15":0.0051,"16":0.0085,"17":0.04587,"18":0.03228,"84":0.0068,"89":0.0068,"91":0.01019,"92":0.01359,"93":0.0051,"94":0.08325,"95":0.6728,"96":0.25145,_:"79 80 81 83 85 86 87 88 90"},E:{"4":0.0034,"12":0.0017,"13":0.0017,"14":0.02888,"15":0.02888,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.0068,"10.1":0.0017,"11.1":0.0051,"12.1":0.0034,"13.1":0.07476,"14.1":0.26504,"15.1":0.08325},G:{"8":0.00229,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02637,"8.1-8.4":0,"9.0-9.2":0.05963,"9.3":0.01835,"10.0-10.2":0.00229,"10.3":0.04243,"11.0-11.2":0.20411,"11.3-11.4":0.15595,"12.0-12.1":0.04472,"12.2-12.5":1.63865,"13.0-13.1":0.03669,"13.2":0.01376,"13.3":0.12384,"13.4-13.7":0.34745,"14.0-14.4":2.23953,"14.5-14.8":3.79332,"15.0-15.1":2.71427},P:{"4":1.0862,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":1.21695,"8.2":0.02011,"9.2":0.11063,"10.1":0.05029,"11.1-11.2":1.03592,"12.0":0.08046,"13.0":0.3319,"14.0":0.53304,"15.0":2.2227},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.0036,"4.4":0,"4.4.3-4.4.4":0.03753},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00843,"7":0.00562,"8":0.03091,"9":0.01686,"10":0.02248,"11":0.79239,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":65.80678},S:{"2.5":0},R:{_:"0"},M:{"0":0.22413},Q:{"10.4":0.04981},O:{"0":0.21583},H:{"0":0.65228}}; +module.exports={C:{"30":0.00193,"34":0.00386,"35":0.00193,"39":0.00386,"42":0.01351,"43":0.00386,"47":0.00772,"49":0.04439,"52":0.02702,"56":0.00386,"65":0.00193,"68":0.00386,"72":0.01737,"78":0.01158,"82":0.00386,"87":0.01544,"88":0.01544,"89":0.00193,"90":0.00193,"91":0.01737,"92":0.00579,"93":0.00386,"94":0.50373,"95":1.07694,_:"2 3 4 5 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 36 37 38 40 41 44 45 46 48 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 96 97 3.5 3.6"},D:{"18":0.00193,"19":0.01158,"22":0.00386,"25":0.00386,"33":0.02123,"39":0.00772,"40":0.00772,"43":0.01544,"44":0.00193,"48":0.01544,"49":0.02509,"56":0.00193,"57":0.16598,"60":0.00965,"63":0.00965,"64":0.00386,"65":0.03281,"66":0.00579,"67":0.00965,"69":0.01737,"70":0.01544,"72":0.00965,"74":0.02509,"75":0.00772,"76":0.01351,"77":0.00965,"78":0.01544,"79":0.00386,"80":0.00772,"81":0.03667,"83":0.01158,"84":0.09071,"85":0.00579,"86":0.01544,"87":0.05597,"88":0.0193,"89":0.01158,"90":0.01737,"91":0.0772,"92":0.15633,"93":0.0579,"94":0.12738,"95":0.34547,"96":8.8587,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 20 21 23 24 26 27 28 29 30 31 32 34 35 36 37 38 41 42 45 46 47 50 51 52 53 54 55 58 59 61 62 68 71 73 97 98 99"},F:{"80":0.03667,"81":0.07334,"82":0.12352,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.00579,"11":0.00579,"13":0.00193,"14":0.02895,"15":0.02895,_:"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.00193,"13.1":0.04632,"14.1":0.18142,"15.1":0.1544,"15.2":0.00772},B:{"12":0.00579,"13":0.00772,"14":0.00386,"15":0.00579,"16":0.00579,"17":0.04439,"18":0.04246,"84":0.01158,"89":0.00965,"90":0.00386,"91":0.00193,"92":0.00772,"93":0.00772,"94":0.01158,"95":0.06562,"96":1.1966,_:"79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03444,"8.1-8.4":0,"9.0-9.2":0.0051,"9.3":0.04338,"10.0-10.2":0.00255,"10.3":0.04082,"11.0-11.2":0.21688,"11.3-11.4":0.1314,"12.0-12.1":0.0472,"12.2-12.5":1.90085,"13.0-13.1":0.05358,"13.2":0.01914,"13.3":0.19009,"13.4-13.7":0.36231,"14.0-14.4":2.29633,"14.5-14.8":3.14215,"15.0-15.1":3.81829,"15.2":0.45416},P:{"4":1.25012,"5.0-5.4":0.04033,"6.2-6.4":0.09073,"7.2-7.4":1.25012,_:"8.2","9.2":0.20163,"10.1":0.09073,"11.1-11.2":0.6049,"12.0":0.13106,"13.0":0.31253,"14.0":0.70571,"15.0":1.06865},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00042,"4.2-4.3":0.0066,"4.4":0,"4.4.3-4.4.4":0.02526},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00683,"7":0.01025,"8":0.07175,"9":0.01367,"10":0.02392,"11":0.79612,_:"5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.3228},H:{"0":0.83278},L:{"0":63.43959},S:{"2.5":0},R:{_:"0"},M:{"0":0.21789},Q:{"10.4":0.00807}}; 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 f1b283fdf95f5b..e3de253559a8c5 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:{"92":0.03725,"93":0.0745,"94":1.4775,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"81":0.22349,"87":9.32442,"92":0.03725,"93":0.03725,"94":0.7015,"95":13.80038,"96":18.35085,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 88 89 90 91 97 98 99"},F:{"79":0.03725,"80":0.47802,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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 12.1","10.0-10.1":0},B:{"13":0.26074,"18":0.03725,"91":0.14899,"94":0.03725,"95":9.06368,"96":1.552,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 92 93"},E:{"4":0,"14":0.14899,"15":2.47699,_:"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.0745,"14.1":1.66374,"15.1":0.96224},G:{"8":0,"3.2":0,"4.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.09512,"10.0-10.2":0,"10.3":0.47412,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.28389,"12.2-12.5":0.16536,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":6.89083,"14.0-14.4":0.18877,"14.5-14.8":2.4145,"15.0-15.1":4.12075},P:{"4":0.17434,"5.0-5.4":0.05116,"6.2-6.4":0.02046,"7.2-7.4":0.06153,"8.2":0.05634,"9.2":0.14325,"10.1":0.06153,"11.1-11.2":0.30986,"12.0":0.04102,"13.0":0.13332,"14.0":0.1831,"15.0":0.3662},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.37248,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":22.4185},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"94":0.23888,"95":0.0819,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 97 3.5 3.6"},D:{"81":0.15698,"84":0.04095,"87":9.5823,"95":0.0819,"96":29.92763,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 85 86 88 89 90 91 92 93 94 97 98 99"},F:{"80":0.0819,"81":0.23888,"82":0.3549,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"15":0.04095,_:"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 15.2","14.1":0.55283,"15.1":16.9806},B:{"18":0.0819,"95":0.04095,"96":7.1253,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.02901,"10.0-10.2":0,"10.3":0.22926,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.05708,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":1.32037,"14.0-14.4":0.02901,"14.5-14.8":2.06617,"15.0-15.1":5.36755,"15.2":0.25827},P:{"4":0.09244,"5.0-5.4":0.05121,"6.2-6.4":0.01024,"7.2-7.4":0.06162,"8.2":0.0443,"9.2":0.11267,"10.1":0.05135,"11.1-11.2":0.0443,"12.0":0.03081,"13.0":0.11298,"14.0":0.11298,"15.0":0.0443},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.09208},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.47775,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":23.25638},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 73dc21eb1ea9fe..ad01a346cf9534 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.01189,"52":0.03566,"78":0.01189,"89":0.01189,"91":0.02378,"93":0.30909,"94":1.64054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 95 96 3.5 3.6"},D:{"49":0.07727,"61":0.08916,"62":0.00594,"64":0.00594,"65":0.01189,"67":0.02378,"69":0.1486,"70":0.01189,"71":0.00594,"74":0.00594,"76":0.01189,"77":0.2437,"78":0.01189,"79":0.05944,"80":0.04161,"81":0.01189,"83":0.01783,"84":0.00594,"85":0.01189,"86":0.02378,"87":0.11294,"88":0.01783,"89":0.07133,"90":0.04161,"91":0.10699,"92":0.27342,"93":0.17832,"94":1.36118,"95":25.76724,"96":14.34287,"97":0.04161,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 63 66 68 72 73 75 98 99"},F:{"28":0.01189,"46":0.00594,"67":0.0535,"72":0.02972,"79":0.04161,"80":1.11153,"81":0.53496,_:"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 68 69 70 71 73 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:{"14":0.01189,"18":0.05944,"85":0.00594,"88":0.04755,"91":0.01783,"92":0.01783,"93":0.01189,"94":0.07727,"95":4.19052,"96":1.59299,_:"12 13 15 16 17 79 80 81 83 84 86 87 89 90"},E:{"4":0,"11":0.02378,"13":0.03566,"14":0.47552,"15":0.76678,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00594,"10.1":0.01189,"11.1":0.07133,"12.1":0.06538,"13.1":0.35664,"14.1":1.82481,"15.1":1.15314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02743,"6.0-6.1":0.00125,"7.0-7.1":0.00748,"8.1-8.4":0.01247,"9.0-9.2":0.00125,"9.3":0.08354,"10.0-10.2":0.00623,"10.3":0.30923,"11.0-11.2":0.02868,"11.3-11.4":0.00623,"12.0-12.1":0.02993,"12.2-12.5":0.39028,"13.0-13.1":0.00748,"13.2":0.00374,"13.3":0.02993,"13.4-13.7":0.16334,"14.0-14.4":0.72071,"14.5-14.8":6.01009,"15.0-15.1":4.62478},P:{"4":0.10537,"5.0-5.4":0.02054,"6.2-6.4":0.02053,"7.2-7.4":0.05269,"8.2":0.02026,"9.2":0.01054,"10.1":0.01032,"11.1-11.2":0.0843,"12.0":0.02107,"13.0":0.0843,"14.0":0.10537,"15.0":2.42356},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.00288,"4.4":0,"4.4.3-4.4.4":0.06724},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24965,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":25.38222},S:{"2.5":0},R:{_:"0"},M:{"0":0.28798},Q:{"10.4":0},O:{"0":0.12574},H:{"0":0.04608}}; +module.exports={C:{"48":0.02911,"52":0.02911,"78":0.01746,"88":0.00582,"89":0.00582,"91":0.01164,"93":0.00582,"94":0.63449,"95":1.11763,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 96 97 3.5 3.6"},D:{"49":0.06403,"56":0.00582,"65":0.00582,"67":0.01164,"69":0.06985,"70":0.01746,"73":0.01164,"74":0.01164,"75":0.00582,"76":0.01164,"77":0.18627,"78":0.03493,"79":0.04075,"80":0.05239,"81":0.01746,"83":0.02328,"84":0.02328,"85":0.00582,"86":0.02911,"87":0.05239,"88":0.01164,"89":0.02911,"90":0.02911,"91":0.05239,"92":0.11642,"93":0.08732,"94":0.18627,"95":1.15256,"96":39.39071,"97":0.00582,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 71 72 98 99"},F:{"28":0.01164,"67":0.33762,"72":0.02911,"80":0.00582,"81":0.92554,"82":0.84405,_:"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 68 69 70 71 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.01746,"13":0.04075,"14":0.40747,"15":0.34926,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00582,"11.1":0.09314,"12.1":0.06403,"13.1":0.3318,"14.1":1.19913,"15.1":1.85108,"15.2":0.14553},B:{"18":0.02328,"86":0.00582,"89":0.00582,"93":0.00582,"94":0.00582,"95":0.09314,"96":5.80354,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 90 91 92"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00513,"6.0-6.1":0.00513,"7.0-7.1":0.00257,"8.1-8.4":0.01283,"9.0-9.2":0,"9.3":0.12444,"10.0-10.2":0.00385,"10.3":0.3297,"11.0-11.2":0.01539,"11.3-11.4":0.02309,"12.0-12.1":0.03464,"12.2-12.5":0.36434,"13.0-13.1":0.0077,"13.2":0.00257,"13.3":0.03464,"13.4-13.7":0.10007,"14.0-14.4":0.67223,"14.5-14.8":3.84738,"15.0-15.1":6.72361,"15.2":0.51187},P:{"4":0.12893,"5.0-5.4":0.02042,"6.2-6.4":0.01021,"7.2-7.4":0.01074,_:"8.2","9.2":0.06125,"10.1":0.01108,"11.1-11.2":0.0967,"12.0":0.3573,"13.0":0.08595,"14.0":0.0967,"15.0":0.32232},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00124,"4.2-4.3":0.0062,"4.4":0,"4.4.3-4.4.4":0.07196},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23866,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.12119},H:{"0":0.07122},L:{"0":26.57506},S:{"2.5":0},R:{_:"0"},M:{"0":0.17552},Q:{"10.4":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 0f56a75648d8e8..6d26f2fa6ebf99 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:{"34":0.00536,"52":0.04288,"78":0.0268,"89":0.00536,"91":0.0268,"92":0.0536,"93":0.22512,"94":1.21672,"95":0.00536,_:"2 3 4 5 6 7 8 9 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 90 96 3.5 3.6"},D:{"34":0.02144,"38":0.03752,"39":0.01608,"43":0.00536,"49":0.0536,"53":0.01608,"58":0.01608,"63":0.00536,"72":0.03752,"73":0.02144,"75":0.00536,"76":0.01072,"77":0.02144,"78":0.01072,"79":0.134,"80":0.01608,"81":0.02144,"83":0.02144,"84":0.02144,"85":0.03216,"86":0.0804,"87":0.2948,"88":0.67536,"89":0.03752,"90":0.06968,"91":0.11256,"92":0.27872,"93":0.17152,"94":1.10416,"95":19.832,"96":16.11216,"97":0.02144,"98":0.01072,_:"4 5 6 7 8 9 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 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 64 65 66 67 68 69 70 71 74 99"},F:{"28":0.03752,"79":0.01072,"80":0.51456,"81":0.26264,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.02144,"18":0.0268,"83":0.04288,"91":0.01072,"92":0.05896,"93":0.01608,"94":0.06968,"95":3.68232,"96":1.10952,_:"12 13 14 15 16 79 80 81 84 85 86 87 88 89 90"},E:{"4":0,"12":0.01608,"13":0.01072,"14":0.14472,"15":0.2412,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00536,"11.1":0.0268,"12.1":0.02144,"13.1":0.1072,"14.1":0.49848,"15.1":0.39664},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01219,"6.0-6.1":0.00114,"7.0-7.1":0.02667,"8.1-8.4":0.00838,"9.0-9.2":0,"9.3":0.208,"10.0-10.2":0.00229,"10.3":0.03771,"11.0-11.2":0.00419,"11.3-11.4":0.01029,"12.0-12.1":0.00648,"12.2-12.5":0.20761,"13.0-13.1":0.00952,"13.2":0.00152,"13.3":0.02248,"13.4-13.7":0.07581,"14.0-14.4":0.17638,"14.5-14.8":1.37597,"15.0-15.1":1.62282},P:{"4":0.16466,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":0.20582,"8.2":0.01029,"9.2":0.1132,"10.1":0.05029,"11.1-11.2":0.17495,"12.0":0.08233,"13.0":0.21611,"14.0":0.30873,"15.0":3.4887},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.00058,"4.4":0,"4.4.3-4.4.4":0.02667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":3.40896,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":37.88856},S:{"2.5":0},R:{_:"0"},M:{"0":0.116},Q:{"10.4":0.01392},O:{"0":0.37584},H:{"0":0.37779}}; +module.exports={C:{"34":0.01551,"52":0.03103,"78":0.01551,"91":0.02068,"92":0.07239,"94":0.37231,"95":0.61535,"96":0.00517,_:"2 3 4 5 6 7 8 9 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 93 97 3.5 3.6"},D:{"26":0.00517,"34":0.01551,"38":0.04654,"49":0.02068,"53":0.02068,"58":0.01034,"72":0.0362,"73":0.01034,"74":0.01034,"76":0.01034,"77":0.00517,"78":0.01551,"79":0.08274,"80":0.00517,"81":0.01034,"83":0.02068,"84":0.02068,"85":0.01034,"87":0.06205,"88":0.02586,"89":0.01034,"90":0.05688,"91":0.04137,"92":0.12928,"93":0.17064,"94":0.17064,"95":0.35163,"96":38.8187,"97":0.01551,"98":0.02586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 75 86 99"},F:{"28":0.05171,"81":0.23787,"82":0.29992,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.01034,"13":0.01034,"14":0.11893,"15":0.08274,_:"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.01551,"12.1":0.02068,"13.1":0.06205,"14.1":0.3206,"15.1":0.38783,"15.2":0.11893},B:{"16":0.01551,"17":0.00517,"18":0.02068,"84":0.01034,"92":0.01034,"93":0.00517,"95":0.02586,"96":4.88142,_:"12 13 14 15 79 80 81 83 85 86 87 88 89 90 91 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01507,"6.0-6.1":0,"7.0-7.1":0.02293,"8.1-8.4":0.00283,"9.0-9.2":0.00188,"9.3":0.12405,"10.0-10.2":0.00094,"10.3":0.03549,"11.0-11.2":0.00314,"11.3-11.4":0.00565,"12.0-12.1":0.00408,"12.2-12.5":0.17712,"13.0-13.1":0.00911,"13.2":0.00188,"13.3":0.02073,"13.4-13.7":0.08479,"14.0-14.4":0.1118,"14.5-14.8":0.71068,"15.0-15.1":1.64181,"15.2":0.16487},P:{"4":0.61796,"5.0-5.4":0.04033,"6.2-6.4":0.09073,"7.2-7.4":0.20599,_:"8.2","9.2":0.0515,"10.1":0.0103,"11.1-11.2":0.12359,"12.0":0.08239,"13.0":0.18539,"14.0":0.32958,"15.0":0.49437},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00093,"4.2-4.3":0.00155,"4.4":0,"4.4.3-4.4.4":0.04581},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01596,"10":0.00532,"11":0.89916,_:"6 7 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.39115},H:{"0":0.4206},L:{"0":40.95561},S:{"2.5":0},R:{_:"0"},M:{"0":0.12555},Q:{"10.4":0.00483}}; 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 35d49b0207505f..1e8cf91eee5b54 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:{"52":0.01951,"66":0.00836,"67":0.00557,"68":0.00557,"72":0.00279,"73":0.00557,"78":0.02787,"82":0.00279,"84":0.00279,"85":0.00557,"88":0.00557,"89":0.00836,"90":0.00557,"91":0.00557,"92":0.01951,"93":0.20903,"94":0.88627,"95":0.02787,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 69 70 71 74 75 76 77 79 80 81 83 86 87 96 3.5 3.6"},D:{"24":0.00279,"39":0.03066,"40":0.00279,"50":0.00279,"56":0.00836,"63":0.00557,"65":0.00279,"67":0.00557,"70":0.00557,"71":0.00279,"73":0.01951,"74":0.04459,"75":0.01394,"76":0.00557,"77":0.00279,"78":0.01394,"79":0.01672,"80":0.01951,"81":0.02787,"83":0.05574,"84":0.07246,"85":0.0223,"86":0.03902,"87":0.10033,"88":0.01951,"89":0.0223,"90":0.01951,"91":0.09197,"92":0.11984,"93":0.17558,"94":1.02562,"95":12.10115,"96":7.00652,"97":0.00557,_:"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 41 42 43 44 45 46 47 48 49 51 52 53 54 55 57 58 59 60 61 62 64 66 68 69 72 98 99"},F:{"75":0.00279,"78":0.00279,"79":0.00279,"80":0.22575,"81":0.08082,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00279,"14":0.00557,"15":0.01115,"16":0.01394,"17":0.00836,"18":0.03344,"80":0.00557,"83":0.00557,"84":0.00836,"85":0.00557,"89":0.01672,"90":0.00279,"91":0.00557,"92":0.02787,"93":0.00836,"94":0.02508,"95":0.91414,"96":0.30657,_:"13 79 81 86 87 88"},E:{"4":0,"11":0.0223,"13":0.01672,"14":0.15607,"15":0.31772,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00557,"10.1":0.00279,"11.1":0.00557,"12.1":0.02508,"13.1":0.13935,"14.1":0.57134,"15.1":0.39575},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00396,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04154,"10.0-10.2":0.00396,"10.3":0.05539,"11.0-11.2":0.00593,"11.3-11.4":0.01385,"12.0-12.1":0.02176,"12.2-12.5":0.43518,"13.0-13.1":0.02571,"13.2":0.01187,"13.3":0.07121,"13.4-13.7":0.21561,"14.0-14.4":1.45586,"14.5-14.8":7.2081,"15.0-15.1":10.20092},P:{"4":0.04134,"5.0-5.4":0.01033,"6.2-6.4":0.02053,"7.2-7.4":0.07234,"8.2":0.02026,"9.2":0.01033,"10.1":0.01032,"11.1-11.2":0.07234,"12.0":0.07234,"13.0":0.062,"14.0":0.12401,"15.0":1.59144},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.36065},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00279,"11":0.09476,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":49.26915},S:{"2.5":0},R:{_:"0"},M:{"0":0.64196},Q:{"10.4":0},O:{"0":0.9449},H:{"0":0.55313}}; +module.exports={C:{"34":0.00302,"45":0.00302,"52":0.00604,"66":0.00604,"72":0.01207,"78":0.05734,"80":0.00302,"86":0.00302,"88":0.00302,"90":0.08149,"91":0.00604,"92":0.00604,"93":0.01509,"94":0.32594,"95":0.81788,"96":0.0664,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 87 89 97 3.5 3.6"},D:{"38":0.00604,"39":0.02113,"47":0.00302,"56":0.00302,"63":0.00604,"69":0.00302,"71":0.00905,"73":0.01509,"74":0.00604,"76":0.00604,"77":0.00905,"78":0.01509,"79":0.01207,"80":0.01509,"81":0.00302,"83":0.07545,"84":0.01207,"85":0.05432,"86":0.05432,"87":0.0664,"88":0.02414,"89":0.02113,"90":0.01811,"91":0.0664,"92":0.19013,"93":0.03923,"94":0.12072,"95":0.52513,"96":20.79704,"98":0.01207,"99":0.00604,_:"4 5 6 7 8 9 10 11 12 13 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 49 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 68 70 72 75 97"},F:{"25":0.01207,"80":0.00905,"81":0.19919,"82":0.14788,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.02113,"13":0.02113,"14":0.16901,"15":0.28671,_:"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.00905,"12.1":0.02414,"13.1":0.13883,"14.1":0.51306,"15.1":0.66094,"15.2":0.09054},B:{"14":0.00302,"15":0.01207,"16":0.01207,"17":0.00604,"18":0.01207,"80":0.00604,"83":0.00905,"84":0.00302,"85":0.00905,"89":0.01207,"90":0.00604,"91":0.00604,"92":0.01207,"93":0.00905,"94":0.00604,"95":0.05734,"96":1.34905,_:"12 13 79 81 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00753,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04516,"10.0-10.2":0.00376,"10.3":0.05457,"11.0-11.2":0.00376,"11.3-11.4":0.01129,"12.0-12.1":0.01693,"12.2-12.5":0.35375,"13.0-13.1":0.03011,"13.2":0.01129,"13.3":0.07338,"13.4-13.7":0.17123,"14.0-14.4":1.1591,"14.5-14.8":4.76434,"15.0-15.1":11.0434,"15.2":1.06689},P:{"4":0.0311,"5.0-5.4":0.01041,"6.2-6.4":0.0104,"7.2-7.4":0.12442,_:"8.2","9.2":0.02126,"10.1":0.01108,"11.1-11.2":0.06221,"12.0":0.0311,"13.0":0.08295,"14.0":0.11405,"15.0":0.26958},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.34212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00302,"11":0.06338,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.92861},H:{"0":0.49576},L:{"0":48.24704},S:{"2.5":0},R:{_:"0"},M:{"0":0.88671},Q:{"10.4":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 872b7bb1ea774f..b06d475e4b4dbf 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.02115,"34":0.00705,"35":0.00353,"43":0.00353,"44":0.00353,"45":0.00705,"47":0.00705,"48":0.00353,"50":0.00705,"52":0.03525,"56":0.00705,"57":0.00705,"59":0.01058,"60":0.00705,"61":0.01763,"62":0.00353,"63":0.0564,"65":0.00705,"68":0.00353,"69":0.01763,"72":0.0141,"78":0.03878,"80":0.01763,"81":0.04583,"82":0.0141,"83":0.00705,"84":0.00353,"85":0.00353,"86":0.00705,"87":0.0141,"88":0.0141,"89":0.03173,"90":0.01763,"91":0.03173,"92":0.0282,"93":0.564,"94":2.32298,"95":0.141,_:"2 3 4 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 36 37 38 39 40 41 42 46 49 51 53 54 55 58 64 66 67 70 71 73 74 75 76 77 79 96 3.5 3.6"},D:{"28":0.05993,"33":0.0141,"43":0.03878,"49":0.02115,"50":0.0423,"55":0.00705,"56":0.0141,"57":0.00705,"58":0.00353,"59":0.00353,"60":0.01763,"61":0.01058,"62":0.00705,"63":0.01763,"65":0.00705,"66":0.00705,"67":0.01058,"68":0.01058,"69":0.02468,"70":0.0564,"71":0.00705,"72":0.01058,"74":0.02468,"75":0.02115,"76":0.01058,"77":0.00353,"78":0.0141,"79":0.05993,"80":0.02115,"81":0.02115,"83":0.01763,"84":0.01763,"85":0.00705,"86":0.03173,"87":0.13043,"88":0.1128,"89":0.01763,"90":0.0564,"91":0.06698,"92":0.28905,"93":0.17625,"94":0.57458,"95":8.9535,"96":5.36153,"97":0.0141,_:"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 37 38 39 40 41 42 44 45 46 47 48 51 52 53 54 64 73 98 99"},F:{"35":0.00353,"36":0.00705,"40":0.00705,"42":0.00705,"54":0.00705,"63":0.01058,"64":0.31373,"74":0.00705,"76":0.01058,"77":0.00705,"78":0.00705,"79":0.04935,"80":1.0011,"81":0.2679,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 41 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 65 66 67 68 69 70 71 72 73 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.06698,"13":0.0282,"14":0.0141,"15":0.05288,"16":0.04935,"17":0.04583,"18":0.27848,"84":0.03173,"85":0.02115,"86":0.02115,"87":0.03173,"89":0.04583,"90":0.0564,"91":0.08813,"92":0.0846,"93":0.10575,"94":0.20093,"95":2.95395,"96":0.72615,_:"79 80 81 83 88"},E:{"4":0,"8":0.00353,"10":0.00353,"11":0.00705,"12":0.00705,"13":0.00705,"14":0.03525,"15":0.0705,_:"0 5 6 7 9 3.1 3.2 6.1 9.1 10.1","5.1":0.03525,"7.1":0.00705,"11.1":0.01058,"12.1":0.03878,"13.1":0.0705,"14.1":0.13395,"15.1":0.0423},G:{"8":0,"3.2":0.00021,"4.0-4.1":0,"4.2-4.3":0.00042,"5.0-5.1":0.00234,"6.0-6.1":0,"7.0-7.1":0.00106,"8.1-8.4":0.00042,"9.0-9.2":0.00425,"9.3":0.04164,"10.0-10.2":0.00255,"10.3":0.07584,"11.0-11.2":0.00404,"11.3-11.4":0.00595,"12.0-12.1":0.01827,"12.2-12.5":0.21137,"13.0-13.1":0.00616,"13.2":0.00276,"13.3":0.02762,"13.4-13.7":0.09899,"14.0-14.4":0.29358,"14.5-14.8":0.67596,"15.0-15.1":0.65004},P:{"4":0.35932,"5.0-5.4":0.01027,"6.2-6.4":0.02053,"7.2-7.4":0.13346,"8.2":0.02026,"9.2":0.04107,"10.1":0.01032,"11.1-11.2":0.11293,"12.0":0.08213,"13.0":0.13346,"14.0":0.19506,"15.0":1.33462},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00394,"4.2-4.3":0.01479,"4.4":0,"4.4.3-4.4.4":0.17549},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01006,"11":0.33187,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04532},N:{"10":0.02658,"11":0.22582},L:{"0":49.31153},S:{"2.5":0.03884},R:{_:"0"},M:{"0":0.18775},Q:{"10.4":0.01942},O:{"0":6.474},H:{"0":9.89247}}; +module.exports={C:{"17":0.00351,"27":0.00702,"29":0.01404,"32":0.00351,"47":0.00702,"52":0.04563,"56":0.00702,"57":0.00702,"59":0.01053,"60":0.00702,"61":0.02106,"63":0.03159,"64":0.00351,"66":0.00702,"68":0.02457,"69":0.01755,"72":0.00702,"78":0.02457,"80":0.01053,"81":0.0351,"84":0.00351,"86":0.00702,"87":0.00702,"88":0.0351,"89":0.03861,"90":0.02106,"91":0.04212,"92":0.01755,"93":0.01404,"94":1.22148,"95":1.96911,"96":0.17901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 28 30 31 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 58 62 65 67 70 71 73 74 75 76 77 79 82 83 85 97 3.5 3.6"},D:{"24":0.00702,"28":0.00351,"33":0.00702,"40":0.00351,"43":0.00702,"49":0.00702,"50":0.02808,"52":0.00351,"56":0.00351,"57":0.00351,"60":0.00702,"61":0.00702,"62":0.00702,"63":0.02106,"65":0.01404,"66":0.00351,"67":0.00702,"69":0.01053,"70":0.02457,"71":0.01053,"72":0.01053,"73":0.00702,"74":0.01404,"75":0.01755,"76":0.00702,"77":0.00702,"78":0.07722,"79":0.05265,"80":0.01755,"81":0.01755,"83":0.04563,"84":0.02808,"85":0.01755,"86":0.07371,"87":0.14391,"88":0.08073,"89":0.0351,"90":0.1053,"91":0.05967,"92":0.1755,"93":0.11934,"94":0.23166,"95":0.351,"96":14.59809,_:"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 34 35 36 37 38 39 41 42 44 45 46 47 48 51 53 54 55 58 59 64 68 97 98 99"},F:{"34":0.0351,"35":0.00351,"36":0.00351,"42":0.00351,"50":0.01404,"54":0.01755,"62":0.00702,"64":0.23517,"66":0.00702,"77":0.00351,"79":0.04212,"80":0.07722,"81":0.36855,"82":0.67041,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 43 44 45 46 47 48 49 51 52 53 55 56 57 58 60 63 65 67 68 69 70 71 72 73 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},E:{"4":0,"11":0.00702,"12":0.00351,"13":0.00702,"14":0.02808,"15":0.05265,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04563,"11.1":0.00702,"12.1":0.02106,"13.1":0.04563,"14.1":0.06669,"15.1":0.07722,"15.2":0.00351},B:{"12":0.0702,"13":0.02457,"14":0.02106,"15":0.04212,"16":0.05265,"17":0.04212,"18":0.27729,"81":0.00351,"84":0.04212,"85":0.02808,"86":0.01404,"87":0.00702,"89":0.03861,"90":0.02808,"91":0.03861,"92":0.05967,"93":0.03861,"94":0.06669,"95":0.23517,"96":3.03615,_:"79 80 83 88"},G:{"8":0,"3.2":0.00041,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0.00185,"6.0-6.1":0.00226,"7.0-7.1":0.00659,"8.1-8.4":0.00103,"9.0-9.2":0.00226,"9.3":0.05558,"10.0-10.2":0.00329,"10.3":0.02511,"11.0-11.2":0.00782,"11.3-11.4":0.01811,"12.0-12.1":0.01667,"12.2-12.5":0.25441,"13.0-13.1":0.0142,"13.2":0.00453,"13.3":0.0212,"13.4-13.7":0.10498,"14.0-14.4":0.29682,"14.5-14.8":0.52076,"15.0-15.1":0.63315,"15.2":0.06566},P:{"4":0.3536,"5.0-5.4":0.01041,"6.2-6.4":0.0104,"7.2-7.4":0.1144,_:"8.2","9.2":0.0416,"10.1":0.01108,"11.1-11.2":0.0936,"12.0":0.0416,"13.0":0.2184,"14.0":0.2808,"15.0":0.6448},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01291,"4.2-4.3":0.01567,"4.4":0,"4.4.3-4.4.4":0.13367},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01711,"11":0.25667,_:"6 7 8 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.03894},O:{"0":6.96377},H:{"0":9.08744},L:{"0":50.41811},S:{"2.5":0.03894},R:{_:"0"},M:{"0":0.23364},Q:{"10.4":0.02596}}; 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 e1397f7599d43e..bf1a46920031eb 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":1.13568,"34":0.00442,"52":0.02651,"56":0.00442,"73":0.00442,"78":0.06629,"84":0.00884,"88":0.01326,"89":0.00884,"90":0.0221,"91":0.0221,"92":0.01768,"93":0.22979,"94":1.40082,"95":0.01326,_:"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 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 96 3.5 3.6"},D:{"22":0.00884,"34":0.00442,"38":0.00884,"48":0.00442,"49":0.08396,"52":0.01326,"58":0.00884,"61":0.02651,"63":0.00884,"65":0.01326,"66":0.0221,"67":0.01326,"69":0.00442,"70":0.00884,"71":0.00442,"72":0.00442,"73":0.00442,"74":0.00884,"75":0.01326,"76":0.03093,"77":0.01326,"78":0.0221,"79":0.04861,"80":0.0221,"81":0.02651,"83":0.0221,"84":0.0221,"85":0.0221,"86":0.03535,"87":0.21653,"88":0.0707,"89":0.03977,"90":0.0707,"91":0.11931,"92":0.19886,"93":0.19444,"94":0.93241,"95":17.18549,"96":10.93703,"97":0.02651,_:"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 47 50 51 53 54 55 56 57 59 60 62 64 68 98 99"},F:{"78":0.00442,"79":0.01326,"80":0.93241,"81":0.41539,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00884,"15":0.00442,"16":0.00442,"17":0.00884,"18":0.03093,"84":0.00884,"85":0.01326,"89":0.00884,"90":0.00884,"91":0.00884,"92":0.0221,"93":0.01326,"94":0.11931,"95":2.49232,"96":0.99428,_:"13 14 79 80 81 83 86 87 88"},E:{"4":0,"12":0.00442,"13":0.03093,"14":0.21653,"15":0.38887,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.03093,"10.1":0.00884,"11.1":0.0221,"12.1":0.04419,"13.1":0.20769,"14.1":0.82193,"15.1":0.5126},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00385,"6.0-6.1":0.00192,"7.0-7.1":0.01155,"8.1-8.4":0.00577,"9.0-9.2":0.01539,"9.3":0.09044,"10.0-10.2":0.00289,"10.3":0.07216,"11.0-11.2":0.01347,"11.3-11.4":0.03945,"12.0-12.1":0.01443,"12.2-12.5":0.53208,"13.0-13.1":0.01636,"13.2":0.00674,"13.3":0.04618,"13.4-13.7":0.15491,"14.0-14.4":0.53111,"14.5-14.8":4.22775,"15.0-15.1":3.83133},P:{"4":0.10735,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.07514,"11.1-11.2":0.05367,"12.0":0.02147,"13.0":0.05367,"14.0":0.05367,"15.0":0.95538},I:{"0":0,"3":0,"4":0.00106,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00264,"4.2-4.3":0.00529,"4.4":0,"4.4.3-4.4.4":0.04125},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0195,"9":0.00975,"10":0.00975,"11":0.24381,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":46.81735},S:{"2.5":0.00558},R:{_:"0"},M:{"0":0.17304},Q:{"10.4":0},O:{"0":0.0614},H:{"0":0.21667}}; +module.exports={C:{"4":1.12282,"34":0.00439,"52":0.02632,"56":0.00439,"66":0.00439,"73":0.00439,"78":0.05263,"84":0.01316,"88":0.01754,"89":0.00439,"90":0.02193,"91":0.02193,"92":0.00877,"93":0.01316,"94":0.57457,"95":1.04387,"96":0.00877,_:"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 85 86 87 97 3.5 3.6"},D:{"22":0.00877,"34":0.00439,"38":0.01316,"49":0.07456,"52":0.01316,"53":0.00439,"58":0.00877,"63":0.01316,"65":0.01316,"66":0.02632,"67":0.01754,"69":0.00439,"70":0.00877,"71":0.00439,"72":0.00439,"73":0.00439,"74":0.00877,"75":0.01316,"76":0.0307,"77":0.01316,"78":0.02193,"79":0.05263,"80":0.02193,"81":0.0307,"83":0.02193,"84":0.02193,"85":0.01754,"86":0.03509,"87":0.14912,"88":0.06579,"89":0.03509,"90":0.04825,"91":0.12281,"92":0.15351,"93":0.1886,"94":0.32456,"95":0.53071,"96":26.18003,"97":0.05702,_:"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 47 48 50 51 54 55 56 57 59 60 61 62 64 68 98 99"},F:{"80":0.01316,"81":0.78071,"82":0.54825,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00877,"13":0.03509,"14":0.20176,"15":0.22369,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.03509,"10.1":0.00877,"11.1":0.02193,"12.1":0.04825,"13.1":0.1886,"14.1":0.64913,"15.1":0.73685,"15.2":0.09211},B:{"12":0.01754,"15":0.00439,"16":0.00439,"17":0.00877,"18":0.0307,"84":0.00439,"85":0.00877,"89":0.00439,"90":0.00877,"91":0.00877,"92":0.01316,"93":0.00877,"94":0.01754,"95":0.18421,"96":3.23248,_:"13 14 79 80 81 83 86 87 88"},G:{"8":0.00106,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00424,"6.0-6.1":0.00106,"7.0-7.1":0.01273,"8.1-8.4":0.00743,"9.0-9.2":0.01061,"9.3":0.08913,"10.0-10.2":0.00318,"10.3":0.07427,"11.0-11.2":0.01485,"11.3-11.4":0.04138,"12.0-12.1":0.01485,"12.2-12.5":0.5443,"13.0-13.1":0.01485,"13.2":0.00637,"13.3":0.04456,"13.4-13.7":0.15491,"14.0-14.4":0.49019,"14.5-14.8":3.04299,"15.0-15.1":5.48757,"15.2":0.5443},P:{"4":0.11567,"5.0-5.4":0.02053,"6.2-6.4":0.09073,"7.2-7.4":0.08413,_:"8.2","9.2":0.0308,"10.1":0.0103,"11.1-11.2":0.05258,"12.0":0.02103,"13.0":0.05258,"14.0":0.05258,"15.0":0.14722},I:{"0":0,"3":0,"4":0.00158,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00211,"4.2-4.3":0.00474,"4.4":0,"4.4.3-4.4.4":0.04211},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01919,"9":0.00959,"10":0.00959,"11":0.26864,_:"6 7 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.06737},H:{"0":0.21791},L:{"0":48.10906},S:{"2.5":0},R:{_:"0"},M:{"0":0.19649},Q:{"10.4":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 91dac1bbfec1fa..0a2d8ab679e0be 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.02434,"39":0.00811,"48":0.00406,"52":0.0365,"60":0.02028,"63":0.00406,"78":0.02839,"80":0.01217,"81":0.00406,"82":0.00406,"84":0.00811,"85":0.00811,"86":0.00406,"88":0.00811,"89":0.00811,"91":0.02839,"92":0.01622,"93":0.26364,"94":1.36282,"95":0.0365,_:"2 3 4 5 6 7 8 9 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 49 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 83 87 90 96 3.5 3.6"},D:{"22":0.00811,"25":0.03245,"34":0.02839,"38":0.10951,"47":0.01217,"49":0.08518,"53":0.08923,"55":0.08923,"56":0.03245,"57":0.00406,"58":0.00811,"60":0.00406,"62":0.01217,"63":0.00406,"65":0.01217,"66":0.00811,"67":0.01622,"68":0.01217,"69":0.01622,"70":0.03245,"71":0.01622,"72":0.02028,"73":0.02028,"74":0.02434,"75":0.04056,"76":0.02434,"77":0.01217,"78":0.02434,"79":0.32042,"80":0.02434,"81":0.04867,"83":0.08112,"84":0.03245,"85":0.04462,"86":0.0649,"87":0.17846,"88":0.14196,"89":0.05273,"90":0.04867,"91":0.11357,"92":0.3042,"93":0.2393,"94":0.9491,"95":17.18527,"96":9.87636,"97":0.02028,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 59 61 64 98 99"},F:{"28":0.02434,"36":0.06084,"40":0.01217,"46":0.06084,"79":0.00811,"80":0.27986,"81":0.11762,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00811,"18":0.01622,"84":0.00811,"89":0.01622,"92":0.00811,"93":0.00811,"94":0.03245,"95":1.3547,"96":0.5719,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91"},E:{"4":0,"8":0.00406,"12":0.00406,"13":0.06084,"14":0.28392,"15":0.55973,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01217,"11.1":0.02028,"12.1":0.03245,"13.1":0.17035,"14.1":1.54534,"15.1":0.58001},G:{"8":0.00619,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.01114,"6.0-6.1":0.01486,"7.0-7.1":0.03343,"8.1-8.4":0.04582,"9.0-9.2":0.01857,"9.3":0.29471,"10.0-10.2":0.02353,"10.3":0.21793,"11.0-11.2":0.02848,"11.3-11.4":0.03467,"12.0-12.1":0.05944,"12.2-12.5":0.80611,"13.0-13.1":0.03839,"13.2":0.01857,"13.3":0.1003,"13.4-13.7":0.26994,"14.0-14.4":0.97327,"14.5-14.8":4.50479,"15.0-15.1":4.87874},P:{"4":0.84103,"5.0-5.4":0.01027,"6.2-6.4":0.02053,"7.2-7.4":0.06308,"8.2":0.02026,"9.2":0.02103,"10.1":0.01032,"11.1-11.2":0.07359,"12.0":0.02103,"13.0":0.09462,"14.0":0.10513,"15.0":1.48232},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.00509,"4.4":0,"4.4.3-4.4.4":0.03397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01068,"8":0.00534,"9":0.01068,"11":0.19231,_:"6 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":43.71033},S:{"2.5":0},R:{_:"0"},M:{"0":0.15454},Q:{"10.4":0.04161},O:{"0":1.1888},H:{"0":0.67529}}; +module.exports={C:{"34":0.02087,"39":0.00835,"52":0.02922,"60":0.02504,"63":0.00417,"70":0.02504,"78":0.02922,"80":0.00835,"82":0.00835,"84":0.00835,"85":0.00835,"86":0.00417,"88":0.00835,"89":0.00835,"91":0.02087,"92":0.00835,"93":0.00835,"94":0.47166,"95":1.06854,"96":0.02087,_:"2 3 4 5 6 7 8 9 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 64 65 66 67 68 69 71 72 73 74 75 76 77 79 81 83 87 90 97 3.5 3.6"},D:{"22":0.00417,"25":0.0167,"26":0.00417,"34":0.02922,"38":0.10018,"47":0.01252,"49":0.07513,"53":0.07931,"55":0.07513,"56":0.03339,"58":0.00835,"62":0.01252,"63":0.00835,"64":0.00417,"65":0.01252,"66":0.00835,"67":0.01252,"68":0.01252,"69":0.0167,"70":0.02922,"71":0.0167,"72":0.0167,"73":0.0167,"74":0.02087,"75":0.04174,"76":0.0167,"77":0.01252,"78":0.02087,"79":0.31722,"80":0.02504,"81":0.06261,"83":0.05426,"84":0.03339,"85":0.04174,"86":0.05426,"87":0.14609,"88":0.1127,"89":0.05009,"90":0.03757,"91":0.10018,"92":0.27966,"93":0.13357,"94":0.36731,"95":0.48836,"96":28.11189,"97":0.0167,"98":0.01252,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 59 60 61 99"},F:{"28":0.02504,"36":0.05844,"40":0.01252,"46":0.05426,"79":0.00417,"80":0.00417,"81":0.22122,"82":0.27548,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00835,"13":0.07513,"14":0.25461,"15":0.32975,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00835,"11.1":0.0167,"12.1":0.02504,"13.1":0.16279,"14.1":1.17707,"15.1":1.21881,"15.2":0.1127},B:{"18":0.01252,"84":0.00417,"92":0.00835,"93":0.00417,"94":0.00835,"95":0.03757,"96":2.1037,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91"},G:{"8":0.00503,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0.01131,"6.0-6.1":0.01508,"7.0-7.1":0.02891,"8.1-8.4":0.04022,"9.0-9.2":0.01634,"9.3":0.27272,"10.0-10.2":0.02514,"10.3":0.19606,"11.0-11.2":0.02514,"11.3-11.4":0.03016,"12.0-12.1":0.04901,"12.2-12.5":0.73271,"13.0-13.1":0.04022,"13.2":0.01508,"13.3":0.08798,"13.4-13.7":0.25513,"14.0-14.4":0.85085,"14.5-14.8":2.99745,"15.0-15.1":6.37069,"15.2":0.5002},P:{"4":0.77613,"5.0-5.4":0.01041,"6.2-6.4":0.0104,"7.2-7.4":0.06379,_:"8.2","9.2":0.02126,"10.1":0.01108,"11.1-11.2":0.07442,"12.0":0.02126,"13.0":0.08506,"14.0":0.09569,"15.0":0.2339},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00233,"4.2-4.3":0.00544,"4.4":0,"4.4.3-4.4.4":0.02719},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01267,"8":0.00633,"9":0.00633,"11":0.15832,_:"6 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.12442},H:{"0":0.6674},L:{"0":42.80639},S:{"2.5":0},R:{_:"0"},M:{"0":0.1573},Q:{"10.4":0.04078}}; 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 54dd1cd62e7ef1..211a505b4e8825 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.022,"57":0.0176,"66":0.0044,"68":0.0088,"72":0.0044,"78":0.0176,"84":0.0264,"85":0.0044,"88":0.0132,"89":0.022,"90":0.0044,"91":0.0088,"92":0.0132,"93":0.3124,"94":1.518,"95":0.0132,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 96 3.5 3.6"},D:{"28":0.0044,"33":0.1452,"40":0.0352,"43":0.2332,"49":0.066,"55":0.0088,"56":0.0088,"57":0.0088,"60":0.0616,"62":0.0044,"63":0.0528,"65":0.0088,"69":0.0132,"70":0.0132,"73":0.0088,"74":0.0748,"79":0.0264,"80":0.0088,"81":0.1584,"83":0.0132,"84":0.0044,"85":0.0088,"86":0.0572,"87":0.3652,"88":0.022,"89":0.0176,"90":0.0308,"91":0.1056,"92":0.1276,"93":0.2816,"94":0.3784,"95":11.6468,"96":7.2644,"97":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 27 29 30 31 32 34 35 36 37 38 39 41 42 44 45 46 47 48 50 51 52 53 54 58 59 61 64 66 67 68 71 72 75 76 77 78 98 99"},F:{"34":0.0044,"39":0.0044,"46":0.0088,"51":0.0044,"53":0.0044,"65":0.0044,"76":0.0088,"77":0.0396,"78":0.0044,"79":0.066,"80":1.98,"81":0.6952,_:"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 40 41 42 43 44 45 47 48 49 50 52 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 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.022,"13":0.0044,"14":0.0176,"15":0.0132,"16":0.0176,"17":0.044,"18":0.1188,"84":0.0132,"85":0.0088,"89":0.0836,"90":0.0088,"91":0.0484,"92":0.0352,"93":0.022,"94":0.0572,"95":1.6588,"96":0.682,_:"79 80 81 83 86 87 88"},E:{"4":0,"13":0.022,"14":0.0396,"15":0.0484,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0044,"11.1":0.0132,"12.1":0.0088,"13.1":0.0748,"14.1":0.1188,"15.1":0.0924},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00055,"7.0-7.1":0.018,"8.1-8.4":0,"9.0-9.2":0.00218,"9.3":0.03764,"10.0-10.2":0.00545,"10.3":0.42712,"11.0-11.2":0.02073,"11.3-11.4":0.04909,"12.0-12.1":0.08619,"12.2-12.5":1.31737,"13.0-13.1":0.01255,"13.2":0.01309,"13.3":0.066,"13.4-13.7":0.2182,"14.0-14.4":0.7686,"14.5-14.8":1.46683,"15.0-15.1":0.9448},P:{"4":1.74669,"5.0-5.4":0.05116,"6.2-6.4":0.03082,"7.2-7.4":0.27742,"8.2":0.10275,"9.2":0.09247,"10.1":0.02055,"11.1-11.2":0.11302,"12.0":0.10275,"13.0":0.06165,"14.0":0.1233,"15.0":0.90417},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00018,"4.2-4.3":0.00194,"4.4":0,"4.4.3-4.4.4":0.02028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00599,"11":0.35921,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.0504},N:{"10":0.02658,"11":0.22582},L:{"0":54.2696},S:{"2.5":0.028},R:{_:"0"},M:{"0":0.0672},Q:{"10.4":0.056},O:{"0":0.336},H:{"0":5.51909}}; +module.exports={C:{"52":0.01309,"65":0.00436,"66":0.00436,"72":0.00873,"78":0.01745,"84":0.02182,"85":0.00873,"88":0.01309,"89":0.02182,"90":0.00873,"91":0.01745,"92":0.00873,"93":0.02618,"94":0.66754,"95":1.03839,"96":0.02182,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 68 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 97 3.5 3.6"},D:{"33":0.04799,"40":0.0829,"43":0.08726,"49":0.05672,"56":0.01745,"57":0.00873,"60":0.0349,"62":0.00873,"63":0.06108,"69":0.00873,"70":0.01745,"72":0.00436,"73":0.00436,"74":0.0829,"75":0.00436,"76":0.00873,"79":0.03054,"80":0.02182,"81":0.10471,"83":0.01745,"84":0.00436,"85":0.01309,"86":0.06545,"87":0.38394,"88":0.02618,"89":0.01309,"90":0.02182,"91":0.06981,"92":0.09599,"93":0.21815,"94":0.2007,"95":0.4712,"96":16.55759,"97":0.01745,_:"4 5 6 7 8 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 58 59 61 64 65 66 67 68 71 77 78 98 99"},F:{"20":0.07417,"46":0.00873,"53":0.00436,"65":0.00873,"77":0.01309,"78":0.00873,"79":0.04799,"80":0.04363,"81":0.84642,"82":1.35689,_:"9 11 12 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00873,"14":0.0349,"15":0.01309,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.00436,"10.1":0.00873,"12.1":0.00873,"13.1":0.05672,"14.1":0.06545,"15.1":0.12653,"15.2":0.01309},B:{"12":0.0349,"13":0.00873,"14":0.00873,"15":0.00873,"16":0.03054,"17":0.00873,"18":0.09162,"84":0.02618,"85":0.00873,"89":0.10035,"90":0.00873,"91":0.03927,"92":0.01745,"93":0.02182,"94":0.01745,"95":0.06981,"96":2.3822,_:"79 80 81 83 86 87 88"},G:{"8":0.00054,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00054,"6.0-6.1":0,"7.0-7.1":0.02066,"8.1-8.4":0.00054,"9.0-9.2":0,"9.3":0.07393,"10.0-10.2":0.00435,"10.3":0.42185,"11.0-11.2":0.01413,"11.3-11.4":0.03534,"12.0-12.1":0.05762,"12.2-12.5":1.53628,"13.0-13.1":0.0125,"13.2":0.02174,"13.3":0.10166,"13.4-13.7":0.15167,"14.0-14.4":0.74313,"14.5-14.8":0.95352,"15.0-15.1":1.17314,"15.2":0.11036},P:{"4":1.89403,"5.0-5.4":0.01035,"6.2-6.4":0.01024,"7.2-7.4":0.207,"8.2":0.15525,"9.2":0.1035,"10.1":0.01035,"11.1-11.2":0.0828,"12.0":0.1035,"13.0":0.0621,"14.0":0.11385,"15.0":0.3105},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.00249,"4.4":0,"4.4.3-4.4.4":0.0199},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2836,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.02819},O:{"0":0.31567},H:{"0":5.50219},L:{"0":57.34854},S:{"2.5":0.0451},R:{_:"0"},M:{"0":0.06201},Q:{"10.4":0.03382}}; 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 67ed3d2f2923ca..345eecb9674c71 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.01524,"47":0.00762,"52":0.01143,"56":0.01905,"60":0.00762,"78":0.02666,"82":0.00381,"83":0.01143,"84":0.00381,"86":0.00381,"87":0.02285,"88":0.01143,"89":0.01524,"91":0.02666,"92":0.04571,"93":0.46851,"94":2.09114,"95":0.04571,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 85 90 96 3.5 3.6"},D:{"37":0.00381,"39":0.00762,"43":0.00381,"48":0.00381,"49":0.03428,"53":0.00762,"57":0.00381,"60":0.00381,"62":0.01143,"63":0.01524,"64":0.01524,"65":0.00762,"67":0.01143,"69":0.06094,"70":0.02666,"71":0.00381,"72":0.00762,"73":0.00381,"74":0.00762,"75":0.01524,"76":0.01524,"77":0.00762,"79":0.03428,"80":0.01905,"81":0.01905,"83":0.01524,"84":0.02666,"85":0.01143,"86":0.0419,"87":0.07237,"88":0.06094,"89":0.07237,"90":0.03809,"91":0.09142,"92":0.15236,"93":0.1257,"94":1.04748,"95":13.57147,"96":6.94762,"97":0.01143,_:"4 5 6 7 8 9 10 11 12 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 40 41 42 44 45 46 47 50 51 52 54 55 56 58 59 61 66 68 78 98 99"},F:{"64":0.00381,"66":0.01524,"77":0.00381,"78":0.00762,"79":0.01905,"80":0.76561,"81":0.24378,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01905,"13":0.01143,"14":0.01143,"15":0.01143,"16":0.02666,"17":0.04571,"18":0.11427,"81":0.00381,"84":0.03047,"85":0.01143,"88":0.00381,"89":0.02666,"90":0.00762,"91":0.00762,"92":0.02285,"93":0.03809,"94":0.10665,"95":2.82247,"96":1.19984,_:"79 80 83 86 87"},E:{"4":0,"10":0.01143,"13":0.03047,"14":0.17902,"15":0.31615,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00381,"11.1":0.03428,"12.1":0.03047,"13.1":0.14093,"14.1":0.62849,"15.1":0.27425},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02933,"6.0-6.1":0,"7.0-7.1":0.01431,"8.1-8.4":0.00501,"9.0-9.2":0,"9.3":0.07012,"10.0-10.2":0.00787,"10.3":0.34342,"11.0-11.2":0.01073,"11.3-11.4":0.01789,"12.0-12.1":0.02504,"12.2-12.5":0.66037,"13.0-13.1":0.00429,"13.2":0.00143,"13.3":0.11662,"13.4-13.7":0.13665,"14.0-14.4":0.49152,"14.5-14.8":2.81534,"15.0-15.1":2.40181},P:{"4":0.51833,"5.0-5.4":0.01055,"6.2-6.4":0.03082,"7.2-7.4":1.10781,"8.2":0.10275,"9.2":0.05082,"10.1":0.02055,"11.1-11.2":0.43703,"12.0":0.04065,"13.0":0.27441,"14.0":0.34556,"15.0":3.01854},I:{"0":0,"3":0,"4":0.0008,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00295,"4.2-4.3":0.00697,"4.4":0,"4.4.3-4.4.4":0.05739},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00798,"11":0.83,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":49.97497},S:{"2.5":0},R:{_:"0"},M:{"0":0.53251},Q:{"10.4":0},O:{"0":0.55728},H:{"0":1.60038}}; +module.exports={C:{"34":0.02428,"52":0.01041,"54":0.00347,"56":0.12488,"69":0.00347,"71":0.00347,"72":0.00347,"78":0.01041,"80":0.00694,"83":0.01388,"86":0.00694,"87":0.00694,"88":0.00694,"89":0.00694,"91":0.01735,"92":0.01388,"93":0.01041,"94":0.68339,"95":1.3876,"96":0.01041,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 70 73 74 75 76 77 79 81 82 84 85 90 97 3.5 3.6"},D:{"37":0.00694,"42":0.00694,"48":0.01041,"49":0.04163,"53":0.00347,"62":0.00347,"63":0.00347,"64":0.00347,"65":0.00347,"69":0.09019,"70":0.02775,"71":0.00694,"72":0.01388,"73":0.00694,"74":0.03122,"75":0.01041,"76":0.00347,"77":0.01388,"78":0.01041,"79":0.04163,"80":0.01041,"81":0.01735,"83":0.01735,"84":0.00694,"85":0.02081,"86":0.05204,"87":0.04857,"88":0.06591,"89":0.01388,"90":0.0555,"91":0.04857,"92":0.2012,"93":0.04857,"94":0.46832,"95":0.47872,"96":17.90004,"97":0.02775,_:"4 5 6 7 8 9 10 11 12 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 43 44 45 46 47 50 51 52 54 55 56 57 58 59 60 61 66 67 68 98 99"},F:{"28":0.00694,"77":0.00347,"78":0.01041,"79":0.00694,"80":0.03122,"81":0.50994,"82":0.6938,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00347,"13":0.02081,"14":0.10407,"15":0.22549,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00347,"10.1":0.00347,"11.1":0.01735,"12.1":0.0555,"13.1":0.14223,"14.1":0.49607,"15.1":0.48219,"15.2":0.07979},B:{"12":0.02081,"13":0.01041,"14":0.01388,"15":0.00694,"16":0.02428,"17":0.02081,"18":0.06244,"81":0.03469,"84":0.01735,"85":0.02081,"86":0.00347,"88":0.00694,"89":0.02081,"90":0.00694,"92":0.03469,"93":0.01735,"94":0.06591,"95":0.2012,"96":3.03884,_:"79 80 83 87 91"},G:{"8":0,"3.2":0.00141,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.08606,"6.0-6.1":0,"7.0-7.1":0.01693,"8.1-8.4":0.02398,"9.0-9.2":0,"9.3":0.06701,"10.0-10.2":0.01199,"10.3":0.27933,"11.0-11.2":0.02187,"11.3-11.4":0.00494,"12.0-12.1":0.01411,"12.2-12.5":0.66729,"13.0-13.1":0.00776,"13.2":0.00212,"13.3":0.06772,"13.4-13.7":0.12344,"14.0-14.4":0.58688,"14.5-14.8":1.74723,"15.0-15.1":3.0677,"15.2":0.25464},P:{"4":0.6696,"5.0-5.4":0.01033,"6.2-6.4":0.01015,"7.2-7.4":1.03484,"8.2":0.15525,"9.2":0.03044,"10.1":0.01035,"11.1-11.2":0.30436,"12.0":0.05073,"13.0":0.2232,"14.0":0.35509,"15.0":0.6696},I:{"0":0,"3":0,"4":0.00043,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00174,"4.2-4.3":0.00521,"4.4":0,"4.4.3-4.4.4":0.05792},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00845,"11":0.49455,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.80972},H:{"0":2.11431},L:{"0":54.2887},S:{"2.5":0},R:{_:"0"},M:{"0":0.37221},Q:{"10.4":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 2160cd6b5ff516..330ef080c53fba 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:{"52":0.14775,"60":0.0286,"66":0.00953,"68":0.00953,"72":0.0143,"73":0.00477,"78":0.32885,"80":0.00953,"81":0.00953,"83":0.00953,"84":0.00953,"87":0.0143,"88":0.01906,"89":0.0143,"90":0.00953,"91":0.26213,"92":0.03336,"93":1.28682,"94":7.00125,"95":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 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 74 75 76 77 79 82 85 86 96 3.5 3.6"},D:{"38":0.00953,"49":0.14775,"57":0.00477,"65":0.03813,"67":0.0143,"68":0.06196,"70":0.01906,"72":0.00477,"73":0.01906,"75":0.05243,"77":0.00477,"78":0.04289,"79":0.01906,"80":0.02383,"81":0.02383,"84":0.00477,"85":0.05243,"86":0.10962,"87":0.41464,"88":0.01906,"89":0.06672,"90":0.09055,"91":0.05243,"92":0.43371,"93":0.16681,"94":0.54332,"95":12.98258,"96":7.8496,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 60 61 62 63 64 66 69 71 74 76 83 97 98 99"},F:{"80":0.6863,"81":0.17158,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0143,"18":0.05243,"84":0.00477,"85":0.00477,"86":0.00477,"89":0.00953,"90":0.00477,"91":0.02383,"92":0.05243,"93":0.0143,"94":0.08102,"95":3.44105,"96":1.78725,_:"12 13 14 15 17 79 80 81 83 87 88"},E:{"4":0,"12":0.10962,"13":0.07626,"14":0.40034,"15":0.83882,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00953,"10.1":0.0143,"11.1":0.04289,"12.1":0.30979,"13.1":0.65294,"14.1":2.06368,"15.1":1.04852},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00706,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00424,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0777,"10.0-10.2":0.00706,"10.3":0.20908,"11.0-11.2":0.02684,"11.3-11.4":0.18648,"12.0-12.1":0.02543,"12.2-12.5":1.21068,"13.0-13.1":0.02543,"13.2":0.00706,"13.3":0.20484,"13.4-13.7":0.31221,"14.0-14.4":0.80383,"14.5-14.8":6.72868,"15.0-15.1":4.28471},P:{"4":0.04255,"5.0-5.4":0.01055,"6.2-6.4":0.03082,"7.2-7.4":0.96791,"8.2":0.10275,"9.2":0.21273,"10.1":0.02127,"11.1-11.2":0.52118,"12.0":0.12764,"13.0":0.29782,"14.0":0.468,"15.0":4.56301},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00041,"4.4":0,"4.4.3-4.4.4":0.01529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.61481,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":31.3671},S:{"2.5":0},R:{_:"0"},M:{"0":0.62285},Q:{"10.4":0},O:{"0":0.01047},H:{"0":0.08424}}; +module.exports={C:{"45":0.01744,"51":0.00872,"52":0.13077,"60":0.17872,"68":0.0741,"78":0.27026,"80":0.01744,"84":0.00872,"87":0.01308,"88":0.04359,"89":0.00436,"90":0.00872,"91":0.17872,"92":0.01744,"93":0.05667,"94":2.32335,"95":3.84028,"96":0.00872,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 82 83 85 86 97 3.5 3.6"},D:{"34":0.00872,"49":0.08718,"55":0.00872,"60":0.00872,"63":0.01744,"65":0.00872,"67":0.03487,"71":0.00872,"72":0.00436,"73":0.00872,"74":0.00872,"75":0.00436,"77":0.01744,"78":0.01744,"79":0.00872,"80":0.02615,"81":0.01308,"85":0.03487,"86":0.03923,"87":0.24846,"88":0.0218,"89":0.04359,"90":0.10898,"91":0.0218,"92":0.42282,"93":0.29205,"94":0.26154,"95":0.55795,"96":20.71397,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 61 62 64 66 68 69 70 76 83 84 97 98 99"},F:{"78":0.00436,"81":0.25282,"82":0.22231,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.27026,"13":0.06103,"14":0.32693,"15":0.29641,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03051,"11.1":0.04795,"12.1":0.23539,"13.1":0.49257,"14.1":2.30155,"15.1":1.57796,"15.2":0.26154},B:{"15":0.00436,"16":0.00872,"17":0.00436,"18":0.03051,"86":0.01744,"87":0.01744,"89":0.00436,"91":0.0218,"92":0.00872,"93":0.00872,"94":0.01308,"95":0.08282,"96":3.83592,_:"12 13 14 79 80 81 83 84 85 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00441,"5.0-5.1":0,"6.0-6.1":0.00588,"7.0-7.1":0,"8.1-8.4":0.00588,"9.0-9.2":0.00441,"9.3":0.09265,"10.0-10.2":0.01029,"10.3":0.18677,"11.0-11.2":0.03088,"11.3-11.4":0.17059,"12.0-12.1":0.01912,"12.2-12.5":1.41325,"13.0-13.1":0.02353,"13.2":0.01029,"13.3":0.27059,"13.4-13.7":0.46618,"14.0-14.4":0.71619,"14.5-14.8":3.6427,"15.0-15.1":7.10892,"15.2":0.52354},P:{"4":0.02115,"5.0-5.4":0.01033,"6.2-6.4":0.07067,"7.2-7.4":1.21634,"8.2":0.15525,"9.2":0.07404,"10.1":0.02115,"11.1-11.2":0.64519,"12.0":0.12692,"13.0":0.34904,"14.0":0.32788,"15.0":1.07884},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00156,"4.4":0,"4.4.3-4.4.4":0.03229},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.25718,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.02256},H:{"0":0.08545},L:{"0":34.77012},S:{"2.5":0},R:{_:"0"},M:{"0":0.55846},Q:{"10.4":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 93b147889e8698..e825ec85316652 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.00779,"33":0.0026,"37":0.0026,"43":0.0026,"47":0.03375,"48":0.00519,"50":0.01038,"51":0.00519,"52":0.01038,"54":0.0026,"56":0.00779,"59":0.00519,"68":0.03375,"72":0.01038,"75":0.0026,"77":0.00519,"78":0.01298,"81":0.00519,"84":0.01298,"85":0.00519,"86":0.00779,"87":0.0026,"89":0.02336,"90":0.00519,"91":0.0675,"92":0.05452,"93":0.34786,"94":1.89768,"95":0.01298,_:"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 34 35 36 38 39 40 41 42 44 45 46 49 53 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 76 79 80 82 83 88 96 3.5 3.6"},D:{"30":0.0026,"47":0.00779,"49":0.02596,"58":0.01298,"59":0.01038,"62":0.0026,"64":0.01298,"66":0.00519,"67":0.01817,"68":0.01298,"69":0.00779,"70":0.0026,"73":0.00519,"74":0.00779,"75":0.01038,"77":0.0026,"78":0.01558,"79":0.29854,"80":0.02077,"81":0.02336,"83":0.0026,"84":0.00519,"85":0.00779,"86":0.00779,"87":0.03115,"88":0.0026,"89":0.00519,"90":0.00779,"91":0.03375,"92":0.75544,"93":0.15836,"94":0.56593,"95":3.34105,"96":2.23775,_:"4 5 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 50 51 52 53 54 55 56 57 60 61 63 65 71 72 76 97 98 99"},F:{"42":0.00519,"62":0.0026,"65":0.0026,"68":0.0623,"76":0.0026,"77":0.01298,"78":0.00519,"79":0.01038,"80":0.28556,"81":0.09346,_:"9 11 12 15 16 17 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 63 64 66 67 69 70 71 72 73 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.04413,"13":0.01038,"14":0.01298,"15":0.00519,"16":0.01038,"17":0.04413,"18":0.10903,"84":0.01298,"85":0.00519,"89":0.01038,"91":0.01558,"92":0.00779,"93":0.08307,"94":0.21287,"95":2.71801,"96":1.2305,_:"79 80 81 83 86 87 88 90"},E:{"4":0,"13":0.01038,"14":0.03634,"15":0.05192,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01038,"11.1":0.00519,"12.1":0.01038,"13.1":0.01817,"14.1":0.64381,"15.1":0.10644},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.00107,"8.1-8.4":0.00054,"9.0-9.2":0.00322,"9.3":0.00751,"10.0-10.2":0.00054,"10.3":0.26215,"11.0-11.2":0.13939,"11.3-11.4":0.00858,"12.0-12.1":0.11365,"12.2-12.5":0.83739,"13.0-13.1":0.02734,"13.2":0.00858,"13.3":0.06272,"13.4-13.7":0.24017,"14.0-14.4":0.97946,"14.5-14.8":1.62975,"15.0-15.1":1.03736},P:{"4":0.07324,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.07324,"8.2":0.10275,"9.2":0.10462,"10.1":0.02067,"11.1-11.2":0.04185,"12.0":0.03139,"13.0":0.05231,"14.0":0.0837,"15.0":0.44987},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00917,"4.4":0,"4.4.3-4.4.4":0.3018},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":5.1271,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0074},N:{"10":0.02658,"11":0.22582},L:{"0":64.10311},S:{"2.5":0.0074},R:{_:"0"},M:{"0":0.08885},Q:{"10.4":0.59232},O:{"0":2.83573},H:{"0":3.69407}}; +module.exports={C:{"25":0.00549,"37":0.00549,"43":0.00275,"48":0.00275,"52":0.00824,"56":0.00549,"57":0.00824,"62":0.00275,"64":0.00824,"68":0.01648,"72":0.00824,"78":0.01099,"85":0.00275,"86":0.00549,"89":0.01374,"91":0.04395,"92":0.01099,"93":0.02747,"94":0.76367,"95":1.38724,"96":0.00275,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 58 59 60 61 63 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 87 88 90 97 3.5 3.6"},D:{"11":0.00824,"30":0.00824,"33":0.00549,"36":0.00275,"38":0.00275,"43":0.02747,"44":0.00275,"45":0.00275,"49":0.0467,"57":0.01374,"58":0.01648,"63":0.00549,"64":0.00549,"65":0.00824,"68":0.00549,"69":0.00824,"70":0.01099,"71":0.00275,"73":0.00824,"74":0.00275,"75":0.00824,"76":0.00824,"78":0.00824,"79":0.37085,"80":0.00824,"81":0.02472,"83":0.00549,"84":0.01099,"85":0.00549,"86":0.02198,"87":0.03571,"88":0.0879,"89":0.01374,"90":0.02747,"91":0.04121,"92":0.48073,"93":0.03022,"94":0.09889,"95":0.24174,"96":6.32359,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 37 39 40 41 42 46 47 48 50 51 52 53 54 55 56 59 60 61 62 66 67 72 77 97 98 99"},F:{"40":0.00549,"42":0.00824,"48":0.00275,"66":0.00275,"79":0.01099,"80":0.01099,"81":0.1346,"82":0.25547,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.01648,"13":0.00275,"14":0.03571,"15":0.03846,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.02747,"9.1":0.00549,"11.1":0.01374,"12.1":0.03296,"13.1":0.02198,"14.1":0.56863,"15.1":0.3626,"15.2":0.00275},B:{"12":0.03022,"13":0.01923,"14":0.00824,"15":0.01099,"16":0.01923,"17":0.03022,"18":0.17031,"80":0.01099,"84":0.02198,"85":0.00824,"89":0.01099,"90":0.00824,"91":0.00275,"92":0.00824,"93":0.0467,"94":0.02198,"95":0.05494,"96":3.21948,_:"79 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01005,"8.1-8.4":0.00473,"9.0-9.2":0,"9.3":0.17794,"10.0-10.2":0,"10.3":0.18799,"11.0-11.2":0.09873,"11.3-11.4":0.02601,"12.0-12.1":0.13715,"12.2-12.5":0.89445,"13.0-13.1":0.04493,"13.2":0.00473,"13.3":0.10109,"13.4-13.7":0.34525,"14.0-14.4":0.89445,"14.5-14.8":1.48918,"15.0-15.1":1.36799,"15.2":0.12651},P:{"4":0.12529,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.09397,"8.2":0.02052,"9.2":0.06265,"10.1":0.01026,"11.1-11.2":0.03132,"12.0":0.05221,"13.0":0.03132,"14.0":0.06265,"15.0":0.2297},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00245,"4.2-4.3":0.0049,"4.4":0,"4.4.3-4.4.4":0.4641},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":4.94735,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":3.22759},H:{"0":4.81354},L:{"0":63.03015},S:{"2.5":0.03627},R:{_:"0"},M:{"0":0.05077},Q:{"10.4":0.32639}}; 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 b6c315ecd42fa7..4d240fce84339c 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:{"93":0.36215,"94":8.38123,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"81":0.12287,"93":0.12287,"94":0.95712,"95":19.64028,"96":5.62629,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 97 98 99"},F:{"80":0.12287,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"93":0.36215,"94":0.12287,"95":8.02555,"96":0.95712,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92"},E:{"4":0,"14":5.14773,"15":0.12287,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1","9.1":0.12287,"13.1":0.36215,"14.1":4.4299},G:{"8":0,"3.2":0,"4.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.10681,"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":1.06605,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.10681,"14.0-14.4":1.06605,"14.5-14.8":13.64709,"15.0-15.1":4.15942},P:{"4":0.07324,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.03404,"8.2":0.10275,"9.2":0.0227,"10.1":0.02067,"11.1-11.2":0.03404,"12.0":0.0227,"13.0":0.05674,"14.0":0.12488,"15.0":1.40491},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":7.30771,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":15.19143},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.24083}}; +module.exports={C:{"84":0.10152,"93":0.10152,"94":2.21735,"95":4.94228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 85 86 87 88 89 90 91 92 96 97 3.5 3.6"},D:{"81":0.30455,"95":0.40073,"96":21.97576,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.40073,"14":7.66186,_:"0 5 6 7 8 9 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2","13.1":3.12566,"14.1":2.5219,"15.1":0.30455},B:{"96":7.15962,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},G:{"8":0,"3.2":0,"4.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.09138,"11.0-11.2":0.18451,"11.3-11.4":0,"12.0-12.1":0.09138,"12.2-12.5":1.10356,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.09138,"14.0-14.4":0.55178,"14.5-14.8":13.15662,"15.0-15.1":2.30026,"15.2":0},P:{"4":0.12529,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.04464,"8.2":0.02052,"9.2":0.03348,"10.1":0.01026,"11.1-11.2":0.04464,"12.0":0.01116,"13.0":0.10274,"14.0":4.13013,"15.0":0.31849},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.7151,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":23.26194},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 322caec7ad05e0..dcfc9d6da91e61 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:{"17":0.00158,"34":0.00158,"43":0.02837,"47":0.00946,"48":0.00315,"52":0.01891,"56":0.00315,"57":0.00315,"58":0.00158,"61":0.00158,"65":0.00473,"66":0.00946,"68":0.00473,"72":0.00788,"77":0.00158,"78":0.01576,"79":0.00315,"80":0.00315,"81":0.00158,"82":0.00158,"83":0.00946,"84":0.0063,"85":0.00473,"86":0.00473,"87":0.00315,"88":0.0063,"89":0.00946,"90":0.00473,"91":0.02206,"92":0.01891,"93":0.23798,"94":0.99288,"95":0.06462,_:"2 3 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 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 59 60 62 63 64 67 69 70 71 73 74 75 76 96 3.5 3.6"},D:{"23":0.00158,"24":0.00315,"38":0.00158,"47":0.01261,"49":0.0063,"50":0.0063,"55":0.00946,"56":0.00315,"57":0.00473,"58":0.01261,"62":0.01261,"63":0.00473,"64":0.01103,"65":0.00315,"66":0.00315,"67":0.00158,"68":0.00315,"69":0.0063,"70":0.01734,"71":0.00315,"72":0.00788,"73":0.00473,"74":0.01103,"75":0.00473,"76":0.00473,"77":0.01418,"78":0.00473,"79":0.02994,"80":0.03467,"81":0.02364,"83":0.01891,"84":0.01576,"85":0.01261,"86":0.05043,"87":0.0851,"88":0.02837,"89":0.02522,"90":0.04413,"91":0.09771,"92":0.10874,"93":0.09929,"94":0.29314,"95":3.69572,"96":2.03934,"97":0.00788,"98":0.00158,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 59 60 61 99"},F:{"36":0.01103,"43":0.00315,"55":0.00315,"64":0.01103,"65":0.01576,"66":0.00315,"76":0.00158,"77":0.00315,"78":0.00315,"79":0.05043,"80":0.24113,"81":0.0851,_:"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 44 45 46 47 48 49 50 51 52 53 54 56 57 58 60 62 63 67 68 69 70 71 72 73 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.01418,"13":0.00158,"14":0.00315,"15":0.00473,"16":0.00315,"17":0.00315,"18":0.03625,"84":0.0063,"85":0.00473,"88":0.01891,"89":0.0063,"90":0.00315,"91":0.0063,"92":0.01261,"93":0.01734,"94":0.03467,"95":0.6241,"96":0.20961,_:"79 80 81 83 86 87"},E:{"4":0,"8":0.00158,"11":0.00315,"12":0.00315,"13":0.01103,"14":0.04255,"15":0.03782,_:"0 5 6 7 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01103,"10.1":0.00315,"11.1":0.0063,"12.1":0.0063,"13.1":0.0331,"14.1":0.08038,"15.1":0.05201},G:{"8":0.00059,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00117,"5.0-5.1":0.00117,"6.0-6.1":0.00117,"7.0-7.1":0.00527,"8.1-8.4":0.00351,"9.0-9.2":0.00117,"9.3":0.02518,"10.0-10.2":0.00176,"10.3":0.04334,"11.0-11.2":0.11597,"11.3-11.4":0.02518,"12.0-12.1":0.04334,"12.2-12.5":0.66359,"13.0-13.1":0.05798,"13.2":0.0328,"13.3":0.15931,"13.4-13.7":0.31276,"14.0-14.4":1.5064,"14.5-14.8":1.59542,"15.0-15.1":1.25689},P:{"4":0.07324,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.03404,"8.2":0.10275,"9.2":0.0227,"10.1":0.02067,"11.1-11.2":0.03404,"12.0":0.0227,"13.0":0.05674,"14.0":0.11348,"15.0":0.51064},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.0019,"4.4":0,"4.4.3-4.4.4":0.03958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0154,"9":0.00257,"10":0.0077,"11":0.06417,_:"6 7 5.5"},J:{"7":0,"10":0.01685},N:{"10":0.02658,"11":0.22582},L:{"0":40.43192},S:{"2.5":0.00842},R:{_:"0"},M:{"0":0.27796},Q:{"10.4":0.00842},O:{"0":1.1708},H:{"0":38.38853}}; +module.exports={C:{"34":0.00331,"43":0.02486,"47":0.00994,"48":0.00166,"50":0.00331,"52":0.02154,"56":0.00331,"57":0.00166,"58":0.00166,"61":0.00166,"65":0.00663,"66":0.00497,"68":0.00331,"72":0.0116,"77":0.00166,"78":0.0116,"79":0.00166,"80":0.00331,"81":0.00166,"82":0.00166,"83":0.00663,"84":0.00829,"85":0.00331,"86":0.00663,"87":0.00166,"88":0.00663,"89":0.00829,"90":0.00497,"91":0.01823,"92":0.00994,"93":0.01657,"94":0.48882,"95":0.80365,"96":0.04143,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 51 53 54 55 59 60 62 63 64 67 69 70 71 73 74 75 76 97 3.5 3.6"},D:{"24":0.00166,"37":0.00166,"38":0.00497,"40":0.00166,"47":0.01326,"49":0.00497,"50":0.00331,"51":0.00331,"53":0.00166,"55":0.00829,"56":0.00497,"57":0.00663,"58":0.01326,"61":0.00166,"62":0.00829,"63":0.00497,"64":0.0116,"65":0.00166,"66":0.00166,"68":0.00331,"69":0.00663,"70":0.01326,"71":0.00331,"72":0.00497,"73":0.00331,"74":0.01326,"75":0.00663,"76":0.00663,"77":0.00829,"78":0.00331,"79":0.03148,"80":0.02983,"81":0.02983,"83":0.01657,"84":0.01326,"85":0.00994,"86":0.10439,"87":0.07457,"88":0.02486,"89":0.02154,"90":0.02983,"91":0.08119,"92":0.13919,"93":0.05634,"94":0.11599,"95":0.19387,"96":5.77465,"97":0.00994,"98":0.00331,_:"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 39 41 42 43 44 45 46 48 52 54 59 60 67 99"},F:{"36":0.00829,"53":0.00331,"64":0.00829,"65":0.01491,"66":0.00829,"76":0.00166,"77":0.00166,"79":0.05302,"80":0.01657,"81":0.11599,"82":0.18558,_:"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 67 68 69 70 71 72 73 74 75 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00166,"11":0.00166,"12":0.00331,"13":0.00994,"14":0.05302,"15":0.02651,_:"0 5 6 7 9 10 3.1 3.2 6.1 9.1","5.1":0.01491,"7.1":0.00331,"10.1":0.00497,"11.1":0.00497,"12.1":0.00994,"13.1":0.02983,"14.1":0.08782,"15.1":0.07291,"15.2":0.00994},B:{"12":0.01988,"13":0.00331,"14":0.00166,"15":0.00497,"16":0.00331,"17":0.00497,"18":0.0348,"84":0.00663,"85":0.00331,"88":0.00994,"89":0.00497,"90":0.00331,"91":0.00497,"92":0.0116,"93":0.00829,"94":0.01491,"95":0.04474,"96":0.8401,_:"79 80 81 83 86 87"},G:{"8":0.00063,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0.00126,"6.0-6.1":0.00189,"7.0-7.1":0.0063,"8.1-8.4":0.00063,"9.0-9.2":0.00189,"9.3":0.03465,"10.0-10.2":0.00315,"10.3":0.05229,"11.0-11.2":0.11718,"11.3-11.4":0.03402,"12.0-12.1":0.04851,"12.2-12.5":0.73711,"13.0-13.1":0.06363,"13.2":0.03276,"13.3":0.15057,"13.4-13.7":0.31311,"14.0-14.4":1.41878,"14.5-14.8":1.51202,"15.0-15.1":1.63677,"15.2":0.12915},P:{"4":0.12529,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.04464,"8.2":0.02052,"9.2":0.03348,"10.1":0.01026,"11.1-11.2":0.04464,"12.0":0.01116,"13.0":0.04464,"14.0":0.10043,"15.0":0.22318},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00055,"4.2-4.3":0.00166,"4.4":0,"4.4.3-4.4.4":0.0395},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01231,"9":0.00308,"10":0.00615,"11":0.06462,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.01668},O:{"0":1.36809},H:{"0":35.8712},L:{"0":42.0788},S:{"2.5":0.01668},R:{_:"0"},M:{"0":0.28363},Q:{"10.4":0.00834}}; 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 93445c2fb235a7..a71f93a5e95896 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:{"17":0.00434,"52":0.03039,"57":0.00434,"72":0.00434,"78":0.02171,"79":0.01302,"81":0.00868,"82":0.00868,"85":0.00868,"87":0.01736,"88":0.03039,"89":0.04775,"90":0.75968,"91":0.06946,"92":0.01302,"93":1.96213,"94":1.94911,"95":0.00868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 83 84 86 96 3.5 3.6"},D:{"11":0.02171,"26":0.00434,"38":0.01736,"42":0.03907,"49":0.05643,"53":0.00868,"56":0.01302,"58":0.00434,"63":0.00868,"65":0.09116,"66":0.00868,"67":0.00434,"69":0.01736,"70":0.01736,"71":0.01302,"72":0.00434,"73":0.00868,"74":0.00868,"75":0.08682,"76":0.03039,"77":0.01302,"78":0.00434,"79":0.06077,"80":0.03473,"81":0.04341,"83":0.01736,"84":0.01302,"85":0.02605,"86":0.02605,"87":0.11287,"88":0.06077,"89":0.06077,"90":0.06077,"91":0.15628,"92":0.23876,"93":0.19535,"94":0.66851,"95":16.85176,"96":10.26647,"97":0.00434,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 64 68 98 99"},F:{"72":0.00434,"77":0.00868,"78":0.00868,"79":0.00868,"80":0.93766,"81":0.42108,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00868,"14":0.00868,"15":0.00868,"16":0.01302,"17":0.00868,"18":0.04341,"84":0.02605,"85":0.00434,"89":0.01736,"90":0.02171,"91":0.0738,"92":0.04341,"93":0.09984,"94":0.05643,"95":1.82756,"96":0.71627,_:"13 79 80 81 83 86 87 88"},E:{"4":0,"13":0.12589,"14":0.0955,"15":0.10853,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06512,"11.1":0.00434,"12.1":0.01736,"13.1":0.07814,"14.1":0.27348,"15.1":0.19535},G:{"8":0,"3.2":0.00099,"4.0-4.1":0.00099,"4.2-4.3":0,"5.0-5.1":0.00345,"6.0-6.1":0.00148,"7.0-7.1":0.01431,"8.1-8.4":0,"9.0-9.2":0.00049,"9.3":0.03307,"10.0-10.2":0.00247,"10.3":0.02073,"11.0-11.2":0.02566,"11.3-11.4":0.0074,"12.0-12.1":0.00592,"12.2-12.5":0.40024,"13.0-13.1":0.02665,"13.2":0.00839,"13.3":0.07798,"13.4-13.7":0.08587,"14.0-14.4":0.41505,"14.5-14.8":1.75938,"15.0-15.1":2.04414},P:{"4":0.34106,"5.0-5.4":0.01055,"6.2-6.4":0.01034,"7.2-7.4":0.32039,"8.2":0.10275,"9.2":0.11369,"10.1":0.02067,"11.1-11.2":0.29972,"12.0":0.07235,"13.0":0.21704,"14.0":0.3824,"15.0":2.02568},I:{"0":0,"3":0,"4":0.00226,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00226,"4.2-4.3":0.00981,"4.4":0,"4.4.3-4.4.4":0.08753},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13457,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":50.0225},S:{"2.5":0},R:{_:"0"},M:{"0":0.13016},Q:{"10.4":0},O:{"0":0.20372},H:{"0":0.43396}}; +module.exports={C:{"47":0.00423,"52":0.01694,"57":0.00423,"78":0.0127,"79":0.01694,"85":0.00423,"87":0.00847,"88":0.03811,"89":0.02117,"90":0.01694,"91":0.05504,"92":0.0127,"93":0.03387,"94":2.09583,"95":2.43878,"96":0.00423,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 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 86 97 3.5 3.6"},D:{"11":0.01694,"26":0.00423,"38":0.00847,"42":0.0127,"49":0.04234,"63":0.00423,"65":0.04657,"66":0.00423,"69":0.00847,"70":0.0254,"71":0.00847,"72":0.00423,"73":0.00423,"74":0.0127,"75":0.03387,"76":0.03387,"77":0.00423,"78":0.0127,"79":0.08891,"80":0.03811,"81":0.02117,"83":0.01694,"84":0.0127,"85":0.0254,"86":0.02117,"87":0.13125,"88":0.04657,"89":0.0254,"90":0.04657,"91":0.08891,"92":0.1863,"93":0.05928,"94":0.26674,"95":0.30485,"96":24.63341,"97":0.00847,"98":0.00847,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 67 68 99"},F:{"28":0.00423,"77":0.00423,"80":0.00847,"81":0.72401,"82":0.64357,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.08891,"14":0.05504,"15":0.05504,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.08045,"10.1":0.00847,"12.1":0.00847,"13.1":0.06351,"14.1":0.30485,"15.1":0.29215,"15.2":0.05081},B:{"12":0.00847,"16":0.00847,"17":0.00423,"18":0.0254,"84":0.01694,"85":0.00423,"89":0.00847,"90":0.00847,"91":0.03811,"92":0.02117,"93":0.00423,"94":0.01694,"95":0.06774,"96":2.21862,_:"13 14 15 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0.00107,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00376,"6.0-6.1":0,"7.0-7.1":0.03811,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06226,"10.0-10.2":0.00107,"10.3":0.0263,"11.0-11.2":0.0424,"11.3-11.4":0.0102,"12.0-12.1":0.00698,"12.2-12.5":0.38965,"13.0-13.1":0.00966,"13.2":0.00483,"13.3":0.05904,"13.4-13.7":0.07568,"14.0-14.4":0.41863,"14.5-14.8":1.34338,"15.0-15.1":2.59229,"15.2":0.27801},P:{"4":0.33861,"5.0-5.4":0.01033,"6.2-6.4":0.03078,"7.2-7.4":0.37965,"8.2":0.02052,"9.2":0.07183,"10.1":0.01026,"11.1-11.2":0.35913,"12.0":0.06156,"13.0":0.24626,"14.0":0.35913,"15.0":0.60539},I:{"0":0,"3":0,"4":0.0005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.001,"4.2-4.3":0.00597,"4.4":0,"4.4.3-4.4.4":0.06174},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01339,"10":0.00446,"11":0.14727,_:"6 7 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.15571},H:{"0":0.41495},L:{"0":53.2692},S:{"2.5":0},R:{_:"0"},M:{"0":0.16724},Q:{"10.4":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 0a78608acf0a6e..301a3f080dce33 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:{"52":0.01261,"59":0.01892,"78":0.06307,"88":0.01261,"89":0.01261,"91":0.03784,"92":0.01892,"93":2.33359,"94":6.43314,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 95 96 3.5 3.6"},D:{"38":0.00631,"49":0.02523,"59":0.00631,"63":0.00631,"64":0.01261,"65":0.01261,"66":0.07568,"67":0.01892,"69":0.07568,"70":0.01261,"72":0.01261,"73":0.01261,"75":0.02523,"76":0.58024,"77":0.01261,"78":0.00631,"79":0.05676,"80":0.03784,"81":0.01261,"83":0.01892,"84":0.03154,"85":4.31399,"86":0.03784,"87":0.19552,"88":0.05676,"89":0.04415,"90":0.09461,"91":0.1766,"92":1.19202,"93":0.97128,"94":3.00844,"95":17.13612,"96":8.60275,_:"4 5 6 7 8 9 10 11 12 13 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 60 61 62 68 71 74 97 98 99"},F:{"78":0.00631,"79":0.02523,"80":0.97759,"81":0.34058,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01261,"18":0.01892,"85":0.05676,"86":0.00631,"89":0.01261,"90":0.00631,"91":0.01892,"92":0.01892,"93":0.01892,"94":0.18921,"95":3.54453,"96":1.23617,_:"12 13 14 15 16 79 80 81 83 84 87 88"},E:{"4":0,"12":0.01261,"13":0.0883,"14":0.78207,"15":1.36862,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01892,"11.1":0.05046,"12.1":0.10722,"13.1":0.55502,"14.1":4.76809,"15.1":1.88579},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01361,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05673,"10.0-10.2":0.00227,"10.3":0.10664,"11.0-11.2":0.02042,"11.3-11.4":0.04992,"12.0-12.1":0.02042,"12.2-12.5":0.47195,"13.0-13.1":0.01815,"13.2":0.01135,"13.3":0.09303,"13.4-13.7":0.24051,"14.0-14.4":1.25022,"14.5-14.8":12.57029,"15.0-15.1":7.75319},P:{"4":0.0107,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.03282,"8.2":0.10275,"9.2":0.0227,"10.1":0.02067,"11.1-11.2":0.09845,"12.0":0.0227,"13.0":0.02141,"14.0":0.06422,"15.0":2.14063},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.00138,"4.4":0,"4.4.3-4.4.4":0.00785},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23967,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":11.84809},S:{"2.5":0},R:{_:"0"},M:{"0":0.16619},Q:{"10.4":0},O:{"0":0.02216},H:{"0":0.13636}}; +module.exports={C:{"52":0.01138,"59":0.01707,"78":0.04552,"88":0.01707,"89":0.00569,"91":0.05121,"93":0.01138,"94":4.06835,"95":4.99013,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 96 97 3.5 3.6"},D:{"38":0.00569,"49":0.03414,"63":0.00569,"64":0.02276,"65":0.01138,"66":0.07966,"67":0.01707,"69":0.13656,"70":0.02845,"72":0.02276,"75":0.01707,"76":0.26174,"77":0.01138,"78":0.01138,"79":0.07966,"80":0.04552,"81":0.01707,"83":0.01707,"84":0.02845,"85":4.44958,"86":0.02845,"87":0.09673,"88":0.03414,"89":0.04552,"90":0.06259,"91":0.10242,"92":0.16501,"93":0.36985,"94":1.138,"95":1.37698,"96":22.97622,"97":0.00569,_:"4 5 6 7 8 9 10 11 12 13 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 68 71 73 74 98 99"},F:{"80":0.02276,"81":0.76246,"82":0.49503,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.01138,"13":0.08535,"14":0.63728,"15":0.63728,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01138,"11.1":0.05121,"12.1":0.09673,"13.1":0.43244,"14.1":3.28882,"15.1":2.97018,"15.2":0.3414},B:{"17":0.01707,"18":0.01138,"83":0.00569,"85":0.03983,"86":0.01138,"89":0.01138,"90":0.00569,"91":0.00569,"92":0.01138,"93":0.01138,"94":0.03414,"95":0.16501,"96":4.47234,_:"12 13 14 15 16 79 80 81 84 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01562,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05986,"10.0-10.2":0.0026,"10.3":0.11712,"11.0-11.2":0.01562,"11.3-11.4":0.05726,"12.0-12.1":0.02863,"12.2-12.5":0.58041,"13.0-13.1":0.02082,"13.2":0.01301,"13.3":0.08068,"13.4-13.7":0.24466,"14.0-14.4":1.20767,"14.5-14.8":8.85191,"15.0-15.1":13.77368,"15.2":0.93699},P:{"4":0.04218,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.02168,"8.2":0.02052,"9.2":0.03253,"10.1":0.01026,"11.1-11.2":0.03163,"12.0":0.01116,"13.0":0.03163,"14.0":0.04218,"15.0":0.21088},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.00281,"4.4":0,"4.4.3-4.4.4":0.00787},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24467,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.03017},H:{"0":0.14282},L:{"0":14.16085},S:{"2.5":0},R:{_:"0"},M:{"0":0.21119},Q:{"10.4":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 b8af0b7f52d723..3630931d07b056 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:{"47":0.00454,"52":0.00908,"71":0.00454,"72":0.00454,"76":0.00681,"78":0.01136,"87":0.15897,"88":0.00908,"89":0.01363,"90":0.00454,"91":0.01817,"92":0.00908,"93":0.14989,"94":1.00832,"95":0.06813,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 73 74 75 77 79 80 81 82 83 84 85 86 96 3.5 3.6"},D:{"49":0.00681,"53":0.00227,"60":0.00227,"63":0.00908,"64":0.00454,"65":0.01136,"69":0.00454,"70":0.00454,"71":0.00681,"72":0.00227,"73":0.00681,"74":0.00227,"75":0.00454,"76":0.00681,"77":0.00227,"78":0.00908,"79":0.03407,"80":0.00908,"81":0.00681,"83":0.0159,"84":0.03861,"85":0.00908,"86":0.02044,"87":0.09311,"88":0.01363,"89":0.49962,"90":0.0159,"91":0.03407,"92":0.08176,"93":0.11582,"94":0.3679,"95":9.86068,"96":6.11353,"97":0.02952,"98":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 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 61 62 66 67 68 99"},F:{"77":0.00227,"79":0.00681,"80":0.31794,"81":0.13172,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00454,"16":0.00227,"17":0.00227,"18":0.00908,"81":0.01363,"84":0.00227,"89":0.14307,"92":0.00681,"93":0.00908,"94":0.01363,"95":0.79258,"96":0.32475,_:"13 14 15 79 80 83 85 86 87 88 90 91"},E:{"4":0,"13":0.00681,"14":0.02952,"15":0.06813,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01363,"11.1":0.00681,"12.1":0.00908,"13.1":0.02952,"14.1":0.15443,"15.1":0.08403},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00773,"8.1-8.4":0.00091,"9.0-9.2":0.00364,"9.3":0.03365,"10.0-10.2":0.00091,"10.3":0.05366,"11.0-11.2":0.08458,"11.3-11.4":0.01455,"12.0-12.1":0.0141,"12.2-12.5":0.52977,"13.0-13.1":0.01137,"13.2":0.00591,"13.3":0.02956,"13.4-13.7":0.09277,"14.0-14.4":0.42654,"14.5-14.8":1.87216,"15.0-15.1":1.36285},P:{"4":0.18845,"5.0-5.4":0.01055,"6.2-6.4":0.03082,"7.2-7.4":0.07328,"8.2":0.10275,"9.2":0.01047,"10.1":0.02055,"11.1-11.2":0.03141,"12.0":0.02094,"13.0":0.09422,"14.0":0.06282,"15.0":0.62816},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00228,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.08439},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02044,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":70.31843},S:{"2.5":0},R:{_:"0"},M:{"0":0.20868},Q:{"10.4":0},O:{"0":1.26756},H:{"0":0.83417}}; +module.exports={C:{"47":0.00238,"52":0.00713,"71":0.00475,"72":0.00475,"75":0.00238,"76":0.0095,"78":0.02613,"87":0.04275,"88":0.00475,"89":0.01188,"90":0.00238,"91":0.01663,"92":0.00713,"93":0.00713,"94":0.3705,"95":2.755,"96":0.05225,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 73 74 77 79 80 81 82 83 84 85 86 97 3.5 3.6"},D:{"32":0.00238,"49":0.00475,"60":0.00475,"63":0.00713,"64":0.00238,"65":0.01188,"67":0.00238,"69":0.00475,"70":0.00238,"71":0.00475,"73":0.00475,"74":0.00238,"75":0.00475,"76":0.00475,"78":0.00475,"79":0.02375,"80":0.0095,"81":0.0095,"83":0.01188,"84":0.04513,"85":0.00713,"86":0.02138,"87":0.05225,"88":0.019,"89":0.12825,"90":0.01425,"91":0.02613,"92":0.04513,"93":0.06175,"94":0.09975,"95":0.21613,"96":15.333,"97":0.04038,"98":0.01663,_:"4 5 6 7 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 48 50 51 52 53 54 55 56 57 58 59 61 62 66 68 72 77 99"},F:{"36":0.00238,"80":0.00238,"81":0.15675,"82":0.29213,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00713,"14":0.02613,"15":0.03563,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00475,"11.1":0.00475,"12.1":0.00713,"13.1":0.0285,"14.1":0.12113,"15.1":0.133,"15.2":0.02138},B:{"12":0.00475,"17":0.00238,"18":0.00713,"81":0.01425,"89":0.038,"92":0.00475,"93":0.00475,"94":0.00475,"95":0.01425,"96":1.07825,_:"13 14 15 16 79 80 83 84 85 86 87 88 90 91"},G:{"8":0.00045,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01398,"8.1-8.4":0.00045,"9.0-9.2":0.00225,"9.3":0.0248,"10.0-10.2":0.00225,"10.3":0.04599,"11.0-11.2":0.03787,"11.3-11.4":0.01398,"12.0-12.1":0.01758,"12.2-12.5":0.49505,"13.0-13.1":0.01308,"13.2":0.00496,"13.3":0.03201,"13.4-13.7":0.0798,"14.0-14.4":0.28359,"14.5-14.8":1.34402,"15.0-15.1":1.93014,"15.2":0.16411},P:{"4":0.14923,"5.0-5.4":0.01033,"6.2-6.4":0.07067,"7.2-7.4":0.07462,"8.2":0.15525,"9.2":0.01066,"10.1":0.01035,"11.1-11.2":0.02132,"12.0":0.01066,"13.0":0.06396,"14.0":0.0533,"15.0":0.12791},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.00458,"4.4":0,"4.4.3-4.4.4":0.06253},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01663,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":1.23525},H:{"0":0.85904},L:{"0":70.23563},S:{"2.5":0},R:{_:"0"},M:{"0":0.09913},Q:{"10.4":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 dedd370887165f..40e6aae84fff47 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:{"94":0.1394,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 3.5 3.6"},D:{"44":0.0102,"81":0.0918,"83":0.0476,"84":0.0102,"86":0.0102,"89":0.1632,"90":0.0102,"92":0.0102,"93":0.0102,"94":0.221,"95":8.1158,"96":3.196,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 85 87 88 91 97 98 99"},F:{"81":0.0102,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 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.1292,"14":0.034,"18":0.4658,"84":0.0238,"88":0.0476,"89":0.0238,"91":0.0238,"94":0.0102,"95":1.1152,"96":0.8126,_:"13 15 16 17 79 80 81 83 85 86 87 90 92 93"},E:{"4":0,"11":0.0238,"13":0.3366,"14":12.5596,"15":0.0918,_:"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","14.1":0.5576,"15.1":0.0102},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"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.01028,"12.0-12.1":0,"12.2-12.5":0.18284,"13.0-13.1":0,"13.2":0,"13.3":0.0202,"13.4-13.7":0.14245,"14.0-14.4":0.49751,"14.5-14.8":2.20334,"15.0-15.1":0.48758},P:{"4":0.51833,"5.0-5.4":0.01055,"6.2-6.4":0.03082,"7.2-7.4":0.04996,"8.2":0.10275,"9.2":0.1399,"10.1":0.02055,"11.1-11.2":0.45968,"12.0":0.04065,"13.0":0.15989,"14.0":0.07994,"15.0":0.51963},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":2.499,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":59.2808},S:{"2.5":0},R:{_:"0"},M:{"0":0.1518},Q:{"10.4":0},O:{"0":1.7292},H:{"0":2.73682}}; +module.exports={C:{"73":0.01046,"75":0.01046,"83":0.01046,"89":0.01046,"94":0.09764,"95":1.33901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 76 77 78 79 80 81 82 84 85 86 87 88 90 91 92 93 96 97 3.5 3.6"},D:{"77":0.02092,"79":0.01046,"81":0.12902,"83":0.01046,"89":0.02092,"90":1.03564,"94":0.12902,"95":0.02092,"96":7.33665,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 80 84 85 86 87 88 91 92 93 97 98 99"},F:{"81":0.03138,"82":0.06625,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.32778,"14":16.06461,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 13.1 15.2","11.1":0.04184,"14.1":1.83765,"15.1":0.01046},B:{"14":0.01046,"15":0.02092,"84":0.03138,"89":0.01046,"92":0.01046,"95":0.16389,"96":1.8516,_:"12 13 16 17 18 79 80 81 83 85 86 87 88 90 91 93 94"},G:{"8":0,"3.2":0,"4.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.02768,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.30377,"13.0-13.1":0,"13.2":0.02768,"13.3":0.01846,"13.4-13.7":0.04614,"14.0-14.4":0.40502,"14.5-14.8":1.2425,"15.0-15.1":0.36811,"15.2":0.05512},P:{"4":0.0101,"5.0-5.4":0.01033,"6.2-6.4":0.07067,"7.2-7.4":1.03484,"8.2":0.15525,"9.2":0.02019,"10.1":0.01035,"11.1-11.2":0.06058,"12.0":0.03029,"13.0":0.05048,"14.0":0.20193,"15.0":0.25241},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.04394,"11":0.15134,_:"6 7 8 9 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.54709},H:{"0":2.02864},L:{"0":61.1584},S:{"2.5":0},R:{_:"0"},M:{"0":0.03257},Q:{"10.4":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 feb3951c16b912..a50437637726ce 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 3.5 3.6"},D:{"81":29.41485,"85":11.76735,"95":23.52765,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"94":5.88015,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96"},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"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":5.884,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0},P:{"4":0.07324,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.03404,"8.2":0.10275,"9.2":0.0227,"10.1":0.02067,"11.1-11.2":0.03404,"12.0":0.0227,"13.0":0.05674,"14.0":0.11348,"15.0":0.51064},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.02658,"11":0.22582},L:{"0":23.536},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 3.5 3.6"},D:{"81":13.95194,"96":39.53258,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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.2","15.1":9.2992},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"},G:{"8":0,"3.2":0,"4.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":4.65125,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":18.605,"15.2":0},P:{"4":0.12529,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.04464,"8.2":0.02052,"9.2":0.03348,"10.1":0.01026,"11.1-11.2":0.04464,"12.0":0.01116,"13.0":0.04464,"14.0":0.10043,"15.0":0.22318},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.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":13.95375},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 5c0eeca7b4927d..ddac8bc08e67df 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.02759,"34":0.00552,"52":0.0331,"58":0.00552,"59":0.01103,"60":0.01103,"72":0.00552,"78":0.09379,"85":0.00552,"86":0.01655,"88":0.01655,"89":0.01655,"90":0.01655,"91":0.04414,"92":0.02759,"93":0.44136,"94":2.30611,"95":0.00552,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 87 96 3.5 3.6"},D:{"20":0.03862,"34":0.01103,"38":0.0662,"49":0.12137,"53":0.02759,"57":0.01103,"58":0.01103,"61":0.01655,"63":0.02207,"65":0.02207,"67":0.02207,"68":0.01655,"69":0.03862,"70":0.02759,"71":0.02207,"72":0.01103,"73":0.02759,"74":0.02207,"75":0.02759,"76":0.05517,"77":0.01655,"78":0.01655,"79":0.24827,"80":0.0331,"81":0.03862,"83":0.02759,"84":0.02759,"85":0.01655,"86":0.03862,"87":0.14896,"88":0.04414,"89":0.13793,"90":0.29792,"91":0.17103,"92":0.73928,"93":0.76686,"94":3.3433,"95":18.76332,"96":9.9306,"97":0.01103,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 59 60 62 64 66 98 99"},F:{"46":0.03862,"79":0.01103,"80":0.35861,"81":0.13793,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0662,"85":0.00552,"89":0.01103,"90":0.01103,"92":0.02759,"93":0.01103,"94":0.14344,"95":3.80673,"96":1.45097,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 91"},E:{"4":0,"11":0.00552,"12":0.01103,"13":0.14344,"14":0.63997,"15":1.22477,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02759,"11.1":0.05517,"12.1":0.15999,"13.1":0.62342,"14.1":3.80121,"15.1":1.43442},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0018,"6.0-6.1":0.0378,"7.0-7.1":0.0216,"8.1-8.4":0.0378,"9.0-9.2":0.009,"9.3":0.2682,"10.0-10.2":0.0234,"10.3":0.297,"11.0-11.2":0.126,"11.3-11.4":0.0648,"12.0-12.1":0.054,"12.2-12.5":1.17901,"13.0-13.1":0.0234,"13.2":0.0162,"13.3":0.099,"13.4-13.7":0.3348,"14.0-14.4":0.87121,"14.5-14.8":8.85788,"15.0-15.1":5.67185},P:{"4":0.37802,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.0216,"11.1-11.2":0.0432,"12.0":0.0216,"13.0":0.16201,"14.0":0.16201,"15.0":2.33294},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00156,"4.2-4.3":0.00468,"4.4":0,"4.4.3-4.4.4":0.02963},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.94341,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":23.25875},S:{"2.5":0},R:{_:"0"},M:{"0":0.41692},Q:{"10.4":0.03138},O:{"0":0.26898},H:{"0":0.21645}}; +module.exports={C:{"11":0.02715,"34":0.01086,"52":0.038,"58":0.00543,"59":0.02172,"60":0.00543,"78":0.07601,"84":0.01086,"86":0.01086,"88":0.01629,"89":0.01086,"90":0.01629,"91":0.038,"92":0.01086,"93":0.02172,"94":0.90664,"95":1.72099,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 87 96 97 3.5 3.6"},D:{"20":0.02715,"34":0.01629,"38":0.09772,"49":0.11401,"53":0.03257,"57":0.02172,"58":0.00543,"59":0.01086,"61":0.02172,"63":0.02172,"65":0.02172,"66":0.038,"67":0.02172,"68":0.01629,"69":0.038,"70":0.02715,"71":0.01629,"72":0.01629,"73":0.02715,"74":0.02715,"75":0.02715,"76":0.06515,"77":0.01629,"78":0.01629,"79":0.2986,"80":0.03257,"81":0.02715,"83":0.02715,"84":0.02715,"85":0.01629,"86":0.04343,"87":0.13573,"88":0.03257,"89":0.05972,"90":0.20087,"91":0.12487,"92":0.55919,"93":0.36917,"94":1.34096,"95":1.33011,"96":29.09401,"97":0.02715,"98":0.00543,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 60 62 64 99"},F:{"36":0.00543,"46":0.05429,"80":0.01086,"81":0.29317,"82":0.26059,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00543,"12":0.01086,"13":0.09772,"14":0.55919,"15":0.60262,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02715,"11.1":0.05429,"12.1":0.14658,"13.1":0.5809,"14.1":2.64392,"15.1":2.70907,"15.2":0.26602},B:{"17":0.00543,"18":0.06515,"90":0.01086,"92":0.01086,"93":0.01086,"94":0.01086,"95":0.2063,"96":5.43443,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91"},G:{"8":0.0018,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.04322,"7.0-7.1":0.01621,"8.1-8.4":0.04322,"9.0-9.2":0.02521,"9.3":0.2755,"10.0-10.2":0.01981,"10.3":0.31692,"11.0-11.2":0.11884,"11.3-11.4":0.08463,"12.0-12.1":0.05582,"12.2-12.5":1.14342,"13.0-13.1":0.01981,"13.2":0.0126,"13.3":0.08103,"13.4-13.7":0.31872,"14.0-14.4":0.76168,"14.5-14.8":5.1571,"15.0-15.1":8.88087,"15.2":0.62483},P:{"4":0.49935,"5.0-5.4":0.01033,"6.2-6.4":0.07067,"7.2-7.4":1.21634,"8.2":0.15525,"9.2":0.01086,"10.1":0.02115,"11.1-11.2":0.03257,"12.0":0.01086,"13.0":0.14112,"14.0":0.16283,"15.0":0.28224},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.0029,"4.4":0,"4.4.3-4.4.4":0.01922},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.89036,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.33818},H:{"0":0.20335},L:{"0":24.17578},S:{"2.5":0},R:{_:"0"},M:{"0":0.42501},Q:{"10.4":0.03656}}; 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 a7502e264f5a18..9e2e27cbe70680 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.00629,"35":0.00944,"77":0.00944,"78":0.00629,"81":0.01258,"89":0.00315,"91":0.00629,"92":0.00315,"93":0.09121,"94":0.40571,"95":0.01887,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 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 82 83 84 85 86 87 88 90 96 3.5 3.6"},D:{"11":0.00944,"30":0.01573,"34":0.01887,"38":0.01573,"49":0.02831,"53":0.00315,"56":0.00315,"62":0.00629,"63":0.00944,"64":0.00629,"65":0.03145,"67":0.00629,"68":0.00629,"69":0.00944,"70":0.00944,"71":0.00315,"72":0.00629,"73":0.00629,"74":0.01887,"75":0.00629,"76":0.00944,"77":0.00629,"78":0.00629,"79":0.07548,"80":0.00944,"81":0.01258,"83":0.01887,"84":0.00944,"85":0.02202,"86":0.03774,"87":0.27362,"88":0.14782,"89":0.05032,"90":0.02202,"91":0.07863,"92":0.0975,"93":0.13838,"94":0.61642,"95":12.0485,"96":6.9536,"97":0.02516,"98":0.00315,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 66 99"},F:{"28":0.00629,"36":0.00629,"46":0.02202,"78":0.00315,"79":0.00315,"80":0.28305,"81":0.14782,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00315,"14":0.00315,"15":0.01258,"16":0.01573,"17":0.00629,"18":0.04089,"84":0.00944,"86":0.00944,"88":0.00629,"89":0.00944,"90":0.00315,"91":0.00629,"92":0.01573,"93":0.01258,"94":0.05347,"95":1.84926,"96":1.54734,_:"13 79 80 81 83 85 87"},E:{"4":0,"13":0.02202,"14":0.21072,"15":0.33966,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00315,"11.1":0.01258,"12.1":0.01258,"13.1":0.08806,"14.1":0.6919,"15.1":0.3145},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.00155,"7.0-7.1":0.06489,"8.1-8.4":0,"9.0-9.2":0.00618,"9.3":0.03708,"10.0-10.2":0.00155,"10.3":0.03863,"11.0-11.2":0.03399,"11.3-11.4":0.02009,"12.0-12.1":0.02318,"12.2-12.5":0.67828,"13.0-13.1":0.03554,"13.2":0.02936,"13.3":0.10043,"13.4-13.7":0.29819,"14.0-14.4":1.2005,"14.5-14.8":6.34088,"15.0-15.1":6.53092},P:{"4":0.29755,"5.0-5.4":0.01055,"6.2-6.4":0.03139,"7.2-7.4":0.17442,"8.2":0.01026,"9.2":0.0513,"10.1":0.04104,"11.1-11.2":0.24624,"12.0":0.09234,"13.0":0.30781,"14.0":0.34885,"15.0":2.95494},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.00386,"4.4":0,"4.4.3-4.4.4":0.04943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.17949,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":48.79626},S:{"2.5":0},R:{_:"0"},M:{"0":0.05484},Q:{"10.4":0.01371},O:{"0":0.71978},H:{"0":0.45429}}; +module.exports={C:{"52":0.00309,"78":0.01853,"86":0.00309,"88":0.00309,"89":0.00309,"91":0.00618,"93":0.00309,"94":0.13278,"95":0.29645,"96":0.00618,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 87 90 92 97 3.5 3.6"},D:{"11":0.00618,"38":0.01544,"39":0.00618,"49":0.02162,"55":0.00309,"56":0.00309,"62":0.00926,"63":0.00618,"64":0.00618,"65":0.0247,"67":0.00618,"68":0.00618,"69":0.00926,"70":0.00618,"71":0.00618,"73":0.00309,"74":0.00618,"75":0.00618,"76":0.00926,"77":0.00309,"78":0.00309,"79":0.07102,"80":0.00926,"81":0.01235,"83":0.01853,"84":0.01235,"85":0.01235,"86":0.03706,"87":0.14205,"88":0.11426,"89":0.05867,"90":0.01853,"91":0.07411,"92":0.11426,"93":0.14205,"94":0.23469,"95":0.52496,"96":18.17906,"97":0.03706,"98":0.00618,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 66 72 99"},F:{"28":0.00618,"46":0.01235,"80":0.00309,"81":0.21616,"82":0.22234,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01235,"14":0.13587,"15":0.16058,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00618,"11.1":0.00926,"12.1":0.01544,"13.1":0.0772,"14.1":0.52496,"15.1":0.49099,"15.2":0.05558},B:{"12":0.00309,"14":0.00309,"15":0.00618,"16":0.01235,"17":0.00618,"18":0.03088,"84":0.01853,"85":0.00309,"89":0.00309,"90":0.00309,"91":0.00618,"92":0.01544,"93":0.03397,"94":0.02162,"95":0.07411,"96":2.45805,_:"13 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00299,"6.0-6.1":0.00299,"7.0-7.1":0.03584,"8.1-8.4":0,"9.0-9.2":0.00299,"9.3":0.03435,"10.0-10.2":0.00149,"10.3":0.03733,"11.0-11.2":0.02389,"11.3-11.4":0.01643,"12.0-12.1":0.02389,"12.2-12.5":0.58391,"13.0-13.1":0.03285,"13.2":0.01941,"13.3":0.10155,"13.4-13.7":0.29569,"14.0-14.4":1.21113,"14.5-14.8":4.42337,"15.0-15.1":7.29812,"15.2":0.77954},P:{"4":0.23559,"5.0-5.4":0.04176,"6.2-6.4":0.06265,"7.2-7.4":0.18437,"8.2":0.02052,"9.2":0.05121,"10.1":0.01024,"11.1-11.2":0.32777,"12.0":0.11267,"13.0":0.36874,"14.0":0.39947,"15.0":0.85016},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.00259,"4.4":0,"4.4.3-4.4.4":0.03758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.9583,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.69801},H:{"0":0.41874},L:{"0":49.97632},S:{"2.5":0},R:{_:"0"},M:{"0":0.07602},Q:{"10.4":0.00691}}; 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 c6d7d9a5e4ccad..73a47f5ca0c738 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:{"3":0.10543,"52":0.00811,"57":0.01622,"73":0.04461,"78":0.02433,"88":0.02839,"89":0.00811,"90":0.0365,"91":0.02433,"92":0.01217,"93":0.21492,"94":1.20839,"95":0.00811,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 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 96","3.5":0.02839,"3.6":0.06894},D:{"11":0.03244,"31":0.00811,"38":0.01217,"39":0.00406,"47":0.02433,"49":0.07299,"53":0.00406,"56":0.00811,"57":0.00406,"58":0.00811,"62":0.00811,"63":0.00811,"65":0.00811,"66":0.00406,"67":0.01622,"68":0.00406,"69":0.00811,"70":0.01217,"71":0.00811,"72":0.00406,"73":0.02433,"75":0.03244,"76":0.02433,"77":0.01217,"78":0.00811,"79":0.13382,"80":0.02433,"81":0.02028,"83":0.01622,"84":0.01217,"85":0.00406,"86":0.05677,"87":0.06488,"88":0.06083,"89":0.04461,"90":0.04055,"91":0.26763,"92":0.37712,"93":0.1987,"94":0.8921,"95":15.74962,"96":10.10912,"97":0.01217,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 55 59 60 61 64 74 98 99"},F:{"78":0.00406,"79":0.01622,"80":0.98537,"81":0.42578,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00406,"15":0.00406,"16":0.00811,"17":0.00811,"18":0.02433,"84":0.01217,"89":0.01622,"90":0.00406,"91":0.01217,"92":0.02028,"93":0.01622,"94":0.06894,"95":2.51816,"96":1.03808,_:"12 13 79 80 81 83 85 86 87 88"},E:{"4":0,"12":0.05677,"13":0.02028,"14":0.19059,"15":0.47444,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.12976,"10.1":0.00406,"11.1":0.01217,"12.1":0.04461,"13.1":0.18653,"14.1":0.9286,"15.1":0.55148},G:{"8":0,"3.2":0.0267,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00566,"7.0-7.1":0.0356,"8.1-8.4":0,"9.0-9.2":0.00162,"9.3":0.07605,"10.0-10.2":0.00405,"10.3":0.05501,"11.0-11.2":0.01537,"11.3-11.4":0.01699,"12.0-12.1":0.00728,"12.2-12.5":0.33816,"13.0-13.1":0.01537,"13.2":0.01456,"13.3":0.02993,"13.4-13.7":0.13106,"14.0-14.4":0.54203,"14.5-14.8":3.54183,"15.0-15.1":3.22793},P:{"4":0.23576,"5.0-5.4":0.01095,"6.2-6.4":0.03139,"7.2-7.4":0.41002,"8.2":0.01026,"9.2":0.041,"10.1":0.11275,"11.1-11.2":0.28701,"12.0":0.1025,"13.0":0.22551,"14.0":0.31776,"15.0":2.95212},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01189,"4.4":0,"4.4.3-4.4.4":0.08323},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27169,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":47.34424},S:{"2.5":0},R:{_:"0"},M:{"0":0.27347},Q:{"10.4":0},O:{"0":0.12485},H:{"0":0.22513}}; +module.exports={C:{"4":0.01569,"52":0.00784,"57":0.00784,"73":0.05099,"78":0.01177,"88":0.1255,"89":0.00392,"90":0.04314,"91":0.05491,"93":0.00784,"94":0.47064,"95":0.92559,"96":0.00784,_:"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 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 92 97 3.5 3.6"},D:{"38":0.01177,"47":0.01961,"49":0.09021,"58":0.00784,"62":0.00392,"65":0.00784,"67":0.01569,"68":0.00392,"69":0.01177,"70":0.00784,"72":0.01569,"73":0.0353,"75":0.02353,"76":0.03138,"77":0.01177,"78":0.01177,"79":0.14511,"80":0.04314,"81":0.02745,"83":0.01569,"84":0.01177,"85":0.00784,"86":0.04314,"87":0.09413,"88":0.03138,"89":0.0353,"90":0.03922,"91":0.10982,"92":0.2314,"93":0.14511,"94":0.30592,"95":0.5177,"96":23.55945,"97":0.00784,"98":0.00784,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 59 60 61 63 64 66 71 74 99"},F:{"79":0.00784,"80":0.02353,"81":1.02364,"82":0.61968,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.00784,"13":0.02353,"14":0.29023,"15":0.22355,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.07844,"11.1":0.02353,"12.1":0.03138,"13.1":0.20002,"14.1":0.80401,"15.1":0.76087,"15.2":0.10589},B:{"15":0.00392,"16":0.01177,"17":0.01569,"18":0.01961,"84":0.00392,"89":0.01177,"91":0.00784,"92":0.01961,"93":0.00784,"94":0.0353,"95":0.0706,"96":3.19643,_:"12 13 14 79 80 81 83 85 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00962,"7.0-7.1":0.02886,"8.1-8.4":0.00107,"9.0-9.2":0,"9.3":0.06199,"10.0-10.2":0,"10.3":0.07055,"11.0-11.2":0.0139,"11.3-11.4":0.00962,"12.0-12.1":0.00641,"12.2-12.5":0.50878,"13.0-13.1":0.02779,"13.2":0.00962,"13.3":0.02886,"13.4-13.7":0.12613,"14.0-14.4":0.5323,"14.5-14.8":3.03772,"15.0-15.1":5.84991,"15.2":0.35593},P:{"4":0.21395,"5.0-5.4":0.01096,"6.2-6.4":0.06265,"7.2-7.4":0.38715,"8.2":0.02052,"9.2":0.06113,"10.1":0.03056,"11.1-11.2":0.30564,"12.0":0.0815,"13.0":0.19357,"14.0":0.24451,"15.0":0.78449},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00558,"4.4":0,"4.4.3-4.4.4":0.04912},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36475,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.20057},H:{"0":0.21866},L:{"0":47.4239},S:{"2.5":0},R:{_:"0"},M:{"0":0.29174},Q:{"10.4":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 5ef18608fe7ba1..c7a03d699e2222 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.01182,"73":0.00591,"76":0.01182,"78":0.01773,"84":0.01182,"88":0.01182,"90":0.01773,"91":0.01773,"92":0.01773,"93":0.14773,"94":0.97499,"95":0.00591,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 77 79 80 81 82 83 85 86 87 89 96 3.5 3.6"},D:{"22":0.00591,"38":0.02364,"47":0.00591,"49":0.04136,"53":0.01182,"65":0.00591,"69":0.01182,"70":0.00591,"72":0.00591,"73":0.00591,"74":0.01182,"75":0.01182,"76":0.01182,"77":0.01182,"78":0.01182,"79":0.10045,"80":0.04136,"81":0.11818,"83":0.04727,"84":0.02364,"85":0.02955,"86":0.04727,"87":0.15363,"88":0.04727,"89":0.05318,"90":0.05318,"91":0.37818,"92":0.31318,"93":0.25409,"94":0.93362,"95":27.73685,"96":18.79653,"97":0.01182,_:"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 55 56 57 58 59 60 61 62 63 64 66 67 68 71 98 99"},F:{"78":0.01182,"79":0.00591,"80":1.64861,"81":0.76226,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02364,"89":0.01182,"91":0.00591,"92":0.01773,"93":0.01182,"94":0.03545,"95":1.93815,"96":0.79181,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90"},E:{"4":0,"13":0.01182,"14":0.08864,"15":0.21272,_:"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.00591,"12.1":0.01182,"13.1":0.07091,"14.1":0.28363,"15.1":0.26},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.003,"6.0-6.1":0.00218,"7.0-7.1":0.00246,"8.1-8.4":0.00055,"9.0-9.2":0.00055,"9.3":0.01283,"10.0-10.2":0.00218,"10.3":0.01911,"11.0-11.2":0.006,"11.3-11.4":0.00573,"12.0-12.1":0.01119,"12.2-12.5":0.15612,"13.0-13.1":0.00764,"13.2":0.003,"13.3":0.01992,"13.4-13.7":0.0625,"14.0-14.4":0.22817,"14.5-14.8":1.10021,"15.0-15.1":1.08601},P:{"4":0.10899,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.07629,"8.2":0.01026,"9.2":0.0109,"10.1":0.04074,"11.1-11.2":0.08719,"12.0":0.0109,"13.0":0.0654,"14.0":0.10899,"15.0":0.65396},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00326,"4.2-4.3":0.00435,"4.4":0,"4.4.3-4.4.4":0.05378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":38.52656},S:{"2.5":0},R:{_:"0"},M:{"0":0.07366},Q:{"10.4":0},O:{"0":0.02864},H:{"0":0.15109}}; +module.exports={C:{"52":0.0115,"73":0.00575,"76":0.03451,"78":0.0115,"84":0.0115,"88":0.00575,"89":0.00575,"90":0.01725,"91":0.0115,"92":0.00575,"93":0.0115,"94":0.38532,"95":0.77063,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 77 79 80 81 82 83 85 86 87 96 97 3.5 3.6"},D:{"22":0.0115,"38":0.04026,"49":0.04026,"53":0.0115,"55":0.00575,"60":0.01725,"65":0.00575,"67":0.0115,"69":0.0115,"70":0.00575,"72":0.00575,"73":0.00575,"74":0.0115,"75":0.0115,"76":0.0115,"77":0.0115,"78":0.0115,"79":0.12652,"80":0.04026,"81":0.10927,"83":0.03451,"84":0.023,"85":0.023,"86":0.04601,"87":0.14378,"88":0.04026,"89":0.04601,"90":0.04601,"91":0.3048,"92":0.2588,"93":0.23004,"94":0.41407,"95":0.5751,"96":43.63284,"97":0.023,_:"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 56 57 58 59 61 62 63 64 66 68 71 98 99"},F:{"78":0.00575,"80":0.023,"81":1.52402,"82":0.90866,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.0115,"14":0.06326,"15":0.13227,_:"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.00575,"12.1":0.0115,"13.1":0.05751,"14.1":0.20129,"15.1":0.2933,"15.2":0.04026},B:{"18":0.02876,"88":0.00575,"89":0.00575,"92":0.0115,"93":0.00575,"94":0.0115,"95":0.04601,"96":2.55344,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 90 91"},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.00118,"7.0-7.1":0.00323,"8.1-8.4":0,"9.0-9.2":0.00118,"9.3":0.01265,"10.0-10.2":0.00206,"10.3":0.02088,"11.0-11.2":0.00441,"11.3-11.4":0.00647,"12.0-12.1":0.01706,"12.2-12.5":0.17498,"13.0-13.1":0.00823,"13.2":0.00353,"13.3":0.01941,"13.4-13.7":0.05499,"14.0-14.4":0.21851,"14.5-14.8":0.84668,"15.0-15.1":1.3984,"15.2":0.14028},P:{"4":0.15746,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.08398,"8.2":0.02052,"9.2":0.021,"10.1":0.03062,"11.1-11.2":0.09448,"12.0":0.021,"13.0":0.07348,"14.0":0.12597,"15.0":0.20995},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.00314,"4.4":0,"4.4.3-4.4.4":0.04242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16103,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.02974},H:{"0":0.15688},L:{"0":41.18897},S:{"2.5":0},R:{_:"0"},M:{"0":0.08923},Q:{"10.4":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 1655acfdad84ae..ff08ffec52950f 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:{"12":0.02843,"38":0.02437,"47":0.04468,"48":0.01219,"52":0.01625,"56":0.00406,"60":0.11374,"63":0.00406,"68":0.24778,"76":0.00812,"78":0.39401,"81":0.00406,"82":0.02843,"84":0.00812,"88":0.01625,"89":0.0325,"90":0.00812,"91":0.07718,"92":0.05281,"93":0.6418,"94":3.60706,_:"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 39 40 41 42 43 44 45 46 49 50 51 53 54 55 57 58 59 61 62 64 65 66 67 69 70 71 72 73 74 75 77 79 80 83 85 86 87 95 96 3.5 3.6"},D:{"49":0.21529,"61":0.85708,"63":0.00812,"65":0.00406,"67":0.01625,"71":0.00812,"75":0.0325,"79":0.03656,"80":0.02031,"83":0.01219,"84":0.00406,"85":0.01219,"86":0.00406,"87":0.36152,"88":0.01219,"89":0.0325,"90":0.06499,"91":0.13811,"92":0.36152,"93":0.18685,"94":1.05206,"95":10.3256,"96":6.88915,"97":0.00812,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 66 68 69 70 72 73 74 76 77 78 81 98 99"},F:{"79":0.05281,"80":0.30059,"81":0.09343,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.00812,"16":0.00406,"17":0.00812,"18":0.02437,"90":0.02031,"91":0.09749,"92":0.0325,"93":0.06093,"94":0.06499,"95":2.34784,"96":0.95863,_:"13 14 15 79 80 81 83 84 85 86 87 88 89"},E:{"4":0,"11":0.00406,"12":0.00812,"13":0.15436,"14":1.02769,"15":0.71085,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00406,"10.1":0.00812,"11.1":0.02843,"12.1":0.30871,"13.1":0.38589,"14.1":3.37146,"15.1":1.44201},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01725,"6.0-6.1":0.09115,"7.0-7.1":0.25868,"8.1-8.4":0.00493,"9.0-9.2":0.00493,"9.3":0.09115,"10.0-10.2":0,"10.3":0.11332,"11.0-11.2":0.09854,"11.3-11.4":0.05913,"12.0-12.1":0.04188,"12.2-12.5":1.21208,"13.0-13.1":0.02956,"13.2":0.00246,"13.3":0.23404,"13.4-13.7":0.38924,"14.0-14.4":2.3675,"14.5-14.8":10.45049,"15.0-15.1":9.1645},P:{"4":0.06213,"5.0-5.4":0.01057,"6.2-6.4":0.04066,"7.2-7.4":0.13462,"8.2":0.02033,"9.2":0.04142,"10.1":0.01036,"11.1-11.2":0.13462,"12.0":0.03107,"13.0":0.14498,"14.0":0.20712,"15.0":3.81092},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00014,"4.4":0,"4.4.3-4.4.4":0.01174},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.30465,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":31.4503},S:{"2.5":0},R:{_:"0"},M:{"0":0.29096},Q:{"10.4":0},O:{"0":0.46316},H:{"0":0.04497}}; +module.exports={C:{"38":0.01663,"43":0.00832,"47":0.01247,"48":0.01247,"52":0.01247,"60":0.02495,"68":0.18711,"72":0.01247,"75":0.01663,"78":0.39501,"82":0.08732,"86":0.00416,"88":0.01247,"89":0.02079,"90":0.00832,"91":0.10811,"92":0.02911,"93":0.01663,"94":1.67983,"95":3.65072,"96":0.00416,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 83 84 85 87 97 3.5 3.6"},D:{"49":0.02911,"57":0.00832,"58":0.01247,"64":0.00416,"65":0.00832,"67":0.03326,"70":0.00832,"73":0.01247,"76":0.01247,"78":0.00416,"79":0.05821,"80":0.01247,"81":0.04574,"83":0.02079,"84":0.01247,"85":0.05405,"86":0.02495,"87":0.18295,"88":0.00832,"89":0.01247,"90":0.01247,"91":0.079,"92":0.24532,"93":0.05821,"94":0.2578,"95":0.69023,"96":17.34718,"97":0.03326,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 59 60 61 62 63 66 68 69 71 72 74 75 77 98 99"},F:{"65":0.00416,"80":0.00416,"81":0.19127,"82":0.18295,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.03326,"13":0.04158,"14":0.71933,"15":0.36175,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00832,"11.1":0.04574,"12.1":0.17879,"13.1":0.43659,"14.1":2.158,"15.1":2.61538,"15.2":0.69023},B:{"14":0.00832,"18":0.02495,"80":0.00416,"84":0.00832,"86":0.00832,"87":0.00832,"89":0.00832,"90":0.00832,"91":0.02495,"92":0.02079,"93":0.06237,"94":0.01247,"95":0.07069,"96":3.64657,_:"12 13 15 16 17 79 81 83 85 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01205,"6.0-6.1":0.03614,"7.0-7.1":0.00241,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1325,"10.0-10.2":0.01686,"10.3":0.16381,"11.0-11.2":0.15418,"11.3-11.4":0.14454,"12.0-12.1":0.09395,"12.2-12.5":1.15634,"13.0-13.1":0.06023,"13.2":0,"13.3":0.12045,"13.4-13.7":0.33727,"14.0-14.4":1.16356,"14.5-14.8":6.71639,"15.0-15.1":12.75344,"15.2":1.01661},P:{"4":0.07277,_:"5.0-5.4 6.2-6.4","7.2-7.4":0.13515,"8.2":0.01062,"9.2":0.0104,"10.1":0.01062,"11.1-11.2":0.22871,"12.0":0.08317,"13.0":0.08317,"14.0":0.18713,"15.0":0.77971},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.00103,"4.4":0,"4.4.3-4.4.4":0.01546},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23701,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.30963},H:{"0":0.10509},L:{"0":32.52962},S:{"2.5":0},R:{_:"0"},M:{"0":0.35052},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js index 5a368f90c55207..a3c90e207e3607 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:{"41":0.00363,"44":0.02543,"48":0.01817,"56":0.00363,"60":0.00363,"61":0.0109,"64":0.00363,"68":0.00363,"69":0.00727,"72":0.00727,"77":0.07266,"78":0.00727,"79":0.00363,"82":0.01453,"84":0.03996,"85":0.0109,"88":0.04723,"89":0.0327,"90":0.01817,"91":0.0327,"92":0.06539,"93":0.3524,"94":1.36601,"95":0.03633,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 45 46 47 49 50 51 52 53 54 55 57 58 59 62 63 65 66 67 70 71 73 74 75 76 80 81 83 86 87 96 3.5 3.6"},D:{"11":0.00363,"31":0.01817,"37":0.01453,"38":0.00727,"43":0.00727,"49":0.0109,"55":0.05813,"56":0.01817,"57":0.00363,"58":0.01817,"62":0.01453,"63":0.0109,"64":0.00363,"65":0.00363,"66":0.02543,"67":0.01817,"69":0.10536,"70":0.3197,"71":0.0218,"72":0.01453,"73":0.0109,"74":0.0109,"75":0.0109,"76":0.01453,"77":0.00363,"78":0.01817,"79":0.02543,"80":0.03633,"81":0.05813,"83":0.0327,"85":0.00363,"86":0.06176,"87":0.31244,"88":0.07629,"89":0.16349,"90":0.03996,"91":0.07993,"92":0.32697,"93":0.18165,"94":0.61398,"95":10.56476,"96":6.01625,"97":0.00727,_:"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 39 40 41 42 44 45 46 47 48 50 51 52 53 54 59 60 61 68 84 98 99"},F:{"52":0.00727,"79":0.0109,"80":0.70844,"81":0.13805,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0327,"13":0.03633,"14":0.02543,"15":0.05086,"16":0.21435,"17":0.05813,"18":0.29427,"80":0.02906,"83":0.00727,"84":0.05813,"85":0.0218,"87":0.00363,"88":0.0109,"89":0.10536,"90":0.0327,"91":0.0327,"92":0.12716,"93":0.06903,"94":0.3415,"95":2.46681,"96":0.82106,_:"79 81 86"},E:{"4":0,"8":0.00363,"11":0.00363,"13":0.07993,"14":0.06903,"15":0.06903,_:"0 5 6 7 9 10 12 3.1 3.2 5.1 6.1 9.1","7.1":0.00363,"10.1":0.00363,"11.1":0.00727,"12.1":0.0218,"13.1":0.09083,"14.1":0.18165,"15.1":0.0545},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00133,"7.0-7.1":0.00574,"8.1-8.4":0.02099,"9.0-9.2":0.00022,"9.3":0.01458,"10.0-10.2":0.00199,"10.3":0.01502,"11.0-11.2":0.00862,"11.3-11.4":0.01812,"12.0-12.1":0.02497,"12.2-12.5":0.25628,"13.0-13.1":0.01524,"13.2":0.00331,"13.3":0.06076,"13.4-13.7":0.14074,"14.0-14.4":0.28832,"14.5-14.8":0.60161,"15.0-15.1":0.73152},P:{"4":0.25559,"5.0-5.4":0.01095,"6.2-6.4":0.03067,"7.2-7.4":1.18594,"8.2":0.01026,"9.2":0.12268,"10.1":0.02045,"11.1-11.2":0.3476,"12.0":0.09201,"13.0":0.43961,"14.0":1.42108,"15.0":1.39041},I:{"0":0,"3":0,"4":0.00184,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01103,"4.2-4.3":0.03216,"4.4":0,"4.4.3-4.4.4":0.22239},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0079,"10":0.01185,"11":0.34356,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":58.11167},S:{"2.5":0.28015},R:{_:"0"},M:{"0":0.08914},Q:{"10.4":0.31198},O:{"0":1.85916},H:{"0":2.22428}}; +module.exports={C:{"38":0.01454,"44":0.06543,"47":0.00727,"48":0.01091,"52":0.00727,"71":0.00364,"72":0.01091,"78":0.01091,"84":0.03272,"88":0.02908,"89":0.00727,"90":0.01454,"91":0.02181,"92":0.00727,"93":0.01818,"94":0.46165,"95":0.8724,"96":0.01091,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 79 80 81 82 83 85 86 87 97 3.5 3.6"},D:{"37":0.02181,"43":0.00727,"44":0.00364,"49":0.00727,"50":0.00727,"55":0.08361,"56":0.02908,"58":0.00727,"60":0.01091,"63":0.00727,"64":0.00727,"65":0.01091,"68":0.01454,"69":0.05453,"70":0.21083,"71":0.00364,"72":0.00727,"73":0.01091,"74":0.01454,"75":0.01454,"77":0.02181,"78":0.02181,"79":0.01454,"80":0.02545,"81":0.11632,"83":0.02181,"84":0.00727,"85":0.01818,"86":0.02908,"87":0.16358,"88":0.10178,"89":0.0618,"90":0.03635,"91":0.15631,"92":0.2799,"93":0.09815,"94":0.26536,"95":0.25445,"96":14.8308,"97":0.00364,_:"4 5 6 7 8 9 10 11 12 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 45 46 47 48 51 52 53 54 57 59 61 62 66 67 76 98 99"},F:{"36":0.02545,"66":0.03635,"79":0.01091,"80":0.10178,"81":0.26536,"82":0.41076,_:"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 67 68 69 70 71 72 73 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},E:{"4":0,"10":0.0727,"13":0.19993,"14":0.02908,"15":0.01454,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 9.1 10.1","7.1":0.00364,"11.1":0.01454,"12.1":0.00727,"13.1":0.08724,"14.1":0.10905,"15.1":0.05453,"15.2":0.01454},B:{"12":0.02908,"13":0.03272,"14":0.03635,"15":0.01818,"16":0.1454,"17":0.05453,"18":0.22174,"80":0.05089,"83":0.01454,"84":0.05816,"85":0.01454,"87":0.00364,"89":0.03999,"90":0.00727,"91":0.03272,"92":0.2181,"93":0.02545,"94":0.0618,"95":0.10542,"96":3.54413,_:"79 81 86 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00335,"6.0-6.1":0,"7.0-7.1":0.00558,"8.1-8.4":0.03941,"9.0-9.2":0.00186,"9.3":0.02863,"10.0-10.2":0.00037,"10.3":0.0158,"11.0-11.2":0.01283,"11.3-11.4":0.00353,"12.0-12.1":0.00762,"12.2-12.5":0.25636,"13.0-13.1":0.03179,"13.2":0.00465,"13.3":0.05242,"13.4-13.7":0.14538,"14.0-14.4":0.16359,"14.5-14.8":0.3943,"15.0-15.1":0.61069,"15.2":0.08012},P:{"4":0.50088,"5.0-5.4":0.01022,"6.2-6.4":0.05111,"7.2-7.4":1.2062,"8.2":0.02052,"9.2":0.08178,"10.1":0.03056,"11.1-11.2":0.30666,"12.0":0.10222,"13.0":0.66443,"14.0":0.64399,"15.0":0.94043},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00197,"4.1":0.00888,"4.2-4.3":0.02172,"4.4":0,"4.4.3-4.4.4":0.26653},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.31261,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":3.78022},H:{"0":1.93403},L:{"0":59.67888},S:{"2.5":0.26092},R:{_:"0"},M:{"0":0.14637},Q:{"10.4":0.14001}}; 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 cf369b941698ef..f7627d0f4614fe 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:{"34":0.00943,"36":0.01415,"52":0.00943,"56":0.23104,"59":0.00472,"78":0.01886,"86":0.00472,"88":0.00943,"89":0.00943,"91":0.01415,"92":0.01415,"93":0.13202,"94":0.79684,"95":0.01415,_:"2 3 4 5 6 7 8 9 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 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 90 96 3.5 3.6"},D:{"38":0.00472,"49":0.03301,"50":0.00472,"53":0.00472,"55":0.00943,"56":0.00472,"58":0.00472,"63":0.00943,"65":0.01415,"66":0.03301,"67":0.00943,"68":0.00472,"69":0.01415,"70":0.01415,"71":0.01415,"72":0.01886,"73":0.00943,"74":0.02358,"75":0.03301,"76":0.05187,"77":0.01886,"78":0.04715,"79":0.08016,"80":0.03772,"81":0.03772,"83":0.05187,"84":0.04244,"85":0.04715,"86":0.07544,"87":0.27347,"88":0.13202,"89":0.07073,"90":0.08016,"91":0.16031,"92":0.31119,"93":0.29705,"94":1.31549,"95":20.07176,"96":11.27828,"97":0.02829,_:"4 5 6 7 8 9 10 11 12 13 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 57 59 60 61 62 64 98 99"},F:{"28":0.02358,"36":0.00943,"46":0.00943,"79":0.00943,"80":0.7214,"81":0.36777,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00943,"18":0.02829,"84":0.00943,"89":0.00943,"91":0.00472,"92":0.01886,"93":0.01415,"94":0.04244,"95":2.47066,"96":0.99015,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.02358,"14":0.14617,"15":0.27347,_:"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.01886,"12.1":0.01886,"13.1":0.08959,"14.1":0.53751,"15.1":0.31591},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00047,"5.0-5.1":0.01595,"6.0-6.1":0.00235,"7.0-7.1":0.01689,"8.1-8.4":0.00235,"9.0-9.2":0.00844,"9.3":0.07975,"10.0-10.2":0.00516,"10.3":0.04691,"11.0-11.2":0.02205,"11.3-11.4":0.04222,"12.0-12.1":0.02908,"12.2-12.5":0.50992,"13.0-13.1":0.01783,"13.2":0.00985,"13.3":0.0441,"13.4-13.7":0.13792,"14.0-14.4":0.38889,"14.5-14.8":1.57573,"15.0-15.1":1.73195},P:{"4":0.39881,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.0105,"8.2":0.01026,"9.2":0.0105,"10.1":0.04074,"11.1-11.2":0.05248,"12.0":0.02099,"13.0":0.06297,"14.0":0.07347,"15.0":0.79762},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00106,"4.2-4.3":0.00317,"4.4":0,"4.4.3-4.4.4":0.03805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.15947,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.6944},S:{"2.5":0},R:{_:"0"},M:{"0":0.11099},Q:{"10.4":0.00529},O:{"0":1.06229},H:{"0":0.76553}}; +module.exports={C:{"34":0.00948,"36":0.01422,"52":0.00948,"56":0.0806,"59":0.00948,"78":0.00948,"88":0.00474,"89":0.00474,"91":0.00948,"92":0.00948,"93":0.00948,"94":0.30817,"95":0.48358,"96":0.00948,_:"2 3 4 5 6 7 8 9 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 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 97 3.5 3.6"},D:{"49":0.02371,"53":0.00474,"55":0.00948,"56":0.00474,"63":0.00948,"65":0.01422,"66":0.04741,"67":0.00948,"68":0.00474,"69":0.01422,"70":0.01422,"71":0.00948,"72":0.01896,"73":0.00948,"74":0.02371,"75":0.02845,"76":0.04267,"77":0.01896,"78":0.03319,"79":0.0806,"80":0.03319,"81":0.03319,"83":0.04267,"84":0.04267,"85":0.03319,"86":0.07112,"87":0.19438,"88":0.1043,"89":0.06163,"90":0.06637,"91":0.13275,"92":0.27024,"93":0.23705,"94":0.4504,"95":0.55944,"96":31.64618,"97":0.02845,"98":0.00948,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 57 58 59 60 61 62 64 99"},F:{"28":0.02845,"36":0.00948,"46":0.00948,"79":0.00474,"80":0.00948,"81":0.68745,"82":0.3935,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01896,"14":0.12327,"15":0.15171,_:"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.01896,"12.1":0.01896,"13.1":0.07586,"14.1":0.41247,"15.1":0.48358,"15.2":0.05215},B:{"17":0.00948,"18":0.01422,"84":0.00474,"89":0.00474,"92":0.01422,"93":0.00474,"94":0.01422,"95":0.04741,"96":3.43248,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01109,"6.0-6.1":0.00289,"7.0-7.1":0.01688,"8.1-8.4":0.00386,"9.0-9.2":0.00868,"9.3":0.07668,"10.0-10.2":0.00482,"10.3":0.04823,"11.0-11.2":0.02411,"11.3-11.4":0.04099,"12.0-12.1":0.02315,"12.2-12.5":0.48129,"13.0-13.1":0.01929,"13.2":0.01013,"13.3":0.04147,"13.4-13.7":0.12394,"14.0-14.4":0.35928,"14.5-14.8":1.1796,"15.0-15.1":2.15616,"15.2":0.18904},P:{"4":0.37218,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.08398,"8.2":0.02052,"9.2":0.021,"10.1":0.03062,"11.1-11.2":0.0638,"12.0":0.02127,"13.0":0.04253,"14.0":0.0638,"15.0":0.15951},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00124,"4.2-4.3":0.00371,"4.4":0,"4.4.3-4.4.4":0.03712},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.4748,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.99376},H:{"0":0.75167},L:{"0":47.09439},S:{"2.5":0},R:{_:"0"},M:{"0":0.11042},Q:{"10.4":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 f6cfc49f269562..c4bb7d9c05bb31 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:{"21":0.00205,"43":0.00205,"47":0.00616,"50":0.00411,"51":0.00205,"52":0.0267,"68":0.00205,"72":0.00411,"78":0.01027,"79":0.00205,"80":0.00411,"81":0.00411,"82":0.00411,"83":0.00411,"84":0.00616,"85":0.00411,"88":0.00616,"89":0.00616,"90":0.00205,"91":0.02465,"92":0.00822,"93":0.13967,"94":0.63263,"95":0.0267,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 86 87 96 3.5 3.6"},D:{"24":0.03492,"27":0.05546,"29":0.00822,"31":0.00411,"32":0.00205,"35":0.00205,"37":0.02054,"38":0.00411,"40":0.00616,"41":0.01438,"42":0.00411,"43":0.01643,"47":0.00411,"48":0.00411,"49":0.04519,"50":0.00205,"52":0.00205,"56":0.01438,"57":0.00205,"58":0.00411,"60":0.00205,"61":0.02259,"62":0.00205,"63":0.00822,"64":0.01849,"65":0.00616,"67":0.00411,"68":0.00822,"69":0.00411,"70":0.01027,"71":0.00411,"72":0.00616,"73":0.00822,"74":0.01438,"75":0.01027,"76":0.00822,"77":0.00822,"78":0.00616,"79":0.01849,"80":0.02054,"81":0.02259,"83":0.02876,"84":0.05751,"85":0.03081,"86":0.05546,"87":0.2814,"88":0.02054,"89":0.03492,"90":0.02876,"91":0.05546,"92":0.1294,"93":0.12324,"94":0.33069,"95":7.86271,"96":5.26029,"97":0.02465,"98":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 28 30 33 34 36 39 44 45 46 51 53 54 55 59 66 99"},F:{"37":0.00411,"73":0.00205,"78":0.00205,"79":0.00822,"80":0.35534,"81":0.16432,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00822,"13":0.00205,"14":0.00411,"15":0.00411,"16":0.00616,"17":0.00205,"18":0.02465,"84":0.00411,"85":0.00205,"86":0.00205,"89":0.00411,"90":0.00205,"91":0.00205,"92":0.00616,"93":0.01027,"94":0.01438,"95":0.47653,"96":0.18486,_:"79 80 81 83 87 88"},E:{"4":0,"5":0.00411,"10":0.00205,"13":0.01027,"14":0.03286,"15":0.03286,_:"0 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01438,"11.1":0.00205,"12.1":0.00411,"13.1":0.01849,"14.1":0.08421,"15.1":0.04108},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0.00621,"6.0-6.1":0.00098,"7.0-7.1":0.02483,"8.1-8.4":0.00327,"9.0-9.2":0.00751,"9.3":0.06827,"10.0-10.2":0.00555,"10.3":0.05488,"11.0-11.2":0.01764,"11.3-11.4":0.01666,"12.0-12.1":0.01209,"12.2-12.5":0.33516,"13.0-13.1":0.01143,"13.2":0.00555,"13.3":0.02777,"13.4-13.7":0.09408,"14.0-14.4":0.27996,"14.5-14.8":1.15739,"15.0-15.1":1.13551},P:{"4":0.20801,"5.0-5.4":0.01095,"6.2-6.4":0.03139,"7.2-7.4":0.05474,"8.2":0.01026,"9.2":0.0513,"10.1":0.04104,"11.1-11.2":0.03284,"12.0":0.0219,"13.0":0.08758,"14.0":0.08758,"15.0":0.83204},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00236,"4.2-4.3":0.00707,"4.4":0,"4.4.3-4.4.4":0.13358},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0163,"9":0.00931,"10":0.00698,"11":0.10708,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":72.04807},S:{"2.5":0.11123},R:{_:"0"},M:{"0":0.04767},Q:{"10.4":0},O:{"0":3.66265},H:{"0":1.49684}}; +module.exports={C:{"47":0.00433,"50":0.00217,"52":0.02598,"72":0.00217,"78":0.00866,"80":0.00217,"81":0.00217,"82":0.00217,"84":0.0065,"85":0.00217,"88":0.00433,"89":0.00433,"90":0.00217,"91":0.02382,"92":0.00433,"93":0.00866,"94":0.24898,"95":0.51527,"96":0.02165,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 83 86 87 97 3.5 3.6"},D:{"38":0.00217,"40":0.00217,"42":0.00433,"43":0.01516,"47":0.00433,"48":0.00433,"49":0.01732,"50":0.00217,"55":0.00217,"56":0.01299,"57":0.00217,"58":0.0065,"60":0.00217,"61":0.00217,"62":0.00217,"63":0.01083,"64":0.02598,"65":0.0065,"66":0.00217,"67":0.00433,"68":0.0065,"69":0.0065,"70":0.0065,"71":0.00433,"72":0.0065,"73":0.0065,"74":0.01299,"75":0.00866,"76":0.00866,"77":0.00866,"78":0.0065,"79":0.01949,"80":0.01949,"81":0.02598,"83":0.02598,"84":0.05629,"85":0.02815,"86":0.04547,"87":0.15372,"88":0.01949,"89":0.03248,"90":0.02382,"91":0.04547,"92":0.10176,"93":0.23166,"94":0.14722,"95":0.22733,"96":13.65466,"97":0.02165,"98":0.01083,_:"4 5 6 7 8 9 10 11 12 13 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 51 52 53 54 59 99"},F:{"73":0.00217,"79":0.0065,"80":0.0065,"81":0.18619,"82":0.36805,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00217,"13":0.00866,"14":0.03031,"15":0.02382,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01299,"11.1":0.00433,"12.1":0.00433,"13.1":0.01949,"14.1":0.08444,"15.1":0.07361,"15.2":0.01083},B:{"12":0.00866,"13":0.00217,"14":0.00217,"15":0.00433,"16":0.00433,"17":0.00217,"18":0.01732,"84":0.00433,"85":0.00217,"86":0.00217,"89":0.00433,"90":0.00217,"92":0.0065,"93":0.00217,"94":0.00433,"95":0.01732,"96":0.69497,_:"79 80 81 83 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00265,"6.0-6.1":0.00066,"7.0-7.1":0.02646,"8.1-8.4":0.00132,"9.0-9.2":0.00231,"9.3":0.06019,"10.0-10.2":0.00628,"10.3":0.04365,"11.0-11.2":0.01687,"11.3-11.4":0.01852,"12.0-12.1":0.01124,"12.2-12.5":0.34227,"13.0-13.1":0.00926,"13.2":0.00397,"13.3":0.02712,"13.4-13.7":0.0916,"14.0-14.4":0.2424,"14.5-14.8":0.86774,"15.0-15.1":1.38627,"15.2":0.14517},P:{"4":0.1972,"5.0-5.4":0.01096,"6.2-6.4":0.06265,"7.2-7.4":0.05478,"8.2":0.02052,"9.2":0.05121,"10.1":0.01024,"11.1-11.2":0.03287,"12.0":0.02191,"13.0":0.08764,"14.0":0.07669,"15.0":0.1972},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.00641,"4.4":0,"4.4.3-4.4.4":0.10134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01443,"9":0.00722,"10":0.00481,"11":0.10344,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":3.86216},H:{"0":1.63168},L:{"0":71.30316},S:{"2.5":0.12534},R:{_:"0"},M:{"0":0.047},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js index ca3f001c254839..bf57106497ca41 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js @@ -1 +1 @@ -module.exports={C:{"52":0.14778,"60":0.00477,"66":0.00477,"68":0.00953,"72":0.02384,"78":0.11441,"79":0.00477,"80":0.00477,"81":0.00953,"82":0.0286,"83":0.0143,"84":0.03814,"85":0.00953,"86":0.02384,"87":0.00953,"88":0.0572,"89":0.0572,"90":0.03814,"91":0.16208,"92":0.09057,"93":1.08688,"94":6.96459,"95":0.01907,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 73 74 75 76 77 96 3.5 3.6"},D:{"49":0.15731,"58":0.00953,"59":0.00477,"61":0.0143,"63":0.01907,"69":0.00953,"70":0.00953,"71":0.01907,"72":0.00953,"73":0.00477,"74":0.00953,"75":0.0143,"76":0.0429,"77":0.00953,"78":0.0143,"79":0.21928,"80":0.0286,"81":0.01907,"83":0.01907,"84":0.01907,"85":0.0286,"86":0.03337,"87":0.20975,"88":0.03814,"89":0.0429,"90":0.04767,"91":0.09057,"92":0.17638,"93":0.17161,"94":0.74365,"95":14.13892,"96":8.26598,"97":0.00477,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 60 62 64 65 66 67 68 98 99"},F:{"36":0.01907,"76":0.00953,"77":0.0143,"78":0.03337,"79":0.06197,"80":4.3189,"81":1.71612,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00477,"16":0.00953,"17":0.01907,"18":0.01907,"84":0.00477,"85":0.00953,"86":0.00953,"87":0.00477,"89":0.0143,"90":0.00477,"91":0.01907,"92":0.03337,"93":0.0286,"94":0.10487,"95":3.06041,"96":1.12501,_:"12 13 14 79 80 81 83 88"},E:{"4":0,"13":0.0143,"14":0.12394,"15":0.19545,_:"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.0286,"13.1":0.12394,"14.1":0.4338,"15.1":0.30986},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00211,"6.0-6.1":0,"7.0-7.1":0.00464,"8.1-8.4":0.00127,"9.0-9.2":0.00084,"9.3":0.01181,"10.0-10.2":0.00127,"10.3":0.01307,"11.0-11.2":0.01012,"11.3-11.4":0.01349,"12.0-12.1":0.01139,"12.2-12.5":0.17162,"13.0-13.1":0.00801,"13.2":0.00548,"13.3":0.03373,"13.4-13.7":0.08686,"14.0-14.4":0.29011,"14.5-14.8":1.98609,"15.0-15.1":1.56146},P:{"4":0.22525,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.01024,"8.2":0.01026,"9.2":0.03072,"10.1":0.01024,"11.1-11.2":0.17405,"12.0":0.06143,"13.0":0.16382,"14.0":0.22525,"15.0":2.44699},I:{"0":0,"3":0,"4":0.00226,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01534,"4.2-4.3":0.01399,"4.4":0,"4.4.3-4.4.4":0.04693},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16685,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":44.4149},S:{"2.5":0.00523},R:{_:"0"},M:{"0":0.28264},Q:{"10.4":0},O:{"0":0.02617},H:{"0":1.22394}}; +module.exports={C:{"51":0.00488,"52":0.15122,"66":0.00488,"68":0.00976,"72":0.02439,"78":0.10732,"79":0.00488,"80":0.00976,"81":0.00976,"82":0.00488,"83":0.01463,"84":0.02927,"85":0.00976,"86":0.02439,"87":0.03415,"88":0.05366,"89":0.04878,"90":0.03415,"91":0.17073,"92":0.03415,"93":0.05854,"94":2.639,"95":5.43409,"96":0.01463,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 97 3.5 3.6"},D:{"49":0.11219,"58":0.00976,"63":0.01951,"65":0.00488,"69":0.00976,"70":0.01463,"71":0.01463,"72":0.00976,"73":0.00488,"74":0.00976,"75":0.01463,"76":0.04878,"77":0.00488,"78":0.01463,"79":0.25853,"80":0.02927,"81":0.01951,"83":0.01951,"84":0.02927,"85":0.01951,"86":0.02927,"87":0.13658,"88":0.03902,"89":0.0439,"90":0.04878,"91":0.06341,"92":0.12683,"93":0.13171,"94":0.22439,"95":0.54634,"96":22.57538,"97":0.00976,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 64 66 67 68 98 99"},F:{"36":0.01463,"73":0.00488,"77":0.00976,"78":0.01951,"79":0.02927,"80":0.07805,"81":3.63411,"82":2.91217,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01463,"14":0.10732,"15":0.10244,_:"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.00976,"12.1":0.02439,"13.1":0.11219,"14.1":0.33658,"15.1":0.43902,"15.2":0.07317},B:{"15":0.00488,"16":0.00488,"17":0.00976,"18":0.00976,"84":0.00488,"85":0.00976,"86":0.00976,"89":0.01463,"90":0.00488,"91":0.01463,"92":0.01951,"93":0.01463,"94":0.02927,"95":0.11219,"96":4.35118,_:"12 13 14 79 80 81 83 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00212,"6.0-6.1":0.00085,"7.0-7.1":0.00212,"8.1-8.4":0.00085,"9.0-9.2":0.00085,"9.3":0.01356,"10.0-10.2":0.00254,"10.3":0.01144,"11.0-11.2":0.01059,"11.3-11.4":0.0161,"12.0-12.1":0.01059,"12.2-12.5":0.16527,"13.0-13.1":0.00678,"13.2":0.00381,"13.3":0.03009,"13.4-13.7":0.09407,"14.0-14.4":0.24536,"14.5-14.8":1.27721,"15.0-15.1":2.13151,"15.2":0.21018},P:{"4":0.22671,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.02061,"9.2":0.03091,"10.1":0.0103,"11.1-11.2":0.15457,"12.0":0.05152,"13.0":0.15457,"14.0":0.2061,"15.0":0.4225},I:{"0":0,"3":0,"4":0.00151,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01698,"4.2-4.3":0.0117,"4.4":0,"4.4.3-4.4.4":0.04152},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00488,"11":0.16097,_:"6 7 8 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0.00512},O:{"0":0.02561},H:{"0":1.28503},L:{"0":43.75525},S:{"2.5":0.00512},R:{_:"0"},M:{"0":0.2561},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js index 981aebf3484af5..2a7cd3d76a951e 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:{"56":0.03226,"78":0.12442,"79":0.2857,"86":0.00461,"89":0.00461,"91":0.2857,"92":0.00461,"93":0.49306,"94":6.78758,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 80 81 82 83 84 85 87 88 90 95 96 3.5 3.6"},D:{"29":0.00461,"34":0.00461,"49":0.01843,"63":0.00461,"68":0.01843,"70":0.00461,"76":0.05069,"78":0.00922,"79":0.05069,"81":0.01843,"83":0.00461,"90":0.00461,"91":0.02765,"92":0.04147,"93":0.02304,"94":0.20736,"95":13.81939,"96":6.26688,_:"4 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 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 71 72 73 74 75 77 80 84 85 86 87 88 89 97 98 99"},F:{"80":1.16122,"81":0.54374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"90":0.03226,"93":0.02765,"94":0.04147,"95":3.55277,"96":1.90771,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 92"},E:{"4":0,"13":0.04608,"14":0.15667,"15":0.60365,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.00922,"10.1":0.00461,"12.1":0.04608,"13.1":0.38707,"14.1":2.79706,"15.1":5.03654},G:{"8":0,"3.2":0,"4.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.02006,"10.0-10.2":0,"10.3":0.09362,"11.0-11.2":0.06353,"11.3-11.4":0.15715,"12.0-12.1":0.00334,"12.2-12.5":3.37699,"13.0-13.1":0.00334,"13.2":0,"13.3":0.71886,"13.4-13.7":0.19727,"14.0-14.4":1.9727,"14.5-14.8":11.82949,"15.0-15.1":14.98246},P:{"4":0.1455,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.73791,"8.2":0.01026,"9.2":0.02079,"10.1":0.04157,"11.1-11.2":0.22721,"12.0":0.10393,"13.0":0.33258,"14.0":0.34297,"15.0":2.07898},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.29651},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11981,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":17.83819},S:{"2.5":0},R:{_:"0"},M:{"0":0.18869},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"47":0.01163,"48":0.01163,"64":0.00775,"78":0.05425,"79":0.11625,"86":0.02325,"90":0.32163,"91":0.17438,"94":0.47663,"95":2.697,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 87 88 89 92 93 96 97 3.5 3.6"},D:{"49":0.0155,"76":0.0465,"79":0.02713,"81":0.03488,"91":0.10075,"94":0.05038,"95":0.13175,"96":11.89625,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 83 84 85 86 87 88 89 90 92 93 97 98 99"},F:{"81":0.99975,"82":1.61975,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01163,"14":0.18213,"15":0.1705,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 12.1","9.1":0.0155,"11.1":0.03488,"13.1":0.87188,"14.1":1.24775,"15.1":8.54438,"15.2":2.74738},B:{"95":0.02713,"96":4.99875,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.01357,"10.0-10.2":0,"10.3":0.02262,"11.0-11.2":0.00905,"11.3-11.4":0.07239,"12.0-12.1":0,"12.2-12.5":1.41165,"13.0-13.1":0.00905,"13.2":0,"13.3":0.4253,"13.4-13.7":0.14026,"14.0-14.4":0.64248,"14.5-14.8":6.13524,"15.0-15.1":33.75737,"15.2":2.58802},P:{"4":0.03274,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.56751,"8.2":0.02052,"9.2":0.06182,"10.1":0.03091,"11.1-11.2":0.25223,"12.0":0.07357,"13.0":0.28376,"14.0":0.19968,"15.0":0.02183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.07005,"4.4":0,"4.4.3-4.4.4":0.30357},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01163,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":15.43},S:{"2.5":0},R:{_:"0"},M:{"0":0.06738},Q:{"10.4":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 0e57046e8563fe..a92b36487f970d 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 3.5 3.6"},D:{"81":50,"95":50,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99"},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 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"},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"},G:{"8":0,"3.2":0,"4.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},P:{"4":0.39881,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.0105,"8.2":0.01026,"9.2":0.0105,"10.1":0.04074,"11.1-11.2":0.05248,"12.0":0.02099,"13.0":0.06297,"14.0":0.07347,"15.0":0.79762},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.02658,"11":0.22582},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 3.5 3.6"},D:{"81":100,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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"},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"},G:{"8":0,"3.2":0,"4.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":0},P:{"4":0.37218,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.08398,"8.2":0.02052,"9.2":0.021,"10.1":0.03062,"11.1-11.2":0.0638,"12.0":0.02127,"13.0":0.04253,"14.0":0.0638,"15.0":0.15951},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.04513,_:"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}}; 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 041ed800ba3ab4..b396b51784aa81 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:{"29":0.00464,"47":0.00464,"48":0.00464,"49":0.00464,"52":0.05101,"56":0.00464,"73":0.06028,"76":0.00927,"77":0.00927,"78":0.02782,"87":0.00464,"88":0.00464,"89":0.00464,"90":0.05101,"91":0.07419,"92":0.01855,"93":0.38023,"94":1.89653,"95":0.02319,_:"2 3 4 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 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 79 80 81 82 83 84 85 86 96 3.5 3.6"},D:{"25":0.00927,"43":0.02319,"46":0.00464,"49":0.07883,"53":0.00464,"54":0.04637,"57":0.00464,"58":0.01855,"63":0.00464,"65":0.00927,"75":0.00464,"76":0.02319,"77":0.00927,"79":0.04173,"80":0.01855,"81":0.00927,"83":0.00927,"84":0.01855,"85":0.10665,"86":0.02782,"87":0.49616,"88":0.02782,"89":0.05101,"90":0.03246,"91":0.07883,"92":0.1623,"93":0.2133,"94":1.46529,"95":15.12126,"96":8.02665,"97":0.01391,_:"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 44 45 47 48 50 51 52 55 56 59 60 61 62 64 66 67 68 69 70 71 72 73 74 78 98 99"},F:{"38":0.00464,"79":0.00927,"80":0.65845,"81":0.21794,_:"9 11 12 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 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"14":0.00464,"16":0.00927,"17":0.00927,"18":0.04173,"84":0.00927,"85":0.00927,"86":0.00464,"88":0.00464,"89":0.01855,"90":0.00927,"91":0.03246,"92":0.02782,"93":0.03246,"94":0.22258,"95":5.36965,"96":1.88262,_:"12 13 15 79 80 81 83 87"},E:{"4":0,"12":0.00927,"13":0.07419,"14":0.46834,"15":1.18244,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04637,"11.1":0.07883,"12.1":0.06492,"13.1":0.41733,"14.1":2.74974,"15.1":1.38646},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00244,"8.1-8.4":0.00976,"9.0-9.2":0,"9.3":0.11709,"10.0-10.2":0.02927,"10.3":0.04879,"11.0-11.2":0.13905,"11.3-11.4":0.03903,"12.0-12.1":0.00976,"12.2-12.5":0.40494,"13.0-13.1":0.02195,"13.2":0.01952,"13.3":0.12197,"13.4-13.7":0.3098,"14.0-14.4":1.23922,"14.5-14.8":11.29443,"15.0-15.1":10.57237},P:{"4":0.15774,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.04206,"8.2":0.01026,"9.2":0.02103,"10.1":0.01024,"11.1-11.2":0.07361,"12.0":0.01052,"13.0":0.16826,"14.0":0.21032,"15.0":2.4923},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00189,"4.4":0,"4.4.3-4.4.4":0.01325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27358,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":26.73765},S:{"2.5":0},R:{_:"0"},M:{"0":0.30575},Q:{"10.4":0},O:{"0":0.02682},H:{"0":0.09649}}; +module.exports={C:{"45":0.00911,"46":0.00911,"47":0.00911,"48":0.00911,"49":0.00911,"50":0.00911,"51":0.00911,"52":0.06833,"53":0.00911,"54":0.00911,"55":0.00911,"56":0.00911,"73":0.05466,"77":0.01367,"78":0.02278,"88":0.00456,"90":0.05011,"91":0.03644,"93":0.05011,"94":0.68325,"95":1.40294,"96":0.03644,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 79 80 81 82 83 84 85 86 87 89 92 97 3.5 3.6"},D:{"25":0.00911,"38":0.00456,"49":0.05011,"54":0.041,"58":0.00456,"63":0.00456,"65":0.00911,"68":0.00911,"71":0.00456,"72":0.00456,"75":0.01822,"76":0.01367,"77":0.00911,"79":0.041,"80":0.01367,"81":0.01822,"83":0.01367,"84":0.01822,"85":0.00911,"86":0.02733,"87":0.73791,"88":0.01822,"89":0.03644,"90":0.01822,"91":0.04555,"92":0.10477,"93":0.10932,"94":0.48283,"95":0.57849,"96":22.6338,"97":0.01367,_:"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 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 56 57 59 60 61 62 64 66 67 69 70 73 74 78 98 99"},F:{"38":0.00456,"78":0.00911,"80":0.00456,"81":0.43273,"82":0.43273,_:"9 11 12 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00911,"13":0.07288,"14":0.48739,"15":0.56482,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00911,"10.1":0.01822,"11.1":0.07744,"12.1":0.05466,"13.1":0.47828,"14.1":2.15907,"15.1":2.19551,"15.2":0.4555},B:{"16":0.00456,"17":0.01367,"18":0.03644,"84":0.00911,"85":0.00911,"89":0.01367,"90":0.00911,"91":0.01822,"92":0.01367,"93":0.03644,"94":0.05011,"95":0.28241,"96":6.78695,_:"12 13 14 15 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.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.01272,"9.0-9.2":0,"9.3":0.10433,"10.0-10.2":0.03308,"10.3":0.04835,"11.0-11.2":0.12724,"11.3-11.4":0.03817,"12.0-12.1":0.01781,"12.2-12.5":0.39443,"13.0-13.1":0.01781,"13.2":0.01781,"13.3":0.11197,"13.4-13.7":0.25193,"14.0-14.4":1.04842,"14.5-14.8":7.24479,"15.0-15.1":14.66261,"15.2":1.30289},P:{"4":0.19723,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.04152,"8.2":0.02052,"9.2":0.09342,"10.1":0.03062,"11.1-11.2":0.09342,"12.0":0.01038,"13.0":0.17647,"14.0":0.19723,"15.0":0.34256},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.01633},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.25053,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.03811},H:{"0":0.14431},L:{"0":26.85716},S:{"2.5":0},R:{_:"0"},M:{"0":0.37564},Q:{"10.4":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 0ec46d0b8a2ed9..d11c3789443b5a 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:{"48":0.0034,"52":0.0136,"56":0.0034,"67":0.0068,"72":0.0034,"78":0.0238,"79":0.0102,"82":0.0102,"83":0.0068,"84":0.0034,"87":0.0068,"88":0.0102,"89":0.0136,"90":0.0034,"91":0.0136,"92":0.0136,"93":0.1666,"94":0.9894,"95":0.0068,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 68 69 70 71 73 74 75 76 77 80 81 85 86 96 3.5 3.6"},D:{"11":0.0034,"38":0.051,"49":0.0544,"53":0.0068,"58":0.0068,"60":0.0136,"63":0.017,"66":0.0034,"69":0.0068,"70":0.0034,"71":0.0068,"72":0.0068,"73":0.0034,"74":0.0136,"76":0.0068,"77":0.2312,"78":0.0102,"79":0.119,"80":0.0204,"81":0.0204,"83":0.0374,"84":0.0408,"85":0.034,"86":0.0646,"87":0.1088,"88":0.0204,"89":0.1292,"90":0.0442,"91":0.085,"92":0.1734,"93":0.1904,"94":0.7208,"95":15.4122,"96":9.8158,"97":0.0136,_:"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 56 57 59 61 62 64 65 67 68 75 98 99"},F:{"79":0.0136,"80":0.6052,"81":0.255,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"14":0.0034,"15":0.0034,"17":0.0068,"18":0.0374,"84":0.0068,"85":0.0034,"86":0.0034,"89":0.0068,"90":0.0102,"92":0.0102,"93":0.0136,"94":0.034,"95":1.3736,"96":0.5814,_:"12 13 16 79 80 81 83 87 88 91"},E:{"4":0,"13":0.017,"14":0.0578,"15":0.1326,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0034,"11.1":0.0068,"12.1":0.0136,"13.1":0.0442,"14.1":0.2618,"15.1":0.1598},G:{"8":0,"3.2":0.00157,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00314,"6.0-6.1":0.00079,"7.0-7.1":0.07388,"8.1-8.4":0,"9.0-9.2":0.00079,"9.3":0.03144,"10.0-10.2":0.00786,"10.3":0.01965,"11.0-11.2":0.01493,"11.3-11.4":0.02201,"12.0-12.1":0.02201,"12.2-12.5":0.38431,"13.0-13.1":0.01257,"13.2":0.00472,"13.3":0.04558,"13.4-13.7":0.15011,"14.0-14.4":0.46762,"14.5-14.8":3.47766,"15.0-15.1":3.11457},P:{"4":0.11213,"5.0-5.4":0.01095,"6.2-6.4":0.03139,"7.2-7.4":0.12232,"8.2":0.01026,"9.2":0.04077,"10.1":0.01019,"11.1-11.2":0.17329,"12.0":0.07135,"13.0":0.21406,"14.0":0.19367,"15.0":1.90616},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00284,"4.2-4.3":0.01134,"4.4":0,"4.4.3-4.4.4":0.17725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02351,"9":0.01411,"10":0.0047,"11":0.17868,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":55.32182},S:{"2.5":0},R:{_:"0"},M:{"0":0.08581},Q:{"10.4":0},O:{"0":0.07261},H:{"0":0.5062}}; +module.exports={C:{"52":0.0212,"68":0.00707,"78":0.01767,"84":0.00707,"87":0.00707,"88":0.00353,"89":0.01414,"91":0.01414,"93":0.00707,"94":0.30392,"95":0.84816,"96":0.00353,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 90 92 97 3.5 3.6"},D:{"35":0.37814,"38":0.02827,"43":0.00707,"49":0.02827,"53":0.0106,"58":0.00707,"60":0.00707,"62":0.0106,"63":0.01414,"67":0.00353,"69":0.00707,"70":0.00353,"71":0.0106,"72":0.01414,"73":0.00707,"74":0.01414,"75":0.00353,"76":0.0106,"77":0.25445,"78":0.00707,"79":0.08128,"80":0.0212,"81":0.0212,"83":0.03181,"84":0.03887,"85":0.05301,"86":0.05654,"87":0.10602,"88":0.0212,"89":0.14136,"90":0.0212,"91":0.06008,"92":0.14489,"93":0.06361,"94":0.14843,"95":0.39581,"96":25.21156,"97":0.00707,"98":0.01414,_:"4 5 6 7 8 9 10 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 54 55 56 57 59 61 64 65 66 68 99"},F:{"80":0.0106,"81":0.34987,"82":0.53363,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.0106,"14":0.05301,"15":0.07421,_:"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.00707,"12.1":0.00707,"13.1":0.03181,"14.1":0.17317,"15.1":0.24738,"15.2":0.04241},B:{"13":0.00353,"15":0.00353,"16":0.00353,"17":0.00353,"18":0.03534,"84":0.00707,"86":0.00353,"89":0.01414,"92":0.0106,"93":0.00353,"94":0.00707,"95":0.05301,"96":1.96844,_:"12 14 79 80 81 83 85 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00322,"6.0-6.1":0.00081,"7.0-7.1":0.07088,"8.1-8.4":0,"9.0-9.2":0.00081,"9.3":0.0298,"10.0-10.2":0.00725,"10.3":0.0153,"11.0-11.2":0.0145,"11.3-11.4":0.01692,"12.0-12.1":0.01611,"12.2-12.5":0.31978,"13.0-13.1":0.01128,"13.2":0.00322,"13.3":0.03464,"13.4-13.7":0.15224,"14.0-14.4":0.48088,"14.5-14.8":2.54055,"15.0-15.1":3.91473,"15.2":0.41725},P:{"4":0.10234,"5.0-5.4":0.01096,"6.2-6.4":0.06265,"7.2-7.4":0.10234,"8.2":0.02052,"9.2":0.02047,"10.1":0.01023,"11.1-11.2":0.18422,"12.0":0.06141,"13.0":0.22515,"14.0":0.17398,"15.0":0.40937},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00133,"4.2-4.3":0.00934,"4.4":0,"4.4.3-4.4.4":0.15744},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01223,"9":0.00816,"10":0.00816,"11":0.13049,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.06466},H:{"0":0.40403},L:{"0":55.27824},S:{"2.5":0},R:{_:"0"},M:{"0":0.08406},Q:{"10.4":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 5effafae98b6a5..ecfb332425680b 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:{"3":0.01332,"49":0.05326,"52":0.03995,"72":0.00666,"78":0.08655,"88":0.01332,"89":0.01997,"90":0.00666,"91":0.04661,"92":0.02663,"93":0.4594,"94":2.76307,"95":0.01332,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 96 3.5 3.6"},D:{"23":0.02663,"38":0.00666,"43":0.55261,"49":0.11984,"57":0.00666,"61":0.21971,"63":0.01997,"65":0.01332,"67":0.00666,"68":0.01332,"71":0.01332,"74":0.00666,"75":0.01332,"76":0.0799,"77":0.01332,"78":0.01997,"79":0.06658,"80":0.01997,"81":0.01332,"83":0.03995,"84":0.03329,"85":0.03995,"86":0.05992,"87":0.24635,"88":0.04661,"89":0.09321,"90":0.13982,"91":0.23303,"92":0.17311,"93":0.19308,"94":0.97207,"95":26.78513,"96":17.30414,"97":0.02663,_:"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 53 54 55 56 58 59 60 62 64 66 69 70 72 73 98 99"},F:{"79":0.02663,"80":2.76307,"81":1.31163,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"17":0.00666,"18":0.01997,"86":0.01997,"89":0.01997,"90":0.01332,"91":0.01332,"92":0.01997,"93":0.01997,"94":0.09987,"95":3.87496,"96":1.56463,_:"12 13 14 15 16 79 80 81 83 84 85 87 88"},E:{"4":0,"13":0.03995,"14":0.32624,"15":0.65914,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01332,"11.1":0.03995,"12.1":0.05992,"13.1":0.28629,"14.1":1.07194,"15.1":0.83891},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0017,"7.0-7.1":0.00255,"8.1-8.4":0.00426,"9.0-9.2":0.00341,"9.3":0.07067,"10.0-10.2":0.0017,"10.3":0.0562,"11.0-11.2":0.03321,"11.3-11.4":0.01618,"12.0-12.1":0.00937,"12.2-12.5":0.33462,"13.0-13.1":0.02384,"13.2":0.00681,"13.3":0.04087,"13.4-13.7":0.12857,"14.0-14.4":0.47597,"14.5-14.8":3.63404,"15.0-15.1":3.6681},P:{"4":0.22525,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.02184,"8.2":0.01026,"9.2":0.03072,"10.1":0.01024,"11.1-11.2":0.03276,"12.0":0.01092,"13.0":0.06551,"14.0":0.04367,"15.0":1.32117},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.00356,"4.4":0,"4.4.3-4.4.4":0.04706},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.49269,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":23.90342},S:{"2.5":0},R:{_:"0"},M:{"0":0.17378},Q:{"10.4":0.00334},O:{"0":0.21055},H:{"0":0.18668}}; +module.exports={C:{"3":0.00652,"15":0.00652,"49":0.03912,"52":0.04564,"78":0.05216,"79":0.00652,"83":0.00652,"84":0.01956,"88":0.00652,"89":0.01304,"91":0.05216,"92":0.01304,"93":0.03912,"94":0.9128,"95":2.06032,"96":0.00652,_:"2 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 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 80 81 82 85 86 87 90 97 3.5 3.6"},D:{"23":0.02608,"38":0.00652,"43":0.65852,"49":0.0978,"59":0.00652,"61":0.03912,"63":0.01956,"65":0.01304,"67":0.01304,"68":0.01304,"75":0.01304,"76":0.01304,"77":0.00652,"78":0.00652,"79":0.05216,"80":0.01956,"81":0.01304,"83":0.0326,"84":0.05868,"85":0.02608,"86":0.04564,"87":0.24124,"88":0.02608,"89":0.0652,"90":0.07824,"91":0.16952,"92":0.11084,"93":0.3586,"94":0.31948,"95":0.6194,"96":42.81684,"97":0.0326,_:"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 53 54 55 56 57 58 60 62 64 66 69 70 71 72 73 74 98 99"},F:{"73":0.00652,"79":0.00652,"80":0.0326,"81":2.43196,"82":1.66912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.04564,"14":0.27384,"15":0.35208,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01956,"11.1":0.0326,"12.1":0.05216,"13.1":0.26732,"14.1":0.84108,"15.1":1.18012,"15.2":0.1956},B:{"15":0.01304,"17":0.00652,"18":0.01956,"86":0.01304,"89":0.01304,"90":0.01304,"91":0.00652,"92":0.01956,"93":0.00652,"94":0.01956,"95":0.11736,"96":5.24208,_:"12 13 14 16 79 80 81 83 84 85 87 88"},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,"7.0-7.1":0.00266,"8.1-8.4":0.00354,"9.0-9.2":0.00089,"9.3":0.09559,"10.0-10.2":0,"10.3":0.05045,"11.0-11.2":0.03717,"11.3-11.4":0.01593,"12.0-12.1":0.00885,"12.2-12.5":0.34518,"13.0-13.1":0.02301,"13.2":0.00708,"13.3":0.03363,"13.4-13.7":0.12391,"14.0-14.4":0.385,"14.5-14.8":2.35958,"15.0-15.1":4.87494,"15.2":0.47439},P:{"4":0.01084,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.02169,"8.2":0.02052,"9.2":0.021,"10.1":0.03062,"11.1-11.2":0.02169,"12.0":0.02169,"13.0":0.05422,"14.0":0.05422,"15.0":0.14097},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00324,"4.2-4.3":0.00405,"4.4":0,"4.4.3-4.4.4":0.05187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.4238,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.20184},H:{"0":0.20097},L:{"0":25.57988},S:{"2.5":0},R:{_:"0"},M:{"0":0.18096},Q:{"10.4":0.00696}}; 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 8270283acae1d9..9885723e0e7103 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.0178,"86":0.0089,"89":0.3026,"93":0.18245,"94":0.94785,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 87 88 90 91 92 95 96 3.5 3.6"},D:{"46":0.03115,"48":0.10235,"49":0.1246,"68":0.0089,"76":0.1424,"79":0.0356,"81":0.02225,"83":0.01335,"86":0.0089,"87":0.04895,"88":0.04005,"91":0.03115,"92":0.0623,"93":0.1157,"94":0.623,"95":17.04795,"96":9.3717,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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 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 77 78 80 84 85 89 90 97 98 99"},F:{"80":0.0178,"81":0.02225,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.12015,"18":0.0178,"80":0.01335,"84":0.01335,"91":0.0089,"94":0.1602,"95":2.32735,"96":0.623,_:"12 13 14 15 16 79 81 83 85 86 87 88 89 90 92 93"},E:{"4":0,"13":0.01335,"14":0.12905,"15":0.59185,_:"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.0089,"12.1":0.05785,"13.1":0.2492,"14.1":2.9192,"15.1":0.71645},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04856,"8.1-8.4":0,"9.0-9.2":0.00383,"9.3":0.18147,"10.0-10.2":0.02045,"10.3":0.10479,"11.0-11.2":0.00383,"11.3-11.4":0.01661,"12.0-12.1":0.03195,"12.2-12.5":0.32716,"13.0-13.1":0,"13.2":0,"13.3":0.00383,"13.4-13.7":0.19297,"14.0-14.4":0.35783,"14.5-14.8":5.35724,"15.0-15.1":6.12786},P:{"4":0.20801,"5.0-5.4":0.01095,"6.2-6.4":0.03139,"7.2-7.4":0.19675,"8.2":0.01026,"9.2":0.0513,"10.1":0.03107,"11.1-11.2":0.08284,"12.0":0.05178,"13.0":0.08284,"14.0":0.0932,"15.0":4.62885},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.0222},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0801,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":43.29752},S:{"2.5":0},R:{_:"0"},M:{"0":0.11102},Q:{"10.4":0},O:{"0":0.16098},H:{"0":0.61487}}; +module.exports={C:{"89":0.14029,"91":0.03946,"94":0.39456,"95":0.93379,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 90 92 93 96 97 3.5 3.6"},D:{"43":0.01754,"48":0.17536,"49":0.10083,"76":0.97763,"79":0.17974,"81":0.02192,"84":0.0263,"86":0.01315,"87":0.33757,"89":0.05699,"90":0.00877,"91":0.0833,"92":0.05699,"93":0.02192,"94":0.39894,"95":0.24989,"96":26.3303,"97":0.00877,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 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 83 85 88 98 99"},F:{"82":0.05261,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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},E:{"4":0,"11":0.00877,"14":0.23674,"15":0.05261,_:"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.01754,"12.1":0.05699,"13.1":0.15782,"14.1":1.92896,"15.1":0.96886,"15.2":0.07891},B:{"17":0.03946,"18":0.01315,"83":0.12714,"92":0.00877,"95":0.03069,"96":4.16042,_:"12 13 14 15 16 79 80 81 84 85 86 87 88 89 90 91 93 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00451,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02709,"10.0-10.2":0,"10.3":0.52367,"11.0-11.2":0.0948,"11.3-11.4":0,"12.0-12.1":0.01956,"12.2-12.5":0.57935,"13.0-13.1":0,"13.2":0,"13.3":0.02709,"13.4-13.7":0.14296,"14.0-14.4":0.56129,"14.5-14.8":5.01548,"15.0-15.1":7.19593,"15.2":0.85623},P:{"4":0.1972,"5.0-5.4":0.01096,"6.2-6.4":0.06265,"7.2-7.4":0.36537,"8.2":0.02052,"9.2":0.02088,"10.1":0.01024,"11.1-11.2":0.03132,"12.0":0.01044,"13.0":0.07307,"14.0":0.07307,"15.0":0.75163},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.07453,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.36511},H:{"0":0.69663},L:{"0":40.27814},S:{"2.5":0},R:{_:"0"},M:{"0":0.11796},Q:{"10.4":0.03932}}; 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 fa34f475fe662b..6be659e2135def 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.03389,"30":0.00242,"35":0.09926,"43":0.00242,"47":0.00242,"52":0.32926,"56":0.00726,"57":0.00484,"60":0.00484,"61":0.00484,"64":0.00484,"65":0.00484,"66":0.00726,"68":0.01453,"69":0.00242,"73":0.03874,"77":0.00484,"78":0.01453,"81":0.00484,"84":0.00484,"85":0.00242,"86":0.00484,"87":0.00484,"88":0.01937,"89":0.00726,"90":0.00484,"91":0.01211,"92":0.01453,"93":0.16221,"94":0.8764,"95":0.00968,_:"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 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 58 59 62 63 67 70 71 72 74 75 76 79 80 82 83 96 3.5 3.6"},D:{"5":0.00726,"24":0.00242,"38":0.00242,"47":0.01453,"49":0.04358,"60":0.00242,"63":0.00726,"64":0.21547,"65":0.00968,"67":0.00484,"68":0.00242,"69":0.00484,"70":0.00484,"71":0.00968,"73":0.00968,"74":0.00484,"75":0.00726,"76":0.00726,"77":0.00484,"78":0.00484,"79":0.03632,"80":0.00726,"81":0.01211,"83":0.00726,"84":0.00484,"85":0.00726,"86":0.03147,"87":0.34136,"88":0.03147,"89":0.03632,"90":0.02421,"91":0.092,"92":0.1041,"93":0.11137,"94":0.60525,"95":8.94075,"96":5.73051,_:"4 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 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 61 62 66 72 97 98 99"},F:{"77":0.00242,"79":0.00726,"80":2.07238,"81":0.92724,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00726,"15":0.00242,"17":0.00484,"18":0.00726,"84":0.00242,"89":0.00484,"91":0.00484,"92":0.00968,"93":0.00726,"94":0.02179,"95":0.9103,"96":0.33894,_:"12 13 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.00484,"14":0.04358,"15":0.08474,_:"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.04842,"12.1":0.00484,"13.1":0.03632,"14.1":0.138,"15.1":0.15252},G:{"8":0,"3.2":0.00099,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00298,"6.0-6.1":0.00149,"7.0-7.1":0.01044,"8.1-8.4":0.0005,"9.0-9.2":0.00348,"9.3":0.01293,"10.0-10.2":0.00149,"10.3":0.02586,"11.0-11.2":0.00845,"11.3-11.4":0.01094,"12.0-12.1":0.00945,"12.2-12.5":0.32225,"13.0-13.1":0.00597,"13.2":0.00199,"13.3":0.0189,"13.4-13.7":0.09697,"14.0-14.4":0.26605,"14.5-14.8":2.47058,"15.0-15.1":1.70076},P:{"4":0.4278,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.60095,"8.2":0.01026,"9.2":0.0713,"10.1":0.04074,"11.1-11.2":0.29538,"12.0":0.10186,"13.0":0.2852,"14.0":0.33613,"15.0":2.23065},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00787,"4.2-4.3":0.00525,"4.4":0,"4.4.3-4.4.4":0.12332},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00968,"11":0.092,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":66.67417},S:{"2.5":0},R:{_:"0"},M:{"0":0.06064},Q:{"10.4":0},O:{"0":0.0379},H:{"0":0.15788}}; +module.exports={C:{"17":0.00252,"24":0.03786,"28":0.01767,"30":0.00505,"35":0.11863,"43":0.00505,"47":0.00505,"52":0.38112,"56":0.00505,"57":0.00252,"60":0.00505,"61":0.00505,"64":0.00505,"65":0.00505,"66":0.00505,"68":0.01262,"69":0.00252,"73":0.04543,"77":0.01514,"78":0.0101,"82":0.00252,"84":0.00505,"87":0.00505,"88":0.01262,"89":0.01262,"90":0.00757,"91":0.01262,"92":0.00505,"93":0.01514,"94":0.34074,"95":0.61081,"96":0.00252,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 25 26 27 29 31 32 33 34 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 58 59 62 63 67 70 71 72 74 75 76 79 80 81 83 85 86 97 3.5 3.6"},D:{"38":0.00505,"47":0.01514,"49":0.03029,"61":0.00252,"63":0.00505,"64":0.24735,"65":0.00757,"67":0.00252,"69":0.00505,"70":0.00505,"71":0.0101,"73":0.00757,"74":0.00505,"75":0.00757,"76":0.00505,"77":0.00505,"78":0.00505,"79":0.03281,"80":0.0101,"81":0.0101,"83":0.00757,"84":0.00505,"85":0.00757,"86":0.01767,"87":0.4316,"88":0.02019,"89":0.03281,"90":0.02019,"91":0.04543,"92":0.08077,"93":0.13882,"94":0.36093,"95":0.24483,"96":14.2606,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 62 66 68 72 97 98 99"},F:{"36":0.00252,"77":0.00757,"79":0.00252,"80":0.00757,"81":1.11308,"82":0.46694,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.00505,"14":0.03029,"15":0.03534,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05048,"11.1":0.00252,"12.1":0.00252,"13.1":0.03029,"14.1":0.11358,"15.1":0.17416,"15.2":0.03534},B:{"12":0.01262,"14":0.00252,"17":0.00505,"18":0.00757,"80":0.03281,"84":0.00252,"86":0.00252,"89":0.00505,"90":0.00252,"91":0.00252,"92":0.00757,"93":0.00757,"94":0.00757,"95":0.03281,"96":1.26452,_:"13 15 16 79 81 83 85 87 88"},G:{"8":0,"3.2":0.00152,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00101,"6.0-6.1":0.00051,"7.0-7.1":0.0142,"8.1-8.4":0,"9.0-9.2":0.00304,"9.3":0.0071,"10.0-10.2":0.00051,"10.3":0.02637,"11.0-11.2":0.00963,"11.3-11.4":0.00862,"12.0-12.1":0.00761,"12.2-12.5":0.32399,"13.0-13.1":0.00558,"13.2":0.00203,"13.3":0.01673,"13.4-13.7":0.10394,"14.0-14.4":0.24286,"14.5-14.8":1.61285,"15.0-15.1":2.51231,"15.2":0.16833},P:{"4":0.37768,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.57163,"8.2":0.02052,"9.2":0.06125,"10.1":0.03062,"11.1-11.2":0.29602,"12.0":0.09187,"13.0":0.28581,"14.0":0.32664,"15.0":0.73495},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0078,"4.2-4.3":0.0052,"4.4":0,"4.4.3-4.4.4":0.10661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00757,"11":0.08834,_:"6 7 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.04486},H:{"0":0.1911},L:{"0":68.02506},S:{"2.5":0},R:{_:"0"},M:{"0":0.05981},Q:{"10.4":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 6e913834fc0056..b783c0d7b4e6ca 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:{"52":0.00326,"78":0.01629,"85":0.00652,"89":0.00652,"91":0.02281,"92":0.01629,"93":0.11077,"94":0.63857,"95":0.00977,"96":0.0619,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 88 90 3.5 3.6"},D:{"34":0.00652,"38":0.02932,"41":0.00652,"49":0.02932,"53":0.00326,"55":0.00326,"56":0.00652,"63":0.00326,"64":0.00326,"65":0.00652,"67":0.00652,"68":0.00652,"69":0.00652,"70":0.00326,"71":0.00326,"73":0.00652,"74":0.02281,"75":0.00977,"76":0.00652,"77":0.00326,"78":0.00652,"79":0.07819,"80":0.01629,"81":0.00326,"83":0.02606,"84":0.01955,"85":0.02606,"86":0.04235,"87":0.10751,"88":0.02932,"89":0.03258,"90":0.03584,"91":0.05539,"92":0.15964,"93":0.23132,"94":0.99043,"95":12.59869,"96":7.8192,"97":0.00652,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 57 58 59 60 61 62 66 72 98 99"},F:{"28":0.00977,"46":0.00652,"65":0.00977,"66":0.00652,"79":0.00326,"80":0.36164,"81":0.17267,_:"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 67 68 69 70 71 72 73 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:{"14":0.00326,"16":0.00652,"17":0.00652,"18":0.03584,"83":0.00326,"84":0.00652,"89":0.00977,"90":0.00326,"91":0.00977,"92":0.01303,"93":0.01303,"94":0.09774,"95":2.0167,"96":0.76889,_:"12 13 15 79 80 81 85 86 87 88"},E:{"4":0,"12":0.00977,"13":0.02606,"14":0.23458,"15":0.46589,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00652,"11.1":0.02281,"12.1":0.04235,"13.1":0.1629,"14.1":0.99043,"15.1":0.93179},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01123,"6.0-6.1":0,"7.0-7.1":0.00842,"8.1-8.4":0,"9.0-9.2":0.00281,"9.3":0.07161,"10.0-10.2":0.0014,"10.3":0.05335,"11.0-11.2":0.0365,"11.3-11.4":0.01404,"12.0-12.1":0.00983,"12.2-12.5":0.32293,"13.0-13.1":0.01825,"13.2":0.00702,"13.3":0.07722,"13.4-13.7":0.26115,"14.0-14.4":0.82979,"14.5-14.8":4.89869,"15.0-15.1":7.41051},P:{"4":0.08297,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.06222,"8.2":0.01026,"9.2":0.01037,"10.1":0.01024,"11.1-11.2":0.08297,"12.0":0.02074,"13.0":0.0726,"14.0":0.12445,"15.0":2.05341},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00506,"4.4":0,"4.4.3-4.4.4":0.01517},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2639,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.22956},S:{"2.5":0},R:{_:"0"},M:{"0":0.10112},Q:{"10.4":0},O:{"0":5.44673},H:{"0":0.99558}}; +module.exports={C:{"52":0.00638,"78":0.00638,"84":0.00638,"89":0.00638,"91":0.0287,"92":0.00957,"93":0.00638,"94":0.21366,"95":0.44327,"96":0.00638,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 90 97 3.5 3.6"},D:{"34":0.00638,"38":0.01595,"49":0.02551,"53":0.00319,"64":0.00319,"65":0.00957,"67":0.00957,"68":0.00957,"71":0.00319,"72":0.00638,"73":0.00319,"74":0.00957,"75":0.00957,"76":0.00957,"77":0.00638,"78":0.00638,"79":0.05102,"80":0.00957,"81":0.00638,"83":0.01595,"84":0.0287,"85":0.0287,"86":0.03827,"87":0.10843,"88":0.0287,"89":0.0287,"90":0.03189,"91":0.04784,"92":0.11799,"93":0.06059,"94":0.28382,"95":0.3763,"96":19.06065,"97":0.01276,"98":0.00319,_:"4 5 6 7 8 9 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 62 63 66 69 70 99"},F:{"28":0.01276,"46":0.00638,"66":0.00319,"80":0.00638,"81":0.26788,"82":0.30296,_:"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 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.03508,"14":0.17221,"15":0.31571,_:"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.02232,"12.1":0.02232,"13.1":0.13075,"14.1":0.75579,"15.1":2.03458,"15.2":0.1754},B:{"17":0.07016,"18":0.04146,"84":0.00638,"85":0.00319,"89":0.00319,"91":0.01276,"92":0.00957,"93":0.00638,"94":0.02232,"95":0.11799,"96":2.5512,_:"12 13 14 15 16 79 80 81 83 86 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00324,"6.0-6.1":0,"7.0-7.1":0.00973,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06325,"10.0-10.2":0,"10.3":0.06001,"11.0-11.2":0.03568,"11.3-11.4":0.0146,"12.0-12.1":0.00487,"12.2-12.5":0.33247,"13.0-13.1":0.01135,"13.2":0.00487,"13.3":0.0519,"13.4-13.7":0.19948,"14.0-14.4":0.75251,"14.5-14.8":3.31009,"15.0-15.1":10.08595,"15.2":1.26338},P:{"4":0.06295,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.04197,"8.2":0.02052,"9.2":0.09342,"10.1":0.03062,"11.1-11.2":0.06295,"12.0":0.02098,"13.0":0.06295,"14.0":0.10492,"15.0":0.22033},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00538,"4.4":0,"4.4.3-4.4.4":0.01506},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18177,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":5.05376},H:{"0":1.04461},L:{"0":46.25755},S:{"2.5":0},R:{_:"0"},M:{"0":0.10217},Q:{"10.4":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 25d7961f00b01d..53fd701e46c17b 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.00473,"48":0.02363,"49":0.0378,"50":0.00473,"52":0.0378,"55":0.02363,"56":0.01418,"57":0.00945,"60":0.02363,"61":0.03308,"67":0.00945,"68":0.0189,"72":0.03308,"73":0.0189,"78":0.27405,"82":0.04725,"84":0.02363,"85":0.00945,"86":0.01418,"88":0.02835,"89":0.08505,"90":0.00945,"91":0.29295,"92":0.08505,"93":0.77018,"94":4.22415,"95":0.00473,_:"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 51 53 54 58 59 62 63 64 65 66 69 70 71 74 75 76 77 79 80 81 83 87 96 3.5 3.6"},D:{"34":0.0189,"38":0.00473,"44":0.00945,"47":0.02835,"49":0.07088,"53":0.00473,"54":0.0378,"57":0.00945,"58":0.01418,"61":0.00945,"62":0.00473,"63":0.01418,"65":0.00945,"68":0.00945,"69":0.00945,"70":0.02835,"71":0.02363,"72":0.01418,"73":0.00945,"74":0.00945,"75":0.00473,"76":0.00945,"77":0.00473,"78":0.00945,"79":0.17955,"80":0.02835,"81":0.01418,"83":0.0189,"84":0.02363,"85":0.07088,"86":0.0378,"87":0.67568,"88":0.03308,"89":0.0378,"90":0.02363,"91":0.06143,"92":0.17483,"93":0.18428,"94":0.63315,"95":14.71365,"96":9.02948,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 45 46 48 50 51 52 55 56 59 60 64 66 67 97 98 99"},F:{"79":0.01418,"80":0.8505,"81":0.36383,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"15":0.0189,"16":0.02363,"17":0.05198,"18":0.02835,"84":0.00945,"85":0.00473,"86":0.0189,"89":0.0189,"90":0.01418,"91":0.0189,"92":0.02835,"93":0.01418,"94":0.1323,"95":4.36118,"96":1.512,_:"12 13 14 79 80 81 83 87 88"},E:{"4":0,"12":0.00473,"13":0.0378,"14":0.5859,"15":0.84105,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02835,"11.1":0.04253,"12.1":0.14648,"13.1":0.6804,"14.1":1.93253,"15.1":0.8316},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00258,"7.0-7.1":0.00644,"8.1-8.4":0.00129,"9.0-9.2":0,"9.3":0.21512,"10.0-10.2":0.0219,"10.3":0.07986,"11.0-11.2":0.01932,"11.3-11.4":0.0219,"12.0-12.1":0.03092,"12.2-12.5":0.4676,"13.0-13.1":0.02447,"13.2":0.01031,"13.3":0.06441,"13.4-13.7":0.19837,"14.0-14.4":0.81024,"14.5-14.8":5.97827,"15.0-15.1":4.92328},P:{"4":0.01045,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.08363,"8.2":0.01026,"9.2":0.04182,"10.1":0.01024,"11.1-11.2":0.24044,"12.0":0.02091,"13.0":0.16727,"14.0":0.1359,"15.0":3.12577},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00131,"4.2-4.3":0.00131,"4.4":0,"4.4.3-4.4.4":0.06069},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18428,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":36.56415},S:{"2.5":0},R:{_:"0"},M:{"0":0.3165},Q:{"10.4":0},O:{"0":0.24265},H:{"0":0.11986}}; +module.exports={C:{"11":0.01299,"48":0.03464,"49":0.01299,"52":0.02165,"53":0.00433,"55":0.01732,"56":0.01732,"57":0.00433,"58":0.00433,"59":0.06062,"60":0.01732,"61":0.00866,"63":0.00433,"68":0.00866,"72":0.06495,"73":0.02165,"77":0.00866,"78":0.29444,"81":0.00866,"82":0.03031,"84":0.02165,"85":0.00433,"86":0.00433,"88":0.02598,"89":0.03031,"91":0.15155,"92":0.04763,"93":0.03464,"94":1.65406,"95":3.11327,"96":0.01299,_:"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 50 51 54 62 64 65 66 67 69 70 71 74 75 76 79 80 83 87 90 97 3.5 3.6"},D:{"34":0.00433,"46":0.00866,"47":0.01299,"49":0.03897,"53":0.00866,"54":0.02165,"57":0.00433,"61":0.00866,"63":0.01299,"65":0.01299,"68":0.00433,"69":0.00433,"70":0.02165,"71":0.00866,"72":0.01299,"74":0.00866,"75":0.00433,"76":0.00866,"78":0.00866,"79":0.25114,"80":0.02165,"81":0.02165,"83":0.01732,"84":0.01732,"85":0.03897,"86":0.03464,"87":0.3031,"88":0.03031,"89":0.02598,"90":0.01732,"91":0.0866,"92":0.08227,"93":0.05629,"94":0.1732,"95":0.42434,"96":21.43783,_:"4 5 6 7 8 9 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 48 50 51 52 55 56 58 59 60 62 64 66 67 73 77 97 98 99"},F:{"46":0.00433,"80":0.01299,"81":0.63218,"82":0.53259,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.02598,"13":0.05629,"14":0.30743,"15":0.48496,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00433,"10.1":0.02165,"11.1":0.06062,"12.1":0.13856,"13.1":0.49795,"14.1":1.49385,"15.1":1.59344,"15.2":0.18619},B:{"15":0.01732,"16":0.00866,"17":0.03897,"18":0.03031,"84":0.02598,"86":0.01732,"89":0.03897,"90":0.00866,"91":0.01299,"92":0.02598,"93":0.00433,"94":0.06928,"95":0.22083,"96":4.93187,_:"12 13 14 79 80 81 83 85 87 88"},G:{"8":0,"3.2":0,"4.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.07823,"10.0-10.2":0.02066,"10.3":0.08266,"11.0-11.2":0.01476,"11.3-11.4":0.01771,"12.0-12.1":0.04428,"12.2-12.5":0.51662,"13.0-13.1":0.04576,"13.2":0.00886,"13.3":0.08413,"13.4-13.7":0.17713,"14.0-14.4":0.79116,"14.5-14.8":4.13589,"15.0-15.1":8.0238,"15.2":0.71441},P:{"4":0.0103,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.08244,"8.2":0.02052,"9.2":0.02061,"10.1":0.03062,"11.1-11.2":0.31944,"12.0":0.02061,"13.0":0.18548,"14.0":0.13396,"15.0":0.9274},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0022,"4.2-4.3":0.0022,"4.4":0,"4.4.3-4.4.4":0.06931},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19485,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.39123},H:{"0":0.1503},L:{"0":38.28939},S:{"2.5":0},R:{_:"0"},M:{"0":0.37422},Q:{"10.4":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 49601bc6a82c2b..611e417f469f6c 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.19568,"55":0.00425,"68":0.00425,"72":0.00425,"78":0.0553,"81":0.00425,"82":0.00425,"84":0.01702,"85":0.00425,"86":0.00425,"87":0.00425,"88":0.02127,"89":0.01702,"90":0.01276,"91":0.05105,"92":0.02552,"93":0.45518,"94":2.62897,"95":0.02127,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 69 70 71 73 74 75 76 77 79 80 83 96 3.5 3.6"},D:{"38":0.00851,"42":0.00425,"49":0.17441,"53":0.00425,"60":0.1574,"61":0.11911,"67":0.02127,"68":0.02552,"69":0.05956,"70":0.01702,"71":0.01276,"72":0.00851,"73":0.01276,"74":0.01276,"75":0.01276,"76":0.02552,"77":0.01276,"78":0.01702,"79":0.06381,"80":0.02978,"81":0.03829,"83":0.02127,"84":0.02978,"85":0.02552,"86":0.03403,"87":0.28502,"88":0.0553,"89":0.04254,"90":0.08083,"91":0.08508,"92":0.14889,"93":0.16165,"94":0.67213,"95":17.74343,"96":10.82643,"97":0.01276,_:"4 5 6 7 8 9 10 11 12 13 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 54 55 56 57 58 59 62 63 64 65 66 98 99"},F:{"36":0.01702,"78":0.02552,"79":0.01702,"80":1.85474,"81":0.78274,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00425,"17":0.00425,"18":0.02127,"84":0.00425,"89":0.00851,"91":0.00425,"92":0.01702,"93":0.00851,"94":0.05956,"95":1.71436,"96":0.64235,_:"12 13 14 15 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.01702,"14":0.10635,"15":0.19568,_:"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.01276,"12.1":0.02127,"13.1":0.08083,"14.1":0.3233,"15.1":0.29778},G:{"8":0,"3.2":0.00974,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03355,"6.0-6.1":0.00216,"7.0-7.1":0.00216,"8.1-8.4":0.00216,"9.0-9.2":0.00108,"9.3":0.03896,"10.0-10.2":0.00541,"10.3":0.05087,"11.0-11.2":0.02056,"11.3-11.4":0.02056,"12.0-12.1":0.02165,"12.2-12.5":0.31387,"13.0-13.1":0.01948,"13.2":0.01407,"13.3":0.0736,"13.4-13.7":0.20564,"14.0-14.4":0.7154,"14.5-14.8":4.81405,"15.0-15.1":4.45473},P:{"4":0.14424,"5.0-5.4":0.01095,"6.2-6.4":0.03056,"7.2-7.4":0.08363,"8.2":0.01026,"9.2":0.04121,"10.1":0.01024,"11.1-11.2":0.17515,"12.0":0.06182,"13.0":0.17515,"14.0":0.19575,"15.0":3.13201},I:{"0":0,"3":0,"4":0.00414,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00414,"4.2-4.3":0.01243,"4.4":0,"4.4.3-4.4.4":0.10569},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01373,"9":0.00458,"11":0.22418,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":42.88117},S:{"2.5":0},R:{_:"0"},M:{"0":0.18962},Q:{"10.4":0},O:{"0":0.05746},H:{"0":0.26112}}; +module.exports={C:{"52":0.15962,"55":0.00863,"68":0.00431,"69":0.00431,"72":0.00863,"78":0.04314,"81":0.00431,"82":0.00431,"84":0.01294,"86":0.00863,"88":0.01726,"89":0.01294,"90":0.01294,"91":0.05608,"92":0.02157,"93":0.02588,"94":1.0483,"95":2.07503,"96":0.01726,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 70 71 73 74 75 76 77 79 80 83 85 87 97 3.5 3.6"},D:{"38":0.00863,"49":0.16825,"51":0.01726,"53":0.00431,"58":0.00431,"60":0.36238,"61":0.03883,"65":0.00431,"67":0.01726,"69":0.11648,"70":0.01294,"71":0.01294,"72":0.00863,"73":0.00863,"74":0.00863,"75":0.01294,"76":0.02157,"77":0.01294,"78":0.01726,"79":0.05608,"80":0.0302,"81":0.03451,"83":0.01726,"84":0.04314,"85":0.02588,"86":0.03451,"87":0.22001,"88":0.04745,"89":0.04314,"90":0.05177,"91":0.06902,"92":0.12942,"93":0.34081,"94":0.19413,"95":0.47023,"96":28.7183,"97":0.01294,"98":0.00431,_:"4 5 6 7 8 9 10 11 12 13 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 59 62 63 64 66 68 99"},F:{"36":0.00863,"78":0.00863,"79":0.00863,"80":0.02157,"81":1.31146,"82":1.33734,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02157,"14":0.09059,"15":0.09922,_:"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.02157,"13.1":0.06902,"14.1":0.2459,"15.1":0.4012,"15.2":0.07765},B:{"17":0.00431,"18":0.02157,"84":0.00863,"85":0.00431,"89":0.00863,"91":0.00431,"92":0.01294,"93":0.00431,"94":0.01294,"95":0.05608,"96":2.32956,_:"12 13 14 15 16 79 80 81 83 86 87 88 90"},G:{"8":0,"3.2":0.01962,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.07304,"6.0-6.1":0.00327,"7.0-7.1":0.00436,"8.1-8.4":0.00327,"9.0-9.2":0,"9.3":0.0327,"10.0-10.2":0.00327,"10.3":0.04906,"11.0-11.2":0.02398,"11.3-11.4":0.0218,"12.0-12.1":0.01962,"12.2-12.5":0.27689,"13.0-13.1":0.01744,"13.2":0.0109,"13.3":0.05778,"13.4-13.7":0.19295,"14.0-14.4":0.62464,"14.5-14.8":3.13954,"15.0-15.1":5.83431,"15.2":0.48401},P:{"4":0.08224,"5.0-5.4":0.02042,"6.2-6.4":0.03062,"7.2-7.4":0.08244,"8.2":0.02052,"9.2":0.32897,"10.1":0.03062,"11.1-11.2":0.16448,"12.0":0.0514,"13.0":0.1542,"14.0":0.18504,"15.0":0.49345},I:{"0":0,"3":0,"4":0.00464,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00232,"4.2-4.3":0.02322,"4.4":0,"4.4.3-4.4.4":0.13468},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01452,"9":0.00484,"10":0.00484,"11":0.17424,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.07959},H:{"0":0.27987},L:{"0":42.10979},S:{"2.5":0},R:{_:"0"},M:{"0":0.21035},Q:{"10.4":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 f21a7fda70d752..f78edf48023439 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:{"52":0.16591,"56":0.01345,"61":0.00448,"65":0.00448,"66":0.00897,"68":0.00448,"69":0.00897,"72":0.00897,"73":0.01345,"78":0.04932,"79":0.01345,"80":0.00897,"81":0.00897,"82":0.00897,"83":0.00448,"84":0.04484,"85":0.00897,"86":0.00448,"87":0.01794,"88":0.06278,"89":0.03587,"90":0.01345,"91":0.04484,"92":0.139,"93":0.56947,"94":4.65439,"95":0.04932,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 62 63 64 67 70 71 74 75 76 77 96 3.5 3.6"},D:{"29":0.00448,"34":0.00448,"38":0.01345,"43":0.00897,"47":0.00897,"48":0.01345,"49":0.15246,"53":0.00897,"58":0.00448,"61":0.14349,"63":0.00897,"65":0.00897,"66":0.00897,"67":0.01345,"68":0.01794,"69":0.00448,"70":0.01345,"71":0.00897,"72":0.00897,"73":0.01345,"74":0.00897,"75":0.01345,"76":0.00897,"77":0.01345,"78":0.01345,"79":0.06278,"80":0.03139,"81":0.02242,"83":0.03139,"84":0.05381,"85":0.04932,"86":0.05829,"87":0.12555,"88":0.04932,"89":0.05829,"90":0.04484,"91":0.06726,"92":0.26904,"93":0.17936,"94":0.71296,"95":13.55065,"96":16.55493,"97":0.01345,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 51 52 54 55 56 57 59 60 62 64 98 99"},F:{"36":0.01345,"70":0.00448,"77":0.00448,"79":0.04484,"80":1.38107,"81":0.60086,_:"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 71 72 73 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:{"13":0.00448,"17":0.00448,"18":0.03139,"84":0.00897,"86":0.00448,"89":0.00897,"92":0.00897,"94":0.0269,"95":1.03132,"96":0.4215,_:"12 14 15 16 79 80 81 83 85 87 88 90 91 93"},E:{"4":0.00897,"12":0.00897,"13":0.01345,"14":0.08071,"15":0.10313,_:"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.00897,"12.1":0.01794,"13.1":0.08968,"14.1":0.23765,"15.1":0.27801},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00661,"6.0-6.1":0,"7.0-7.1":0.02381,"8.1-8.4":0.00529,"9.0-9.2":0,"9.3":0.04497,"10.0-10.2":0.01058,"10.3":0.06613,"11.0-11.2":0.0291,"11.3-11.4":0.05423,"12.0-12.1":0.02381,"12.2-12.5":0.73008,"13.0-13.1":0.03042,"13.2":0.0119,"13.3":0.11374,"13.4-13.7":0.3862,"14.0-14.4":1.04354,"14.5-14.8":6.40935,"15.0-15.1":4.2297},P:{"4":0.05219,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":0.01044,"8.2":0.0618,"9.2":0.01044,"10.1":0.02037,"11.1-11.2":0.1357,"12.0":0.03132,"13.0":0.12526,"14.0":0.12526,"15.0":2.07723},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.00517,"4.4":0,"4.4.3-4.4.4":0.02585},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.085,"9":0.02125,"10":0.03188,"11":0.35063,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.64807},S:{"2.5":0},R:{_:"0"},M:{"0":0.182},Q:{"10.4":0},O:{"0":0.04412},H:{"0":0.26106}}; +module.exports={C:{"48":0.0048,"52":0.17764,"56":0.0096,"66":0.0144,"68":0.0048,"72":0.0096,"78":0.02881,"79":0.0048,"80":0.0144,"81":0.0096,"82":0.0048,"83":0.0048,"84":0.03361,"85":0.0048,"87":0.0096,"88":0.04321,"89":0.02881,"90":0.0096,"91":0.04321,"92":0.11522,"93":0.04321,"94":1.06582,"95":2.42931,"96":0.02401,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 67 69 70 71 73 74 75 76 77 86 97 3.5 3.6"},D:{"29":0.0048,"38":0.0096,"47":0.0096,"48":0.0096,"49":0.12003,"53":0.0048,"61":0.04801,"63":0.0096,"66":0.0048,"67":0.0096,"68":0.0192,"69":0.0048,"70":0.0144,"71":0.0048,"72":0.0096,"73":0.0192,"74":0.0096,"75":0.0144,"76":0.0096,"77":0.0096,"78":0.0144,"79":0.05281,"80":0.0192,"81":0.0192,"83":0.02401,"84":0.04321,"85":0.03841,"86":0.07202,"87":0.11522,"88":0.03841,"89":0.03841,"90":0.02401,"91":0.05281,"92":0.11522,"93":0.25925,"94":0.18244,"95":0.34567,"96":35.5034,"97":0.0096,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 58 59 60 62 64 65 98 99"},F:{"36":0.0096,"77":0.0096,"79":0.0096,"80":0.0192,"81":0.72495,"82":1.07062,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.0048,"12":0.0048,"13":0.0192,"14":0.05761,"15":0.04801,_:"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.0048,"12.1":0.0144,"13.1":0.08162,"14.1":0.15843,"15.1":0.24005,"15.2":0.04801},B:{"17":0.0048,"18":0.0192,"84":0.0096,"85":0.0096,"94":0.0048,"95":0.02881,"96":1.28187,_:"12 13 14 15 16 79 80 81 83 86 87 88 89 90 91 92 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00226,"6.0-6.1":0.00339,"7.0-7.1":0.02715,"8.1-8.4":0.00566,"9.0-9.2":0.00226,"9.3":0.03847,"10.0-10.2":0.00679,"10.3":0.05544,"11.0-11.2":0.02715,"11.3-11.4":0.04639,"12.0-12.1":0.0181,"12.2-12.5":0.60301,"13.0-13.1":0.02715,"13.2":0.01018,"13.3":0.08033,"13.4-13.7":0.28623,"14.0-14.4":0.79421,"14.5-14.8":4.08417,"15.0-15.1":4.82294,"15.2":0.36656},P:{"4":0.03162,"5.0-5.4":0.01032,"6.2-6.4":0.03059,"7.2-7.4":0.01054,"8.2":0.02052,"9.2":0.01054,"10.1":0.04079,"11.1-11.2":0.10539,"12.0":0.03162,"13.0":0.11593,"14.0":0.09485,"15.0":0.26348},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00398,"4.2-4.3":0.00697,"4.4":0,"4.4.3-4.4.4":0.03584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.07317,"9":0.01689,"10":0.02252,"11":0.37713,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.03119},H:{"0":0.23626},L:{"0":39.5291},S:{"2.5":0},R:{_:"0"},M:{"0":0.15597},Q:{"10.4":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 74fe7aed562f52..03e342574cf4f3 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:{"4":0.01281,"33":0.01922,"44":0.01281,"45":0.02563,"50":0.03844,"51":0.01922,"52":0.32676,"53":0.01281,"54":0.01281,"55":0.15377,"56":0.05126,"57":0.00641,"59":0.00641,"60":0.01922,"61":0.00641,"63":0.00641,"65":0.00641,"66":0.01281,"67":0.00641,"68":0.03844,"69":0.01922,"70":0.04485,"71":0.01281,"72":0.04485,"73":0.01922,"74":0.02563,"75":0.04485,"76":0.03204,"77":0.03844,"78":0.12173,"79":0.04485,"80":0.05126,"81":0.07688,"82":0.05126,"83":0.04485,"84":0.06407,"85":0.02563,"86":0.05126,"87":0.03204,"88":0.10892,"89":0.0897,"90":0.06407,"91":0.09611,"92":0.08329,"93":0.4613,"94":2.12072,"95":0.01922,_:"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 34 35 36 37 38 39 40 41 42 43 46 47 48 49 58 62 64 96 3.5 3.6"},D:{"34":0.01281,"35":0.00641,"38":0.01922,"39":0.00641,"41":0.03204,"43":0.00641,"45":0.01922,"47":0.01922,"48":0.06407,"49":0.32676,"50":0.01922,"51":0.16018,"52":0.01281,"53":0.01281,"55":0.01281,"56":0.08329,"57":0.01281,"58":0.01281,"59":0.03844,"60":0.01281,"61":0.20502,"62":0.01281,"63":0.01922,"64":0.02563,"65":0.01281,"66":0.03204,"67":0.05126,"68":0.01281,"69":0.01922,"70":0.03844,"71":0.02563,"72":0.04485,"73":0.09611,"74":0.05126,"75":0.07688,"76":0.06407,"77":0.03844,"78":0.03204,"79":0.30113,"80":0.15377,"81":0.09611,"83":0.16018,"84":0.22425,"85":0.19221,"86":0.41005,"87":0.83932,"88":0.58944,"89":0.20502,"90":0.15377,"91":0.1794,"92":0.38442,"93":0.59585,"94":1.21092,"95":16.61335,"96":9.28374,"97":0.01922,"98":0.00641,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 40 42 44 46 54 99"},F:{"34":0.00641,"35":0.00641,"36":0.03844,"42":0.01281,"44":0.00641,"47":0.00641,"54":0.00641,"60":0.01281,"68":0.01281,"69":0.00641,"70":0.01281,"71":0.01922,"72":0.01281,"73":0.01281,"74":0.01922,"75":0.01922,"76":0.03204,"77":0.05126,"78":0.03844,"79":0.10892,"80":3.90186,"81":1.40313,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 43 45 46 48 49 50 51 52 53 55 56 57 58 62 63 64 65 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.04485},B:{"12":0.00641,"14":0.01281,"15":0.01281,"16":0.01281,"17":0.01281,"18":0.07048,"81":0.00641,"83":0.00641,"84":0.01922,"85":0.01922,"86":0.01922,"87":0.01281,"89":0.01281,"90":0.00641,"91":0.01281,"92":0.01922,"93":0.01281,"94":0.06407,"95":1.51205,"96":0.56382,_:"13 79 80 88"},E:{"4":0.00641,"10":0.01281,"12":0.01281,"13":0.07048,"14":0.23706,"15":0.34598,_:"0 5 6 7 8 9 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.13455,"11.1":0.01922,"12.1":0.04485,"13.1":0.1794,"14.1":0.66633,"15.1":0.57022},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00086,"5.0-5.1":0.00863,"6.0-6.1":0.0069,"7.0-7.1":0.00776,"8.1-8.4":0.00604,"9.0-9.2":0.00949,"9.3":0.07591,"10.0-10.2":0.01898,"10.3":0.45028,"11.0-11.2":0.0276,"11.3-11.4":0.03278,"12.0-12.1":0.03278,"12.2-12.5":0.33987,"13.0-13.1":0.03105,"13.2":0.0207,"13.3":0.07246,"13.4-13.7":0.24153,"14.0-14.4":0.72804,"14.5-14.8":3.15112,"15.0-15.1":3.3616},P:{"4":0.07468,"5.0-5.4":0.01067,_:"6.2-6.4 10.1","7.2-7.4":0.14937,"8.2":0.02134,"9.2":0.04268,"11.1-11.2":0.12803,"12.0":0.04268,"13.0":0.11736,"14.0":0.1387,"15.0":1.02423},I:{"0":0,"3":0,"4":0.0018,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00359,"4.2-4.3":0.01976,"4.4":0,"4.4.3-4.4.4":0.07902},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01445,"7":0.01445,"8":0.10113,"9":0.04334,"10":0.04334,"11":0.5201,_:"5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.67835},S:{"2.5":0},R:{_:"0"},M:{"0":0.12213},Q:{"10.4":0.00718},O:{"0":0.27658},H:{"0":0.72774}}; +module.exports={C:{"4":0.01253,"41":0.0188,"50":0.0188,"51":0.0188,"52":0.29455,"53":0.00627,"55":0.28202,"56":0.0376,"57":0.00627,"60":0.0188,"68":0.02507,"69":0.00627,"70":0.0188,"71":0.01253,"72":0.03134,"73":0.01253,"74":0.01253,"75":0.0188,"76":0.02507,"77":0.01253,"78":0.0752,"79":0.03134,"80":0.0376,"81":0.06267,"82":0.04387,"83":0.03134,"84":0.20054,"85":0.01253,"86":0.0376,"87":0.0188,"88":0.08774,"89":0.0752,"90":0.05014,"91":0.08774,"92":0.19428,"93":0.04387,"94":0.74577,"95":1.62315,"96":0.01253,_:"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 42 43 44 45 46 47 48 49 54 58 59 61 62 63 64 65 66 67 97 3.5 3.6"},D:{"38":0.01253,"41":0.0188,"45":0.01253,"47":0.00627,"48":0.05014,"49":0.21935,"51":0.14414,"53":0.01253,"56":0.06267,"57":0.01253,"58":0.00627,"59":0.01253,"61":0.04387,"63":0.01253,"64":0.0188,"65":0.01253,"66":0.01253,"67":0.02507,"68":0.01253,"69":0.0188,"70":0.0376,"71":0.0188,"72":0.0376,"73":0.05014,"74":0.02507,"75":0.02507,"76":0.06267,"77":0.02507,"78":0.03134,"79":0.22561,"80":0.12534,"81":0.08774,"83":0.15041,"84":0.25068,"85":0.19428,"86":0.41989,"87":0.48256,"88":0.46376,"89":0.14414,"90":0.14414,"91":0.14414,"92":0.35095,"93":0.47003,"94":0.59537,"95":0.73324,"96":23.71433,"97":0.01253,"98":0.01253,_:"4 5 6 7 8 9 10 11 12 13 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 46 50 52 54 55 60 62 99"},F:{"36":0.03134,"54":0.00627,"60":0.01253,"68":0.01253,"69":0.00627,"70":0.00627,"71":0.01253,"72":0.01253,"73":0.0188,"74":0.0188,"75":0.02507,"76":0.75831,"77":0.0564,"78":0.04387,"79":0.06267,"80":0.22561,"81":2.59454,"82":2.93922,_:"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 55 56 57 58 62 63 64 65 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02507},E:{"4":0.00627,"5":0.00627,"10":0.01253,"12":0.01253,"13":0.0564,"14":0.19428,"15":0.17548,_:"0 6 7 8 9 11 3.1 3.2 6.1 7.1 10.1","5.1":0.11281,"9.1":0.01253,"11.1":0.01253,"12.1":0.04387,"13.1":0.15041,"14.1":0.50763,"15.1":0.63923,"15.2":0.11281},B:{"14":0.01253,"15":0.00627,"16":0.01253,"17":0.01253,"18":0.0564,"84":0.0188,"85":0.01253,"86":0.01253,"87":0.00627,"89":0.01253,"90":0.00627,"92":0.36975,"93":0.23188,"94":0.01253,"95":0.7019,"96":2.16212,_:"12 13 79 80 81 83 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00087,"5.0-5.1":0.01306,"6.0-6.1":0.00609,"7.0-7.1":0.00609,"8.1-8.4":0.00958,"9.0-9.2":0.00784,"9.3":0.05834,"10.0-10.2":0.01567,"10.3":0.05573,"11.0-11.2":0.02612,"11.3-11.4":0.03047,"12.0-12.1":0.02873,"12.2-12.5":0.36047,"13.0-13.1":0.0296,"13.2":0.01741,"13.3":0.06269,"13.4-13.7":0.22116,"14.0-14.4":0.68177,"14.5-14.8":2.35179,"15.0-15.1":4.36922,"15.2":0.35264},P:{"4":0.02217,"5.0-5.4":0.01108,_:"6.2-6.4 8.2 10.1","7.2-7.4":0.09976,"9.2":0.03325,"11.1-11.2":0.07759,"12.0":0.03325,"13.0":0.08867,"14.0":0.11084,"15.0":0.19951},I:{"0":0,"3":0,"4":0.00467,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0028,"4.2-4.3":0.01027,"4.4":0,"4.4.3-4.4.4":0.05693},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01434,"7":0.01434,"8":0.10756,"9":0.04303,"10":0.04303,"11":0.52348,_:"5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.24638},H:{"0":0.7033},L:{"0":24.46186},S:{"2.5":0},R:{_:"0"},M:{"0":0.12319},Q:{"10.4":0.00747}}; 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 46569e3e366210..97144174c49f49 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:{"30":0.00473,"31":0.01893,"40":0.00946,"43":0.00473,"47":0.01893,"48":0.0142,"50":0.00946,"52":0.0142,"56":0.00473,"63":0.00473,"66":0.0142,"72":0.00473,"78":0.03312,"83":0.00946,"87":0.00946,"88":0.0142,"89":0.0142,"90":0.0142,"91":0.01893,"92":0.03312,"93":0.44481,"94":2.45118,"95":0.16562,_:"2 3 4 5 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 34 35 36 37 38 39 41 42 44 45 46 49 51 53 54 55 57 58 59 60 61 62 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 96 3.5 3.6"},D:{"38":0.05678,"39":0.04259,"49":0.01893,"60":0.00946,"62":0.02366,"63":0.01893,"64":0.00473,"65":0.00473,"67":0.0142,"69":0.00946,"70":0.00473,"71":0.02366,"72":0.00946,"74":0.02839,"75":0.0142,"76":0.00473,"77":0.02366,"78":0.0142,"79":0.05678,"80":0.51579,"81":0.02366,"83":0.00946,"84":0.06152,"85":0.0142,"86":0.04259,"87":0.09464,"88":0.03786,"89":0.05205,"90":0.07571,"91":0.16562,"92":0.23187,"93":0.23187,"94":1.36282,"95":15.96104,"96":10.68486,"97":0.04259,_:"4 5 6 7 8 9 10 11 12 13 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 58 59 61 66 68 73 98 99"},F:{"79":0.00473,"80":0.71453,"81":0.31231,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.13723,"13":0.13723,"14":0.05205,"15":0.0142,"16":0.03786,"17":0.03312,"18":0.09937,"84":0.0142,"85":0.00946,"87":0.00473,"89":0.02366,"90":0.0142,"91":0.00946,"92":0.04259,"93":0.02366,"94":0.08044,"95":4.31558,"96":1.77923,_:"79 80 81 83 86 88"},E:{"4":0,"11":0.00473,"13":0.00946,"14":0.09464,"15":0.16089,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00946,"10.1":0.0142,"11.1":0.00946,"12.1":0.02366,"13.1":0.09464,"14.1":0.29338,"15.1":0.17508},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00197,"6.0-6.1":0,"7.0-7.1":0.00328,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01774,"10.0-10.2":0.00394,"10.3":0.04139,"11.0-11.2":0.01511,"11.3-11.4":0.02299,"12.0-12.1":0.03744,"12.2-12.5":0.68977,"13.0-13.1":0.03088,"13.2":0.00657,"13.3":0.06504,"13.4-13.7":0.13927,"14.0-14.4":0.7732,"14.5-14.8":2.40107,"15.0-15.1":2.31829},P:{"4":0.16854,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.09481,"8.2":0.01026,"9.2":0.05267,"10.1":0.01053,"11.1-11.2":0.14748,"12.0":0.04214,"13.0":0.07374,"14.0":0.16854,"15.0":0.87432},I:{"0":0,"3":0,"4":0.0002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0003,"4.2-4.3":0.001,"4.4":0,"4.4.3-4.4.4":0.02483},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24606,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01053},N:{"10":0.02658,"11":0.22582},L:{"0":37.42567},S:{"2.5":0.0632},R:{_:"0"},M:{"0":0.26862},Q:{"10.4":0.01053},O:{"0":0.32655},H:{"0":10.05768}}; +module.exports={C:{"31":0.00471,"44":0.00471,"47":0.01882,"48":0.00941,"49":0.00471,"50":0.00471,"52":0.02353,"72":0.00471,"78":0.00941,"81":0.00471,"82":0.00471,"87":0.00941,"88":0.00941,"89":0.02824,"90":0.00471,"91":0.06118,"92":0.00941,"93":0.02353,"94":0.7059,"95":2.65889,"96":0.13177,_:"2 3 4 5 6 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 45 46 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 83 84 85 86 97 3.5 3.6"},D:{"22":0.00471,"34":0.00471,"38":0.05647,"43":0.00941,"49":0.02353,"50":0.00471,"53":0.00471,"58":0.00471,"60":0.02353,"61":0.00471,"63":0.01412,"64":0.00941,"65":0.00941,"67":0.00941,"69":0.00471,"70":0.01412,"71":0.01882,"72":0.00941,"73":0.00471,"74":0.01882,"75":0.00471,"76":0.08,"77":0.01882,"78":0.00471,"79":0.04706,"80":0.08,"81":0.02824,"83":0.01882,"84":0.03765,"85":0.00941,"86":0.04235,"87":0.13647,"88":0.03294,"89":0.06118,"90":0.03765,"91":0.10824,"92":0.1553,"93":0.12236,"94":0.47531,"95":0.43766,"96":26.35831,"97":0.05177,"98":0.02353,"99":0.00471,_:"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 44 45 46 47 48 51 52 54 55 56 57 59 62 66 68"},F:{"28":0.00941,"52":0.00471,"79":0.00471,"80":0.00941,"81":0.2353,"82":0.89414,_:"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 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"11":0.00471,"13":0.00471,"14":0.06118,"15":0.07059,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00471,"11.1":0.00941,"12.1":0.02353,"13.1":0.08471,"14.1":0.21648,"15.1":0.19765,"15.2":0.04706},B:{"12":0.0753,"13":0.06588,"14":0.01882,"15":0.01412,"16":0.03294,"17":0.02353,"18":0.10353,"84":0.01882,"85":0.00941,"87":0.00471,"89":0.02824,"90":0.00471,"91":0.00941,"92":0.03294,"93":0.01882,"94":0.04235,"95":0.10353,"96":5.66132,_:"79 80 81 83 86 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01052,"6.0-6.1":0,"7.0-7.1":0.00977,"8.1-8.4":0,"9.0-9.2":0.00225,"9.3":0.02254,"10.0-10.2":0.00676,"10.3":0.03756,"11.0-11.2":0.01803,"11.3-11.4":0.02404,"12.0-12.1":0.03832,"12.2-12.5":0.76782,"13.0-13.1":0.01953,"13.2":0.00826,"13.3":0.08039,"13.4-13.7":0.18106,"14.0-14.4":0.78961,"14.5-14.8":2.13593,"15.0-15.1":2.99766,"15.2":0.36212},P:{"4":0.14424,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.09272,"8.2":0.02052,"9.2":0.06182,"10.1":0.03091,"11.1-11.2":0.11333,"12.0":0.02061,"13.0":0.07212,"14.0":0.19575,"15.0":0.36059},I:{"0":0,"3":0,"4":0.00061,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00049,"4.2-4.3":0.00135,"4.4":0,"4.4.3-4.4.4":0.02402},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14118,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.01059},O:{"0":0.20647},H:{"0":7.23234},L:{"0":40.90819},S:{"2.5":0.03176},R:{_:"0"},M:{"0":0.19058},Q:{"10.4":0.02647}}; 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 783aa47ced1143..8121489ce070da 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.00269,"52":0.00539,"78":0.01347,"84":0.01077,"86":0.00269,"88":0.00539,"89":0.00269,"91":0.01616,"92":0.01077,"93":0.12657,"94":0.67594,"95":0.01077,_:"2 3 4 5 6 7 8 9 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 87 90 96 3.5 3.6"},D:{"11":0.00539,"34":0.00269,"38":0.01077,"43":0.00539,"47":0.00539,"49":0.02962,"53":0.00269,"56":0.01077,"61":0.02154,"63":0.00808,"64":0.00539,"65":0.00539,"66":0.00269,"67":0.01347,"68":0.00539,"69":0.00808,"70":0.00269,"71":0.01077,"72":0.00539,"73":0.00269,"74":0.00808,"75":0.01077,"76":0.00539,"77":0.00539,"78":0.00808,"79":0.05655,"80":0.01347,"81":0.01077,"83":0.03501,"84":0.01616,"85":0.0404,"86":0.0377,"87":0.18043,"88":0.08079,"89":0.03501,"90":0.01885,"91":0.06733,"92":0.12657,"93":0.09964,"94":0.60054,"95":11.1571,"96":6.45243,"97":0.01077,"98":0.00269,_:"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 50 51 52 54 55 57 58 59 60 62 99"},F:{"28":0.00539,"46":0.00539,"72":0.01077,"73":0.01347,"75":0.00808,"76":0.00539,"77":0.01347,"78":0.02424,"79":0.02962,"80":0.08618,"81":0.02962,_:"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 74 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,"14":0.01347,"15":0.00539,"16":0.00539,"17":0.00539,"18":0.02693,"84":0.00808,"88":0.00269,"89":0.01077,"90":0.00269,"91":0.00808,"92":0.01347,"93":0.01077,"94":0.06463,"95":1.6562,"96":0.5763,_:"13 79 80 81 83 85 86 87"},E:{"4":0,"12":0.00269,"13":0.04309,"14":0.30431,"15":0.43357,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00269,"10.1":0.00539,"11.1":0.01077,"12.1":0.02424,"13.1":0.12388,"14.1":0.78097,"15.1":0.43088},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00646,"6.0-6.1":0,"7.0-7.1":0.02906,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08073,"10.0-10.2":0.00969,"10.3":0.06459,"11.0-11.2":0.04198,"11.3-11.4":0.04521,"12.0-12.1":0.08719,"12.2-12.5":1.09474,"13.0-13.1":0.13886,"13.2":0.10334,"13.3":0.3746,"13.4-13.7":1.01401,"14.0-14.4":4.59209,"14.5-14.8":12.16485,"15.0-15.1":12.43934},P:{"4":0.04148,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":0.12443,"8.2":0.0618,"9.2":0.02074,"10.1":0.0206,"11.1-11.2":0.11406,"12.0":0.04148,"13.0":0.14517,"14.0":0.18664,"15.0":1.91828},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00457,"4.4":0,"4.4.3-4.4.4":0.03197},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.37163,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":37.63645},S:{"2.5":0},R:{_:"0"},M:{"0":0.08039},Q:{"10.4":0},O:{"0":1.26428},H:{"0":0.12454}}; +module.exports={C:{"34":0.00262,"52":0.00524,"56":0.00262,"78":0.01048,"81":0.00262,"84":0.00786,"88":0.00524,"89":0.00262,"91":0.01835,"92":0.00262,"93":0.00524,"94":0.24375,"95":0.50061,"96":0.00524,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 82 83 85 86 87 90 97 3.5 3.6"},D:{"11":0.00524,"34":0.00262,"38":0.01048,"43":0.00524,"47":0.00524,"49":0.07601,"53":0.00262,"56":0.01311,"61":0.01048,"63":0.00786,"64":0.00262,"65":0.01048,"67":0.01311,"68":0.00524,"69":0.00786,"70":0.00262,"71":0.01048,"72":0.00524,"73":0.00262,"74":0.00786,"75":0.01048,"76":0.00524,"77":0.00524,"78":0.00786,"79":0.0629,"80":0.01311,"81":0.01048,"83":0.03407,"84":0.01573,"85":0.03407,"86":0.03932,"87":0.18085,"88":0.06553,"89":0.02621,"90":0.01573,"91":0.0498,"92":0.10484,"93":0.06553,"94":0.13629,"95":0.36694,"96":16.90807,"97":0.00786,"98":0.00786,_:"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 50 51 52 54 55 57 58 59 60 62 66 99"},F:{"28":0.00786,"36":0.00262,"46":0.00524,"72":0.01311,"73":0.01048,"75":0.00524,"76":0.00524,"77":0.01573,"78":0.01311,"79":0.01573,"80":0.02883,"81":0.08125,"82":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 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 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.04718,"14":0.23327,"15":0.25424,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00262,"10.1":0.00524,"11.1":0.01048,"12.1":0.01835,"13.1":0.11008,"14.1":0.62904,"15.1":0.64739,"15.2":0.09698},B:{"12":0.00524,"14":0.01573,"15":0.00524,"16":0.00524,"17":0.00524,"18":0.02097,"84":0.00786,"89":0.00786,"90":0.00262,"91":0.00524,"92":0.01048,"93":0.00524,"94":0.01311,"95":0.10222,"96":2.04176,_:"13 79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00374,"6.0-6.1":0,"7.0-7.1":0.02244,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05983,"10.0-10.2":0.00748,"10.3":0.04861,"11.0-11.2":0.03365,"11.3-11.4":0.04113,"12.0-12.1":0.07105,"12.2-12.5":0.88248,"13.0-13.1":0.16079,"13.2":0.10844,"13.3":0.40385,"13.4-13.7":1.07693,"14.0-14.4":4.87608,"14.5-14.8":10.98987,"15.0-15.1":16.55398,"15.2":2.04167},P:{"4":0.05162,"5.0-5.4":0.01032,"6.2-6.4":0.04135,"7.2-7.4":0.10325,"8.2":0.02052,"9.2":0.02065,"10.1":0.01034,"11.1-11.2":0.09292,"12.0":0.03097,"13.0":0.1239,"14.0":0.17552,"15.0":0.39235},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00128,"4.2-4.3":0.00192,"4.4":0,"4.4.3-4.4.4":0.02631},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0088,"11":0.28738,_:"6 7 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.10685},H:{"0":0.12575},L:{"0":34.00609},S:{"2.5":0},R:{_:"0"},M:{"0":0.08855},Q:{"10.4":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 5c5c982e3a17b8..f953844b98f6eb 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:{"56":0.00368,"57":0.06253,"58":0.00368,"68":0.02942,"78":0.00368,"79":0.01839,"89":0.01839,"92":0.01103,"93":0.44504,"94":1.57786,"95":0.01839,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 88 90 91 96 3.5 3.6"},D:{"28":0.01471,"29":0.00368,"47":0.0331,"53":0.22804,"55":0.00368,"60":0.03678,"63":0.12873,"69":0.02942,"70":0.01839,"71":0.01103,"74":0.01839,"75":0.01839,"78":0.01103,"79":0.01839,"80":0.01103,"81":0.03678,"83":0.02942,"84":0.01471,"85":0.01839,"86":0.02942,"87":0.30527,"88":0.00736,"89":0.03678,"90":0.01839,"91":0.09195,"92":0.06988,"93":0.10666,"94":0.28688,"95":9.48188,"96":4.0127,_:"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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 54 56 57 58 59 61 62 64 65 66 67 68 72 73 76 77 97 98 99"},F:{"80":0.16551,"81":0.08459,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05149,"13":0.19861,"14":0.08092,"15":0.14344,"16":0.12137,"17":0.11402,"18":2.92033,"80":0.00368,"81":0.00368,"84":0.02207,"85":0.02942,"88":0.01103,"89":0.04046,"90":0.02575,"91":0.04414,"92":0.10298,"93":0.01839,"94":0.26114,"95":3.92075,"96":0.69146,_:"79 83 86 87"},E:{"4":0,"14":0.01839,"15":0.01839,_:"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.04046,"12.1":0.02942,"13.1":0.05885,"14.1":0.05149,"15.1":0.03678},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00045,"7.0-7.1":0.00045,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01211,"10.0-10.2":0.00645,"10.3":0.00283,"11.0-11.2":0.006,"11.3-11.4":0.00283,"12.0-12.1":0.00419,"12.2-12.5":0.43656,"13.0-13.1":0.03147,"13.2":0.00136,"13.3":0.00973,"13.4-13.7":0.38404,"14.0-14.4":0.09915,"14.5-14.8":0.09315,"15.0-15.1":0.04086},P:{"4":0.51005,"5.0-5.4":0.0102,"6.2-6.4":0.07141,"7.2-7.4":0.43864,"8.2":0.0618,"9.2":0.08161,"10.1":0.0102,"11.1-11.2":0.51005,"12.0":0.39784,"13.0":0.19382,"14.0":0.09181,"15.0":0.69366},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00119,"4.4":0,"4.4.3-4.4.4":0.06835},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01471,"11":1.61464,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":60.55356},S:{"2.5":0},R:{_:"0"},M:{"0":0.03161},Q:{"10.4":0.03161},O:{"0":4.21045},H:{"0":1.3826}}; +module.exports={C:{"43":0.00668,"47":0.00334,"49":0.00334,"61":0.04007,"62":0.02337,"69":0.00334,"78":0.00334,"87":0.02337,"89":0.03339,"90":0.00668,"94":0.60436,"95":0.73124,"96":0.00668,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 53 54 55 56 57 58 59 60 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 91 92 93 97 3.5 3.6"},D:{"8":0.00334,"33":0.06678,"37":0.00668,"50":0.01002,"61":0.00334,"63":0.00668,"68":0.00668,"69":0.01002,"70":0.00668,"71":0.01002,"74":0.00334,"75":0.05342,"78":0.00668,"80":0.01002,"81":0.02671,"83":0.02003,"84":0.02003,"86":0.03339,"87":0.04007,"89":0.0601,"90":0.0167,"91":0.03339,"92":0.02671,"93":0.20368,"94":0.0768,"95":0.10685,"96":12.68486,_:"4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 62 64 65 66 67 72 73 76 77 79 85 88 97 98 99"},F:{"53":0.01002,"78":0.00334,"81":0.08681,"82":0.14358,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00668,"11":0.0167,"13":0.01002,"14":0.02671,"15":0.03339,_:"0 5 6 7 8 9 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00668,"12.1":0.07012,"13.1":0.02337,"14.1":0.13356,"15.1":0.02003,"15.2":0.00668},B:{"12":0.02003,"13":0.5476,"14":0.00334,"15":0.09015,"16":0.05342,"17":0.28715,"18":0.93492,"84":0.0167,"85":0.03005,"88":0.0167,"89":0.01336,"91":0.00668,"92":0.02003,"93":0.05009,"94":0.03339,"95":0.18698,"96":2.97839,_:"79 80 81 83 86 87 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00101,"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.01377,"10.0-10.2":0.00101,"10.3":0.00466,"11.0-11.2":0.01114,"11.3-11.4":0.0083,"12.0-12.1":0.05993,"12.2-12.5":0.19659,"13.0-13.1":0.02571,"13.2":0.00101,"13.3":0.0413,"13.4-13.7":0.86391,"14.0-14.4":0.25166,"14.5-14.8":0.16744,"15.0-15.1":0.14152,"15.2":0.23628},P:{"4":0.40694,"5.0-5.4":0.02032,"6.2-6.4":0.12208,"7.2-7.4":0.39677,"8.2":0.02052,"9.2":0.31538,"10.1":0.14622,"11.1-11.2":0.21365,"12.0":0.02035,"13.0":0.21365,"14.0":0.1526,"15.0":0.37642},I:{"0":0,"3":0,"4":0.004,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0016,"4.2-4.3":0.00719,"4.4":0,"4.4.3-4.4.4":0.1471},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00334,"11":0.9416,_:"6 7 8 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":4.45022},H:{"0":2.78145},L:{"0":63.42269},S:{"2.5":0},R:{_:"0"},M:{"0":0.00666},Q:{"10.4":0.03331}}; 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 cae4965b429474..acccbb3626f8b5 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:{"3":0.02604,"7":0.00521,"17":0.00521,"29":0.00521,"33":0.01041,"36":0.00521,"38":0.01041,"39":0.00521,"43":0.00521,"45":0.02604,"50":0.05207,"51":0.03124,"52":0.0729,"53":0.03124,"54":0.04686,"55":0.30201,"56":0.04166,"57":0.04686,"58":0.03124,"59":0.09893,"60":0.15621,"61":0.26035,"62":0.1458,"63":0.1458,"64":0.01562,"65":0.02083,"66":0.01562,"67":0.02083,"68":0.16662,"69":0.00521,"70":0.07811,"71":0.01041,"72":0.01562,"73":0.03124,"74":0.02604,"75":0.03645,"76":0.02083,"77":0.02083,"78":0.24994,"79":0.03645,"80":0.05207,"81":0.09893,"82":0.01041,"83":0.03645,"84":0.23952,"87":0.30201,"89":0.01041,"90":0.02083,"91":0.4426,"92":0.03124,"93":0.20828,"94":1.47358,"95":0.02083,_:"2 4 5 6 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 37 40 41 42 44 46 47 48 49 85 86 88 96 3.5 3.6"},D:{"10":0.00521,"24":0.01041,"31":0.01041,"34":0.00521,"36":0.01041,"37":0.00521,"39":0.00521,"40":0.01041,"41":0.02083,"42":0.01562,"43":0.01041,"44":0.01041,"45":0.01041,"46":0.02083,"47":0.03124,"48":0.24994,"49":0.06248,"50":0.01041,"51":0.01041,"52":0.01041,"53":0.01041,"54":0.01562,"55":0.03124,"56":0.02604,"57":0.04166,"58":0.02604,"59":0.01041,"60":0.06248,"61":0.02604,"62":0.01562,"63":0.03645,"64":0.03124,"65":0.02604,"66":0.08852,"67":0.03124,"68":0.13018,"69":0.27076,"70":0.18225,"71":0.11455,"72":1.56731,"73":0.03124,"74":0.21869,"75":0.02604,"76":0.02604,"77":0.02083,"78":0.42697,"79":0.2968,"80":0.3697,"81":0.04686,"83":0.17183,"84":0.11976,"85":0.18225,"86":0.20828,"87":2.64516,"88":0.09893,"89":0.95809,"90":0.01562,"91":0.02604,"92":0.2968,"93":0.2968,"94":8.91959,"95":3.85839,"96":2.28587,"99":0.01041,_:"4 5 6 7 8 9 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 32 33 35 38 97 98"},F:{"9":0.00521,"32":0.00521,"34":0.01562,"36":0.00521,"42":0.01041,"43":0.01041,"44":0.01041,"46":0.01041,"47":0.01562,"48":0.01041,"49":0.01562,"50":0.00521,"51":0.00521,"52":0.01041,"53":0.05207,"54":0.03645,"55":0.03645,"56":0.02083,"65":0.03124,"66":0.01041,"67":0.03124,"68":0.01041,"70":0.151,"71":0.09373,"75":0.01041,"78":0.00521,"79":0.01041,"80":0.2239,"81":0.12497,_:"11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 37 38 39 40 41 45 57 58 60 62 63 64 69 72 73 74 76 77 10.5 10.6 11.1 11.5 11.6","9.5-9.6":0.00521,"10.0-10.1":0,"12.1":0.03645},B:{"12":0.05728,"13":0.05207,"14":0.04686,"15":0.05207,"16":0.09373,"17":0.05207,"18":0.18225,"79":0.02083,"80":0.04686,"81":0.06248,"83":0.05207,"84":0.06248,"85":0.04166,"86":0.12497,"87":0.03645,"88":0.00521,"89":0.24473,"92":0.01041,"93":0.02083,"94":0.06769,"95":1.02057,"96":0.28639,_:"90 91"},E:{"4":0.04166,"10":0.01562,"11":0.04166,"12":0.06248,"13":0.29159,"14":0.16142,"15":0.18225,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02083,"11.1":0.09893,"12.1":0.0729,"13.1":0.12497,"14.1":0.43218,"15.1":11.898},G:{"8":0.0175,"3.2":0.0025,"4.0-4.1":0.0025,"4.2-4.3":0.02251,"5.0-5.1":0.02251,"6.0-6.1":0.03751,"7.0-7.1":0.04501,"8.1-8.4":0.06251,"9.0-9.2":0.05751,"9.3":0.10252,"10.0-10.2":0.05751,"10.3":0.07502,"11.0-11.2":0.25006,"11.3-11.4":0.08002,"12.0-12.1":0.12003,"12.2-12.5":0.36008,"13.0-13.1":0.07252,"13.2":0.02501,"13.3":0.14503,"13.4-13.7":0.54012,"14.0-14.4":0.77768,"14.5-14.8":1.82292,"15.0-15.1":20.29213},P:{"4":0.09357,"5.0-5.4":0.02079,"6.2-6.4":0.03119,"7.2-7.4":0.35348,"8.2":0.0618,"9.2":0.04159,"10.1":0.10396,"11.1-11.2":0.24951,"12.0":0.06238,"13.0":0.41585,"14.0":0.07277,"15.0":1.38271},I:{"0":0,"3":0,"4":0.00139,"2.1":0,"2.2":0.00167,"2.3":0,"4.1":0.00167,"4.2-4.3":0.00641,"4.4":0,"4.4.3-4.4.4":0.03678},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.08765,"7":0.12417,"8":0.42365,"9":0.24104,"10":0.22643,"11":0.47478,_:"5.5"},J:{"7":0,"10":0.02397},N:{"10":0.02658,"11":0.22582},L:{"0":19.3325},S:{"2.5":0},R:{_:"0"},M:{"0":0.65185},Q:{"10.4":0.00959},O:{"0":1.24139},H:{"0":0.50822}}; +module.exports={C:{"3":0.01318,"7":0.00879,"29":0.01318,"30":0.01318,"33":0.02636,"34":0.00879,"36":0.00879,"38":0.00879,"40":0.00879,"41":0.00879,"42":0.00439,"43":0.01318,"44":0.00879,"45":0.01318,"47":0.00879,"50":0.11864,"51":0.06591,"52":0.1494,"53":0.0747,"54":0.11424,"55":0.28122,"56":0.07909,"57":0.10106,"58":0.08349,"59":0.13621,"60":0.10985,"61":0.11424,"62":0.0703,"63":0.1494,"64":0.02636,"65":0.04833,"66":0.04394,"67":0.03955,"68":0.08349,"69":0.02636,"70":0.03515,"71":0.02197,"72":0.03076,"73":0.05712,"74":0.03515,"75":0.07909,"76":0.03515,"77":0.03515,"78":0.06152,"79":0.05273,"80":0.10106,"81":0.04394,"82":0.01758,"83":0.07909,"88":0.00879,"89":0.00439,"90":0.01318,"91":0.11424,"93":0.00439,"94":0.27243,"95":0.72062,_:"2 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 35 37 39 46 48 49 84 85 86 87 92 96 97 3.5 3.6"},D:{"5":0.00439,"10":0.00879,"11":0.00879,"12":0.00439,"21":0.00439,"25":0.00439,"26":0.00439,"31":0.02197,"32":0.00439,"34":0.00879,"35":0.00439,"36":0.02197,"37":0.01318,"39":0.01318,"40":0.01318,"41":0.04394,"42":0.03076,"43":0.01318,"44":0.00879,"45":0.03076,"46":0.04833,"47":0.07909,"48":0.2197,"49":0.13182,"50":0.02197,"51":0.02197,"52":0.01758,"53":0.02197,"54":0.03955,"55":0.05273,"56":0.05712,"57":0.06152,"58":0.05712,"59":0.03076,"60":0.06591,"61":0.06591,"62":0.03955,"63":0.06152,"64":0.06152,"65":0.05712,"66":0.06152,"67":0.05712,"68":0.10106,"69":0.11864,"70":0.17137,"71":0.04833,"72":0.51849,"73":0.0747,"74":0.11864,"75":0.07909,"76":0.08788,"77":0.08349,"78":0.19773,"79":0.81728,"80":0.3647,"81":0.12743,"83":0.3647,"84":0.47895,"85":0.31637,"86":0.46137,"87":0.35152,"88":0.1494,"89":0.19773,"90":0.10985,"91":0.03515,"92":0.11424,"93":0.19773,"94":2.6364,"95":0.13621,"96":3.62505,"97":0.01318,"98":0.00439,"99":0.02197,_:"4 6 7 8 9 13 14 15 16 17 18 19 20 22 23 24 27 28 29 30 33 38"},F:{"9":0.01318,"12":0.00439,"18":0.00879,"26":0.00879,"28":0.00439,"32":0.00879,"33":0.01318,"34":0.02636,"36":0.01318,"37":0.00439,"38":0.00879,"39":0.00439,"41":0.00439,"42":0.01758,"43":0.04394,"44":0.01758,"45":0.00879,"46":0.01318,"47":0.01758,"48":0.03076,"49":0.03515,"50":0.01318,"51":0.02197,"52":0.03076,"53":0.06152,"54":0.08788,"55":0.09227,"56":0.05712,"57":0.00439,"58":0.00879,"60":0.00879,"62":0.00879,"63":0.00439,"65":0.02197,"66":0.02197,"67":0.05712,"68":0.03515,"69":0.00879,"70":0.01318,"71":0.00439,"79":0.00439,"80":0.00439,"81":0.06591,"82":0.17576,_:"11 15 16 17 19 20 21 22 23 24 25 27 29 30 31 35 40 64 72 73 74 75 76 77 78 10.5 10.6 11.1 11.6","9.5-9.6":0.01318,"10.0-10.1":0.00879,"11.5":0.00439,"12.1":0.07909},E:{"4":0.02197,"10":0.03955,"11":0.08788,"12":0.12303,"13":0.24167,"14":0.08349,"15":0.04394,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.19773,"10.1":0.03076,"11.1":0.06591,"12.1":0.12743,"13.1":0.20212,"14.1":0.18455,"15.1":17.36948,"15.2":1.03259},B:{"12":0.12303,"13":0.08349,"14":0.09667,"15":0.12303,"16":0.17137,"17":0.10106,"18":0.24167,"79":0.06591,"80":0.10106,"81":0.12743,"83":0.11864,"84":0.15818,"85":0.07909,"86":0.14061,"87":0.07909,"88":0.00879,"89":0.00879,"90":0.00879,"92":0.00439,"93":0.00879,"95":0.03955,"96":0.65031,_:"91 94"},G:{"8":0.02184,"3.2":0.00874,"4.0-4.1":0.00437,"4.2-4.3":0.02621,"5.0-5.1":0.04368,"6.0-6.1":0.06115,"7.0-7.1":0.083,"8.1-8.4":0.10484,"9.0-9.2":0.09173,"9.3":0.14415,"10.0-10.2":0.11794,"10.3":0.11357,"11.0-11.2":0.31014,"11.3-11.4":0.13541,"12.0-12.1":0.19657,"12.2-12.5":0.39313,"13.0-13.1":0.11794,"13.2":0.03931,"13.3":0.15725,"13.4-13.7":0.3975,"14.0-14.4":0.28393,"14.5-14.8":0.50671,"15.0-15.1":39.10819,"15.2":1.20561},P:{"4":0.06267,"5.0-5.4":0.02089,"6.2-6.4":0.02089,"7.2-7.4":0.24022,"8.2":0.02052,"9.2":0.06267,"10.1":0.14622,"11.1-11.2":0.17756,"12.0":0.08356,"13.0":0.08356,"14.0":0.03133,"15.0":0.27155},I:{"0":0,"3":0,"4":0.00161,"2.1":0,"2.2":0.00184,"2.3":0,"4.1":0.00369,"4.2-4.3":0.01083,"4.4":0,"4.4.3-4.4.4":0.03249},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.10253,"7":0.10253,"8":0.4394,"9":0.19773,"10":0.23435,"11":0.15379,_:"5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.70088},H:{"0":0.17518},L:{"0":10.43663},S:{"2.5":0},R:{_:"0"},M:{"0":0.12896},Q:{"10.4":0.00561}}; 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 9cd7e8d8cdd9f3..3614f98b4d22b4 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:{"18":0.0062,"23":0.00414,"25":0.0062,"26":0.00207,"27":0.00414,"29":0.00414,"30":0.00207,"31":0.00207,"33":0.0062,"35":0.01654,"36":0.01448,"38":0.0062,"39":0.00207,"42":0.00207,"43":0.01241,"44":0.0062,"45":0.00414,"47":0.02688,"48":0.01448,"49":0.00414,"50":0.00414,"51":0.02068,"52":0.04136,"53":0.00207,"54":0.00827,"56":0.01654,"57":0.0062,"58":0.00414,"60":0.0062,"61":0.00414,"62":0.0062,"63":0.00414,"64":0.00414,"65":0.00414,"66":0.0062,"67":0.00207,"68":0.01034,"69":0.00414,"70":0.00414,"72":0.02895,"73":0.0062,"74":0.00207,"75":0.00207,"76":0.00207,"77":0.00414,"78":0.05377,"80":0.01654,"81":0.01034,"82":0.01034,"83":0.00207,"84":0.01241,"85":0.00827,"86":0.00827,"87":0.01861,"88":0.02068,"89":0.07238,"90":0.04136,"91":0.06618,"92":0.05997,"93":0.44255,"94":2.60361,"95":0.05584,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 24 28 32 34 37 40 41 46 55 59 71 79 96 3.5 3.6"},D:{"11":0.00207,"24":0.0062,"28":0.00414,"29":0.03929,"31":0.00207,"33":0.0062,"35":0.00414,"36":0.00414,"37":0.00414,"38":0.00414,"40":0.00207,"43":0.05997,"44":0.00414,"45":0.01654,"46":0.00207,"47":0.00207,"48":0.00414,"49":0.01241,"50":0.01448,"53":0.0062,"55":0.01654,"56":0.00827,"57":0.00827,"58":0.00827,"60":0.0062,"61":0.01241,"62":0.00414,"63":0.02688,"64":0.0062,"65":0.0062,"66":0.00414,"67":0.00827,"68":0.0062,"69":0.11374,"70":0.04343,"71":0.01654,"72":0.01861,"73":0.0062,"74":0.01034,"75":0.01654,"76":0.01448,"77":0.01034,"78":0.02482,"79":0.04136,"80":0.02895,"81":0.02275,"83":0.02482,"84":0.0062,"85":0.01034,"86":0.06824,"87":0.11788,"88":0.05377,"89":0.0517,"90":0.05997,"91":0.10133,"92":0.2068,"93":0.14476,"94":0.74034,"95":2.9014,"96":4.63439,"97":0.01034,"98":0.00414,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 30 32 34 39 41 42 51 52 54 59 99"},F:{"42":0.00414,"51":0.00207,"60":0.00414,"65":0.00207,"70":0.00207,"73":0.0062,"76":0.00207,"77":0.0062,"78":0.01034,"79":0.03309,"80":0.5625,"81":0.29572,_:"9 11 12 15 16 17 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 52 53 54 55 56 57 58 62 63 64 66 67 68 69 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.6","10.0-10.1":0,"11.5":0.00414,"12.1":0.00827},B:{"12":0.02895,"13":0.0062,"14":0.08065,"15":0.03929,"16":0.02482,"17":0.04963,"18":0.10754,"81":0.00207,"83":0.00207,"84":0.02275,"85":0.00414,"86":0.0062,"87":0.00414,"89":0.04963,"90":0.01448,"91":0.01654,"92":0.02068,"93":0.05377,"94":0.09099,"95":1.34213,"96":0.63694,_:"79 80 88"},E:{"4":0,"11":0.0062,"12":0.0062,"13":0.00827,"14":0.06824,"15":0.06411,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.00827,"10.1":0.00414,"11.1":0.01654,"12.1":0.03929,"13.1":0.27091,"14.1":0.16337,"15.1":0.03102},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0054,"5.0-5.1":0.00162,"6.0-6.1":0.00378,"7.0-7.1":0.00917,"8.1-8.4":0.00162,"9.0-9.2":0.00162,"9.3":0.034,"10.0-10.2":0.00324,"10.3":0.03723,"11.0-11.2":0.04317,"11.3-11.4":0.04209,"12.0-12.1":0.04964,"12.2-12.5":0.86661,"13.0-13.1":0.07986,"13.2":0.02698,"13.3":0.05774,"13.4-13.7":0.3815,"14.0-14.4":0.96751,"14.5-14.8":1.63177,"15.0-15.1":1.1499},P:{"4":0.80718,"5.0-5.4":0.07152,"6.2-6.4":0.08174,"7.2-7.4":0.31674,"8.2":0.03043,"9.2":0.07152,"10.1":0.02044,"11.1-11.2":0.24522,"12.0":0.05109,"13.0":0.21457,"14.0":0.33718,"15.0":0.92979},I:{"0":0,"3":0,"4":0.00101,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00353,"4.2-4.3":0.0222,"4.4":0,"4.4.3-4.4.4":0.17158},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00603,"11":1.04245,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":61.64368},S:{"2.5":0.03173},R:{_:"0"},M:{"0":0.16659},Q:{"10.4":0},O:{"0":1.89599},H:{"0":7.48041}}; +module.exports={C:{"21":0.00304,"29":0.00304,"30":0.00304,"31":0.00304,"32":0.00152,"33":0.00304,"34":0.00609,"35":0.00761,"36":0.00457,"37":0.00152,"38":0.00457,"39":0.00457,"40":0.00609,"41":0.00457,"42":0.00152,"43":0.00913,"44":0.00761,"45":0.00913,"47":0.01674,"48":0.01065,"49":0.00457,"50":0.00304,"51":0.00152,"52":0.04262,"54":0.00152,"55":0.00304,"56":0.01065,"57":0.00913,"58":0.00304,"59":0.00152,"60":0.00304,"61":0.00609,"62":0.00457,"64":0.00152,"65":0.00304,"66":0.00304,"68":0.00457,"69":0.00304,"70":0.00152,"71":0.00457,"72":0.02283,"73":0.00304,"74":0.00304,"75":0.00152,"77":0.00152,"78":0.01826,"79":0.00152,"80":0.00304,"81":0.00304,"82":0.00304,"83":0.00304,"84":0.00457,"85":0.01218,"86":0.00457,"87":0.00609,"88":0.01218,"89":0.04718,"90":0.00913,"91":0.0487,"92":0.02587,"93":0.03653,"94":0.62098,"95":1.23434,"96":0.02587,_:"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 46 53 63 67 76 97 3.5 3.6"},D:{"26":0.00457,"29":0.0137,"32":0.01065,"33":0.01065,"37":0.00761,"38":0.00609,"39":0.00152,"40":0.0137,"41":0.00304,"43":0.0624,"44":0.00152,"45":0.01674,"46":0.00609,"47":0.00457,"48":0.00152,"49":0.00913,"50":0.00913,"51":0.00609,"52":0.00609,"53":0.00152,"54":0.00457,"55":0.02435,"56":0.00609,"57":0.01065,"58":0.00609,"59":0.00304,"60":0.00304,"61":0.00609,"62":0.00304,"63":0.02283,"64":0.01065,"65":0.00457,"66":0.00304,"67":0.00761,"68":0.00913,"69":0.01826,"70":0.0274,"71":0.01218,"72":0.00761,"73":0.00457,"74":0.00913,"75":0.01522,"76":0.00761,"77":0.00761,"78":0.03805,"79":0.03348,"80":0.02892,"81":0.01674,"83":0.02892,"84":0.00761,"85":0.02587,"86":0.08371,"87":0.09893,"88":0.04718,"89":0.02283,"90":0.07306,"91":0.05631,"92":0.14611,"93":0.11719,"94":0.18873,"95":0.11567,"96":5.84905,"97":0.00761,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 34 35 36 42 98 99"},F:{"18":0.00609,"20":0.00152,"28":0.00304,"29":0.00152,"42":0.00457,"49":0.00304,"56":0.00304,"65":0.00457,"66":0.00304,"71":0.00457,"73":0.00457,"74":0.00152,"75":0.00152,"76":0.00152,"77":0.01065,"78":0.01065,"79":0.0487,"80":0.01979,"81":0.23743,"82":0.47791,_:"9 11 12 15 16 17 19 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 57 58 60 62 63 64 67 68 69 70 72 9.5-9.6 10.5 10.6 11.1 11.6","10.0-10.1":0,"11.5":0.00761,"12.1":0.00152},E:{"4":0,"11":0.00457,"12":0.00152,"13":0.03196,"14":0.03501,"15":0.02435,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01065,"10.1":0.00304,"11.1":0.01065,"12.1":0.00457,"13.1":0.10654,"14.1":0.09284,"15.1":0.05023,"15.2":0.01218},B:{"12":0.02435,"13":0.01218,"14":0.02131,"15":0.01065,"16":0.01674,"17":0.03044,"18":0.07306,"83":0.00457,"84":0.02435,"85":0.00913,"86":0.00304,"88":0.00304,"89":0.01826,"90":0.00761,"91":0.00609,"92":0.01979,"93":0.02283,"94":0.04262,"95":0.01979,"96":1.00452,_:"79 80 81 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0.00137,"6.0-6.1":0.00229,"7.0-7.1":0.01189,"8.1-8.4":0.00229,"9.0-9.2":0.00091,"9.3":0.02698,"10.0-10.2":0.0032,"10.3":0.01738,"11.0-11.2":0.03018,"11.3-11.4":0.03795,"12.0-12.1":0.04801,"12.2-12.5":0.48604,"13.0-13.1":0.10196,"13.2":0.01646,"13.3":0.0535,"13.4-13.7":0.17741,"14.0-14.4":0.92774,"14.5-14.8":1.12755,"15.0-15.1":1.28896,"15.2":0.20621},P:{"4":0.92168,"5.0-5.4":0.04051,"6.2-6.4":0.08103,"7.2-7.4":0.36462,"8.2":0.02031,"9.2":0.08103,"10.1":0.04051,"11.1-11.2":0.28359,"12.0":0.08103,"13.0":0.25321,"14.0":0.38488,"15.0":0.47603},I:{"0":0,"3":0,"4":0.00134,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00402,"4.2-4.3":0.02499,"4.4":0,"4.4.3-4.4.4":0.12226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.41246,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.67864},H:{"0":7.33615},L:{"0":68.47437},S:{"2.5":0.02543},R:{_:"0"},M:{"0":0.1526},Q:{"10.4":0}}; 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 a4ad35c62b1a1f..e5ea2f7a6b1d72 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:{"52":0.03064,"59":0.01021,"69":0.02043,"78":0.09193,"84":0.01532,"88":0.01021,"89":0.01021,"91":0.05107,"92":0.03064,"93":0.35749,"94":1.74149,"95":0.01021,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 90 96 3.5 3.6"},D:{"38":0.01532,"46":0.00511,"49":0.05107,"60":0.00511,"61":0.05618,"63":0.01021,"65":0.01532,"66":0.04596,"67":0.01532,"69":0.11746,"70":0.00511,"71":0.00511,"73":0.01021,"75":0.02554,"76":0.03575,"77":0.02043,"78":0.01021,"79":0.05107,"80":0.02554,"81":0.01532,"83":0.01532,"84":0.03575,"85":0.02554,"86":0.04596,"87":0.24514,"88":0.06639,"89":0.06639,"90":0.08682,"91":0.1481,"92":0.30131,"93":1.18993,"94":6.26118,"95":15.37207,"96":8.15077,"97":0.01021,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 59 62 64 68 72 74 98 99"},F:{"75":0.00511,"76":0.00511,"77":0.00511,"78":0.01532,"79":0.03575,"80":1.10311,"81":0.42388,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00511,"17":0.01021,"18":0.02043,"85":0.01021,"86":0.01021,"87":0.00511,"88":0.01021,"89":0.02043,"90":0.01021,"91":0.01532,"92":0.03064,"93":0.03575,"94":0.33706,"95":3.95282,"96":1.47082,_:"12 13 14 15 79 80 81 83 84"},E:{"4":0,"12":0.01021,"13":0.11746,"14":0.75073,"15":1.00097,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02043,"11.1":0.05107,"12.1":0.10725,"13.1":0.5107,"14.1":3.45233,"15.1":1.14397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00786,"8.1-8.4":0.00786,"9.0-9.2":0.00786,"9.3":0.08125,"10.0-10.2":0.00524,"10.3":0.14678,"11.0-11.2":0.02621,"11.3-11.4":0.05242,"12.0-12.1":0.0498,"12.2-12.5":0.92784,"13.0-13.1":0.03669,"13.2":0.02621,"13.3":0.12843,"13.4-13.7":0.39577,"14.0-14.4":1.4337,"14.5-14.8":15.15475,"15.0-15.1":7.70843},P:{"4":0.02124,"5.0-5.4":0.07152,"6.2-6.4":0.08174,"7.2-7.4":0.5315,"8.2":0.03043,"9.2":0.03066,"10.1":0.01022,"11.1-11.2":0.03185,"12.0":0.02124,"13.0":0.06371,"14.0":0.13803,"15.0":3.196},I:{"0":0,"3":0,"4":0.0028,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0014,"4.2-4.3":0.00559,"4.4":0,"4.4.3-4.4.4":0.04893},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22982,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":18.5774},S:{"2.5":0},R:{_:"0"},M:{"0":0.30826},Q:{"10.4":0},O:{"0":0.03425},H:{"0":0.62074}}; +module.exports={C:{"52":0.03431,"59":0.0147,"78":0.06371,"84":0.02451,"88":0.0147,"89":0.0049,"90":0.0049,"91":0.05881,"92":0.0098,"93":0.0196,"94":0.74495,"95":1.39188,"96":0.0049,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 97 3.5 3.6"},D:{"38":0.0098,"49":0.03921,"63":0.0049,"65":0.0147,"66":0.04901,"67":0.0147,"68":0.0049,"69":0.17644,"70":0.0049,"71":0.0098,"73":0.0098,"75":0.0196,"76":0.03431,"77":0.0147,"78":0.0098,"79":0.05881,"80":0.02451,"81":0.0098,"83":0.0147,"84":0.04901,"85":0.02941,"86":0.03921,"87":0.21074,"88":0.03921,"89":0.06861,"90":0.05881,"91":0.10292,"92":0.16173,"93":0.66654,"94":3.68065,"95":0.78906,"96":23.84337,"97":0.04901,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 72 74 98 99"},F:{"64":0.0049,"69":0.0049,"79":0.0196,"80":0.02941,"81":0.83317,"82":0.9949,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 70 71 72 73 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},E:{"4":0,"12":0.0098,"13":0.09802,"14":0.64203,"15":0.51951,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0147,"11.1":0.04901,"12.1":0.10782,"13.1":0.5097,"14.1":2.54362,"15.1":2.05842,"15.2":0.25975},B:{"17":0.0098,"18":0.02451,"84":0.0049,"85":0.0098,"86":0.0098,"88":0.0098,"89":0.0196,"90":0.0049,"91":0.0049,"92":0.02451,"93":0.0098,"94":0.04901,"95":0.32837,"96":5.33229,_:"12 13 14 15 16 79 80 81 83 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00264,"7.0-7.1":0.00527,"8.1-8.4":0.01318,"9.0-9.2":0.01054,"9.3":0.08433,"10.0-10.2":0.00527,"10.3":0.15548,"11.0-11.2":0.03689,"11.3-11.4":0.05534,"12.0-12.1":0.04743,"12.2-12.5":0.91968,"13.0-13.1":0.03162,"13.2":0.02372,"13.3":0.11595,"13.4-13.7":0.40582,"14.0-14.4":1.30179,"14.5-14.8":9.56577,"15.0-15.1":12.68848,"15.2":0.87225},P:{"4":0.06316,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.02105,"12.0":0.03158,"13.0":0.06316,"14.0":0.11579,"15.0":0.34738},I:{"0":0,"3":0,"4":0.00249,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00249,"4.2-4.3":0.00622,"4.4":0,"4.4.3-4.4.4":0.0398},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00522,"11":0.23493,_:"6 7 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.04589},H:{"0":0.88824},L:{"0":20.05046},S:{"2.5":0},R:{_:"0"},M:{"0":0.34673},Q:{"10.4":0}}; 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 f3d8def77af009..d520e1290f6e26 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:{"4":0.00301,"17":0.00301,"48":0.00602,"52":0.00903,"56":0.00903,"63":0.00602,"65":0.00301,"78":0.04213,"79":0.00602,"80":0.00602,"81":0.00602,"82":0.00602,"83":0.00602,"84":0.00903,"85":0.00301,"87":0.00301,"88":0.00602,"89":0.00903,"90":0.00903,"91":0.02106,"92":0.01204,"93":0.2016,"94":1.1043,"95":0.00301,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 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 64 66 67 68 69 70 71 72 73 74 75 76 77 86 96 3.5 3.6"},D:{"22":0.00602,"24":0.00301,"26":0.00301,"34":0.04514,"38":0.11133,"43":0.00301,"47":0.02106,"48":0.00301,"49":0.09328,"53":0.0331,"55":0.00602,"56":0.01204,"57":0.00301,"60":0.00602,"62":0.01505,"63":0.00301,"64":0.02407,"65":0.01505,"66":0.00903,"67":0.01505,"68":0.00903,"69":0.01204,"70":0.0331,"71":0.00602,"72":0.0331,"73":0.00903,"74":0.00903,"75":0.01505,"76":0.01204,"77":0.00903,"78":0.01805,"79":0.28586,"80":0.05416,"81":0.0331,"83":0.08124,"84":0.06319,"85":0.05115,"86":0.0662,"87":0.21966,"88":0.04213,"89":0.03611,"90":0.03912,"91":0.09328,"92":0.22568,"93":0.28285,"94":0.93279,"95":11.30481,"96":5.81339,"97":0.00903,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 51 52 54 58 59 61 98 99"},F:{"28":0.00301,"36":0.01505,"40":0.00602,"46":0.03009,"70":0.00301,"79":0.00903,"80":0.25276,"81":0.10231,_:"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 71 72 73 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:{"17":0.00602,"18":0.01805,"84":0.00602,"85":0.00301,"86":0.00602,"89":0.00301,"90":0.00602,"91":0.00602,"92":0.00903,"93":0.01204,"94":0.04814,"95":1.54061,"96":0.59879,_:"12 13 14 15 16 79 80 81 83 87 88"},E:{"4":0,"8":0.00301,"11":0.00301,"12":0.00602,"13":0.0662,"14":0.30391,"15":0.63791,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01204,"11.1":0.03009,"12.1":0.03611,"13.1":0.24674,"14.1":1.8385,"15.1":0.86659},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00284,"5.0-5.1":0.00426,"6.0-6.1":0.01278,"7.0-7.1":0.01704,"8.1-8.4":0.01562,"9.0-9.2":0.00994,"9.3":0.1505,"10.0-10.2":0.02414,"10.3":0.09513,"11.0-11.2":0.04117,"11.3-11.4":0.04685,"12.0-12.1":0.03975,"12.2-12.5":0.52959,"13.0-13.1":0.02698,"13.2":0.01988,"13.3":0.07383,"13.4-13.7":0.25415,"14.0-14.4":0.7383,"14.5-14.8":5.95753,"15.0-15.1":6.13642},P:{"4":0.4837,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01029,"12.0":0.04117,"13.0":0.08233,"14.0":0.05146,"15.0":2.62431},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":5.12685,"4.4":0,"4.4.3-4.4.4":23.07081},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0158,"9":0.01053,"10":0.00527,"11":0.38967,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":20.07405},S:{"2.5":0},R:{_:"0"},M:{"0":0.39843},Q:{"10.4":0.04194},O:{"0":0.53124},H:{"0":0.46324}}; +module.exports={C:{"17":0.00286,"48":0.00571,"52":0.01143,"56":0.00571,"63":0.00286,"65":0.00571,"78":0.03143,"79":0.00286,"80":0.00571,"81":0.00286,"82":0.00286,"83":0.00286,"84":0.00857,"88":0.00571,"89":0.00857,"90":0.02571,"91":0.02286,"92":0.00857,"93":0.01143,"94":0.41427,"95":0.85424,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 64 66 67 68 69 70 71 72 73 74 75 76 77 85 86 87 96 97 3.5 3.6"},D:{"22":0.00571,"24":0.00286,"26":0.00286,"34":0.04,"38":0.11142,"43":0.00571,"47":0.02286,"48":0.00857,"49":0.04,"50":0.00286,"51":0.00286,"53":0.03143,"55":0.00571,"56":0.01429,"57":0.00571,"60":0.02571,"61":0.00286,"62":0.00571,"63":0.00286,"64":0.02857,"65":0.01714,"66":0.01143,"67":0.01429,"68":0.00857,"69":0.01714,"70":0.03714,"71":0.00571,"72":0.03428,"73":0.00857,"74":0.00857,"75":0.01143,"76":0.01429,"77":0.00857,"78":0.01714,"79":0.29999,"80":0.05428,"81":0.05143,"83":0.07143,"84":0.05428,"85":0.05428,"86":0.05714,"87":0.12857,"88":0.03714,"89":0.03143,"90":0.02857,"91":0.15142,"92":0.15142,"93":0.22856,"94":0.29713,"95":0.6514,"96":15.81921,"97":0.01714,"98":0.00857,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 52 54 58 59 99"},F:{"36":0.01714,"40":0.00571,"46":0.02857,"71":0.00286,"79":0.00571,"80":0.00857,"81":0.14285,"82":0.17999,_:"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 72 73 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},E:{"4":0,"8":0.00571,"11":0.00286,"12":0.00571,"13":0.06,"14":0.25713,"15":0.30284,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00571,"10.1":0.01143,"11.1":0.02857,"12.1":0.03428,"13.1":0.22285,"14.1":1.22565,"15.1":1.41993,"15.2":0.17713},B:{"15":0.00286,"16":0.00571,"17":0.00571,"18":0.02,"84":0.00571,"86":0.00571,"90":0.00286,"91":0.00286,"92":0.00571,"93":0.00286,"94":0.00857,"95":0.05143,"96":2.07133,_:"12 13 14 79 80 81 83 85 87 88 89"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00144,"5.0-5.1":0.00288,"6.0-6.1":0.01008,"7.0-7.1":0.02015,"8.1-8.4":0.01583,"9.0-9.2":0.00864,"9.3":0.13962,"10.0-10.2":0.02735,"10.3":0.08205,"11.0-11.2":0.03311,"11.3-11.4":0.03742,"12.0-12.1":0.03455,"12.2-12.5":0.49803,"13.0-13.1":0.02591,"13.2":0.01583,"13.3":0.07053,"13.4-13.7":0.24038,"14.0-14.4":0.66644,"14.5-14.8":3.51934,"15.0-15.1":8.1758,"15.2":0.76576},P:{"4":0.47476,"5.0-5.4":0.02032,"6.2-6.4":0.03049,"7.2-7.4":0.1321,"8.2":0.02052,"9.2":0.04065,"10.1":0.14622,"11.1-11.2":0.06097,"12.0":0.03096,"13.0":0.08257,"14.0":0.0516,"15.0":0.23738},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":6.20076,"4.4":0,"4.4.3-4.4.4":23.25285},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03245,"9":0.02163,"10":0.01622,"11":0.38396,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.56422},H:{"0":0.47331},L:{"0":20.29336},S:{"2.5":0},R:{_:"0"},M:{"0":0.39995},Q:{"10.4":0.04285}}; 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 4e2a6df81d3689..1a69ae24c7a177 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:{"84":0.24596,"92":0.97911,"94":2.45014,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 85 86 87 88 89 90 91 93 95 96 3.5 3.6"},D:{"49":25.7312,"77":0.24596,"81":1.96295,"95":7.35042,"96":1.47103,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99"},F:{"73":0.24596,"80":0.49192,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 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.97911,"95":1.22507,"96":0.49192,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},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"},G:{"8":0,"3.2":0,"4.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":1.75689,"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.25098,"15.0-15.1":0},P:{"4":0.16854,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.09481,"8.2":0.01026,"9.2":0.05267,"10.1":0.01053,"11.1-11.2":0.2512,"12.0":0.04214,"13.0":0.07374,"14.0":0.2512,"15.0":0.2512},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":2.20418,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":48.15442},S:{"2.5":0},R:{_:"0"},M:{"0":3.00917},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"94":2.81561,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 3.5 3.6"},D:{"81":5.63122,"95":1.4078,"96":36.61671,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99"},F:{"73":1.4078,"81":12.67714,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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"},B:{"18":8.44682,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96"},G:{"8":0,"3.2":0,"4.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":1.41005,"15.0-15.1":0,"15.2":0},P:{"4":0.14424,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.09272,"8.2":0.02052,"9.2":0.06182,"10.1":0.03091,"11.1-11.2":0.11333,"12.0":0.02061,"13.0":0.07212,"14.0":0.19575,"15.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,"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.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":28.17301},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 b9f3eba270bcce..68aa82a1ed68f0 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.20871,"57":0.00596,"60":0.02385,"61":0.00596,"66":0.06559,"67":0.01193,"68":0.02385,"72":0.01193,"76":0.00596,"78":0.26237,"81":0.00596,"82":0.00596,"83":0.01789,"84":0.01193,"85":0.01193,"86":0.01193,"87":0.01193,"88":0.08945,"89":0.04174,"90":0.02385,"91":0.161,"92":0.07156,"93":1.21049,"94":6.45793,"95":0.01193,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 62 63 64 65 69 70 71 73 74 75 77 79 80 96 3.5 3.6"},D:{"49":0.161,"51":0.02385,"63":0.02982,"65":0.01193,"67":0.01193,"69":0.01193,"70":0.01193,"73":0.01193,"75":0.01193,"76":0.02385,"77":0.01193,"78":0.01193,"79":0.07156,"80":0.03578,"81":0.01193,"83":0.01193,"84":0.03578,"85":0.01789,"86":0.02982,"87":0.47108,"88":0.02982,"89":0.08945,"90":0.08348,"91":0.10733,"92":0.161,"93":0.28622,"94":0.96601,"95":22.59977,"96":13.64334,"97":0.01193,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 71 72 74 98 99"},F:{"46":0.01193,"79":0.01789,"80":1.22242,"81":0.45915,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.01193,"18":0.02385,"85":0.00596,"87":0.00596,"89":0.01193,"90":0.00596,"91":0.02385,"92":0.02982,"93":0.01789,"94":0.13119,"95":3.59569,"96":1.44305,_:"12 13 14 15 17 79 80 81 83 84 86 88"},E:{"4":0.01789,"5":0.01193,"12":0.00596,"13":0.03578,"14":0.23256,"15":0.4353,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00596,"10.1":0.01193,"11.1":0.02982,"12.1":0.0477,"13.1":0.20871,"14.1":0.95408,"15.1":0.71556},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00466,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14738,"10.0-10.2":0.00187,"10.3":0.04477,"11.0-11.2":0.03638,"11.3-11.4":0.01866,"12.0-12.1":0.04011,"12.2-12.5":0.20428,"13.0-13.1":0.01026,"13.2":0.01026,"13.3":0.02892,"13.4-13.7":0.14831,"14.0-14.4":0.6968,"14.5-14.8":4.13788,"15.0-15.1":3.79088},P:{"4":0.01045,"5.0-5.4":0.05094,"6.2-6.4":0.03119,"7.2-7.4":0.12226,"8.2":0.0618,"9.2":0.04075,"10.1":0.10396,"11.1-11.2":0.07316,"12.0":0.03136,"13.0":0.12542,"14.0":0.14632,"15.0":2.63385},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00453,"4.2-4.3":0.00283,"4.4":0,"4.4.3-4.4.4":0.02493},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.62612,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":28.09857},S:{"2.5":0},R:{_:"0"},M:{"0":0.39159},Q:{"10.4":0},O:{"0":0.01211},H:{"0":0.23314}}; +module.exports={C:{"52":0.22267,"60":0.01805,"61":0.00602,"66":0.04213,"68":0.01805,"72":0.01204,"78":0.15647,"82":0.00602,"83":0.01204,"84":0.01204,"88":0.0662,"89":0.06018,"90":0.03611,"91":0.15045,"92":0.03009,"93":0.02407,"94":2.7081,"95":5.13335,"96":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 48 49 50 51 53 54 55 56 57 58 59 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 85 86 87 97 3.5 3.6"},D:{"49":0.10231,"51":0.01204,"63":0.02407,"67":0.00602,"69":0.01805,"70":0.01204,"73":0.01204,"76":0.03009,"77":0.04213,"78":0.01204,"79":0.03611,"80":0.09629,"81":0.01805,"83":0.01805,"84":0.03009,"85":0.02407,"86":0.03009,"87":0.4333,"88":0.02407,"89":0.0662,"90":0.09629,"91":0.11434,"92":0.1324,"93":0.29488,"94":0.16249,"95":0.94483,"96":36.12605,"97":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 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 98 99"},F:{"46":0.03611,"69":0.01204,"80":0.01204,"81":0.86057,"82":0.99899,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"5":0.01204,"13":0.04814,"14":0.19258,"15":0.22868,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01204,"10.1":0.01204,"11.1":0.02407,"12.1":0.03009,"13.1":0.22267,"14.1":0.74623,"15.1":0.93279,"15.2":0.16249},B:{"16":0.00602,"17":0.00602,"18":0.03009,"85":0.00602,"86":0.02407,"87":0.00602,"88":0.00602,"89":0.01204,"90":0.00602,"91":0.01805,"92":0.03009,"93":0.01204,"94":0.02407,"95":0.12036,"96":5.13937,_:"12 13 14 15 79 80 81 83 84"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00276,"6.0-6.1":0.00184,"7.0-7.1":0.0046,"8.1-8.4":0.00276,"9.0-9.2":0,"9.3":0.13897,"10.0-10.2":0.00644,"10.3":0.03405,"11.0-11.2":0.01933,"11.3-11.4":0.02393,"12.0-12.1":0.03221,"12.2-12.5":0.16934,"13.0-13.1":0.0046,"13.2":0.0046,"13.3":0.02393,"13.4-13.7":0.13252,"14.0-14.4":0.60096,"14.5-14.8":2.61182,"15.0-15.1":4.93006,"15.2":0.45371},P:{"4":0.02104,"5.0-5.4":0.02032,"6.2-6.4":0.03049,"7.2-7.4":0.1321,"8.2":0.02052,"9.2":0.04065,"10.1":0.14622,"11.1-11.2":0.05259,"12.0":0.03155,"13.0":0.10518,"14.0":0.14726,"15.0":0.33658},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01031,"4.2-4.3":0.00187,"4.4":0,"4.4.3-4.4.4":0.01968},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.668,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.00796},O:{"0":0.01195},H:{"0":0.26012},L:{"0":27.93204},S:{"2.5":0},R:{_:"0"},M:{"0":0.40616},Q:{"10.4":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 6e402b3bb2dc07..7ad294dc64c10c 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:{"52":0.17955,"56":0.01026,"65":0.01026,"68":0.02565,"72":0.01026,"78":0.08208,"80":0.00513,"81":0.00513,"82":0.00513,"84":0.01026,"85":0.00513,"86":0.00513,"87":0.01539,"88":0.03078,"89":0.03591,"90":0.01539,"91":0.10773,"92":0.05643,"93":0.84645,"94":5.08383,"95":0.02565,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 79 83 96 3.5 3.6"},D:{"34":0.00513,"38":0.05643,"43":0.01026,"47":0.01539,"49":0.18981,"53":0.0513,"58":0.00513,"63":0.08208,"67":0.02052,"68":0.00513,"69":0.00513,"70":0.01026,"71":0.01026,"72":0.00513,"73":0.00513,"74":0.00513,"75":0.02052,"77":0.00513,"78":0.01026,"79":0.29754,"80":0.03078,"81":0.0513,"83":0.03078,"84":0.02052,"85":0.02052,"86":0.08721,"87":0.09234,"88":0.03078,"89":0.07695,"90":0.03078,"91":0.05643,"92":0.13851,"93":0.13851,"94":0.80028,"95":17.88318,"96":12.48642,"97":0.01026,_:"4 5 6 7 8 9 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 59 60 61 62 64 65 66 76 98 99"},F:{"28":0.01539,"36":0.01539,"46":0.02565,"69":0.00513,"78":0.02052,"79":0.07182,"80":2.24181,"81":1.07217,_:"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 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00513,"16":0.00513,"17":0.00513,"18":0.02052,"84":0.00513,"86":0.01026,"87":0.00513,"89":0.01026,"90":0.00513,"91":0.01026,"92":0.03078,"93":0.01539,"94":0.09234,"95":2.80098,"96":1.24146,_:"12 13 14 79 80 81 83 85 88"},E:{"4":0.00513,"13":0.02565,"14":0.28728,"15":0.41553,_:"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.02052,"12.1":0.04104,"13.1":0.21546,"14.1":0.77976,"15.1":0.65151},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00714,"6.0-6.1":0.00816,"7.0-7.1":0.00408,"8.1-8.4":0,"9.0-9.2":0.00102,"9.3":0.04286,"10.0-10.2":0.0051,"10.3":0.07858,"11.0-11.2":0.01429,"11.3-11.4":0.02347,"12.0-12.1":0.02041,"12.2-12.5":0.33373,"13.0-13.1":0.00714,"13.2":0.02041,"13.3":0.0694,"13.4-13.7":0.13267,"14.0-14.4":0.51539,"14.5-14.8":4.48745,"15.0-15.1":4.43132},P:{"4":0.48532,"5.0-5.4":0.05094,"6.2-6.4":0.03119,"7.2-7.4":0.12226,"8.2":0.0618,"9.2":0.04075,"10.1":0.10396,"11.1-11.2":0.05163,"12.0":0.02065,"13.0":0.07228,"14.0":0.10326,"15.0":1.85866},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00268,"4.2-4.3":0.00983,"4.4":0,"4.4.3-4.4.4":0.08489},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.31293,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":35.66319},S:{"2.5":0},R:{_:"0"},M:{"0":0.35064},Q:{"10.4":0},O:{"0":0.03409},H:{"0":0.46106}}; +module.exports={C:{"52":0.20826,"55":0.01068,"56":0.00534,"65":0.01068,"68":0.01068,"72":0.01068,"78":0.04806,"80":0.00534,"81":0.01068,"84":0.01068,"86":0.00534,"87":0.00534,"88":0.03738,"89":0.03738,"90":0.01068,"91":0.10146,"92":0.04806,"93":0.0534,"94":2.01852,"95":4.04772,"96":0.01602,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 66 67 69 70 71 73 74 75 76 77 79 82 83 85 97 3.5 3.6"},D:{"38":0.07476,"43":0.01602,"47":0.02136,"49":0.13884,"53":0.04806,"58":0.00534,"63":0.10146,"65":0.00534,"67":0.01068,"68":0.00534,"69":0.01068,"70":0.01068,"71":0.00534,"72":0.01068,"74":0.00534,"75":0.01068,"77":0.00534,"78":0.00534,"79":0.31506,"80":0.02136,"81":0.07476,"83":0.03204,"84":0.0267,"85":0.02136,"86":0.05874,"87":0.08544,"88":0.03204,"89":0.08544,"90":0.03204,"91":0.04272,"92":0.09612,"93":0.14418,"94":0.18156,"95":0.64614,"96":31.6662,"97":0.01602,_:"4 5 6 7 8 9 10 11 12 13 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 54 55 56 57 59 60 61 62 64 66 73 76 98 99"},F:{"28":0.01068,"36":0.01602,"46":0.02136,"68":0.00534,"69":0.00534,"78":0.00534,"79":0.01602,"80":0.0534,"81":1.62336,"82":2.0025,_:"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 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01602,"14":0.21894,"15":0.22962,_:"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.02136,"12.1":0.04272,"13.1":0.2136,"14.1":0.5874,"15.1":0.89712,"15.2":0.14418},B:{"16":0.00534,"18":0.01602,"86":0.00534,"89":0.01068,"91":0.01068,"92":0.02136,"93":0.01068,"94":0.01602,"95":0.12282,"96":4.06374,_:"12 13 14 15 17 79 80 81 83 84 85 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00588,"6.0-6.1":0.00196,"7.0-7.1":0.00196,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04408,"10.0-10.2":0.00392,"10.3":0.07641,"11.0-11.2":0.0098,"11.3-11.4":0.01274,"12.0-12.1":0.01959,"12.2-12.5":0.24687,"13.0-13.1":0.00882,"13.2":0.02351,"13.3":0.0578,"13.4-13.7":0.11266,"14.0-14.4":0.42125,"14.5-14.8":2.64213,"15.0-15.1":5.53015,"15.2":0.57114},P:{"4":0.46502,"5.0-5.4":0.02032,"6.2-6.4":0.03049,"7.2-7.4":0.1321,"8.2":0.02052,"9.2":0.04065,"10.1":0.14622,"11.1-11.2":0.031,"12.0":0.031,"13.0":0.08267,"14.0":0.10334,"15.0":0.21701},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.00695,"4.4":0,"4.4.3-4.4.4":0.06949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28836,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.0466},H:{"0":0.44118},L:{"0":34.58362},S:{"2.5":0},R:{_:"0"},M:{"0":0.24698},Q:{"10.4":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 a6e24c8b5bfbc5..d151676a05da32 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:{"33":0.00527,"39":0.00264,"43":0.01845,"45":0.01054,"47":0.00264,"57":0.00791,"72":0.00791,"78":0.00791,"80":0.01845,"88":0.00527,"91":0.01318,"92":0.02372,"93":0.35309,"94":0.98022,"95":0.0527,_:"2 3 4 5 6 7 8 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 40 41 42 44 46 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 96 3.5 3.6"},D:{"33":0.06588,"34":0.04216,"37":0.01845,"38":0.01318,"43":0.02372,"48":0.00264,"49":0.01054,"51":0.00264,"55":0.00791,"57":0.01054,"60":0.00527,"64":0.01318,"65":0.01845,"66":0.00264,"67":0.01054,"68":0.00527,"69":0.01054,"72":0.01054,"74":0.00791,"75":0.02108,"76":0.02372,"77":0.01845,"78":0.00264,"79":0.01845,"80":0.00527,"81":0.01845,"83":0.0448,"84":0.03689,"85":0.01054,"86":0.02899,"87":0.03953,"88":0.03162,"89":0.00791,"90":0.02372,"91":0.06851,"92":0.13175,"93":0.12912,"94":0.42951,"95":6.18171,"96":2.91695,"97":0.02372,_:"4 5 6 7 8 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 39 40 41 42 44 45 46 47 50 52 53 54 56 58 59 61 62 63 70 71 73 98 99"},F:{"53":0.00791,"64":0.00527,"65":0.07115,"77":0.00791,"78":0.01318,"79":0.01318,"80":0.64294,"81":0.21344,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 60 62 63 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.08432,"13":0.03953,"14":0.01581,"15":0.02899,"16":0.02635,"17":0.02108,"18":0.10804,"80":0.00527,"84":0.02372,"85":0.01054,"87":0.00264,"89":0.05534,"90":0.01054,"91":0.02372,"92":0.03426,"93":0.0448,"94":0.07115,"95":1.87085,"96":0.54808,_:"79 81 83 86 88"},E:{"4":0,"8":0.03953,"12":0.00264,"13":0.01845,"14":0.03689,"15":0.0448,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1 11.1","5.1":0.02108,"9.1":0.00527,"10.1":0.00527,"12.1":0.04216,"13.1":0.06851,"14.1":0.16601,"15.1":0.16601},G:{"8":0.00062,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00062,"7.0-7.1":0.01975,"8.1-8.4":0.00247,"9.0-9.2":0.00556,"9.3":0.05061,"10.0-10.2":0.00247,"10.3":0.04321,"11.0-11.2":0.00864,"11.3-11.4":0.02839,"12.0-12.1":0.03086,"12.2-12.5":0.41971,"13.0-13.1":0.08024,"13.2":0.02099,"13.3":0.16171,"13.4-13.7":0.23763,"14.0-14.4":1.69861,"14.5-14.8":1.59923,"15.0-15.1":1.75971},P:{"4":0.21396,"5.0-5.4":0.05094,"6.2-6.4":0.03119,"7.2-7.4":0.12226,"8.2":0.0618,"9.2":0.04075,"10.1":0.10396,"11.1-11.2":0.11207,"12.0":0.10189,"13.0":0.06113,"14.0":0.10189,"15.0":0.66226},I:{"0":0,"3":0,"4":0.00026,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00105,"4.2-4.3":0.00183,"4.4":0,"4.4.3-4.4.4":0.04105},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18972,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02209},N:{"10":0.02658,"11":0.22582},L:{"0":52.4993},S:{"2.5":0.03682},R:{_:"0"},M:{"0":0.22828},Q:{"10.4":0},O:{"0":1.96619},H:{"0":19.08868}}; +module.exports={C:{"29":0.0075,"43":0.005,"44":0.0025,"45":0.0025,"48":0.0025,"78":0.01501,"79":0.0025,"91":0.005,"92":0.01,"93":0.02501,"94":0.32263,"95":0.79782,"96":0.01751,_:"2 3 4 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 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 80 81 82 83 84 85 86 87 88 89 90 97 3.5 3.6"},D:{"22":0.0075,"33":0.06753,"34":0.03752,"37":0.0025,"49":0.0025,"52":0.0025,"56":0.005,"57":0.01,"60":0.01751,"63":0.005,"64":0.005,"65":0.04502,"67":0.005,"69":0.005,"70":0.0075,"72":0.05752,"74":0.01251,"75":0.01,"76":0.06503,"77":0.01751,"79":0.02251,"80":0.0075,"81":0.01,"83":0.06253,"84":0.03001,"85":0.0075,"86":0.02251,"87":0.06753,"88":0.03752,"89":0.0075,"90":0.02251,"91":0.03501,"92":0.03752,"93":0.09754,"94":0.15006,"95":0.22009,"96":7.61555,"97":0.05502,_:"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 35 36 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 58 59 61 62 66 68 71 73 78 98 99"},F:{"53":0.01501,"65":0.11004,"66":0.03001,"78":0.005,"79":0.01501,"80":0.03251,"81":0.2451,"82":0.46018,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 60 62 63 64 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.0025,"13":0.02501,"14":0.03501,"15":0.04752,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.02001,"12.1":0.01751,"13.1":0.04002,"14.1":0.12505,"15.1":0.32513,"15.2":0.0075},B:{"12":0.05252,"13":0.03501,"14":0.01501,"15":0.02751,"16":0.01251,"17":0.01251,"18":0.05502,"81":0.0025,"84":0.01501,"85":0.01,"87":0.005,"89":0.01501,"90":0.0075,"91":0.02501,"92":0.02501,"93":0.02001,"94":0.02501,"95":0.10754,"96":2.14336,_:"79 80 83 86 88"},G:{"8":0.00071,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00214,"6.0-6.1":0.00071,"7.0-7.1":0.08757,"8.1-8.4":0,"9.0-9.2":0.00214,"9.3":0.11747,"10.0-10.2":0.00356,"10.3":0.04699,"11.0-11.2":0.00854,"11.3-11.4":0.02634,"12.0-12.1":0.02065,"12.2-12.5":0.46063,"13.0-13.1":0.05838,"13.2":0.042,"13.3":0.15663,"13.4-13.7":0.25701,"14.0-14.4":1.91441,"14.5-14.8":1.63533,"15.0-15.1":2.13511,"15.2":0.14025},P:{"4":0.28453,"5.0-5.4":0.02032,"6.2-6.4":0.03049,"7.2-7.4":0.1321,"8.2":0.02052,"9.2":0.04065,"10.1":0.14622,"11.1-11.2":0.06097,"12.0":0.08356,"13.0":0.08129,"14.0":0.06097,"15.0":0.29469},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00017,"4.2-4.3":0.00116,"4.4":0,"4.4.3-4.4.4":0.03617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00671,"11":0.14085,_:"6 7 8 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.0225},O:{"0":1.91225},H:{"0":18.96295},L:{"0":54.09304},S:{"2.5":0.03},R:{_:"0"},M:{"0":0.13498},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js index 16e039d1d5f296..e151400a8a94b9 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:{"50":0.02556,"66":0.01278,"78":0.1406,"86":0.00639,"88":0.01278,"89":0.01278,"90":0.02556,"91":0.10226,"92":0.0703,"93":0.73497,"94":3.93047,"95":0.01278,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 96 3.5 3.6"},D:{"49":0.02556,"71":0.00639,"76":0.18534,"77":0.03835,"79":0.01278,"81":0.01917,"87":0.09587,"88":0.01917,"89":0.01278,"91":0.02556,"92":0.05113,"93":0.12143,"94":0.34511,"95":27.00837,"96":17.10871,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 72 73 74 75 78 80 83 84 85 86 90 97 98 99"},F:{"80":0.04474,"81":0.02556,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"92":0.01278,"94":0.01917,"95":3.74513,"96":1.65527,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93"},E:{"4":0,"13":0.03196,"14":0.26203,"15":1.10564,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05752,"11.1":0.24925,"12.1":0.17895,"13.1":0.58158,"14.1":1.68083,"15.1":1.23346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.19654,"8.1-8.4":0,"9.0-9.2":0.00319,"9.3":0.02019,"10.0-10.2":0,"10.3":0.08287,"11.0-11.2":0.01487,"11.3-11.4":0.00531,"12.0-12.1":0.00744,"12.2-12.5":0.63212,"13.0-13.1":0.00531,"13.2":0.017,"13.3":0.00744,"13.4-13.7":0.11261,"14.0-14.4":0.65337,"14.5-14.8":5.17806,"15.0-15.1":3.6886},P:{"4":0.07318,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":1.21542,"8.2":0.0618,"9.2":1.13302,"10.1":0.0206,"11.1-11.2":0.43908,"12.0":0.1751,"13.0":0.02091,"14.0":0.71071,"15.0":2.87496},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.05774},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19173,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":24.15168},S:{"2.5":0},R:{_:"0"},M:{"0":0.07218},Q:{"10.4":0},O:{"0":0},H:{"0":0.00683}}; +module.exports={C:{"48":0.01341,"52":0.04022,"56":0.0067,"61":0.02681,"65":0.0067,"68":0.04022,"78":0.20109,"81":0.0067,"87":0.01341,"89":0.02011,"90":0.01341,"91":0.2145,"94":2.21869,"95":2.76834,"96":0.05362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 88 92 93 97 3.5 3.6"},D:{"49":0.05362,"53":0.01341,"66":0.0067,"74":0.01341,"76":0.23461,"77":0.0067,"79":0.02681,"80":0.01341,"81":0.01341,"86":0.18768,"87":0.05362,"88":0.0067,"89":0.02011,"90":0.01341,"91":0.0067,"92":0.10055,"93":0.02681,"94":0.10055,"95":0.4424,"96":44.13255,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 75 78 83 84 85 97 98 99"},F:{"81":0.08044,"82":0.2212,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.01341,"12":0.0067,"13":0.04692,"14":0.36867,"15":0.40888,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03352,"11.1":0.2145,"12.1":0.18098,"13.1":0.48932,"14.1":2.35946,"15.1":1.72937,"15.2":0.11395},B:{"95":0.03352,"96":7.21243,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07256,"8.1-8.4":0.07051,"9.0-9.2":0,"9.3":0.01022,"10.0-10.2":0,"10.3":0.12161,"11.0-11.2":0.02759,"11.3-11.4":0.00204,"12.0-12.1":0.00613,"12.2-12.5":0.62543,"13.0-13.1":0.00409,"13.2":0,"13.3":0.01737,"13.4-13.7":0.10833,"14.0-14.4":0.98822,"14.5-14.8":2.42712,"15.0-15.1":5.4439,"15.2":0.29228},P:{"4":0.04209,"5.0-5.4":0.07256,"6.2-6.4":0.02073,"7.2-7.4":0.81884,"8.2":0.02052,"9.2":0.09329,"10.1":0.04146,"11.1-11.2":0.03157,"12.0":0.26949,"13.0":0.01052,"14.0":0.01052,"15.0":0.1894},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.06264},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14076,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.02809},L:{"0":21.14108},S:{"2.5":0},R:{_:"0"},M:{"0":0.1055},Q:{"10.4":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 3f59a2d90466f5..562f9fc552fe4e 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:{"35":0.01473,"42":0.00884,"43":0.01178,"45":0.00589,"47":0.00589,"48":0.00589,"52":0.02946,"60":0.00295,"64":0.00589,"68":0.00589,"70":0.03535,"72":0.01178,"78":0.0766,"80":0.07954,"81":0.00589,"84":0.02062,"85":0.01473,"86":0.00589,"88":0.04714,"89":0.02357,"90":0.00295,"91":0.02946,"92":0.02357,"93":0.33879,"94":1.98855,"95":0.00884,_:"2 3 4 5 6 7 8 9 10 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 44 46 49 50 51 53 54 55 56 57 58 59 61 62 63 65 66 67 69 71 73 74 75 76 77 79 82 83 87 96 3.5 3.6"},D:{"11":0.00295,"43":0.00589,"49":0.04714,"55":0.00589,"57":0.00589,"58":0.00295,"60":0.00589,"62":0.00295,"63":0.03241,"65":0.01768,"66":0.00295,"67":0.00589,"68":0.00295,"69":0.02062,"70":0.02946,"71":0.00589,"72":0.00589,"74":0.03241,"75":0.01178,"76":0.01178,"77":0.00884,"78":0.00589,"79":0.10311,"80":0.01473,"81":0.01473,"83":0.05008,"84":0.01178,"85":0.05597,"86":0.02651,"87":0.109,"88":0.02946,"89":0.02651,"90":0.03241,"91":0.12373,"92":0.109,"93":0.08249,"94":0.37709,"95":7.94242,"96":5.20853,"97":0.00295,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 59 61 64 73 98 99"},F:{"70":0.00295,"78":0.00295,"79":0.01473,"80":0.5126,"81":0.18265,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02357,"13":0.00589,"14":0.00589,"15":0.01473,"16":0.01768,"17":0.02357,"18":0.10311,"84":0.00589,"85":0.00589,"86":0.00884,"89":0.00589,"90":0.00884,"91":0.01473,"92":0.04124,"93":0.01473,"94":0.0707,"95":1.48184,"96":0.64517,_:"79 80 81 83 87 88"},E:{"4":0,"10":0.00589,"11":0.00295,"12":0.00884,"13":0.00884,"14":0.06187,"15":0.11784,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.01178,"10.1":0.03241,"11.1":0.02651,"12.1":0.03241,"13.1":0.10311,"14.1":0.23863,"15.1":0.15319},G:{"8":0.00427,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00427,"6.0-6.1":0,"7.0-7.1":0.05695,"8.1-8.4":0.00569,"9.0-9.2":0.00427,"9.3":0.09823,"10.0-10.2":0.00997,"10.3":0.47977,"11.0-11.2":0.14236,"11.3-11.4":0.09681,"12.0-12.1":0.14379,"12.2-12.5":1.56459,"13.0-13.1":0.08257,"13.2":0.06122,"13.3":0.18507,"13.4-13.7":0.46838,"14.0-14.4":1.88348,"14.5-14.8":5.4426,"15.0-15.1":3.49363},P:{"4":0.50936,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":0.49918,"8.2":0.0618,"9.2":0.0815,"10.1":0.02037,"11.1-11.2":0.36674,"12.0":0.20375,"13.0":0.28524,"14.0":0.35656,"15.0":1.90502},I:{"0":0,"3":0,"4":0.00032,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00112,"4.2-4.3":0.00321,"4.4":0,"4.4.3-4.4.4":0.03767},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29165,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":58.47853},S:{"2.5":0.02822},R:{_:"0"},M:{"0":0.16224},Q:{"10.4":0},O:{"0":0.08465},H:{"0":0.4608}}; +module.exports={C:{"34":0.003,"35":0.00901,"41":0.003,"43":0.00901,"45":0.006,"47":0.003,"48":0.006,"49":0.006,"50":0.003,"52":0.02402,"57":0.003,"64":0.003,"68":0.006,"70":0.02402,"72":0.00901,"75":0.01201,"78":0.06304,"80":0.07805,"81":0.04203,"84":0.01501,"85":0.01501,"88":0.02702,"89":0.02101,"90":0.003,"91":0.03302,"92":0.01201,"93":0.006,"94":0.80153,"95":1.47098,"96":0.01801,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 42 44 46 51 53 54 55 56 58 59 60 61 62 63 65 66 67 69 71 73 74 76 77 79 82 83 86 87 97 3.5 3.6"},D:{"32":0.006,"43":0.003,"49":0.04803,"55":0.006,"56":0.003,"57":0.00901,"58":0.003,"60":0.01501,"62":0.003,"63":0.02101,"65":0.02702,"66":0.003,"67":0.006,"69":0.01801,"70":0.006,"72":0.003,"74":0.01501,"75":0.02101,"76":0.01501,"77":0.01201,"78":0.003,"79":0.07505,"80":0.01501,"81":0.01801,"83":0.01501,"84":0.01201,"85":0.11708,"86":0.03002,"87":0.06304,"88":0.02402,"89":0.02702,"90":0.04203,"91":0.06304,"92":0.10807,"93":0.04203,"94":0.1531,"95":0.20714,"96":12.85456,"97":0.006,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 59 61 64 68 71 73 98 99"},F:{"36":0.003,"70":0.006,"79":0.006,"80":0.00901,"81":0.22215,"82":0.4473,_:"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 71 72 73 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},E:{"4":0,"10":0.00901,"11":0.003,"12":0.006,"13":0.00901,"14":0.05404,"15":0.06304,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.00901,"10.1":0.02101,"11.1":0.02101,"12.1":0.03302,"13.1":0.08706,"14.1":0.23416,"15.1":0.18612,"15.2":0.04203},B:{"12":0.01801,"13":0.003,"14":0.006,"15":0.01201,"16":0.01201,"17":0.05704,"18":0.05404,"84":0.006,"85":0.00901,"86":0.006,"89":0.006,"90":0.00901,"91":0.00901,"92":0.01201,"93":0.00901,"94":0.02101,"95":0.06905,"96":2.14343,_:"79 80 81 83 87 88"},G:{"8":0.00139,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00554,"6.0-6.1":0,"7.0-7.1":0.04709,"8.1-8.4":0,"9.0-9.2":0.00277,"9.3":0.08865,"10.0-10.2":0.02355,"10.3":0.44324,"11.0-11.2":0.17868,"11.3-11.4":0.13436,"12.0-12.1":0.10942,"12.2-12.5":1.77434,"13.0-13.1":0.08588,"13.2":0.04709,"13.3":0.17314,"13.4-13.7":0.4377,"14.0-14.4":1.73002,"14.5-14.8":3.99331,"15.0-15.1":4.1429,"15.2":0.428},P:{"4":0.56084,"5.0-5.4":0.01032,"6.2-6.4":0.03059,"7.2-7.4":0.50985,"8.2":0.02052,"9.2":0.06118,"10.1":0.04079,"11.1-11.2":0.29571,"12.0":0.16315,"13.0":0.25493,"14.0":0.31611,"15.0":0.65261},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00036,"2.3":0,"4.1":0.00108,"4.2-4.3":0.00307,"4.4":0,"4.4.3-4.4.4":0.04446},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.26117,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.007},O:{"0":0.07697},H:{"0":0.43058},L:{"0":59.42495},S:{"2.5":0.05598},R:{_:"0"},M:{"0":0.16793},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js index a9660248870428..52732f091a4c03 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:{"8":0.00921,"52":0.00461,"55":0.00461,"63":0.0023,"78":0.01152,"88":0.0023,"89":0.00461,"91":0.00461,"92":0.00461,"93":0.22339,"94":0.6126,"95":0.01382,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 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 90 96 3.5 3.6"},D:{"21":0.0023,"33":0.0023,"37":0.00921,"38":0.00921,"43":0.01842,"44":0.0023,"49":0.00461,"50":0.00461,"53":0.00461,"55":0.0023,"56":0.00921,"57":0.076,"58":0.0023,"63":0.02073,"64":0.00691,"65":0.00691,"67":0.00461,"68":0.01152,"69":0.02303,"70":0.00691,"71":0.00691,"72":0.00921,"74":0.00691,"76":0.00461,"77":0.00461,"78":0.01152,"79":0.05758,"80":0.00691,"81":0.01612,"83":0.01152,"84":0.01152,"85":0.02073,"86":0.02764,"87":0.05758,"88":0.01382,"89":0.01152,"90":0.02533,"91":0.05758,"92":0.0783,"93":0.10133,"94":0.47212,"95":8.72837,"96":6.00853,"97":0.02764,"98":0.00461,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 34 35 36 39 40 41 42 45 46 47 48 51 52 54 59 60 61 62 66 73 75 99"},F:{"77":0.00691,"79":0.03915,"80":0.39151,"81":0.152,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 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.02533,"13":0.00461,"14":0.00691,"15":0.00461,"16":0.00921,"17":0.00691,"18":0.11515,"84":0.00921,"85":0.01152,"88":0.0023,"89":0.02073,"90":0.02073,"91":0.01382,"92":0.02303,"93":0.04606,"94":0.04145,"95":1.11465,"96":0.65866,_:"79 80 81 83 86 87"},E:{"4":0,"13":0.00461,"14":0.09212,"15":0.05527,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00461,"10.1":0.03455,"11.1":0.01382,"12.1":0.01842,"13.1":0.03455,"14.1":0.17733,"15.1":0.21418},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00241,"8.1-8.4":0.0018,"9.0-9.2":0,"9.3":0.03547,"10.0-10.2":0.00421,"10.3":0.02285,"11.0-11.2":0.00842,"11.3-11.4":0.01383,"12.0-12.1":0.01022,"12.2-12.5":0.53151,"13.0-13.1":0.03968,"13.2":0.00842,"13.3":0.1431,"13.4-13.7":0.1936,"14.0-14.4":0.93555,"14.5-14.8":2.13205,"15.0-15.1":1.92763},P:{"4":0.46318,"5.0-5.4":0.07048,"6.2-6.4":0.14097,"7.2-7.4":1.13781,"8.2":0.0618,"9.2":0.12083,"10.1":0.04028,"11.1-11.2":0.41283,"12.0":0.11076,"13.0":0.45311,"14.0":0.54373,"15.0":2.52735},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01976,"4.4":0,"4.4.3-4.4.4":0.12648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07139,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":59.13662},S:{"2.5":0},R:{_:"0"},M:{"0":0.21552},Q:{"10.4":0},O:{"0":2.23983},H:{"0":5.00618}}; +module.exports={C:{"34":0.01086,"47":0.00543,"78":0.00543,"85":0.00814,"91":0.00814,"93":0.00543,"94":0.20084,"95":0.37182,"96":0.01086,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 92 97 3.5 3.6"},D:{"31":0.00271,"33":0.00543,"35":0.00543,"37":0.00814,"43":0.07599,"49":0.00814,"56":0.00271,"57":0.01357,"60":0.00814,"63":0.03257,"64":0.01357,"67":0.00271,"68":0.01086,"70":0.00814,"71":0.00543,"72":0.00543,"74":0.00814,"75":0.00271,"76":0.00543,"78":0.00543,"79":0.06242,"80":0.01357,"81":0.01628,"83":0.00543,"84":0.02171,"85":0.00543,"86":0.03528,"87":0.05971,"88":0.01357,"89":0.02985,"90":0.02171,"91":0.34739,"92":0.05971,"93":0.06785,"94":0.1737,"95":0.26054,"96":15.39381,"97":0.04885,"98":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 32 34 36 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 58 59 61 62 65 66 69 73 77 99"},F:{"77":0.00271,"79":0.01357,"80":0.01628,"81":0.2904,"82":0.33925,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00814,"13":0.00271,"14":0.08413,"15":0.07328,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00271,"10.1":0.06785,"11.1":0.01086,"12.1":0.00271,"13.1":0.02171,"14.1":0.1547,"15.1":0.29311,"15.2":0.04885},B:{"12":0.03257,"13":0.00543,"14":0.01086,"15":0.00543,"16":0.01628,"17":0.00814,"18":0.08413,"84":0.01086,"85":0.019,"89":0.019,"90":0.00814,"91":0.00543,"92":0.019,"93":0.00814,"94":0.03528,"95":0.06514,"96":1.67454,_:"79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00551,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01775,"10.0-10.2":0.00612,"10.3":0.03182,"11.0-11.2":0.00796,"11.3-11.4":0.01285,"12.0-12.1":0.02448,"12.2-12.5":0.47675,"13.0-13.1":0.02938,"13.2":0.00979,"13.3":0.11138,"13.4-13.7":0.16952,"14.0-14.4":0.91678,"14.5-14.8":1.65485,"15.0-15.1":2.38864,"15.2":0.25582},P:{"4":0.45206,"5.0-5.4":0.09041,"6.2-6.4":0.15069,"7.2-7.4":0.97444,"8.2":0.02052,"9.2":0.09041,"10.1":0.01005,"11.1-11.2":0.31142,"12.0":0.15069,"13.0":0.33151,"14.0":0.40183,"15.0":0.78357},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03105,"4.4":0,"4.4.3-4.4.4":0.15836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04614,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":2.40405},H:{"0":3.88299},L:{"0":60.62987},S:{"2.5":0},R:{_:"0"},M:{"0":0.13842},Q:{"10.4":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 7c90fa3e8fbae5..da39fb544bd5c8 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:{"30":0.00345,"45":0.00691,"52":0.02072,"78":0.0587,"91":0.00691,"92":0.00691,"93":0.25898,"94":1.68161,"95":0.72513,_:"2 3 4 5 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 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 96 3.5 3.6"},D:{"22":0.01036,"34":0.00345,"42":0.00345,"49":0.23826,"63":0.02072,"65":0.01036,"73":0.00691,"75":0.02762,"76":0.03108,"79":0.02762,"80":0.00691,"81":0.01381,"83":0.01036,"86":0.02072,"87":0.14848,"88":0.04489,"89":0.03108,"90":0.01381,"91":0.08287,"92":0.13121,"93":0.20027,"94":0.5732,"95":13.13176,"96":7.49646,"97":0.03108,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 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 74 77 78 84 85 98 99"},F:{"28":0.00691,"63":0.03108,"70":0.00691,"79":0.00345,"80":0.48687,"81":0.17265,_:"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 71 72 73 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.0587,"15":0.00691,"16":0.16574,"17":0.01381,"18":0.05525,"84":0.00691,"87":0.00691,"89":0.00691,"90":0.00345,"91":0.00691,"92":0.02762,"93":0.01381,"94":0.12086,"95":2.8211,"96":0.9772,_:"13 14 79 80 81 83 85 86 88"},E:{"4":0,"12":0.00691,"13":0.02417,"14":0.07597,"15":0.21409,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00691,"11.1":0.00345,"12.1":0.01727,"13.1":0.09323,"14.1":0.95993,"15.1":0.25898},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02911,"6.0-6.1":0,"7.0-7.1":0.04636,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.11967,"10.0-10.2":0.00108,"10.3":0.19836,"11.0-11.2":0.01186,"11.3-11.4":0.01186,"12.0-12.1":0.03881,"12.2-12.5":1.07268,"13.0-13.1":0.10996,"13.2":0.00216,"13.3":0.22639,"13.4-13.7":0.18112,"14.0-14.4":0.63067,"14.5-14.8":4.02011,"15.0-15.1":4.07617},P:{"4":0.7671,"5.0-5.4":0.07152,"6.2-6.4":0.08174,"7.2-7.4":0.73642,"8.2":0.03043,"9.2":0.05114,"10.1":0.01023,"11.1-11.2":0.33752,"12.0":0.15342,"13.0":0.39889,"14.0":0.56254,"15.0":6.42318},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.00374,"4.4":0,"4.4.3-4.4.4":0.02182},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19682,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":46.14756},S:{"2.5":0},R:{_:"0"},M:{"0":0.19641},Q:{"10.4":0},O:{"0":0.45174},H:{"0":0.17975}}; +module.exports={C:{"52":0.02029,"78":0.04397,"79":0.00338,"84":0.00338,"91":0.00676,"94":0.42951,"95":1.1837,"96":0.08793,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 85 86 87 88 89 90 92 93 97 3.5 3.6"},D:{"38":0.00676,"39":0.01691,"42":0.00338,"49":0.17248,"50":0.00676,"53":0.01353,"61":0.00676,"63":0.01691,"65":0.01353,"73":0.03044,"75":0.01015,"76":0.00676,"77":0.00338,"79":0.02706,"80":0.00338,"81":0.01353,"83":0.02029,"84":0.03382,"85":0.00338,"86":0.00676,"87":0.06088,"88":0.03382,"89":0.02367,"90":0.04735,"91":0.10484,"92":0.10484,"93":0.12852,"94":0.17586,"95":0.39569,"96":19.88954,_:"4 5 6 7 8 9 10 11 12 13 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 43 44 45 46 47 48 51 52 54 55 56 57 58 59 60 62 64 66 67 68 69 70 71 72 74 78 97 98 99"},F:{"66":0.01353,"81":0.20292,"82":0.45995,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02029,"14":0.09808,"15":0.24012,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00676,"10.1":0.01015,"11.1":0.00338,"12.1":0.01353,"13.1":0.06764,"14.1":0.69669,"15.1":0.65611,"15.2":0.12852},B:{"12":0.05073,"14":0.00338,"16":0.05073,"17":0.01015,"18":0.04397,"84":0.01353,"85":0.01015,"86":0.00676,"89":0.01353,"90":0.00338,"92":0.02367,"93":0.00338,"94":0.01691,"95":0.06426,"96":3.84872,_:"13 15 79 80 81 83 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0328,"6.0-6.1":0,"7.0-7.1":0.02065,"8.1-8.4":0.00364,"9.0-9.2":0.00243,"9.3":0.12755,"10.0-10.2":0,"10.3":0.17857,"11.0-11.2":0,"11.3-11.4":0.00972,"12.0-12.1":0.02308,"12.2-12.5":1.13702,"13.0-13.1":0.13484,"13.2":0.00364,"13.3":0.29154,"13.4-13.7":0.19193,"14.0-14.4":0.75194,"14.5-14.8":3.25193,"15.0-15.1":5.64867,"15.2":0.33406},P:{"4":0.68622,"5.0-5.4":0.04051,"6.2-6.4":0.08103,"7.2-7.4":0.59404,"8.2":0.02031,"9.2":0.03073,"10.1":0.02048,"11.1-11.2":0.4609,"12.0":0.12291,"13.0":0.28678,"14.0":0.43017,"15.0":1.36221},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.00098,"4.4":0,"4.4.3-4.4.4":0.01186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23674,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.90667},H:{"0":0.21303},L:{"0":46.23562},S:{"2.5":0},R:{_:"0"},M:{"0":0.41693},Q:{"10.4":0.01985}}; 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 655be5879b3795..6305f48ded04d3 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:{"70":0.01216,"75":0.01216,"77":0.01216,"78":0.14594,"89":0.03649,"92":0.01216,"93":0.39527,"94":1.3135,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 76 79 80 81 82 83 84 85 86 87 88 90 91 95 96 3.5 3.6"},D:{"37":0.08513,"43":0.54121,"57":0.02432,"61":0.17027,"63":0.03649,"67":0.03649,"69":0.10946,"70":0.13378,"74":0.43175,"79":0.45608,"81":0.21892,"86":0.03649,"87":0.03649,"88":0.10946,"89":1.00945,"90":0.10946,"91":0.01216,"92":0.26756,"93":0.13378,"94":1.68444,"95":24.06252,"96":12.15592,_:"4 5 6 7 8 9 10 11 12 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 49 50 51 52 53 54 55 56 58 59 60 62 64 65 66 68 71 72 73 75 76 77 78 80 83 84 85 97 98 99"},F:{"53":0.01216,"78":0.04865,"80":1.2162,"81":0.12162,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.12162,"15":0.08513,"89":0.12162,"90":0.02432,"92":0.0973,"94":0.0973,"95":3.84927,"96":2.29862,_:"13 14 16 17 18 79 80 81 83 84 85 86 87 88 91 93"},E:{"4":0,"13":0.04865,"14":0.02432,"15":0.03649,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1","9.1":0.01216,"13.1":0.07297,"14.1":0.45608,"15.1":0.01216},G:{"8":0,"3.2":0,"4.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.02111,"10.0-10.2":0,"10.3":0.03191,"11.0-11.2":0.06358,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.20155,"13.0-13.1":0,"13.2":0,"13.3":0.01056,"13.4-13.7":0.0955,"14.0-14.4":0.15908,"14.5-14.8":0.68982,"15.0-15.1":1.12531},P:{"4":0.28599,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":0.0715,"8.2":0.0618,"9.2":1.13302,"10.1":0.0206,"11.1-11.2":0.34728,"12.0":0.1751,"13.0":0.01021,"14.0":0.01021,"15.0":0.32685},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01113,"4.2-4.3":0.01284,"4.4":0,"4.4.3-4.4.4":0.19942},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.44391,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.17937},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":2.38667},H:{"0":0.36361}}; +module.exports={C:{"77":0.01496,"85":0.01496,"91":0.05984,"93":0.02992,"94":0.23439,"95":0.82286,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 86 87 88 89 90 92 96 97 3.5 3.6"},D:{"37":0.01496,"43":0.87771,"44":0.01496,"57":0.04488,"58":0.02992,"63":0.08977,"67":0.01496,"68":0.24935,"70":0.01496,"74":0.55854,"79":0.11969,"80":0.01496,"81":0.14462,"83":0.01496,"86":0.23439,"88":0.08977,"89":6.72248,"90":0.01496,"91":0.10473,"92":0.80789,"93":0.15958,"94":0.18951,"95":3.28145,"96":16.29253,_:"4 5 6 7 8 9 10 11 12 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 45 46 47 48 49 50 51 52 53 54 55 56 59 60 61 62 64 65 66 69 71 72 73 75 76 77 78 84 85 87 97 98 99"},F:{"80":0.17455,"81":0.12966,"82":0.15958,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"15":0.04488,_:"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 15.2","14.1":0.67325,"15.1":0.21943},B:{"13":0.01496,"14":0.01496,"18":0.01496,"87":0.01496,"91":0.01496,"92":0.01496,"94":0.02992,"95":0.04488,"96":3.17672,_:"12 15 16 17 79 80 81 83 84 85 86 88 89 90 93"},G:{"8":0,"3.2":0,"4.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.01285,"11.0-11.2":0.01285,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":2.8418,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.13085,"14.0-14.4":0.06542,"14.5-14.8":0.73308,"15.0-15.1":1.93873,"15.2":0.10456},P:{"4":0.07236,"5.0-5.4":0.07256,"6.2-6.4":0.04135,"7.2-7.4":0.0827,"8.2":0.02052,"9.2":0.09329,"10.1":0.01034,"11.1-11.2":0.01034,"12.0":0.01034,"13.0":0.27912,"14.0":0.01034,"15.0":1.08547},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.30919,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":2.29595},H:{"0":0.43188},L:{"0":52.17864},S:{"2.5":0},R:{_:"0"},M:{"0":0.01504},Q:{"10.4":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 fa361e9941c54b..54ff01575c2d78 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.00887,"52":0.02217,"63":0.00443,"68":0.00443,"70":0.02217,"72":0.00887,"73":0.05763,"78":0.05763,"80":0.00887,"88":0.0133,"89":0.0266,"90":0.21722,"91":0.02217,"92":0.01773,"93":0.28371,"94":1.76433,"95":0.02217,_:"2 3 4 5 6 7 8 9 10 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 64 65 66 67 69 71 74 75 76 77 79 81 82 83 84 85 86 87 96 3.5 3.6"},D:{"38":0.00443,"43":0.00443,"49":0.05763,"55":0.00443,"63":0.00443,"65":0.00887,"67":0.0133,"69":0.00443,"70":0.0133,"71":0.00887,"72":0.00887,"73":0.0133,"74":0.00887,"75":0.0133,"76":0.01773,"77":0.0266,"78":0.0266,"79":0.09753,"80":0.02217,"81":0.05763,"83":0.0133,"84":0.03546,"85":0.04433,"86":0.03103,"87":0.13742,"88":0.04433,"89":0.03103,"90":0.11083,"91":0.17732,"92":0.21722,"93":0.17289,"94":0.92206,"95":17.90489,"96":11.15343,"97":0.00887,"98":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 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 64 66 68 99"},F:{"79":0.00887,"80":1.11712,"81":0.62949,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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:{"15":0.0133,"17":0.0133,"18":0.0266,"84":0.00887,"89":0.01773,"91":0.00887,"92":0.0133,"93":0.00887,"94":0.05763,"95":2.07908,"96":0.8467,_:"12 13 14 16 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.07093,"14":0.09753,"15":0.23938,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04876,"11.1":0.00887,"12.1":0.0133,"13.1":0.08866,"14.1":0.42557,"15.1":0.35464},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00168,"6.0-6.1":0.00337,"7.0-7.1":0.01684,"8.1-8.4":0.00225,"9.0-9.2":0,"9.3":0.032,"10.0-10.2":0.00056,"10.3":0.02021,"11.0-11.2":0.11228,"11.3-11.4":0.01179,"12.0-12.1":0.0073,"12.2-12.5":0.30595,"13.0-13.1":0.00561,"13.2":0.00561,"13.3":0.04547,"13.4-13.7":0.11171,"14.0-14.4":0.35648,"14.5-14.8":2.29211,"15.0-15.1":2.28032},P:{"4":0.12492,"5.0-5.4":0.01069,"6.2-6.4":0.07104,"7.2-7.4":0.18737,"8.2":0.02037,"9.2":0.04164,"10.1":0.02231,"11.1-11.2":0.16655,"12.0":0.04164,"13.0":0.28106,"14.0":0.17696,"15.0":1.64473},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.00775,"4.4":0,"4.4.3-4.4.4":0.06289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08866,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.00821,_:"11"},L:{"0":49.69941},S:{"2.5":0},R:{_:"0"},M:{"0":0.71814},Q:{"10.4":0},O:{"0":0.11691},H:{"0":0.27406}}; +module.exports={C:{"35":0.01278,"41":0.00426,"42":0.00852,"52":0.0213,"68":0.00426,"70":0.0213,"72":0.00852,"73":0.05963,"78":0.06389,"86":0.00426,"88":0.01278,"89":0.02981,"90":0.26406,"91":0.01704,"92":0.01278,"93":0.00852,"94":0.65589,"95":1.15845,"96":0.01278,_:"2 3 4 5 6 7 8 9 10 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 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 71 74 75 76 77 79 80 81 82 83 84 85 87 97 3.5 3.6"},D:{"38":0.00852,"49":0.05963,"65":0.00852,"67":0.01704,"69":0.01278,"70":0.01278,"72":0.01704,"73":0.01278,"74":0.00852,"75":0.02555,"76":0.0213,"77":0.01704,"78":0.0213,"79":0.0937,"80":0.01278,"81":0.02981,"83":0.01704,"84":0.0213,"85":0.01704,"86":0.02555,"87":0.12351,"88":0.03407,"89":0.03407,"90":0.11073,"91":0.12777,"92":0.18314,"93":0.08944,"94":0.41312,"95":0.37479,"96":26.16304,"97":0.00852,"98":0.01278,"99":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 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 71"},F:{"77":0.00426,"79":0.00426,"80":0.01278,"81":0.91569,"82":0.67718,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.05111,"14":0.08518,"15":0.14481,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04685,"11.1":0.00426,"12.1":0.01278,"13.1":0.08092,"14.1":0.31091,"15.1":0.46849,"15.2":0.04259},B:{"15":0.01704,"18":0.01278,"84":0.00852,"85":0.00852,"89":0.00426,"91":0.00852,"92":0.01278,"93":0.00852,"94":0.02555,"95":0.06389,"96":2.66613,_:"12 13 14 16 17 79 80 81 83 86 87 88 90"},G:{"8":0.00125,"3.2":0.00375,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0025,"6.0-6.1":0.00188,"7.0-7.1":0.02377,"8.1-8.4":0.00188,"9.0-9.2":0,"9.3":0.03253,"10.0-10.2":0.00063,"10.3":0.01939,"11.0-11.2":0.00563,"11.3-11.4":0.00876,"12.0-12.1":0.01126,"12.2-12.5":0.3347,"13.0-13.1":0.00563,"13.2":0.00813,"13.3":0.03003,"13.4-13.7":0.10761,"14.0-14.4":0.32157,"14.5-14.8":1.76987,"15.0-15.1":3.2726,"15.2":0.28966},P:{"4":0.11413,"5.0-5.4":0.01058,"6.2-6.4":0.11115,"7.2-7.4":0.17639,"8.2":0.01016,"9.2":0.05188,"10.1":0.07114,"11.1-11.2":0.16601,"12.0":0.03113,"13.0":0.3009,"14.0":0.17639,"15.0":0.31128},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00189,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.04475},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13203,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.13781},H:{"0":0.22288},L:{"0":52.73918},S:{"2.5":0},R:{_:"0"},M:{"0":0.84407},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js index a1f85862906916..48ac3b099e13ad 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:{"17":0.00459,"27":0.00153,"30":0.00919,"35":0.00153,"39":0.00153,"41":0.00153,"43":0.00306,"47":0.00612,"48":0.00306,"49":0.00153,"52":0.04593,"53":0.00153,"54":0.00153,"56":0.00919,"58":0.00306,"61":0.00919,"62":0.00306,"63":0.00153,"65":0.00306,"66":0.00306,"68":0.00306,"72":0.01837,"73":0.00306,"76":0.02297,"78":0.01072,"80":0.00919,"81":0.00459,"83":0.00153,"84":0.03521,"85":0.00612,"86":0.00612,"87":0.02143,"88":0.01072,"89":0.01837,"90":0.01072,"91":0.02756,"92":0.04746,"93":0.24955,"94":1.47129,"95":0.03215,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 28 29 31 32 33 34 36 37 38 40 42 44 45 46 50 51 55 57 59 60 64 67 69 70 71 74 75 77 79 82 96 3.5 3.6"},D:{"11":0.00306,"24":0.00153,"30":0.00153,"32":0.00153,"33":0.00612,"35":0.00153,"36":0.04746,"38":0.01072,"39":0.00306,"40":0.00459,"42":0.00306,"43":0.00766,"44":0.00306,"47":0.00153,"48":0.00766,"49":0.0199,"50":0.00306,"51":0.00153,"52":0.00612,"55":0.00766,"56":0.00459,"57":0.00459,"58":0.00459,"59":0.00306,"60":0.00612,"61":0.00612,"62":0.00306,"63":0.09492,"64":0.00459,"65":0.00612,"66":0.00919,"68":0.00612,"69":0.01684,"70":0.11789,"71":0.00766,"72":0.00766,"73":0.00612,"74":0.00919,"75":0.00766,"76":0.00612,"77":0.00306,"78":0.00766,"79":0.08267,"80":0.02909,"81":0.0245,"83":0.03062,"84":0.01378,"85":0.01531,"86":0.06277,"87":0.04134,"88":0.03981,"89":0.05359,"90":0.04746,"91":0.12095,"92":0.10717,"93":0.17913,"94":0.53126,"95":5.01096,"96":3.18601,"97":0.00766,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 31 34 37 41 45 46 53 54 67 98 99"},F:{"28":0.00459,"74":0.03674,"79":0.00459,"80":0.35519,"81":0.13167,_:"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 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.00306,"13":0.00459,"14":0.00306,"15":0.00459,"16":0.00459,"17":0.00766,"18":0.05512,"84":0.01072,"85":0.00306,"88":0.00153,"89":0.01378,"90":0.00612,"91":0.00306,"92":0.00919,"93":0.00459,"94":0.0245,"95":0.51595,"96":0.18984,_:"79 80 81 83 86 87"},E:{"4":0,"12":0.00153,"13":0.00459,"14":0.0199,"15":0.0199,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06124,"11.1":0.00919,"12.1":0.00306,"13.1":0.01225,"14.1":0.04287,"15.1":0.04134},G:{"8":0,"3.2":0.00143,"4.0-4.1":0,"4.2-4.3":0.00057,"5.0-5.1":0.002,"6.0-6.1":0.00229,"7.0-7.1":0.0292,"8.1-8.4":0.00115,"9.0-9.2":0.00172,"9.3":0.08645,"10.0-10.2":0.0249,"10.3":0.06841,"11.0-11.2":0.02948,"11.3-11.4":0.04466,"12.0-12.1":0.08273,"12.2-12.5":0.43424,"13.0-13.1":0.02061,"13.2":0.00658,"13.3":0.05067,"13.4-13.7":0.12108,"14.0-14.4":0.33234,"14.5-14.8":0.84158,"15.0-15.1":0.68042},P:{"4":1.69563,"5.0-5.4":0.07065,"6.2-6.4":0.16149,"7.2-7.4":0.31288,"8.2":0.03028,"9.2":0.26242,"10.1":0.17158,"11.1-11.2":0.2927,"12.0":0.17158,"13.0":0.50465,"14.0":0.97902,"15.0":1.65525},I:{"0":0,"3":0,"4":0.00185,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02007,"4.2-4.3":0.03576,"4.4":0,"4.4.3-4.4.4":0.20486},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00328,"7":0.00328,"8":0.01311,"9":0.00492,"10":0.00656,"11":0.10818,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":73.17413},S:{"2.5":0},R:{_:"0"},M:{"0":0.16938},Q:{"10.4":0},O:{"0":1.04169},H:{"0":1.75592}}; +module.exports={C:{"3":0.00325,"16":0.00162,"30":0.00325,"34":0.00649,"41":0.00325,"43":0.00325,"44":0.00649,"45":0.00162,"47":0.00487,"48":0.00325,"50":0.00325,"52":0.08764,"56":0.02272,"58":0.00325,"59":0.00162,"60":0.00162,"61":0.01298,"62":0.00325,"63":0.00162,"65":0.00325,"66":0.00325,"71":0.00974,"72":0.00974,"76":0.00162,"78":0.02597,"80":0.00325,"81":0.01136,"84":0.03246,"85":0.00649,"86":0.00649,"87":0.00487,"88":0.00649,"89":0.0211,"90":0.00649,"91":0.01461,"92":0.01785,"93":0.02597,"94":0.49988,"95":0.89914,"96":0.02435,_:"2 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 31 32 33 35 36 37 38 39 40 42 46 49 51 53 54 55 57 64 67 68 69 70 73 74 75 77 79 82 83 97 3.5 3.6"},D:{"23":0.00162,"33":0.00487,"34":0.00325,"36":0.00325,"37":0.00325,"38":0.01785,"39":0.00162,"41":0.00162,"42":0.00325,"43":0.01623,"44":0.00649,"48":0.02759,"49":0.02597,"50":0.00162,"51":0.00162,"52":0.00487,"53":0.00325,"55":0.00812,"56":0.00649,"57":0.00812,"58":0.00487,"59":0.00162,"60":0.00487,"61":0.00162,"62":0.00325,"63":0.06005,"64":0.00487,"65":0.00162,"66":0.00325,"67":0.00325,"68":0.00649,"69":0.01623,"70":0.07953,"71":0.01136,"72":0.00487,"73":0.00487,"74":0.01136,"75":0.00974,"76":0.00812,"77":0.00325,"78":0.01461,"79":0.05194,"80":0.02435,"81":0.04058,"83":0.03571,"84":0.02759,"85":0.01136,"86":0.03895,"87":0.09738,"88":0.03571,"89":0.05843,"90":0.02759,"91":0.07628,"92":0.08927,"93":0.09738,"94":0.20125,"95":0.22235,"96":8.36981,"98":0.32622,_:"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 35 40 45 46 47 54 97 99"},F:{"42":0.00162,"74":0.05681,"79":0.00487,"80":0.00812,"81":0.15905,"82":0.39277,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0.00325,"13":0.01136,"14":0.01785,"15":0.00974,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.06817,"10.1":0.00162,"12.1":0.00325,"13.1":0.00974,"14.1":0.06167,"15.1":0.08602,"15.2":0.01461},B:{"12":0.00162,"15":0.00162,"16":0.00812,"17":0.00812,"18":0.04707,"80":0.00487,"84":0.00812,"89":0.01298,"90":0.00325,"91":0.00325,"92":0.01298,"93":0.00325,"94":0.00812,"95":0.03571,"96":0.7336,_:"13 14 79 81 83 85 86 87 88"},G:{"8":0,"3.2":0.00063,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00283,"6.0-6.1":0.00251,"7.0-7.1":0.02232,"8.1-8.4":0.00723,"9.0-9.2":0.0022,"9.3":0.09336,"10.0-10.2":0.01132,"10.3":0.06727,"11.0-11.2":0.01823,"11.3-11.4":0.03961,"12.0-12.1":0.07419,"12.2-12.5":0.40678,"13.0-13.1":0.0132,"13.2":0.00786,"13.3":0.04495,"13.4-13.7":0.13014,"14.0-14.4":0.40206,"14.5-14.8":0.7356,"15.0-15.1":0.94747,"15.2":0.1116},P:{"4":2.09268,"5.0-5.4":0.08049,"6.2-6.4":0.1811,"7.2-7.4":0.4125,"8.2":0.07043,"9.2":0.30183,"10.1":0.21128,"11.1-11.2":0.34207,"12.0":0.22134,"13.0":0.66402,"14.0":1.15701,"15.0":1.10671},I:{"0":0,"3":0,"4":0.00237,"2.1":0,"2.2":0,"2.3":0.00079,"4.1":0.02183,"4.2-4.3":0.03103,"4.4":0,"4.4.3-4.4.4":0.17855},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01141,"7":0.01141,"8":0.04565,"9":0.01712,"10":0.02663,"11":0.18641,_:"5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.19791},H:{"0":2.22062},L:{"0":70.56429},S:{"2.5":0},R:{_:"0"},M:{"0":0.15079},Q:{"10.4":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 ddea3dba980ca9..8a4562f7bf3c1c 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:{"23":0.00527,"27":0.01317,"38":0.00527,"45":0.00527,"50":0.00263,"52":0.01317,"54":0.00263,"55":0.00527,"56":0.00263,"59":0.0079,"60":0.08165,"61":0.00527,"63":0.00263,"66":0.00527,"68":0.00527,"72":0.0158,"77":0.0079,"78":0.00263,"83":0.00527,"88":0.01317,"89":0.0158,"91":0.01317,"92":0.0158,"93":0.09746,"94":0.62162,"95":0.07902,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 49 51 53 57 58 62 64 65 67 69 70 71 73 74 75 76 79 80 81 82 84 85 86 87 90 96 3.5 3.6"},D:{"33":0.00527,"40":0.01844,"49":0.01054,"52":0.0079,"56":0.0079,"57":0.00263,"60":0.01054,"64":0.00263,"66":0.0079,"67":0.01054,"69":0.00527,"70":0.04214,"71":0.0079,"72":0.00263,"74":0.03951,"76":0.00527,"78":0.00263,"79":0.08956,"80":0.0079,"81":0.03688,"83":0.0079,"84":0.01054,"85":0.0079,"86":0.01054,"87":0.06585,"88":0.02634,"89":0.0079,"90":0.0158,"91":0.04741,"92":0.07112,"93":0.07375,"94":0.32662,"95":6.56656,"96":3.46898,"97":0.0079,_:"4 5 6 7 8 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 43 44 45 46 47 48 50 51 53 54 55 58 59 61 62 63 65 68 73 75 77 98 99"},F:{"16":0.00263,"36":0.00263,"40":0.00263,"42":0.00527,"58":0.00263,"65":0.0079,"72":0.00527,"74":0.00527,"75":0.0079,"77":0.00527,"78":0.00527,"79":0.01844,"80":0.49519,"81":0.17121,_:"9 11 12 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 66 67 68 69 70 71 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00263},B:{"12":0.02897,"13":0.01844,"14":0.01054,"15":0.02107,"16":0.01317,"17":0.02897,"18":0.06058,"79":0.00263,"81":0.00527,"84":0.01317,"85":0.01317,"86":0.00527,"89":0.02897,"90":0.00263,"91":0.00527,"92":0.02371,"93":0.07375,"94":0.04214,"95":1.50138,"96":0.43724,_:"80 83 87 88"},E:{"4":0,"10":0.00263,"11":0.0079,"13":0.0158,"14":0.09482,"15":0.05531,_:"0 5 6 7 8 9 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0158,"11.1":0.0158,"12.1":0.0079,"13.1":0.02107,"14.1":0.06848,"15.1":1.18003},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00344,"8.1-8.4":0.00998,"9.0-9.2":0.00206,"9.3":0.0117,"10.0-10.2":0.00069,"10.3":0.30928,"11.0-11.2":0.00894,"11.3-11.4":0.00998,"12.0-12.1":0.01479,"12.2-12.5":0.21433,"13.0-13.1":0.00826,"13.2":0.01066,"13.3":0.01238,"13.4-13.7":0.06364,"14.0-14.4":0.46272,"14.5-14.8":0.66672,"15.0-15.1":1.63034},P:{"4":0.43951,"5.0-5.4":0.07152,"6.2-6.4":0.08174,"7.2-7.4":0.5315,"8.2":0.03043,"9.2":0.03066,"10.1":0.01022,"11.1-11.2":0.20442,"12.0":0.04088,"13.0":0.1431,"14.0":0.1942,"15.0":1.50252},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.00371,"4.4":0,"4.4.3-4.4.4":0.0819},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11326,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00737},N:{"10":0.02658,"11":0.22582},L:{"0":53.86701},S:{"2.5":0.24308},R:{_:"0"},M:{"0":0.13995},Q:{"10.4":0},O:{"0":1.37744},H:{"0":19.47741}}; +module.exports={C:{"4":0.00482,"26":0.00482,"49":0.00241,"50":0.00241,"51":0.00241,"52":0.00963,"56":0.00241,"60":0.07946,"62":0.00241,"63":0.00482,"67":0.00722,"72":0.00241,"77":0.00241,"78":0.02167,"88":0.00963,"89":0.01686,"91":0.00963,"93":0.00963,"94":0.21913,"95":0.26247,"96":0.0602,_:"2 3 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 53 54 55 57 58 59 61 64 65 66 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 92 97 3.5 3.6"},D:{"24":0.00963,"25":0.00722,"29":0.00722,"40":0.0313,"47":0.00241,"49":0.00482,"56":0.00241,"58":0.00241,"59":0.00241,"63":0.01204,"65":0.01686,"68":0.00482,"69":0.00722,"70":0.03612,"72":0.01445,"74":0.0313,"77":0.00482,"78":0.00241,"79":0.01926,"80":0.00963,"81":0.01926,"83":0.00963,"85":0.00482,"86":0.01204,"87":0.0289,"88":0.01204,"89":0.02167,"90":0.02408,"91":0.02649,"92":0.03853,"93":0.03371,"94":0.14207,"95":0.20709,"96":8.65917,"98":0.00963,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 48 50 51 52 53 54 55 57 60 61 62 64 66 67 71 73 75 76 84 97 99"},F:{"37":0.00482,"42":0.00241,"60":0.00482,"64":0.00722,"65":0.00963,"66":0.00722,"76":0.00722,"79":0.01445,"80":0.00963,"81":0.33712,"82":0.35157,_:"9 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 62 63 67 68 69 70 71 72 73 74 75 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"10":0.00241,"13":0.00963,"14":0.06261,"15":0.04816,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 12.1","5.1":0.01445,"9.1":0.00241,"10.1":0.00963,"11.1":0.00482,"13.1":0.01926,"14.1":0.05779,"15.1":1.33885,"15.2":0.20468},B:{"12":0.03612,"13":0.03371,"14":0.00482,"15":0.02408,"16":0.04575,"17":0.02167,"18":0.11558,"84":0.04334,"85":0.00722,"86":0.00241,"87":0.00241,"89":0.00963,"91":0.01204,"92":0.00482,"93":0.00722,"94":0.01445,"95":0.06742,"96":1.7458,_:"79 80 81 83 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00262,"6.0-6.1":0,"7.0-7.1":0.01203,"8.1-8.4":0.00105,"9.0-9.2":0.01308,"9.3":0.02302,"10.0-10.2":0.00785,"10.3":0.08005,"11.0-11.2":0.00576,"11.3-11.4":0.00471,"12.0-12.1":0.03976,"12.2-12.5":0.25061,"13.0-13.1":0.00732,"13.2":0.00419,"13.3":0.01308,"13.4-13.7":0.07272,"14.0-14.4":0.4693,"14.5-14.8":0.79525,"15.0-15.1":3.27414,"15.2":0.15173},P:{"4":0.44573,"5.0-5.4":0.02026,"6.2-6.4":0.02026,"7.2-7.4":0.46599,"8.2":0.02031,"9.2":0.02026,"10.1":0.02026,"11.1-11.2":0.18234,"12.0":0.02026,"13.0":0.1013,"14.0":0.61794,"15.0":0.29377},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0011,"4.2-4.3":0.00183,"4.4":0,"4.4.3-4.4.4":0.08818},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00241,"10":0.00482,"11":0.15652,_:"6 7 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.32101},H:{"0":19.58625},L:{"0":53.0427},S:{"2.5":0.15184},R:{_:"0"},M:{"0":0.48589},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js index 2552b4912dbe42..48bf161d3e6e39 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:{"45":0.00968,"52":0.06291,"56":0.05323,"63":0.01452,"71":0.00968,"91":0.01936,"93":0.25163,"94":1.50009,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 95 96 3.5 3.6"},D:{"47":0.00968,"49":0.01452,"65":0.00484,"71":0.01936,"75":0.08226,"76":0.04355,"79":0.11614,"80":0.00484,"81":0.03871,"83":0.01452,"85":0.01452,"86":0.00968,"87":0.03871,"88":0.01936,"90":0.01452,"91":0.1742,"92":0.19356,"93":0.45003,"94":5.63744,"95":12.05395,"96":6.75524,"97":0.17904,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 72 73 74 77 78 84 89 98 99"},F:{"78":0.05807,"79":0.02903,"80":0.52745,"81":0.05323,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00968,"18":0.16453,"84":0.02903,"89":0.01452,"90":0.00968,"91":0.04355,"92":0.02903,"93":0.03871,"94":0.14033,"95":4.45188,"96":1.13717,_:"12 13 14 15 17 79 80 81 83 85 86 87 88"},E:{"4":0,"13":0.05323,"14":0.67746,"15":1.0549,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.03387,"10.1":0.14033,"11.1":0.01936,"12.1":0.15485,"13.1":1.19039,"14.1":6.62459,"15.1":1.7614},G:{"8":0,"3.2":0,"4.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.01907,"9.0-9.2":0,"9.3":0.01634,"10.0-10.2":0.00272,"10.3":0.03814,"11.0-11.2":0,"11.3-11.4":0.02452,"12.0-12.1":0.0681,"12.2-12.5":0.99971,"13.0-13.1":0.01907,"13.2":0.02724,"13.3":0.05176,"13.4-13.7":0.35957,"14.0-14.4":2.48702,"14.5-14.8":12.36426,"15.0-15.1":10.75709},P:{"4":2.65646,"5.0-5.4":0.01077,"6.2-6.4":0.0404,"7.2-7.4":0.07536,"8.2":0.01023,"9.2":0.02153,"10.1":0.0303,"11.1-11.2":0.17225,"12.0":0.16161,"13.0":0.02153,"14.0":0.21531,"15.0":1.99162},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.11614,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":22.75666},S:{"2.5":0},R:{_:"0"},M:{"0":0.08774},Q:{"10.4":0},O:{"0":0.01548},H:{"0":0.10749}}; +module.exports={C:{"52":0.01366,"56":0.09106,"63":0.00911,"65":0.00455,"69":0.00455,"74":0.00455,"91":0.00455,"92":0.04553,"93":0.01366,"94":0.46896,"95":0.988,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 64 66 67 68 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 96 97 3.5 3.6"},D:{"58":0.01366,"63":0.00911,"69":0.01366,"76":0.01366,"79":0.02732,"80":0.00911,"81":0.02277,"83":0.00911,"85":0.01821,"87":0.06374,"89":0.00455,"91":0.01821,"92":0.10927,"93":0.13204,"94":1.47062,"95":0.38701,"96":22.03652,"97":0.25042,"98":0.08195,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 64 65 66 67 68 70 71 72 73 74 75 77 78 84 86 88 90 99"},F:{"79":0.02277,"80":0.15936,"81":0.18212,"82":0.10927,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"13":0.35513,"14":0.33237,"15":0.86962,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.03187,"10.1":0.11383,"11.1":0.03187,"12.1":0.17301,"13.1":0.6784,"14.1":3.81997,"15.1":3.27816,"15.2":0.15936},B:{"16":0.1548,"18":0.1457,"89":0.0774,"91":0.02277,"94":0.05464,"95":0.13204,"96":4.58487,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 90 92 93"},G:{"8":0,"3.2":0,"4.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.04377,"10.0-10.2":0,"10.3":0.02918,"11.0-11.2":0.00292,"11.3-11.4":0.02334,"12.0-12.1":0.0642,"12.2-12.5":1.23721,"13.0-13.1":0.00584,"13.2":0,"13.3":0.35599,"13.4-13.7":0.26262,"14.0-14.4":1.45898,"14.5-14.8":8.05648,"15.0-15.1":16.38725,"15.2":1.2518},P:{"4":0.43501,"5.0-5.4":0.03183,"6.2-6.4":0.02065,"7.2-7.4":0.03133,"8.2":0.01032,"9.2":0.03067,"10.1":0.02122,"11.1-11.2":0.0731,"12.0":0.10443,"13.0":0.56394,"14.0":0.0731,"15.0":0.12532},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.02179},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08195,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.10314},L:{"0":23.33539},S:{"2.5":0},R:{_:"0"},M:{"0":0.38129},Q:{"10.4":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 3e54bf0f0e0552..5b0484acb00975 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:{"4":0.00444,"5":0.00888,"17":0.01332,"30":0.00666,"42":0.00666,"48":0.01332,"54":0.00444,"59":0.00222,"72":0.0111,"78":0.00222,"80":0.00222,"84":0.00222,"88":0.00444,"89":0.00666,"91":0.0222,"92":0.00666,"93":0.12654,"94":0.84138,"95":0.01332,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 49 50 51 52 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 85 86 87 90 96 3.5 3.6"},D:{"11":0.00222,"23":0.04218,"24":0.01998,"25":0.00888,"55":0.00888,"57":0.00444,"63":0.01998,"64":0.0111,"68":0.111,"69":0.36408,"74":0.00666,"75":0.00222,"76":0.00444,"77":0.00444,"78":0.0333,"79":0.00222,"80":0.04218,"81":0.00444,"83":0.00444,"84":0.15096,"86":0.00888,"87":0.0888,"88":0.03774,"89":0.0222,"90":0.03552,"91":0.01998,"92":0.1665,"93":0.0444,"94":0.42402,"95":3.55422,"96":2.442,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 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 58 59 60 61 62 65 66 67 70 71 72 73 85 97 98 99"},F:{"34":0.00444,"41":0.00666,"45":0.00666,"46":0.01776,"50":0.00222,"60":0.00444,"62":0.00666,"73":0.03774,"77":0.01332,"78":0.04662,"79":0.0222,"80":0.09324,"81":0.02886,_:"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 42 43 44 47 48 49 51 52 53 54 55 56 57 58 63 64 65 66 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02886,"13":0.00888,"14":0.03108,"15":0.00222,"16":0.02664,"17":0.01776,"18":0.05106,"84":0.01554,"85":0.00666,"89":0.00888,"92":0.00888,"93":0.00888,"94":0.05328,"95":1.08558,"96":0.555,_:"79 80 81 83 86 87 88 90 91"},E:{"4":0,"11":0.00222,"13":0.00666,"14":0.00888,"15":0.02664,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00444,"12.1":0.0111,"13.1":0.00666,"14.1":0.12654,"15.1":0.02886},G:{"8":0.00115,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00115,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02655,"10.0-10.2":0.00173,"10.3":0.00404,"11.0-11.2":0.03232,"11.3-11.4":0.09927,"12.0-12.1":0.35842,"12.2-12.5":0.94077,"13.0-13.1":0.01327,"13.2":0.00462,"13.3":0.02655,"13.4-13.7":0.22509,"14.0-14.4":1.26514,"14.5-14.8":0.95289,"15.0-15.1":1.81979},P:{"4":0.60841,"5.0-5.4":0.09126,"6.2-6.4":0.04056,"7.2-7.4":0.42589,"8.2":0.33825,"9.2":0.7301,"10.1":0.0507,"11.1-11.2":0.34477,"12.0":0.07098,"13.0":0.34477,"14.0":0.46645,"15.0":1.31823},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0177,"4.4":0,"4.4.3-4.4.4":0.0601},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03407,"9":0.02044,"11":2.40525,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":70.72846},S:{"2.5":0.05446},R:{_:"0"},M:{"0":0.1945},Q:{"10.4":0.1945},O:{"0":0.59128},H:{"0":3.53549}}; +module.exports={C:{"5":0.00416,"15":0.00416,"30":0.00416,"43":0.00624,"45":0.00416,"57":0.00832,"69":0.00416,"72":0.00208,"75":0.00832,"78":0.01457,"83":0.01249,"84":0.00624,"88":0.00208,"89":0.00624,"90":0.00416,"91":0.00208,"93":0.00624,"94":0.29758,"95":0.60765,"96":0.02081,_:"2 3 4 6 7 8 9 10 11 12 13 14 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 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 76 77 79 80 81 82 85 86 87 92 97 3.5 3.6"},D:{"24":0.01041,"25":0.00624,"37":0.08948,"40":0.01457,"55":0.00832,"58":0.00208,"60":0.00208,"63":0.00416,"64":0.00208,"65":0.00416,"68":0.01457,"70":0.00832,"71":0.01249,"74":0.01041,"75":0.00832,"77":0.00416,"80":0.0437,"81":0.00416,"84":0.01457,"86":0.33296,"87":0.13318,"88":0.02081,"89":0.01457,"90":0.00832,"91":0.03746,"92":0.08324,"93":0.03538,"94":0.34961,"95":0.07908,"96":4.69266,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 56 57 59 61 62 66 67 69 72 73 76 78 79 83 85 97 98 99"},F:{"29":0.01665,"36":0.00624,"37":0.00624,"45":0.04994,"51":0.00624,"64":0.00624,"73":0.13735,"79":0.01873,"80":0.03746,"81":0.0333,"82":0.06659,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 38 39 40 41 42 43 44 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 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},E:{"4":0,"11":0.00208,"13":0.00624,"14":0.01249,"15":0.00416,_:"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.01249,"13.1":0.01873,"14.1":0.19145,"15.1":0.05411,"15.2":0.00416},B:{"12":0.02497,"13":0.02289,"14":0.01873,"16":0.02289,"17":0.02705,"18":0.04162,"84":0.00208,"90":0.01665,"91":0.01041,"92":0.00624,"93":0.00416,"94":0.03746,"95":0.02497,"96":1.39843,_:"15 79 80 81 83 85 86 87 88 89"},G:{"8":0.00094,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00375,"7.0-7.1":0.00656,"8.1-8.4":0.00094,"9.0-9.2":0,"9.3":0.01547,"10.0-10.2":0.00094,"10.3":0.00328,"11.0-11.2":0.01688,"11.3-11.4":0.10456,"12.0-12.1":0.21851,"12.2-12.5":0.82339,"13.0-13.1":0.00938,"13.2":0.00141,"13.3":0.08112,"13.4-13.7":0.05908,"14.0-14.4":1.13473,"14.5-14.8":0.76477,"15.0-15.1":1.24446,"15.2":0.19788},P:{"4":0.33292,"5.0-5.4":0.06053,"6.2-6.4":0.02018,"7.2-7.4":0.33292,"8.2":0.01019,"9.2":0.08071,"10.1":0.02018,"11.1-11.2":0.37328,"12.0":0.02018,"13.0":0.16142,"14.0":0.52461,"15.0":1.20054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00112,"4.2-4.3":0.00374,"4.4":0,"4.4.3-4.4.4":0.07433},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0172,"11":2.68393,_:"6 7 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0.03168},O:{"0":1.20369},H:{"0":3.70362},L:{"0":73.5905},S:{"2.5":0.11879},R:{_:"0"},M:{"0":0.15838},Q:{"10.4":0.08711}}; 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 ef6b1ac10b7709..9e677c7f6af84c 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.00437,"47":0.01311,"48":0.00437,"50":0.00874,"52":0.08742,"56":0.01311,"60":0.00437,"64":0.00874,"65":0.01311,"66":0.00874,"68":0.00874,"72":0.07431,"73":0.00437,"75":0.00437,"77":0.01748,"78":0.04371,"79":0.05682,"80":0.06119,"81":0.20107,"83":0.00874,"84":0.06119,"85":0.00437,"86":0.02623,"87":0.00874,"88":0.03934,"89":0.08742,"90":0.03497,"91":0.17921,"92":0.11365,"93":0.93977,"94":4.23113,"95":0.07868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 51 53 54 55 57 58 59 61 62 63 67 69 70 71 74 76 82 96 3.5 3.6"},D:{"23":0.00874,"26":0.00874,"33":0.01748,"43":0.0306,"49":0.07868,"50":0.00874,"51":0.01748,"55":0.1049,"57":0.00874,"58":0.00874,"60":0.01311,"63":0.01311,"64":0.02623,"65":0.00874,"70":0.00437,"72":0.23166,"73":0.00874,"74":0.01748,"75":0.01311,"76":0.02623,"77":0.04371,"78":0.06119,"79":0.07868,"80":0.08742,"81":0.03497,"83":0.01311,"84":0.05245,"85":0.05245,"86":0.05682,"87":1.37687,"88":0.25789,"89":0.03934,"90":0.03497,"91":0.07431,"92":0.38028,"93":0.20981,"94":0.41525,"95":11.49136,"96":6.7226,"97":0.01311,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 52 53 54 56 59 61 62 66 67 68 69 71 98 99"},F:{"48":0.00437,"77":0.00874,"78":0.00874,"79":0.10053,"80":1.26759,"81":0.69062,_:"9 11 12 15 16 17 18 19 20 21 22 23 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02186,"13":0.00874,"15":0.00874,"17":0.02623,"18":0.13113,"84":0.00437,"85":0.00874,"89":0.02623,"90":0.00874,"92":0.0306,"93":0.00874,"94":0.10053,"95":2.48273,"96":0.99659,_:"14 16 79 80 81 83 86 87 88 91"},E:{"4":0,"13":0.04808,"14":0.0306,"15":0.06994,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.01748,"9.1":0.00874,"12.1":0.00874,"13.1":0.01748,"14.1":0.12676,"15.1":0.11365},G:{"8":0.00113,"3.2":0.00113,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07783,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12802,"10.0-10.2":0,"10.3":0.30624,"11.0-11.2":0.14099,"11.3-11.4":0.00508,"12.0-12.1":0.02481,"12.2-12.5":1.10087,"13.0-13.1":0.00451,"13.2":0.00226,"13.3":0.00508,"13.4-13.7":0.10151,"14.0-14.4":0.37109,"14.5-14.8":1.6857,"15.0-15.1":1.68345},P:{"4":0.13188,"5.0-5.4":0.01099,"6.2-6.4":0.01023,"7.2-7.4":0.01099,"8.2":0.01023,"9.2":0.10232,"10.1":0.0307,"11.1-11.2":0.01099,"12.0":0.06139,"13.0":0.02198,"14.0":0.02198,"15.0":0.46158},I:{"0":0,"3":0,"4":0.00047,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01214,"4.2-4.3":0.02802,"4.4":0,"4.4.3-4.4.4":0.26334},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.39776,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01689},N:{"10":0.02658,"11":0.22582},L:{"0":51.93831},S:{"2.5":0.02252},R:{_:"0"},M:{"0":0.07881},Q:{"10.4":0.01689},O:{"0":0.57979},H:{"0":4.48183}}; +module.exports={C:{"37":0.00853,"43":0.00853,"44":0.0128,"45":0.00427,"47":0.00853,"50":0.00427,"52":0.0512,"56":0.0128,"57":0.00427,"60":0.00853,"64":0.00853,"68":0.00427,"72":0.12801,"75":0.00427,"77":0.00853,"78":0.02987,"79":0.10668,"80":0.0512,"82":0.0128,"83":0.0128,"84":0.08107,"85":0.00427,"86":0.01707,"87":0.00853,"88":0.04694,"89":0.0384,"90":0.02134,"91":0.17921,"92":0.08107,"93":0.06401,"94":1.88601,"95":3.28986,"96":0.02134,_:"2 3 4 5 6 7 8 9 10 11 12 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 46 48 49 51 53 54 55 58 59 61 62 63 65 66 67 69 70 71 73 74 76 81 97 3.5 3.6"},D:{"23":0.00853,"26":0.0128,"29":0.00427,"33":0.00853,"38":0.00853,"40":0.00853,"42":0.01707,"43":0.02987,"46":0.00427,"49":0.0128,"50":0.01707,"55":0.00427,"57":0.01707,"60":0.00853,"62":0.00427,"63":0.01707,"65":0.00853,"67":0.00427,"69":0.00427,"72":0.10241,"73":0.00853,"75":0.00853,"76":0.02134,"77":0.0128,"78":0.01707,"79":0.0384,"80":0.12374,"81":0.08961,"83":0.02987,"84":0.00853,"85":0.00853,"86":0.17068,"87":0.14508,"88":0.14508,"89":0.0384,"90":0.05547,"91":0.0512,"92":0.48217,"93":0.11948,"94":1.15636,"95":1.07102,"96":14.81502,"97":0.0128,"98":0.01707,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 27 28 30 31 32 34 35 36 37 39 41 44 45 47 48 51 52 53 54 56 58 59 61 64 66 68 70 71 74 99"},F:{"15":0.00853,"36":0.00427,"42":0.00427,"72":0.00427,"77":0.00853,"79":0.0128,"80":0.0256,"81":0.69552,"82":1.44651,_:"9 11 12 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 73 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},E:{"4":0,"13":0.02134,"14":0.00427,"15":0.0256,_:"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.02134,"11.1":0.00427,"13.1":0.0256,"14.1":0.04694,"15.1":0.09814,"15.2":0.02134},B:{"12":0.02134,"15":0.00427,"16":0.00853,"17":0.02987,"18":0.10241,"84":0.00853,"85":0.00853,"89":0.0128,"90":0.00427,"92":0.02987,"93":0.00853,"94":0.0128,"95":0.07254,"96":3.0381,_:"13 14 79 80 81 83 86 87 88 91"},G:{"8":0.00048,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.12079,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.20829,"10.0-10.2":0,"10.3":0.13078,"11.0-11.2":0.1479,"11.3-11.4":0.0038,"12.0-12.1":0.00571,"12.2-12.5":0.98915,"13.0-13.1":0.00618,"13.2":0.00476,"13.3":0.00856,"13.4-13.7":0.07133,"14.0-14.4":0.29389,"14.5-14.8":1.13799,"15.0-15.1":1.36816,"15.2":0.2549},P:{"4":0.25558,"5.0-5.4":0.01111,"6.2-6.4":0.02065,"7.2-7.4":0.02222,"8.2":0.01032,"9.2":0.05162,"10.1":0.03097,"11.1-11.2":0.02222,"12.0":0.06194,"13.0":0.02222,"14.0":0.02222,"15.0":0.07778},I:{"0":0,"3":0,"4":0.00089,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00747,"4.2-4.3":0.01102,"4.4":0,"4.4.3-4.4.4":0.09528},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28162,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.02867},O:{"0":0.6593},H:{"0":3.78306},L:{"0":57.12218},S:{"2.5":0.01147},R:{_:"0"},M:{"0":0.06306},Q:{"10.4":0.01147}}; 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 b8da7ac8bd1a9f..10e13cfe2395a8 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.0169,"51":0.01268,"52":0.05494,"53":0.01268,"54":0.01268,"55":0.02113,"56":0.1944,"57":0.01268,"58":0.01268,"59":0.0169,"60":0.01268,"61":0.01268,"62":0.00845,"63":0.0169,"65":0.00423,"66":0.00423,"67":0.00423,"68":0.01268,"72":0.00845,"76":0.00423,"77":0.00423,"78":0.0169,"79":0.00845,"80":0.00845,"81":0.00845,"82":0.00423,"83":0.00845,"84":0.00423,"88":0.01268,"89":0.01268,"90":0.00845,"91":0.0169,"92":0.03381,"93":0.21553,"94":1.22554,"95":0.0169,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 64 69 70 71 73 74 75 85 86 87 96 3.5 3.6"},D:{"25":0.01268,"38":0.01268,"41":0.00423,"43":0.01268,"46":0.00845,"47":0.01268,"48":0.00845,"49":0.11833,"50":0.00423,"51":0.00423,"53":0.02113,"54":0.00845,"55":0.00845,"56":0.02958,"57":0.01268,"58":0.01268,"59":0.00423,"60":0.00845,"61":0.00845,"62":0.00423,"63":0.0169,"64":0.00845,"65":0.01268,"66":0.00845,"67":0.01268,"68":0.01268,"69":0.0169,"70":0.02113,"71":0.01268,"72":0.00845,"73":0.00845,"74":0.02958,"75":0.02958,"76":0.02958,"77":0.0169,"78":0.02536,"79":0.08875,"80":0.04649,"81":0.02536,"83":0.04226,"84":0.04649,"85":0.04226,"86":0.05494,"87":0.14791,"88":0.06339,"89":0.04226,"90":0.03803,"91":0.07607,"92":0.13946,"93":0.12255,"94":0.52402,"95":17.71539,"96":10.03252,"97":0.02536,_:"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 39 40 42 44 45 52 98 99"},F:{"28":0.00845,"43":0.00423,"46":0.00423,"53":0.00845,"54":0.00845,"55":0.00845,"56":0.00423,"79":0.00845,"80":0.27892,"81":0.12255,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 49 50 51 52 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00845},B:{"12":0.0169,"13":0.01268,"14":0.01268,"15":0.0169,"16":0.02536,"17":0.02113,"18":0.06762,"79":0.00845,"80":0.00845,"81":0.01268,"83":0.01268,"84":0.02113,"85":0.01268,"86":0.0169,"87":0.01268,"89":0.00845,"90":0.00423,"91":0.00845,"92":0.02113,"93":0.0169,"94":0.04226,"95":2.05384,"96":0.81139,_:"88"},E:{"4":0,"10":0.00845,"11":0.01268,"12":0.0169,"13":0.05916,"14":0.20707,"15":1.02692,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00845,"11.1":0.02113,"12.1":0.02958,"13.1":0.15214,"14.1":1.34387,"15.1":0.88323},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00138,"5.0-5.1":0.00413,"6.0-6.1":0.00688,"7.0-7.1":0.01377,"8.1-8.4":0.00964,"9.0-9.2":0.00551,"9.3":0.07436,"10.0-10.2":0.01239,"10.3":0.07436,"11.0-11.2":0.02892,"11.3-11.4":0.03029,"12.0-12.1":0.03442,"12.2-12.5":0.69676,"13.0-13.1":0.0358,"13.2":0.01515,"13.3":0.08537,"13.4-13.7":0.22583,"14.0-14.4":0.90469,"14.5-14.8":5.17338,"15.0-15.1":6.33557},P:{"4":0.1348,"5.0-5.4":0.01038,"6.2-6.4":0.01038,"7.2-7.4":0.1037,"8.2":0.04021,"9.2":0.04148,"10.1":0.02074,"11.1-11.2":0.15554,"12.0":0.03111,"13.0":0.12444,"14.0":0.18665,"15.0":1.82505},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.00602,"4.4":0,"4.4.3-4.4.4":0.03267},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01916,"9":0.01437,"10":0.00958,"11":0.3161,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":42.43948},S:{"2.5":0},R:{_:"0"},M:{"0":0.11546},Q:{"10.4":0},O:{"0":0.31752},H:{"0":0.24595}}; +module.exports={C:{"50":0.0215,"51":0.0129,"52":0.06449,"53":0.0129,"54":0.0172,"55":0.0172,"56":0.08598,"57":0.0172,"58":0.0172,"59":0.0172,"60":0.0172,"61":0.0172,"62":0.0086,"63":0.0172,"65":0.0086,"66":0.0086,"67":0.0043,"68":0.0129,"69":0.0043,"70":0.0043,"71":0.0043,"72":0.0086,"73":0.0086,"74":0.0043,"75":0.0043,"76":0.0043,"77":0.0086,"78":0.0172,"79":0.0086,"80":0.0086,"81":0.0086,"82":0.0043,"83":0.0129,"84":0.0086,"88":0.0172,"89":0.0086,"90":0.0129,"91":0.0172,"92":0.0215,"93":0.0086,"94":0.46429,"95":1.00597,"96":0.0129,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 64 85 86 87 97 3.5 3.6"},D:{"25":0.0129,"31":0.0043,"38":0.0129,"41":0.0086,"42":0.0043,"43":0.0172,"45":0.0043,"46":0.0129,"47":0.0129,"48":0.0086,"49":0.08598,"50":0.0043,"51":0.0086,"53":0.0172,"54":0.0086,"55":0.0086,"56":0.03009,"57":0.0129,"58":0.0129,"59":0.0043,"60":0.0086,"61":0.0086,"62":0.0086,"63":0.0172,"64":0.0086,"65":0.0172,"66":0.0129,"67":0.0129,"68":0.0215,"69":0.0215,"70":0.03439,"71":0.0172,"72":0.0215,"73":0.0129,"74":0.03869,"75":0.03009,"76":0.03439,"77":0.02579,"78":0.03439,"79":0.10748,"80":0.08168,"81":0.03869,"83":0.05159,"84":0.06019,"85":0.06019,"86":0.06878,"87":0.14187,"88":0.06878,"89":0.05159,"90":0.04729,"91":0.06449,"92":0.10748,"93":0.11607,"94":0.16766,"95":0.29233,"96":27.84032,"97":0.03439,"98":0.0086,_:"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 32 33 34 35 36 37 39 40 44 52 99"},F:{"28":0.0086,"34":0.0043,"43":0.0043,"46":0.0043,"48":0.0043,"49":0.0043,"52":0.0043,"53":0.0086,"54":0.0129,"55":0.0129,"56":0.0086,"67":0.0043,"68":0.0043,"81":0.18056,"82":0.23215,_:"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 44 45 47 50 51 57 58 60 62 63 64 65 66 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0172},E:{"4":0,"10":0.0086,"11":0.0129,"12":0.0215,"13":0.06449,"14":0.18486,"15":0.4471,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.05159,"10.1":0.0086,"11.1":0.0215,"12.1":0.03439,"13.1":0.15047,"14.1":0.96728,"15.1":1.62502,"15.2":0.15047},B:{"12":0.0215,"13":0.0129,"14":0.0172,"15":0.0172,"16":0.03009,"17":0.02579,"18":0.07308,"79":0.0086,"80":0.0129,"81":0.0172,"83":0.0172,"84":0.02579,"85":0.0129,"86":0.0215,"87":0.0172,"89":0.0086,"90":0.0086,"91":0.0086,"92":0.0129,"93":0.0043,"94":0.0172,"95":0.04299,"96":2.85884,_:"88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00572,"5.0-5.1":0.01001,"6.0-6.1":0.0143,"7.0-7.1":0.01287,"8.1-8.4":0.00429,"9.0-9.2":0.00429,"9.3":0.05577,"10.0-10.2":0.01144,"10.3":0.07007,"11.0-11.2":0.02145,"11.3-11.4":0.02431,"12.0-12.1":0.0286,"12.2-12.5":0.6492,"13.0-13.1":0.03003,"13.2":0.01287,"13.3":0.07436,"13.4-13.7":0.21306,"14.0-14.4":0.81364,"14.5-14.8":3.65211,"15.0-15.1":7.92767,"15.2":0.65635},P:{"4":0.14728,"5.0-5.4":0.01042,"6.2-6.4":0.01042,"7.2-7.4":0.09468,"8.2":0.01009,"9.2":0.03156,"10.1":0.01052,"11.1-11.2":0.12624,"12.0":0.03156,"13.0":0.1052,"14.0":0.16832,"15.0":0.37872},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00083,"4.2-4.3":0.00417,"4.4":0,"4.4.3-4.4.4":0.0292},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02006,"9":0.01003,"10":0.01003,"11":0.32099,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.29075},H:{"0":0.21589},L:{"0":41.64499},S:{"2.5":0},R:{_:"0"},M:{"0":0.11972},Q:{"10.4":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 a779b15b3ccc93..1dc9f3585eb8a1 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:{"4":0.00557,"17":0.00557,"32":0.00836,"52":0.09476,"65":0.00557,"68":0.00279,"72":0.00279,"77":0.00557,"78":0.01394,"79":0.01115,"80":0.01394,"81":0.01394,"82":0.18673,"83":0.01115,"85":0.00279,"88":0.00557,"89":0.00836,"91":0.01394,"92":0.00836,"93":0.11984,"94":1.27923,"95":0.00836,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 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 66 67 69 70 71 73 74 75 76 84 86 87 90 96 3.5 3.6"},D:{"24":0.00836,"31":0.00279,"33":0.00557,"34":0.06689,"35":0.00836,"40":0.00557,"43":0.00557,"44":0.07525,"47":0.00279,"49":0.05295,"56":0.00279,"57":0.00557,"61":0.00279,"62":0.00836,"63":0.00557,"64":0.00557,"68":0.00279,"69":0.00836,"70":0.01115,"71":0.03623,"72":0.01115,"73":0.01394,"74":0.00836,"75":0.00557,"76":0.01672,"77":0.00279,"78":0.01672,"79":0.19788,"80":0.00836,"81":0.01672,"83":0.13935,"84":0.17558,"85":0.16165,"86":0.39854,"87":0.05017,"88":0.04181,"89":0.03902,"90":0.03344,"91":0.08918,"92":0.26477,"93":0.14214,"94":0.63544,"95":9.38104,"96":5.23399,_:"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 32 36 37 38 39 41 42 45 46 48 50 51 52 53 54 55 58 59 60 65 66 67 97 98 99"},F:{"42":0.00279,"64":0.00279,"68":0.03623,"70":0.00279,"77":0.00279,"78":0.0223,"79":0.0223,"80":0.76643,"81":0.33165,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 71 72 73 74 75 76 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,"14":0.00557,"16":0.00279,"17":0.01394,"18":0.02508,"84":0.00836,"85":0.07246,"86":0.00279,"88":0.00557,"89":0.00557,"90":0.00836,"91":0.00836,"92":0.01115,"93":0.01115,"94":0.04738,"95":0.64658,"96":0.40133,_:"13 15 79 80 81 83 87"},E:{"4":0,"13":0.01115,"14":0.06689,"15":0.07525,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.63265,"11.1":0.00279,"12.1":0.0223,"13.1":0.04738,"14.1":0.23411,"15.1":0.4069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00132,"6.0-6.1":0.00265,"7.0-7.1":0.0331,"8.1-8.4":0.00132,"9.0-9.2":0.00596,"9.3":0.07879,"10.0-10.2":0.01986,"10.3":0.12844,"11.0-11.2":0.04303,"11.3-11.4":0.03244,"12.0-12.1":0.11321,"12.2-12.5":0.56871,"13.0-13.1":0.06422,"13.2":0.02516,"13.3":0.07945,"13.4-13.7":0.19729,"14.0-14.4":1.03745,"14.5-14.8":1.58696,"15.0-15.1":2.60124},P:{"4":1.21628,"5.0-5.4":0.20104,"6.2-6.4":0.21109,"7.2-7.4":0.53275,"8.2":0.04021,"9.2":0.26135,"10.1":0.09047,"11.1-11.2":0.44228,"12.0":0.12062,"13.0":0.45234,"14.0":0.47244,"15.0":1.3369},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00135,"4.1":0.00316,"4.2-4.3":0.00541,"4.4":0,"4.4.3-4.4.4":0.04057},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00326,"8":0.01958,"9":0.0359,"10":0.00653,"11":0.18277,_:"6 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":56.30337},S:{"2.5":0},R:{_:"0"},M:{"0":0.02885},Q:{"10.4":0.01442},O:{"0":2.44487},H:{"0":2.24636}}; +module.exports={C:{"4":0.00593,"30":0.00297,"32":0.00297,"35":0.0089,"52":0.09494,"56":0.00297,"57":0.00297,"65":0.00297,"68":0.00593,"70":0.00297,"72":0.00593,"78":0.02077,"79":0.0089,"80":0.0089,"81":0.01187,"82":0.16615,"83":0.04154,"85":0.00297,"86":0.00297,"88":1.64965,"89":0.00297,"91":0.02077,"92":0.00297,"93":0.01187,"94":0.3145,"95":0.61714,_:"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 31 33 34 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 66 67 69 71 73 74 75 76 77 84 87 90 96 97 3.5 3.6"},D:{"33":0.00593,"34":0.06231,"35":0.00297,"38":0.00297,"43":0.00297,"44":0.09198,"45":0.0089,"46":0.00297,"47":0.02967,"49":0.05341,"50":0.00297,"56":0.00297,"57":0.00297,"61":0.01187,"62":0.00593,"63":0.00593,"67":0.01187,"68":0.0089,"69":0.0089,"70":0.01187,"71":0.0267,"72":0.0089,"73":0.0089,"74":0.01187,"75":0.00297,"77":0.0267,"78":0.0089,"79":0.20472,"80":0.0267,"81":0.01484,"83":0.20472,"84":0.50736,"85":0.28187,"86":0.06231,"87":0.08308,"88":0.06527,"89":0.10088,"90":0.04451,"91":0.06231,"92":0.21659,"93":0.04747,"94":0.22549,"95":0.24923,"96":13.53842,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 36 37 39 40 41 42 48 51 52 53 54 55 58 59 60 64 65 66 76 97 98 99"},F:{"36":0.00593,"60":0.0089,"68":0.07714,"74":0.00297,"78":0.00297,"79":0.00593,"80":0.0089,"81":0.43615,"82":0.64681,_:"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 69 70 71 72 73 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01187},E:{"4":0,"13":0.01187,"14":0.06824,"15":0.09198,_:"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.21647,"12.1":0.01187,"13.1":0.04451,"14.1":0.19286,"15.1":0.50439,"15.2":0.06527},B:{"14":0.0089,"15":0.00297,"17":0.0178,"18":0.02967,"84":0.01187,"85":0.02374,"87":0.00593,"89":0.01484,"90":0.01187,"91":0.00593,"92":0.00593,"94":0.04747,"95":0.03857,"96":0.89307,_:"12 13 16 79 80 81 83 86 88 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00238,"6.0-6.1":0.00079,"7.0-7.1":0.01429,"8.1-8.4":0.00238,"9.0-9.2":0.00476,"9.3":0.04048,"10.0-10.2":0.01111,"10.3":0.07301,"11.0-11.2":0.04603,"11.3-11.4":0.04365,"12.0-12.1":0.08651,"12.2-12.5":0.79205,"13.0-13.1":0.0627,"13.2":0.06825,"13.3":0.0754,"13.4-13.7":0.20079,"14.0-14.4":0.96586,"14.5-14.8":1.08887,"15.0-15.1":3.81026,"15.2":0.54364},P:{"4":1.28146,"5.0-5.4":0.17153,"6.2-6.4":0.19171,"7.2-7.4":0.52469,"8.2":0.01009,"9.2":0.30271,"10.1":0.07063,"11.1-11.2":0.35316,"12.0":0.13117,"13.0":0.42379,"14.0":0.39352,"15.0":0.44397},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.0003,"4.1":0.00107,"4.2-4.3":0.00396,"4.4":0,"4.4.3-4.4.4":0.03687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02513,"9":0.03456,"10":0.00628,"11":0.14765,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.92001},H:{"0":2.51687},L:{"0":54.77625},S:{"2.5":0.00703},R:{_:"0"},M:{"0":0.04923},Q:{"10.4":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 2e3fe8d1548bbb..a7a7110985e647 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:{"94":0.30453,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 3.5 3.6"},D:{"58":0.02719,"81":0.15226,"95":0.65256,"96":0.2284,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"91":0.10332,"95":0.04894,"96":0.07613,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92 93 94"},E:{"4":0,"14":0.02719,_:"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.02719,"15.1":50.32869},G:{"8":0,"3.2":0,"4.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.026,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.22536,"14.5-14.8":0,"15.0-15.1":43.08763},P:{"4":0.13188,"5.0-5.4":0.01099,"6.2-6.4":0.01023,"7.2-7.4":0.01099,"8.2":0.01023,"9.2":0.33873,"10.1":0.0307,"11.1-11.2":0.10265,"12.0":0.06139,"13.0":0.05132,"14.0":0.02198,"15.0":0.46158},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.04894,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":1.7883},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"95":0.04025,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 97 3.5 3.6"},D:{"81":0.04025,"96":0.0654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99"},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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},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":42.35599,"15.2":3.72294},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"},G:{"8":0,"3.2":0,"4.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.01464,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.01464,"13.0-13.1":0.01464,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.03904,"14.5-14.8":0,"15.0-15.1":46.23843,"15.2":2.48909},P:{"4":0.25558,"5.0-5.4":0.01111,"6.2-6.4":0.02065,"7.2-7.4":0.02222,"8.2":0.01032,"9.2":0.20808,"10.1":0.03097,"11.1-11.2":0.04162,"12.0":0.06194,"13.0":0.02222,"14.0":0.02222,"15.0":0.08323},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.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0},L:{"0":0.61709},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":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 e5b96eb31ef9a0..6f01a58ad707a8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js @@ -1 +1 @@ -module.exports={C:{"8":0.0031,"20":0.02477,"21":0.02786,"30":0.01238,"31":0.0031,"32":0.00619,"33":0.0031,"34":0.01238,"35":0.0031,"37":0.02167,"38":0.01858,"40":0.01548,"41":0.09907,"42":0.0031,"43":0.02167,"44":0.02477,"45":0.00619,"47":0.09288,"48":0.02167,"50":0.00619,"52":0.00619,"55":0.0031,"56":0.03096,"57":0.18266,"62":0.00619,"63":0.0031,"64":0.00619,"65":0.00619,"66":0.01548,"67":0.01548,"68":0.00929,"69":0.01238,"70":0.0031,"72":0.03715,"74":0.00619,"75":0.0031,"78":0.05882,"79":0.17338,"81":0.0031,"82":0.0031,"83":0.00929,"84":0.01548,"85":0.02167,"86":0.01548,"87":0.0031,"88":0.1517,"89":0.05263,"90":0.00619,"91":0.06192,"92":0.13003,"93":0.79258,"94":3.79879,"95":0.41796,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 22 23 24 25 26 27 28 29 36 39 46 49 51 53 54 58 59 60 61 71 73 76 77 80 96 3.5 3.6"},D:{"26":0.0031,"31":0.00619,"40":0.03096,"42":0.13622,"43":0.09907,"44":0.00929,"48":0.0031,"49":0.03096,"56":0.00929,"58":0.06811,"61":0.00929,"62":0.01238,"63":0.02477,"64":0.00619,"65":0.01858,"66":0.00619,"67":0.01858,"68":0.00929,"69":0.00619,"70":0.0031,"71":0.04025,"73":0.0031,"74":0.01238,"75":0.00619,"76":0.00619,"78":0.01238,"79":0.02167,"80":0.01858,"81":0.01238,"83":0.0031,"84":0.04025,"85":0.01238,"86":0.07121,"87":0.39938,"88":0.06192,"89":0.04954,"90":0.08669,"91":0.09907,"92":0.2322,"93":0.25078,"94":0.67183,"95":8.95673,"96":4.95979,"97":0.0031,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 33 34 35 36 37 38 39 41 45 46 47 50 51 52 53 54 55 57 59 60 72 77 98 99"},F:{"37":0.00929,"56":0.00619,"70":0.0031,"74":0.00619,"75":0.0031,"77":0.0031,"79":0.00619,"80":0.50774,"81":0.14242,_:"9 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 57 58 60 62 63 64 65 66 67 68 69 71 72 73 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.03406,"13":0.01858,"14":0.01238,"15":0.02167,"16":0.00929,"17":0.01858,"18":0.09288,"84":0.01858,"85":0.00619,"89":0.00619,"91":0.01548,"92":0.05882,"93":0.02786,"94":0.08978,"95":1.28484,"96":0.71208,_:"79 80 81 83 86 87 88 90"},E:{"4":0,"11":0.01858,"12":0.00619,"13":0.00619,"14":0.10526,"15":0.05573,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1","6.1":0.01858,"9.1":0.0031,"10.1":0.02477,"11.1":0.01858,"12.1":0.05882,"13.1":0.13313,"14.1":0.13313,"15.1":0.02167},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00083,"7.0-7.1":0.00083,"8.1-8.4":0,"9.0-9.2":0.00334,"9.3":0.03629,"10.0-10.2":0.00876,"10.3":0.05882,"11.0-11.2":0.02294,"11.3-11.4":0.06591,"12.0-12.1":0.07175,"12.2-12.5":0.61824,"13.0-13.1":0.05632,"13.2":0.01794,"13.3":0.13349,"13.4-13.7":0.25072,"14.0-14.4":1.28488,"14.5-14.8":1.11676,"15.0-15.1":0.42217},P:{"4":0.41952,"5.0-5.4":0.01023,"6.2-6.4":0.01023,"7.2-7.4":0.21487,"8.2":0.01023,"9.2":0.10232,"10.1":0.0307,"11.1-11.2":0.45021,"12.0":0.06139,"13.0":0.11255,"14.0":0.19441,"15.0":0.36835},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0025,"4.2-4.3":0.00624,"4.4":0,"4.4.3-4.4.4":0.02579},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.03509,"11":1.28071,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":62.60089},S:{"2.5":0},R:{_:"0"},M:{"0":0.03452},Q:{"10.4":0},O:{"0":0.5178},H:{"0":2.05892}}; +module.exports={C:{"7":0.00616,"20":0.01848,"21":0.01232,"24":0.00308,"29":0.00308,"30":0.00924,"32":0.00308,"33":0.00924,"34":0.00924,"36":0.00616,"37":0.02464,"40":0.01848,"41":0.11396,"42":0.01232,"43":0.0154,"44":0.02156,"47":0.04004,"48":0.02464,"50":0.00308,"54":0.01232,"56":0.02464,"57":0.14168,"61":0.00924,"63":0.00308,"64":0.00308,"65":0.00308,"67":0.0308,"68":0.00308,"72":0.0308,"74":0.00924,"78":0.04312,"79":0.16016,"81":0.00616,"84":0.00616,"85":0.01232,"86":0.00308,"87":0.00308,"88":0.09856,"89":0.02464,"90":0.00924,"91":0.05236,"92":0.07392,"93":0.12628,"94":1.95272,"95":2.52252,"96":0.20636,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 22 23 25 26 27 28 31 35 38 39 45 46 49 51 52 53 55 58 59 60 62 66 69 70 71 73 75 76 77 80 82 83 97 3.5 3.6"},D:{"26":0.00616,"28":0.00616,"31":0.01848,"40":0.00924,"42":0.12628,"43":0.06468,"46":0.00616,"47":0.00924,"49":0.04312,"53":0.00616,"56":0.00924,"58":0.11396,"61":0.02772,"62":0.01848,"63":0.02156,"64":0.00616,"65":0.02156,"66":0.01232,"67":0.01232,"68":0.00616,"69":0.00616,"70":0.00308,"71":0.01848,"72":0.00616,"74":0.00616,"75":0.00616,"76":0.02772,"78":0.00308,"79":0.01848,"80":0.02772,"83":0.0154,"84":0.0462,"85":0.0154,"86":0.0308,"87":0.36036,"88":0.0154,"89":0.03388,"90":0.02772,"91":0.05544,"92":0.2464,"93":0.08316,"94":0.35112,"95":0.28644,"96":14.94416,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 29 30 32 33 34 35 36 37 38 39 41 44 45 48 50 51 52 54 55 57 59 60 73 77 81 97 98 99"},F:{"37":0.02156,"56":0.01232,"63":0.00308,"75":0.00924,"77":0.00616,"79":0.00308,"80":0.01848,"81":0.23408,"82":0.34188,_:"9 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 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00616,"11":0.01232,"12":0.00308,"13":0.0154,"14":0.09548,"15":0.05852,_:"0 5 6 7 9 10 3.1 3.2 5.1 7.1 15.2","6.1":0.08008,"9.1":0.0154,"10.1":0.02156,"11.1":0.0308,"12.1":0.04312,"13.1":0.16016,"14.1":0.13244,"15.1":0.02464},B:{"12":0.02464,"13":0.0154,"14":0.01232,"15":0.02464,"16":0.01232,"17":0.01848,"18":0.08316,"80":0.00616,"84":0.00924,"85":0.00924,"89":0.00616,"90":0.00616,"91":0.00616,"92":0.07392,"93":0.02772,"94":0.04928,"95":0.08932,"96":1.75868,_:"79 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0.00047,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00094,"7.0-7.1":0.00283,"8.1-8.4":0.00142,"9.0-9.2":0.00661,"9.3":0.00519,"10.0-10.2":0.01699,"10.3":0.04295,"11.0-11.2":0.0269,"11.3-11.4":0.05853,"12.0-12.1":0.08354,"12.2-12.5":0.68439,"13.0-13.1":0.06844,"13.2":0.0387,"13.3":0.14443,"13.4-13.7":0.25676,"14.0-14.4":1.47686,"14.5-14.8":0.95201,"15.0-15.1":0.74716,"15.2":0.10431},P:{"4":0.53684,"5.0-5.4":0.01032,"6.2-6.4":0.02065,"7.2-7.4":0.23745,"8.2":0.01032,"9.2":0.05162,"10.1":0.03097,"11.1-11.2":0.15486,"12.0":0.06194,"13.0":0.10324,"14.0":0.23745,"15.0":0.20648},I:{"0":0,"3":0,"4":0.00035,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00069,"4.2-4.3":0.00554,"4.4":0,"4.4.3-4.4.4":0.02111},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01589,"9":0.03973,"11":1.13634,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.56744},H:{"0":2.13576},L:{"0":62.06896},S:{"2.5":0},R:{_:"0"},M:{"0":0.0346},Q:{"10.4":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 835617702f6242..de73871842f832 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:{"45":0.06119,"49":0.00941,"52":0.05178,"55":0.01883,"56":0.00471,"57":0.01883,"60":0.00941,"65":0.01412,"67":0.01883,"69":0.00941,"70":0.00471,"72":0.0659,"78":0.01412,"79":0.04236,"81":0.03295,"84":0.02354,"85":0.02824,"86":0.00471,"87":0.00941,"88":0.05648,"93":0.05648,"94":2.33467,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 50 51 53 54 58 59 61 62 63 64 66 68 71 73 74 75 76 77 80 82 83 89 90 91 92 95 96 3.5 3.6"},D:{"31":0.18828,"34":0.00941,"39":0.02354,"40":0.01883,"45":0.04236,"47":0.00471,"48":0.03295,"49":0.04236,"52":0.05178,"53":0.00471,"55":0.00941,"57":0.02354,"63":0.01883,"64":0.03295,"66":0.00941,"67":0.09414,"69":0.51777,"70":0.02354,"71":0.04707,"72":0.01412,"73":0.00471,"74":0.00471,"75":0.05178,"76":0.00941,"77":0.00941,"78":0.01883,"79":0.11768,"81":0.03295,"83":0.03295,"84":0.00941,"85":0.03766,"86":0.19769,"87":0.10355,"88":0.04236,"89":0.04707,"90":0.02824,"91":0.2024,"92":0.30125,"93":0.53189,"94":3.79384,"95":17.56182,"96":3.47377,"97":0.00471,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 38 41 42 43 44 46 50 51 54 56 58 59 60 61 62 65 68 80 98 99"},F:{"12":0.00471,"51":0.00471,"53":0.01883,"55":0.00941,"57":0.00471,"66":0.02354,"68":0.03295,"69":0.03295,"75":0.00471,"77":0.01883,"79":0.00941,"80":0.11297,"81":0.03295,_:"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 52 54 56 58 60 62 63 64 65 67 70 71 72 73 74 76 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00471,"16":0.01883,"18":0.01883,"85":0.01883,"88":0.00471,"89":0.00941,"92":0.01412,"94":0.00471,"95":0.3389,"96":0.09885,_:"12 13 15 17 79 80 81 83 84 86 87 90 91 93"},E:{"4":0,"12":0.00941,"14":0.03766,"15":0.05648,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 12.1 13.1","5.1":0.00941,"11.1":0.01883,"14.1":0.26359,"15.1":0.07531},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07701,"8.1-8.4":0.01356,"9.0-9.2":0.03959,"9.3":0.21856,"10.0-10.2":0.02495,"10.3":0.11931,"11.0-11.2":0.03579,"11.3-11.4":0.07213,"12.0-12.1":0.06237,"12.2-12.5":0.99787,"13.0-13.1":0.21693,"13.2":0.00976,"13.3":0.04067,"13.4-13.7":0.08731,"14.0-14.4":0.32377,"14.5-14.8":0.62421,"15.0-15.1":2.46051},P:{"4":2.65646,"5.0-5.4":0.0404,"6.2-6.4":0.0404,"7.2-7.4":0.35352,"8.2":0.01023,"9.2":0.0202,"10.1":0.0303,"11.1-11.2":0.22221,"12.0":0.16161,"13.0":0.29292,"14.0":0.67674,"15.0":1.80801},I:{"0":0,"3":0,"4":0.0005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01021,"4.2-4.3":0.02225,"4.4":0,"4.4.3-4.4.4":0.15226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.65686,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":45.93482},S:{"2.5":0},R:{_:"0"},M:{"0":0.44982},Q:{"10.4":0.30694},O:{"0":1.24362},H:{"0":0.25051}}; +module.exports={C:{"59":0.07879,"64":0.01433,"68":0.05014,"69":0.05014,"72":0.01433,"78":0.02149,"80":0.02865,"84":0.02865,"88":6.89797,"89":0.02149,"93":0.02149,"94":1.16041,"95":0.41545,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 65 66 67 70 71 73 74 75 76 77 79 81 82 83 85 86 87 90 91 92 96 97 3.5 3.6"},D:{"49":0.02149,"52":0.01433,"55":0.02865,"62":0.17191,"68":0.03582,"69":1.55437,"79":0.37964,"80":0.01433,"81":0.02865,"83":0.12893,"84":0.10745,"85":0.03582,"86":0.10028,"87":1.74061,"90":0.02149,"91":0.15042,"92":0.32234,"94":0.1934,"95":0.33666,"96":39.74749,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 56 57 58 59 60 61 63 64 65 66 67 70 71 72 73 74 75 76 77 78 88 89 93 97 98 99"},F:{"45":0.01433,"53":0.02865,"71":0.15759,"79":0.03582,"80":0.05014,"81":0.37248,"82":0.02149,_:"9 11 12 15 16 17 18 19 20 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 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 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},E:{"4":0,"14":0.01433,_:"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 12.1 13.1","11.1":0.07163,"14.1":3.57434,"15.1":1.15324,"15.2":0.05014},B:{"18":0.06447,"85":0.04298,"89":0.05014,"90":0.01433,"92":0.07163,"94":0.03582,"96":2.0916,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 91 93 95"},G:{"8":0,"3.2":0,"4.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.01281,"10.3":0.00641,"11.0-11.2":0,"11.3-11.4":0.00641,"12.0-12.1":0,"12.2-12.5":0.10376,"13.0-13.1":0.01281,"13.2":0,"13.3":0.11145,"13.4-13.7":0.14988,"14.0-14.4":0.74556,"14.5-14.8":0.25364,"15.0-15.1":8.9698,"15.2":2.43653},P:{"4":0.43501,"5.0-5.4":0.03183,"6.2-6.4":0.02065,"7.2-7.4":0.04244,"8.2":0.01032,"9.2":0.03067,"10.1":0.02122,"11.1-11.2":0.17378,"12.0":0.02122,"13.0":0.07427,"14.0":0.08488,"15.0":0.29708},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00155,"4.2-4.3":0.00286,"4.4":0,"4.4.3-4.4.4":0.00977},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02455,"9":0.01637,"10":0.02455,"11":2.57768,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.16455},H:{"0":0.09938},L:{"0":17.41781},S:{"2.5":0},R:{_:"0"},M:{"0":0.43406},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js index 56dee8a6b044d6..04ddd2afd99c6e 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:{"47":0.00443,"52":0.13287,"66":0.00443,"68":0.00886,"72":0.00443,"78":0.03986,"80":0.00886,"81":0.00443,"82":0.00443,"84":0.02657,"87":0.00886,"88":0.02215,"89":0.01329,"90":0.01772,"91":0.02215,"92":0.02215,"93":0.31003,"94":1.36856,"95":0.01329,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 83 85 86 96 3.5 3.6"},D:{"38":0.00886,"39":0.00886,"40":0.00443,"42":0.00443,"43":0.00886,"47":0.00443,"49":0.36318,"50":0.00443,"51":0.00443,"56":0.02215,"58":0.00886,"61":0.00443,"62":0.00886,"63":0.03543,"64":0.01329,"65":0.01772,"66":0.00886,"67":0.01772,"68":0.01329,"69":0.00886,"70":0.01329,"71":0.01772,"72":0.00443,"73":0.01329,"74":0.01329,"75":0.01329,"76":0.01329,"77":0.02215,"78":0.05758,"79":0.04429,"80":0.03543,"81":0.031,"83":0.06201,"84":0.07086,"85":0.03986,"86":0.10187,"87":0.65549,"88":0.05758,"89":0.07972,"90":0.10187,"91":0.16387,"92":0.22588,"93":0.24802,"94":0.7795,"95":18.08361,"96":11.58626,"97":0.01772,"98":0.01772,_:"4 5 6 7 8 9 10 11 12 13 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 55 57 59 60 99"},F:{"36":0.00443,"40":0.01329,"68":0.00886,"78":0.01329,"79":0.01772,"80":1.88675,"81":0.84151,_:"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 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00443,"13":0.00443,"14":0.00443,"15":0.00443,"16":0.00443,"17":0.01329,"18":0.02215,"83":0.00443,"84":0.00886,"89":0.01329,"90":0.00443,"91":0.00886,"92":0.02657,"93":0.01329,"94":0.03986,"95":1.58558,"96":0.73964,_:"79 80 81 85 86 87 88"},E:{"4":0,"13":0.13287,"14":0.07086,"15":0.05758,_:"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.00443,"12.1":0.01329,"13.1":0.03543,"14.1":0.15944,"15.1":0.08415},G:{"8":0,"3.2":0.0003,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02201,"6.0-6.1":0.00241,"7.0-7.1":0.03045,"8.1-8.4":0.00181,"9.0-9.2":0.00301,"9.3":0.04763,"10.0-10.2":0.00693,"10.3":0.05547,"11.0-11.2":0.01417,"11.3-11.4":0.01357,"12.0-12.1":0.00904,"12.2-12.5":0.28909,"13.0-13.1":0.00723,"13.2":0.00573,"13.3":0.03226,"13.4-13.7":0.13656,"14.0-14.4":0.29844,"14.5-14.8":1.17958,"15.0-15.1":0.85823},P:{"4":0.40634,"5.0-5.4":0.01099,"6.2-6.4":0.02054,"7.2-7.4":0.13545,"8.2":0.01023,"9.2":0.03126,"10.1":0.01042,"11.1-11.2":0.14587,"12.0":0.03126,"13.0":0.22922,"14.0":0.22922,"15.0":1.3128},I:{"0":0,"3":0,"4":0.00157,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00575,"4.2-4.3":0.00836,"4.4":0,"4.4.3-4.4.4":0.0679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00501,"9":0.00501,"11":0.21529,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":51.84989},S:{"2.5":0},R:{_:"0"},M:{"0":0.10028},Q:{"10.4":0},O:{"0":0.13928},H:{"0":0.28481}}; +module.exports={C:{"52":0.1048,"66":0.00419,"68":0.00419,"72":0.00419,"78":0.03773,"79":0.00419,"80":0.00419,"81":0.01258,"84":0.0545,"87":0.00419,"88":0.02096,"89":0.00838,"90":0.00838,"91":0.01677,"92":0.00838,"93":0.01258,"94":0.51981,"95":0.98093,"96":0.00838,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 82 83 85 86 97 3.5 3.6"},D:{"11":0.00419,"26":0.00419,"34":0.00419,"38":0.00838,"39":0.00838,"40":0.00419,"43":0.00419,"47":0.00838,"48":0.00838,"49":0.29763,"50":0.00419,"51":0.00838,"56":0.02096,"58":0.00838,"60":0.00838,"61":0.00419,"62":0.00838,"63":0.02934,"64":0.00838,"65":0.01677,"66":0.00838,"67":0.02096,"68":0.01258,"69":0.00838,"70":0.02515,"71":0.01677,"72":0.00838,"73":0.01258,"74":0.01258,"75":0.01258,"76":0.01258,"77":0.01677,"78":0.02934,"79":0.0545,"80":0.02934,"81":0.02934,"83":0.05869,"84":0.0503,"85":0.03773,"86":0.07965,"87":0.34794,"88":0.04192,"89":0.07126,"90":0.07126,"91":0.10899,"92":0.1551,"93":0.14672,"94":0.23475,"95":0.49885,"96":27.97741,"97":0.01677,"98":0.01258,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 41 42 44 45 46 52 53 54 55 57 59 99"},F:{"36":0.00419,"40":0.00838,"78":0.00419,"79":0.00419,"80":0.02515,"81":1.5217,"82":1.26179,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02096,"14":0.03354,"15":0.02934,_:"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.00419,"12.1":0.00838,"13.1":0.03773,"14.1":0.10061,"15.1":0.13834,"15.2":0.01258},B:{"12":0.00419,"14":0.00419,"15":0.00419,"16":0.00419,"17":0.00419,"18":0.01677,"84":0.00838,"89":0.00838,"90":0.00419,"91":0.00419,"92":0.02515,"93":0.00838,"94":0.01258,"95":0.05869,"96":2.36848,_:"13 79 80 81 83 85 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01105,"6.0-6.1":0.00033,"7.0-7.1":0.04017,"8.1-8.4":0.00435,"9.0-9.2":0.00502,"9.3":0.05055,"10.0-10.2":0.00435,"10.3":0.04185,"11.0-11.2":0.01239,"11.3-11.4":0.0144,"12.0-12.1":0.0087,"12.2-12.5":0.32708,"13.0-13.1":0.00569,"13.2":0.00402,"13.3":0.03348,"13.4-13.7":0.15935,"14.0-14.4":0.28088,"14.5-14.8":1.04249,"15.0-15.1":1.16033,"15.2":0.13893},P:{"4":0.2275,"5.0-5.4":0.01111,"6.2-6.4":0.02065,"7.2-7.4":0.14478,"8.2":0.01032,"9.2":0.02068,"10.1":0.01085,"11.1-11.2":0.13443,"12.0":0.03102,"13.0":0.16546,"14.0":0.18614,"15.0":0.31023},I:{"0":0,"3":0,"4":0.00062,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00616,"4.2-4.3":0.00924,"4.4":0,"4.4.3-4.4.4":0.0653},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00491,"11":0.16696,_:"6 7 8 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.12778},H:{"0":0.26393},L:{"0":54.61293},S:{"2.5":0},R:{_:"0"},M:{"0":0.08131},Q:{"10.4":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 6a8d6c38d79b33..4c5f9e62906753 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:{"78":0.05737,"79":0.00522,"87":0.00522,"88":0.00522,"92":0.02608,"93":0.28683,"94":1.57493,"95":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 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 89 90 91 96 3.5 3.6"},D:{"56":0.15645,"65":0.00522,"69":0.00522,"71":0.01043,"79":0.01043,"80":0.03129,"81":0.05215,"83":0.02608,"87":0.47457,"88":0.02608,"89":0.05737,"90":0.08344,"91":0.02086,"92":0.1043,"93":0.19296,"94":0.86048,"95":15.79102,"96":7.09762,"97":0.02086,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 66 67 68 70 72 73 74 75 76 77 78 84 85 86 98 99"},F:{"80":0.20339,"81":0.02086,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.09909,"13":0.01043,"17":0.04172,"18":0.00522,"81":0.01043,"84":0.61537,"89":0.02086,"90":0.02608,"91":0.05215,"92":0.0678,"93":0.09909,"94":1.03257,"95":3.56706,"96":1.59579,_:"14 15 16 79 80 83 85 86 87 88"},E:{"4":0,"12":0.01043,"13":0.01043,"14":1.39762,"15":0.02086,_:"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.01565,"12.1":0.03129,"13.1":0.0678,"14.1":0.11473,"15.1":0.11995},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01571,"8.1-8.4":0,"9.0-9.2":0.00262,"9.3":0.05063,"10.0-10.2":0,"10.3":0.14142,"11.0-11.2":0.01833,"11.3-11.4":0.07682,"12.0-12.1":0.0454,"12.2-12.5":1.43433,"13.0-13.1":0.16238,"13.2":0.04278,"13.3":0.47142,"13.4-13.7":0.6722,"14.0-14.4":1.15759,"14.5-14.8":3.2746,"15.0-15.1":1.16457},P:{"4":0.07191,"5.0-5.4":0.01099,"6.2-6.4":0.02054,"7.2-7.4":0.39035,"8.2":0.01023,"9.2":0.03082,"10.1":0.0307,"11.1-11.2":0.24653,"12.0":0.10272,"13.0":0.08218,"14.0":0.25681,"15.0":0.74987},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00198,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01237},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.87219,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":50.14764},S:{"2.5":0},R:{_:"0"},M:{"0":0.73674},Q:{"10.4":0.00957},O:{"0":0.03349},H:{"0":0.04529}}; +module.exports={C:{"53":0.00544,"55":0.00544,"61":0.01088,"66":0.00544,"68":0.00544,"78":0.1088,"92":0.01088,"94":0.33184,"95":1.32192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 56 57 58 59 60 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 93 96 97 3.5 3.6"},D:{"56":0.16864,"74":0.02176,"81":0.01088,"86":0.02176,"89":0.03808,"90":0.13056,"91":0.00544,"92":0.08704,"93":0.07616,"94":0.63104,"95":1.10432,"96":20.87328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 75 76 77 78 79 80 83 84 85 87 88 97 98 99"},F:{"81":0.03808,"82":0.13056,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02176,"14":1.41984,"15":0.0272,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02176,"11.1":0.04896,"12.1":0.02176,"13.1":0.02176,"14.1":0.2992,"15.1":0.05984,"15.2":0.01632},B:{"15":0.02176,"18":0.03808,"84":0.04352,"90":0.00544,"92":0.03264,"93":0.01088,"94":0.02176,"95":1.3328,"96":6.51712,_:"12 13 14 16 17 79 80 81 83 85 86 87 88 89 91"},G:{"8":0,"3.2":0,"4.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.17444,"10.0-10.2":0,"10.3":0.0645,"11.0-11.2":0.05937,"11.3-11.4":0.03518,"12.0-12.1":0.01612,"12.2-12.5":1.40212,"13.0-13.1":0.08575,"13.2":0.03738,"13.3":0.33789,"13.4-13.7":0.48301,"14.0-14.4":0.8744,"14.5-14.8":2.38279,"15.0-15.1":1.15511,"15.2":0.22281},P:{"4":0.02042,"5.0-5.4":0.01111,"6.2-6.4":0.02065,"7.2-7.4":0.52082,"8.2":0.01032,"9.2":0.32679,"10.1":0.04085,"11.1-11.2":0.09191,"12.0":0.06194,"13.0":0.07149,"14.0":0.2553,"15.0":0.44934},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01395,"4.4":0,"4.4.3-4.4.4":0.04532},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.73536,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.36472},H:{"0":0.0259},L:{"0":51.68637},S:{"2.5":0},R:{_:"0"},M:{"0":0.96651},Q:{"10.4":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 9055f18834a1db..fac1adcf04fdf6 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.01994,"68":0.00285,"78":0.01424,"79":0.00854,"80":0.0057,"81":0.0057,"82":0.00854,"83":0.00285,"84":0.00285,"88":0.00285,"89":0.01994,"91":0.01709,"92":0.00854,"93":0.09398,"94":0.55251,"95":0.0057,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 85 86 87 90 96 3.5 3.6"},D:{"18":0.0057,"22":0.07405,"26":0.04557,"34":0.06835,"38":0.10253,"42":0.00285,"43":0.0057,"47":0.08829,"48":0.00285,"49":0.22214,"51":0.05981,"53":0.02563,"56":0.00854,"57":0.0057,"58":0.00285,"59":0.0057,"61":0.00854,"63":0.01139,"64":0.00285,"65":0.0057,"66":0.0057,"67":0.0057,"68":0.01994,"69":0.00854,"70":0.00854,"71":0.04272,"72":0.00854,"73":0.01139,"74":0.00854,"75":0.01709,"76":0.01994,"77":0.01424,"78":0.01709,"79":0.15664,"80":0.02848,"81":0.01994,"83":0.04557,"84":0.0712,"85":0.07405,"86":0.07974,"87":0.16234,"88":0.04842,"89":0.05126,"90":0.03702,"91":0.07974,"92":0.12816,"93":0.12246,"94":0.46992,"95":10.99613,"96":7.42189,"97":0.0057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 44 45 46 50 52 54 55 60 62 98 99"},F:{"28":0.0057,"31":0.01139,"32":0.01139,"36":0.01424,"40":0.05981,"46":0.03987,"71":0.00285,"72":0.00285,"76":0.01139,"78":0.0057,"79":0.01139,"80":0.86294,"81":0.43574,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 73 74 75 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00854,"13":0.0057,"14":0.0057,"15":0.0057,"16":0.00285,"17":0.00854,"18":0.02848,"84":0.0057,"85":0.0057,"86":0.00285,"89":0.0057,"91":0.0057,"92":0.01424,"93":0.0057,"94":0.03133,"95":0.89712,"96":0.43574,_:"79 80 81 83 87 88 90"},E:{"4":0,"13":0.01139,"14":0.0712,"15":0.10253,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.03418,"10.1":0.0057,"11.1":0.00854,"12.1":0.01139,"13.1":0.06835,"14.1":0.25062,"15.1":0.15379},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00208,"6.0-6.1":0.00312,"7.0-7.1":0.0509,"8.1-8.4":0.00623,"9.0-9.2":0.00623,"9.3":0.12257,"10.0-10.2":0.01454,"10.3":0.13815,"11.0-11.2":0.0509,"11.3-11.4":0.05401,"12.0-12.1":0.03532,"12.2-12.5":1.52383,"13.0-13.1":0.02181,"13.2":0.01039,"13.3":0.08102,"13.4-13.7":0.26384,"14.0-14.4":0.70011,"14.5-14.8":3.61586,"15.0-15.1":3.68234},P:{"4":0.76204,"5.0-5.4":0.03048,"6.2-6.4":0.02054,"7.2-7.4":0.24385,"8.2":0.01023,"9.2":0.0508,"10.1":0.03048,"11.1-11.2":0.21337,"12.0":0.1016,"13.0":0.34546,"14.0":0.28449,"15.0":2.97702},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.00838,"4.4":0,"4.4.3-4.4.4":0.02498},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00865,"9":0.01153,"11":0.67473,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":55.80636},S:{"2.5":0},R:{_:"0"},M:{"0":0.18593},Q:{"10.4":0},O:{"0":0.13587},H:{"0":0.60254}}; +module.exports={C:{"52":0.01783,"55":0.01486,"68":0.00297,"78":0.01189,"79":0.00594,"80":0.00594,"81":0.00594,"82":0.00297,"84":0.00892,"87":0.00594,"88":0.00297,"89":0.01189,"90":0.00594,"91":0.01486,"92":0.00297,"93":0.00594,"94":0.19615,"95":0.4666,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 69 70 71 72 73 74 75 76 77 83 85 86 96 97 3.5 3.6"},D:{"22":0.06538,"26":0.04161,"34":0.08024,"38":0.13671,"42":0.00297,"43":0.00297,"47":0.0951,"48":0.00297,"49":0.14266,"50":0.00297,"53":0.02972,"56":0.00594,"57":0.00297,"58":0.00297,"59":0.00297,"60":0.03269,"61":0.00297,"62":0.00594,"63":0.01189,"64":0.00297,"65":0.00594,"66":0.00594,"67":0.00892,"68":0.01783,"69":0.00892,"70":0.01189,"71":0.03864,"72":0.00594,"73":0.01189,"74":0.00892,"75":0.01486,"76":0.01783,"77":0.01189,"78":0.01486,"79":0.19021,"80":0.03566,"81":0.0208,"83":0.04161,"84":0.06538,"85":0.0743,"86":0.06836,"87":0.13968,"88":0.04161,"89":0.04458,"90":0.02972,"91":0.05944,"92":0.10402,"93":0.13374,"94":0.15752,"95":0.31503,"96":19.19318,"97":0.00892,"98":0.00594,_:"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 51 52 54 55 99"},F:{"28":0.00892,"31":0.00594,"32":0.01783,"36":0.01783,"40":0.0535,"46":0.04458,"78":0.00297,"79":0.00297,"80":0.00892,"81":0.61223,"82":0.71328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01783,"14":0.06241,"15":0.05647,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.02972,"10.1":0.00594,"11.1":0.00594,"12.1":0.01189,"13.1":0.06241,"14.1":0.20507,"15.1":0.2229,"15.2":0.03566},B:{"12":0.00594,"13":0.00594,"14":0.00594,"15":0.00594,"16":0.00594,"17":0.00892,"18":0.02675,"84":0.00594,"85":0.00594,"86":0.00297,"89":0.00594,"91":0.00594,"92":0.01189,"93":0.00297,"94":0.00892,"95":0.02972,"96":1.54247,_:"79 80 81 83 87 88 90"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00106,"6.0-6.1":0.00212,"7.0-7.1":0.05509,"8.1-8.4":0.0053,"9.0-9.2":0.00424,"9.3":0.10593,"10.0-10.2":0.01589,"10.3":0.15678,"11.0-11.2":0.05297,"11.3-11.4":0.04661,"12.0-12.1":0.03496,"12.2-12.5":1.47353,"13.0-13.1":0.02013,"13.2":0.00742,"13.3":0.07309,"13.4-13.7":0.25106,"14.0-14.4":0.61017,"14.5-14.8":2.49155,"15.0-15.1":4.6314,"15.2":0.55191},P:{"4":0.8178,"5.0-5.4":0.02045,"6.2-6.4":0.02065,"7.2-7.4":0.23512,"8.2":0.01032,"9.2":0.03067,"10.1":0.01022,"11.1-11.2":0.17378,"12.0":0.07156,"13.0":0.29645,"14.0":0.19423,"15.0":0.53157},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00216,"4.2-4.3":0.00724,"4.4":0,"4.4.3-4.4.4":0.02574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00905,"9":0.00905,"11":0.58522,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.1265},H:{"0":0.55891},L:{"0":55.11589},S:{"2.5":0},R:{_:"0"},M:{"0":0.19678},Q:{"10.4":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 be352804a74947..2a1f52240f9251 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:{"52":0.01396,"68":0.00931,"78":0.02792,"86":0.02327,"88":0.00465,"89":0.04654,"91":0.01396,"92":0.01396,"93":0.34905,"94":1.29847,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 90 95 96 3.5 3.6"},D:{"38":0.01396,"41":0.02327,"47":0.00931,"49":0.12566,"50":0.00931,"53":0.00931,"55":0.02327,"56":0.00931,"63":0.00931,"65":0.00931,"67":0.00931,"68":0.00931,"69":0.00931,"72":0.00465,"73":0.04189,"74":0.02792,"75":0.03258,"76":0.03723,"78":0.00465,"79":0.08843,"80":0.03723,"81":0.04189,"83":0.01862,"84":0.01862,"85":0.03723,"86":0.02327,"87":0.18616,"88":0.03258,"89":0.03723,"90":0.05585,"91":0.09773,"92":0.20943,"93":0.31647,"94":2.19669,"95":16.54497,"96":10.28999,"97":0.01862,"98":0.00465,_:"4 5 6 7 8 9 10 11 12 13 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 57 58 59 60 61 62 64 66 70 71 77 99"},F:{"79":0.01862,"80":1.12627,"81":0.34905,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.01396,"16":0.00465,"17":0.00465,"18":0.04654,"84":0.00931,"85":0.00931,"89":0.01862,"90":0.00931,"92":0.03723,"93":0.01396,"94":0.14427,"95":4.64935,"96":1.79644,_:"13 14 15 79 80 81 83 86 87 88 91"},E:{"4":0,"13":0.02327,"14":0.28389,"15":0.37232,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02792,"11.1":0.1117,"12.1":0.04189,"13.1":0.26062,"14.1":0.85168,"15.1":0.6981},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04836,"6.0-6.1":0.00093,"7.0-7.1":0.05115,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16553,"10.0-10.2":0,"10.3":0.11439,"11.0-11.2":0.0093,"11.3-11.4":0.02325,"12.0-12.1":0.01395,"12.2-12.5":0.50497,"13.0-13.1":0.00279,"13.2":0.00186,"13.3":0.04092,"13.4-13.7":0.10602,"14.0-14.4":0.42127,"14.5-14.8":3.61568,"15.0-15.1":4.17273},P:{"4":0.40101,"5.0-5.4":0.01099,"6.2-6.4":0.02054,"7.2-7.4":0.23844,"8.2":0.01023,"9.2":0.04335,"10.1":0.01084,"11.1-11.2":0.2276,"12.0":0.05419,"13.0":0.16257,"14.0":0.23844,"15.0":4.27017},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00209,"4.2-4.3":0.00167,"4.4":0,"4.4.3-4.4.4":0.04887},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00496,"11":0.14396,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":39.86997},S:{"2.5":0},R:{_:"0"},M:{"0":0.12833},Q:{"10.4":0.00535},O:{"0":0.10159},H:{"0":0.27336}}; +module.exports={C:{"31":0.00462,"48":0.00923,"52":0.0277,"68":0.00462,"78":0.01847,"87":0.00462,"89":0.04617,"91":0.00923,"92":0.00462,"93":0.01385,"94":0.72487,"95":1.01574,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 90 96 97 3.5 3.6"},D:{"38":0.00923,"40":0.00462,"41":0.00923,"47":0.01847,"49":0.06002,"50":0.00462,"53":0.00462,"55":0.01385,"56":0.01385,"58":0.01847,"63":0.00462,"65":0.00462,"66":0.00923,"67":0.00923,"68":0.00923,"69":0.00462,"70":0.01847,"71":0.00923,"73":0.00923,"74":0.04155,"75":0.03232,"76":0.0554,"78":0.00462,"79":0.09696,"80":0.03232,"81":0.04155,"83":0.01385,"84":0.01385,"85":0.0277,"86":0.01385,"87":0.1616,"88":0.01385,"89":0.04155,"90":0.03232,"91":0.08311,"92":0.15236,"93":0.23547,"94":0.63715,"95":0.55866,"96":27.51732,"97":0.01385,"98":0.02309,"99":0.00923,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 42 43 44 45 46 48 51 52 54 57 59 60 61 62 64 72 77"},F:{"28":0.00923,"79":0.01847,"80":0.00923,"81":0.56789,"82":0.74334,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01847,"14":0.29549,"15":0.17545,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02309,"11.1":0.08772,"12.1":0.05079,"13.1":0.31857,"14.1":0.68793,"15.1":0.84029,"15.2":0.19391},B:{"12":0.00923,"15":0.00462,"17":0.00923,"18":0.02309,"85":0.01847,"89":0.00923,"92":0.01847,"93":0.00462,"94":0.00923,"95":0.18468,"96":5.84512,_:"13 14 16 79 80 81 83 84 86 87 88 90 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02626,"6.0-6.1":0,"7.0-7.1":0.08347,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18289,"10.0-10.2":0.00281,"10.3":0.15476,"11.0-11.2":0.00563,"11.3-11.4":0.01876,"12.0-12.1":0.01313,"12.2-12.5":0.48678,"13.0-13.1":0.00469,"13.2":0.00188,"13.3":0.03189,"13.4-13.7":0.0891,"14.0-14.4":0.30951,"14.5-14.8":2.35323,"15.0-15.1":5.14541,"15.2":0.46333},P:{"4":0.49903,"5.0-5.4":0.01111,"6.2-6.4":0.02065,"7.2-7.4":0.24952,"8.2":0.01032,"9.2":0.04339,"10.1":0.01085,"11.1-11.2":0.18442,"12.0":0.0217,"13.0":0.24952,"14.0":0.20612,"15.0":0.53158},I:{"0":0,"3":0,"4":0.00044,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00066,"4.2-4.3":0.00132,"4.4":0,"4.4.3-4.4.4":0.02449},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11081,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.07538},H:{"0":0.35171},L:{"0":40.41764},S:{"2.5":0},R:{_:"0"},M:{"0":0.13998},Q:{"10.4":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 d0dcfb486400c0..773b902a6da80c 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:{"94":0.32478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 3.5 3.6"},D:{"68":0.12991,"81":0.5846,"87":0.45469,"89":0.06496,"90":0.06496,"92":0.06496,"93":0.12991,"94":1.03928,"95":16.534,"96":11.72143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 83 84 85 86 88 91 97 98 99"},F:{"80":0.32478,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"86":0.06496,"92":0.12991,"93":0.19487,"94":7.35763,"95":10.28651,"96":2.79897,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 87 88 89 90 91"},E:{"4":0,"12":0.06496,_:"0 5 6 7 8 9 10 11 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1","12.1":0.32478,"13.1":0.25982,"14.1":0.51964},G:{"8":0,"3.2":0,"4.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.46295,"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.01321,"13.0-13.1":0,"13.2":0.01321,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.07942,"14.5-14.8":0.06609,"15.0-15.1":0},P:{"4":2.65646,"5.0-5.4":0.01077,"6.2-6.4":0.0404,"7.2-7.4":0.07536,"8.2":0.01023,"9.2":0.02153,"10.1":0.07309,"11.1-11.2":0.17225,"12.0":0.49075,"13.0":0.07309,"14.0":0.07309,"15.0":0.56384},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.06963},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.99384,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":40.73377},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.40329}}; +module.exports={C:{"94":0.21952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 3.5 3.6"},D:{"68":0.21952,"81":0.2744,"87":0.10976,"89":0.16464,"90":4.86926,"92":0.05488,"95":0.71343,"96":34.13474,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 83 84 85 86 88 91 93 94 97 98 99"},F:{"82":0.05488,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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},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 13.1 14.1 15.1","11.1":0.05488,"12.1":0.10976,"15.2":0.10976},B:{"14":0.05488,"84":0.21952,"95":0.49391,"96":3.22788,_:"12 13 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.11943,"13.0-13.1":0,"13.2":0.0796,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.15926,"14.5-14.8":0.23886,"15.0-15.1":0.11943,"15.2":0},P:{"4":0.43501,"5.0-5.4":0.03183,"6.2-6.4":0.02065,"7.2-7.4":0.03133,"8.2":0.01032,"9.2":0.03067,"10.1":0.02122,"11.1-11.2":0.0731,"12.0":0.10443,"13.0":0.56394,"14.0":0.0731,"15.0":0.12532},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.08268,"4.4":0,"4.4.3-4.4.4":0.08268},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.71343,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.16536},H:{"0":0.05219},L:{"0":52.94819},S:{"2.5":0},R:{_:"0"},M:{"0":0.05512},Q:{"10.4":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 2bc9ddd9227c2a..8bbafe49d56c6c 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.0266,"45":0.00887,"46":0.00887,"47":0.00887,"48":0.00443,"49":0.00887,"50":0.00887,"51":0.0133,"52":0.03104,"55":0.00887,"56":0.00443,"72":0.00887,"78":0.0133,"84":0.00443,"88":0.00887,"89":0.0133,"90":0.00443,"91":0.0133,"92":0.02217,"93":0.19953,"94":1.06416,"95":0.00443,_:"2 3 4 5 6 7 8 9 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 53 54 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 96 3.5 3.6"},D:{"11":0.01774,"22":0.00443,"26":0.00443,"30":0.0133,"34":0.0266,"38":0.10198,"49":0.23944,"50":0.00887,"51":0.00887,"52":0.00887,"53":0.11528,"54":0.00443,"55":0.0133,"56":0.03104,"57":0.00443,"58":0.00887,"61":0.09755,"62":0.00443,"63":0.00887,"64":0.00887,"65":0.0133,"66":0.01774,"67":0.0266,"68":0.01774,"69":0.01774,"70":0.01774,"71":0.02217,"72":0.0133,"73":0.0133,"74":0.02217,"75":0.0266,"76":0.0133,"77":0.0133,"78":0.0133,"79":0.40793,"80":0.0266,"81":0.06651,"83":0.0266,"84":0.01774,"85":0.01774,"86":0.05321,"87":0.1951,"88":0.02217,"89":0.06651,"90":0.05321,"91":0.10198,"92":0.27934,"93":0.235,"94":0.96661,"95":18.8445,"96":9.71046,"97":0.00887,_:"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 45 46 47 48 59 60 98 99"},F:{"28":0.01774,"36":0.01774,"40":0.00443,"46":0.05764,"79":0.00443,"80":0.10642,"81":0.03104,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00443,"16":0.00443,"17":0.00887,"18":0.0266,"84":0.00443,"91":0.00887,"92":0.0133,"93":0.0133,"94":0.05764,"95":2.2037,"96":0.77595,_:"12 13 15 79 80 81 83 85 86 87 88 89 90"},E:{"4":0,"8":0.00443,"12":0.00887,"13":0.14189,"14":0.47444,"15":0.48331,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00887,"10.1":0.02217,"11.1":0.03991,"12.1":0.06651,"13.1":0.32368,"14.1":3.02399,"15.1":0.59859},G:{"8":0.0023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02534,"6.0-6.1":0.01382,"7.0-7.1":0.1267,"8.1-8.4":0.04607,"9.0-9.2":0.01843,"9.3":0.24419,"10.0-10.2":0.03456,"10.3":0.27875,"11.0-11.2":0.07372,"11.3-11.4":0.08063,"12.0-12.1":0.16817,"12.2-12.5":1.01364,"13.0-13.1":0.14053,"13.2":0.0599,"13.3":0.27184,"13.4-13.7":0.61049,"14.0-14.4":3.09159,"14.5-14.8":10.79753,"15.0-15.1":5.92977},P:{"4":0.56129,_:"5.0-5.4 6.2-6.4 7.2-7.4","8.2":0.01079,"9.2":0.08635,"10.1":0.04318,"11.1-11.2":0.15112,"12.0":0.09715,"13.0":0.28065,"14.0":0.31303,"15.0":2.43946},I:{"0":0,"3":0,"4":0.00046,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00091,"4.2-4.3":0.00365,"4.4":0,"4.4.3-4.4.4":0.02281},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.33255,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":29.41568},S:{"2.5":0},R:{_:"0"},M:{"0":0.10574},Q:{"10.4":0.01113},O:{"0":0.1113},H:{"0":0.33192}}; +module.exports={C:{"34":0.02605,"46":0.00434,"47":0.00434,"48":0.00434,"49":0.00434,"51":0.00868,"52":0.02605,"55":0.00434,"72":0.00868,"78":0.01302,"84":0.00434,"88":0.00868,"89":0.00868,"90":0.00434,"91":0.01302,"92":0.00868,"93":0.01736,"94":0.40371,"95":0.84215,_:"2 3 4 5 6 7 8 9 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 50 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 96 97 3.5 3.6"},D:{"11":0.01736,"22":0.00868,"26":0.00434,"30":0.01302,"34":0.02605,"38":0.10853,"45":0.00434,"47":0.00434,"49":0.19535,"50":0.00434,"51":0.00434,"52":0.00868,"53":0.10853,"54":0.00434,"55":0.00868,"56":0.03039,"57":0.00434,"58":0.00868,"61":0.04775,"62":0.00434,"63":0.00868,"64":0.00868,"65":0.01736,"66":0.01736,"67":0.02605,"68":0.01736,"69":0.01736,"70":0.01302,"71":0.01736,"72":0.01302,"73":0.01302,"74":0.02171,"75":0.02171,"76":0.01302,"77":0.01302,"78":0.01302,"79":0.4124,"80":0.02605,"81":0.06077,"83":0.02171,"84":0.01736,"85":0.01736,"86":0.05209,"87":0.13457,"88":0.02171,"89":0.06512,"90":0.04341,"91":0.0738,"92":0.20403,"93":0.21705,"94":0.32123,"95":0.62076,"96":27.78674,"97":0.01302,"98":0.00434,_:"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 48 59 60 99"},F:{"28":0.01736,"36":0.01736,"40":0.00434,"46":0.06077,"79":0.00434,"80":0.00434,"81":0.04341,"82":0.09116,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00434,"12":0.00868,"13":0.13457,"14":0.44712,"15":0.28217,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00868,"10.1":0.02171,"11.1":0.03473,"12.1":0.06077,"13.1":0.31255,"14.1":2.27034,"15.1":1.52369,"15.2":0.11721},B:{"14":0.00434,"16":0.00434,"17":0.00868,"18":0.02171,"84":0.00434,"91":0.00434,"92":0.01302,"93":0.00434,"94":0.01736,"95":0.05643,"96":2.89545,_:"12 13 15 79 80 81 83 85 86 87 88 89 90"},G:{"8":0.00243,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02674,"6.0-6.1":0.01459,"7.0-7.1":0.14101,"8.1-8.4":0.04619,"9.0-9.2":0.01945,"9.3":0.2407,"10.0-10.2":0.02674,"10.3":0.25771,"11.0-11.2":0.07051,"11.3-11.4":0.07294,"12.0-12.1":0.15317,"12.2-12.5":0.95792,"13.0-13.1":0.13372,"13.2":0.05835,"13.3":0.26015,"13.4-13.7":0.58107,"14.0-14.4":2.94427,"14.5-14.8":8.13503,"15.0-15.1":9.58407,"15.2":0.57864},P:{"4":0.58873,"5.0-5.4":0.08049,"6.2-6.4":0.1811,"7.2-7.4":0.4125,"8.2":0.0107,"9.2":0.08563,"10.1":0.03211,"11.1-11.2":0.13915,"12.0":0.08563,"13.0":0.2462,"14.0":0.2569,"15.0":0.65296},I:{"0":0,"3":0,"4":0.00096,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00096,"4.2-4.3":0.00432,"4.4":0,"4.4.3-4.4.4":0.02206},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29519,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.11318},H:{"0":0.31074},L:{"0":29.4086},S:{"2.5":0},R:{_:"0"},M:{"0":0.10752},Q:{"10.4":0.01132}}; 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 1b1fc9d22e9ed9..003888e69d6df9 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.00559,"34":0.00373,"35":0.00186,"39":0.00373,"40":0.00373,"41":0.00373,"43":0.00559,"44":0.00373,"45":0.00186,"47":0.00932,"48":0.00745,"49":0.00745,"52":0.01863,"53":0.00186,"56":0.00186,"58":0.00559,"60":0.00186,"64":0.00186,"65":0.00559,"66":0.00932,"68":0.00373,"72":0.00745,"77":0.00373,"78":0.0149,"79":0.00186,"81":0.00373,"87":0.00186,"88":0.00745,"89":0.01863,"90":0.00559,"91":0.02049,"92":0.02236,"93":0.24033,"94":1.11035,"95":0.07266,_:"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 36 37 38 42 46 50 51 54 55 57 59 61 62 63 67 69 70 71 73 74 75 76 80 82 83 84 85 86 96 3.5 3.6"},D:{"11":0.00373,"37":0.00186,"38":0.00186,"39":0.0149,"49":0.01677,"50":0.00186,"55":0.01118,"56":0.00373,"57":0.02608,"60":0.00186,"63":0.01304,"64":0.00373,"65":0.00373,"66":0.00745,"67":0.00373,"68":0.00373,"69":0.00186,"70":0.01118,"71":0.00373,"72":0.00559,"73":0.00373,"74":0.00932,"75":0.00745,"76":0.00373,"77":0.00745,"78":0.00373,"79":0.0149,"80":0.01304,"81":0.01304,"83":0.00932,"84":0.0354,"85":0.00745,"86":0.01863,"87":0.04471,"88":0.02422,"89":0.02049,"90":0.01863,"91":0.04844,"92":0.09874,"93":0.08011,"94":0.26268,"95":4.05948,"96":2.36042,"97":0.01118,"98":0.00186,_:"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 40 41 42 43 44 45 46 47 48 51 52 53 54 58 59 61 62 99"},F:{"18":0.00186,"42":0.00186,"65":0.00932,"66":0.00373,"72":0.0149,"74":0.00745,"77":0.00373,"78":0.00373,"79":0.0149,"80":0.49742,"81":0.19003,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 67 68 69 70 71 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01863,"13":0.00745,"14":0.00373,"15":0.00932,"16":0.02422,"17":0.00932,"18":0.06521,"84":0.00745,"85":0.00559,"86":0.00186,"89":0.01304,"90":0.00932,"91":0.00745,"92":0.02981,"93":0.02795,"94":0.06334,"95":0.8309,"96":0.21238,_:"79 80 81 83 87 88"},E:{"4":0,"12":0.00186,"13":0.0149,"14":0.07452,"15":0.0503,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 7.1 9.1","6.1":0.00373,"10.1":0.00373,"11.1":0.00559,"12.1":0.01118,"13.1":0.06148,"14.1":0.07079,"15.1":0.06893},G:{"8":0.00039,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00078,"5.0-5.1":0.00195,"6.0-6.1":0,"7.0-7.1":0.0082,"8.1-8.4":0,"9.0-9.2":0.00117,"9.3":0.01719,"10.0-10.2":0.00586,"10.3":0.04062,"11.0-11.2":0.03047,"11.3-11.4":0.03594,"12.0-12.1":0.04414,"12.2-12.5":0.7734,"13.0-13.1":0.04062,"13.2":0.00625,"13.3":0.06484,"13.4-13.7":0.18554,"14.0-14.4":0.68044,"14.5-14.8":1.01206,"15.0-15.1":0.95542},P:{"4":0.36337,"5.0-5.4":0.01038,"6.2-6.4":0.01038,"7.2-7.4":0.10382,"8.2":0.04021,"9.2":0.1142,"10.1":0.09047,"11.1-11.2":0.10382,"12.0":0.03115,"13.0":0.1142,"14.0":0.19726,"15.0":0.91361},I:{"0":0,"3":0,"4":0.00045,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00356,"4.2-4.3":0.00846,"4.4":0,"4.4.3-4.4.4":0.07703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01327,"11":0.25873,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01627},N:{"10":0.02658,"11":0.22582},L:{"0":51.04119},S:{"2.5":0.36612},R:{_:"0"},M:{"0":0.09763},Q:{"10.4":0},O:{"0":0.95191},H:{"0":27.7372}}; +module.exports={C:{"34":0.00198,"36":0.00395,"39":0.00198,"41":0.00198,"43":0.00593,"44":0.01582,"47":0.00593,"48":0.00593,"49":0.00395,"52":0.00989,"65":0.00395,"68":0.00198,"72":0.00791,"78":0.01384,"84":0.00395,"85":0.00198,"88":0.00593,"89":0.01977,"91":0.01582,"92":0.01384,"93":0.01384,"94":0.52391,"95":0.91535,"96":0.0692,_:"2 3 4 5 6 7 8 9 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 40 42 45 46 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 90 97 3.5 3.6"},D:{"11":0.00198,"35":0.00198,"39":0.00198,"42":0.00395,"43":0.00593,"49":0.00791,"50":0.00198,"55":0.00593,"57":0.01582,"58":0.00593,"63":0.00791,"64":0.00198,"65":0.00593,"66":0.00395,"67":0.00198,"68":0.00593,"69":0.00593,"70":0.00791,"71":0.00198,"72":0.00395,"73":0.00395,"74":0.00989,"75":0.00791,"76":0.00395,"77":0.00593,"78":0.00593,"79":0.02175,"80":0.01582,"81":0.01582,"83":0.00989,"84":0.03559,"85":0.01779,"86":0.01977,"87":0.0514,"88":0.02175,"89":0.01977,"90":0.01779,"91":0.05338,"92":0.08106,"93":0.04349,"94":0.10083,"95":0.1977,"96":6.56759,"97":0.00791,"98":0.00989,_:"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 40 41 44 45 46 47 48 51 52 53 54 56 59 60 61 62 99"},F:{"18":0.00791,"65":0.00593,"66":0.00593,"77":0.00395,"79":0.01186,"80":0.00989,"81":0.23724,"82":0.44483,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.00395,"13":0.01186,"14":0.04547,"15":0.03361,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 7.1 9.1","6.1":0.00198,"10.1":0.00593,"11.1":0.01384,"12.1":0.02175,"13.1":0.06524,"14.1":0.08303,"15.1":0.07513,"15.2":0.00989},B:{"12":0.01977,"13":0.01186,"14":0.00395,"15":0.00989,"16":0.01582,"17":0.00791,"18":0.06326,"84":0.00791,"85":0.00593,"89":0.00989,"90":0.01186,"91":0.00593,"92":0.01384,"93":0.01582,"94":0.01977,"95":0.04547,"96":0.93908,_:"79 80 81 83 86 87 88"},G:{"8":0.00042,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00212,"6.0-6.1":0.00127,"7.0-7.1":0.02039,"8.1-8.4":0,"9.0-9.2":0.0017,"9.3":0.01614,"10.0-10.2":0.00212,"10.3":0.05521,"11.0-11.2":0.03907,"11.3-11.4":0.04799,"12.0-12.1":0.0361,"12.2-12.5":0.80653,"13.0-13.1":0.03822,"13.2":0.00892,"13.3":0.07772,"13.4-13.7":0.17838,"14.0-14.4":0.64939,"14.5-14.8":0.93437,"15.0-15.1":1.21553,"15.2":0.11255},P:{"4":0.36474,"5.0-5.4":0.01042,"6.2-6.4":0.01042,"7.2-7.4":0.12505,"8.2":0.01009,"9.2":0.13548,"10.1":0.07063,"11.1-11.2":0.07295,"12.0":0.04168,"13.0":0.10421,"14.0":0.198,"15.0":0.29179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00495,"4.2-4.3":0.00619,"4.4":0,"4.4.3-4.4.4":0.07712},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01642,"9":0.02462,"11":0.22981,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.01605},O:{"0":0.91462},H:{"0":24.83021},L:{"0":53.62742},S:{"2.5":0.46533},R:{_:"0"},M:{"0":0.11232},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js index 67e3b3fe65eb8e..27db61df0cf37d 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:{"20":0.05613,"21":0.00624,"48":0.01871,"50":0.00624,"52":0.23701,"55":0.1684,"56":0.01247,"57":0.01247,"58":0.02495,"60":0.21206,"66":0.01871,"68":0.23077,"71":0.02495,"72":0.01871,"73":0.00624,"74":0.01247,"75":0.01247,"76":0.03742,"78":0.14969,"79":0.01871,"80":0.01247,"81":0.03742,"82":0.01871,"83":0.02495,"84":0.02495,"87":0.01247,"88":0.07484,"89":0.02495,"90":0.01871,"91":0.08108,"92":0.07484,"93":0.47401,"94":2.46362,"95":0.06237,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 22 23 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 59 61 62 63 64 65 67 69 70 77 85 86 96 3.5 3.6"},D:{"28":0.00624,"41":0.01871,"43":0.00624,"44":0.00624,"45":0.01247,"47":0.01247,"48":0.02495,"49":0.29938,"50":0.01247,"51":0.01871,"56":0.01871,"57":0.03742,"58":0.01247,"59":0.13098,"61":0.08108,"63":0.03742,"64":0.01247,"65":0.0499,"66":0.01247,"67":0.01871,"68":0.00624,"69":0.01871,"70":0.01871,"71":0.01871,"72":0.01871,"73":0.06861,"74":0.06861,"75":0.03119,"76":0.01871,"77":0.06237,"78":0.02495,"79":0.11227,"80":0.09979,"81":0.04366,"83":0.10603,"84":0.13098,"85":0.14969,"86":0.28067,"87":0.97921,"88":0.29938,"89":0.11227,"90":0.1684,"91":0.13721,"92":0.49272,"93":0.37422,"94":1.35967,"95":20.83782,"96":13.04157,"97":0.01871,"98":0.00624,_:"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 42 46 52 53 54 55 60 62 99"},F:{"28":0.00624,"34":0.00624,"35":0.01871,"36":0.13721,"58":0.01871,"62":0.00624,"68":0.00624,"69":0.01247,"70":0.01247,"71":0.01247,"72":0.01247,"73":0.01247,"74":0.01247,"75":0.01247,"76":0.01247,"77":0.02495,"78":0.03742,"79":0.14345,"80":6.54885,"81":2.57588,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 63 64 65 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0499},B:{"14":0.00624,"17":0.00624,"18":0.02495,"83":0.00624,"84":0.01247,"85":0.00624,"86":0.00624,"87":0.00624,"89":0.00624,"90":0.00624,"92":0.01247,"93":0.00624,"94":0.01871,"95":0.84823,"96":0.36175,_:"12 13 15 16 79 80 81 88 91"},E:{"4":0,"12":0.01871,"13":0.03742,"14":0.21206,"15":0.28067,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.14345,"11.1":0.01247,"12.1":0.03742,"13.1":0.15593,"14.1":0.5738,"15.1":0.47401},G:{"8":0,"3.2":0.00205,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00273,"6.0-6.1":0.00545,"7.0-7.1":0.01636,"8.1-8.4":0.01091,"9.0-9.2":0.00341,"9.3":0.03818,"10.0-10.2":0.0075,"10.3":0.06204,"11.0-11.2":0.01841,"11.3-11.4":0.02182,"12.0-12.1":0.01841,"12.2-12.5":0.2802,"13.0-13.1":0.02522,"13.2":0.01364,"13.3":0.04704,"13.4-13.7":0.17726,"14.0-14.4":0.49972,"14.5-14.8":2.86268,"15.0-15.1":2.70178},P:{"4":0.02121,"5.0-5.4":0.01045,"6.2-6.4":0.0404,"7.2-7.4":0.10605,"8.2":0.02121,"9.2":0.06363,"10.1":0.02121,"11.1-11.2":0.13786,"12.0":0.04242,"13.0":0.13786,"14.0":0.20149,"15.0":1.26197},I:{"0":0,"3":0,"4":0.00147,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00196,"4.2-4.3":0.01129,"4.4":0,"4.4.3-4.4.4":0.07559},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03972,"9":0.01986,"10":0.01324,"11":0.35752,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":25.85784},S:{"2.5":0},R:{_:"0"},M:{"0":0.13547},Q:{"10.4":0},O:{"0":0.25588},H:{"0":2.92487}}; +module.exports={C:{"45":0.02408,"46":0.01806,"47":0.01204,"48":0.02408,"49":0.00602,"50":0.01204,"51":0.01806,"52":0.21676,"53":0.01806,"55":0.4576,"56":0.01806,"57":0.00602,"58":0.02408,"60":0.07827,"66":0.01806,"68":0.23482,"71":0.01806,"72":0.01204,"74":0.01204,"75":0.01204,"76":0.01204,"78":0.15655,"79":0.01204,"80":0.01806,"81":0.07225,"82":0.02408,"83":0.03011,"84":0.01204,"85":0.00602,"87":0.01204,"88":0.09634,"89":0.01806,"90":0.01204,"91":0.09634,"92":0.03011,"93":0.09634,"94":0.91519,"95":1.85447,"96":0.01806,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 54 59 61 62 63 64 65 67 69 70 73 77 86 97 3.5 3.6"},D:{"41":0.01204,"45":0.01204,"48":0.03011,"49":0.2288,"51":0.01204,"56":0.00602,"57":0.03011,"58":0.00602,"59":0.10236,"61":0.06623,"63":0.03011,"64":0.00602,"65":0.01204,"66":0.01204,"67":0.01204,"68":0.01204,"69":0.03011,"70":0.02408,"71":0.01806,"72":0.01806,"73":0.05419,"74":0.06623,"75":0.01806,"76":0.02408,"77":0.04215,"78":0.02408,"79":0.10838,"80":0.07225,"81":0.03011,"83":0.09032,"84":0.13246,"85":0.10838,"86":0.28299,"87":0.49372,"88":0.1445,"89":0.10236,"90":0.12042,"91":0.10236,"92":0.51781,"93":0.78273,"94":0.65629,"95":0.72252,"96":32.33879,"97":0.01806,"98":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 39 40 42 43 44 46 47 50 52 53 54 55 60 62 99"},F:{"35":0.01204,"36":0.09634,"58":0.01806,"65":0.00602,"68":0.00602,"69":0.00602,"70":0.01204,"71":0.00602,"72":0.01204,"73":0.01204,"74":0.00602,"75":0.01204,"76":0.01204,"77":0.02408,"78":0.01806,"79":0.06623,"80":0.09634,"81":3.60658,"82":5.18408,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03613},E:{"4":0,"12":0.01204,"13":0.02408,"14":0.16859,"15":0.15053,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 10.1","5.1":0.15053,"9.1":0.02408,"11.1":0.01204,"12.1":0.03011,"13.1":0.13848,"14.1":0.46362,"15.1":0.572,"15.2":0.09032},B:{"14":0.00602,"17":0.01204,"18":0.01806,"84":0.00602,"85":0.00602,"86":0.00602,"87":0.00602,"95":0.01806,"96":1.24033,_:"12 13 15 16 79 80 81 83 88 89 90 91 92 93 94"},G:{"8":0.00075,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00225,"6.0-6.1":0.00451,"7.0-7.1":0.01503,"8.1-8.4":0.00451,"9.0-9.2":0.00376,"9.3":0.03458,"10.0-10.2":0.00601,"10.3":0.0466,"11.0-11.2":0.03007,"11.3-11.4":0.01954,"12.0-12.1":0.01804,"12.2-12.5":0.28638,"13.0-13.1":0.01879,"13.2":0.01578,"13.3":0.04735,"13.4-13.7":0.16536,"14.0-14.4":0.4788,"14.5-14.8":2.11815,"15.0-15.1":3.90181,"15.2":0.29615},P:{"4":0.032,"5.0-5.4":0.01067,"6.2-6.4":0.02065,"7.2-7.4":0.13865,"8.2":0.01032,"9.2":0.02133,"10.1":0.02133,"11.1-11.2":0.11732,"12.0":0.02133,"13.0":0.07466,"14.0":0.11732,"15.0":0.21331},I:{"0":0,"3":0,"4":0.00189,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00226,"4.2-4.3":0.00642,"4.4":0,"4.4.3-4.4.4":0.03321},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03798,"9":0.01899,"10":0.01266,"11":0.42409,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.00796},O:{"0":0.20696},H:{"0":2.39645},L:{"0":28.81285},S:{"2.5":0},R:{_:"0"},M:{"0":0.14328},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js index ee81d968257ef1..6da0dc5d69d2c4 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:{"17":0.00348,"31":0.01044,"36":0.00696,"37":0.00348,"38":0.00696,"39":0.00348,"40":0.00348,"41":0.00696,"42":0.00348,"43":0.01044,"44":0.01044,"47":0.01392,"48":0.00348,"50":0.00348,"52":0.0661,"55":0.00348,"56":0.00696,"57":0.00348,"58":0.00696,"60":0.01044,"61":0.00348,"64":0.03827,"67":0.00696,"68":0.00696,"69":0.02087,"72":0.02087,"73":0.00348,"77":0.00348,"78":0.04523,"80":0.00696,"82":0.07306,"83":0.00348,"84":0.00348,"85":0.00696,"86":0.01044,"87":0.00348,"88":0.02087,"89":0.0661,"90":0.01392,"91":0.08002,"92":0.03827,"93":0.51489,"94":2.80755,"95":0.37225,_:"2 3 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 32 33 34 35 45 46 49 51 53 54 59 62 63 65 66 70 71 74 75 76 79 81 96 3.5 3.6"},D:{"19":0.0174,"24":0.00348,"38":0.00696,"39":0.00348,"47":0.01044,"49":0.01392,"50":0.00696,"56":0.00696,"57":0.01392,"58":0.00348,"59":0.00348,"62":0.00696,"63":0.01392,"64":0.04871,"65":0.00696,"66":0.01044,"69":0.01392,"70":0.00696,"71":0.00348,"72":0.02087,"73":0.00696,"74":0.0174,"75":0.01044,"76":0.03131,"77":0.01044,"78":0.02783,"79":0.07654,"80":0.05219,"81":0.03827,"83":0.0174,"84":0.01392,"85":0.01044,"86":0.08698,"87":0.06958,"88":0.02087,"89":0.07306,"90":0.09393,"91":0.09393,"92":0.20526,"93":0.24701,"94":0.54968,"95":9.33764,"96":5.07238,"97":0.0174,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 51 52 53 54 55 60 61 67 68 98 99"},F:{"63":0.00696,"64":0.00348,"65":0.00348,"77":0.00696,"78":0.0174,"79":0.02435,"80":0.68536,"81":0.29572,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03131,"13":0.0174,"14":0.0174,"15":0.03131,"16":0.02087,"17":0.01392,"18":0.07654,"84":0.01392,"85":0.00696,"89":0.0174,"90":0.01392,"91":0.00696,"92":0.03131,"93":0.02435,"94":0.06262,"95":1.33594,"96":0.44879,_:"79 80 81 83 86 87 88"},E:{"4":0,"13":0.00696,"14":0.07306,"15":0.05566,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01044,"11.1":0.00696,"12.1":0.01044,"13.1":0.04523,"14.1":0.09045,"15.1":0.07306},G:{"8":0,"3.2":0,"4.0-4.1":0.00077,"4.2-4.3":0,"5.0-5.1":0.00657,"6.0-6.1":0.00154,"7.0-7.1":0.02588,"8.1-8.4":0.00154,"9.0-9.2":0.00077,"9.3":0.05368,"10.0-10.2":0.00425,"10.3":0.07183,"11.0-11.2":0.02163,"11.3-11.4":0.04943,"12.0-12.1":0.02703,"12.2-12.5":0.60054,"13.0-13.1":0.03476,"13.2":0.00965,"13.3":0.1062,"13.4-13.7":0.10157,"14.0-14.4":0.7388,"14.5-14.8":1.03501,"15.0-15.1":0.96897},P:{"4":0.15676,"5.0-5.4":0.01045,"6.2-6.4":0.0404,"7.2-7.4":0.06271,"8.2":0.01023,"9.2":0.14631,"10.1":0.07309,"11.1-11.2":0.09406,"12.0":0.01045,"13.0":0.12541,"14.0":0.24037,"15.0":0.70021},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.00684,"4.4":0,"4.4.3-4.4.4":0.05666},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00988,"10":0.00494,"11":0.13826,_:"6 7 9 5.5"},J:{"7":0,"10":0.01304},N:{"10":0.02658,"11":0.22582},L:{"0":54.26746},S:{"2.5":0.22171},R:{_:"0"},M:{"0":0.13042},Q:{"10.4":0},O:{"0":0.96511},H:{"0":13.02025}}; +module.exports={C:{"17":0.00664,"34":0.00332,"37":0.00332,"38":0.00332,"41":0.00332,"42":0.00332,"43":0.00664,"44":0.00664,"45":0.00332,"47":0.00996,"48":0.00664,"50":0.00664,"52":0.06972,"56":0.00996,"58":0.00332,"60":0.00996,"62":0.00332,"64":0.0332,"68":0.00332,"69":0.02656,"72":0.01992,"76":0.00332,"78":0.03652,"82":0.03984,"83":0.00332,"85":0.00996,"86":0.00996,"87":0.00664,"88":0.0166,"89":0.0498,"90":0.00996,"91":0.05976,"92":0.00996,"93":0.0332,"94":1.04912,"95":1.76624,"96":0.17264,_:"2 3 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 35 36 39 40 46 49 51 53 54 55 57 59 61 63 65 66 67 70 71 73 74 75 77 79 80 81 84 97 3.5 3.6"},D:{"11":0.00332,"19":0.00664,"24":0.00664,"37":0.00332,"38":0.00664,"39":0.00996,"47":0.01328,"49":0.01328,"50":0.00332,"56":0.00996,"57":0.01328,"58":0.00664,"59":0.00332,"62":0.00996,"63":0.01328,"64":0.04648,"65":0.0166,"66":0.00996,"67":0.00332,"69":0.00332,"70":0.00996,"71":0.00332,"72":0.0166,"73":0.00664,"74":0.00996,"75":0.00996,"76":0.0332,"77":0.00664,"78":0.02988,"79":0.04648,"80":0.04648,"81":0.02656,"83":0.00996,"84":0.01328,"85":0.00996,"86":0.04316,"87":0.05644,"88":0.0166,"89":0.06308,"90":0.05312,"91":0.06308,"92":0.12616,"93":0.10956,"94":0.20252,"95":0.50796,"96":12.88824,"97":0.00996,"98":0.00332,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 40 41 42 43 44 45 46 48 51 52 53 54 55 60 61 68 99"},F:{"28":0.00332,"63":0.00664,"66":0.00664,"77":0.00332,"78":0.00996,"79":0.01992,"80":0.0166,"81":0.33532,"82":0.52788,_:"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 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00332,"12":0.00996,"13":0.0166,"14":0.0498,"15":0.02324,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00996,"11.1":0.00332,"12.1":0.0166,"13.1":0.03652,"14.1":0.12616,"15.1":0.09628,"15.2":0.0166},B:{"12":0.02656,"13":0.02324,"14":0.0166,"15":0.04648,"16":0.01992,"17":0.00664,"18":0.05312,"83":0.00664,"84":0.01328,"85":0.00332,"89":0.01328,"90":0.00664,"91":0.00332,"92":0.02656,"93":0.00664,"94":0.02324,"95":0.10292,"96":1.54048,_:"79 80 81 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0009,"5.0-5.1":0.00448,"6.0-6.1":0.00134,"7.0-7.1":0.03268,"8.1-8.4":0.00269,"9.0-9.2":0,"9.3":0.03313,"10.0-10.2":0.00403,"10.3":0.06043,"11.0-11.2":0.01567,"11.3-11.4":0.27486,"12.0-12.1":0.0376,"12.2-12.5":0.53987,"13.0-13.1":0.0667,"13.2":0.01567,"13.3":0.12176,"13.4-13.7":0.10609,"14.0-14.4":0.78965,"14.5-14.8":0.96648,"15.0-15.1":1.2476,"15.2":0.15399},P:{"4":0.13709,"5.0-5.4":0.03183,"6.2-6.4":0.02065,"7.2-7.4":0.09491,"8.2":0.01032,"9.2":0.17927,"10.1":0.02122,"11.1-11.2":0.09491,"12.0":0.01055,"13.0":0.09491,"14.0":0.20036,"15.0":0.30581},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00102,"4.2-4.3":0.00255,"4.4":0,"4.4.3-4.4.4":0.04319},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0083,"10":0.0083,"11":0.1494,_:"6 7 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.01336},O:{"0":1.2024},H:{"0":13.72982},L:{"0":55.34432},S:{"2.5":0.24716},R:{_:"0"},M:{"0":0.10688},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js index 2e00f8b29cc2f9..90b27b0bdad521 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:{"4":0.05018,"11":0.01505,"38":0.00502,"43":0.00502,"44":0.02007,"45":0.00502,"48":0.01004,"50":0.00502,"52":0.04516,"54":0.01004,"56":0.00502,"58":0.02007,"59":0.00502,"60":0.00502,"61":0.00502,"63":0.01004,"66":0.01505,"68":0.01505,"72":0.00502,"76":0.01505,"78":0.13549,"79":0.01004,"80":0.01004,"81":0.01004,"82":0.01505,"83":0.01004,"84":0.01004,"85":0.00502,"86":0.01004,"87":0.00502,"88":0.01505,"89":0.02007,"90":0.01505,"91":0.07527,"92":0.04014,"93":0.42151,"94":1.94698,"95":0.00502,_:"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 51 53 55 57 62 64 65 67 69 70 71 73 74 75 77 96 3.5 3.6"},D:{"33":0.00502,"38":0.00502,"40":0.02007,"43":0.00502,"46":0.01004,"47":0.00502,"48":0.0552,"49":0.10538,"52":0.00502,"56":0.12545,"58":0.00502,"59":0.01004,"60":0.01004,"61":0.01505,"62":0.00502,"63":0.01004,"64":0.04516,"65":0.02007,"66":0.04516,"67":0.02007,"68":0.01004,"69":0.02007,"70":0.0552,"71":0.00502,"72":0.0552,"73":0.01004,"74":0.03011,"75":0.03011,"76":0.17061,"77":0.02007,"78":0.06022,"79":0.17563,"80":0.10036,"81":0.09534,"83":0.09534,"84":0.21577,"85":0.19068,"86":0.16058,"87":0.36631,"88":0.12545,"89":0.20574,"90":0.15054,"91":0.41649,"92":0.67743,"93":0.97851,"94":4.03949,"95":14.07549,"96":5.81084,"97":0.02007,"98":0.05018,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 50 51 53 54 55 57 99"},F:{"79":0.01505,"80":0.37133,"81":0.13047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00502},B:{"12":0.01004,"14":0.00502,"15":0.01004,"16":0.01004,"17":0.01004,"18":0.03513,"84":0.01004,"85":0.02007,"86":0.01004,"87":0.08531,"88":0.00502,"89":0.01505,"90":0.01004,"91":0.01505,"92":0.02509,"93":0.03011,"94":0.43155,"95":4.41584,"96":1.24446,_:"13 79 80 81 83"},E:{"4":0,"8":0.01004,"9":0.01004,"11":0.00502,"12":0.01505,"13":0.10538,"14":0.59212,"15":1.17421,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.13549,"10.1":0.02509,"11.1":0.08029,"12.1":0.16058,"13.1":1.81652,"14.1":3.40722,"15.1":1.3097},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0054,"6.0-6.1":0.01081,"7.0-7.1":0.01081,"8.1-8.4":0.01351,"9.0-9.2":0.01621,"9.3":0.10539,"10.0-10.2":0.02162,"10.3":0.13241,"11.0-11.2":0.05945,"11.3-11.4":0.07026,"12.0-12.1":0.07296,"12.2-12.5":0.68097,"13.0-13.1":0.05134,"13.2":0.02973,"13.3":0.15403,"13.4-13.7":0.49722,"14.0-14.4":1.62677,"14.5-14.8":14.20857,"15.0-15.1":9.24449},P:{"4":0.03257,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.03257,"12.0":0.02171,"13.0":0.07599,"14.0":0.11942,"15.0":1.68268},I:{"0":0,"3":0,"4":0.01009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00168,"4.2-4.3":0.02186,"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.03336,"9":0.1779,"11":0.56151,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":20.5389},S:{"2.5":0},R:{_:"0"},M:{"0":0.44331},Q:{"10.4":0.00996},O:{"0":0.15939},H:{"0":0.22164}}; +module.exports={C:{"4":0.04816,"11":0.01445,"38":0.00482,"43":0.00482,"44":0.02408,"45":0.00963,"48":0.00963,"52":0.04334,"55":0.08187,"56":0.05779,"59":0.00482,"60":0.00482,"63":0.00482,"68":0.00482,"72":0.0289,"76":0.00482,"78":0.1204,"79":0.00963,"80":0.00963,"81":0.00963,"82":0.00963,"83":0.00482,"84":0.00963,"85":0.00482,"86":0.00963,"87":0.00963,"88":0.01445,"89":0.01926,"90":0.01445,"91":0.07706,"92":0.01926,"93":0.03371,"94":0.8717,"95":1.51222,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 57 58 61 62 64 65 66 67 69 70 71 73 74 75 77 96 97 3.5 3.6"},D:{"33":0.00963,"35":0.00963,"38":0.00482,"40":0.01926,"43":0.00482,"46":0.00963,"47":0.00482,"48":0.06261,"49":0.07706,"52":0.00482,"56":0.10595,"58":0.00482,"59":0.00963,"60":0.00482,"63":0.00963,"64":0.04816,"65":0.01445,"66":0.04816,"67":0.01926,"68":0.00963,"69":0.01926,"70":0.05779,"71":0.00482,"72":0.05779,"73":0.00963,"74":0.02408,"75":0.0289,"76":0.20709,"77":0.01445,"78":0.01926,"79":0.22154,"80":0.09632,"81":0.0915,"83":0.1204,"84":0.16374,"85":0.16374,"86":0.13003,"87":0.26006,"88":0.08187,"89":0.0915,"90":0.11558,"91":0.27933,"92":0.47197,"93":0.54421,"94":1.97938,"95":1.24734,"96":20.53542,"97":0.02408,"98":0.02408,"99":0.04334,_:"4 5 6 7 8 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 41 42 44 45 50 51 53 54 55 57 61 62"},F:{"79":0.00482,"80":0.01445,"81":0.26006,"82":0.26488,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"8":0.00963,"9":0.00963,"11":0.00482,"12":0.01445,"13":0.0915,"14":0.50568,"15":0.56829,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.05779,"10.1":0.02408,"11.1":0.07706,"12.1":0.1493,"13.1":1.70486,"14.1":2.38874,"15.1":2.47061,"15.2":0.30822},B:{"12":0.00963,"15":0.00963,"16":0.01445,"17":0.00963,"18":0.0289,"84":0.00963,"85":0.01445,"86":0.00963,"87":0.04334,"89":0.00482,"90":0.00963,"91":0.00963,"92":0.01445,"93":0.00963,"94":0.04334,"95":0.32267,"96":5.31686,_:"13 14 79 80 81 83 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01138,"7.0-7.1":0.01138,"8.1-8.4":0.01422,"9.0-9.2":0.01422,"9.3":0.10524,"10.0-10.2":0.01707,"10.3":0.13369,"11.0-11.2":0.0512,"11.3-11.4":0.06258,"12.0-12.1":0.06827,"12.2-12.5":0.65137,"13.0-13.1":0.04835,"13.2":0.0256,"13.3":0.13938,"13.4-13.7":0.44088,"14.0-14.4":1.45634,"14.5-14.8":8.94566,"15.0-15.1":15.08674,"15.2":1.14061},P:{"4":0.04332,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.03249,"12.0":0.01083,"13.0":0.06497,"14.0":0.09746,"15.0":0.22741},I:{"0":0,"3":0,"4":0.01226,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00283,"4.2-4.3":0.02451,"4.4":0,"4.4.3-4.4.4":0.033},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00534,"8":0.01603,"9":0.16028,"11":0.50222,_:"6 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.15037},H:{"0":0.22581},L:{"0":21.4055},S:{"2.5":0},R:{_:"0"},M:{"0":0.45628},Q:{"10.4":0.01037}}; 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 eaf448af7270cc..5bd6375a288886 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:{"43":0.00506,"45":0.01518,"50":0.01012,"52":0.1164,"55":0.01012,"57":0.01012,"60":0.00506,"61":0.01012,"62":0.00506,"63":0.00506,"66":0.03543,"68":0.01518,"69":0.01012,"73":0.04049,"78":0.07085,"83":0.01518,"84":0.01518,"86":0.01012,"88":0.02531,"89":0.02531,"90":0.02024,"91":0.06073,"92":0.03037,"93":0.36439,"94":2.07501,"95":0.01012,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 47 48 49 51 53 54 56 58 59 64 65 67 70 71 72 74 75 76 77 79 80 81 82 85 87 96 3.5 3.6"},D:{"27":0.00506,"36":0.02531,"38":0.04555,"43":0.01518,"46":0.00506,"47":0.01012,"48":0.01518,"49":0.14171,"53":0.00506,"56":0.00506,"58":0.00506,"60":0.00506,"62":0.03543,"63":0.01518,"65":0.01518,"66":0.00506,"67":0.00506,"68":0.00506,"69":0.02024,"70":0.01518,"71":0.07592,"72":0.01518,"73":0.02024,"74":0.02024,"75":0.03037,"76":0.02531,"77":0.01012,"78":0.02024,"79":0.05061,"80":0.18726,"81":0.03037,"83":0.02024,"84":0.02024,"85":0.04555,"86":1.15897,"87":0.14171,"88":0.05567,"89":0.06579,"90":0.08604,"91":0.22775,"92":0.28342,"93":0.30366,"94":1.54361,"95":20.60333,"96":13.02195,"97":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 28 29 30 31 32 33 34 35 37 39 40 41 42 44 45 50 51 52 54 55 57 59 61 64 98 99"},F:{"78":0.00506,"79":0.01518,"80":1.92318,"81":0.95147,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01012,"15":0.01012,"18":0.01518,"80":0.01012,"89":0.00506,"90":0.01012,"92":0.01518,"93":0.01518,"94":0.07085,"95":1.80678,"96":0.73385,_:"12 13 16 17 79 81 83 84 85 86 87 88 91"},E:{"4":0,"12":0.00506,"13":0.02024,"14":0.10122,"15":0.20244,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01518,"11.1":0.03037,"12.1":0.1164,"13.1":0.12146,"14.1":0.415,"15.1":0.24799},G:{"8":0,"3.2":0.00646,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01292,"6.0-6.1":0.00194,"7.0-7.1":0.00969,"8.1-8.4":0,"9.0-9.2":0.00065,"9.3":0.04005,"10.0-10.2":0.00129,"10.3":0.031,"11.0-11.2":0.00517,"11.3-11.4":0.01033,"12.0-12.1":0.01356,"12.2-12.5":0.48054,"13.0-13.1":0.03423,"13.2":0.00258,"13.3":0.04844,"13.4-13.7":0.1253,"14.0-14.4":0.41208,"14.5-14.8":2.99177,"15.0-15.1":2.2322},P:{"4":0.04194,"5.0-5.4":0.01045,"6.2-6.4":0.0404,"7.2-7.4":0.14678,"8.2":0.02121,"9.2":0.02097,"10.1":0.02121,"11.1-11.2":0.12581,"12.0":0.08388,"13.0":0.08388,"14.0":0.12581,"15.0":1.09039},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.00693,"4.4":0,"4.4.3-4.4.4":0.06932},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00506,"11":0.16701,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":42.24993},S:{"2.5":0},R:{_:"0"},M:{"0":0.21732},Q:{"10.4":0},O:{"0":0.05433},H:{"0":0.15898}}; +module.exports={C:{"43":0.0049,"50":0.00981,"52":0.09806,"55":0.0049,"56":0.0049,"57":0.00981,"60":0.0049,"61":0.00981,"62":0.0049,"66":0.01961,"68":0.01471,"69":0.00981,"72":0.0049,"73":0.04413,"78":0.04413,"83":0.01471,"84":0.01471,"86":0.01471,"88":0.01961,"89":0.01961,"90":0.02942,"91":0.07845,"92":0.01961,"93":0.01961,"94":0.70603,"95":1.4758,"96":0.01961,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 58 59 63 64 65 67 70 71 74 75 76 77 79 80 81 82 85 87 97 3.5 3.6"},D:{"26":0.0049,"36":0.01471,"38":0.04903,"43":0.0049,"47":0.01961,"48":0.00981,"49":0.13238,"60":0.0049,"62":0.02452,"63":0.01961,"65":0.00981,"66":0.00981,"67":0.00981,"68":0.00981,"69":0.00981,"70":0.01471,"71":0.09316,"72":0.00981,"73":0.01471,"74":0.01471,"75":0.00981,"76":0.02452,"77":0.00981,"78":0.01471,"79":0.02942,"80":0.15199,"81":0.02942,"83":0.01961,"84":0.02452,"85":0.02452,"86":1.13259,"87":0.06864,"88":0.04413,"89":0.06374,"90":0.06374,"91":0.17161,"92":0.1667,"93":0.1667,"94":0.56385,"95":0.60307,"96":31.71751,"97":0.00981,_:"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 37 39 40 41 42 44 45 46 50 51 52 53 54 55 56 57 58 59 61 64 98 99"},F:{"79":0.00981,"80":0.02452,"81":1.90727,"82":1.19143,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"12":0.0049,"13":0.01961,"14":0.06374,"15":0.13238,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01961,"11.1":0.00981,"12.1":0.02942,"13.1":0.12258,"14.1":0.3285,"15.1":0.41676,"15.2":0.04413},B:{"14":0.00981,"17":0.00981,"18":0.00981,"80":0.0049,"92":0.01471,"93":0.01471,"94":0.00981,"95":0.05393,"96":2.68194,_:"12 13 15 16 79 81 83 84 85 86 87 88 89 90 91"},G:{"8":0,"3.2":0.00212,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01693,"6.0-6.1":0,"7.0-7.1":0.00776,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03316,"10.0-10.2":0.00141,"10.3":0.02893,"11.0-11.2":0.00423,"11.3-11.4":0.01341,"12.0-12.1":0.01693,"12.2-12.5":0.46284,"13.0-13.1":0.03598,"13.2":0.00212,"13.3":0.03528,"13.4-13.7":0.12488,"14.0-14.4":0.3937,"14.5-14.8":2.17592,"15.0-15.1":3.45014,"15.2":0.24341},P:{"4":0.04187,"5.0-5.4":0.01067,"6.2-6.4":0.02065,"7.2-7.4":0.16749,"8.2":0.01032,"9.2":0.0314,"10.1":0.01047,"11.1-11.2":0.10468,"12.0":0.07328,"13.0":0.10468,"14.0":0.10468,"15.0":0.25123},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.0057,"4.4":0,"4.4.3-4.4.4":0.04941},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0049,"11":0.17651,_:"6 7 8 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.04078},H:{"0":0.12546},L:{"0":44.40866},S:{"2.5":0},R:{_:"0"},M:{"0":0.22937},Q:{"10.4":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 d05e58041e0949..2b51042bcc5ef1 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:{"52":0.14908,"55":0.05963,"57":0.00745,"68":0.00373,"72":0.28325,"73":0.02609,"78":0.02609,"79":1.61006,"80":0.00745,"81":0.00745,"82":0.01491,"83":0.00745,"85":0.00373,"88":0.00745,"89":0.00373,"91":0.02609,"92":0.00745,"93":1.64361,"94":0.73422,"95":0.00745,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 64 65 66 67 69 70 71 74 75 76 77 84 86 87 90 96 3.5 3.6"},D:{"11":0.00373,"35":0.00373,"38":0.00373,"39":0.00745,"47":0.00373,"49":0.14163,"53":0.00373,"56":0.01491,"61":0.02609,"63":0.00745,"64":0.00745,"66":0.03354,"67":0.01491,"68":0.00745,"69":0.00373,"70":0.00745,"71":0.01864,"72":0.01118,"73":0.00745,"74":0.01864,"75":0.00373,"76":0.00745,"78":0.01491,"79":0.08199,"80":0.02609,"81":0.01491,"83":0.03354,"84":0.08945,"85":0.05218,"86":0.13045,"87":0.20126,"88":0.03354,"89":0.05591,"90":0.03354,"91":0.05963,"92":0.27207,"93":0.13417,"94":0.67459,"95":11.94131,"96":8.61682,"97":0.02236,"98":0.00373,_:"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 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 60 62 65 77 99"},F:{"28":0.02982,"36":0.00373,"43":0.00745,"48":0.00373,"50":0.00745,"51":0.00745,"53":0.07081,"54":0.01491,"55":0.01118,"56":0.00745,"57":0.03727,"58":0.00373,"60":0.01491,"62":0.02236,"63":0.00745,"64":0.01864,"65":0.01491,"66":0.01118,"67":0.00745,"68":0.01491,"69":0.00745,"70":0.01491,"71":0.01491,"72":0.03354,"73":0.05963,"74":0.02236,"75":0.02236,"76":0.01864,"77":0.02982,"78":0.03354,"79":0.02982,"80":0.0969,"81":0.01491,_:"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 44 45 46 47 49 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00373,"15":0.00373,"16":0.00373,"17":0.02236,"18":0.05591,"84":0.01864,"85":0.00745,"86":0.01118,"87":0.00373,"89":0.01491,"90":0.01118,"91":0.00745,"92":0.00745,"93":0.00745,"94":0.01864,"95":0.69322,"96":0.32052,_:"13 14 79 80 81 83 88"},E:{"4":0,"11":0.00745,"12":0.00373,"13":0.01118,"14":0.07081,"15":0.08199,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 11.1","5.1":1.215,"10.1":0.00373,"12.1":0.01864,"13.1":0.03354,"14.1":0.1938,"15.1":0.15653},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00044,"5.0-5.1":0.00266,"6.0-6.1":0,"7.0-7.1":0.03417,"8.1-8.4":0.00044,"9.0-9.2":0.00488,"9.3":0.05192,"10.0-10.2":0.00532,"10.3":0.08031,"11.0-11.2":0.02618,"11.3-11.4":0.0142,"12.0-12.1":0.01509,"12.2-12.5":0.47878,"13.0-13.1":0.03195,"13.2":0.00843,"13.3":0.03905,"13.4-13.7":0.13179,"14.0-14.4":0.45082,"14.5-14.8":1.55747,"15.0-15.1":1.50111},P:{"4":1.03092,"5.0-5.4":0.06064,"6.2-6.4":0.17182,"7.2-7.4":0.566,"8.2":0.02021,"9.2":0.17182,"10.1":0.05054,"11.1-11.2":0.39418,"12.0":0.13139,"13.0":0.5761,"14.0":0.54578,"15.0":2.29431},I:{"0":0,"3":0,"4":0.001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0016,"4.2-4.3":0.0042,"4.4":0,"4.4.3-4.4.4":0.02457},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01153,"9":0.0173,"10":0.01153,"11":0.31709,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":49.42215},S:{"2.5":0},R:{_:"0"},M:{"0":0.07528},Q:{"10.4":0},O:{"0":3.75125},H:{"0":0.29694}}; +module.exports={C:{"52":0.05474,"55":0.02189,"57":0.0073,"66":0.00365,"72":0.11677,"73":0.01095,"78":0.02554,"79":0.26638,"80":0.02189,"81":0.00365,"82":0.00365,"83":0.00365,"88":0.14231,"89":0.00365,"91":0.03284,"92":0.0073,"93":0.24813,"94":0.29557,"95":0.59479,"96":0.0073,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 64 65 67 68 69 70 71 74 75 76 77 84 85 86 87 90 97 3.5 3.6"},D:{"38":0.0146,"39":0.0073,"49":0.10582,"56":0.01825,"61":0.01095,"64":0.01095,"65":0.00365,"66":0.03284,"67":0.0073,"68":0.0146,"70":0.0073,"71":0.01825,"72":0.02554,"73":0.0073,"74":0.0146,"75":0.02189,"76":0.0073,"77":0.0073,"78":0.0073,"79":0.07663,"80":0.04014,"81":0.01825,"83":0.03284,"84":0.06933,"85":0.02919,"86":0.11677,"87":0.11677,"88":0.03284,"89":0.07663,"90":0.02919,"91":0.04744,"92":0.21894,"93":0.06203,"94":0.28462,"95":0.33571,"96":20.84309,"97":0.01095,"99":0.01095,_:"4 5 6 7 8 9 10 11 12 13 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 57 58 59 60 62 63 69 98"},F:{"28":0.04379,"36":0.00365,"42":0.00365,"45":0.00365,"51":0.0073,"53":0.05838,"54":0.01095,"55":0.01095,"56":0.0146,"57":0.04379,"58":0.01095,"60":0.01825,"62":0.01825,"63":0.0073,"64":0.02189,"65":0.01095,"66":0.0146,"67":0.0073,"68":0.01095,"69":0.0073,"70":0.0146,"71":0.01825,"72":0.01095,"73":0.01825,"74":0.03284,"75":0.01825,"76":0.02189,"77":0.03284,"78":0.02189,"79":0.03649,"80":0.06568,"81":0.03284,"82":0.02189,_:"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 44 46 47 48 49 50 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01095,"14":0.05109,"15":0.03284,_:"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.22242,"12.1":0.0146,"13.1":0.05109,"14.1":0.13501,"15.1":0.21164,"15.2":0.06568},B:{"12":0.00365,"14":0.00365,"15":0.00365,"16":0.0073,"17":0.02189,"18":0.05474,"84":0.02189,"85":0.0073,"89":0.01095,"90":0.0073,"91":0.0073,"92":0.0073,"93":0.0073,"94":0.0073,"95":0.01825,"96":1.29904,_:"13 79 80 81 83 86 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00046,"5.0-5.1":0.00367,"6.0-6.1":0,"7.0-7.1":0.03394,"8.1-8.4":0.00138,"9.0-9.2":0.00688,"9.3":0.04127,"10.0-10.2":0.00367,"10.3":0.08759,"11.0-11.2":0.02155,"11.3-11.4":0.01238,"12.0-12.1":0.01468,"12.2-12.5":0.50126,"13.0-13.1":0.04861,"13.2":0.00734,"13.3":0.0344,"13.4-13.7":0.11924,"14.0-14.4":0.44989,"14.5-14.8":1.12359,"15.0-15.1":1.80279,"15.2":0.27012},P:{"4":1.11361,"5.0-5.4":0.05062,"6.2-6.4":0.1721,"7.2-7.4":0.55681,"8.2":0.03037,"9.2":0.1721,"10.1":0.05062,"11.1-11.2":0.44545,"12.0":0.14173,"13.0":0.48594,"14.0":0.52644,"15.0":0.88077},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0.00584,"4.4":0,"4.4.3-4.4.4":0.03015},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00497,"9":0.0149,"10":0.00993,"11":0.26811,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":3.94335},H:{"0":0.37273},L:{"0":51.07119},S:{"2.5":0},R:{_:"0"},M:{"0":0.06985},Q:{"10.4":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 9eaad1567f7f5d..8bcc6f73d99f46 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:{"39":0.15115,"70":0.03779,"90":0.56682,"91":0.17005,"92":0.01889,"93":0.96359,"94":11.58202,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 95 96 3.5 3.6"},D:{"44":0.04724,"67":0.36843,"81":0.02834,"86":0.04724,"87":0.00945,"88":0.03779,"92":0.04724,"93":0.18894,"94":0.28341,"95":33.24399,"96":27.20736,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 89 90 91 97 98 99"},F:{"81":0.02834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.02834,"18":1.33203,"93":0.01889,"95":8.91797,"96":4.09055,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 94"},E:{"4":0,"9":0.00945,"14":0.04724,"15":0.70853,_:"0 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00945,"11.1":0.08502,"12.1":0.99194,"13.1":0.29286,"14.1":0.4629,"15.1":1.52097},G:{"8":0,"3.2":0,"4.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.01726,"10.0-10.2":0,"10.3":0.01726,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.12398,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.99764,"14.5-14.8":0.69973,"15.0-15.1":0.59651},P:{"4":0.41931,"5.0-5.4":0.12272,"6.2-6.4":0.03068,"7.2-7.4":0.36817,"8.2":0.05114,"9.2":0.22499,"10.1":0.02045,"11.1-11.2":0.43976,"12.0":0.1125,"13.0":0.13295,"14.0":0.2659,"15.0":0.76369},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.81244,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":1.31697},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.04345}}; +module.exports={C:{"39":0.1912,"52":0.00956,"55":0.00956,"57":0.00956,"70":0.08604,"78":0.01912,"90":0.49712,"91":0.26768,"92":0.0478,"94":3.76664,"95":7.76272,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 53 54 56 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 93 96 97 3.5 3.6"},D:{"67":0.39196,"81":0.0478,"86":0.05736,"87":0.00956,"90":0.01912,"92":0.01912,"93":0.20076,"94":0.03824,"95":0.51624,"96":55.17076,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 83 84 85 88 89 91 97 98 99"},F:{"82":0.01912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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},E:{"4":0,"14":0.08604,"15":0.34416,_:"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.03824,"11.1":0.08604,"12.1":0.85084,"13.1":0.31548,"14.1":0.21032,"15.1":2.0554,"15.2":0.40152},B:{"17":0.03824,"18":0.56404,"86":0.06692,"95":0.13384,"96":19.38768,_:"12 13 14 15 16 79 80 81 83 84 85 87 88 89 90 91 92 93 94"},G:{"8":0,"3.2":0,"4.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.0065,"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.34124,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.09652,"14.5-14.8":0.38009,"15.0-15.1":0.50878,"15.2":0.4251},P:{"4":0.49294,"5.0-5.4":0.08216,"6.2-6.4":0.04108,"7.2-7.4":0.27728,"8.2":0.04108,"9.2":0.24647,"10.1":0.02054,"11.1-11.2":0.39025,"12.0":0.1027,"13.0":0.13351,"14.0":0.29782,"15.0":0.24182},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.69212,_:"6 7 8 9 10 5.5"},N:{"10":0.0189,"11":0.08504},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.02416},L:{"0":1.42284},S:{"2.5":0},R:{_:"0"},M:{"0":0.00836},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js index 63e7ab9c250b04..529a907f96bc85 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:{"47":0.01733,"50":0.00866,"52":0.00866,"53":0.00866,"54":0.00866,"55":0.00433,"56":0.013,"59":0.00433,"60":0.00866,"67":0.00866,"74":0.00433,"78":0.00866,"80":0.00866,"86":0.07798,"91":0.00433,"93":0.30324,"94":1.68515,"95":0.02166,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 57 58 61 62 63 64 65 66 68 69 70 71 72 73 75 76 77 79 81 82 83 84 85 87 88 89 90 92 96 3.5 3.6"},D:{"39":0.00866,"41":0.00433,"43":0.00866,"46":0.00866,"49":0.2166,"57":0.00866,"60":0.04765,"61":0.18628,"63":0.00433,"65":0.00866,"66":0.013,"70":0.00433,"73":0.00433,"74":0.00866,"75":0.04765,"76":0.05198,"77":0.00866,"78":0.00866,"79":0.04332,"80":0.013,"81":0.02599,"83":0.00433,"84":0.00866,"85":0.00433,"86":0.05198,"87":0.03032,"88":0.04332,"89":0.00433,"90":0.01733,"91":0.06498,"92":0.4202,"93":0.11263,"94":2.19632,"95":14.54686,"96":7.28209,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 42 44 45 47 48 50 51 52 53 54 55 56 58 59 62 64 67 68 69 71 72 97 98 99"},F:{"28":0.013,"54":0.00433,"65":0.00433,"80":0.18194,"81":0.07798,_:"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 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.013,"13":0.00433,"14":0.00866,"15":0.00433,"16":0.02599,"17":0.00433,"18":0.03466,"83":0.00866,"84":0.00866,"86":0.00866,"87":0.00433,"91":0.02166,"92":0.02166,"93":0.01733,"94":0.18628,"95":4.6439,"96":1.68082,_:"79 80 81 85 88 89 90"},E:{"4":0,"12":0.01733,"13":0.013,"14":0.19061,"15":0.26425,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00433,"11.1":0.013,"12.1":0.03466,"13.1":0.17761,"14.1":1.66782,"15.1":0.6628},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00073,"6.0-6.1":0,"7.0-7.1":0.00582,"8.1-8.4":0.00073,"9.0-9.2":0,"9.3":0.15919,"10.0-10.2":0,"10.3":0.0567,"11.0-11.2":0.02617,"11.3-11.4":0.00509,"12.0-12.1":0.01381,"12.2-12.5":0.54518,"13.0-13.1":0.008,"13.2":0.00145,"13.3":0.00363,"13.4-13.7":0.12866,"14.0-14.4":0.28713,"14.5-14.8":3.02759,"15.0-15.1":2.99778},P:{"4":0.06859,"5.0-5.4":0.02107,"6.2-6.4":0.03056,"7.2-7.4":0.22864,"8.2":0.01026,"9.2":0.04573,"10.1":0.04157,"11.1-11.2":0.12575,"12.0":0.02286,"13.0":0.13718,"14.0":0.21721,"15.0":6.45903},I:{"0":0,"3":0,"4":0.05686,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04265,"4.2-4.3":0.04265,"4.4":0,"4.4.3-4.4.4":0.78189},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.74077,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":44.11859},S:{"2.5":0},R:{_:"0"},M:{"0":0.18708},Q:{"10.4":0},O:{"0":0.05669},H:{"0":0.10734}}; +module.exports={C:{"50":0.00429,"52":0.01288,"53":0.00859,"54":0.00429,"61":0.00859,"62":0.00429,"63":0.00429,"64":0.00859,"68":0.00859,"70":0.00429,"74":0.00859,"78":0.00859,"80":0.00859,"82":0.00859,"83":0.00429,"86":0.00429,"94":0.80727,"95":1.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 47 48 49 51 55 56 57 58 59 60 65 66 67 69 71 72 73 75 76 77 79 81 84 85 87 88 89 90 91 92 93 96 97 3.5 3.6"},D:{"23":0.00859,"49":0.04723,"60":0.00859,"61":0.0687,"63":0.00429,"65":0.03006,"67":0.01718,"69":0.01288,"70":0.01718,"71":0.00859,"72":0.00859,"73":0.02147,"74":0.00429,"75":0.01288,"76":0.03435,"78":0.01288,"79":0.13741,"80":0.02147,"81":0.09876,"83":0.06012,"84":0.01288,"85":0.00859,"86":0.00429,"87":0.01288,"88":0.01718,"89":0.02147,"90":0.00859,"91":1.01768,"92":0.18464,"93":0.11164,"94":0.60545,"95":1.49861,"96":20.85596,"97":0.00429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 62 64 66 68 77 98 99"},F:{"56":0.00429,"81":0.40793,"82":0.2834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.03435,"12":0.00859,"13":0.00859,"14":0.26193,"15":0.12882,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.01288,"12.1":0.01288,"13.1":0.08159,"14.1":0.51528,"15.1":2.02677,"15.2":0.33923},B:{"13":0.00429,"16":0.00859,"18":0.02147,"84":0.00859,"86":0.00859,"88":0.00859,"89":0.00859,"90":0.00429,"92":0.00859,"94":0.02147,"95":0.04723,"96":5.41903,_:"12 14 15 17 79 80 81 83 85 87 91 93"},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.0064,"7.0-7.1":0.03073,"8.1-8.4":0.00384,"9.0-9.2":0,"9.3":0.19335,"10.0-10.2":0,"10.3":0.04482,"11.0-11.2":0.04482,"11.3-11.4":0.08707,"12.0-12.1":0.01793,"12.2-12.5":1.23312,"13.0-13.1":0.00384,"13.2":0,"13.3":0.05506,"13.4-13.7":0.12037,"14.0-14.4":0.45458,"14.5-14.8":1.89001,"15.0-15.1":8.14139,"15.2":0.46226},P:{"4":0.12824,"5.0-5.4":0.02061,"6.2-6.4":0.03062,"7.2-7.4":0.12824,"8.2":0.02052,"9.2":0.17488,"10.1":0.03091,"11.1-11.2":0.24483,"12.0":0.07357,"13.0":0.04663,"14.0":0.08161,"15.0":0.94433},I:{"0":0,"3":0,"4":0.00346,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00346,"4.4":0,"4.4.3-4.4.4":0.18139},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00429,"11":0.2834,_:"6 7 8 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.05706},H:{"0":0.11344},L:{"0":43.87505},S:{"2.5":0},R:{_:"0"},M:{"0":0.08559},Q:{"10.4":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 77967c0bcbacf6..c58448f25f9710 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:{"27":0.12713,"28":0.01816,"40":0.01211,"43":0.01211,"45":0.01816,"47":0.01211,"48":0.01816,"52":0.52064,"56":0.01211,"57":0.00605,"58":0.00605,"60":0.03632,"62":0.01211,"63":0.00605,"64":0.01211,"65":0.01816,"66":0.02422,"67":0.01211,"68":0.03632,"69":0.01816,"70":0.01816,"71":0.01816,"72":0.04843,"74":0.00605,"78":0.11503,"81":0.01211,"83":0.02422,"84":0.01211,"85":0.01816,"86":0.00605,"87":0.01211,"88":0.04843,"89":0.04238,"90":0.02422,"91":0.0787,"92":0.03632,"93":0.49037,"94":3.02095,"95":0.02422,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 49 50 51 53 54 55 59 61 73 75 76 77 79 80 82 96 3.5 3.6"},D:{"5":0.00605,"37":0.00605,"42":0.01211,"46":0.00605,"47":0.01211,"48":0.01211,"49":0.55697,"50":0.00605,"51":0.00605,"53":0.00605,"55":0.00605,"56":0.00605,"57":0.00605,"58":0.03027,"59":0.00605,"60":0.00605,"62":0.00605,"63":0.03632,"64":0.02422,"65":0.03632,"66":0.01816,"67":0.04238,"68":0.01211,"69":0.05449,"70":0.03027,"71":0.04843,"72":0.03027,"73":0.01816,"74":0.03632,"75":0.06659,"76":0.04238,"77":0.03027,"78":0.03027,"79":0.08476,"80":0.05449,"81":0.04238,"83":0.0787,"84":0.07265,"85":0.09081,"86":0.11503,"87":0.5267,"88":0.15135,"89":0.12108,"90":0.1574,"91":0.29665,"92":0.7507,"93":0.55697,"94":1.45901,"95":22.12132,"96":14.48722,"97":0.01211,_:"4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 52 54 61 98 99"},F:{"36":0.01211,"57":0.01211,"68":0.01211,"77":0.01211,"78":0.01816,"79":0.05449,"80":1.64063,"81":0.65989,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01211,"13":0.00605,"18":0.01816,"79":0.00605,"83":0.00605,"84":0.00605,"89":0.01211,"92":0.01211,"93":0.00605,"94":0.02422,"95":1.32583,"96":0.5267,_:"14 15 16 17 80 81 85 86 87 88 90 91"},E:{"4":0,"13":0.00605,"14":0.04238,"15":0.06659,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.03632,"11.1":0.01211,"12.1":0.01211,"13.1":0.04843,"14.1":0.1574,"15.1":0.09686},G:{"8":0.00023,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00443,"6.0-6.1":0.00327,"7.0-7.1":0.02403,"8.1-8.4":0.0021,"9.0-9.2":0.0007,"9.3":0.10008,"10.0-10.2":0.00303,"10.3":0.07488,"11.0-11.2":0.00607,"11.3-11.4":0.00607,"12.0-12.1":0.00933,"12.2-12.5":0.26687,"13.0-13.1":0.01306,"13.2":0.00443,"13.3":0.03383,"13.4-13.7":0.05785,"14.0-14.4":0.17659,"14.5-14.8":0.85847,"15.0-15.1":0.68677},P:{"4":0.11074,"5.0-5.4":0.01032,"6.2-6.4":0.17182,"7.2-7.4":0.12182,"8.2":0.02021,"9.2":0.01107,"10.1":0.05054,"11.1-11.2":0.0443,"12.0":0.02215,"13.0":0.06645,"14.0":0.11074,"15.0":0.83057},I:{"0":0,"3":0,"4":0.00077,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0081,"4.2-4.3":0.01281,"4.4":0,"4.4.3-4.4.4":0.07303},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01336,"9":0.01336,"10":0.00668,"11":0.16033,_:"6 7 5.5"},J:{"7":0,"10":0.02368},N:{"10":0.02658,"11":0.22582},L:{"0":42.2996},S:{"2.5":0.00789},R:{_:"0"},M:{"0":0.14206},Q:{"10.4":0},O:{"0":0.05919},H:{"0":0.46698}}; +module.exports={C:{"8":0.00602,"26":0.00602,"27":0.15647,"40":0.01805,"43":0.01204,"45":0.00602,"47":0.00602,"48":0.01805,"49":0.00602,"52":0.48144,"56":0.00602,"58":0.01204,"60":0.02407,"62":0.00602,"63":0.00602,"64":0.01204,"65":0.02407,"66":0.01805,"67":0.00602,"68":0.02407,"69":0.01204,"70":0.01204,"71":0.01204,"72":0.04814,"74":0.00602,"77":0.00602,"78":0.10231,"80":0.00602,"81":0.00602,"83":0.03009,"84":0.01204,"85":0.01204,"86":0.00602,"87":0.01204,"88":0.03009,"89":0.03009,"90":0.01805,"91":0.08425,"92":0.02407,"93":0.03611,"94":1.19156,"95":2.13037,"96":0.01805,_:"2 3 4 5 6 7 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 36 37 38 39 41 42 44 46 50 51 53 54 55 57 59 61 73 75 76 79 82 97 3.5 3.6"},D:{"34":0.00602,"42":0.01204,"47":0.01204,"48":0.01204,"49":0.55967,"50":0.00602,"51":0.01204,"53":0.01204,"56":0.01204,"58":0.02407,"59":0.00602,"61":0.01805,"62":0.00602,"63":0.03009,"64":0.01805,"65":0.01805,"66":0.01204,"67":0.04213,"68":0.00602,"69":0.04814,"70":0.02407,"71":0.03611,"72":0.01805,"73":0.01204,"74":0.0662,"75":0.06018,"76":0.04814,"77":0.02407,"78":0.02407,"79":0.0662,"80":0.04213,"81":0.07222,"83":0.09629,"84":0.04814,"85":0.0662,"86":0.09629,"87":0.40321,"88":0.1324,"89":0.09629,"90":0.13841,"91":0.29488,"92":0.63791,"93":0.33099,"94":0.85456,"95":0.75827,"96":34.26649,"97":0.01805,"98":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 35 36 37 38 39 40 41 43 44 45 46 52 54 55 57 60 99"},F:{"36":0.00602,"57":0.01204,"68":0.01204,"78":0.01204,"79":0.02407,"80":0.01805,"81":1.17351,"82":1.18555,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01204,"14":0.03611,"15":0.02407,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06018,"11.1":0.01204,"12.1":0.01204,"13.1":0.03009,"14.1":0.10231,"15.1":0.12036,"15.2":0.01204},B:{"12":0.00602,"18":0.01805,"85":0.00602,"92":0.01204,"94":0.00602,"95":0.03009,"96":1.8054,_:"13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93"},G:{"8":0.00023,"3.2":0.00046,"4.0-4.1":0,"4.2-4.3":0.00046,"5.0-5.1":0.00343,"6.0-6.1":0.0032,"7.0-7.1":0.01852,"8.1-8.4":0.00137,"9.0-9.2":0.00091,"9.3":0.10746,"10.0-10.2":0.00206,"10.3":0.0862,"11.0-11.2":0.00846,"11.3-11.4":0.00686,"12.0-12.1":0.00983,"12.2-12.5":0.2611,"13.0-13.1":0.00983,"13.2":0.00251,"13.3":0.02812,"13.4-13.7":0.05304,"14.0-14.4":0.16668,"14.5-14.8":0.61389,"15.0-15.1":0.8272,"15.2":0.07385},P:{"4":0.09732,"5.0-5.4":0.02078,"6.2-6.4":0.03117,"7.2-7.4":0.11894,"8.2":0.03037,"9.2":0.01081,"10.1":0.05062,"11.1-11.2":0.04325,"12.0":0.02163,"13.0":0.06488,"14.0":0.07569,"15.0":0.21626},I:{"0":0,"3":0,"4":0.00027,"2.1":0,"2.2":0,"2.3":0.00005,"4.1":0.00301,"4.2-4.3":0.00548,"4.4":0,"4.4.3-4.4.4":0.03101},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0065,"9":0.013,"11":0.14299,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.02389},O:{"0":0.0876},H:{"0":0.47501},L:{"0":45.65139},S:{"2.5":0.00796},R:{_:"0"},M:{"0":0.1553},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js index cd1e8d405de763..501a94404027f4 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.06898,"93":0.20163,"94":0.93916,"95":0.01061,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 3.5 3.6"},D:{"49":0.03184,"63":0.02122,"71":0.01061,"74":0.01592,"79":0.10612,"80":0.01061,"81":0.01592,"87":0.03184,"89":0.01061,"90":0.07959,"91":0.21224,"92":0.22816,"93":0.27061,"94":2.36117,"95":14.92578,"96":8.85041,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 72 73 75 76 77 78 83 84 85 86 88 97 98 99"},F:{"78":0.09551,"79":0.02653,"80":0.33958,"81":0.29714,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00531,"15":0.0849,"18":0.46693,"86":0.00531,"89":0.01592,"91":0.04245,"92":0.03714,"93":0.03184,"94":0.36081,"95":6.78637,"96":2.19138,_:"12 14 16 17 79 80 81 83 84 85 87 88 90"},E:{"4":0,"8":0.00531,"13":0.02653,"14":0.3502,"15":5.18396,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02122,"11.1":0.19632,"12.1":0.01061,"13.1":0.46693,"14.1":4.40929,"15.1":1.21507},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00166,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04977,"10.0-10.2":0,"10.3":0.03982,"11.0-11.2":0.00166,"11.3-11.4":0.06471,"12.0-12.1":0.07466,"12.2-12.5":0.31358,"13.0-13.1":0.00664,"13.2":0.0083,"13.3":0.05475,"13.4-13.7":0.20408,"14.0-14.4":1.00711,"14.5-14.8":8.13654,"15.0-15.1":6.63002},P:{"4":0.04186,"5.0-5.4":0.08232,"6.2-6.4":0.03096,"7.2-7.4":0.12559,"8.2":0.01024,"9.2":0.02093,"10.1":0.02048,"11.1-11.2":0.16745,"12.0":0.0314,"13.0":0.14652,"14.0":0.24072,"15.0":3.33862},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00346,"4.4":0,"4.4.3-4.4.4":0.0294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2653,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01155,_:"11"},L:{"0":26.79554},S:{"2.5":0},R:{_:"0"},M:{"0":0.26286},Q:{"10.4":0},O:{"0":0.00939},H:{"0":0.16887}}; +module.exports={C:{"78":0.00942,"83":0.16489,"88":0.01884,"90":0.00942,"94":0.33919,"95":0.76789,"96":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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 91 92 93 97 3.5 3.6"},D:{"49":0.06595,"60":0.00942,"67":0.01884,"76":0.05653,"79":0.02356,"80":0.00942,"81":0.00471,"84":0.00942,"86":0.00942,"87":0.00942,"90":0.48523,"91":0.06595,"92":0.14133,"93":0.06124,"94":0.80087,"95":0.65012,"96":21.43976,"97":0.00942,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 63 64 65 66 68 69 70 71 72 73 74 75 77 78 83 85 88 89 98 99"},F:{"81":0.49466,"82":0.53705,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00942,"13":0.03769,"14":0.52292,"15":1.46983,_:"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.01413,"12.1":0.11778,"13.1":0.19786,"14.1":3.14224,"15.1":3.19877,"15.2":1.07411},B:{"15":0.00942,"16":0.01884,"18":0.11306,"84":0.0848,"89":0.01884,"91":0.01413,"92":0.00942,"94":0.03298,"95":0.1272,"96":7.22196,_:"12 13 14 17 79 80 81 83 85 86 87 88 90 93"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00212,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.15668,"10.0-10.2":0,"10.3":0.05082,"11.0-11.2":0.01694,"11.3-11.4":0.04446,"12.0-12.1":0.2329,"12.2-12.5":0.29854,"13.0-13.1":0.0127,"13.2":0.00423,"13.3":0.04658,"13.4-13.7":0.2202,"14.0-14.4":0.72623,"14.5-14.8":7.13739,"15.0-15.1":11.35081,"15.2":0.86597},P:{"4":0.16711,"5.0-5.4":0.01042,"6.2-6.4":0.01031,"7.2-7.4":0.06267,"8.2":0.01019,"9.2":0.01044,"10.1":0.01031,"11.1-11.2":0.21933,"12.0":0.02089,"13.0":0.15667,"14.0":0.16711,"15.0":0.69978},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00144,"4.4":0,"4.4.3-4.4.4":0.01971},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03769,_:"6 7 8 9 10 5.5"},N:{"10":0.02705,_:"11"},J:{"7":0,"10":0},O:{"0":0.01058},H:{"0":0.08012},L:{"0":30.14611},S:{"2.5":0},R:{_:"0"},M:{"0":0.15338},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js index 9cedf03b14fe14..6424bc90db14fd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js @@ -1 +1 @@ -module.exports={C:{"2":0.00502,"75":0.00502,"78":0.08035,"84":0.00502,"91":0.00502,"92":0.10546,"93":0.4118,"94":1.8029,_:"3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 85 86 87 88 89 90 95 96 3.5 3.6"},D:{"49":0.00502,"65":0.01004,"69":0.04018,"72":0.03013,"75":0.01004,"76":0.03013,"78":0.01507,"79":0.06026,"80":0.04018,"83":0.01004,"85":0.06026,"86":0.0452,"87":0.04018,"88":0.02009,"89":0.08537,"90":0.0452,"91":0.2059,"92":0.48713,"93":0.5022,"94":6.31265,"95":11.45518,"96":5.64975,"97":0.01004,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 70 71 73 74 77 81 84 98 99"},F:{"80":0.21092,"81":0.07031,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01004,"18":0.06529,"85":0.01004,"87":0.03013,"89":0.03515,"92":0.01004,"93":0.02511,"94":0.28123,"95":8.76339,"96":2.17453,_:"12 13 15 16 17 79 80 81 83 84 86 88 90 91"},E:{"4":0,"12":0.01004,"13":0.0452,"14":0.42687,"15":0.86378,_:"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.05022,"12.1":0.0452,"13.1":0.60766,"14.1":5.87072,"15.1":1.11991},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04198,"6.0-6.1":0,"7.0-7.1":0.07085,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01312,"10.0-10.2":0,"10.3":0.17318,"11.0-11.2":0.0105,"11.3-11.4":0.0551,"12.0-12.1":0.02886,"12.2-12.5":0.57202,"13.0-13.1":0.02099,"13.2":0.0105,"13.3":0.0551,"13.4-13.7":0.33324,"14.0-14.4":1.86824,"14.5-14.8":13.09079,"15.0-15.1":9.8896},P:{"4":0.03187,"5.0-5.4":0.02055,"6.2-6.4":0.17182,"7.2-7.4":0.07436,"8.2":0.01028,"9.2":0.0411,"10.1":0.0411,"11.1-11.2":0.07436,"12.0":0.05138,"13.0":0.06374,"14.0":0.15934,"15.0":3.81362},I:{"0":0,"3":0,"4":0.00597,"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.05376},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.457,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":18.72485},S:{"2.5":0},R:{_:"0"},M:{"0":0.94084},Q:{"10.4":0},O:{"0":0.11947},H:{"0":0.02356}}; +module.exports={C:{"52":0.00938,"72":0.00469,"78":0.01876,"91":0.00938,"92":0.03282,"93":0.03751,"94":0.91904,"95":1.3645,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 96 97 3.5 3.6"},D:{"38":0.03282,"47":0.05158,"49":0.01407,"55":0.01407,"56":0.00469,"63":0.00469,"65":0.01876,"68":0.02345,"72":0.03282,"73":0.01407,"75":0.00938,"76":0.06096,"77":0.01407,"78":0.01876,"79":0.00938,"80":0.0422,"81":0.02345,"83":0.01876,"85":0.01407,"86":0.04689,"87":0.04689,"88":0.02813,"89":0.11723,"90":0.00469,"91":0.07971,"92":0.37981,"93":0.21569,"94":2.46641,"95":0.67991,"96":17.9026,"97":0.00938,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 57 58 59 60 61 62 64 66 67 69 70 71 74 84 98 99"},F:{"80":0.00469,"81":0.18287,"82":0.22976,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00938,"13":0.0422,"14":0.55799,"15":0.56737,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00938,"11.1":0.03282,"12.1":0.05627,"13.1":0.83464,"14.1":3.44173,"15.1":3.51675,"15.2":0.27665},B:{"15":0.00938,"17":0.01407,"18":0.05627,"85":0.01876,"87":0.01876,"89":0.00938,"90":0.01407,"92":0.00938,"93":0.02813,"94":0.06096,"95":0.30479,"96":9.21857,_:"12 13 14 16 79 80 81 83 84 86 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01463,"6.0-6.1":0,"7.0-7.1":0.02341,"8.1-8.4":0.00585,"9.0-9.2":0,"9.3":0.01755,"10.0-10.2":0.00293,"10.3":0.20188,"11.0-11.2":0.03218,"11.3-11.4":0.04974,"12.0-12.1":0.05852,"12.2-12.5":0.59102,"13.0-13.1":0.03511,"13.2":0.02048,"13.3":0.06144,"13.4-13.7":0.33062,"14.0-14.4":1.62384,"14.5-14.8":9.29536,"15.0-15.1":15.60345,"15.2":1.29029},P:{"4":0.06318,"5.0-5.4":0.0103,"6.2-6.4":0.03117,"7.2-7.4":0.10305,"8.2":0.03037,"9.2":0.04122,"10.1":0.03091,"11.1-11.2":0.06318,"12.0":0.06183,"13.0":0.06318,"14.0":0.15796,"15.0":0.63184},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.00469,"11":0.35636,_:"6 7 8 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.02514},L:{"0":20.42821},S:{"2.5":0},R:{_:"0"},M:{"0":0.44081},Q:{"10.4":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 79fc6396cdb87d..6d0a94776c6669 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.00526,"44":0.00526,"50":0.02628,"51":0.01577,"52":0.08935,"53":0.01577,"54":0.02102,"55":0.23126,"56":0.0473,"57":0.02628,"58":0.02102,"59":0.03154,"60":0.02628,"61":0.02628,"62":0.01577,"63":0.03154,"64":0.01051,"65":0.01577,"66":0.01051,"67":0.01051,"68":0.02102,"69":0.00526,"70":0.00526,"72":0.01051,"73":0.01051,"74":0.01051,"75":0.00526,"76":0.00526,"77":0.01051,"78":0.0473,"79":0.02628,"80":0.03679,"81":0.03154,"82":0.02102,"83":0.02628,"84":0.01051,"88":0.01051,"89":0.00526,"90":0.00526,"91":0.01577,"92":0.01577,"93":0.13666,"94":0.75161,"95":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 39 40 41 42 43 45 46 47 48 49 71 85 86 87 96 3.5 3.6"},D:{"33":0.01577,"34":0.01051,"35":0.00526,"36":0.00526,"38":0.02628,"39":0.00526,"41":0.02102,"42":0.01051,"43":0.01051,"44":0.00526,"45":0.01051,"46":0.01577,"47":0.02102,"48":0.02102,"49":0.37843,"50":0.00526,"51":0.01051,"53":0.01577,"54":0.01051,"55":0.01577,"56":0.03154,"57":0.02628,"58":0.01577,"59":0.00526,"60":0.01577,"61":0.10512,"62":0.01051,"63":0.02102,"64":0.01577,"65":0.02102,"66":0.01577,"67":0.01577,"68":0.01577,"69":0.01577,"70":0.03679,"71":0.01051,"72":0.01577,"73":0.02102,"74":0.03154,"75":0.06307,"76":0.15242,"77":0.82519,"78":0.03154,"79":0.09986,"80":0.11038,"81":0.05256,"83":0.14717,"84":0.25229,"85":0.23652,"86":0.30485,"87":0.7411,"88":0.02102,"89":0.05782,"90":0.05782,"91":0.11563,"92":0.2628,"93":5.52931,"94":1.48219,"95":17.84412,"96":9.6395,"97":0.02102,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 37 40 52 98 99"},F:{"34":0.00526,"36":0.01051,"40":0.00526,"43":0.01051,"46":0.01577,"48":0.00526,"49":0.00526,"52":0.00526,"53":0.01051,"54":0.01577,"55":0.01577,"56":0.01051,"66":0.00526,"67":0.00526,"68":0.01577,"69":0.01051,"70":0.00526,"71":0.01577,"72":0.01051,"78":0.01051,"79":0.00526,"80":0.54137,"81":0.23652,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 41 42 44 45 47 50 51 57 58 60 62 63 64 65 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01577},B:{"12":0.03154,"13":0.02102,"14":0.02628,"15":0.03154,"16":0.0473,"17":0.03154,"18":0.09461,"79":0.01577,"80":0.01577,"81":0.02628,"83":0.03154,"84":0.05782,"85":0.03154,"86":0.03679,"87":0.02628,"89":0.01051,"90":0.01051,"91":0.00526,"92":0.02102,"93":0.01577,"94":0.0473,"95":1.82383,"96":0.69379,_:"88"},E:{"4":0,"10":0.01051,"11":0.02102,"12":0.03154,"13":0.0841,"14":0.18396,"15":0.23126,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01051,"11.1":0.02628,"12.1":0.04205,"13.1":0.18396,"14.1":0.59918,"15.1":0.28908},G:{"8":0.0027,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0027,"5.0-5.1":0.0081,"6.0-6.1":0.01485,"7.0-7.1":0.02969,"8.1-8.4":0.03239,"9.0-9.2":0.02834,"9.3":0.15116,"10.0-10.2":0.04994,"10.3":0.2092,"11.0-11.2":0.10123,"11.3-11.4":0.14711,"12.0-12.1":0.11607,"12.2-12.5":1.52512,"13.0-13.1":0.08368,"13.2":0.04319,"13.3":0.23889,"13.4-13.7":0.77336,"14.0-14.4":1.73297,"14.5-14.8":5.4729,"15.0-15.1":2.73308},P:{"4":0.29799,"5.0-5.4":0.02055,"6.2-6.4":0.17182,"7.2-7.4":0.0822,"8.2":0.01028,"9.2":0.0411,"10.1":0.0411,"11.1-11.2":0.14386,"12.0":0.05138,"13.0":0.16441,"14.0":0.14386,"15.0":1.44884},I:{"0":0,"3":0,"4":0.00118,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.0051,"4.4":0,"4.4.3-4.4.4":0.03999},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04692,"9":0.03519,"10":0.0176,"11":0.305,_:"6 7 5.5"},J:{"7":0,"10":0.00474},N:{"10":0.02658,"11":0.22582},L:{"0":33.20705},S:{"2.5":0},R:{_:"0"},M:{"0":0.08539},Q:{"10.4":0.01898},O:{"0":0.93457},H:{"0":0.26499}}; +module.exports={C:{"50":0.00943,"51":0.00943,"52":0.04244,"53":0.00472,"54":0.00943,"55":0.00943,"56":0.0283,"57":0.00943,"58":0.00472,"59":0.00943,"60":0.00943,"61":0.00943,"62":0.00472,"63":0.00943,"65":0.00472,"66":0.00472,"67":0.00472,"68":0.00943,"72":0.00472,"74":0.00943,"77":0.00472,"78":0.0283,"79":0.02358,"80":0.02358,"81":0.01886,"82":0.01886,"83":0.01415,"84":0.01886,"86":0.00472,"88":0.00472,"89":0.00472,"90":0.00472,"91":0.00943,"92":0.00472,"93":0.00943,"94":0.22637,"95":1.13656,"96":0.00472,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 64 69 70 71 73 75 76 85 87 97 3.5 3.6"},D:{"33":0.01415,"34":0.00943,"38":0.03301,"41":0.01415,"46":0.00472,"47":0.00943,"48":0.00943,"49":0.13205,"53":0.01415,"54":0.00943,"55":0.00943,"56":0.01886,"57":0.01886,"58":0.00943,"60":0.00943,"61":0.01886,"62":0.00472,"63":0.01415,"64":0.00472,"65":0.00943,"66":0.00943,"67":0.00943,"68":0.00943,"69":0.01415,"70":0.01886,"71":0.00943,"72":0.01415,"73":0.00943,"74":0.02358,"75":0.06131,"76":0.07546,"77":1.42423,"78":0.02358,"79":0.0896,"80":0.07074,"81":0.05659,"83":0.10847,"84":0.18392,"85":0.16034,"86":0.21694,"87":0.41029,"88":0.03301,"89":0.05188,"90":0.03773,"91":0.12262,"92":0.16978,"93":0.42444,"94":2.30141,"95":1.00451,"96":23.46682,"97":0.02358,"99":0.00472,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 42 43 44 45 50 51 52 59 98"},F:{"28":0.00472,"36":0.01415,"37":0.00943,"40":0.00943,"43":0.00472,"46":0.01415,"54":0.00472,"55":0.00472,"68":0.00943,"69":0.00472,"70":0.00943,"71":0.00943,"72":0.00943,"80":0.00472,"81":0.34427,"82":0.37728,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 38 39 41 42 44 45 47 48 49 50 51 52 53 56 57 58 60 62 63 64 65 66 67 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00472},E:{"4":0,"10":0.00943,"11":0.00943,"12":0.00943,"13":0.06131,"14":0.1179,"15":0.11318,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.0283,"10.1":0.00472,"11.1":0.01415,"12.1":0.02358,"13.1":0.1179,"14.1":0.44802,"15.1":0.38671,"15.2":0.05659},B:{"12":0.00943,"13":0.00943,"14":0.00943,"15":0.00943,"16":0.01886,"17":0.01886,"18":0.05188,"80":0.00472,"81":0.00943,"83":0.01415,"84":0.02358,"85":0.01415,"86":0.01886,"87":0.01415,"89":0.00472,"90":0.00943,"92":0.00943,"93":0.00472,"94":0.01415,"95":0.04244,"96":2.21652,_:"79 88 91"},G:{"8":0.00409,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00546,"6.0-6.1":0.01091,"7.0-7.1":0.03002,"8.1-8.4":0.02183,"9.0-9.2":0.02319,"9.3":0.13643,"10.0-10.2":0.04229,"10.3":0.2142,"11.0-11.2":0.0955,"11.3-11.4":0.13507,"12.0-12.1":0.10369,"12.2-12.5":1.64131,"13.0-13.1":0.06822,"13.2":0.03138,"13.3":0.21284,"13.4-13.7":0.72992,"14.0-14.4":1.5881,"14.5-14.8":4.36453,"15.0-15.1":3.72875,"15.2":0.4516},P:{"4":0.36066,"5.0-5.4":0.0103,"6.2-6.4":0.03117,"7.2-7.4":0.10305,"8.2":0.03037,"9.2":0.04122,"10.1":0.03091,"11.1-11.2":0.16487,"12.0":0.06183,"13.0":0.16487,"14.0":0.15457,"15.0":0.26792},I:{"0":0,"3":0,"4":0.00059,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00059,"4.2-4.3":0.00267,"4.4":0,"4.4.3-4.4.4":0.02785},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03684,"9":0.03158,"10":0.01053,"11":0.28419,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.01057},O:{"0":1.10415},H:{"0":0.27509},L:{"0":38.74166},S:{"2.5":0},R:{_:"0"},M:{"0":0.07396},Q:{"10.4":0.01057}}; 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 a3cb802a29fc8b..c16014dacb803e 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.0159,"38":0.05565,"45":0.00398,"52":0.00795,"68":0.00398,"69":0.0159,"72":0.00398,"78":0.04373,"82":0.04373,"88":0.01988,"89":0.00795,"90":0.00795,"92":0.01988,"93":0.43725,"94":1.75695,"95":0.01988,_:"2 3 4 5 6 7 8 9 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 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 71 73 74 75 76 77 79 80 81 83 84 85 86 87 91 96 3.5 3.6"},D:{"49":0.05963,"59":0.01988,"63":0.00795,"69":0.05963,"70":0.00795,"73":0.05963,"74":0.0159,"75":0.0159,"78":0.01988,"81":1.02555,"83":0.0159,"84":0.03578,"85":0.00795,"86":0.01988,"87":0.0318,"88":0.159,"89":0.01193,"90":0.02385,"91":0.05565,"92":0.08745,"93":0.0795,"94":0.69165,"95":13.03403,"96":5.8035,"97":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 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 61 62 64 65 66 67 68 71 72 76 77 79 80 98 99"},F:{"79":0.00795,"80":0.14708,"81":0.0159,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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.02783,"13":0.00398,"15":0.03975,"16":0.0159,"17":0.08348,"18":0.09938,"84":0.0159,"85":0.00398,"89":0.01988,"90":0.00398,"91":0.01193,"92":0.03578,"93":0.19478,"94":0.159,"95":5.3901,"96":1.37933,_:"14 79 80 81 83 86 87 88"},E:{"4":0,"13":0.03975,"14":0.03578,"15":0.15105,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00795,"11.1":0.00795,"12.1":0.0318,"13.1":1.0176,"14.1":0.49688,"15.1":0.21465},G:{"8":0.01322,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02816,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00201,"9.3":0.14885,"10.0-10.2":0.00747,"10.3":0.00747,"11.0-11.2":0.00747,"11.3-11.4":0.0227,"12.0-12.1":0.01695,"12.2-12.5":0.16753,"13.0-13.1":0.02443,"13.2":0,"13.3":0.06408,"13.4-13.7":0.04512,"14.0-14.4":0.21466,"14.5-14.8":1.64602,"15.0-15.1":0.45777},P:{"4":0.08257,"5.0-5.4":0.01032,"6.2-6.4":0.17182,"7.2-7.4":0.72246,"8.2":0.02021,"9.2":0.10321,"10.1":0.05054,"11.1-11.2":0.1961,"12.0":0.01032,"13.0":0.1961,"14.0":0.13417,"15.0":0.76374},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00184,"4.4":0,"4.4.3-4.4.4":0.17289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00807,"11":1.04133,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":58.73435},S:{"2.5":0},R:{_:"0"},M:{"0":0.07833},Q:{"10.4":0.04218},O:{"0":0.89773},H:{"0":0.22816}}; +module.exports={C:{"38":0.07752,"44":0.02448,"47":0.0408,"52":0.01224,"68":0.00408,"74":0.01224,"78":0.03672,"82":0.00816,"87":0.00408,"88":0.00408,"89":0.00408,"91":0.02856,"92":0.00816,"94":0.5916,"95":2.35416,"96":0.1224,_:"2 3 4 5 6 7 8 9 10 11 12 13 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 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 75 76 77 79 80 81 83 84 85 86 90 93 97 3.5 3.6"},D:{"49":0.02448,"55":0.00408,"56":0.00816,"59":0.00408,"69":0.04488,"71":0.00408,"75":0.18768,"76":0.02856,"77":0.01224,"79":0.07752,"80":0.0204,"81":0.6732,"83":0.00408,"84":0.04896,"85":0.0408,"86":0.03672,"87":0.23256,"88":0.32232,"89":0.00408,"90":0.02856,"91":0.02856,"92":0.04488,"93":0.01632,"94":0.10608,"95":0.46104,"96":15.79368,"97":0.00408,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 60 61 62 63 64 65 66 67 68 70 72 73 74 78 98 99"},F:{"81":0.08976,"82":0.06528,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00408,"14":0.05712,"15":0.0816,_:"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.0204,"12.1":0.0612,"13.1":1.17096,"14.1":0.4896,"15.1":0.57528,"15.2":0.31416},B:{"12":0.0204,"13":0.02856,"16":0.01632,"17":0.05304,"18":0.10608,"86":0.00408,"92":0.01632,"95":0.02856,"96":8.12328,_:"14 15 79 80 81 83 84 85 87 88 89 90 91 93 94"},G:{"8":0,"3.2":0,"4.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.02948,"10.0-10.2":0,"10.3":0.05075,"11.0-11.2":0.00154,"11.3-11.4":0.00333,"12.0-12.1":0.02614,"12.2-12.5":0.07715,"13.0-13.1":0.00666,"13.2":0.00666,"13.3":0.04255,"13.4-13.7":0.00974,"14.0-14.4":0.51775,"14.5-14.8":1.00243,"15.0-15.1":0.69588,"15.2":0.0933},P:{"4":0.19739,"5.0-5.4":0.02078,"6.2-6.4":0.03117,"7.2-7.4":0.9454,"8.2":0.03037,"9.2":0.59217,"10.1":0.05062,"11.1-11.2":0.2805,"12.0":0.03117,"13.0":0.06233,"14.0":0.30128,"15.0":0.21817},I:{"0":0,"3":0,"4":0.00129,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00193,"4.4":0,"4.4.3-4.4.4":0.0619},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.62832,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.7992},H:{"0":0.22979},L:{"0":59.08768},S:{"2.5":0},R:{_:"0"},M:{"0":0.10064},Q:{"10.4":0.10656}}; 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 55d83d3c5f3f55..760efb9def902d 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:{"60":0.62305,"68":0.04596,"78":1.69042,"91":0.17875,"93":1.0214,"94":6.09265,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 95 96 3.5 3.6"},D:{"81":0.04596,"91":0.57709,"94":3.51362,"95":14.14639,"96":3.46765,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 92 93 97 98 99"},F:{"80":0.17875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.04596,"17":0.04596,"18":0.44431,"81":0.04596,"90":0.04596,"95":0.70987,"96":0.04596,_:"12 13 14 16 79 80 83 84 85 86 87 88 89 91 92 93 94"},E:{"4":0,"14":0.26556,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.08682,"12.1":0.04596,"13.1":0.13278,"14.1":1.51167,"15.1":14.50388},G:{"8":0,"3.2":0,"4.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.04295,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.30725,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.6112,"14.5-14.8":3.02957,"15.0-15.1":29.04353},P:{"4":0.03187,"5.0-5.4":0.02055,"6.2-6.4":0.17182,"7.2-7.4":0.07436,"8.2":0.01028,"9.2":0.0411,"10.1":0.0411,"11.1-11.2":0.07436,"12.0":0.05138,"13.0":0.05029,"14.0":0.15934,"15.0":0.86501},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.04596,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":15.32721},S:{"2.5":0},R:{_:"0"},M:{"0":0.09299},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"77":0.01836,"78":0.0918,"91":0.13158,"93":0.01836,"94":0.78336,"95":1.26684,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 83 84 85 86 87 88 89 90 92 96 97 3.5 3.6"},D:{"85":0.01836,"90":0.03672,"91":0.03672,"96":2.3103,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 87 88 89 92 93 94 95 97 98 99"},F:{"81":0.13158,"82":0.57834,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"14":0.14994,_:"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.44676,"15.1":18.71802,"15.2":2.7387},B:{"89":0.03672,"96":0.27846,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95"},G:{"8":0,"3.2":0,"4.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.08949,"13.0-13.1":0,"13.2":0,"13.3":0.0537,"13.4-13.7":0,"14.0-14.4":0.14915,"14.5-14.8":1.09777,"15.0-15.1":53.42067,"15.2":4.83853},P:{"4":0.06318,"5.0-5.4":0.0103,"6.2-6.4":0.03117,"7.2-7.4":0.10305,"8.2":0.03037,"9.2":0.04122,"10.1":0.03091,"11.1-11.2":0.06318,"12.0":0.06183,"13.0":0.06318,"14.0":0.15796,"15.0":0.63184},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.03672,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0},H:{"0":0.10513},L:{"0":9.55392},S:{"2.5":0},R:{_:"0"},M:{"0":0.1735},Q:{"10.4":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 d14d72a7074cdd..fe35a041fbbb3a 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:{"81":0.00414,"88":0.01656,"92":0.00828,"93":0.31878,"94":2.45502,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 82 83 84 85 86 87 89 90 91 95 96 3.5 3.6"},D:{"40":0.01656,"43":0.02484,"49":0.00828,"53":0.02898,"58":0.02484,"63":0.01242,"65":0.01242,"68":0.0207,"70":0.01242,"74":0.00828,"76":0.00828,"78":0.01242,"79":0.00828,"80":0.02484,"81":0.0207,"84":0.01242,"86":0.03312,"88":0.00414,"89":0.01242,"90":0.02484,"91":0.13662,"92":0.06624,"93":0.19872,"94":0.40986,"95":13.2066,"96":6.81858,"97":0.39744,"98":0.00414,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 54 55 56 57 59 60 61 62 64 66 67 69 71 72 73 75 77 83 85 87 99"},F:{"77":0.01242,"80":0.03312,"81":0.07038,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01242,"13":0.01242,"14":0.01242,"15":0.01656,"16":0.0414,"17":0.07038,"18":0.3726,"85":0.18216,"89":0.02484,"91":0.01656,"92":0.09522,"93":0.03312,"94":0.0621,"95":1.80504,"96":0.72864,_:"79 80 81 83 84 86 87 88 90"},E:{"4":0,"13":0.05382,"14":0.05796,"15":0.02484,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1","10.1":0.00828,"13.1":0.03312,"14.1":0.67068,"15.1":0.01656},G:{"8":0,"3.2":0,"4.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.00888,"10.0-10.2":0.01387,"10.3":0.00888,"11.0-11.2":0.13094,"11.3-11.4":0.02275,"12.0-12.1":0.03329,"12.2-12.5":0.73573,"13.0-13.1":0.0627,"13.2":0.32847,"13.3":0.18365,"13.4-13.7":0.24302,"14.0-14.4":1.15353,"14.5-14.8":1.63458,"15.0-15.1":0.98818},P:{"4":0.28841,"5.0-5.4":0.0103,"6.2-6.4":0.03056,"7.2-7.4":1.21542,"8.2":0.0618,"9.2":1.13302,"10.1":0.0206,"11.1-11.2":0.35021,"12.0":0.1751,"13.0":0.1854,"14.0":0.71071,"15.0":2.03944},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.01188,"4.4":0,"4.4.3-4.4.4":0.01091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36846,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":56.35238},S:{"2.5":0.01172},R:{_:"0"},M:{"0":0.04101},Q:{"10.4":0.01172},O:{"0":1.25969},H:{"0":0.8154}}; +module.exports={C:{"34":0.01347,"88":0.02246,"91":0.01796,"94":0.69611,"95":1.15868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 92 93 96 97 3.5 3.6"},D:{"49":0.00898,"58":0.01347,"66":0.01347,"70":0.01347,"76":0.02246,"78":0.00898,"79":0.01796,"80":0.0494,"81":0.01796,"84":0.00898,"86":0.00449,"87":0.04042,"89":0.02246,"90":0.01796,"91":0.01796,"92":0.04042,"93":0.13024,"94":0.0988,"95":0.67814,"96":23.77535,"97":0.29192,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 62 63 64 65 67 68 69 71 72 73 74 75 77 83 85 88 98 99"},F:{"28":0.00898,"80":0.02246,"81":0.10778,"82":0.3503,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.02695,"14":0.33233,"15":0.01796,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1","10.1":0.01347,"13.1":0.08084,"14.1":0.55239,"15.1":0.08982,"15.2":0.05389},B:{"12":0.27844,"13":0.02246,"15":0.01796,"17":0.04042,"18":0.19311,"84":0.03144,"85":0.21108,"92":0.00449,"93":0.03144,"94":0.0988,"95":0.08084,"96":3.83531,_:"14 16 79 80 81 83 86 87 88 89 90 91"},G:{"8":0,"3.2":0,"4.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.00165,"9.3":0.02312,"10.0-10.2":0.0033,"10.3":0.02312,"11.0-11.2":0.01211,"11.3-11.4":0.01046,"12.0-12.1":0.02862,"12.2-12.5":0.85706,"13.0-13.1":0.04239,"13.2":0.24826,"13.3":0.49706,"13.4-13.7":0.18661,"14.0-14.4":0.71229,"14.5-14.8":1.60624,"15.0-15.1":1.17688,"15.2":0.07431},P:{"4":0.12438,"5.0-5.4":0.07256,"6.2-6.4":0.02073,"7.2-7.4":0.81884,"8.2":0.02052,"9.2":0.09329,"10.1":0.04146,"11.1-11.2":0.37314,"12.0":0.26949,"13.0":0.80848,"14.0":0.29022,"15.0":0.8914},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0086,"4.4":0,"4.4.3-4.4.4":0.00242},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08084,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.96958},H:{"0":1.22044},L:{"0":52.37219},S:{"2.5":0.10467},R:{_:"0"},M:{"0":0.03305},Q:{"10.4":0.01653}}; 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 d24704b1d595c3..053de5fa9ec59d 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.03083,"26":0.00193,"40":0.00193,"43":0.00385,"47":0.00385,"48":0.00193,"49":0.00385,"50":0.00385,"52":0.02698,"53":0.00193,"56":0.00193,"57":0.00385,"59":0.00578,"60":0.00578,"61":0.00771,"62":0.00193,"64":0.00578,"65":0.00193,"66":0.01156,"68":0.00771,"69":0.00385,"70":0.00193,"71":0.00385,"72":0.02312,"76":0.00193,"78":0.01927,"79":0.00385,"80":0.00385,"83":0.01734,"84":0.00578,"85":0.01349,"86":0.00964,"87":0.00385,"88":0.00385,"89":0.0212,"90":0.00385,"91":0.02312,"92":0.03661,"93":0.22353,"94":1.13115,"95":0.01734,_:"2 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 46 51 54 55 58 63 67 73 74 75 77 81 82 96 3.5 3.6"},D:{"37":0.01734,"40":0.00385,"43":0.00193,"44":0.00193,"48":0.00385,"49":0.06937,"51":0.00385,"53":0.00578,"55":0.00771,"56":0.00578,"57":0.01156,"58":0.00385,"60":0.00385,"61":0.00193,"62":0.00193,"63":0.01542,"64":0.00771,"65":0.00578,"66":0.01349,"67":0.00385,"68":0.00964,"69":0.00771,"70":0.01156,"71":0.01349,"72":0.00385,"73":0.00964,"74":0.02505,"75":0.01156,"76":0.01349,"77":0.00964,"78":0.01927,"79":0.04818,"80":0.03276,"81":0.03854,"83":0.02891,"84":0.01734,"85":0.01349,"86":0.07515,"87":0.05781,"88":0.02698,"89":0.09828,"90":0.04047,"91":0.08286,"92":0.18499,"93":0.18885,"94":0.30639,"95":4.66719,"96":2.96373,"98":0.00385,_:"4 5 6 7 8 9 10 11 12 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 45 46 47 50 52 54 59 97 99"},F:{"65":0.01349,"66":0.00385,"68":0.00193,"77":0.00193,"79":0.00771,"80":0.11947,"81":0.03854,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 67 69 70 71 72 73 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.00385,"18":0.00578,"81":0.00193,"84":0.01542,"85":0.00578,"88":0.00385,"89":0.01349,"90":0.00578,"91":0.00385,"92":0.01542,"93":0.01927,"94":0.03083,"95":0.49524,"96":0.1715,_:"13 14 15 16 17 79 80 83 86 87"},E:{"4":0,"13":0.00385,"14":0.07323,"15":0.01156,_:"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.00385,"13.1":0.00385,"14.1":0.01542,"15.1":0.02312},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01416,"5.0-5.1":0.00043,"6.0-6.1":0.00116,"7.0-7.1":0.00636,"8.1-8.4":0,"9.0-9.2":0.00087,"9.3":0.00361,"10.0-10.2":0.01055,"10.3":0.01575,"11.0-11.2":0.06706,"11.3-11.4":0.00694,"12.0-12.1":0.04957,"12.2-12.5":0.28282,"13.0-13.1":0.0091,"13.2":0.00361,"13.3":0.05723,"13.4-13.7":0.09813,"14.0-14.4":0.30753,"14.5-14.8":0.29987,"15.0-15.1":0.21013},P:{"4":0.25402,"5.0-5.4":0.07113,"6.2-6.4":0.01016,"7.2-7.4":0.13209,"8.2":0.01016,"9.2":0.17274,"10.1":0.03048,"11.1-11.2":0.24386,"12.0":0.06097,"13.0":0.31499,"14.0":0.25402,"15.0":1.55462},I:{"0":0,"3":0,"4":0.0017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02131,"4.2-4.3":0.02472,"4.4":0,"4.4.3-4.4.4":0.46887},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00603,"11":0.04022,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":65.90789},S:{"2.5":0},R:{_:"0"},M:{"0":0.41167},Q:{"10.4":0},O:{"0":4.75441},H:{"0":10.59952}}; +module.exports={C:{"3":0.05097,"44":0.00232,"45":0.00927,"47":0.00695,"49":0.00695,"50":0.00463,"51":0.00232,"52":0.07414,"54":0.00232,"56":0.01159,"57":0.00463,"59":0.00695,"60":0.00463,"61":0.00463,"62":0.00927,"63":0.00463,"64":0.00232,"65":0.00695,"66":0.00463,"67":0.00232,"68":0.00232,"69":0.00463,"72":0.02085,"77":0.00927,"78":0.01159,"80":0.00232,"83":0.00232,"84":0.00695,"85":0.00232,"86":0.00463,"87":0.00463,"88":0.00695,"89":0.0139,"90":0.00232,"91":0.01622,"92":0.01854,"93":0.00927,"94":0.52828,"95":1.35313,"96":0.00695,_:"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 46 48 53 55 58 70 71 73 74 75 76 79 81 82 97 3.5 3.6"},D:{"37":0.01854,"40":0.00232,"43":0.00232,"46":0.00463,"48":0.00463,"49":0.01854,"50":0.00232,"52":0.00232,"53":0.00695,"55":0.00927,"56":0.01622,"57":0.01159,"58":0.00232,"60":0.00232,"62":0.00232,"63":0.02085,"64":0.00695,"65":0.00695,"66":0.00927,"67":0.00695,"68":0.00927,"69":0.01159,"70":0.0139,"71":0.0139,"72":0.01622,"73":0.01159,"74":0.02549,"75":0.01622,"76":0.01159,"77":0.00927,"78":0.02085,"79":0.06024,"80":0.03244,"81":0.02085,"83":0.04866,"84":0.0139,"85":0.02317,"86":0.08805,"87":0.06951,"88":0.03707,"89":0.095,"90":0.04634,"91":0.09963,"92":0.16914,"93":0.09268,"94":0.18304,"95":0.42401,"96":8.5868,"98":0.00695,_:"4 5 6 7 8 9 10 11 12 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 47 51 54 59 61 97 99"},F:{"28":0.00232,"65":0.03244,"66":0.0139,"68":0.00695,"79":0.01159,"80":0.00463,"81":0.06024,"82":0.10658,_:"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 67 69 70 71 72 73 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},E:{"4":0,"14":0.0139,"15":0.00463,_:"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.00232,"14.1":0.02549,"15.1":0.04171,"15.2":0.00695},B:{"12":0.00232,"13":0.00232,"17":0.0278,"18":0.00232,"84":0.01854,"85":0.00695,"89":0.00927,"90":0.00927,"92":0.01622,"93":0.00695,"94":0.01854,"95":0.03476,"96":0.83412,_:"14 15 16 79 80 81 83 86 87 88 91"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01544,"5.0-5.1":0.00061,"6.0-6.1":0.00138,"7.0-7.1":0.0162,"8.1-8.4":0.00092,"9.0-9.2":0,"9.3":0.00352,"10.0-10.2":0.00535,"10.3":0.00886,"11.0-11.2":0.0162,"11.3-11.4":0.00535,"12.0-12.1":0.02461,"12.2-12.5":0.19044,"13.0-13.1":0.00627,"13.2":0.00459,"13.3":0.02262,"13.4-13.7":0.04769,"14.0-14.4":0.39983,"14.5-14.8":0.33747,"15.0-15.1":0.38684,"15.2":0.03454},P:{"4":0.22115,"5.0-5.4":0.08042,"6.2-6.4":0.0201,"7.2-7.4":0.17089,"8.2":0.03037,"9.2":0.22115,"10.1":0.05026,"11.1-11.2":0.25131,"12.0":0.08042,"13.0":0.31162,"14.0":0.26136,"15.0":0.74386},I:{"0":0,"3":0,"4":0.00093,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00774,"4.2-4.3":0.00867,"4.4":0,"4.4.3-4.4.4":0.11326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03476,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":5.61554},H:{"0":13.87654},L:{"0":59.42471},S:{"2.5":0},R:{_:"0"},M:{"0":0.36874},Q:{"10.4":0}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js index 8995fc0c466f75..3cde0865217a2b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js @@ -1 +1 @@ -module.exports={C:{"52":0.00569,"60":0.50107,"68":0.01139,"70":0.01139,"72":0.00569,"78":4.33883,"83":0.05694,"84":0.01139,"85":0.01139,"86":0.01139,"87":0.02278,"88":0.03416,"89":0.30178,"90":0.02278,"91":0.0911,"92":0.18221,"93":1.34948,"94":5.92745,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 73 74 75 76 77 79 80 81 82 95 96 3.5 3.6"},D:{"49":0.01139,"58":0.02847,"62":0.05125,"63":0.02847,"67":0.00569,"69":0.00569,"70":0.00569,"74":0.02278,"75":0.01139,"76":0.01139,"77":0.05694,"78":0.03986,"79":0.05694,"80":0.00569,"81":0.02847,"83":0.02847,"84":0.00569,"85":0.01139,"86":0.00569,"87":0.19929,"88":0.01708,"89":0.10819,"90":0.05694,"91":0.26192,"92":0.19929,"93":0.30748,"94":1.17866,"95":16.62648,"96":9.38941,"97":0.00569,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 71 72 73 98 99"},F:{"80":0.27901,"81":0.04555,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.05694,"15":0.01139,"16":0.01708,"17":0.15374,"18":0.03986,"84":0.02847,"86":0.01708,"87":0.01139,"89":0.03416,"90":0.03986,"91":0.06263,"92":0.07402,"93":0.05694,"94":0.26762,"95":4.84559,"96":1.68542,_:"12 13 79 80 81 83 85 88"},E:{"4":0,"13":0.02847,"14":0.64342,"15":0.90535,_:"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.07972,"12.1":0.33025,"13.1":0.26192,"14.1":1.15588,"15.1":0.83702},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00279,"8.1-8.4":0.00279,"9.0-9.2":0,"9.3":0.00279,"10.0-10.2":0,"10.3":0.02326,"11.0-11.2":0.13306,"11.3-11.4":0.02326,"12.0-12.1":0.00837,"12.2-12.5":0.23356,"13.0-13.1":0.02885,"13.2":0.00279,"13.3":0.05769,"13.4-13.7":0.23542,"14.0-14.4":0.68112,"14.5-14.8":3.94903,"15.0-15.1":3.91833},P:{"4":0.0941,"5.0-5.4":0.04023,"6.2-6.4":0.09052,"7.2-7.4":0.02091,"8.2":0.01029,"9.2":0.02091,"10.1":0.05029,"11.1-11.2":0.18821,"12.0":0.08233,"13.0":0.21611,"14.0":0.13593,"15.0":2.84405},I:{"0":0,"3":0,"4":0.00033,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00265,"4.4":0,"4.4.3-4.4.4":0.00563},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.3815,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":31.2183},S:{"2.5":0},R:{_:"0"},M:{"0":0.15075},Q:{"10.4":0},O:{"0":0.07753},H:{"0":1.28036}}; +module.exports={C:{"34":0.00513,"52":0.01538,"60":0.20512,"68":0.04102,"78":2.75374,"79":0.00513,"83":0.02051,"84":0.01538,"88":0.00513,"89":0.07692,"91":0.10256,"92":0.01026,"93":0.01026,"94":3.02552,"95":2.8204,_:"2 3 4 5 6 7 8 9 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 76 77 80 81 82 85 86 87 90 96 97 3.5 3.6"},D:{"47":0.00513,"58":0.01026,"60":0.01026,"62":0.0923,"65":0.01538,"66":0.00513,"67":0.02051,"73":0.02051,"74":0.01026,"76":0.03077,"77":0.04615,"79":0.00513,"81":0.0359,"83":0.00513,"84":0.00513,"85":0.07692,"87":0.13333,"88":0.02051,"89":0.04102,"90":0.02564,"91":0.27691,"92":0.05128,"93":0.07692,"94":0.5128,"95":0.35383,"96":23.51701,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 59 61 63 64 68 69 70 71 72 75 78 80 86 97 98 99"},F:{"81":0.21025,"82":0.15897,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.01538,"14":0.34358,"15":0.11282,_:"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.0359,"12.1":0.09743,"13.1":0.21538,"14.1":0.99996,"15.1":0.77433,"15.2":0.05641},B:{"12":0.01538,"14":0.00513,"15":0.02564,"16":0.02051,"17":0.04615,"18":0.04102,"84":0.00513,"85":0.01538,"88":0.00513,"89":0.01538,"90":0.01538,"91":0.02051,"92":0.02564,"93":0.02051,"94":0.05128,"95":0.19486,"96":6.64589,_:"13 79 80 81 83 86 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.007,"6.0-6.1":0,"7.0-7.1":0.00262,"8.1-8.4":0.00262,"9.0-9.2":0,"9.3":0.00262,"10.0-10.2":0,"10.3":0.007,"11.0-11.2":0.03325,"11.3-11.4":0.0175,"12.0-12.1":0.0175,"12.2-12.5":0.44711,"13.0-13.1":0.00437,"13.2":0,"13.3":0.03762,"13.4-13.7":0.119,"14.0-14.4":0.77436,"14.5-14.8":2.8428,"15.0-15.1":4.01877,"15.2":0.42261},P:{"4":0.25665,"5.0-5.4":0.02053,"6.2-6.4":0.09073,"7.2-7.4":0.10266,_:"8.2","9.2":0.0308,"10.1":0.0103,"11.1-11.2":0.19505,"12.0":0.08239,"13.0":0.07186,"14.0":0.17452,"15.0":0.4825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00058,"2.3":0,"4.1":0.00203,"4.2-4.3":0.00232,"4.4":0,"4.4.3-4.4.4":0.01943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12307,_:"6 7 8 9 10 5.5"},N:{_:"10 11"},J:{"7":0,"10":0},O:{"0":0.10233},H:{"0":0.63204},L:{"0":40.81423},S:{"2.5":0},R:{_:"0"},M:{"0":0.19979},Q:{"10.4":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 fc176e68ddc19c..6e17c934f3bb07 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.00666,"52":0.02885,"60":0.00888,"78":0.01553,"82":0.00888,"84":0.0466,"88":0.00444,"89":0.00888,"90":0.00222,"91":0.01331,"92":0.0111,"93":0.13314,"94":0.74337,"95":0.01553,_:"2 3 4 5 6 7 8 9 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 83 85 86 87 96 3.5 3.6"},D:{"11":0.00444,"28":0.01553,"34":0.00444,"38":0.00444,"40":0.00666,"49":0.05769,"50":0.00666,"55":0.00222,"56":0.00444,"58":0.0111,"63":0.00222,"64":0.00888,"65":0.00444,"67":0.00888,"68":0.00222,"69":0.00888,"70":0.01997,"71":0.00444,"72":0.0111,"73":0.00666,"74":0.00888,"75":0.00444,"76":0.0111,"77":0.00444,"78":0.00666,"79":0.03994,"80":0.01997,"81":0.01775,"83":0.01331,"84":0.0111,"85":0.00666,"86":0.01997,"87":0.24853,"88":0.03107,"89":0.01997,"90":0.02885,"91":0.06879,"92":0.06435,"93":0.06435,"94":0.38611,"95":6.73688,"96":4.11625,"97":0.00666,_:"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 35 36 37 39 41 42 43 44 45 46 47 48 51 52 53 54 57 59 60 61 62 66 98 99"},F:{"28":0.01331,"36":0.00222,"78":0.00222,"79":0.00888,"80":0.28847,"81":0.11317,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00888,"13":0.00666,"14":0.00444,"15":0.00888,"16":0.0111,"17":0.02219,"18":0.04216,"84":0.00888,"85":0.00444,"87":0.00222,"88":0.00222,"89":0.00888,"90":0.00444,"91":0.00888,"92":0.02441,"93":0.01775,"94":0.05548,"95":1.53111,"96":0.58582,_:"79 80 81 83 86"},E:{"4":0,"12":0.00222,"13":0.04438,"14":0.10651,"15":0.23078,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00222,"10.1":0.00444,"11.1":0.01553,"12.1":0.02885,"13.1":0.13536,"14.1":0.5259,"15.1":0.29513},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00425,"6.0-6.1":0.00106,"7.0-7.1":0.01274,"8.1-8.4":0.00531,"9.0-9.2":0.00955,"9.3":0.11356,"10.0-10.2":0.00955,"10.3":0.08172,"11.0-11.2":0.03184,"11.3-11.4":0.03078,"12.0-12.1":0.02547,"12.2-12.5":0.69835,"13.0-13.1":0.04351,"13.2":0.01274,"13.3":0.08066,"13.4-13.7":0.23986,"14.0-14.4":0.78008,"14.5-14.8":4.59025,"15.0-15.1":3.84201},P:{"4":0.38288,"5.0-5.4":0.02015,"6.2-6.4":0.02015,"7.2-7.4":0.55417,"8.2":0.01008,"9.2":0.06045,"10.1":0.0403,"11.1-11.2":0.28212,"12.0":0.19144,"13.0":0.46348,"14.0":0.49371,"15.0":5.96484},I:{"0":0,"3":0,"4":0.00035,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0014,"4.2-4.3":0.0035,"4.4":0,"4.4.3-4.4.4":0.03365},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.38389,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02658,"11":0.22582},L:{"0":57.38483},S:{"2.5":0},R:{_:"0"},M:{"0":0.46686},Q:{"10.4":0.00778},O:{"0":0.59136},H:{"0":3.66854}}; +module.exports={C:{"34":0.00798,"48":0.00399,"52":0.02994,"56":0.002,"60":0.00798,"78":0.00998,"84":0.03393,"87":0.01597,"88":0.00399,"89":0.00599,"91":0.01198,"92":0.00599,"93":0.01198,"94":0.26547,"95":0.46706,"96":0.00399,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 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 97 3.5 3.6"},D:{"11":0.00599,"28":0.01397,"34":0.00399,"38":0.00599,"40":0.00399,"49":0.04391,"50":0.00599,"52":0.002,"55":0.00399,"56":0.002,"58":0.01198,"63":0.002,"64":0.00599,"65":0.00798,"66":0.002,"67":0.00599,"69":0.00599,"70":0.02196,"71":0.00599,"72":0.00998,"73":0.00399,"74":0.00798,"75":0.00399,"76":0.00399,"78":0.00599,"79":0.03593,"80":0.01597,"81":0.01796,"83":0.00998,"84":0.00798,"85":0.00599,"86":0.02196,"87":0.22754,"88":0.02196,"89":0.01198,"90":0.01996,"91":0.0479,"92":0.04591,"93":0.02994,"94":0.20559,"95":0.21357,"96":8.86224,"97":0.00599,"98":0.002,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 41 42 43 44 45 46 47 48 51 53 54 57 59 60 61 62 68 77 99"},F:{"28":0.00998,"36":0.002,"65":0.002,"78":0.002,"79":0.00798,"80":0.00798,"81":0.15768,"82":0.21956,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00399,"13":0.02794,"14":0.07585,"15":0.0998,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.002,"10.1":0.002,"11.1":0.01597,"12.1":0.01996,"13.1":0.0998,"14.1":0.39122,"15.1":0.4471,"15.2":0.05988},B:{"12":0.00798,"13":0.00399,"14":0.00399,"15":0.00599,"16":0.00599,"17":0.01397,"18":0.03593,"84":0.00599,"85":0.002,"86":0.002,"89":0.00599,"90":0.002,"91":0.00599,"92":0.00998,"93":0.00798,"94":0.01397,"95":0.06188,"96":1.89021,_:"79 80 81 83 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00329,"6.0-6.1":0.0011,"7.0-7.1":0.01098,"8.1-8.4":0.00768,"9.0-9.2":0.00988,"9.3":0.10537,"10.0-10.2":0.00878,"10.3":0.07573,"11.0-11.2":0.02634,"11.3-11.4":0.02634,"12.0-12.1":0.02634,"12.2-12.5":0.69696,"13.0-13.1":0.03402,"13.2":0.01317,"13.3":0.07463,"13.4-13.7":0.21842,"14.0-14.4":0.69147,"14.5-14.8":3.05892,"15.0-15.1":5.39894,"15.2":0.48513},P:{"4":0.32204,"5.0-5.4":0.01006,"6.2-6.4":0.02013,"7.2-7.4":0.5535,"8.2":0.01006,"9.2":0.06038,"10.1":0.06038,"11.1-11.2":0.28178,"12.0":0.19121,"13.0":0.39248,"14.0":0.46293,"15.0":1.08688},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00189,"4.2-4.3":0.00378,"4.4":0,"4.4.3-4.4.4":0.03436},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2974,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.008},O:{"0":0.65633},H:{"0":3.69033},L:{"0":59.28179},S:{"2.5":0},R:{_:"0"},M:{"0":0.51226},Q:{"10.4":0.008}}; 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 c1ac64ff79bcb7..90aede79b9f95e 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:{"34":0.00864,"37":0.00576,"44":0.00288,"47":0.01152,"52":0.02015,"72":0.00576,"78":0.01152,"79":0.00288,"83":0.00576,"86":0.00288,"88":0.00576,"89":0.01152,"90":0.00576,"91":0.01727,"92":0.02591,"93":0.21305,"94":1.14296,"95":0.10652,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 45 46 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 84 85 87 96 3.5 3.6"},D:{"39":0.00288,"43":0.00576,"49":0.00864,"50":0.00576,"51":0.00576,"55":0.00288,"57":0.01152,"58":0.00576,"63":0.01152,"65":0.00288,"66":0.0144,"67":0.00576,"68":0.01152,"69":0.00288,"70":0.01152,"71":0.01727,"72":0.00288,"73":0.00864,"74":0.01152,"75":0.01152,"76":0.00864,"77":0.02303,"78":0.01152,"79":0.03455,"80":0.0144,"81":0.04606,"83":0.01727,"84":0.0144,"85":0.0144,"86":0.04606,"87":0.07773,"88":0.0547,"89":0.02591,"90":0.02879,"91":0.08925,"92":0.18426,"93":0.24759,"94":0.47504,"95":5.9365,"96":3.65057,"97":0.0144,_:"4 5 6 7 8 9 10 11 12 13 14 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 52 53 54 56 59 60 61 62 64 98 99"},F:{"34":0.00288,"42":0.00576,"63":0.00576,"64":0.00576,"65":0.01727,"66":0.00576,"74":0.00288,"75":0.00288,"76":0.00288,"77":0.00864,"78":0.02015,"79":0.09213,"80":0.96734,"81":0.357,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.06622,"13":0.02879,"14":0.02015,"15":0.02879,"16":0.02879,"17":0.03167,"18":0.11804,"80":0.00864,"84":0.02015,"85":0.01727,"88":0.01152,"89":0.03455,"90":0.0144,"91":0.0144,"92":0.03743,"93":0.03743,"94":0.08349,"95":1.68422,"96":0.54989,_:"79 81 83 86 87"},E:{"4":0,"13":0.00864,"14":0.03455,"15":0.03743,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01727,"11.1":0.01727,"12.1":0.00864,"13.1":0.06334,"14.1":0.23032,"15.1":0.07773},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.00045,"7.0-7.1":0.03189,"8.1-8.4":0.0018,"9.0-9.2":0.00584,"9.3":0.12038,"10.0-10.2":0.01348,"10.3":0.13026,"11.0-11.2":0.07816,"11.3-11.4":0.06962,"12.0-12.1":0.04447,"12.2-12.5":0.93879,"13.0-13.1":0.03593,"13.2":0.00539,"13.3":0.053,"13.4-13.7":0.11095,"14.0-14.4":0.62526,"14.5-14.8":1.16832,"15.0-15.1":1.05558},P:{"4":0.59562,"5.0-5.4":0.01027,"6.2-6.4":0.01016,"7.2-7.4":0.1335,"8.2":0.01016,"9.2":0.09242,"10.1":0.03048,"11.1-11.2":0.1335,"12.0":0.02054,"13.0":0.17458,"14.0":0.55454,"15.0":1.25285},I:{"0":0,"3":0,"4":0.00214,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00257,"4.2-4.3":0.012,"4.4":0,"4.4.3-4.4.4":0.13993},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00445,"11":0.24027,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01424},N:{"10":0.02658,"11":0.22582},L:{"0":52.32079},S:{"2.5":0.02848},R:{_:"0"},M:{"0":0.1068},Q:{"10.4":0.14952},O:{"0":1.97936},H:{"0":17.499}}; +module.exports={C:{"34":0.02075,"37":0.00593,"43":0.00296,"44":0.00296,"47":0.00593,"52":0.00889,"60":0.00296,"68":0.00296,"71":0.00296,"72":0.00296,"76":0.00296,"78":0.00593,"79":0.00593,"83":0.00296,"88":0.00593,"89":0.00889,"91":0.02075,"92":0.02075,"93":0.00889,"94":0.53945,"95":0.85956,"96":0.02964,_:"2 3 4 5 6 7 8 9 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 45 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 73 74 75 77 80 81 82 84 85 86 87 90 97 3.5 3.6"},D:{"24":0.00296,"31":0.00296,"38":0.00889,"39":0.00296,"43":0.00889,"49":0.00889,"50":0.00593,"51":0.00593,"55":0.00296,"56":0.00296,"57":0.00296,"58":0.00296,"63":0.01186,"64":0.00593,"65":0.00296,"66":0.00593,"67":0.00593,"68":0.02371,"69":0.01482,"70":0.00889,"71":0.02668,"72":0.00296,"73":0.01778,"74":0.00593,"75":0.00296,"76":0.00889,"77":0.02075,"78":0.01482,"79":0.04742,"80":0.02371,"81":0.05335,"83":0.02075,"84":0.00889,"85":0.00593,"86":0.0415,"87":0.15413,"88":0.0741,"89":0.02964,"90":0.0326,"91":0.06521,"92":0.17784,"93":0.16598,"94":0.24601,"95":0.4031,"96":9.57965,"97":0.01186,_:"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 32 33 34 35 36 37 40 41 42 44 45 46 47 48 52 53 54 59 60 61 62 98 99"},F:{"36":0.00296,"42":0.00593,"63":0.00296,"64":0.00296,"65":0.01186,"66":0.01482,"75":0.00296,"77":0.00593,"78":0.01186,"79":0.03557,"80":0.04742,"81":0.49795,"82":1.0048,_:"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 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00296,"13":0.00889,"14":0.03853,"15":0.02075,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 9.1","5.1":0.02371,"7.1":0.00296,"10.1":0.00296,"11.1":0.00593,"12.1":0.00593,"13.1":0.07114,"14.1":0.11263,"15.1":0.16006,"15.2":0.01482},B:{"12":0.05928,"13":0.02964,"14":0.03557,"15":0.01778,"16":0.02371,"17":0.02964,"18":0.12745,"80":0.00593,"83":0.00296,"84":0.01482,"85":0.01778,"86":0.00296,"88":0.00296,"89":0.0415,"90":0.01186,"91":0.01482,"92":0.03557,"93":0.0326,"94":0.0415,"95":0.08596,"96":2.07184,_:"79 81 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00097,"5.0-5.1":0.00244,"6.0-6.1":0.00244,"7.0-7.1":0.03507,"8.1-8.4":0,"9.0-9.2":0.00244,"9.3":0.15976,"10.0-10.2":0.03653,"10.3":0.18022,"11.0-11.2":0.06137,"11.3-11.4":0.07355,"12.0-12.1":0.04725,"12.2-12.5":0.93521,"13.0-13.1":0.02679,"13.2":0.00731,"13.3":0.03604,"13.4-13.7":0.15976,"14.0-14.4":0.60009,"14.5-14.8":1.00047,"15.0-15.1":1.37115,"15.2":0.13005},P:{"4":0.87494,"5.0-5.4":0.01029,"6.2-6.4":0.0201,"7.2-7.4":0.13381,"8.2":0.03037,"9.2":0.08235,"10.1":0.05026,"11.1-11.2":0.07205,"12.0":0.03088,"13.0":0.20587,"14.0":0.13381,"15.0":0.33968},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00288,"4.2-4.3":0.0045,"4.4":0,"4.4.3-4.4.4":0.1254},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00932,"10":0.00466,"11":0.21425,_:"6 7 9 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.02111},O:{"0":2.33595},H:{"0":16.35332},L:{"0":53.05479},S:{"2.5":0.02111},R:{_:"0"},M:{"0":0.10554},Q:{"10.4":0.0774}}; 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 9577c94b7d2beb..de022a2766824c 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:{"40":0.00435,"47":0.00869,"48":0.00869,"52":0.02608,"56":0.00869,"58":0.00435,"64":0.00435,"68":0.00435,"72":0.03478,"78":0.03478,"81":0.00435,"84":0.00869,"85":0.00869,"87":0.02174,"88":0.06955,"89":0.48252,"90":0.03478,"91":0.03912,"92":0.05216,"93":0.45209,"94":2.26913,"95":0.13041,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 50 51 53 54 55 57 59 60 61 62 63 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 86 96 3.5 3.6"},D:{"49":0.02174,"55":0.00869,"56":0.00435,"57":0.01304,"58":0.01304,"62":0.00435,"63":0.03478,"64":0.00869,"65":0.01304,"66":0.00869,"67":0.01304,"68":0.00869,"69":0.06955,"70":0.02174,"71":0.01304,"72":0.00869,"73":0.00869,"74":0.03478,"75":0.02608,"76":0.01739,"77":0.02174,"78":0.01739,"79":0.06086,"80":0.03478,"81":0.06955,"83":0.03912,"84":0.01739,"85":0.08259,"86":0.05216,"87":0.0739,"88":0.03912,"89":0.04347,"90":0.07825,"91":0.12606,"92":0.21735,"93":0.2869,"94":0.68248,"95":12.20203,"96":7.33339,"97":0.03043,"98":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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 59 60 61 99"},F:{"36":0.01739,"37":0.00869,"42":0.00869,"65":0.00869,"66":0.00869,"70":0.00435,"74":0.00869,"75":0.00435,"77":0.01304,"78":0.03043,"79":0.06086,"80":1.71272,"81":0.88679,_:"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 67 68 69 71 72 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0739,"13":0.04347,"14":0.03043,"15":0.04347,"16":0.04347,"17":0.05216,"18":0.21735,"80":0.00869,"83":0.00869,"84":0.03478,"85":0.02608,"86":0.00435,"87":0.00869,"88":0.00435,"89":0.04347,"90":0.01739,"91":0.04782,"92":0.0739,"93":0.06955,"94":0.1478,"95":2.85598,"96":1.10849,_:"79 81"},E:{"4":0,"12":0.00435,"13":0.02608,"14":0.15215,"15":0.20866,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00869,"11.1":0.01304,"12.1":0.01739,"13.1":0.08694,"14.1":0.4347,"15.1":0.33907},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00058,"5.0-5.1":0.00117,"6.0-6.1":0.00292,"7.0-7.1":0.00819,"8.1-8.4":0.00058,"9.0-9.2":0.00058,"9.3":0.10583,"10.0-10.2":0.00292,"10.3":0.05145,"11.0-11.2":0.17716,"11.3-11.4":0.01345,"12.0-12.1":0.0228,"12.2-12.5":0.56248,"13.0-13.1":0.01403,"13.2":0.00585,"13.3":0.05028,"13.4-13.7":0.16138,"14.0-14.4":0.60984,"14.5-14.8":2.20606,"15.0-15.1":1.84764},P:{"4":0.26214,"5.0-5.4":0.01027,"6.2-6.4":0.01016,"7.2-7.4":0.20971,"8.2":0.01016,"9.2":0.09242,"10.1":0.01049,"11.1-11.2":0.08388,"12.0":0.04194,"13.0":0.10485,"14.0":0.18874,"15.0":1.57281},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00274,"4.2-4.3":0.00857,"4.4":0,"4.4.3-4.4.4":0.14698},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.011,"10":0.0055,"11":0.35735,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":44.04908},S:{"2.5":0.01131},R:{_:"0"},M:{"0":0.18655},Q:{"10.4":0.04522},O:{"0":1.71286},H:{"0":8.95372}}; +module.exports={C:{"43":0.00405,"45":0.00405,"47":0.00405,"48":0.00809,"50":0.00809,"52":0.02427,"56":0.00405,"64":0.00809,"67":0.02023,"69":0.00405,"72":0.02427,"78":0.05259,"80":0.00405,"84":0.00405,"87":0.01618,"88":0.05663,"89":0.05663,"90":0.01618,"91":0.04045,"92":0.01214,"93":0.01618,"94":0.84541,"95":1.51688,"96":0.0809,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 49 51 53 54 55 57 58 59 60 61 62 63 65 66 68 70 71 73 74 75 76 77 79 81 82 83 85 86 97 3.5 3.6"},D:{"40":0.00809,"42":0.00405,"48":0.02427,"49":0.02832,"56":0.00405,"57":0.02832,"58":0.02427,"60":0.00809,"63":0.02023,"65":0.01618,"66":0.00809,"67":0.00405,"68":0.00809,"69":0.04045,"70":0.01618,"71":0.00809,"72":0.00405,"73":0.01214,"74":0.06877,"75":0.01214,"76":0.02427,"77":0.01214,"78":0.01214,"79":0.06068,"80":0.03236,"81":0.03641,"83":0.03641,"84":0.01618,"85":0.01214,"86":0.04045,"87":0.03641,"88":0.02832,"89":0.07281,"90":0.05663,"91":0.11731,"92":0.19821,"93":0.14967,"94":0.23461,"95":0.449,"96":17.93149,"97":0.02427,"98":0.01214,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 47 50 51 52 53 54 55 59 61 62 64 99"},F:{"36":0.01214,"37":0.03236,"40":0.00405,"42":0.00809,"64":0.00405,"70":0.00809,"77":0.01618,"78":0.00809,"79":0.0445,"80":0.05259,"81":1.23777,"82":1.33081,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.00809,"12":0.00809,"13":0.05259,"14":0.19416,"15":0.15371,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00809,"11.1":0.00809,"12.1":0.02023,"13.1":0.07686,"14.1":0.39641,"15.1":0.46518,"15.2":0.10113},B:{"12":0.05663,"13":0.04045,"14":0.01618,"15":0.02427,"16":0.04045,"17":0.03236,"18":0.15371,"84":0.01618,"85":0.02023,"86":0.00405,"87":0.00809,"88":0.00405,"89":0.02832,"90":0.01214,"91":0.04045,"92":0.03641,"93":0.02427,"94":0.06472,"95":0.14562,"96":3.51511,_:"79 80 81 83"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0.00144,"6.0-6.1":0.00288,"7.0-7.1":0.02524,"8.1-8.4":0.00865,"9.0-9.2":0,"9.3":0.11466,"10.0-10.2":0.00072,"10.3":0.0512,"11.0-11.2":0.08004,"11.3-11.4":0.02668,"12.0-12.1":0.01803,"12.2-12.5":0.62015,"13.0-13.1":0.01226,"13.2":0.00721,"13.3":0.07067,"13.4-13.7":0.15937,"14.0-14.4":0.60717,"14.5-14.8":2.14169,"15.0-15.1":2.88155,"15.2":0.37642},P:{"4":0.27957,"5.0-5.4":0.01029,"6.2-6.4":0.01035,"7.2-7.4":0.22779,"8.2":0.03037,"9.2":0.02071,"10.1":0.05026,"11.1-11.2":0.1139,"12.0":0.06213,"13.0":0.10354,"14.0":0.19673,"15.0":0.34169},I:{"0":0,"3":0,"4":0.00051,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00127,"4.2-4.3":0.0061,"4.4":0,"4.4.3-4.4.4":0.1172},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.22652,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":2.03695},H:{"0":9.21373},L:{"0":45.45976},S:{"2.5":0.01191},R:{_:"0"},M:{"0":0.13103},Q:{"10.4":0.04765}}; 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 6618d54f227780..c4d6e9e992a112 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.05576,"15":0.05904,"18":0.05904,"21":0.05576,"23":0.05904,"25":0.1148,"30":0.05576,"34":0.00328,"43":0.00656,"47":0.00656,"48":0.00328,"51":0.05576,"52":0.05904,"56":0.00328,"57":0.00328,"60":0.00656,"66":0.00328,"68":0.00328,"72":0.00984,"78":0.02624,"80":0.00328,"81":0.00328,"82":0.00656,"83":0.00328,"84":0.02952,"85":0.00328,"86":0.00328,"87":0.00328,"88":0.01312,"89":0.02296,"90":0.00656,"91":0.02952,"92":0.02296,"93":0.91184,"94":7.32424,"95":0.04264,_:"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 49 50 53 54 55 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 96 3.5 3.6"},D:{"19":0.05576,"24":0.17056,"28":0.00328,"30":0.05904,"31":0.00328,"33":0.06232,"35":0.11808,"38":0.00656,"39":0.00328,"40":0.00984,"43":0.0492,"47":0.00328,"49":0.0656,"50":0.00656,"53":0.00656,"54":0.05904,"55":0.06232,"56":0.29192,"57":0.00656,"58":0.00984,"60":0.00328,"61":0.00984,"62":0.00656,"63":0.01312,"64":0.00656,"65":0.00656,"66":0.00328,"67":0.00984,"68":0.00984,"69":0.0164,"70":0.0164,"71":0.00656,"72":0.01312,"73":0.00656,"74":0.01312,"75":0.00984,"76":0.00984,"77":0.00984,"78":0.01312,"79":0.06232,"80":0.02624,"81":0.02952,"83":0.02296,"84":0.02952,"85":0.02624,"86":0.06232,"87":0.25256,"88":0.0492,"89":0.04264,"90":0.04264,"91":0.0984,"92":0.13448,"93":0.1476,"94":0.48872,"95":7.5112,"96":4.8544,"97":0.01312,"98":0.00328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 29 32 34 36 37 41 42 44 45 46 48 51 52 59 99"},F:{"28":0.00656,"36":0.00328,"43":0.05904,"64":0.00656,"65":0.00328,"72":0.00656,"73":0.00656,"76":0.00328,"77":0.00656,"78":0.00984,"79":0.02624,"80":0.48872,"81":0.19024,_:"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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.05576},B:{"12":0.01312,"13":0.00656,"14":0.00656,"15":0.00656,"16":0.00984,"17":0.01312,"18":0.04592,"84":0.01312,"85":0.00656,"86":0.00328,"88":0.00328,"89":0.01312,"90":0.00656,"91":0.00984,"92":0.02296,"93":0.0164,"94":0.0492,"95":1.15128,"96":0.4428,_:"79 80 81 83 87"},E:{"4":0,"5":0.05576,"12":0.00328,"13":0.03936,"14":0.07216,"15":0.1148,_:"0 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00656,"10.1":0.00328,"11.1":0.00984,"12.1":0.01968,"13.1":0.07216,"14.1":0.23288,"15.1":0.164},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00519,"6.0-6.1":1.15243,"7.0-7.1":0.02767,"8.1-8.4":0.00519,"9.0-9.2":0.00605,"9.3":0.09164,"10.0-10.2":0.16858,"10.3":0.13314,"11.0-11.2":0.09164,"11.3-11.4":0.04323,"12.0-12.1":0.04323,"12.2-12.5":1.0288,"13.0-13.1":0.03804,"13.2":0.01556,"13.3":0.09942,"13.4-13.7":0.26455,"14.0-14.4":1.03572,"14.5-14.8":2.31177,"15.0-15.1":2.08008},P:{"4":0.29831,"5.0-5.4":0.01027,"6.2-6.4":0.01029,"7.2-7.4":0.24688,"8.2":0.01016,"9.2":0.04115,"10.1":0.02057,"11.1-11.2":0.1543,"12.0":0.07201,"13.0":0.21602,"14.0":0.23659,"15.0":2.23217},I:{"0":0,"3":0,"4":0.00143,"2.1":0,"2.2":0,"2.3":0,"4.1":0.005,"4.2-4.3":0.05073,"4.4":0,"4.4.3-4.4.4":0.25867},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.13201,"9":0.12844,"10":0.12844,"11":0.2212,_:"6 7 5.5"},J:{"7":0,"10":0.00672},N:{"10":0.02827,"11":0.22582},L:{"0":48.24664},S:{"2.5":0.02016},R:{_:"0"},M:{"0":0.2352},Q:{"10.4":0.01344},O:{"0":0.61152},H:{"0":8.7033}}; +module.exports={C:{"2":0.05416,"15":0.05416,"18":0.05416,"21":0.05416,"23":0.05416,"25":0.10832,"30":0.05416,"34":0.00339,"43":0.00677,"47":0.00677,"48":0.00339,"51":0.05755,"52":0.05755,"56":0.00339,"60":0.00677,"68":0.00339,"72":0.00677,"78":0.02031,"80":0.00339,"81":0.00339,"83":0.00339,"84":0.03047,"87":0.00677,"88":0.01354,"89":0.01693,"90":0.00677,"91":0.02708,"92":0.01354,"93":0.02031,"94":2.96865,"95":6.73954,"96":0.0237,_:"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 49 50 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 82 85 86 97 3.5 3.6"},D:{"11":0.00339,"19":0.05416,"24":0.16248,"28":0.00339,"30":0.05416,"33":0.06093,"35":0.10832,"38":0.00677,"40":0.00677,"43":0.05078,"47":0.00339,"49":0.05416,"50":0.00339,"53":0.00339,"54":0.05755,"55":0.06093,"56":0.28434,"57":0.00677,"58":0.01016,"60":0.00339,"61":0.00339,"62":0.00339,"63":0.01354,"64":0.00677,"65":0.01016,"66":0.01016,"67":0.01354,"68":0.01016,"69":0.01354,"70":0.01693,"71":0.01016,"72":0.01016,"73":0.00677,"74":0.01354,"75":0.01354,"76":0.01016,"77":0.00677,"78":0.01016,"79":0.07109,"80":0.0237,"81":0.02708,"83":0.0237,"84":0.03385,"85":0.03047,"86":0.0677,"87":0.18618,"88":0.04401,"89":0.03724,"90":0.03724,"91":0.07786,"92":0.11848,"93":0.14556,"94":0.25388,"95":0.27419,"96":11.67487,"97":0.01016,"98":0.00677,_:"4 5 6 7 8 9 10 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 59 99"},F:{"28":0.00677,"43":0.05755,"64":0.00339,"65":0.00339,"72":0.00339,"73":0.00339,"77":0.00339,"78":0.00677,"79":0.0237,"80":0.0237,"81":0.2708,"82":0.37912,_:"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 66 67 68 69 70 71 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.05416},E:{"4":0,"5":0.05416,"12":0.00339,"13":0.02708,"14":0.05755,"15":0.06093,_:"0 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01016,"10.1":0.00339,"11.1":0.01016,"12.1":0.01354,"13.1":0.06432,"14.1":0.18618,"15.1":0.25049,"15.2":0.03385},B:{"12":0.01354,"13":0.00677,"14":0.00677,"15":0.00677,"16":0.01016,"17":0.01354,"18":0.04062,"84":0.01016,"85":0.00677,"86":0.00339,"89":0.01354,"90":0.00677,"91":0.00677,"92":0.01693,"93":0.01016,"94":0.02031,"95":0.06093,"96":1.53002,_:"79 80 81 83 87 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00453,"6.0-6.1":1.02042,"7.0-7.1":0.02716,"8.1-8.4":0.00543,"9.0-9.2":0.00634,"9.3":0.09054,"10.0-10.2":0.15664,"10.3":0.13763,"11.0-11.2":0.09869,"11.3-11.4":0.05614,"12.0-12.1":0.05795,"12.2-12.5":1.22143,"13.0-13.1":0.03441,"13.2":0.0163,"13.3":0.09869,"13.4-13.7":0.26891,"14.0-14.4":1.0331,"14.5-14.8":1.70674,"15.0-15.1":2.73893,"15.2":0.27072},P:{"4":0.32856,"5.0-5.4":0.01029,"6.2-6.4":0.01035,"7.2-7.4":0.24642,"8.2":0.03037,"9.2":0.04107,"10.1":0.02053,"11.1-11.2":0.14374,"12.0":0.07187,"13.0":0.17455,"14.0":0.21562,"15.0":0.4723},I:{"0":0,"3":0,"4":0.00129,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00516,"4.2-4.3":0.0426,"4.4":0,"4.4.3-4.4.4":0.21558},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.12605,"9":0.12605,"10":0.12605,"11":0.16683,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0.00662},O:{"0":0.63514},H:{"0":7.72302},L:{"0":48.32074},S:{"2.5":0.01985},R:{_:"0"},M:{"0":0.23818},Q:{"10.4":0.01323}}; 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 20aa62490194df..1efe2fabf486ac 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:{"91":0.02392,"94":0.06937,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 95 96 3.5 3.6"},D:{"37":0.02392,"57":0.16266,"92":0.55734,"94":0.09329,"95":0.99746,"96":0.78936,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 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 93 97 98 99"},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 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"},E:{"4":0,"14":0.02392,"15":0.23202,_:"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","15.1":18.43993},G:{"8":0,"3.2":0,"4.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.01759,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":2.35889,"14.0-14.4":0.08943,"14.5-14.8":1.7065,"15.0-15.1":10.4882},P:{"4":0.05019,"5.0-5.4":0.01027,"6.2-6.4":0.01029,"7.2-7.4":0.05019,"8.2":0.01016,"9.2":0.1606,"10.1":0.02057,"11.1-11.2":0.1543,"12.0":0.07201,"13.0":0.04015,"14.0":0.21078,"15.0":1.68625},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.04545,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":53.15612},S:{"2.5":0},R:{_:"0"},M:{"0":0.16738},Q:{"10.4":0.02282},O:{"0":3.77357},H:{"0":2.04558}}; +module.exports={C:{"78":0.01449,"91":0.18837,"94":0.65205,"95":1.05777,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 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 96 97 3.5 3.6"},D:{"84":0.15939,"90":0.01449,"92":0.55062,"93":0.01449,"95":0.07245,"96":8.48534,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 86 87 88 89 91 94 97 98 99"},F:{"79":0.01449,"81":0.46368,"82":0.27531,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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},E:{"4":0,"7":0.01449,"15":0.01449,_:"0 5 6 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 9.1 10.1 11.1 12.1","7.1":0.02898,"13.1":0.02898,"14.1":0.1449,"15.1":10.25602,"15.2":4.4977},B:{"12":0.08694,"96":0.42021,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},G:{"8":0,"3.2":0,"4.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.01477,"12.2-12.5":0.43667,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.08438,"14.0-14.4":0.09915,"14.5-14.8":1.33743,"15.0-15.1":17.0237,"15.2":2.09685},P:{"4":0.32856,"5.0-5.4":0.01029,"6.2-6.4":0.01035,"7.2-7.4":0.24642,"8.2":0.03037,"9.2":0.04107,"10.1":0.02053,"11.1-11.2":0.14374,"12.0":0.24987,"13.0":0.11994,"14.0":0.21562,"15.0":0.73961},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.27531,_:"6 7 8 9 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":1.34938},H:{"0":2.75},L:{"0":42.00619},S:{"2.5":0},R:{_:"0"},M:{"0":0.52555},Q:{"10.4":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 a7188f2f39ae54..18b96083e7b286 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.00678,"36":0.01016,"43":0.0847,"47":0.00678,"48":0.00339,"52":0.06776,"55":0.00678,"56":0.01694,"60":0.00339,"68":0.00339,"72":0.00678,"78":0.02033,"79":0.00678,"80":0.00339,"81":0.00339,"82":0.00339,"83":0.00339,"84":0.00678,"85":0.00339,"86":0.00339,"87":0.00678,"88":0.01355,"89":0.01355,"90":0.01016,"91":0.0271,"92":0.02033,"93":0.23038,"94":1.23662,"95":0.04066,_:"2 3 4 5 6 7 8 9 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 49 50 51 53 54 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 96 3.5 3.6"},D:{"11":0.00339,"22":0.01016,"26":0.00678,"34":0.01355,"35":0.00678,"38":0.03388,"42":0.00678,"43":0.00339,"47":0.01355,"48":0.01016,"49":0.09148,"50":0.00339,"51":0.00678,"53":0.02372,"55":0.01355,"56":0.01355,"57":0.01355,"58":0.01016,"59":0.00339,"60":0.00339,"61":0.0271,"62":0.01355,"63":0.01694,"64":0.00678,"65":0.01355,"66":0.00678,"67":0.01016,"68":0.01016,"69":0.08809,"70":0.05082,"71":0.02372,"72":0.05421,"73":0.01355,"74":0.05082,"75":0.03727,"76":0.01694,"77":0.0271,"78":0.04066,"79":0.13891,"80":0.04743,"81":0.03388,"83":0.05421,"84":0.04743,"85":0.04404,"86":0.07115,"87":0.1965,"88":0.04404,"89":0.06437,"90":0.05421,"91":0.09148,"92":0.26426,"93":0.26088,"94":0.72842,"95":12.36959,"96":7.3689,"97":0.01694,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 44 45 46 52 54 98 99"},F:{"28":0.00678,"36":0.00678,"40":0.00678,"46":0.01694,"79":0.01016,"80":0.3388,"81":0.1423,_:"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 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,"14":0.00339,"15":0.00339,"16":0.00678,"17":0.00678,"18":0.03049,"84":0.00678,"85":0.00339,"86":0.00678,"89":0.01016,"90":0.00339,"91":0.00678,"92":0.01355,"93":0.01355,"94":0.04404,"95":1.66012,"96":0.67082,_:"13 79 80 81 83 87 88"},E:{"4":0,"8":0.00339,"12":0.00678,"13":0.03727,"14":0.16262,"15":0.25749,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.02372,"10.1":0.00678,"11.1":0.01355,"12.1":0.0271,"13.1":0.12197,"14.1":0.7894,"15.1":0.31847},G:{"8":0.00092,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00461,"5.0-5.1":0.00737,"6.0-6.1":0.00645,"7.0-7.1":0.02764,"8.1-8.4":0.0129,"9.0-9.2":0.02119,"9.3":0.08199,"10.0-10.2":0.02303,"10.3":0.1041,"11.0-11.2":0.09397,"11.3-11.4":0.03593,"12.0-12.1":0.04791,"12.2-12.5":0.54356,"13.0-13.1":0.03869,"13.2":0.0175,"13.3":0.08752,"13.4-13.7":0.28191,"14.0-14.4":0.92128,"14.5-14.8":3.70909,"15.0-15.1":3.14434},P:{"4":0.34797,"5.0-5.4":0.01027,"6.2-6.4":0.01023,"7.2-7.4":0.11258,"8.2":0.01016,"9.2":0.05117,"10.1":0.02047,"11.1-11.2":0.11258,"12.0":0.06141,"13.0":0.18422,"14.0":0.19445,"15.0":1.78079},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03984,"4.2-4.3":0.12947,"4.4":0,"4.4.3-4.4.4":0.65732},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0257,"9":0.0257,"10":0.00857,"11":1.12243,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":50.99123},S:{"2.5":0.18516},R:{_:"0"},M:{"0":0.17194},Q:{"10.4":0.39678},O:{"0":2.11616},H:{"0":1.24589}}; +module.exports={C:{"34":0.00685,"36":0.0137,"43":0.08218,"47":0.00342,"52":0.06506,"55":0.00342,"56":0.01027,"60":0.00342,"68":0.00342,"72":0.00685,"78":0.01712,"79":0.00342,"80":0.00342,"81":0.00342,"82":0.00342,"83":0.00342,"84":0.00685,"87":0.00342,"88":0.01027,"89":0.0137,"90":0.01027,"91":0.02397,"92":0.01027,"93":0.0137,"94":0.45539,"95":0.98954,"96":0.02739,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 85 86 97 3.5 3.6"},D:{"11":0.00342,"22":0.01027,"26":0.00685,"34":0.01712,"35":0.00342,"38":0.04109,"42":0.00685,"43":0.00342,"47":0.0137,"48":0.01027,"49":0.0719,"50":0.00342,"53":0.02054,"55":0.01027,"56":0.01027,"57":0.01027,"58":0.0137,"60":0.00685,"61":0.0137,"62":0.0137,"63":0.0137,"64":0.00685,"65":0.01712,"66":0.00685,"67":0.01027,"68":0.01027,"69":0.08218,"70":0.04794,"71":0.02397,"72":0.05821,"73":0.0137,"74":0.03082,"75":0.03424,"76":0.0137,"77":0.03766,"78":0.04109,"79":0.14381,"80":0.04451,"81":0.03766,"83":0.05136,"84":0.04451,"85":0.04109,"86":0.06848,"87":0.13696,"88":0.03766,"89":0.05478,"90":0.04794,"91":0.07533,"92":0.22941,"93":0.20202,"94":0.31158,"95":0.41773,"96":19.90714,"97":0.01712,"98":0.00685,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 44 45 46 51 52 54 59 99"},F:{"28":0.00685,"36":0.01027,"40":0.00685,"46":0.01712,"79":0.00685,"80":0.00685,"81":0.21229,"82":0.29446,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"8":0.00342,"12":0.00342,"13":0.03766,"14":0.14381,"15":0.13696,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1","5.1":0.02054,"9.1":0.00342,"10.1":0.00685,"11.1":0.0137,"12.1":0.02397,"13.1":0.11299,"14.1":0.59578,"15.1":0.57523,"15.2":0.0719},B:{"12":0.00685,"14":0.00342,"15":0.00342,"16":0.00685,"17":0.00685,"18":0.02739,"84":0.00685,"85":0.00342,"86":0.00342,"89":0.00685,"90":0.00342,"91":0.00342,"92":0.01027,"93":0.00685,"94":0.0137,"95":0.04794,"96":2.3112,_:"13 79 80 81 83 87 88"},G:{"8":0.00097,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00484,"5.0-5.1":0.00774,"6.0-6.1":0.00581,"7.0-7.1":0.02999,"8.1-8.4":0.01064,"9.0-9.2":0.02419,"9.3":0.07741,"10.0-10.2":0.0329,"10.3":0.10353,"11.0-11.2":0.1074,"11.3-11.4":0.03387,"12.0-12.1":0.04548,"12.2-12.5":0.53217,"13.0-13.1":0.03677,"13.2":0.01645,"13.3":0.08321,"13.4-13.7":0.26995,"14.0-14.4":0.86791,"14.5-14.8":2.67341,"15.0-15.1":4.27958,"15.2":0.43057},P:{"4":0.36128,"5.0-5.4":0.01029,"6.2-6.4":0.01032,"7.2-7.4":0.11354,"8.2":0.03037,"9.2":0.05161,"10.1":0.01032,"11.1-11.2":0.11354,"12.0":0.04129,"13.0":0.15483,"14.0":0.16516,"15.0":0.38192},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03229,"4.2-4.3":0.12915,"4.4":0,"4.4.3-4.4.4":0.66727},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02611,"9":0.02611,"10":0.0087,"11":1.07927,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":2.03887},H:{"0":1.23288},L:{"0":50.7498},S:{"2.5":0.17758},R:{_:"0"},M:{"0":0.171},Q:{"10.4":0.40777}}; 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 06dc1335eb3427..9bd42c3d5fd920 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -1 +1 @@ -module.exports={C:{"48":0.01045,"52":0.1097,"55":0.01045,"56":0.01045,"59":0.01045,"60":0.01045,"66":0.00522,"68":0.0209,"72":0.01045,"77":0.01567,"78":0.14627,"79":0.0209,"80":0.01045,"81":0.04179,"82":0.0209,"83":0.01045,"84":0.03134,"85":0.01045,"86":0.01045,"87":0.01045,"88":0.03657,"89":0.03657,"90":0.02612,"91":0.12538,"92":0.07314,"93":0.7627,"94":4.11129,"95":0.01567,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 57 58 61 62 63 64 65 67 69 70 71 73 74 75 76 96 3.5 3.6"},D:{"22":0.01045,"38":0.01567,"40":0.03134,"43":0.01045,"47":0.01567,"48":0.01567,"49":0.19851,"51":0.01045,"52":0.01045,"53":0.00522,"54":0.01045,"56":0.0209,"58":0.00522,"59":0.00522,"60":0.01567,"61":0.05224,"62":0.01045,"63":0.01045,"64":0.0209,"65":0.02612,"66":0.03657,"67":0.01567,"68":0.01045,"69":0.04179,"70":0.03134,"71":0.01567,"72":0.03657,"73":0.01567,"74":0.01567,"75":0.16194,"76":0.04179,"77":0.0209,"78":0.02612,"79":0.13582,"80":0.09403,"81":0.03134,"83":0.05746,"84":0.07836,"85":0.16717,"86":0.10448,"87":0.43882,"88":0.08358,"89":0.08358,"90":0.07836,"91":0.21418,"92":0.25075,"93":0.36568,"94":1.73437,"95":16.07947,"96":9.9465,"97":0.01045,_:"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 41 42 44 45 46 50 55 57 98 99"},F:{"31":0.0209,"36":0.01045,"40":0.01567,"68":0.00522,"77":0.00522,"78":0.01045,"79":0.04702,"80":1.59854,"81":0.70002,_:"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 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00522},B:{"12":0.01045,"15":0.01045,"16":0.00522,"17":0.01567,"18":0.04179,"84":0.01045,"85":0.01045,"86":0.01045,"87":0.00522,"88":0.00522,"89":0.01567,"90":0.01045,"91":0.01567,"92":0.02612,"93":0.03134,"94":0.1515,"95":3.6568,"96":1.4366,_:"13 14 79 80 81 83"},E:{"4":0,"12":0.01045,"13":0.07314,"14":0.48061,"15":0.77838,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01045,"10.1":0.01045,"11.1":0.05224,"12.1":0.09403,"13.1":0.37613,"14.1":2.06348,"15.1":1.05002},G:{"8":0.00157,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00472,"6.0-6.1":0.00472,"7.0-7.1":0.01574,"8.1-8.4":0.0063,"9.0-9.2":0.01574,"9.3":0.12436,"10.0-10.2":0.00945,"10.3":0.14482,"11.0-11.2":0.03778,"11.3-11.4":0.0425,"12.0-12.1":0.02834,"12.2-12.5":0.63282,"13.0-13.1":0.02991,"13.2":0.01574,"13.3":0.08343,"13.4-13.7":0.27233,"14.0-14.4":0.94293,"14.5-14.8":7.78269,"15.0-15.1":5.5458},P:{"4":0.11692,"5.0-5.4":0.01027,"6.2-6.4":0.01023,"7.2-7.4":0.01063,"8.2":0.01016,"9.2":0.01063,"10.1":0.02047,"11.1-11.2":0.07441,"12.0":0.03189,"13.0":0.12755,"14.0":0.14881,"15.0":2.74241},I:{"0":0,"3":0,"4":0.00556,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00487,"4.2-4.3":0.00904,"4.4":0,"4.4.3-4.4.4":0.05217},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0173,"9":0.0173,"10":0.01153,"11":0.39791,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":28.3871},S:{"2.5":0},R:{_:"0"},M:{"0":0.3391},Q:{"10.4":0.00478},O:{"0":0.14806},H:{"0":0.40694}}; +module.exports={C:{"45":0.00511,"48":0.01022,"52":0.11246,"55":0.05623,"56":0.01022,"59":0.01022,"60":0.01022,"66":0.00511,"68":0.02045,"72":0.01022,"77":0.01534,"78":0.12269,"79":0.02045,"80":0.01022,"81":0.04601,"82":0.01022,"83":0.01022,"84":0.03067,"85":0.00511,"86":0.01022,"87":0.02556,"88":0.03067,"89":0.03067,"90":0.05112,"91":0.13802,"92":0.03578,"93":0.06646,"94":1.64095,"95":3.03142,"96":0.01022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 57 58 61 62 63 64 65 67 69 70 71 73 74 75 76 97 3.5 3.6"},D:{"15":0.00511,"22":0.01022,"38":0.01534,"40":0.03578,"43":0.01022,"47":0.01534,"48":0.01534,"49":0.12269,"51":0.01534,"52":0.01534,"53":0.00511,"54":0.00511,"56":0.01534,"58":0.00511,"60":0.02045,"61":0.01022,"62":0.01022,"63":0.01022,"64":0.02556,"65":0.02045,"66":0.0409,"67":0.01534,"68":0.01022,"69":0.05623,"70":0.03067,"71":0.01534,"72":0.03578,"73":0.01022,"74":0.01534,"75":0.17892,"76":0.03578,"77":0.02045,"78":0.03067,"79":0.14825,"80":0.09202,"81":0.03578,"83":0.04601,"84":0.08179,"85":0.15847,"86":0.09713,"87":0.24538,"88":0.06134,"89":0.07157,"90":0.06134,"91":0.13802,"92":0.16358,"93":0.36295,"94":0.78214,"95":0.71568,"96":25.56511,"97":0.02045,_:"4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 50 55 57 59 98 99"},F:{"31":0.02045,"36":0.01022,"40":0.01534,"46":0.00511,"68":0.01022,"76":0.02556,"77":0.00511,"78":0.00511,"79":0.02045,"80":0.0409,"81":1.24733,"82":1.09908,_:"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 71 72 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.00511},E:{"4":0,"12":0.01022,"13":0.06646,"14":0.41407,"15":0.40896,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.01022,"9.1":0.01022,"10.1":0.01022,"11.1":0.05112,"12.1":0.0869,"13.1":0.36806,"14.1":1.52849,"15.1":1.72274,"15.2":0.22493},B:{"12":0.01022,"15":0.01022,"16":0.00511,"17":0.01022,"18":0.03578,"84":0.01022,"85":0.01022,"86":0.01022,"87":0.00511,"89":0.01022,"90":0.01022,"91":0.01022,"92":0.03067,"93":0.01534,"94":0.03067,"95":0.18914,"96":4.89218,_:"13 14 79 80 81 83 88"},G:{"8":0.00162,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00487,"6.0-6.1":0.00487,"7.0-7.1":0.01622,"8.1-8.4":0.00649,"9.0-9.2":0.01622,"9.3":0.12166,"10.0-10.2":0.00811,"10.3":0.12653,"11.0-11.2":0.03082,"11.3-11.4":0.04704,"12.0-12.1":0.02758,"12.2-12.5":0.62616,"13.0-13.1":0.02758,"13.2":0.01298,"13.3":0.07624,"13.4-13.7":0.25468,"14.0-14.4":0.83704,"14.5-14.8":5.0417,"15.0-15.1":8.30551,"15.2":0.62778},P:{"4":0.12649,"5.0-5.4":0.01029,"6.2-6.4":0.01032,"7.2-7.4":0.01054,"8.2":0.03037,"9.2":0.02108,"10.1":0.01032,"11.1-11.2":0.07379,"12.0":0.03162,"13.0":0.11595,"14.0":0.12649,"15.0":0.4111},I:{"0":0,"3":0,"4":0.00581,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00581,"4.2-4.3":0.00944,"4.4":0,"4.4.3-4.4.4":0.05228},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01741,"9":0.01741,"10":0.01161,"11":0.38299,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.15156},H:{"0":0.41657},L:{"0":29.15822},S:{"2.5":0},R:{_:"0"},M:{"0":0.36668},Q:{"10.4":0.00489}}; 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 95d029ec07522b..6b5d43e58d672e 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.1058,"11":0.01008,"38":0.00504,"43":0.00504,"44":0.02519,"45":0.01008,"48":0.01008,"52":0.04534,"54":0.01008,"55":0.01008,"56":0.00504,"57":0.00504,"58":0.01511,"59":0.00504,"60":0.00504,"61":0.00504,"63":0.01511,"66":0.01511,"68":0.01008,"72":0.00504,"76":0.01008,"78":0.12595,"79":0.01008,"80":0.01008,"81":0.01008,"82":0.01511,"83":0.01008,"84":0.01008,"85":0.00504,"86":0.01008,"87":0.00504,"88":0.01511,"89":0.02015,"90":0.01511,"91":0.07053,"92":0.0403,"93":0.40808,"94":1.99505,"95":0.01008,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 62 64 65 67 69 70 71 73 74 75 77 96 3.5 3.6"},D:{"33":0.00504,"38":0.00504,"40":0.01511,"46":0.01008,"47":0.01008,"48":0.06549,"49":0.11587,"52":0.00504,"56":0.10076,"58":0.00504,"59":0.01008,"60":0.01008,"61":0.01511,"62":0.00504,"63":0.01008,"64":0.0403,"65":0.02015,"66":0.0403,"67":0.02015,"68":0.01008,"69":0.02015,"70":0.05542,"71":0.00504,"72":0.05038,"73":0.01008,"74":0.02519,"75":0.03023,"76":0.17129,"77":0.01511,"78":0.05038,"79":0.27205,"80":0.09068,"81":0.08565,"83":0.19648,"84":0.18641,"85":0.16625,"86":0.1461,"87":0.36274,"88":0.11587,"89":0.18137,"90":0.14106,"91":0.38289,"92":0.61464,"93":0.87661,"94":3.67774,"95":14.2525,"96":6.92221,"97":0.02015,"98":0.0403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 43 44 45 50 51 53 54 55 57 99"},F:{"79":0.01511,"80":0.40808,"81":0.16625,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00504},B:{"12":0.01008,"15":0.01008,"16":0.01008,"17":0.02015,"18":0.03527,"84":0.01008,"85":0.01511,"86":0.01008,"87":0.06549,"88":0.00504,"89":0.01511,"90":0.01008,"91":0.01511,"92":0.02519,"93":0.02519,"94":0.37785,"95":4.19665,"96":1.39553,_:"13 14 79 80 81 83"},E:{"4":0,"8":0.01008,"9":0.01008,"11":0.00504,"12":0.01511,"13":0.09572,"14":0.55922,"15":1.09828,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.11084,"10.1":0.02519,"11.1":0.07557,"12.1":0.15114,"13.1":1.56682,"14.1":3.20417,"15.1":1.28973},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.005,"6.0-6.1":0.01,"7.0-7.1":0.015,"8.1-8.4":0.0175,"9.0-9.2":0.015,"9.3":0.12253,"10.0-10.2":0.02,"10.3":0.14253,"11.0-11.2":0.06001,"11.3-11.4":0.06502,"12.0-12.1":0.06752,"12.2-12.5":0.71267,"13.0-13.1":0.04751,"13.2":0.02751,"13.3":0.14253,"13.4-13.7":0.46261,"14.0-14.4":1.49036,"14.5-14.8":12.99811,"15.0-15.1":8.57705},P:{"4":0.04325,"5.0-5.4":0.01027,"6.2-6.4":0.01023,"7.2-7.4":0.01063,"8.2":0.01016,"9.2":0.01063,"10.1":0.02047,"11.1-11.2":0.04325,"12.0":0.02163,"13.0":0.0865,"14.0":0.10813,"15.0":1.73009},I:{"0":0,"3":0,"4":0.00726,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00218,"4.2-4.3":0.01597,"4.4":0,"4.4.3-4.4.4":0.03412},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02834,"9":0.15303,"11":0.5441,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":22.39578},S:{"2.5":0},R:{_:"0"},M:{"0":0.42169},Q:{"10.4":0.00992},O:{"0":0.15379},H:{"0":0.21605}}; +module.exports={C:{"4":0.09674,"11":0.00967,"38":0.00484,"43":0.00484,"44":0.02419,"45":0.00967,"48":0.00967,"52":0.04353,"55":0.07256,"56":0.04353,"59":0.00484,"60":0.00484,"63":0.00967,"68":0.00484,"72":0.02419,"76":0.00484,"78":0.11125,"79":0.00967,"80":0.00967,"81":0.00967,"82":0.00967,"83":0.00484,"84":0.00967,"85":0.00484,"86":0.00967,"87":0.01451,"88":0.01451,"89":0.01935,"90":0.01451,"91":0.07256,"92":0.01935,"93":0.02902,"94":0.82713,"95":1.5817,"96":0.00484,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 57 58 61 62 64 65 66 67 69 70 71 73 74 75 77 97 3.5 3.6"},D:{"33":0.00484,"35":0.00967,"38":0.00967,"40":0.01935,"43":0.00484,"46":0.00967,"47":0.00967,"48":0.06772,"49":0.08707,"52":0.00484,"56":0.08707,"58":0.00484,"59":0.00967,"60":0.00967,"63":0.00967,"64":0.04353,"65":0.01451,"66":0.04353,"67":0.01935,"68":0.00967,"69":0.01935,"70":0.05321,"71":0.00484,"72":0.05321,"73":0.00967,"74":0.02419,"75":0.02419,"76":0.21283,"77":0.01451,"78":0.02419,"79":0.33859,"80":0.08707,"81":0.08223,"83":0.24669,"84":0.14995,"85":0.14511,"86":0.12093,"87":0.24185,"88":0.07256,"89":0.08223,"90":0.10641,"91":0.25152,"92":0.42082,"93":0.47886,"94":1.70746,"95":1.14153,"96":21.4134,"97":0.02902,"98":0.01935,"99":0.0387,_:"4 5 6 7 8 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 41 42 44 45 50 51 53 54 55 57 61 62"},F:{"79":0.00484,"80":0.01451,"81":0.28538,"82":0.30473,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 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},E:{"4":0,"8":0.00484,"9":0.00967,"11":0.00484,"12":0.01451,"13":0.08707,"14":0.4837,"15":0.53207,_:"0 5 6 7 10 3.1 3.2 6.1 7.1","5.1":0.00484,"9.1":0.04837,"10.1":0.02419,"11.1":0.07256,"12.1":0.14511,"13.1":1.48496,"14.1":2.26372,"15.1":2.38948,"15.2":0.33375},B:{"12":0.00967,"15":0.00967,"16":0.01451,"17":0.01451,"18":0.02902,"84":0.00967,"85":0.01451,"86":0.00967,"87":0.03386,"89":0.00967,"90":0.00967,"91":0.00967,"92":0.01451,"93":0.00967,"94":0.0387,"95":0.29022,"96":5.26266,_:"13 14 79 80 81 83 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01062,"7.0-7.1":0.01328,"8.1-8.4":0.01593,"9.0-9.2":0.01328,"9.3":0.12479,"10.0-10.2":0.01593,"10.3":0.14603,"11.0-11.2":0.05576,"11.3-11.4":0.06372,"12.0-12.1":0.06372,"12.2-12.5":0.69564,"13.0-13.1":0.04514,"13.2":0.0239,"13.3":0.13276,"13.4-13.7":0.42216,"14.0-14.4":1.34614,"14.5-14.8":8.18305,"15.0-15.1":13.97385,"15.2":1.19215},P:{"4":0.05453,"5.0-5.4":0.01029,"6.2-6.4":0.01032,"7.2-7.4":0.01054,"8.2":0.03037,"9.2":0.02108,"10.1":0.01032,"11.1-11.2":0.03272,"12.0":0.01091,"13.0":0.06544,"14.0":0.09815,"15.0":0.22903},I:{"0":0,"3":0,"4":0.00818,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00327,"4.2-4.3":0.01882,"4.4":0,"4.4.3-4.4.4":0.03683},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01643,"9":0.14239,"11":0.50385,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.14454},H:{"0":0.2248},L:{"0":23.19926},S:{"2.5":0},R:{_:"0"},M:{"0":0.43877},Q:{"10.4":0.01032}}; 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 4ee4dee23b72d0..683aa9a4c2d597 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.00552,"34":0.00552,"48":0.00552,"52":0.03862,"68":0.00552,"78":0.08276,"82":0.01655,"84":0.01103,"85":0.01103,"86":0.01103,"88":0.01655,"89":0.02759,"90":0.02207,"91":0.04965,"92":0.02759,"93":0.44136,"94":2.19025,"95":0.01103,_:"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 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 87 96 3.5 3.6"},D:{"20":0.00552,"25":0.00552,"26":0.00552,"34":0.01655,"38":0.06069,"49":0.13241,"53":0.02207,"56":0.01103,"57":0.00552,"58":0.00552,"59":0.01103,"60":0.01655,"61":0.01655,"63":0.01103,"64":0.02759,"65":0.0331,"66":0.01103,"67":0.02207,"68":0.01103,"69":0.02759,"70":0.03862,"71":0.01655,"72":0.04414,"73":0.02207,"74":0.02759,"75":0.02207,"76":0.0331,"77":0.01103,"78":0.02759,"79":0.26482,"80":0.07172,"81":0.0331,"83":0.0331,"84":0.0331,"85":0.02759,"86":0.06069,"87":0.29792,"88":0.07172,"89":0.08827,"90":0.12137,"91":0.18206,"92":0.68411,"93":0.57929,"94":2.7254,"95":18.61988,"96":9.96922,"97":0.01103,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 62 98 99"},F:{"46":0.03862,"79":0.01103,"80":0.35861,"81":0.14896,_:"9 11 12 15 16 17 18 19 20 21 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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00552,"16":0.01103,"17":0.00552,"18":0.03862,"84":0.00552,"85":0.00552,"86":0.01103,"88":0.00552,"89":0.01655,"90":0.01103,"91":0.01655,"92":0.02759,"93":0.0331,"94":0.20965,"95":3.96672,"96":1.57235,_:"12 13 14 79 80 81 83 87"},E:{"4":0,"11":0.00552,"12":0.02207,"13":0.14896,"14":0.71721,"15":1.23581,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01103,"10.1":0.0331,"11.1":0.08276,"12.1":0.17103,"13.1":0.65101,"14.1":4.29774,"15.1":1.47304},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01096,"6.0-6.1":0.02411,"7.0-7.1":0.0263,"8.1-8.4":0.04164,"9.0-9.2":0.01973,"9.3":0.28274,"10.0-10.2":0.0263,"10.3":0.3178,"11.0-11.2":0.09644,"11.3-11.4":0.09425,"12.0-12.1":0.08329,"12.2-12.5":1.31286,"13.0-13.1":0.04383,"13.2":0.02411,"13.3":0.14466,"13.4-13.7":0.43835,"14.0-14.4":1.25587,"14.5-14.8":11.08367,"15.0-15.1":6.59497},P:{"4":0.38212,"5.0-5.4":0.01027,"6.2-6.4":0.01023,"7.2-7.4":0.02184,"8.2":0.01016,"9.2":0.02184,"10.1":0.02047,"11.1-11.2":0.05459,"12.0":0.02184,"13.0":0.12009,"14.0":0.16376,"15.0":2.48921},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0008,"4.2-4.3":0.0036,"4.4":0,"4.4.3-4.4.4":0.01801},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0118,"11":0.75507,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":19.34475},S:{"2.5":0},R:{_:"0"},M:{"0":0.40347},Q:{"10.4":0.0269},O:{"0":0.17484},H:{"0":0.1825}}; +module.exports={C:{"11":0.00532,"34":0.01064,"48":0.00532,"52":0.04256,"54":0.01064,"59":0.00532,"66":0.01064,"68":0.00532,"78":0.07448,"84":0.01596,"85":0.01064,"86":0.00532,"87":0.0266,"88":0.01064,"89":0.03192,"90":0.02128,"91":0.04788,"92":0.01596,"93":0.03724,"94":0.86716,"95":1.68112,"96":0.01064,_:"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 51 53 55 56 57 58 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 97 3.5 3.6"},D:{"25":0.01064,"26":0.01064,"34":0.02128,"38":0.08512,"49":0.08512,"52":0.00532,"53":0.0266,"55":0.00532,"56":0.01064,"57":0.01064,"58":0.00532,"59":0.0266,"60":0.0266,"61":0.00532,"63":0.01596,"64":0.03192,"65":0.03192,"66":0.02128,"67":0.0266,"68":0.02128,"69":0.0532,"70":0.04256,"71":0.01596,"72":0.04256,"73":0.01596,"74":0.03192,"75":0.02128,"76":0.04256,"77":0.01064,"78":0.0266,"79":0.31388,"80":0.07448,"81":0.04788,"83":0.03192,"84":0.04256,"85":0.03724,"86":0.0532,"87":0.2128,"88":0.03724,"89":0.04788,"90":0.08512,"91":0.11172,"92":0.45752,"93":0.27132,"94":0.93632,"95":1.41512,"96":27.25968,"97":0.0266,"98":0.00532,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 62 99"},F:{"36":0.00532,"46":0.0532,"79":0.00532,"80":0.01596,"81":0.29792,"82":0.266,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"11":0.01064,"12":0.02128,"13":0.13832,"14":0.60648,"15":0.62776,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01064,"10.1":0.03724,"11.1":0.0798,"12.1":0.16492,"13.1":0.6118,"14.1":3.04836,"15.1":2.91536,"15.2":0.32984},B:{"15":0.01596,"16":0.01064,"17":0.00532,"18":0.03192,"84":0.01064,"85":0.00532,"86":0.01064,"88":0.00532,"89":0.01064,"90":0.01064,"91":0.01064,"92":0.02128,"93":0.01596,"94":0.03192,"95":0.24472,"96":5.719,_:"12 13 14 79 80 81 83 87"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0136,"6.0-6.1":0.02494,"7.0-7.1":0.02494,"8.1-8.4":0.04081,"9.0-9.2":0.02494,"9.3":0.2993,"10.0-10.2":0.02721,"10.3":0.33784,"11.0-11.2":0.0975,"11.3-11.4":0.10884,"12.0-12.1":0.08163,"12.2-12.5":1.32644,"13.0-13.1":0.04535,"13.2":0.02041,"13.3":0.13151,"13.4-13.7":0.43988,"14.0-14.4":1.16092,"14.5-14.8":6.83172,"15.0-15.1":10.85185,"15.2":0.77546},P:{"4":0.57533,"5.0-5.4":0.01029,"6.2-6.4":0.01032,"7.2-7.4":0.02171,"8.2":0.03037,"9.2":0.02108,"10.1":0.01032,"11.1-11.2":0.05428,"12.0":0.02171,"13.0":0.11941,"14.0":0.13026,"15.0":0.34737},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00123,"4.2-4.3":0.00328,"4.4":0,"4.4.3-4.4.4":0.01888},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.02364,"11":0.72116,_:"6 7 8 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.19652},H:{"0":0.18605},L:{"0":20.48108},S:{"2.5":0},R:{_:"0"},M:{"0":0.43047},Q:{"10.4":0.02807}}; 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 79de34e3d1d0e1..4349f1a6500f82 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:{"47":0.00977,"52":0.05862,"60":0.00489,"68":0.00977,"72":0.00977,"73":0.00489,"78":0.04397,"79":0.00489,"80":0.00489,"81":0.00489,"82":0.00489,"83":0.00489,"84":0.01466,"85":0.00489,"86":0.00977,"87":0.00489,"88":0.01954,"89":0.01466,"90":0.01954,"91":0.03908,"92":0.02443,"93":0.26379,"94":1.59251,"95":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 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 74 75 76 77 96 3.5 3.6"},D:{"38":0.01954,"47":0.00977,"49":0.11724,"53":0.00489,"54":0.00977,"55":0.00489,"58":0.00977,"61":0.03908,"63":0.00977,"64":0.00489,"65":0.00977,"66":0.00977,"67":0.00977,"68":0.00489,"69":0.00977,"70":0.00977,"71":0.00977,"72":0.00977,"73":0.00977,"74":0.01466,"75":0.02931,"76":0.01954,"77":0.01466,"78":0.01466,"79":0.10259,"80":0.0342,"81":0.04397,"83":0.0342,"84":0.04885,"85":0.04397,"86":0.07816,"87":0.23937,"88":0.04397,"89":0.07816,"90":0.06351,"91":1.45085,"92":0.25891,"93":0.2931,"94":0.86953,"95":20.44373,"96":13.42887,"97":0.02443,_:"4 5 6 7 8 9 10 11 12 13 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 56 57 59 60 62 98 99"},F:{"36":0.00489,"77":0.00489,"78":0.00977,"79":0.01466,"80":1.8563,"81":0.88907,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00489,"16":0.00489,"17":0.00489,"18":0.01954,"84":0.00489,"89":0.01466,"91":0.01466,"92":0.01466,"93":0.00977,"94":0.05374,"95":1.8905,"96":0.76695,_:"12 13 14 79 80 81 83 85 86 87 88 90"},E:{"4":0,"13":0.02931,"14":0.07816,"15":0.16609,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00977,"11.1":0.00977,"12.1":0.01954,"13.1":0.08793,"14.1":0.2931,"15.1":0.22471},G:{"8":0,"3.2":0.00052,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0067,"6.0-6.1":0.00206,"7.0-7.1":0.00516,"8.1-8.4":0.00309,"9.0-9.2":0.00103,"9.3":0.03507,"10.0-10.2":0.00206,"10.3":0.03301,"11.0-11.2":0.00774,"11.3-11.4":0.0196,"12.0-12.1":0.00877,"12.2-12.5":0.25942,"13.0-13.1":0.01031,"13.2":0.00464,"13.3":0.03094,"13.4-13.7":0.11243,"14.0-14.4":0.31564,"14.5-14.8":2.38069,"15.0-15.1":1.91703},P:{"4":0.1551,"5.0-5.4":0.01027,"6.2-6.4":0.01023,"7.2-7.4":0.19646,"8.2":0.01016,"9.2":0.02068,"10.1":0.02047,"11.1-11.2":0.1034,"12.0":0.03102,"13.0":0.12408,"14.0":0.13442,"15.0":1.53029},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00296,"4.2-4.3":0.00507,"4.4":0,"4.4.3-4.4.4":0.03717},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01061,"9":0.0053,"11":0.16972,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":44.56639},S:{"2.5":0},R:{_:"0"},M:{"0":0.13299},Q:{"10.4":0},O:{"0":0.07161},H:{"0":0.18402}}; +module.exports={C:{"27":0.00488,"47":0.00488,"52":0.05856,"60":0.00488,"68":0.00976,"72":0.00488,"73":0.00488,"78":0.03416,"79":0.00488,"80":0.00488,"81":0.00976,"84":0.01464,"86":0.00976,"87":0.00488,"88":0.01952,"89":0.01464,"90":0.01952,"91":0.03904,"92":0.00976,"93":0.01952,"94":0.59536,"95":1.15168,"96":0.00976,_:"2 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 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 74 75 76 77 82 83 85 97 3.5 3.6"},D:{"22":0.00488,"38":0.01464,"42":0.00976,"47":0.00976,"49":0.10248,"51":0.00488,"53":0.00488,"54":0.00976,"55":0.00488,"58":0.00976,"61":0.01464,"63":0.00976,"64":0.00488,"65":0.00976,"66":0.01464,"67":0.00976,"68":0.00488,"69":0.00976,"70":0.00976,"71":0.00976,"72":0.00976,"73":0.00976,"74":0.01464,"75":0.0244,"76":0.01952,"77":0.00976,"78":0.01464,"79":0.10248,"80":0.03416,"81":0.04392,"83":0.03904,"84":0.05368,"85":0.04392,"86":0.0732,"87":0.17568,"88":0.03416,"89":0.06344,"90":0.0488,"91":0.98088,"92":0.20008,"93":0.25376,"94":0.29768,"95":0.5124,"96":30.8172,"97":0.02928,"98":0.00488,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 52 56 57 59 60 62 99"},F:{"36":0.00488,"78":0.00488,"79":0.00488,"80":0.01952,"81":1.70312,"82":1.098,_:"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 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"13":0.0244,"14":0.05856,"15":0.08296,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00976,"11.1":0.00976,"12.1":0.01464,"13.1":0.07808,"14.1":0.2196,"15.1":0.27816,"15.2":0.04392},B:{"17":0.00488,"18":0.01952,"84":0.00488,"89":0.00976,"91":0.01464,"92":0.01464,"93":0.00488,"94":0.00976,"95":0.06832,"96":2.49368,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},G:{"8":0.00108,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00704,"6.0-6.1":0.00162,"7.0-7.1":0.00541,"8.1-8.4":0.00162,"9.0-9.2":0.00108,"9.3":0.03465,"10.0-10.2":0.00162,"10.3":0.03627,"11.0-11.2":0.00812,"11.3-11.4":0.01841,"12.0-12.1":0.00975,"12.2-12.5":0.25987,"13.0-13.1":0.01029,"13.2":0.00379,"13.3":0.02924,"13.4-13.7":0.10828,"14.0-14.4":0.29235,"14.5-14.8":1.67671,"15.0-15.1":2.68642,"15.2":0.21927},P:{"4":0.16488,"5.0-5.4":0.01029,"6.2-6.4":0.01032,"7.2-7.4":0.1958,"8.2":0.03037,"9.2":0.02061,"10.1":0.01032,"11.1-11.2":0.09275,"12.0":0.03092,"13.0":0.12366,"14.0":0.12366,"15.0":0.28855},I:{"0":0,"3":0,"4":0.00039,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00234,"4.2-4.3":0.00468,"4.4":0,"4.4.3-4.4.4":0.03355},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01586,"9":0.00529,"11":0.16917,_:"6 7 10 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.08194},H:{"0":0.19393},L:{"0":48.30186},S:{"2.5":0},R:{_:"0"},M:{"0":0.13315},Q:{"10.4":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 af704fc0fdcc5a..87030cf6b17355 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.02614,"25":0.00436,"36":0.00436,"43":0.03485,"44":0.00871,"45":0.00436,"48":0.00436,"51":0.00436,"52":0.0697,"55":0.00871,"56":0.01307,"58":0.00436,"59":0.00436,"60":0.00871,"61":0.00436,"63":0.00871,"66":0.00871,"68":0.01307,"72":0.00871,"76":0.00436,"77":0.00436,"78":0.09583,"79":0.00871,"80":0.00871,"81":0.01307,"82":0.01307,"83":0.00871,"84":0.01307,"85":0.00436,"86":0.00871,"87":0.00871,"88":0.02178,"89":0.02178,"90":0.01742,"91":0.08276,"92":0.0392,"93":0.43996,"94":2.44372,"95":0.02614,_:"2 3 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 38 39 40 41 42 46 47 49 50 53 54 57 62 64 65 67 69 70 71 73 74 75 96 3.5 3.6"},D:{"22":0.00871,"24":0.00871,"33":0.00436,"34":0.00871,"35":0.00871,"38":0.02178,"40":0.01307,"43":0.00871,"47":0.01307,"48":0.02614,"49":0.12632,"51":0.00871,"52":0.00436,"53":0.01307,"54":0.00871,"55":0.00871,"56":0.05227,"57":0.00871,"58":0.00871,"59":0.00436,"60":0.00871,"61":0.03049,"62":0.00871,"63":0.01307,"64":0.02178,"65":0.01742,"66":0.02178,"67":0.01307,"68":0.00871,"69":0.06098,"70":0.04356,"71":0.01742,"72":0.04356,"73":0.01307,"74":0.03049,"75":0.06534,"76":0.06098,"77":0.02178,"78":0.04356,"79":0.16988,"80":0.0697,"81":0.04792,"83":0.08712,"84":0.09148,"85":0.10454,"86":0.10019,"87":0.30492,"88":0.07405,"89":0.09583,"90":0.08276,"91":0.257,"92":0.34848,"93":0.43996,"94":1.7424,"95":13.95662,"96":8.06296,"97":0.01742,"98":0.01307,_:"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 36 37 39 41 42 44 45 46 50 99"},F:{"31":0.00436,"36":0.00436,"40":0.00436,"46":0.00871,"78":0.00436,"79":0.02178,"80":0.75359,"81":0.3267,_:"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 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00871,"14":0.00436,"15":0.00436,"16":0.00871,"17":0.01307,"18":0.03485,"84":0.00871,"85":0.00871,"86":0.00871,"87":0.02178,"89":0.01307,"90":0.00871,"91":0.01307,"92":0.02178,"93":0.02178,"94":0.15682,"95":2.80526,"96":1.04544,_:"13 79 80 81 83 88"},E:{"4":0,"8":0.00436,"12":0.00871,"13":0.06098,"14":0.33977,"15":0.60113,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1","5.1":0.01307,"9.1":0.03049,"10.1":0.01307,"11.1":0.0392,"12.1":0.07405,"13.1":0.54886,"14.1":1.71626,"15.1":0.74923},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00292,"5.0-5.1":0.00584,"6.0-6.1":0.06132,"7.0-7.1":0.02044,"8.1-8.4":0.01168,"9.0-9.2":0.01898,"9.3":0.10366,"10.0-10.2":0.02628,"10.3":0.12556,"11.0-11.2":0.07154,"11.3-11.4":0.04672,"12.0-12.1":0.04672,"12.2-12.5":0.63656,"13.0-13.1":0.03796,"13.2":0.01898,"13.3":0.09928,"13.4-13.7":0.3212,"14.0-14.4":1.05411,"14.5-14.8":6.90575,"15.0-15.1":4.98295},P:{"4":0.23138,"5.0-5.4":0.01027,"6.2-6.4":0.01016,"7.2-7.4":0.07362,"8.2":0.01016,"9.2":0.03155,"10.1":0.01049,"11.1-11.2":0.08414,"12.0":0.03155,"13.0":0.13673,"14.0":0.15776,"15.0":2.01934},I:{"0":0,"3":0,"4":0.01047,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01395,"4.2-4.3":0.06279,"4.4":0,"4.4.3-4.4.4":0.29651},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03636,"9":0.08,"10":0.01455,"11":0.68366,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.02827,"11":0.22582},L:{"0":37.45348},S:{"2.5":0.079},R:{_:"0"},M:{"0":0.28215},Q:{"10.4":0.16365},O:{"0":0.95931},H:{"0":1.08451}}; +module.exports={C:{"4":0.02566,"25":0.00428,"36":0.00428,"43":0.03422,"44":0.00855,"48":0.00428,"51":0.00428,"52":0.06843,"55":0.03422,"56":0.01711,"59":0.00428,"60":0.00855,"63":0.00428,"68":0.00855,"72":0.01283,"77":0.00428,"78":0.06843,"79":0.00855,"80":0.00855,"81":0.01711,"82":0.00428,"83":0.00428,"84":0.01711,"85":0.00428,"86":0.00428,"87":0.01283,"88":0.01711,"89":0.02139,"90":0.02139,"91":0.09837,"92":0.01711,"93":0.02994,"94":0.99654,"95":1.87333,"96":0.01711,_:"2 3 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 38 39 40 41 42 45 46 47 49 50 53 54 57 58 61 62 64 65 66 67 69 70 71 73 74 75 76 97 3.5 3.6"},D:{"22":0.00855,"24":0.00855,"33":0.00428,"34":0.00855,"35":0.00855,"38":0.02566,"40":0.01283,"43":0.00855,"47":0.01283,"48":0.02566,"49":0.08554,"51":0.00428,"52":0.00428,"53":0.01283,"54":0.00855,"55":0.00855,"56":0.04705,"57":0.00855,"58":0.00855,"59":0.00428,"60":0.00855,"61":0.00855,"62":0.00855,"63":0.01283,"64":0.02139,"65":0.01711,"66":0.02566,"67":0.01283,"68":0.00855,"69":0.05988,"70":0.04277,"71":0.01711,"72":0.04705,"73":0.01283,"74":0.02566,"75":0.06416,"76":0.06843,"77":0.02566,"78":0.03422,"79":0.19247,"80":0.06416,"81":0.04705,"83":0.09409,"84":0.07699,"85":0.09837,"86":0.08554,"87":0.19674,"88":0.05132,"89":0.06416,"90":0.06843,"91":0.17108,"92":0.2609,"93":0.30794,"94":0.79552,"95":0.69715,"96":21.76138,"97":0.02139,"98":0.00855,"99":0.00855,_:"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 36 37 39 41 42 44 45 46 50"},F:{"31":0.00428,"36":0.00428,"40":0.00428,"46":0.00855,"76":0.00855,"79":0.01283,"80":0.02139,"81":0.56456,"82":0.52179,_:"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 68 69 70 71 72 73 74 75 77 78 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},E:{"4":0,"12":0.00855,"13":0.0556,"14":0.29084,"15":0.30367,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.01283,"9.1":0.01711,"10.1":0.01283,"11.1":0.03849,"12.1":0.06843,"13.1":0.50896,"14.1":1.23605,"15.1":1.30021,"15.2":0.15825},B:{"12":0.00855,"14":0.00428,"15":0.00428,"16":0.00855,"17":0.00855,"18":0.02994,"84":0.00855,"85":0.00855,"86":0.00855,"87":0.01283,"89":0.00855,"90":0.00428,"91":0.00855,"92":0.01711,"93":0.00855,"94":0.02566,"95":0.1497,"96":3.66539,_:"13 79 80 81 83 88"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00302,"5.0-5.1":0.00605,"6.0-6.1":0.05595,"7.0-7.1":0.02117,"8.1-8.4":0.0121,"9.0-9.2":0.01815,"9.3":0.10132,"10.0-10.2":0.02873,"10.3":0.12249,"11.0-11.2":0.0741,"11.3-11.4":0.04537,"12.0-12.1":0.04537,"12.2-12.5":0.63361,"13.0-13.1":0.03478,"13.2":0.01663,"13.3":0.09224,"13.4-13.7":0.29942,"14.0-14.4":0.97083,"14.5-14.8":4.51392,"15.0-15.1":7.42642,"15.2":0.59278},P:{"4":0.22928,"5.0-5.4":0.01029,"6.2-6.4":0.01035,"7.2-7.4":0.07295,"8.2":0.03037,"9.2":0.03127,"10.1":0.05026,"11.1-11.2":0.08338,"12.0":0.03127,"13.0":0.13548,"14.0":0.14591,"15.0":0.35434},I:{"0":0,"3":0,"4":0.03202,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01779,"4.2-4.3":0.06048,"4.4":0,"4.4.3-4.4.4":0.2846},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02921,"9":0.07303,"10":0.01461,"11":0.65729,_:"6 7 5.5"},N:{"11":0.04513,_:"10"},J:{"7":0,"10":0},O:{"0":0.95574},H:{"0":1.06738},L:{"0":38.29941},S:{"2.5":0.0744},R:{_:"0"},M:{"0":0.29187},Q:{"10.4":0.17741}}; 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 9463eee5d79193..42c8dd9e108b3c 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.30001294", + "version": "1.0.30001300", "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 8c1baa7a5a71e8..750fc2b849c399 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 @@ -1375,7 +1375,9 @@ module.exports = { "13.6.0", "13.6.1", "13.6.2", - "13.6.3" + "13.6.3", + "13.6.6", + "13.6.7" ], "92.0.4511.0": [ "14.0.0-beta.1", @@ -1492,7 +1494,8 @@ module.exports = { "14.2.0", "14.2.1", "14.2.2", - "14.2.3" + "14.2.3", + "14.2.4" ], "94.0.4584.0": [ "15.0.0-alpha.3", @@ -1577,7 +1580,8 @@ module.exports = { "15.3.1", "15.3.2", "15.3.3", - "15.3.4" + "15.3.4", + "15.3.5" ], "95.0.4629.0": [ "16.0.0-alpha.1", @@ -1662,6 +1666,10 @@ module.exports = { "16.0.4", "16.0.5" ], + "96.0.4664.110": [ + "16.0.6", + "16.0.7" + ], "96.0.4664.4": [ "17.0.0-alpha.1", "17.0.0-alpha.2", @@ -1693,6 +1701,9 @@ module.exports = { "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", @@ -1717,6 +1728,24 @@ module.exports = { "18.0.0-nightly.20211223", "18.0.0-nightly.20211228", "18.0.0-nightly.20211229", - "18.0.0-nightly.20211231" + "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" + ], + "99.0.4767.0": [ + "18.0.0-nightly.20220111", + "18.0.0-nightly.20220112", + "18.0.0-nightly.20220113", + "18.0.0-nightly.20220114" ] }; \ 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 b74518c21e7ad7..5288929b5f7f9c 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"],"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"],"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"],"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.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","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"]} \ 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"],"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"],"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"],"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"],"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"],"99.0.4767.0":["18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114"]} \ 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 d60adf031b2635..bfbf1150a3a1be 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 @@ -971,6 +971,8 @@ module.exports = { "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", "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", @@ -1046,6 +1048,7 @@ module.exports = { "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", "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", @@ -1112,6 +1115,7 @@ module.exports = { "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", "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", @@ -1181,11 +1185,18 @@ module.exports = { "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", "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-nightly.20210923": "95.0.4629.0", "17.0.0-nightly.20210924": "95.0.4629.0", "17.0.0-nightly.20210927": "95.0.4629.0", @@ -1254,5 +1265,15 @@ module.exports = { "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.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" }; \ 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 5e9d0c6512e1e5..36da026a4bb84e 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","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","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","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","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-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","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"} \ 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","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","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","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","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-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","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"} \ 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 d95df2ff0f9c92..187f5be4eb0e45 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.31", + "version": "1.4.46", "description": "Provides a list of electron-to-chromium version mappings", "main": "index.js", "files": [ @@ -32,9 +32,9 @@ "author": "Kilian Valkhof", "license": "ISC", "devDependencies": { - "ava": "^3.8.2", + "ava": "^4.0.1", "codecov": "^3.8.0", - "electron-releases": "^3.906.0", + "electron-releases": "^3.923.0", "nyc": "^15.1.0", "request": "^2.65.0", "shelljs": "^0.8.4" diff --git a/tools/node_modules/eslint/node_modules/enquirer/LICENSE b/tools/node_modules/eslint/node_modules/enquirer/LICENSE deleted file mode 100644 index 681d1bf7276277..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016-present, Jon Schlinkert. - -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/enquirer/index.js b/tools/node_modules/eslint/node_modules/enquirer/index.js deleted file mode 100644 index d0ef3f69b092df..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/index.js +++ /dev/null @@ -1,250 +0,0 @@ -'use strict'; - -const assert = require('assert'); -const Events = require('events'); -const utils = require('./lib/utils'); - -/** - * Create an instance of `Enquirer`. - * - * ```js - * const Enquirer = require('enquirer'); - * const enquirer = new Enquirer(); - * ``` - * @name Enquirer - * @param {Object} `options` (optional) Options to use with all prompts. - * @param {Object} `answers` (optional) Answers object to initialize with. - * @api public - */ - -class Enquirer extends Events { - constructor(options, answers) { - super(); - this.options = utils.merge({}, options); - this.answers = { ...answers }; - } - - /** - * Register a custom prompt type. - * - * ```js - * const Enquirer = require('enquirer'); - * const enquirer = new Enquirer(); - * enquirer.register('customType', require('./custom-prompt')); - * ``` - * @name register() - * @param {String} `type` - * @param {Function|Prompt} `fn` `Prompt` class, or a function that returns a `Prompt` class. - * @return {Object} Returns the Enquirer instance - * @api public - */ - - register(type, fn) { - if (utils.isObject(type)) { - for (let key of Object.keys(type)) this.register(key, type[key]); - return this; - } - assert.equal(typeof fn, 'function', 'expected a function'); - let name = type.toLowerCase(); - if (fn.prototype instanceof this.Prompt) { - this.prompts[name] = fn; - } else { - this.prompts[name] = fn(this.Prompt, this); - } - return this; - } - - /** - * Prompt function that takes a "question" object or array of question objects, - * and returns an object with responses from the user. - * - * ```js - * const Enquirer = require('enquirer'); - * const enquirer = new Enquirer(); - * - * const response = await enquirer.prompt({ - * type: 'input', - * name: 'username', - * message: 'What is your username?' - * }); - * console.log(response); - * ``` - * @name prompt() - * @param {Array|Object} `questions` Options objects for one or more prompts to run. - * @return {Promise} Promise that returns an "answers" object with the user's responses. - * @api public - */ - - async prompt(questions = []) { - for (let question of [].concat(questions)) { - try { - if (typeof question === 'function') question = await question.call(this); - await this.ask(utils.merge({}, this.options, question)); - } catch (err) { - return Promise.reject(err); - } - } - return this.answers; - } - - async ask(question) { - if (typeof question === 'function') { - question = await question.call(this); - } - - let opts = utils.merge({}, this.options, question); - let { type, name } = question; - let { set, get } = utils; - - if (typeof type === 'function') { - type = await type.call(this, question, this.answers); - } - - if (!type) return this.answers[name]; - - assert(this.prompts[type], `Prompt "${type}" is not registered`); - - let prompt = new this.prompts[type](opts); - let value = get(this.answers, name); - - prompt.state.answers = this.answers; - prompt.enquirer = this; - - if (name) { - prompt.on('submit', value => { - this.emit('answer', name, value, prompt); - set(this.answers, name, value); - }); - } - - // bubble events - let emit = prompt.emit.bind(prompt); - prompt.emit = (...args) => { - this.emit.call(this, ...args); - return emit(...args); - }; - - this.emit('prompt', prompt, this); - - if (opts.autofill && value != null) { - prompt.value = prompt.input = value; - - // if "autofill=show" render the prompt, otherwise stay "silent" - if (opts.autofill === 'show') { - await prompt.submit(); - } - } else { - value = prompt.value = await prompt.run(); - } - - return value; - } - - /** - * Use an enquirer plugin. - * - * ```js - * const Enquirer = require('enquirer'); - * const enquirer = new Enquirer(); - * const plugin = enquirer => { - * // do stuff to enquire instance - * }; - * enquirer.use(plugin); - * ``` - * @name use() - * @param {Function} `plugin` Plugin function that takes an instance of Enquirer. - * @return {Object} Returns the Enquirer instance. - * @api public - */ - - use(plugin) { - plugin.call(this, this); - return this; - } - - set Prompt(value) { - this._Prompt = value; - } - get Prompt() { - return this._Prompt || this.constructor.Prompt; - } - - get prompts() { - return this.constructor.prompts; - } - - static set Prompt(value) { - this._Prompt = value; - } - static get Prompt() { - return this._Prompt || require('./lib/prompt'); - } - - static get prompts() { - return require('./lib/prompts'); - } - - static get types() { - return require('./lib/types'); - } - - /** - * Prompt function that takes a "question" object or array of question objects, - * and returns an object with responses from the user. - * - * ```js - * const { prompt } = require('enquirer'); - * const response = await prompt({ - * type: 'input', - * name: 'username', - * message: 'What is your username?' - * }); - * console.log(response); - * ``` - * @name Enquirer#prompt - * @param {Array|Object} `questions` Options objects for one or more prompts to run. - * @return {Promise} Promise that returns an "answers" object with the user's responses. - * @api public - */ - - static get prompt() { - const fn = (questions, ...rest) => { - let enquirer = new this(...rest); - let emit = enquirer.emit.bind(enquirer); - enquirer.emit = (...args) => { - fn.emit(...args); - return emit(...args); - }; - return enquirer.prompt(questions); - }; - utils.mixinEmitter(fn, new Events()); - return fn; - } -} - -utils.mixinEmitter(Enquirer, new Events()); -const prompts = Enquirer.prompts; - -for (let name of Object.keys(prompts)) { - let key = name.toLowerCase(); - - let run = options => new prompts[name](options).run(); - Enquirer.prompt[key] = run; - Enquirer[key] = run; - - if (!Enquirer[name]) { - Reflect.defineProperty(Enquirer, name, { get: () => prompts[name] }); - } -} - -const exp = name => { - utils.defineExport(Enquirer, name, () => Enquirer.types[name]); -}; - -exp('ArrayPrompt'); -exp('AuthPrompt'); -exp('BooleanPrompt'); -exp('NumberPrompt'); -exp('StringPrompt'); - -module.exports = Enquirer; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/ansi.js b/tools/node_modules/eslint/node_modules/enquirer/lib/ansi.js deleted file mode 100644 index 1ba19813d60bc9..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/ansi.js +++ /dev/null @@ -1,116 +0,0 @@ -'use strict'; - -const isTerm = process.env.TERM_PROGRAM === 'Apple_Terminal'; -const colors = require('ansi-colors'); -const utils = require('./utils'); -const ansi = module.exports = exports; -const ESC = '\u001b['; -const BEL = '\u0007'; -let hidden = false; - -const code = ansi.code = { - bell: BEL, - beep: BEL, - beginning: `${ESC}G`, - down: `${ESC}J`, - esc: ESC, - getPosition: `${ESC}6n`, - hide: `${ESC}?25l`, - line: `${ESC}2K`, - lineEnd: `${ESC}K`, - lineStart: `${ESC}1K`, - restorePosition: ESC + (isTerm ? '8' : 'u'), - savePosition: ESC + (isTerm ? '7' : 's'), - screen: `${ESC}2J`, - show: `${ESC}?25h`, - up: `${ESC}1J` -}; - -const cursor = ansi.cursor = { - get hidden() { - return hidden; - }, - - hide() { - hidden = true; - return code.hide; - }, - show() { - hidden = false; - return code.show; - }, - - forward: (count = 1) => `${ESC}${count}C`, - backward: (count = 1) => `${ESC}${count}D`, - nextLine: (count = 1) => `${ESC}E`.repeat(count), - prevLine: (count = 1) => `${ESC}F`.repeat(count), - - up: (count = 1) => count ? `${ESC}${count}A` : '', - down: (count = 1) => count ? `${ESC}${count}B` : '', - right: (count = 1) => count ? `${ESC}${count}C` : '', - left: (count = 1) => count ? `${ESC}${count}D` : '', - - to(x, y) { - return y ? `${ESC}${y + 1};${x + 1}H` : `${ESC}${x + 1}G`; - }, - - move(x = 0, y = 0) { - let res = ''; - res += (x < 0) ? cursor.left(-x) : (x > 0) ? cursor.right(x) : ''; - res += (y < 0) ? cursor.up(-y) : (y > 0) ? cursor.down(y) : ''; - return res; - }, - - restore(state = {}) { - let { after, cursor, initial, input, prompt, size, value } = state; - initial = utils.isPrimitive(initial) ? String(initial) : ''; - input = utils.isPrimitive(input) ? String(input) : ''; - value = utils.isPrimitive(value) ? String(value) : ''; - - if (size) { - let codes = ansi.cursor.up(size) + ansi.cursor.to(prompt.length); - let diff = input.length - cursor; - if (diff > 0) { - codes += ansi.cursor.left(diff); - } - return codes; - } - - if (value || after) { - let pos = (!input && !!initial) ? -initial.length : -input.length + cursor; - if (after) pos -= after.length; - if (input === '' && initial && !prompt.includes(initial)) { - pos += initial.length; - } - return ansi.cursor.move(pos); - } - } -}; - -const erase = ansi.erase = { - screen: code.screen, - up: code.up, - down: code.down, - line: code.line, - lineEnd: code.lineEnd, - lineStart: code.lineStart, - lines(n) { - let str = ''; - for (let i = 0; i < n; i++) { - str += ansi.erase.line + (i < n - 1 ? ansi.cursor.up(1) : ''); - } - if (n) str += ansi.code.beginning; - return str; - } -}; - -ansi.clear = (input = '', columns = process.stdout.columns) => { - if (!columns) return erase.line + cursor.to(0); - let width = str => [...colors.unstyle(str)].length; - let lines = input.split(/\r?\n/); - let rows = 0; - for (let line of lines) { - rows += 1 + Math.floor(Math.max(width(line) - 1, 0) / columns); - } - return (erase.line + cursor.prevLine()).repeat(rows - 1) + erase.line + cursor.to(0); -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/combos.js b/tools/node_modules/eslint/node_modules/enquirer/lib/combos.js deleted file mode 100644 index 5b9d86c553e8d0..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/combos.js +++ /dev/null @@ -1,75 +0,0 @@ -'use strict'; - -/** - * Actions are mappings from keypress event names to method names - * in the prompts. - */ - -exports.ctrl = { - a: 'first', - b: 'backward', - c: 'cancel', - d: 'deleteForward', - e: 'last', - f: 'forward', - g: 'reset', - i: 'tab', - k: 'cutForward', - l: 'reset', - n: 'newItem', - m: 'cancel', - j: 'submit', - p: 'search', - r: 'remove', - s: 'save', - u: 'undo', - w: 'cutLeft', - x: 'toggleCursor', - v: 'paste' -}; - -exports.shift = { - up: 'shiftUp', - down: 'shiftDown', - left: 'shiftLeft', - right: 'shiftRight', - tab: 'prev' -}; - -exports.fn = { - up: 'pageUp', - down: 'pageDown', - left: 'pageLeft', - right: 'pageRight', - delete: 'deleteForward' -}; - -// on Windows -exports.option = { - b: 'backward', - f: 'forward', - d: 'cutRight', - left: 'cutLeft', - up: 'altUp', - down: 'altDown' -}; - -exports.keys = { - pageup: 'pageUp', // + (mac), (windows) - pagedown: 'pageDown', // + (mac), (windows) - home: 'home', // + (mac), (windows) - end: 'end', // + (mac), (windows) - cancel: 'cancel', - delete: 'deleteForward', - backspace: 'delete', - down: 'down', - enter: 'submit', - escape: 'cancel', - left: 'left', - space: 'space', - number: 'number', - return: 'submit', - right: 'right', - tab: 'next', - up: 'up' -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/completer.js b/tools/node_modules/eslint/node_modules/enquirer/lib/completer.js deleted file mode 100644 index 4a50af0a13f41c..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/completer.js +++ /dev/null @@ -1,52 +0,0 @@ -'use strict'; - -const unique = arr => arr.filter((v, i) => arr.lastIndexOf(v) === i); -const compact = arr => unique(arr).filter(Boolean); - -module.exports = (action, data = {}, value = '') => { - let { past = [], present = '' } = data; - let rest, prev; - - switch (action) { - case 'prev': - case 'undo': - rest = past.slice(0, past.length - 1); - prev = past[past.length - 1] || ''; - return { - past: compact([value, ...rest]), - present: prev - }; - - case 'next': - case 'redo': - rest = past.slice(1); - prev = past[0] || ''; - return { - past: compact([...rest, value]), - present: prev - }; - - case 'save': - return { - past: compact([...past, value]), - present: '' - }; - - case 'remove': - prev = compact(past.filter(v => v !== value)); - present = ''; - - if (prev.length) { - present = prev.pop(); - } - - return { - past: prev, - present - }; - - default: { - throw new Error(`Invalid action: "${action}"`); - } - } -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/interpolate.js b/tools/node_modules/eslint/node_modules/enquirer/lib/interpolate.js deleted file mode 100644 index c3d9b3f3f3e145..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/interpolate.js +++ /dev/null @@ -1,266 +0,0 @@ -'use strict'; - -const colors = require('ansi-colors'); -const clean = (str = '') => { - return typeof str === 'string' ? str.replace(/^['"]|['"]$/g, '') : ''; -}; - -/** - * This file contains the interpolation and rendering logic for - * the Snippet prompt. - */ - -class Item { - constructor(token) { - this.name = token.key; - this.field = token.field || {}; - this.value = clean(token.initial || this.field.initial || ''); - this.message = token.message || this.name; - this.cursor = 0; - this.input = ''; - this.lines = []; - } -} - -const tokenize = async(options = {}, defaults = {}, fn = token => token) => { - let unique = new Set(); - let fields = options.fields || []; - let input = options.template; - let tabstops = []; - let items = []; - let keys = []; - let line = 1; - - if (typeof input === 'function') { - input = await input(); - } - - let i = -1; - let next = () => input[++i]; - let peek = () => input[i + 1]; - let push = token => { - token.line = line; - tabstops.push(token); - }; - - push({ type: 'bos', value: '' }); - - while (i < input.length - 1) { - let value = next(); - - if (/^[^\S\n ]$/.test(value)) { - push({ type: 'text', value }); - continue; - } - - if (value === '\n') { - push({ type: 'newline', value }); - line++; - continue; - } - - if (value === '\\') { - value += next(); - push({ type: 'text', value }); - continue; - } - - if ((value === '$' || value === '#' || value === '{') && peek() === '{') { - let n = next(); - value += n; - - let token = { type: 'template', open: value, inner: '', close: '', value }; - let ch; - - while ((ch = next())) { - if (ch === '}') { - if (peek() === '}') ch += next(); - token.value += ch; - token.close = ch; - break; - } - - if (ch === ':') { - token.initial = ''; - token.key = token.inner; - } else if (token.initial !== void 0) { - token.initial += ch; - } - - token.value += ch; - token.inner += ch; - } - - token.template = token.open + (token.initial || token.inner) + token.close; - token.key = token.key || token.inner; - - if (defaults.hasOwnProperty(token.key)) { - token.initial = defaults[token.key]; - } - - token = fn(token); - push(token); - - keys.push(token.key); - unique.add(token.key); - - let item = items.find(item => item.name === token.key); - token.field = fields.find(ch => ch.name === token.key); - - if (!item) { - item = new Item(token); - items.push(item); - } - - item.lines.push(token.line - 1); - continue; - } - - let last = tabstops[tabstops.length - 1]; - if (last.type === 'text' && last.line === line) { - last.value += value; - } else { - push({ type: 'text', value }); - } - } - - push({ type: 'eos', value: '' }); - return { input, tabstops, unique, keys, items }; -}; - -module.exports = async prompt => { - let options = prompt.options; - let required = new Set(options.required === true ? [] : (options.required || [])); - let defaults = { ...options.values, ...options.initial }; - let { tabstops, items, keys } = await tokenize(options, defaults); - - let result = createFn('result', prompt, options); - let format = createFn('format', prompt, options); - let isValid = createFn('validate', prompt, options, true); - let isVal = prompt.isValue.bind(prompt); - - return async(state = {}, submitted = false) => { - let index = 0; - - state.required = required; - state.items = items; - state.keys = keys; - state.output = ''; - - let validate = async(value, state, item, index) => { - let error = await isValid(value, state, item, index); - if (error === false) { - return 'Invalid field ' + item.name; - } - return error; - }; - - for (let token of tabstops) { - let value = token.value; - let key = token.key; - - if (token.type !== 'template') { - if (value) state.output += value; - continue; - } - - if (token.type === 'template') { - let item = items.find(ch => ch.name === key); - - if (options.required === true) { - state.required.add(item.name); - } - - let val = [item.input, state.values[item.value], item.value, value].find(isVal); - let field = item.field || {}; - let message = field.message || token.inner; - - if (submitted) { - let error = await validate(state.values[key], state, item, index); - if ((error && typeof error === 'string') || error === false) { - state.invalid.set(key, error); - continue; - } - - state.invalid.delete(key); - let res = await result(state.values[key], state, item, index); - state.output += colors.unstyle(res); - continue; - } - - item.placeholder = false; - - let before = value; - value = await format(value, state, item, index); - - if (val !== value) { - state.values[key] = val; - value = prompt.styles.typing(val); - state.missing.delete(message); - - } else { - state.values[key] = void 0; - val = `<${message}>`; - value = prompt.styles.primary(val); - item.placeholder = true; - - if (state.required.has(key)) { - state.missing.add(message); - } - } - - if (state.missing.has(message) && state.validating) { - value = prompt.styles.warning(val); - } - - if (state.invalid.has(key) && state.validating) { - value = prompt.styles.danger(val); - } - - if (index === state.index) { - if (before !== value) { - value = prompt.styles.underline(value); - } else { - value = prompt.styles.heading(colors.unstyle(value)); - } - } - - index++; - } - - if (value) { - state.output += value; - } - } - - let lines = state.output.split('\n').map(l => ' ' + l); - let len = items.length; - let done = 0; - - for (let item of items) { - if (state.invalid.has(item.name)) { - item.lines.forEach(i => { - if (lines[i][0] !== ' ') return; - lines[i] = state.styles.danger(state.symbols.bullet) + lines[i].slice(1); - }); - } - - if (prompt.isValue(state.values[item.name])) { - done++; - } - } - - state.completed = ((done / len) * 100).toFixed(0); - state.output = lines.join('\n'); - return state.output; - }; -}; - -function createFn(prop, prompt, options, fallback) { - return (value, state, item, index) => { - if (typeof item.field[prop] === 'function') { - return item.field[prop].call(prompt, value, state, item, index); - } - return [fallback, value].find(v => prompt.isValue(v)); - }; -} diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/keypress.js b/tools/node_modules/eslint/node_modules/enquirer/lib/keypress.js deleted file mode 100644 index 15d7314970ffe2..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/keypress.js +++ /dev/null @@ -1,243 +0,0 @@ -'use strict'; - -const readline = require('readline'); -const combos = require('./combos'); - -/* eslint-disable no-control-regex */ -const metaKeyCodeRe = /^(?:\x1b)([a-zA-Z0-9])$/; -const fnKeyRe = /^(?:\x1b+)(O|N|\[|\[\[)(?:(\d+)(?:;(\d+))?([~^$])|(?:1;)?(\d+)?([a-zA-Z]))/; -const keyName = { - /* xterm/gnome ESC O letter */ - 'OP': 'f1', - 'OQ': 'f2', - 'OR': 'f3', - 'OS': 'f4', - /* xterm/rxvt ESC [ number ~ */ - '[11~': 'f1', - '[12~': 'f2', - '[13~': 'f3', - '[14~': 'f4', - /* from Cygwin and used in libuv */ - '[[A': 'f1', - '[[B': 'f2', - '[[C': 'f3', - '[[D': 'f4', - '[[E': 'f5', - /* common */ - '[15~': 'f5', - '[17~': 'f6', - '[18~': 'f7', - '[19~': 'f8', - '[20~': 'f9', - '[21~': 'f10', - '[23~': 'f11', - '[24~': 'f12', - /* xterm ESC [ letter */ - '[A': 'up', - '[B': 'down', - '[C': 'right', - '[D': 'left', - '[E': 'clear', - '[F': 'end', - '[H': 'home', - /* xterm/gnome ESC O letter */ - 'OA': 'up', - 'OB': 'down', - 'OC': 'right', - 'OD': 'left', - 'OE': 'clear', - 'OF': 'end', - 'OH': 'home', - /* xterm/rxvt ESC [ number ~ */ - '[1~': 'home', - '[2~': 'insert', - '[3~': 'delete', - '[4~': 'end', - '[5~': 'pageup', - '[6~': 'pagedown', - /* putty */ - '[[5~': 'pageup', - '[[6~': 'pagedown', - /* rxvt */ - '[7~': 'home', - '[8~': 'end', - /* rxvt keys with modifiers */ - '[a': 'up', - '[b': 'down', - '[c': 'right', - '[d': 'left', - '[e': 'clear', - - '[2$': 'insert', - '[3$': 'delete', - '[5$': 'pageup', - '[6$': 'pagedown', - '[7$': 'home', - '[8$': 'end', - - 'Oa': 'up', - 'Ob': 'down', - 'Oc': 'right', - 'Od': 'left', - 'Oe': 'clear', - - '[2^': 'insert', - '[3^': 'delete', - '[5^': 'pageup', - '[6^': 'pagedown', - '[7^': 'home', - '[8^': 'end', - /* misc. */ - '[Z': 'tab', -} - -function isShiftKey(code) { - return ['[a', '[b', '[c', '[d', '[e', '[2$', '[3$', '[5$', '[6$', '[7$', '[8$', '[Z'].includes(code) -} - -function isCtrlKey(code) { - return [ 'Oa', 'Ob', 'Oc', 'Od', 'Oe', '[2^', '[3^', '[5^', '[6^', '[7^', '[8^'].includes(code) -} - -const keypress = (s = '', event = {}) => { - let parts; - let key = { - name: event.name, - ctrl: false, - meta: false, - shift: false, - option: false, - sequence: s, - raw: s, - ...event - }; - - if (Buffer.isBuffer(s)) { - if (s[0] > 127 && s[1] === void 0) { - s[0] -= 128; - s = '\x1b' + String(s); - } else { - s = String(s); - } - } else if (s !== void 0 && typeof s !== 'string') { - s = String(s); - } else if (!s) { - s = key.sequence || ''; - } - - key.sequence = key.sequence || s || key.name; - - if (s === '\r') { - // carriage return - key.raw = void 0; - key.name = 'return'; - } else if (s === '\n') { - // enter, should have been called linefeed - key.name = 'enter'; - } else if (s === '\t') { - // tab - key.name = 'tab'; - } else if (s === '\b' || s === '\x7f' || s === '\x1b\x7f' || s === '\x1b\b') { - // backspace or ctrl+h - key.name = 'backspace'; - key.meta = s.charAt(0) === '\x1b'; - } else if (s === '\x1b' || s === '\x1b\x1b') { - // escape key - key.name = 'escape'; - key.meta = s.length === 2; - } else if (s === ' ' || s === '\x1b ') { - key.name = 'space'; - key.meta = s.length === 2; - } else if (s <= '\x1a') { - // ctrl+letter - key.name = String.fromCharCode(s.charCodeAt(0) + 'a'.charCodeAt(0) - 1); - key.ctrl = true; - } else if (s.length === 1 && s >= '0' && s <= '9') { - // number - key.name = 'number'; - } else if (s.length === 1 && s >= 'a' && s <= 'z') { - // lowercase letter - key.name = s; - } else if (s.length === 1 && s >= 'A' && s <= 'Z') { - // shift+letter - key.name = s.toLowerCase(); - key.shift = true; - } else if ((parts = metaKeyCodeRe.exec(s))) { - // meta+character key - key.meta = true; - key.shift = /^[A-Z]$/.test(parts[1]); - } else if ((parts = fnKeyRe.exec(s))) { - let segs = [...s]; - - if (segs[0] === '\u001b' && segs[1] === '\u001b') { - key.option = true; - } - - // ansi escape sequence - // reassemble the key code leaving out leading \x1b's, - // the modifier key bitflag and any meaningless "1;" sequence - let code = [parts[1], parts[2], parts[4], parts[6]].filter(Boolean).join(''); - let modifier = (parts[3] || parts[5] || 1) - 1; - - // Parse the key modifier - key.ctrl = !!(modifier & 4); - key.meta = !!(modifier & 10); - key.shift = !!(modifier & 1); - key.code = code; - - key.name = keyName[code]; - key.shift = isShiftKey(code) || key.shift; - key.ctrl = isCtrlKey(code) || key.ctrl; - } - return key; -}; - -keypress.listen = (options = {}, onKeypress) => { - let { stdin } = options; - - if (!stdin || (stdin !== process.stdin && !stdin.isTTY)) { - throw new Error('Invalid stream passed'); - } - - let rl = readline.createInterface({ terminal: true, input: stdin }); - readline.emitKeypressEvents(stdin, rl); - - let on = (buf, key) => onKeypress(buf, keypress(buf, key), rl); - let isRaw = stdin.isRaw; - - if (stdin.isTTY) stdin.setRawMode(true); - stdin.on('keypress', on); - rl.resume(); - - let off = () => { - if (stdin.isTTY) stdin.setRawMode(isRaw); - stdin.removeListener('keypress', on); - rl.pause(); - rl.close(); - }; - - return off; -}; - -keypress.action = (buf, key, customActions) => { - let obj = { ...combos, ...customActions }; - if (key.ctrl) { - key.action = obj.ctrl[key.name]; - return key; - } - - if (key.option && obj.option) { - key.action = obj.option[key.name]; - return key; - } - - if (key.shift) { - key.action = obj.shift[key.name]; - return key; - } - - key.action = obj.keys[key.name]; - return key; -}; - -module.exports = keypress; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/placeholder.js b/tools/node_modules/eslint/node_modules/enquirer/lib/placeholder.js deleted file mode 100644 index ae2af1cff90b6b..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/placeholder.js +++ /dev/null @@ -1,63 +0,0 @@ -'use strict'; - -const utils = require('./utils'); - -/** - * Render a placeholder value with cursor and styling based on the - * position of the cursor. - * - * @param {Object} `prompt` Prompt instance. - * @param {String} `input` Input string. - * @param {String} `initial` The initial user-provided value. - * @param {Number} `pos` Current cursor position. - * @param {Boolean} `showCursor` Render a simulated cursor using the inverse primary style. - * @return {String} Returns the styled placeholder string. - * @api public - */ - -module.exports = (prompt, options = {}) => { - prompt.cursorHide(); - - let { input = '', initial = '', pos, showCursor = true, color } = options; - let style = color || prompt.styles.placeholder; - let inverse = utils.inverse(prompt.styles.primary); - let blinker = str => inverse(prompt.styles.black(str)); - let output = input; - let char = ' '; - let reverse = blinker(char); - - if (prompt.blink && prompt.blink.off === true) { - blinker = str => str; - reverse = ''; - } - - if (showCursor && pos === 0 && initial === '' && input === '') { - return blinker(char); - } - - if (showCursor && pos === 0 && (input === initial || input === '')) { - return blinker(initial[0]) + style(initial.slice(1)); - } - - initial = utils.isPrimitive(initial) ? `${initial}` : ''; - input = utils.isPrimitive(input) ? `${input}` : ''; - - let placeholder = initial && initial.startsWith(input) && initial !== input; - let cursor = placeholder ? blinker(initial[input.length]) : reverse; - - if (pos !== input.length && showCursor === true) { - output = input.slice(0, pos) + blinker(input[pos]) + input.slice(pos + 1); - cursor = ''; - } - - if (showCursor === false) { - cursor = ''; - } - - if (placeholder) { - let raw = prompt.styles.unstyle(output + cursor); - return output + cursor + style(initial.slice(raw.length)); - } - - return output + cursor; -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompt.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompt.js deleted file mode 100644 index 65f7bdd1e960a8..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompt.js +++ /dev/null @@ -1,485 +0,0 @@ -'use strict'; - -const Events = require('events'); -const colors = require('ansi-colors'); -const keypress = require('./keypress'); -const timer = require('./timer'); -const State = require('./state'); -const theme = require('./theme'); -const utils = require('./utils'); -const ansi = require('./ansi'); - -/** - * Base class for creating a new Prompt. - * @param {Object} `options` Question object. - */ - -class Prompt extends Events { - constructor(options = {}) { - super(); - this.name = options.name; - this.type = options.type; - this.options = options; - theme(this); - timer(this); - this.state = new State(this); - this.initial = [options.initial, options.default].find(v => v != null); - this.stdout = options.stdout || process.stdout; - this.stdin = options.stdin || process.stdin; - this.scale = options.scale || 1; - this.term = this.options.term || process.env.TERM_PROGRAM; - this.margin = margin(this.options.margin); - this.setMaxListeners(0); - setOptions(this); - } - - async keypress(input, event = {}) { - this.keypressed = true; - let key = keypress.action(input, keypress(input, event), this.options.actions); - this.state.keypress = key; - this.emit('keypress', input, key); - this.emit('state', this.state.clone()); - let fn = this.options[key.action] || this[key.action] || this.dispatch; - if (typeof fn === 'function') { - return await fn.call(this, input, key); - } - this.alert(); - } - - alert() { - delete this.state.alert; - if (this.options.show === false) { - this.emit('alert'); - } else { - this.stdout.write(ansi.code.beep); - } - } - - cursorHide() { - this.stdout.write(ansi.cursor.hide()); - utils.onExit(() => this.cursorShow()); - } - - cursorShow() { - this.stdout.write(ansi.cursor.show()); - } - - write(str) { - if (!str) return; - if (this.stdout && this.state.show !== false) { - this.stdout.write(str); - } - this.state.buffer += str; - } - - clear(lines = 0) { - let buffer = this.state.buffer; - this.state.buffer = ''; - if ((!buffer && !lines) || this.options.show === false) return; - this.stdout.write(ansi.cursor.down(lines) + ansi.clear(buffer, this.width)); - } - - restore() { - if (this.state.closed || this.options.show === false) return; - - let { prompt, after, rest } = this.sections(); - let { cursor, initial = '', input = '', value = '' } = this; - - let size = this.state.size = rest.length; - let state = { after, cursor, initial, input, prompt, size, value }; - let codes = ansi.cursor.restore(state); - if (codes) { - this.stdout.write(codes); - } - } - - sections() { - let { buffer, input, prompt } = this.state; - prompt = colors.unstyle(prompt); - let buf = colors.unstyle(buffer); - let idx = buf.indexOf(prompt); - let header = buf.slice(0, idx); - let rest = buf.slice(idx); - let lines = rest.split('\n'); - let first = lines[0]; - let last = lines[lines.length - 1]; - let promptLine = prompt + (input ? ' ' + input : ''); - let len = promptLine.length; - let after = len < first.length ? first.slice(len + 1) : ''; - return { header, prompt: first, after, rest: lines.slice(1), last }; - } - - async submit() { - this.state.submitted = true; - this.state.validating = true; - - // this will only be called when the prompt is directly submitted - // without initializing, i.e. when the prompt is skipped, etc. Otherwize, - // "options.onSubmit" is will be handled by the "initialize()" method. - if (this.options.onSubmit) { - await this.options.onSubmit.call(this, this.name, this.value, this); - } - - let result = this.state.error || await this.validate(this.value, this.state); - if (result !== true) { - let error = '\n' + this.symbols.pointer + ' '; - - if (typeof result === 'string') { - error += result.trim(); - } else { - error += 'Invalid input'; - } - - this.state.error = '\n' + this.styles.danger(error); - this.state.submitted = false; - await this.render(); - await this.alert(); - this.state.validating = false; - this.state.error = void 0; - return; - } - - this.state.validating = false; - await this.render(); - await this.close(); - - this.value = await this.result(this.value); - this.emit('submit', this.value); - } - - async cancel(err) { - this.state.cancelled = this.state.submitted = true; - - await this.render(); - await this.close(); - - if (typeof this.options.onCancel === 'function') { - await this.options.onCancel.call(this, this.name, this.value, this); - } - - this.emit('cancel', await this.error(err)); - } - - async close() { - this.state.closed = true; - - try { - let sections = this.sections(); - let lines = Math.ceil(sections.prompt.length / this.width); - if (sections.rest) { - this.write(ansi.cursor.down(sections.rest.length)); - } - this.write('\n'.repeat(lines)); - } catch (err) { /* do nothing */ } - - this.emit('close'); - } - - start() { - if (!this.stop && this.options.show !== false) { - this.stop = keypress.listen(this, this.keypress.bind(this)); - this.once('close', this.stop); - } - } - - async skip() { - this.skipped = this.options.skip === true; - if (typeof this.options.skip === 'function') { - this.skipped = await this.options.skip.call(this, this.name, this.value); - } - return this.skipped; - } - - async initialize() { - let { format, options, result } = this; - - this.format = () => format.call(this, this.value); - this.result = () => result.call(this, this.value); - - if (typeof options.initial === 'function') { - this.initial = await options.initial.call(this, this); - } - - if (typeof options.onRun === 'function') { - await options.onRun.call(this, this); - } - - // if "options.onSubmit" is defined, we wrap the "submit" method to guarantee - // that "onSubmit" will always called first thing inside the submit - // method, regardless of how it's handled in inheriting prompts. - if (typeof options.onSubmit === 'function') { - let onSubmit = options.onSubmit.bind(this); - let submit = this.submit.bind(this); - delete this.options.onSubmit; - this.submit = async() => { - await onSubmit(this.name, this.value, this); - return submit(); - }; - } - - await this.start(); - await this.render(); - } - - render() { - throw new Error('expected prompt to have a custom render method'); - } - - run() { - return new Promise(async(resolve, reject) => { - this.once('submit', resolve); - this.once('cancel', reject); - if (await this.skip()) { - this.render = () => {}; - return this.submit(); - } - await this.initialize(); - this.emit('run'); - }); - } - - async element(name, choice, i) { - let { options, state, symbols, timers } = this; - let timer = timers && timers[name]; - state.timer = timer; - let value = options[name] || state[name] || symbols[name]; - let val = choice && choice[name] != null ? choice[name] : await value; - if (val === '') return val; - - let res = await this.resolve(val, state, choice, i); - if (!res && choice && choice[name]) { - return this.resolve(value, state, choice, i); - } - return res; - } - - async prefix() { - let element = await this.element('prefix') || this.symbols; - let timer = this.timers && this.timers.prefix; - let state = this.state; - state.timer = timer; - if (utils.isObject(element)) element = element[state.status] || element.pending; - if (!utils.hasColor(element)) { - let style = this.styles[state.status] || this.styles.pending; - return style(element); - } - return element; - } - - async message() { - let message = await this.element('message'); - if (!utils.hasColor(message)) { - return this.styles.strong(message); - } - return message; - } - - async separator() { - let element = await this.element('separator') || this.symbols; - let timer = this.timers && this.timers.separator; - let state = this.state; - state.timer = timer; - let value = element[state.status] || element.pending || state.separator; - let ele = await this.resolve(value, state); - if (utils.isObject(ele)) ele = ele[state.status] || ele.pending; - if (!utils.hasColor(ele)) { - return this.styles.muted(ele); - } - return ele; - } - - async pointer(choice, i) { - let val = await this.element('pointer', choice, i); - - if (typeof val === 'string' && utils.hasColor(val)) { - return val; - } - - if (val) { - let styles = this.styles; - let focused = this.index === i; - let style = focused ? styles.primary : val => val; - let ele = await this.resolve(val[focused ? 'on' : 'off'] || val, this.state); - let styled = !utils.hasColor(ele) ? style(ele) : ele; - return focused ? styled : ' '.repeat(ele.length); - } - } - - async indicator(choice, i) { - let val = await this.element('indicator', choice, i); - if (typeof val === 'string' && utils.hasColor(val)) { - return val; - } - if (val) { - let styles = this.styles; - let enabled = choice.enabled === true; - let style = enabled ? styles.success : styles.dark; - let ele = val[enabled ? 'on' : 'off'] || val; - return !utils.hasColor(ele) ? style(ele) : ele; - } - return ''; - } - - body() { - return null; - } - - footer() { - if (this.state.status === 'pending') { - return this.element('footer'); - } - } - - header() { - if (this.state.status === 'pending') { - return this.element('header'); - } - } - - async hint() { - if (this.state.status === 'pending' && !this.isValue(this.state.input)) { - let hint = await this.element('hint'); - if (!utils.hasColor(hint)) { - return this.styles.muted(hint); - } - return hint; - } - } - - error(err) { - return !this.state.submitted ? (err || this.state.error) : ''; - } - - format(value) { - return value; - } - - result(value) { - return value; - } - - validate(value) { - if (this.options.required === true) { - return this.isValue(value); - } - return true; - } - - isValue(value) { - return value != null && value !== ''; - } - - resolve(value, ...args) { - return utils.resolve(this, value, ...args); - } - - get base() { - return Prompt.prototype; - } - - get style() { - return this.styles[this.state.status]; - } - - get height() { - return this.options.rows || utils.height(this.stdout, 25); - } - get width() { - return this.options.columns || utils.width(this.stdout, 80); - } - get size() { - return { width: this.width, height: this.height }; - } - - set cursor(value) { - this.state.cursor = value; - } - get cursor() { - return this.state.cursor; - } - - set input(value) { - this.state.input = value; - } - get input() { - return this.state.input; - } - - set value(value) { - this.state.value = value; - } - get value() { - let { input, value } = this.state; - let result = [value, input].find(this.isValue.bind(this)); - return this.isValue(result) ? result : this.initial; - } - - static get prompt() { - return options => new this(options).run(); - } -} - -function setOptions(prompt) { - let isValidKey = key => { - return prompt[key] === void 0 || typeof prompt[key] === 'function'; - }; - - let ignore = [ - 'actions', - 'choices', - 'initial', - 'margin', - 'roles', - 'styles', - 'symbols', - 'theme', - 'timers', - 'value' - ]; - - let ignoreFn = [ - 'body', - 'footer', - 'error', - 'header', - 'hint', - 'indicator', - 'message', - 'prefix', - 'separator', - 'skip' - ]; - - for (let key of Object.keys(prompt.options)) { - if (ignore.includes(key)) continue; - if (/^on[A-Z]/.test(key)) continue; - let option = prompt.options[key]; - if (typeof option === 'function' && isValidKey(key)) { - if (!ignoreFn.includes(key)) { - prompt[key] = option.bind(prompt); - } - } else if (typeof prompt[key] !== 'function') { - prompt[key] = option; - } - } -} - -function margin(value) { - if (typeof value === 'number') { - value = [value, value, value, value]; - } - let arr = [].concat(value || []); - let pad = i => i % 2 === 0 ? '\n' : ' '; - let res = []; - for (let i = 0; i < 4; i++) { - let char = pad(i); - if (arr[i]) { - res.push(char.repeat(arr[i])); - } else { - res.push(''); - } - } - return res; -} - -module.exports = Prompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/autocomplete.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/autocomplete.js deleted file mode 100644 index daa4a16af6ad07..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/autocomplete.js +++ /dev/null @@ -1,113 +0,0 @@ -'use strict'; - -const Select = require('./select'); - -const highlight = (input, color) => { - let val = input.toLowerCase(); - return str => { - let s = str.toLowerCase(); - let i = s.indexOf(val); - let colored = color(str.slice(i, i + val.length)); - return i >= 0 ? str.slice(0, i) + colored + str.slice(i + val.length) : str; - }; -}; - -class AutoComplete extends Select { - constructor(options) { - super(options); - this.cursorShow(); - } - - moveCursor(n) { - this.state.cursor += n; - } - - dispatch(ch) { - return this.append(ch); - } - - space(ch) { - return this.options.multiple ? super.space(ch) : this.append(ch); - } - - append(ch) { - let { cursor, input } = this.state; - this.input = input.slice(0, cursor) + ch + input.slice(cursor); - this.moveCursor(1); - return this.complete(); - } - - delete() { - let { cursor, input } = this.state; - if (!input) return this.alert(); - this.input = input.slice(0, cursor - 1) + input.slice(cursor); - this.moveCursor(-1); - return this.complete(); - } - - deleteForward() { - let { cursor, input } = this.state; - if (input[cursor] === void 0) return this.alert(); - this.input = `${input}`.slice(0, cursor) + `${input}`.slice(cursor + 1); - return this.complete(); - } - - number(ch) { - return this.append(ch); - } - - async complete() { - this.completing = true; - this.choices = await this.suggest(this.input, this.state._choices); - this.state.limit = void 0; // allow getter/setter to reset limit - this.index = Math.min(Math.max(this.visible.length - 1, 0), this.index); - await this.render(); - this.completing = false; - } - - suggest(input = this.input, choices = this.state._choices) { - if (typeof this.options.suggest === 'function') { - return this.options.suggest.call(this, input, choices); - } - let str = input.toLowerCase(); - return choices.filter(ch => ch.message.toLowerCase().includes(str)); - } - - pointer() { - return ''; - } - - format() { - if (!this.focused) return this.input; - if (this.options.multiple && this.state.submitted) { - return this.selected.map(ch => this.styles.primary(ch.message)).join(', '); - } - if (this.state.submitted) { - let value = this.value = this.input = this.focused.value; - return this.styles.primary(value); - } - return this.input; - } - - async render() { - if (this.state.status !== 'pending') return super.render(); - let style = this.options.highlight - ? this.options.highlight.bind(this) - : this.styles.placeholder; - - let color = highlight(this.input, style); - let choices = this.choices; - this.choices = choices.map(ch => ({ ...ch, message: color(ch.message) })); - await super.render(); - this.choices = choices; - } - - submit() { - if (this.options.multiple) { - this.value = this.selected.map(ch => ch.name); - } - return super.submit(); - } -} - -module.exports = AutoComplete; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/basicauth.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/basicauth.js deleted file mode 100644 index 54c5ea77b7f5d3..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/basicauth.js +++ /dev/null @@ -1,41 +0,0 @@ -'use strict'; - -const AuthPrompt = require('../types/auth'); - -function defaultAuthenticate(value, state) { - if (value.username === this.options.username && value.password === this.options.password) { - return true; - } - return false; -} - -const factory = (authenticate = defaultAuthenticate) => { - const choices = [ - { name: 'username', message: 'username' }, - { - name: 'password', - message: 'password', - format(input) { - if (this.options.showPassword) { - return input; - } - let color = this.state.submitted ? this.styles.primary : this.styles.muted; - return color(this.symbols.asterisk.repeat(input.length)); - } - } - ]; - - class BasicAuthPrompt extends AuthPrompt.create(authenticate) { - constructor(options) { - super({ ...options, choices }); - } - - static create(authenticate) { - return factory(authenticate); - } - } - - return BasicAuthPrompt; -}; - -module.exports = factory(); diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/confirm.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/confirm.js deleted file mode 100644 index 61eae7ad9d607c..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/confirm.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict'; - -const BooleanPrompt = require('../types/boolean'); - -class ConfirmPrompt extends BooleanPrompt { - constructor(options) { - super(options); - this.default = this.options.default || (this.initial ? '(Y/n)' : '(y/N)'); - } -} - -module.exports = ConfirmPrompt; - diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/editable.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/editable.js deleted file mode 100644 index 042e4c9d011e3e..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/editable.js +++ /dev/null @@ -1,136 +0,0 @@ -'use strict'; - -const Select = require('./select'); -const Form = require('./form'); -const form = Form.prototype; - -class Editable extends Select { - constructor(options) { - super({ ...options, multiple: true }); - this.align = [this.options.align, 'left'].find(v => v != null); - this.emptyError = ''; - this.values = {}; - } - - dispatch(char, key) { - let choice = this.focused; - let parent = choice.parent || {}; - if (!choice.editable && !parent.editable) { - if (char === 'a' || char === 'i') return super[char](); - } - return form.dispatch.call(this, char, key); - } - - append(char, key) { - return form.append.call(this, char, key); - } - - delete(char, key) { - return form.delete.call(this, char, key); - } - - space(char) { - return this.focused.editable ? this.append(char) : super.space(); - } - - number(char) { - return this.focused.editable ? this.append(char) : super.number(char); - } - - next() { - return this.focused.editable ? form.next.call(this) : super.next(); - } - - prev() { - return this.focused.editable ? form.prev.call(this) : super.prev(); - } - - async indicator(choice, i) { - let symbol = choice.indicator || ''; - let value = choice.editable ? symbol : super.indicator(choice, i); - return await this.resolve(value, this.state, choice, i) || ''; - } - - indent(choice) { - return choice.role === 'heading' ? '' : (choice.editable ? ' ' : ' '); - } - - async renderChoice(choice, i) { - choice.indent = ''; - if (choice.editable) return form.renderChoice.call(this, choice, i); - return super.renderChoice(choice, i); - } - - error() { - return ''; - } - - footer() { - return this.state.error; - } - - async validate() { - let result = true; - - for (let choice of this.choices) { - if (typeof choice.validate !== 'function') { - continue; - } - - if (choice.role === 'heading') { - continue; - } - - let val = choice.parent ? this.value[choice.parent.name] : this.value; - - if (choice.editable) { - val = choice.value === choice.name ? choice.initial || '' : choice.value; - } else if (!this.isDisabled(choice)) { - val = choice.enabled === true; - } - - result = await choice.validate(val, this.state); - - if (result !== true) { - break; - } - } - - if (result !== true) { - this.state.error = typeof result === 'string' ? result : 'Invalid Input'; - } - - return result; - } - - submit() { - if (this.focused.newChoice === true) return super.submit(); - if (this.choices.some(ch => ch.newChoice)) { - return this.alert(); - } - - this.value = {}; - - for (let choice of this.choices) { - let val = choice.parent ? this.value[choice.parent.name] : this.value; - - if (choice.role === 'heading') { - this.value[choice.name] = {}; - continue; - } - - if (choice.editable) { - val[choice.name] = choice.value === choice.name - ? (choice.initial || '') - : choice.value; - - } else if (!this.isDisabled(choice)) { - val[choice.name] = choice.enabled === true; - } - } - - return this.base.submit.call(this); - } -} - -module.exports = Editable; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/form.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/form.js deleted file mode 100644 index aad4c6c6f380ae..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/form.js +++ /dev/null @@ -1,196 +0,0 @@ -'use strict'; - -const colors = require('ansi-colors'); -const SelectPrompt = require('./select'); -const placeholder = require('../placeholder'); - -class FormPrompt extends SelectPrompt { - constructor(options) { - super({ ...options, multiple: true }); - this.type = 'form'; - this.initial = this.options.initial; - this.align = [this.options.align, 'right'].find(v => v != null); - this.emptyError = ''; - this.values = {}; - } - - async reset(first) { - await super.reset(); - if (first === true) this._index = this.index; - this.index = this._index; - this.values = {}; - this.choices.forEach(choice => choice.reset && choice.reset()); - return this.render(); - } - - dispatch(char) { - return !!char && this.append(char); - } - - append(char) { - let choice = this.focused; - if (!choice) return this.alert(); - let { cursor, input } = choice; - choice.value = choice.input = input.slice(0, cursor) + char + input.slice(cursor); - choice.cursor++; - return this.render(); - } - - delete() { - let choice = this.focused; - if (!choice || choice.cursor <= 0) return this.alert(); - let { cursor, input } = choice; - choice.value = choice.input = input.slice(0, cursor - 1) + input.slice(cursor); - choice.cursor--; - return this.render(); - } - - deleteForward() { - let choice = this.focused; - if (!choice) return this.alert(); - let { cursor, input } = choice; - if (input[cursor] === void 0) return this.alert(); - let str = `${input}`.slice(0, cursor) + `${input}`.slice(cursor + 1); - choice.value = choice.input = str; - return this.render(); - } - - right() { - let choice = this.focused; - if (!choice) return this.alert(); - if (choice.cursor >= choice.input.length) return this.alert(); - choice.cursor++; - return this.render(); - } - - left() { - let choice = this.focused; - if (!choice) return this.alert(); - if (choice.cursor <= 0) return this.alert(); - choice.cursor--; - return this.render(); - } - - space(ch, key) { - return this.dispatch(ch, key); - } - - number(ch, key) { - return this.dispatch(ch, key); - } - - next() { - let ch = this.focused; - if (!ch) return this.alert(); - let { initial, input } = ch; - if (initial && initial.startsWith(input) && input !== initial) { - ch.value = ch.input = initial; - ch.cursor = ch.value.length; - return this.render(); - } - return super.next(); - } - - prev() { - let ch = this.focused; - if (!ch) return this.alert(); - if (ch.cursor === 0) return super.prev(); - ch.value = ch.input = ''; - ch.cursor = 0; - return this.render(); - } - - separator() { - return ''; - } - - format(value) { - return !this.state.submitted ? super.format(value) : ''; - } - - pointer() { - return ''; - } - - indicator(choice) { - return choice.input ? '⦿' : '⊙'; - } - - async choiceSeparator(choice, i) { - let sep = await this.resolve(choice.separator, this.state, choice, i) || ':'; - return sep ? ' ' + this.styles.disabled(sep) : ''; - } - - async renderChoice(choice, i) { - await this.onChoice(choice, i); - - let { state, styles } = this; - let { cursor, initial = '', name, hint, input = '' } = choice; - let { muted, submitted, primary, danger } = styles; - - let help = hint; - let focused = this.index === i; - let validate = choice.validate || (() => true); - let sep = await this.choiceSeparator(choice, i); - let msg = choice.message; - - if (this.align === 'right') msg = msg.padStart(this.longest + 1, ' '); - if (this.align === 'left') msg = msg.padEnd(this.longest + 1, ' '); - - // re-populate the form values (answers) object - let value = this.values[name] = (input || initial); - let color = input ? 'success' : 'dark'; - - if ((await validate.call(choice, value, this.state)) !== true) { - color = 'danger'; - } - - let style = styles[color]; - let indicator = style(await this.indicator(choice, i)) + (choice.pad || ''); - - let indent = this.indent(choice); - let line = () => [indent, indicator, msg + sep, input, help].filter(Boolean).join(' '); - - if (state.submitted) { - msg = colors.unstyle(msg); - input = submitted(input); - help = ''; - return line(); - } - - if (choice.format) { - input = await choice.format.call(this, input, choice, i); - } else { - let color = this.styles.muted; - let options = { input, initial, pos: cursor, showCursor: focused, color }; - input = placeholder(this, options); - } - - if (!this.isValue(input)) { - input = this.styles.muted(this.symbols.ellipsis); - } - - if (choice.result) { - this.values[name] = await choice.result.call(this, value, choice, i); - } - - if (focused) { - msg = primary(msg); - } - - if (choice.error) { - input += (input ? ' ' : '') + danger(choice.error.trim()); - } else if (choice.hint) { - input += (input ? ' ' : '') + muted(choice.hint.trim()); - } - - return line(); - } - - async submit() { - this.value = this.values; - return super.base.submit.call(this); - } -} - -module.exports = FormPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/index.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/index.js deleted file mode 100644 index a82fbfb4a4aee6..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/index.js +++ /dev/null @@ -1,28 +0,0 @@ -'use strict'; - -const utils = require('../utils'); - -const define = (key, fn) => { - utils.defineExport(exports, key, fn); - utils.defineExport(exports, key.toLowerCase(), fn); -}; - -define('AutoComplete', () => require('./autocomplete')); -define('BasicAuth', () => require('./basicauth')); -define('Confirm', () => require('./confirm')); -define('Editable', () => require('./editable')); -define('Form', () => require('./form')); -define('Input', () => require('./input')); -define('Invisible', () => require('./invisible')); -define('List', () => require('./list')); -define('MultiSelect', () => require('./multiselect')); -define('Numeral', () => require('./numeral')); -define('Password', () => require('./password')); -define('Scale', () => require('./scale')); -define('Select', () => require('./select')); -define('Snippet', () => require('./snippet')); -define('Sort', () => require('./sort')); -define('Survey', () => require('./survey')); -define('Text', () => require('./text')); -define('Toggle', () => require('./toggle')); -define('Quiz', () => require('./quiz')); diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/input.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/input.js deleted file mode 100644 index 80ba193b424ed0..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/input.js +++ /dev/null @@ -1,55 +0,0 @@ -'use strict'; - -const Prompt = require('../types/string'); -const completer = require('../completer'); - -class Input extends Prompt { - constructor(options) { - super(options); - let history = this.options.history; - if (history && history.store) { - let initial = history.values || this.initial; - this.autosave = !!history.autosave; - this.store = history.store; - this.data = this.store.get('values') || { past: [], present: initial }; - this.initial = this.data.present || this.data.past[this.data.past.length - 1]; - } - } - - completion(action) { - if (!this.store) return this.alert(); - this.data = completer(action, this.data, this.input); - if (!this.data.present) return this.alert(); - this.input = this.data.present; - this.cursor = this.input.length; - return this.render(); - } - - altUp() { - return this.completion('prev'); - } - - altDown() { - return this.completion('next'); - } - - prev() { - this.save(); - return super.prev(); - } - - save() { - if (!this.store) return; - this.data = completer('save', this.data, this.input); - this.store.set('values', this.data); - } - - submit() { - if (this.store && this.autosave === true) { - this.save(); - } - return super.submit(); - } -} - -module.exports = Input; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/invisible.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/invisible.js deleted file mode 100644 index 548106243e9d75..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/invisible.js +++ /dev/null @@ -1,11 +0,0 @@ -'use strict'; - -const StringPrompt = require('../types/string'); - -class InvisiblePrompt extends StringPrompt { - format() { - return ''; - } -} - -module.exports = InvisiblePrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/list.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/list.js deleted file mode 100644 index 7657c7fffd4eda..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/list.js +++ /dev/null @@ -1,36 +0,0 @@ -'use strict'; - -const StringPrompt = require('../types/string'); - -class ListPrompt extends StringPrompt { - constructor(options = {}) { - super(options); - this.sep = this.options.separator || /, */; - this.initial = options.initial || ''; - } - - split(input = this.value) { - return input ? String(input).split(this.sep) : []; - } - - format() { - let style = this.state.submitted ? this.styles.primary : val => val; - return this.list.map(style).join(', '); - } - - async submit(value) { - let result = this.state.error || await this.validate(this.list, this.state); - if (result !== true) { - this.state.error = result; - return super.submit(); - } - this.value = this.list; - return super.submit(); - } - - get list() { - return this.split(); - } -} - -module.exports = ListPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/multiselect.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/multiselect.js deleted file mode 100644 index f64fcd58242784..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/multiselect.js +++ /dev/null @@ -1,11 +0,0 @@ -'use strict'; - -const Select = require('./select'); - -class MultiSelect extends Select { - constructor(options) { - super({ ...options, multiple: true }); - } -} - -module.exports = MultiSelect; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/numeral.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/numeral.js deleted file mode 100644 index 2a81fdd26dfaf2..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/numeral.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('../types/number'); diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/password.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/password.js deleted file mode 100644 index 46df22d286f22d..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/password.js +++ /dev/null @@ -1,18 +0,0 @@ -'use strict'; - -const StringPrompt = require('../types/string'); - -class PasswordPrompt extends StringPrompt { - constructor(options) { - super(options); - this.cursorShow(); - } - - format(input = this.input) { - if (!this.keypressed) return ''; - let color = this.state.submitted ? this.styles.primary : this.styles.muted; - return color(this.symbols.asterisk.repeat(input.length)); - } -} - -module.exports = PasswordPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/quiz.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/quiz.js deleted file mode 100644 index 2be455184b9f87..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/quiz.js +++ /dev/null @@ -1,37 +0,0 @@ -'use strict'; - -const SelectPrompt = require('./select'); - -class Quiz extends SelectPrompt { - constructor(options) { - super(options); - if (typeof this.options.correctChoice !== 'number' || this.options.correctChoice < 0) { - throw new Error('Please specify the index of the correct answer from the list of choices'); - } - } - - async toChoices(value, parent) { - let choices = await super.toChoices(value, parent); - if (choices.length < 2) { - throw new Error('Please give at least two choices to the user'); - } - if (this.options.correctChoice > choices.length) { - throw new Error('Please specify the index of the correct answer from the list of choices'); - } - return choices; - } - - check(state) { - return state.index === this.options.correctChoice; - } - - async result(selected) { - return { - selectedAnswer: selected, - correctAnswer: this.options.choices[this.options.correctChoice].value, - correct: await this.check(this.state) - }; - } -} - -module.exports = Quiz; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/scale.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/scale.js deleted file mode 100644 index 29d682964b6972..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/scale.js +++ /dev/null @@ -1,237 +0,0 @@ -'use strict'; - -const colors = require('ansi-colors'); -const ArrayPrompt = require('../types/array'); -const utils = require('../utils'); - -class LikertScale extends ArrayPrompt { - constructor(options = {}) { - super(options); - this.widths = [].concat(options.messageWidth || 50); - this.align = [].concat(options.align || 'left'); - this.linebreak = options.linebreak || false; - this.edgeLength = options.edgeLength || 3; - this.newline = options.newline || '\n '; - let start = options.startNumber || 1; - if (typeof this.scale === 'number') { - this.scaleKey = false; - this.scale = Array(this.scale).fill(0).map((v, i) => ({ name: i + start })); - } - } - - async reset() { - this.tableized = false; - await super.reset(); - return this.render(); - } - - tableize() { - if (this.tableized === true) return; - this.tableized = true; - let longest = 0; - - for (let ch of this.choices) { - longest = Math.max(longest, ch.message.length); - ch.scaleIndex = ch.initial || 2; - ch.scale = []; - - for (let i = 0; i < this.scale.length; i++) { - ch.scale.push({ index: i }); - } - } - this.widths[0] = Math.min(this.widths[0], longest + 3); - } - - async dispatch(s, key) { - if (this.multiple) { - return this[key.name] ? await this[key.name](s, key) : await super.dispatch(s, key); - } - this.alert(); - } - - heading(msg, item, i) { - return this.styles.strong(msg); - } - - separator() { - return this.styles.muted(this.symbols.ellipsis); - } - - right() { - let choice = this.focused; - if (choice.scaleIndex >= this.scale.length - 1) return this.alert(); - choice.scaleIndex++; - return this.render(); - } - - left() { - let choice = this.focused; - if (choice.scaleIndex <= 0) return this.alert(); - choice.scaleIndex--; - return this.render(); - } - - indent() { - return ''; - } - - format() { - if (this.state.submitted) { - let values = this.choices.map(ch => this.styles.info(ch.index)); - return values.join(', '); - } - return ''; - } - - pointer() { - return ''; - } - - /** - * Render the scale "Key". Something like: - * @return {String} - */ - - renderScaleKey() { - if (this.scaleKey === false) return ''; - if (this.state.submitted) return ''; - let scale = this.scale.map(item => ` ${item.name} - ${item.message}`); - let key = ['', ...scale].map(item => this.styles.muted(item)); - return key.join('\n'); - } - - /** - * Render the heading row for the scale. - * @return {String} - */ - - renderScaleHeading(max) { - let keys = this.scale.map(ele => ele.name); - if (typeof this.options.renderScaleHeading === 'function') { - keys = this.options.renderScaleHeading.call(this, max); - } - let diff = this.scaleLength - keys.join('').length; - let spacing = Math.round(diff / (keys.length - 1)); - let names = keys.map(key => this.styles.strong(key)); - let headings = names.join(' '.repeat(spacing)); - let padding = ' '.repeat(this.widths[0]); - return this.margin[3] + padding + this.margin[1] + headings; - } - - /** - * Render a scale indicator => ◯ or ◉ by default - */ - - scaleIndicator(choice, item, i) { - if (typeof this.options.scaleIndicator === 'function') { - return this.options.scaleIndicator.call(this, choice, item, i); - } - let enabled = choice.scaleIndex === item.index; - if (item.disabled) return this.styles.hint(this.symbols.radio.disabled); - if (enabled) return this.styles.success(this.symbols.radio.on); - return this.symbols.radio.off; - } - - /** - * Render the actual scale => ◯────◯────◉────◯────◯ - */ - - renderScale(choice, i) { - let scale = choice.scale.map(item => this.scaleIndicator(choice, item, i)); - let padding = this.term === 'Hyper' ? '' : ' '; - return scale.join(padding + this.symbols.line.repeat(this.edgeLength)); - } - - /** - * Render a choice, including scale => - * "The website is easy to navigate. ◯───◯───◉───◯───◯" - */ - - async renderChoice(choice, i) { - await this.onChoice(choice, i); - - let focused = this.index === i; - let pointer = await this.pointer(choice, i); - let hint = await choice.hint; - - if (hint && !utils.hasColor(hint)) { - hint = this.styles.muted(hint); - } - - let pad = str => this.margin[3] + str.replace(/\s+$/, '').padEnd(this.widths[0], ' '); - let newline = this.newline; - let ind = this.indent(choice); - let message = await this.resolve(choice.message, this.state, choice, i); - let scale = await this.renderScale(choice, i); - let margin = this.margin[1] + this.margin[3]; - this.scaleLength = colors.unstyle(scale).length; - this.widths[0] = Math.min(this.widths[0], this.width - this.scaleLength - margin.length); - let msg = utils.wordWrap(message, { width: this.widths[0], newline }); - let lines = msg.split('\n').map(line => pad(line) + this.margin[1]); - - if (focused) { - scale = this.styles.info(scale); - lines = lines.map(line => this.styles.info(line)); - } - - lines[0] += scale; - - if (this.linebreak) lines.push(''); - return [ind + pointer, lines.join('\n')].filter(Boolean); - } - - async renderChoices() { - if (this.state.submitted) return ''; - this.tableize(); - let choices = this.visible.map(async(ch, i) => await this.renderChoice(ch, i)); - let visible = await Promise.all(choices); - let heading = await this.renderScaleHeading(); - return this.margin[0] + [heading, ...visible.map(v => v.join(' '))].join('\n'); - } - - async render() { - let { submitted, size } = this.state; - - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - let prompt = ''; - if (this.options.promptLine !== false) { - prompt = [prefix, message, separator, ''].join(' '); - this.state.prompt = prompt; - } - - let header = await this.header(); - let output = await this.format(); - let key = await this.renderScaleKey(); - let help = await this.error() || await this.hint(); - let body = await this.renderChoices(); - let footer = await this.footer(); - let err = this.emptyError; - - if (output) prompt += output; - if (help && !prompt.includes(help)) prompt += ' ' + help; - - if (submitted && !output && !body.trim() && this.multiple && err != null) { - prompt += this.styles.danger(err); - } - - this.clear(size); - this.write([header, prompt, key, body, footer].filter(Boolean).join('\n')); - if (!this.state.submitted) { - this.write(this.margin[2]); - } - this.restore(); - } - - submit() { - this.value = {}; - for (let choice of this.choices) { - this.value[choice.name] = choice.scaleIndex; - } - return this.base.submit.call(this); - } -} - -module.exports = LikertScale; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/select.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/select.js deleted file mode 100644 index 5d3ad3703ed970..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/select.js +++ /dev/null @@ -1,139 +0,0 @@ -'use strict'; - -const ArrayPrompt = require('../types/array'); -const utils = require('../utils'); - -class SelectPrompt extends ArrayPrompt { - constructor(options) { - super(options); - this.emptyError = this.options.emptyError || 'No items were selected'; - } - - async dispatch(s, key) { - if (this.multiple) { - return this[key.name] ? await this[key.name](s, key) : await super.dispatch(s, key); - } - this.alert(); - } - - separator() { - if (this.options.separator) return super.separator(); - let sep = this.styles.muted(this.symbols.ellipsis); - return this.state.submitted ? super.separator() : sep; - } - - pointer(choice, i) { - return (!this.multiple || this.options.pointer) ? super.pointer(choice, i) : ''; - } - - indicator(choice, i) { - return this.multiple ? super.indicator(choice, i) : ''; - } - - choiceMessage(choice, i) { - let message = this.resolve(choice.message, this.state, choice, i); - if (choice.role === 'heading' && !utils.hasColor(message)) { - message = this.styles.strong(message); - } - return this.resolve(message, this.state, choice, i); - } - - choiceSeparator() { - return ':'; - } - - async renderChoice(choice, i) { - await this.onChoice(choice, i); - - let focused = this.index === i; - let pointer = await this.pointer(choice, i); - let check = await this.indicator(choice, i) + (choice.pad || ''); - let hint = await this.resolve(choice.hint, this.state, choice, i); - - if (hint && !utils.hasColor(hint)) { - hint = this.styles.muted(hint); - } - - let ind = this.indent(choice); - let msg = await this.choiceMessage(choice, i); - let line = () => [this.margin[3], ind + pointer + check, msg, this.margin[1], hint].filter(Boolean).join(' '); - - if (choice.role === 'heading') { - return line(); - } - - if (choice.disabled) { - if (!utils.hasColor(msg)) { - msg = this.styles.disabled(msg); - } - return line(); - } - - if (focused) { - msg = this.styles.em(msg); - } - - return line(); - } - - async renderChoices() { - if (this.state.loading === 'choices') { - return this.styles.warning('Loading choices'); - } - - if (this.state.submitted) return ''; - let choices = this.visible.map(async(ch, i) => await this.renderChoice(ch, i)); - let visible = await Promise.all(choices); - if (!visible.length) visible.push(this.styles.danger('No matching choices')); - let result = this.margin[0] + visible.join('\n'); - let header; - - if (this.options.choicesHeader) { - header = await this.resolve(this.options.choicesHeader, this.state); - } - - return [header, result].filter(Boolean).join('\n'); - } - - format() { - if (!this.state.submitted || this.state.cancelled) return ''; - if (Array.isArray(this.selected)) { - return this.selected.map(choice => this.styles.primary(choice.name)).join(', '); - } - return this.styles.primary(this.selected.name); - } - - async render() { - let { submitted, size } = this.state; - - let prompt = ''; - let header = await this.header(); - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - if (this.options.promptLine !== false) { - prompt = [prefix, message, separator, ''].join(' '); - this.state.prompt = prompt; - } - - let output = await this.format(); - let help = (await this.error()) || (await this.hint()); - let body = await this.renderChoices(); - let footer = await this.footer(); - - if (output) prompt += output; - if (help && !prompt.includes(help)) prompt += ' ' + help; - - if (submitted && !output && !body.trim() && this.multiple && this.emptyError != null) { - prompt += this.styles.danger(this.emptyError); - } - - this.clear(size); - this.write([header, prompt, body, footer].filter(Boolean).join('\n')); - this.write(this.margin[2]); - this.restore(); - } -} - -module.exports = SelectPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/snippet.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/snippet.js deleted file mode 100644 index eec6cc3ab562fa..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/snippet.js +++ /dev/null @@ -1,185 +0,0 @@ -'use strict'; - -const colors = require('ansi-colors'); -const interpolate = require('../interpolate'); -const Prompt = require('../prompt'); - -class SnippetPrompt extends Prompt { - constructor(options) { - super(options); - this.cursorHide(); - this.reset(true); - } - - async initialize() { - this.interpolate = await interpolate(this); - await super.initialize(); - } - - async reset(first) { - this.state.keys = []; - this.state.invalid = new Map(); - this.state.missing = new Set(); - this.state.completed = 0; - this.state.values = {}; - - if (first !== true) { - await this.initialize(); - await this.render(); - } - } - - moveCursor(n) { - let item = this.getItem(); - this.cursor += n; - item.cursor += n; - } - - dispatch(ch, key) { - if (!key.code && !key.ctrl && ch != null && this.getItem()) { - this.append(ch, key); - return; - } - this.alert(); - } - - append(ch, key) { - let item = this.getItem(); - let prefix = item.input.slice(0, this.cursor); - let suffix = item.input.slice(this.cursor); - this.input = item.input = `${prefix}${ch}${suffix}`; - this.moveCursor(1); - this.render(); - } - - delete() { - let item = this.getItem(); - if (this.cursor <= 0 || !item.input) return this.alert(); - let suffix = item.input.slice(this.cursor); - let prefix = item.input.slice(0, this.cursor - 1); - this.input = item.input = `${prefix}${suffix}`; - this.moveCursor(-1); - this.render(); - } - - increment(i) { - return i >= this.state.keys.length - 1 ? 0 : i + 1; - } - - decrement(i) { - return i <= 0 ? this.state.keys.length - 1 : i - 1; - } - - first() { - this.state.index = 0; - this.render(); - } - - last() { - this.state.index = this.state.keys.length - 1; - this.render(); - } - - right() { - if (this.cursor >= this.input.length) return this.alert(); - this.moveCursor(1); - this.render(); - } - - left() { - if (this.cursor <= 0) return this.alert(); - this.moveCursor(-1); - this.render(); - } - - prev() { - this.state.index = this.decrement(this.state.index); - this.getItem(); - this.render(); - } - - next() { - this.state.index = this.increment(this.state.index); - this.getItem(); - this.render(); - } - - up() { - this.prev(); - } - - down() { - this.next(); - } - - format(value) { - let color = this.state.completed < 100 ? this.styles.warning : this.styles.success; - if (this.state.submitted === true && this.state.completed !== 100) { - color = this.styles.danger; - } - return color(`${this.state.completed}% completed`); - } - - async render() { - let { index, keys = [], submitted, size } = this.state; - - let newline = [this.options.newline, '\n'].find(v => v != null); - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - let prompt = [prefix, message, separator].filter(Boolean).join(' '); - this.state.prompt = prompt; - - let header = await this.header(); - let error = (await this.error()) || ''; - let hint = (await this.hint()) || ''; - let body = submitted ? '' : await this.interpolate(this.state); - - let key = this.state.key = keys[index] || ''; - let input = await this.format(key); - let footer = await this.footer(); - if (input) prompt += ' ' + input; - if (hint && !input && this.state.completed === 0) prompt += ' ' + hint; - - this.clear(size); - let lines = [header, prompt, body, footer, error.trim()]; - this.write(lines.filter(Boolean).join(newline)); - this.restore(); - } - - getItem(name) { - let { items, keys, index } = this.state; - let item = items.find(ch => ch.name === keys[index]); - if (item && item.input != null) { - this.input = item.input; - this.cursor = item.cursor; - } - return item; - } - - async submit() { - if (typeof this.interpolate !== 'function') await this.initialize(); - await this.interpolate(this.state, true); - - let { invalid, missing, output, values } = this.state; - if (invalid.size) { - let err = ''; - for (let [key, value] of invalid) err += `Invalid ${key}: ${value}\n`; - this.state.error = err; - return super.submit(); - } - - if (missing.size) { - this.state.error = 'Required: ' + [...missing.keys()].join(', '); - return super.submit(); - } - - let lines = colors.unstyle(output).split('\n'); - let result = lines.map(v => v.slice(1)).join('\n'); - this.value = { values, result }; - return super.submit(); - } -} - -module.exports = SnippetPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/sort.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/sort.js deleted file mode 100644 index b779b9b24e1790..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/sort.js +++ /dev/null @@ -1,37 +0,0 @@ -'use strict'; - -const hint = '(Use + to sort)'; -const Prompt = require('./select'); - -class Sort extends Prompt { - constructor(options) { - super({ ...options, reorder: false, sort: true, multiple: true }); - this.state.hint = [this.options.hint, hint].find(this.isValue.bind(this)); - } - - indicator() { - return ''; - } - - async renderChoice(choice, i) { - let str = await super.renderChoice(choice, i); - let sym = this.symbols.identicalTo + ' '; - let pre = (this.index === i && this.sorting) ? this.styles.muted(sym) : ' '; - if (this.options.drag === false) pre = ''; - if (this.options.numbered === true) { - return pre + `${i + 1} - ` + str; - } - return pre + str; - } - - get selected() { - return this.choices; - } - - submit() { - this.value = this.choices.map(choice => choice.value); - return super.submit(); - } -} - -module.exports = Sort; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/survey.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/survey.js deleted file mode 100644 index 5d39f6bd29a2b6..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/survey.js +++ /dev/null @@ -1,163 +0,0 @@ -'use strict'; - -const ArrayPrompt = require('../types/array'); - -class Survey extends ArrayPrompt { - constructor(options = {}) { - super(options); - this.emptyError = options.emptyError || 'No items were selected'; - this.term = process.env.TERM_PROGRAM; - - if (!this.options.header) { - let header = ['', '4 - Strongly Agree', '3 - Agree', '2 - Neutral', '1 - Disagree', '0 - Strongly Disagree', '']; - header = header.map(ele => this.styles.muted(ele)); - this.state.header = header.join('\n '); - } - } - - async toChoices(...args) { - if (this.createdScales) return false; - this.createdScales = true; - let choices = await super.toChoices(...args); - for (let choice of choices) { - choice.scale = createScale(5, this.options); - choice.scaleIdx = 2; - } - return choices; - } - - dispatch() { - this.alert(); - } - - space() { - let choice = this.focused; - let ele = choice.scale[choice.scaleIdx]; - let selected = ele.selected; - choice.scale.forEach(e => (e.selected = false)); - ele.selected = !selected; - return this.render(); - } - - indicator() { - return ''; - } - - pointer() { - return ''; - } - - separator() { - return this.styles.muted(this.symbols.ellipsis); - } - - right() { - let choice = this.focused; - if (choice.scaleIdx >= choice.scale.length - 1) return this.alert(); - choice.scaleIdx++; - return this.render(); - } - - left() { - let choice = this.focused; - if (choice.scaleIdx <= 0) return this.alert(); - choice.scaleIdx--; - return this.render(); - } - - indent() { - return ' '; - } - - async renderChoice(item, i) { - await this.onChoice(item, i); - let focused = this.index === i; - let isHyper = this.term === 'Hyper'; - let n = !isHyper ? 8 : 9; - let s = !isHyper ? ' ' : ''; - let ln = this.symbols.line.repeat(n); - let sp = ' '.repeat(n + (isHyper ? 0 : 1)); - let dot = enabled => (enabled ? this.styles.success('◉') : '◯') + s; - - let num = i + 1 + '.'; - let color = focused ? this.styles.heading : this.styles.noop; - let msg = await this.resolve(item.message, this.state, item, i); - let indent = this.indent(item); - let scale = indent + item.scale.map((e, i) => dot(i === item.scaleIdx)).join(ln); - let val = i => i === item.scaleIdx ? color(i) : i; - let next = indent + item.scale.map((e, i) => val(i)).join(sp); - - let line = () => [num, msg].filter(Boolean).join(' '); - let lines = () => [line(), scale, next, ' '].filter(Boolean).join('\n'); - - if (focused) { - scale = this.styles.cyan(scale); - next = this.styles.cyan(next); - } - - return lines(); - } - - async renderChoices() { - if (this.state.submitted) return ''; - let choices = this.visible.map(async(ch, i) => await this.renderChoice(ch, i)); - let visible = await Promise.all(choices); - if (!visible.length) visible.push(this.styles.danger('No matching choices')); - return visible.join('\n'); - } - - format() { - if (this.state.submitted) { - let values = this.choices.map(ch => this.styles.info(ch.scaleIdx)); - return values.join(', '); - } - return ''; - } - - async render() { - let { submitted, size } = this.state; - - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - let prompt = [prefix, message, separator].filter(Boolean).join(' '); - this.state.prompt = prompt; - - let header = await this.header(); - let output = await this.format(); - let help = await this.error() || await this.hint(); - let body = await this.renderChoices(); - let footer = await this.footer(); - - if (output || !help) prompt += ' ' + output; - if (help && !prompt.includes(help)) prompt += ' ' + help; - - if (submitted && !output && !body && this.multiple && this.type !== 'form') { - prompt += this.styles.danger(this.emptyError); - } - - this.clear(size); - this.write([prompt, header, body, footer].filter(Boolean).join('\n')); - this.restore(); - } - - submit() { - this.value = {}; - for (let choice of this.choices) { - this.value[choice.name] = choice.scaleIdx; - } - return this.base.submit.call(this); - } -} - -function createScale(n, options = {}) { - if (Array.isArray(options.scale)) { - return options.scale.map(ele => ({ ...ele })); - } - let scale = []; - for (let i = 1; i < n + 1; i++) scale.push({ i, selected: false }); - return scale; -} - -module.exports = Survey; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/text.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/text.js deleted file mode 100644 index 556e1db44d280b..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/text.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./input'); diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/toggle.js b/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/toggle.js deleted file mode 100644 index 26d33945e926fa..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/prompts/toggle.js +++ /dev/null @@ -1,109 +0,0 @@ -'use strict'; - -const BooleanPrompt = require('../types/boolean'); - -class TogglePrompt extends BooleanPrompt { - async initialize() { - await super.initialize(); - this.value = this.initial = !!this.options.initial; - this.disabled = this.options.disabled || 'no'; - this.enabled = this.options.enabled || 'yes'; - await this.render(); - } - - reset() { - this.value = this.initial; - this.render(); - } - - delete() { - this.alert(); - } - - toggle() { - this.value = !this.value; - this.render(); - } - - enable() { - if (this.value === true) return this.alert(); - this.value = true; - this.render(); - } - disable() { - if (this.value === false) return this.alert(); - this.value = false; - this.render(); - } - - up() { - this.toggle(); - } - down() { - this.toggle(); - } - right() { - this.toggle(); - } - left() { - this.toggle(); - } - next() { - this.toggle(); - } - prev() { - this.toggle(); - } - - dispatch(ch = '', key) { - switch (ch.toLowerCase()) { - case ' ': - return this.toggle(); - case '1': - case 'y': - case 't': - return this.enable(); - case '0': - case 'n': - case 'f': - return this.disable(); - default: { - return this.alert(); - } - } - } - - format() { - let active = str => this.styles.primary.underline(str); - let value = [ - this.value ? this.disabled : active(this.disabled), - this.value ? active(this.enabled) : this.enabled - ]; - return value.join(this.styles.muted(' / ')); - } - - async render() { - let { size } = this.state; - - let header = await this.header(); - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - let output = await this.format(); - let help = (await this.error()) || (await this.hint()); - let footer = await this.footer(); - - let prompt = [prefix, message, separator, output].join(' '); - this.state.prompt = prompt; - - if (help && !prompt.includes(help)) prompt += ' ' + help; - - this.clear(size); - this.write([header, prompt, footer].filter(Boolean).join('\n')); - this.write(this.margin[2]); - this.restore(); - } -} - -module.exports = TogglePrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/render.js b/tools/node_modules/eslint/node_modules/enquirer/lib/render.js deleted file mode 100644 index 6a6df4a24b1d6c..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/render.js +++ /dev/null @@ -1,33 +0,0 @@ -'use strict'; - -module.exports = async(value, prompt, context = {}) => { - let { choices, multiple } = prompt.options; - let { size, submitted } = prompt.state; - - let prefix = context.prefix || await prompt.prefix(); - let separator = context.separator || await prompt.separator(); - let message = context.message || await prompt.message(); - - // ? Select your favorite colors > - // ^ ^ ^ - // prefix message separator - let promptLine = [prefix, message, separator].filter(Boolean).join(' '); - prompt.state.prompt = promptLine; - - let header = context.header || await prompt.header(); - let output = context.format || await prompt.format(value); - let help = context.help || await prompt.error() || await prompt.hint(); - let body = context.body || await prompt.body(); - let footer = context.footer || await prompt.footer(); - - if (output || !help) promptLine += ' ' + output; - if (help && !promptLine.includes(help)) promptLine += ' ' + help; - - if (submitted && choices && multiple && !output && !body) { - promptLine += prompt.styles.danger('No items were selected'); - } - - prompt.clear(size); - prompt.write([header, promptLine, body, footer].filter(Boolean).join('\n')); - prompt.restore(); -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/roles.js b/tools/node_modules/eslint/node_modules/enquirer/lib/roles.js deleted file mode 100644 index 1d663d22d85c2d..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/roles.js +++ /dev/null @@ -1,46 +0,0 @@ -'use strict'; - -const utils = require('./utils'); -const roles = { - default(prompt, choice) { - return choice; - }, - checkbox(prompt, choice) { - throw new Error('checkbox role is not implemented yet'); - }, - editable(prompt, choice) { - throw new Error('editable role is not implemented yet'); - }, - expandable(prompt, choice) { - throw new Error('expandable role is not implemented yet'); - }, - heading(prompt, choice) { - choice.disabled = ''; - choice.indicator = [choice.indicator, ' '].find(v => v != null); - choice.message = choice.message || ''; - return choice; - }, - input(prompt, choice) { - throw new Error('input role is not implemented yet'); - }, - option(prompt, choice) { - return roles.default(prompt, choice); - }, - radio(prompt, choice) { - throw new Error('radio role is not implemented yet'); - }, - separator(prompt, choice) { - choice.disabled = ''; - choice.indicator = [choice.indicator, ' '].find(v => v != null); - choice.message = choice.message || prompt.symbols.line.repeat(5); - return choice; - }, - spacer(prompt, choice) { - return choice; - } -}; - -module.exports = (name, options = {}) => { - let role = utils.merge({}, roles, options.roles); - return role[name] || role.default; -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/state.js b/tools/node_modules/eslint/node_modules/enquirer/lib/state.js deleted file mode 100644 index 501890b8e2df52..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/state.js +++ /dev/null @@ -1,69 +0,0 @@ -'use strict'; - -const { define, width } = require('./utils'); - -class State { - constructor(prompt) { - let options = prompt.options; - define(this, '_prompt', prompt); - this.type = prompt.type; - this.name = prompt.name; - this.message = ''; - this.header = ''; - this.footer = ''; - this.error = ''; - this.hint = ''; - this.input = ''; - this.cursor = 0; - this.index = 0; - this.lines = 0; - this.tick = 0; - this.prompt = ''; - this.buffer = ''; - this.width = width(options.stdout || process.stdout); - Object.assign(this, options); - this.name = this.name || this.message; - this.message = this.message || this.name; - this.symbols = prompt.symbols; - this.styles = prompt.styles; - this.required = new Set(); - this.cancelled = false; - this.submitted = false; - } - - clone() { - let state = { ...this }; - state.status = this.status; - state.buffer = Buffer.from(state.buffer); - delete state.clone; - return state; - } - - set color(val) { - this._color = val; - } - get color() { - let styles = this.prompt.styles; - if (this.cancelled) return styles.cancelled; - if (this.submitted) return styles.submitted; - let color = this._color || styles[this.status]; - return typeof color === 'function' ? color : styles.pending; - } - - set loading(value) { - this._loading = value; - } - get loading() { - if (typeof this._loading === 'boolean') return this._loading; - if (this.loadingChoices) return 'choices'; - return false; - } - - get status() { - if (this.cancelled) return 'cancelled'; - if (this.submitted) return 'submitted'; - return 'pending'; - } -} - -module.exports = State; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/styles.js b/tools/node_modules/eslint/node_modules/enquirer/lib/styles.js deleted file mode 100644 index 0a177f4298996b..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/styles.js +++ /dev/null @@ -1,144 +0,0 @@ -'use strict'; - -const utils = require('./utils'); -const colors = require('ansi-colors'); - -const styles = { - default: colors.noop, - noop: colors.noop, - - /** - * Modifiers - */ - - set inverse(custom) { - this._inverse = custom; - }, - get inverse() { - return this._inverse || utils.inverse(this.primary); - }, - - set complement(custom) { - this._complement = custom; - }, - get complement() { - return this._complement || utils.complement(this.primary); - }, - - /** - * Main color - */ - - primary: colors.cyan, - - /** - * Main palette - */ - - success: colors.green, - danger: colors.magenta, - strong: colors.bold, - warning: colors.yellow, - muted: colors.dim, - disabled: colors.gray, - dark: colors.dim.gray, - underline: colors.underline, - - set info(custom) { - this._info = custom; - }, - get info() { - return this._info || this.primary; - }, - - set em(custom) { - this._em = custom; - }, - get em() { - return this._em || this.primary.underline; - }, - - set heading(custom) { - this._heading = custom; - }, - get heading() { - return this._heading || this.muted.underline; - }, - - /** - * Statuses - */ - - set pending(custom) { - this._pending = custom; - }, - get pending() { - return this._pending || this.primary; - }, - - set submitted(custom) { - this._submitted = custom; - }, - get submitted() { - return this._submitted || this.success; - }, - - set cancelled(custom) { - this._cancelled = custom; - }, - get cancelled() { - return this._cancelled || this.danger; - }, - - /** - * Special styling - */ - - set typing(custom) { - this._typing = custom; - }, - get typing() { - return this._typing || this.dim; - }, - - set placeholder(custom) { - this._placeholder = custom; - }, - get placeholder() { - return this._placeholder || this.primary.dim; - }, - - set highlight(custom) { - this._highlight = custom; - }, - get highlight() { - return this._highlight || this.inverse; - } -}; - -styles.merge = (options = {}) => { - if (options.styles && typeof options.styles.enabled === 'boolean') { - colors.enabled = options.styles.enabled; - } - if (options.styles && typeof options.styles.visible === 'boolean') { - colors.visible = options.styles.visible; - } - - let result = utils.merge({}, styles, options.styles); - delete result.merge; - - for (let key of Object.keys(colors)) { - if (!result.hasOwnProperty(key)) { - Reflect.defineProperty(result, key, { get: () => colors[key] }); - } - } - - for (let key of Object.keys(colors.styles)) { - if (!result.hasOwnProperty(key)) { - Reflect.defineProperty(result, key, { get: () => colors[key] }); - } - } - return result; -}; - -module.exports = styles; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/symbols.js b/tools/node_modules/eslint/node_modules/enquirer/lib/symbols.js deleted file mode 100644 index 16adb8690eda19..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/symbols.js +++ /dev/null @@ -1,66 +0,0 @@ -'use strict'; - -const isWindows = process.platform === 'win32'; -const colors = require('ansi-colors'); -const utils = require('./utils'); - -const symbols = { - ...colors.symbols, - upDownDoubleArrow: '⇕', - upDownDoubleArrow2: '⬍', - upDownArrow: '↕', - asterisk: '*', - asterism: '⁂', - bulletWhite: '◦', - electricArrow: '⌁', - ellipsisLarge: '⋯', - ellipsisSmall: '…', - fullBlock: '█', - identicalTo: '≡', - indicator: colors.symbols.check, - leftAngle: '‹', - mark: '※', - minus: '−', - multiplication: '×', - obelus: '÷', - percent: '%', - pilcrow: '¶', - pilcrow2: '❡', - pencilUpRight: '✐', - pencilDownRight: '✎', - pencilRight: '✏', - plus: '+', - plusMinus: '±', - pointRight: '☞', - rightAngle: '›', - section: '§', - hexagon: { off: '⬡', on: '⬢', disabled: '⬢' }, - ballot: { on: '☑', off: '☐', disabled: '☒' }, - stars: { on: '★', off: '☆', disabled: '☆' }, - folder: { on: '▼', off: '▶', disabled: '▶' }, - prefix: { - pending: colors.symbols.question, - submitted: colors.symbols.check, - cancelled: colors.symbols.cross - }, - separator: { - pending: colors.symbols.pointerSmall, - submitted: colors.symbols.middot, - cancelled: colors.symbols.middot - }, - radio: { - off: isWindows ? '( )' : '◯', - on: isWindows ? '(*)' : '◉', - disabled: isWindows ? '(|)' : 'Ⓘ' - }, - numbers: ['⓪', '①', '②', '③', '④', '⑤', '⑥', '⑦', '⑧', '⑨', '⑩', '⑪', '⑫', '⑬', '⑭', '⑮', '⑯', '⑰', '⑱', '⑲', '⑳', '㉑', '㉒', '㉓', '㉔', '㉕', '㉖', '㉗', '㉘', '㉙', '㉚', '㉛', '㉜', '㉝', '㉞', '㉟', '㊱', '㊲', '㊳', '㊴', '㊵', '㊶', '㊷', '㊸', '㊹', '㊺', '㊻', '㊼', '㊽', '㊾', '㊿'] -}; - -symbols.merge = options => { - let result = utils.merge({}, colors.symbols, symbols, options.symbols); - delete result.merge; - return result; -}; - -module.exports = symbols; - diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/theme.js b/tools/node_modules/eslint/node_modules/enquirer/lib/theme.js deleted file mode 100644 index f9c642ac56fdca..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/theme.js +++ /dev/null @@ -1,11 +0,0 @@ -'use strict'; - -const styles = require('./styles'); -const symbols = require('./symbols'); -const utils = require('./utils'); - -module.exports = prompt => { - prompt.options = utils.merge({}, prompt.options.theme, prompt.options); - prompt.symbols = symbols.merge(prompt.options); - prompt.styles = styles.merge(prompt.options); -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/timer.js b/tools/node_modules/eslint/node_modules/enquirer/lib/timer.js deleted file mode 100644 index 564998b3a68138..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/timer.js +++ /dev/null @@ -1,38 +0,0 @@ -'use strict'; - -module.exports = prompt => { - prompt.timers = prompt.timers || {}; - - let timers = prompt.options.timers; - if (!timers) return; - - for (let key of Object.keys(timers)) { - let opts = timers[key]; - if (typeof opts === 'number') { - opts = { interval: opts }; - } - create(prompt, key, opts); - } -}; - -function create(prompt, name, options = {}) { - let timer = prompt.timers[name] = { name, start: Date.now(), ms: 0, tick: 0 }; - let ms = options.interval || 120; - timer.frames = options.frames || []; - timer.loading = true; - - let interval = setInterval(() => { - timer.ms = Date.now() - timer.start; - timer.tick++; - prompt.render(); - }, ms); - - timer.stop = () => { - timer.loading = false; - clearInterval(interval); - }; - - Reflect.defineProperty(timer, 'interval', { value: interval }); - prompt.once('close', () => timer.stop()); - return timer.stop; -} diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/array.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/array.js deleted file mode 100644 index 0a522cb20d1a8f..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/array.js +++ /dev/null @@ -1,658 +0,0 @@ -'use strict'; - -const colors = require('ansi-colors'); -const Prompt = require('../prompt'); -const roles = require('../roles'); -const utils = require('../utils'); -const { reorder, scrollUp, scrollDown, isObject, swap } = utils; - -class ArrayPrompt extends Prompt { - constructor(options) { - super(options); - this.cursorHide(); - this.maxSelected = options.maxSelected || Infinity; - this.multiple = options.multiple || false; - this.initial = options.initial || 0; - this.delay = options.delay || 0; - this.longest = 0; - this.num = ''; - } - - async initialize() { - if (typeof this.options.initial === 'function') { - this.initial = await this.options.initial.call(this); - } - await this.reset(true); - await super.initialize(); - } - - async reset() { - let { choices, initial, autofocus, suggest } = this.options; - this.state._choices = []; - this.state.choices = []; - - this.choices = await Promise.all(await this.toChoices(choices)); - this.choices.forEach(ch => (ch.enabled = false)); - - if (typeof suggest !== 'function' && this.selectable.length === 0) { - throw new Error('At least one choice must be selectable'); - } - - if (isObject(initial)) initial = Object.keys(initial); - if (Array.isArray(initial)) { - if (autofocus != null) this.index = this.findIndex(autofocus); - initial.forEach(v => this.enable(this.find(v))); - await this.render(); - } else { - if (autofocus != null) initial = autofocus; - if (typeof initial === 'string') initial = this.findIndex(initial); - if (typeof initial === 'number' && initial > -1) { - this.index = Math.max(0, Math.min(initial, this.choices.length)); - this.enable(this.find(this.index)); - } - } - - if (this.isDisabled(this.focused)) { - await this.down(); - } - } - - async toChoices(value, parent) { - this.state.loadingChoices = true; - let choices = []; - let index = 0; - - let toChoices = async(items, parent) => { - if (typeof items === 'function') items = await items.call(this); - if (items instanceof Promise) items = await items; - - for (let i = 0; i < items.length; i++) { - let choice = items[i] = await this.toChoice(items[i], index++, parent); - choices.push(choice); - - if (choice.choices) { - await toChoices(choice.choices, choice); - } - } - return choices; - }; - - return toChoices(value, parent) - .then(choices => { - this.state.loadingChoices = false; - return choices; - }); - } - - async toChoice(ele, i, parent) { - if (typeof ele === 'function') ele = await ele.call(this, this); - if (ele instanceof Promise) ele = await ele; - if (typeof ele === 'string') ele = { name: ele }; - - if (ele.normalized) return ele; - ele.normalized = true; - - let origVal = ele.value; - let role = roles(ele.role, this.options); - ele = role(this, ele); - - if (typeof ele.disabled === 'string' && !ele.hint) { - ele.hint = ele.disabled; - ele.disabled = true; - } - - if (ele.disabled === true && ele.hint == null) { - ele.hint = '(disabled)'; - } - - // if the choice was already normalized, return it - if (ele.index != null) return ele; - ele.name = ele.name || ele.key || ele.title || ele.value || ele.message; - ele.message = ele.message || ele.name || ''; - ele.value = [ele.value, ele.name].find(this.isValue.bind(this)); - - ele.input = ''; - ele.index = i; - ele.cursor = 0; - - utils.define(ele, 'parent', parent); - ele.level = parent ? parent.level + 1 : 1; - if (ele.indent == null) { - ele.indent = parent ? parent.indent + ' ' : (ele.indent || ''); - } - - ele.path = parent ? parent.path + '.' + ele.name : ele.name; - ele.enabled = !!(this.multiple && !this.isDisabled(ele) && (ele.enabled || this.isSelected(ele))); - - if (!this.isDisabled(ele)) { - this.longest = Math.max(this.longest, colors.unstyle(ele.message).length); - } - - // shallow clone the choice first - let choice = { ...ele }; - - // then allow the choice to be reset using the "original" values - ele.reset = (input = choice.input, value = choice.value) => { - for (let key of Object.keys(choice)) ele[key] = choice[key]; - ele.input = input; - ele.value = value; - }; - - if (origVal == null && typeof ele.initial === 'function') { - ele.input = await ele.initial.call(this, this.state, ele, i); - } - - return ele; - } - - async onChoice(choice, i) { - this.emit('choice', choice, i, this); - - if (typeof choice.onChoice === 'function') { - await choice.onChoice.call(this, this.state, choice, i); - } - } - - async addChoice(ele, i, parent) { - let choice = await this.toChoice(ele, i, parent); - this.choices.push(choice); - this.index = this.choices.length - 1; - this.limit = this.choices.length; - return choice; - } - - async newItem(item, i, parent) { - let ele = { name: 'New choice name?', editable: true, newChoice: true, ...item }; - let choice = await this.addChoice(ele, i, parent); - - choice.updateChoice = () => { - delete choice.newChoice; - choice.name = choice.message = choice.input; - choice.input = ''; - choice.cursor = 0; - }; - - return this.render(); - } - - indent(choice) { - if (choice.indent == null) { - return choice.level > 1 ? ' '.repeat(choice.level - 1) : ''; - } - return choice.indent; - } - - dispatch(s, key) { - if (this.multiple && this[key.name]) return this[key.name](); - this.alert(); - } - - focus(choice, enabled) { - if (typeof enabled !== 'boolean') enabled = choice.enabled; - if (enabled && !choice.enabled && this.selected.length >= this.maxSelected) { - return this.alert(); - } - this.index = choice.index; - choice.enabled = enabled && !this.isDisabled(choice); - return choice; - } - - space() { - if (!this.multiple) return this.alert(); - this.toggle(this.focused); - return this.render(); - } - - a() { - if (this.maxSelected < this.choices.length) return this.alert(); - let enabled = this.selectable.every(ch => ch.enabled); - this.choices.forEach(ch => (ch.enabled = !enabled)); - return this.render(); - } - - i() { - // don't allow choices to be inverted if it will result in - // more than the maximum number of allowed selected items. - if (this.choices.length - this.selected.length > this.maxSelected) { - return this.alert(); - } - this.choices.forEach(ch => (ch.enabled = !ch.enabled)); - return this.render(); - } - - g(choice = this.focused) { - if (!this.choices.some(ch => !!ch.parent)) return this.a(); - this.toggle((choice.parent && !choice.choices) ? choice.parent : choice); - return this.render(); - } - - toggle(choice, enabled) { - if (!choice.enabled && this.selected.length >= this.maxSelected) { - return this.alert(); - } - - if (typeof enabled !== 'boolean') enabled = !choice.enabled; - choice.enabled = enabled; - - if (choice.choices) { - choice.choices.forEach(ch => this.toggle(ch, enabled)); - } - - let parent = choice.parent; - while (parent) { - let choices = parent.choices.filter(ch => this.isDisabled(ch)); - parent.enabled = choices.every(ch => ch.enabled === true); - parent = parent.parent; - } - - reset(this, this.choices); - this.emit('toggle', choice, this); - return choice; - } - - enable(choice) { - if (this.selected.length >= this.maxSelected) return this.alert(); - choice.enabled = !this.isDisabled(choice); - choice.choices && choice.choices.forEach(this.enable.bind(this)); - return choice; - } - - disable(choice) { - choice.enabled = false; - choice.choices && choice.choices.forEach(this.disable.bind(this)); - return choice; - } - - number(n) { - this.num += n; - - let number = num => { - let i = Number(num); - if (i > this.choices.length - 1) return this.alert(); - - let focused = this.focused; - let choice = this.choices.find(ch => i === ch.index); - - if (!choice.enabled && this.selected.length >= this.maxSelected) { - return this.alert(); - } - - if (this.visible.indexOf(choice) === -1) { - let choices = reorder(this.choices); - let actualIdx = choices.indexOf(choice); - - if (focused.index > actualIdx) { - let start = choices.slice(actualIdx, actualIdx + this.limit); - let end = choices.filter(ch => !start.includes(ch)); - this.choices = start.concat(end); - } else { - let pos = actualIdx - this.limit + 1; - this.choices = choices.slice(pos).concat(choices.slice(0, pos)); - } - } - - this.index = this.choices.indexOf(choice); - this.toggle(this.focused); - return this.render(); - }; - - clearTimeout(this.numberTimeout); - - return new Promise(resolve => { - let len = this.choices.length; - let num = this.num; - - let handle = (val = false, res) => { - clearTimeout(this.numberTimeout); - if (val) res = number(num); - this.num = ''; - resolve(res); - }; - - if (num === '0' || (num.length === 1 && Number(num + '0') > len)) { - return handle(true); - } - - if (Number(num) > len) { - return handle(false, this.alert()); - } - - this.numberTimeout = setTimeout(() => handle(true), this.delay); - }); - } - - home() { - this.choices = reorder(this.choices); - this.index = 0; - return this.render(); - } - - end() { - let pos = this.choices.length - this.limit; - let choices = reorder(this.choices); - this.choices = choices.slice(pos).concat(choices.slice(0, pos)); - this.index = this.limit - 1; - return this.render(); - } - - first() { - this.index = 0; - return this.render(); - } - - last() { - this.index = this.visible.length - 1; - return this.render(); - } - - prev() { - if (this.visible.length <= 1) return this.alert(); - return this.up(); - } - - next() { - if (this.visible.length <= 1) return this.alert(); - return this.down(); - } - - right() { - if (this.cursor >= this.input.length) return this.alert(); - this.cursor++; - return this.render(); - } - - left() { - if (this.cursor <= 0) return this.alert(); - this.cursor--; - return this.render(); - } - - up() { - let len = this.choices.length; - let vis = this.visible.length; - let idx = this.index; - if (this.options.scroll === false && idx === 0) { - return this.alert(); - } - if (len > vis && idx === 0) { - return this.scrollUp(); - } - this.index = ((idx - 1 % len) + len) % len; - if (this.isDisabled()) { - return this.up(); - } - return this.render(); - } - - down() { - let len = this.choices.length; - let vis = this.visible.length; - let idx = this.index; - if (this.options.scroll === false && idx === vis - 1) { - return this.alert(); - } - if (len > vis && idx === vis - 1) { - return this.scrollDown(); - } - this.index = (idx + 1) % len; - if (this.isDisabled()) { - return this.down(); - } - return this.render(); - } - - scrollUp(i = 0) { - this.choices = scrollUp(this.choices); - this.index = i; - if (this.isDisabled()) { - return this.up(); - } - return this.render(); - } - - scrollDown(i = this.visible.length - 1) { - this.choices = scrollDown(this.choices); - this.index = i; - if (this.isDisabled()) { - return this.down(); - } - return this.render(); - } - - async shiftUp() { - if (this.options.sort === true) { - this.sorting = true; - this.swap(this.index - 1); - await this.up(); - this.sorting = false; - return; - } - return this.scrollUp(this.index); - } - - async shiftDown() { - if (this.options.sort === true) { - this.sorting = true; - this.swap(this.index + 1); - await this.down(); - this.sorting = false; - return; - } - return this.scrollDown(this.index); - } - - pageUp() { - if (this.visible.length <= 1) return this.alert(); - this.limit = Math.max(this.limit - 1, 0); - this.index = Math.min(this.limit - 1, this.index); - this._limit = this.limit; - if (this.isDisabled()) { - return this.up(); - } - return this.render(); - } - - pageDown() { - if (this.visible.length >= this.choices.length) return this.alert(); - this.index = Math.max(0, this.index); - this.limit = Math.min(this.limit + 1, this.choices.length); - this._limit = this.limit; - if (this.isDisabled()) { - return this.down(); - } - return this.render(); - } - - swap(pos) { - swap(this.choices, this.index, pos); - } - - isDisabled(choice = this.focused) { - let keys = ['disabled', 'collapsed', 'hidden', 'completing', 'readonly']; - if (choice && keys.some(key => choice[key] === true)) { - return true; - } - return choice && choice.role === 'heading'; - } - - isEnabled(choice = this.focused) { - if (Array.isArray(choice)) return choice.every(ch => this.isEnabled(ch)); - if (choice.choices) { - let choices = choice.choices.filter(ch => !this.isDisabled(ch)); - return choice.enabled && choices.every(ch => this.isEnabled(ch)); - } - return choice.enabled && !this.isDisabled(choice); - } - - isChoice(choice, value) { - return choice.name === value || choice.index === Number(value); - } - - isSelected(choice) { - if (Array.isArray(this.initial)) { - return this.initial.some(value => this.isChoice(choice, value)); - } - return this.isChoice(choice, this.initial); - } - - map(names = [], prop = 'value') { - return [].concat(names || []).reduce((acc, name) => { - acc[name] = this.find(name, prop); - return acc; - }, {}); - } - - filter(value, prop) { - let isChoice = (ele, i) => [ele.name, i].includes(value); - let fn = typeof value === 'function' ? value : isChoice; - let choices = this.options.multiple ? this.state._choices : this.choices; - let result = choices.filter(fn); - if (prop) { - return result.map(ch => ch[prop]); - } - return result; - } - - find(value, prop) { - if (isObject(value)) return prop ? value[prop] : value; - let isChoice = (ele, i) => [ele.name, i].includes(value); - let fn = typeof value === 'function' ? value : isChoice; - let choice = this.choices.find(fn); - if (choice) { - return prop ? choice[prop] : choice; - } - } - - findIndex(value) { - return this.choices.indexOf(this.find(value)); - } - - async submit() { - let choice = this.focused; - if (!choice) return this.alert(); - - if (choice.newChoice) { - if (!choice.input) return this.alert(); - choice.updateChoice(); - return this.render(); - } - - if (this.choices.some(ch => ch.newChoice)) { - return this.alert(); - } - - let { reorder, sort } = this.options; - let multi = this.multiple === true; - let value = this.selected; - if (value === void 0) { - return this.alert(); - } - - // re-sort choices to original order - if (Array.isArray(value) && reorder !== false && sort !== true) { - value = utils.reorder(value); - } - - this.value = multi ? value.map(ch => ch.name) : value.name; - return super.submit(); - } - - set choices(choices = []) { - this.state._choices = this.state._choices || []; - this.state.choices = choices; - - for (let choice of choices) { - if (!this.state._choices.some(ch => ch.name === choice.name)) { - this.state._choices.push(choice); - } - } - - if (!this._initial && this.options.initial) { - this._initial = true; - let init = this.initial; - if (typeof init === 'string' || typeof init === 'number') { - let choice = this.find(init); - if (choice) { - this.initial = choice.index; - this.focus(choice, true); - } - } - } - } - get choices() { - return reset(this, this.state.choices || []); - } - - set visible(visible) { - this.state.visible = visible; - } - get visible() { - return (this.state.visible || this.choices).slice(0, this.limit); - } - - set limit(num) { - this.state.limit = num; - } - get limit() { - let { state, options, choices } = this; - let limit = state.limit || this._limit || options.limit || choices.length; - return Math.min(limit, this.height); - } - - set value(value) { - super.value = value; - } - get value() { - if (typeof super.value !== 'string' && super.value === this.initial) { - return this.input; - } - return super.value; - } - - set index(i) { - this.state.index = i; - } - get index() { - return Math.max(0, this.state ? this.state.index : 0); - } - - get enabled() { - return this.filter(this.isEnabled.bind(this)); - } - - get focused() { - let choice = this.choices[this.index]; - if (choice && this.state.submitted && this.multiple !== true) { - choice.enabled = true; - } - return choice; - } - - get selectable() { - return this.choices.filter(choice => !this.isDisabled(choice)); - } - - get selected() { - return this.multiple ? this.enabled : this.focused; - } -} - -function reset(prompt, choices) { - if (choices instanceof Promise) return choices; - if (typeof choices === 'function') { - if (utils.isAsyncFn(choices)) return choices; - choices = choices.call(prompt, prompt); - } - for (let choice of choices) { - if (Array.isArray(choice.choices)) { - let items = choice.choices.filter(ch => !prompt.isDisabled(ch)); - choice.enabled = items.every(ch => ch.enabled === true); - } - if (prompt.isDisabled(choice) === true) { - delete choice.enabled; - } - } - return choices; -} - -module.exports = ArrayPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/auth.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/auth.js deleted file mode 100644 index c2c66fae969215..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/auth.js +++ /dev/null @@ -1,29 +0,0 @@ -'use strict'; - -const FormPrompt = require('../prompts/form'); - -const defaultAuthenticate = () => { - throw new Error('expected prompt to have a custom authenticate method'); -}; - -const factory = (authenticate = defaultAuthenticate) => { - - class AuthPrompt extends FormPrompt { - constructor(options) { - super(options); - } - - async submit() { - this.value = await authenticate.call(this, this.values, this.state); - super.base.submit.call(this); - } - - static create(authenticate) { - return factory(authenticate); - } - } - - return AuthPrompt; -}; - -module.exports = factory(); diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/boolean.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/boolean.js deleted file mode 100644 index d3e7f34081fb6c..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/boolean.js +++ /dev/null @@ -1,88 +0,0 @@ -'use strict'; - -const Prompt = require('../prompt'); -const { isPrimitive, hasColor } = require('../utils'); - -class BooleanPrompt extends Prompt { - constructor(options) { - super(options); - this.cursorHide(); - } - - async initialize() { - let initial = await this.resolve(this.initial, this.state); - this.input = await this.cast(initial); - await super.initialize(); - } - - dispatch(ch) { - if (!this.isValue(ch)) return this.alert(); - this.input = ch; - return this.submit(); - } - - format(value) { - let { styles, state } = this; - return !state.submitted ? styles.primary(value) : styles.success(value); - } - - cast(input) { - return this.isTrue(input); - } - - isTrue(input) { - return /^[ty1]/i.test(input); - } - - isFalse(input) { - return /^[fn0]/i.test(input); - } - - isValue(value) { - return isPrimitive(value) && (this.isTrue(value) || this.isFalse(value)); - } - - async hint() { - if (this.state.status === 'pending') { - let hint = await this.element('hint'); - if (!hasColor(hint)) { - return this.styles.muted(hint); - } - return hint; - } - } - - async render() { - let { input, size } = this.state; - - let prefix = await this.prefix(); - let sep = await this.separator(); - let msg = await this.message(); - let hint = this.styles.muted(this.default); - - let promptLine = [prefix, msg, hint, sep].filter(Boolean).join(' '); - this.state.prompt = promptLine; - - let header = await this.header(); - let value = this.value = this.cast(input); - let output = await this.format(value); - let help = (await this.error()) || (await this.hint()); - let footer = await this.footer(); - - if (help && !promptLine.includes(help)) output += ' ' + help; - promptLine += ' ' + output; - - this.clear(size); - this.write([header, promptLine, footer].filter(Boolean).join('\n')); - this.restore(); - } - - set value(value) { - super.value = value; - } - get value() { - return this.cast(super.value); - } -} - -module.exports = BooleanPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/index.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/index.js deleted file mode 100644 index b3a2300d863913..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/index.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - ArrayPrompt: require('./array'), - AuthPrompt: require('./auth'), - BooleanPrompt: require('./boolean'), - NumberPrompt: require('./number'), - StringPrompt: require('./string') -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/number.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/number.js deleted file mode 100644 index 199a7c99a46791..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/number.js +++ /dev/null @@ -1,86 +0,0 @@ -'use strict'; - -const StringPrompt = require('./string'); - -class NumberPrompt extends StringPrompt { - constructor(options = {}) { - super({ style: 'number', ...options }); - this.min = this.isValue(options.min) ? this.toNumber(options.min) : -Infinity; - this.max = this.isValue(options.max) ? this.toNumber(options.max) : Infinity; - this.delay = options.delay != null ? options.delay : 1000; - this.float = options.float !== false; - this.round = options.round === true || options.float === false; - this.major = options.major || 10; - this.minor = options.minor || 1; - this.initial = options.initial != null ? options.initial : ''; - this.input = String(this.initial); - this.cursor = this.input.length; - this.cursorShow(); - } - - append(ch) { - if (!/[-+.]/.test(ch) || (ch === '.' && this.input.includes('.'))) { - return this.alert('invalid number'); - } - return super.append(ch); - } - - number(ch) { - return super.append(ch); - } - - next() { - if (this.input && this.input !== this.initial) return this.alert(); - if (!this.isValue(this.initial)) return this.alert(); - this.input = this.initial; - this.cursor = String(this.initial).length; - return this.render(); - } - - up(number) { - let step = number || this.minor; - let num = this.toNumber(this.input); - if (num > this.max + step) return this.alert(); - this.input = `${num + step}`; - return this.render(); - } - - down(number) { - let step = number || this.minor; - let num = this.toNumber(this.input); - if (num < this.min - step) return this.alert(); - this.input = `${num - step}`; - return this.render(); - } - - shiftDown() { - return this.down(this.major); - } - - shiftUp() { - return this.up(this.major); - } - - format(input = this.input) { - if (typeof this.options.format === 'function') { - return this.options.format.call(this, input); - } - return this.styles.info(input); - } - - toNumber(value = '') { - return this.float ? +value : Math.round(+value); - } - - isValue(value) { - return /^[-+]?[0-9]+((\.)|(\.[0-9]+))?$/.test(value); - } - - submit() { - let value = [this.input, this.initial].find(v => this.isValue(v)); - this.value = this.toNumber(value || 0); - return super.submit(); - } -} - -module.exports = NumberPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/types/string.js b/tools/node_modules/eslint/node_modules/enquirer/lib/types/string.js deleted file mode 100644 index d4e0ce9ad3b932..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/types/string.js +++ /dev/null @@ -1,185 +0,0 @@ -'use strict'; - -const Prompt = require('../prompt'); -const placeholder = require('../placeholder'); -const { isPrimitive } = require('../utils'); - -class StringPrompt extends Prompt { - constructor(options) { - super(options); - this.initial = isPrimitive(this.initial) ? String(this.initial) : ''; - if (this.initial) this.cursorHide(); - this.state.prevCursor = 0; - this.state.clipboard = []; - } - - async keypress(input, key = {}) { - let prev = this.state.prevKeypress; - this.state.prevKeypress = key; - if (this.options.multiline === true && key.name === 'return') { - if (!prev || prev.name !== 'return') { - return this.append('\n', key); - } - } - return super.keypress(input, key); - } - - moveCursor(n) { - this.cursor += n; - } - - reset() { - this.input = this.value = ''; - this.cursor = 0; - return this.render(); - } - - dispatch(ch, key) { - if (!ch || key.ctrl || key.code) return this.alert(); - this.append(ch); - } - - append(ch) { - let { cursor, input } = this.state; - this.input = `${input}`.slice(0, cursor) + ch + `${input}`.slice(cursor); - this.moveCursor(String(ch).length); - this.render(); - } - - insert(str) { - this.append(str); - } - - delete() { - let { cursor, input } = this.state; - if (cursor <= 0) return this.alert(); - this.input = `${input}`.slice(0, cursor - 1) + `${input}`.slice(cursor); - this.moveCursor(-1); - this.render(); - } - - deleteForward() { - let { cursor, input } = this.state; - if (input[cursor] === void 0) return this.alert(); - this.input = `${input}`.slice(0, cursor) + `${input}`.slice(cursor + 1); - this.render(); - } - - cutForward() { - let pos = this.cursor; - if (this.input.length <= pos) return this.alert(); - this.state.clipboard.push(this.input.slice(pos)); - this.input = this.input.slice(0, pos); - this.render(); - } - - cutLeft() { - let pos = this.cursor; - if (pos === 0) return this.alert(); - let before = this.input.slice(0, pos); - let after = this.input.slice(pos); - let words = before.split(' '); - this.state.clipboard.push(words.pop()); - this.input = words.join(' '); - this.cursor = this.input.length; - this.input += after; - this.render(); - } - - paste() { - if (!this.state.clipboard.length) return this.alert(); - this.insert(this.state.clipboard.pop()); - this.render(); - } - - toggleCursor() { - if (this.state.prevCursor) { - this.cursor = this.state.prevCursor; - this.state.prevCursor = 0; - } else { - this.state.prevCursor = this.cursor; - this.cursor = 0; - } - this.render(); - } - - first() { - this.cursor = 0; - this.render(); - } - - last() { - this.cursor = this.input.length - 1; - this.render(); - } - - next() { - let init = this.initial != null ? String(this.initial) : ''; - if (!init || !init.startsWith(this.input)) return this.alert(); - this.input = this.initial; - this.cursor = this.initial.length; - this.render(); - } - - prev() { - if (!this.input) return this.alert(); - this.reset(); - } - - backward() { - return this.left(); - } - - forward() { - return this.right(); - } - - right() { - if (this.cursor >= this.input.length) return this.alert(); - this.moveCursor(1); - return this.render(); - } - - left() { - if (this.cursor <= 0) return this.alert(); - this.moveCursor(-1); - return this.render(); - } - - isValue(value) { - return !!value; - } - - async format(input = this.value) { - let initial = await this.resolve(this.initial, this.state); - if (!this.state.submitted) { - return placeholder(this, { input, initial, pos: this.cursor }); - } - return this.styles.submitted(input || initial); - } - - async render() { - let size = this.state.size; - - let prefix = await this.prefix(); - let separator = await this.separator(); - let message = await this.message(); - - let prompt = [prefix, message, separator].filter(Boolean).join(' '); - this.state.prompt = prompt; - - let header = await this.header(); - let output = await this.format(); - let help = (await this.error()) || (await this.hint()); - let footer = await this.footer(); - - if (help && !output.includes(help)) output += ' ' + help; - prompt += ' ' + output; - - this.clear(size); - this.write([header, prompt, footer].filter(Boolean).join('\n')); - this.restore(); - } -} - -module.exports = StringPrompt; diff --git a/tools/node_modules/eslint/node_modules/enquirer/lib/utils.js b/tools/node_modules/eslint/node_modules/enquirer/lib/utils.js deleted file mode 100644 index 7493c0d5346c0d..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/lib/utils.js +++ /dev/null @@ -1,268 +0,0 @@ -'use strict'; - -const toString = Object.prototype.toString; -const colors = require('ansi-colors'); -let called = false; -let fns = []; - -const complements = { - 'yellow': 'blue', - 'cyan': 'red', - 'green': 'magenta', - 'black': 'white', - 'blue': 'yellow', - 'red': 'cyan', - 'magenta': 'green', - 'white': 'black' -}; - -exports.longest = (arr, prop) => { - return arr.reduce((a, v) => Math.max(a, prop ? v[prop].length : v.length), 0); -}; - -exports.hasColor = str => !!str && colors.hasColor(str); - -const isObject = exports.isObject = val => { - return val !== null && typeof val === 'object' && !Array.isArray(val); -}; - -exports.nativeType = val => { - return toString.call(val).slice(8, -1).toLowerCase().replace(/\s/g, ''); -}; - -exports.isAsyncFn = val => { - return exports.nativeType(val) === 'asyncfunction'; -}; - -exports.isPrimitive = val => { - return val != null && typeof val !== 'object' && typeof val !== 'function'; -}; - -exports.resolve = (context, value, ...rest) => { - if (typeof value === 'function') { - return value.call(context, ...rest); - } - return value; -}; - -exports.scrollDown = (choices = []) => [...choices.slice(1), choices[0]]; -exports.scrollUp = (choices = []) => [choices.pop(), ...choices]; - -exports.reorder = (arr = []) => { - let res = arr.slice(); - res.sort((a, b) => { - if (a.index > b.index) return 1; - if (a.index < b.index) return -1; - return 0; - }); - return res; -}; - -exports.swap = (arr, index, pos) => { - let len = arr.length; - let idx = pos === len ? 0 : pos < 0 ? len - 1 : pos; - let choice = arr[index]; - arr[index] = arr[idx]; - arr[idx] = choice; -}; - -exports.width = (stream, fallback = 80) => { - let columns = (stream && stream.columns) ? stream.columns : fallback; - if (stream && typeof stream.getWindowSize === 'function') { - columns = stream.getWindowSize()[0]; - } - if (process.platform === 'win32') { - return columns - 1; - } - return columns; -}; - -exports.height = (stream, fallback = 20) => { - let rows = (stream && stream.rows) ? stream.rows : fallback; - if (stream && typeof stream.getWindowSize === 'function') { - rows = stream.getWindowSize()[1]; - } - return rows; -}; - -exports.wordWrap = (str, options = {}) => { - if (!str) return str; - - if (typeof options === 'number') { - options = { width: options }; - } - - let { indent = '', newline = ('\n' + indent), width = 80 } = options; - let spaces = (newline + indent).match(/[^\S\n]/g) || []; - width -= spaces.length; - let source = `.{1,${width}}([\\s\\u200B]+|$)|[^\\s\\u200B]+?([\\s\\u200B]+|$)`; - let output = str.trim(); - let regex = new RegExp(source, 'g'); - let lines = output.match(regex) || []; - lines = lines.map(line => line.replace(/\n$/, '')); - if (options.padEnd) lines = lines.map(line => line.padEnd(width, ' ')); - if (options.padStart) lines = lines.map(line => line.padStart(width, ' ')); - return indent + lines.join(newline); -}; - -exports.unmute = color => { - let name = color.stack.find(n => colors.keys.color.includes(n)); - if (name) { - return colors[name]; - } - let bg = color.stack.find(n => n.slice(2) === 'bg'); - if (bg) { - return colors[name.slice(2)]; - } - return str => str; -}; - -exports.pascal = str => str ? str[0].toUpperCase() + str.slice(1) : ''; - -exports.inverse = color => { - if (!color || !color.stack) return color; - let name = color.stack.find(n => colors.keys.color.includes(n)); - if (name) { - let col = colors['bg' + exports.pascal(name)]; - return col ? col.black : color; - } - let bg = color.stack.find(n => n.slice(0, 2) === 'bg'); - if (bg) { - return colors[bg.slice(2).toLowerCase()] || color; - } - return colors.none; -}; - -exports.complement = color => { - if (!color || !color.stack) return color; - let name = color.stack.find(n => colors.keys.color.includes(n)); - let bg = color.stack.find(n => n.slice(0, 2) === 'bg'); - if (name && !bg) { - return colors[complements[name] || name]; - } - if (bg) { - let lower = bg.slice(2).toLowerCase(); - let comp = complements[lower]; - if (!comp) return color; - return colors['bg' + exports.pascal(comp)] || color; - } - return colors.none; -}; - -exports.meridiem = date => { - let hours = date.getHours(); - let minutes = date.getMinutes(); - let ampm = hours >= 12 ? 'pm' : 'am'; - hours = hours % 12; - let hrs = hours === 0 ? 12 : hours; - let min = minutes < 10 ? '0' + minutes : minutes; - return hrs + ':' + min + ' ' + ampm; -}; - -/** - * Set a value on the given object. - * @param {Object} obj - * @param {String} prop - * @param {any} value - */ - -exports.set = (obj = {}, prop = '', val) => { - return prop.split('.').reduce((acc, k, i, arr) => { - let value = arr.length - 1 > i ? (acc[k] || {}) : val; - if (!exports.isObject(value) && i < arr.length - 1) value = {}; - return (acc[k] = value); - }, obj); -}; - -/** - * Get a value from the given object. - * @param {Object} obj - * @param {String} prop - */ - -exports.get = (obj = {}, prop = '', fallback) => { - let value = obj[prop] == null - ? prop.split('.').reduce((acc, k) => acc && acc[k], obj) - : obj[prop]; - return value == null ? fallback : value; -}; - -exports.mixin = (target, b) => { - if (!isObject(target)) return b; - if (!isObject(b)) return target; - for (let key of Object.keys(b)) { - let desc = Object.getOwnPropertyDescriptor(b, key); - if (desc.hasOwnProperty('value')) { - if (target.hasOwnProperty(key) && isObject(desc.value)) { - let existing = Object.getOwnPropertyDescriptor(target, key); - if (isObject(existing.value)) { - target[key] = exports.merge({}, target[key], b[key]); - } else { - Reflect.defineProperty(target, key, desc); - } - } else { - Reflect.defineProperty(target, key, desc); - } - } else { - Reflect.defineProperty(target, key, desc); - } - } - return target; -}; - -exports.merge = (...args) => { - let target = {}; - for (let ele of args) exports.mixin(target, ele); - return target; -}; - -exports.mixinEmitter = (obj, emitter) => { - let proto = emitter.constructor.prototype; - for (let key of Object.keys(proto)) { - let val = proto[key]; - if (typeof val === 'function') { - exports.define(obj, key, val.bind(emitter)); - } else { - exports.define(obj, key, val); - } - } -}; - -exports.onExit = callback => { - const onExit = (quit, code) => { - if (called) return; - - called = true; - fns.forEach(fn => fn()); - - if (quit === true) { - process.exit(128 + code); - } - }; - - if (fns.length === 0) { - process.once('SIGTERM', onExit.bind(null, true, 15)); - process.once('SIGINT', onExit.bind(null, true, 2)); - process.once('exit', onExit); - } - - fns.push(callback); -}; - -exports.define = (obj, key, value) => { - Reflect.defineProperty(obj, key, { value }); -}; - -exports.defineExport = (obj, key, fn) => { - let custom; - Reflect.defineProperty(obj, key, { - enumerable: true, - configurable: true, - set(val) { - custom = val; - }, - get() { - return custom ? custom() : fn(); - } - }); -}; diff --git a/tools/node_modules/eslint/node_modules/enquirer/package.json b/tools/node_modules/eslint/node_modules/enquirer/package.json deleted file mode 100644 index 1d986c735661ab..00000000000000 --- a/tools/node_modules/eslint/node_modules/enquirer/package.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "name": "enquirer", - "description": "Stylish, intuitive and user-friendly prompt system. Fast and lightweight enough for small projects, powerful and extensible enough for the most advanced use cases.", - "version": "2.3.6", - "homepage": "https://github.com/enquirer/enquirer", - "author": "Jon Schlinkert (https://github.com/jonschlinkert)", - "contributors": [ - "Brian Woodward (https://twitter.com/doowb)", - "Jon Schlinkert (http://twitter.com/jonschlinkert)" - ], - "repository": "enquirer/enquirer", - "bugs": { - "url": "https://github.com/enquirer/enquirer/issues" - }, - "license": "MIT", - "files": [ - "index.js", - "index.d.ts", - "lib" - ], - "main": "index.js", - "engines": { - "node": ">=8.6" - }, - "scripts": { - "test": "mocha && tsc -p ./test/types", - "cover": "nyc --reporter=text --reporter=html mocha" - }, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "devDependencies": { - "@types/node": "^8", - "gulp-format-md": "^2.0.0", - "inquirer": "^6.2.0", - "mocha": "^5.2.0", - "nyc": "^13.1.0", - "prompts": "^1.2.1", - "time-require": "github:jonschlinkert/time-require", - "typescript": "^3.1.6" - }, - "keywords": [ - "answer", - "answers", - "ask", - "base", - "cli", - "command", - "command-line", - "confirm", - "enquirer", - "generator", - "generate", - "hyper", - "input", - "inquire", - "inquirer", - "interface", - "iterm", - "javascript", - "node", - "nodejs", - "prompt", - "prompts", - "promptly", - "question", - "readline", - "scaffold", - "scaffolding", - "scaffolder", - "stdin", - "stdout", - "terminal", - "tty", - "ui", - "yeoman", - "yo", - "zsh" - ], - "lintDeps": { - "devDependencies": { - "files": { - "patterns": [ - "examples/**/*.js", - "perf/*.js", - "recipes/*.js" - ] - } - } - }, - "verb": { - "toc": false, - "layout": false, - "tasks": [ - "readme" - ], - "plugins": [ - "gulp-format-md" - ], - "helpers": [ - "./docs/helpers.js" - ], - "lint": { - "reflinks": true - }, - "reflinks": [ - "inquirer", - "prompt-skeleton" - ] - } -} diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkTypes.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkTypes.js index 6789c95d1c7540..fbbec4f2331880 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkTypes.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkTypes.js @@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = void 0; -var _jsdocTypePrattParser = require("jsdoc-type-pratt-parser"); +var _jsdoccomment = require("@es-joy/jsdoccomment"); var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc")); @@ -127,13 +127,13 @@ var _default = (0, _iterateJsdoc.default)(({ let typeAst; try { - typeAst = mode === 'permissive' ? (0, _jsdocTypePrattParser.tryParse)(jsdocTag.type) : (0, _jsdocTypePrattParser.parse)(jsdocTag.type, mode); + typeAst = mode === 'permissive' ? (0, _jsdoccomment.tryParse)(jsdocTag.type) : (0, _jsdoccomment.parse)(jsdocTag.type, mode); } catch { continue; } const tagName = jsdocTag.tag; - (0, _jsdocTypePrattParser.traverse)(typeAst, (node, parentNode, property) => { + (0, _jsdoccomment.traverse)(typeAst, (node, parentNode, property) => { const { type, value @@ -193,7 +193,7 @@ var _default = (0, _iterateJsdoc.default)(({ }); if (invalidTypes.length) { - const fixedType = (0, _jsdocTypePrattParser.stringify)(typeAst); + const fixedType = (0, _jsdoccomment.stringify)(typeAst); const fix = fixer => { return fixer.replaceText(jsdocNode, sourceCode.getText(jsdocNode).replace(`{${jsdocTag.type}}`, `{${fixedType}}`)); diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.js index 86d233ac5d3639..d812393d204e15 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.js @@ -7,8 +7,6 @@ exports.default = void 0; var _jsdoccomment = require("@es-joy/jsdoccomment"); -var _jsdocTypePrattParser = require("jsdoc-type-pratt-parser"); - var _iterateJsdoc = _interopRequireWildcard(require("../iterateJsdoc")); var _jsdocUtils = _interopRequireDefault(require("../jsdocUtils")); @@ -86,16 +84,16 @@ var _default = (0, _iterateJsdoc.default)(({ return tag.name; }); const ancestorNodes = []; - let currentScope = scopeManager.acquire(node); + let currentNode = node; // No need for Program node? - while (currentScope && currentScope.block.type !== 'Program') { - ancestorNodes.push(currentScope.block); - currentScope = currentScope.upper; - } // `currentScope` may be `null` or `Program`, so in such a case, - // we look to present tags instead + while ((_currentNode = currentNode) !== null && _currentNode !== void 0 && _currentNode.parent) { + var _currentNode; + ancestorNodes.push(currentNode); + currentNode = currentNode.parent; + } - let templateTags = ancestorNodes.length ? ancestorNodes.flatMap(ancestorNode => { + const getTemplateTags = function (ancestorNode) { const commentNode = (0, _jsdoccomment.getJSDocComment)(sourceCode, ancestorNode, settings); if (!commentNode) { @@ -106,17 +104,13 @@ var _default = (0, _iterateJsdoc.default)(({ return _jsdocUtils.default.filterTags(jsdoc.tags, tag => { return tag.tag === 'template'; }); - }) : utils.getPresentTags('template'); - const classJsdoc = utils.getClassJsdoc(); + }; // `currentScope` may be `null` or `Program`, so in such a case, + // we look to present tags instead - if (classJsdoc !== null && classJsdoc !== void 0 && classJsdoc.tags) { - templateTags = templateTags.concat(classJsdoc.tags.filter(({ - tag - }) => { - return tag === 'template'; - })); - } + const templateTags = ancestorNodes.length ? ancestorNodes.flatMap(ancestorNode => { + return getTemplateTags(ancestorNode); + }) : utils.getPresentTags('template'); const closureGenericTypes = templateTags.flatMap(tag => { return utils.parseClosureTemplateTag(tag); }); // In modules, including Node, there is a global scope at top with the @@ -147,13 +141,13 @@ var _default = (0, _iterateJsdoc.default)(({ let parsedType; try { - parsedType = mode === 'permissive' ? (0, _jsdocTypePrattParser.tryParse)(tag.type) : (0, _jsdocTypePrattParser.parse)(tag.type, mode); + parsedType = mode === 'permissive' ? (0, _jsdoccomment.tryParse)(tag.type) : (0, _jsdoccomment.parse)(tag.type, mode); } catch { // On syntax error, will be handled by valid-types. continue; } - (0, _jsdocTypePrattParser.traverse)(parsedType, ({ + (0, _jsdoccomment.traverse)(parsedType, ({ type, value }) => { diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.js index 3f81f94734873d..7675828c46b3ae 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.js @@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = void 0; -var _jsdocTypePrattParser = require("jsdoc-type-pratt-parser"); +var _jsdoccomment = require("@es-joy/jsdoccomment"); var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc")); @@ -19,7 +19,7 @@ const suppressTypes = new Set([// https://github.com/google/closure-compiler/wik const tryParsePathIgnoreError = path => { try { - (0, _jsdocTypePrattParser.tryParse)(path); + (0, _jsdoccomment.tryParse)(path); return true; } catch {// Keep the original error for including the whole type } @@ -96,9 +96,9 @@ var _default = (0, _iterateJsdoc.default)(({ const validTypeParsing = function (type) { try { if (mode === 'permissive') { - (0, _jsdocTypePrattParser.tryParse)(type); + (0, _jsdoccomment.tryParse)(type); } else { - (0, _jsdocTypePrattParser.parse)(type, mode); + (0, _jsdoccomment.parse)(type, mode); } } catch { report(`Syntax error in type: ${type}`, null, tag); @@ -128,12 +128,12 @@ var _default = (0, _iterateJsdoc.default)(({ let parsedTypes; try { - parsedTypes = (0, _jsdocTypePrattParser.tryParse)(tag.type); + parsedTypes = (0, _jsdoccomment.tryParse)(tag.type); } catch {// Ignore } if (parsedTypes) { - (0, _jsdocTypePrattParser.traverse)(parsedTypes, node => { + (0, _jsdoccomment.traverse)(parsedTypes, node => { const { value: type } = node; 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 de44543ac4ce8a..712b7fc2d09b07 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json @@ -5,40 +5,39 @@ "url": "http://gajus.com" }, "dependencies": { - "@es-joy/jsdoccomment": "0.14.1", + "@es-joy/jsdoccomment": "~0.17.0", "comment-parser": "1.3.0", "debug": "^4.3.3", "escape-string-regexp": "^4.0.0", "esquery": "^1.4.0", - "jsdoc-type-pratt-parser": "^2.0.2", "regextras": "^0.8.0", "semver": "^7.3.5", "spdx-expression-parse": "^3.0.1" }, "description": "JSDoc linting rules for ESLint.", "devDependencies": { - "@babel/cli": "^7.16.0", - "@babel/core": "^7.16.5", + "@babel/cli": "^7.16.7", + "@babel/core": "^7.16.7", "@babel/eslint-parser": "^7.16.5", - "@babel/node": "^7.16.5", + "@babel/node": "^7.16.7", "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-transform-flow-strip-types": "^7.16.5", - "@babel/preset-env": "^7.16.5", - "@babel/register": "^7.16.5", + "@babel/plugin-transform-flow-strip-types": "^7.16.7", + "@babel/preset-env": "^7.16.7", + "@babel/register": "^7.16.7", "@hkdobrev/run-if-changed": "^0.3.1", - "@typescript-eslint/parser": "^5.8.1", + "@typescript-eslint/parser": "^5.9.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-istanbul": "^6.1.1", - "camelcase": "^6.2.1", + "camelcase": "^6.3.0", "chai": "^4.3.4", "cross-env": "^7.0.3", "decamelize": "^5.0.1", - "eslint": "^8.5.0", - "eslint-config-canonical": "^33.0.0", + "eslint": "^8.6.0", + "eslint-config-canonical": "^33.0.1", "gitdown": "^3.1.4", "glob": "^7.2.0", "husky": "^7.0.4", - "lint-staged": "^12.1.4", + "lint-staged": "^12.1.7", "lodash.defaultsdeep": "^4.6.1", "mocha": "^9.1.3", "nyc": "^15.1.0", @@ -104,9 +103,9 @@ "lint-fix": "npm run lint-arg -- --fix .", "prepare": "husky install", "test": "cross-env BABEL_ENV=test nyc --reporter text-summary mocha --reporter dot --recursive --require @babel/register --timeout 12000", - "test-cov": "cross-env BABEL_ENV=test nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000", + "test-cov": "cross-env BABEL_ENV=test TIMING=1 nyc mocha --reporter dot --recursive --require @babel/register --timeout 12000", "test-index": "cross-env BABEL_ENV=test mocha --recursive --require @babel/register --reporter progress --timeout 12000 test/rules/index.js", "test-no-cov": "cross-env BABEL_ENV=test mocha --reporter dot --recursive --require @babel/register --timeout 12000" }, - "version": "37.5.0" + "version": "37.6.1" } diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs index 6f104196aad9de..38f45f94a2b27a 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs @@ -184,6 +184,8 @@ const KEYS = { "children", "closingFragment" ], + JSXClosingFragment: [], + JSXOpeningFragment: [], Literal: [], LabeledStatement: [ "label", diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js index bd39002868597b..4c7be3da435be7 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/lib/visitor-keys.js @@ -180,6 +180,8 @@ const KEYS = { "children", "closingFragment" ], + JSXClosingFragment: [], + JSXOpeningFragment: [], Literal: [], LabeledStatement: [ "label", diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json index 0612d3c44f6e9c..10ff44ad1a3049 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json @@ -1,6 +1,6 @@ { "name": "eslint-visitor-keys", - "version": "3.1.0", + "version": "3.2.0", "description": "Constants and utilities about visitor keys to traverse AST.", "type": "module", "main": "dist/eslint-visitor-keys.cjs", diff --git a/tools/node_modules/eslint/node_modules/ignore/LICENSE-MIT b/tools/node_modules/eslint/node_modules/ignore/LICENSE-MIT old mode 100755 new mode 100644 diff --git a/tools/node_modules/eslint/node_modules/ignore/index.js b/tools/node_modules/eslint/node_modules/ignore/index.js old mode 100755 new mode 100644 index 62c5cf71ec2809..d935eb159f3d8d --- a/tools/node_modules/eslint/node_modules/ignore/index.js +++ b/tools/node_modules/eslint/node_modules/ignore/index.js @@ -1,13 +1,24 @@ // A simple implementation of make-array -function make_array (subject) { +function makeArray (subject) { return Array.isArray(subject) ? subject : [subject] } -const REGEX_BLANK_LINE = /^\s+$/ -const REGEX_LEADING_EXCAPED_EXCLAMATION = /^\\!/ -const REGEX_LEADING_EXCAPED_HASH = /^\\#/ +const EMPTY = '' +const SPACE = ' ' +const ESCAPE = '\\' +const REGEX_TEST_BLANK_LINE = /^\s+$/ +const REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/ +const REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/ +const REGEX_SPLITALL_CRLF = /\r?\n/g +// /foo, +// ./foo, +// ../foo, +// . +// .. +const REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/ + const SLASH = '/' const KEY_IGNORE = typeof Symbol !== 'undefined' ? Symbol.for('node-ignore') @@ -19,6 +30,8 @@ const define = (object, key, value) => const REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g +const RETURN_FALSE = () => false + // Sanitize the range of a regular expression // The cases are complicated, see test cases for details const sanitizeRange = range => range.replace( @@ -27,9 +40,15 @@ const sanitizeRange = range => range.replace( ? match // Invalid range (out of order) which is ok for gitignore rules but // fatal for JavaScript regular expression, so eliminate it. - : '' + : EMPTY ) +// See fixtures #59 +const cleanRangeBackSlash = slashes => { + const {length} = slashes + return slashes.slice(0, length - length % 2) +} + // > If the pattern ends with a slash, // > it is removed for the purpose of the following description, // > but it would only find a match with a directory. @@ -41,7 +60,7 @@ const sanitizeRange = range => range.replace( // you could use option `mark: true` with `glob` // '`foo/`' should not continue with the '`..`' -const DEFAULT_REPLACER_PREFIX = [ +const REPLACERS = [ // > Trailing spaces are ignored unless they are quoted with backslash ("\") [ @@ -50,14 +69,14 @@ const DEFAULT_REPLACER_PREFIX = [ // (a \ ) -> (a ) /\\?\s+$/, match => match.indexOf('\\') === 0 - ? ' ' - : '' + ? SPACE + : EMPTY ], // replace (\ ) with ' ' [ /\\\s/g, - () => ' ' + () => SPACE ], // Escape metacharacters @@ -78,19 +97,10 @@ const DEFAULT_REPLACER_PREFIX = [ // > - the opening curly brace {, // > These special characters are often called "metacharacters". [ - /[\\^$.|*+(){]/g, + /[\\$.|*+(){^]/g, match => `\\${match}` ], - [ - // > [abc] matches any character inside the brackets - // > (in this case a, b, or c); - /\[([^\]/]*)($|\])/g, - (match, p1, p2) => p2 === ']' - ? `[${sanitizeRange(p1)}]` - : `\\${match}` - ], - [ // > a question mark (?) matches a single character /(?!\\)\?/g, @@ -124,10 +134,8 @@ const DEFAULT_REPLACER_PREFIX = [ // '**/foo' <-> 'foo' () => '^(?:.*\\/)?' - ] -] + ], -const DEFAULT_REPLACER_SUFFIX = [ // starting [ // there will be no leading '/' @@ -135,11 +143,20 @@ const DEFAULT_REPLACER_SUFFIX = [ // If starts with '**', adding a '^' to the regular expression also works /^(?=[^^])/, function startingReplacer () { + // If has a slash `/` at the beginning or middle return !/\/(?!$)/.test(this) + // > Prior to 2.22.1 // > If the pattern does not contain a slash /, // > Git treats it as a shell glob pattern // Actually, if there is only a trailing slash, // git also treats it as a shell glob pattern + + // After 2.22.1 (compatible but clearer) + // > If there is a separator at the beginning or middle (or both) + // > of the pattern, then the pattern is relative to the directory + // > level of the particular .gitignore file itself. + // > Otherwise the pattern may also match at any level below + // > the .gitignore level. ? '(?:^|\\/)' // > Otherwise, Git treats the pattern as a shell glob suitable for @@ -157,7 +174,7 @@ const DEFAULT_REPLACER_SUFFIX = [ // should not use '*', or it will be replaced by the next replacer // Check if it is not the last `'/**'` - (match, index, str) => index + 6 < str.length + (_, index, str) => index + 6 < str.length // case: /**/ // > A slash followed by two consecutive asterisks then a slash matches @@ -184,119 +201,138 @@ const DEFAULT_REPLACER_SUFFIX = [ // '*.js' matches '.js' // '*.js' doesn't match 'abc' - (match, p1) => `${p1}[^\\/]*` + (_, p1) => `${p1}[^\\/]*` ], - // trailing wildcard [ - /(\^|\\\/)?\\\*$/, - (match, p1) => { - const prefix = p1 - // '\^': - // '/*' does not match '' - // '/*' does not match everything - - // '\\\/': - // 'abc/*' does not match 'abc/' - ? `${p1}[^/]+` - - // 'a*' matches 'a' - // 'a*' matches 'aa' - : '[^/]*' - - return `${prefix}(?=$|\\/$)` - } + // unescape, revert step 3 except for back slash + // For example, if a user escape a '\\*', + // after step 3, the result will be '\\\\\\*' + /\\\\\\(?=[$.|*+(){^])/g, + () => ESCAPE ], [ - // unescape - /\\\\\\/g, - () => '\\' - ] -] + // '\\\\' -> '\\' + /\\\\/g, + () => ESCAPE + ], -const POSITIVE_REPLACERS = [ - ...DEFAULT_REPLACER_PREFIX, - - // 'f' - // matches - // - /f(end) - // - /f/ - // - (start)f(end) - // - (start)f/ - // doesn't match - // - oof - // - foo - // pseudo: - // -> (^|/)f(/|$) + [ + // > The range notation, e.g. [a-zA-Z], + // > can be used to match one of the characters in a range. + + // `\` is escaped by step 3 + /(\\)?\[([^\]/]*?)(\\*)($|\])/g, + (match, leadEscape, range, endEscape, close) => leadEscape === ESCAPE + // '\\[bar]' -> '\\\\[bar\\]' + ? `\\[${range}${cleanRangeBackSlash(endEscape)}${close}` + : close === ']' + ? endEscape.length % 2 === 0 + // A normal case, and it is a range notation + // '[bar]' + // '[bar\\\\]' + ? `[${sanitizeRange(range)}${endEscape}]` + // Invalid range notaton + // '[bar\\]' -> '[bar\\\\]' + : '[]' + : '[]' + ], // ending [ // 'js' will not match 'js.' // 'ab' will not match 'abc' - /(?:[^*/])$/, + /(?:[^*])$/, + + // WTF! + // https://git-scm.com/docs/gitignore + // changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1) + // which re-fixes #24, #38 + + // > If there is a separator at the end of the pattern then the pattern + // > will only match directories, otherwise the pattern can match both + // > files and directories. // 'js*' will not match 'a.js' // 'js/' will not match 'a.js' // 'js' will match 'a.js' and 'a.js/' - match => `${match}(?=$|\\/)` + match => /\/$/.test(match) + // foo/ will not match 'foo' + ? `${match}$` + // foo matches 'foo' and 'foo/' + : `${match}(?=$|\\/$)` ], - ...DEFAULT_REPLACER_SUFFIX -] + // trailing wildcard + [ + /(\^|\\\/)?\\\*$/, + (_, p1) => { + const prefix = p1 + // '\^': + // '/*' does not match EMPTY + // '/*' does not match everything -const NEGATIVE_REPLACERS = [ - ...DEFAULT_REPLACER_PREFIX, + // '\\\/': + // 'abc/*' does not match 'abc/' + ? `${p1}[^/]+` - // #24, #38 - // The MISSING rule of [gitignore docs](https://git-scm.com/docs/gitignore) - // A negative pattern without a trailing wildcard should not - // re-include the things inside that directory. + // 'a*' matches 'a' + // 'a*' matches 'aa' + : '[^/]*' - // eg: - // ['node_modules/*', '!node_modules'] - // should ignore `node_modules/a.js` - [ - /(?:[^*])$/, - match => `${match}(?=$|\\/$)` + return `${prefix}(?=$|\\/$)` + } ], - - ...DEFAULT_REPLACER_SUFFIX ] // A simple cache, because an ignore rule only has only one certain meaning -const cache = Object.create(null) +const regexCache = Object.create(null) // @param {pattern} -const make_regex = (pattern, negative, ignorecase) => { - const r = cache[pattern] - if (r) { - return r +const makeRegex = (pattern, ignoreCase) => { + let source = regexCache[pattern] + + if (!source) { + source = REPLACERS.reduce( + (prev, current) => prev.replace(current[0], current[1].bind(pattern)), + pattern + ) + regexCache[pattern] = source } - const replacers = negative - ? NEGATIVE_REPLACERS - : POSITIVE_REPLACERS - - const source = replacers.reduce( - (prev, current) => prev.replace(current[0], current[1].bind(pattern)), - pattern - ) - - return cache[pattern] = ignorecase + return ignoreCase ? new RegExp(source, 'i') : new RegExp(source) } +const isString = subject => typeof subject === 'string' + // > A blank line matches no files, so it can serve as a separator for readability. const checkPattern = pattern => pattern - && typeof pattern === 'string' - && !REGEX_BLANK_LINE.test(pattern) + && isString(pattern) + && !REGEX_TEST_BLANK_LINE.test(pattern) // > A line starting with # serves as a comment. && pattern.indexOf('#') !== 0 -const createRule = (pattern, ignorecase) => { +const splitPattern = pattern => pattern.split(REGEX_SPLITALL_CRLF) + +class IgnoreRule { + constructor ( + origin, + pattern, + negative, + regex + ) { + this.origin = origin + this.pattern = pattern + this.negative = negative + this.regex = regex + } +} + +const createRule = (pattern, ignoreCase) => { const origin = pattern let negative = false @@ -309,44 +345,98 @@ const createRule = (pattern, ignorecase) => { pattern = pattern // > Put a backslash ("\") in front of the first "!" for patterns that // > begin with a literal "!", for example, `"\!important!.txt"`. - .replace(REGEX_LEADING_EXCAPED_EXCLAMATION, '!') + .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!') // > Put a backslash ("\") in front of the first hash for patterns that // > begin with a hash. - .replace(REGEX_LEADING_EXCAPED_HASH, '#') + .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#') - const regex = make_regex(pattern, negative, ignorecase) + const regex = makeRegex(pattern, ignoreCase) - return { + return new IgnoreRule( origin, pattern, negative, regex + ) +} + +const throwError = (message, Ctor) => { + throw new Ctor(message) +} + +const checkPath = (path, originalPath, doThrow) => { + if (!isString(path)) { + return doThrow( + `path must be a string, but got \`${originalPath}\``, + TypeError + ) + } + + // We don't know if we should ignore EMPTY, so throw + if (!path) { + return doThrow(`path must not be empty`, TypeError) + } + + // Check if it is a relative path + if (checkPath.isNotRelative(path)) { + const r = '`path.relative()`d' + return doThrow( + `path should be a ${r} string, but got "${originalPath}"`, + RangeError + ) } + + return true } -class IgnoreBase { +const isNotRelative = path => REGEX_TEST_INVALID_PATH.test(path) + +checkPath.isNotRelative = isNotRelative +checkPath.convert = p => p + +class Ignore { constructor ({ - ignorecase = true + ignorecase = true, + ignoreCase = ignorecase, + allowRelativePaths = false } = {}) { - this._rules = [] - this._ignorecase = ignorecase define(this, KEY_IGNORE, true) + + this._rules = [] + this._ignoreCase = ignoreCase + this._allowRelativePaths = allowRelativePaths this._initCache() } _initCache () { - this._cache = Object.create(null) + this._ignoreCache = Object.create(null) + this._testCache = Object.create(null) } - // @param {Array.|string|Ignore} pattern - add (pattern) { - this._added = false + _addPattern (pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules) + this._added = true + return + } - if (typeof pattern === 'string') { - pattern = pattern.split(/\r?\n/g) + if (checkPattern(pattern)) { + const rule = createRule(pattern, this._ignoreCase) + this._added = true + this._rules.push(rule) } + } + + // @param {Array | string | Ignore} pattern + add (pattern) { + this._added = false - make_array(pattern).forEach(this._addPattern, this) + makeArray( + isString(pattern) + ? splitPattern(pattern) + : pattern + ).forEach(this._addPattern, this) // Some rules have just added to the ignore, // making the behavior changed. @@ -362,41 +452,69 @@ class IgnoreBase { return this.add(pattern) } - _addPattern (pattern) { - // #32 - if (pattern && pattern[KEY_IGNORE]) { - this._rules = this._rules.concat(pattern._rules) - this._added = true - return - } + // | ignored : unignored + // negative | 0:0 | 0:1 | 1:0 | 1:1 + // -------- | ------- | ------- | ------- | -------- + // 0 | TEST | TEST | SKIP | X + // 1 | TESTIF | SKIP | TEST | X - if (checkPattern(pattern)) { - const rule = createRule(pattern, this._ignorecase) - this._added = true - this._rules.push(rule) - } - } + // - SKIP: always skip + // - TEST: always test + // - TESTIF: only test if checkUnignored + // - X: that never happen - filter (paths) { - return make_array(paths).filter(path => this._filter(path)) - } + // @param {boolean} whether should check if the path is unignored, + // setting `checkUnignored` to `false` could reduce additional + // path matching. - createFilter () { - return path => this._filter(path) - } + // @returns {TestResult} true if a file is ignored + _testOne (path, checkUnignored) { + let ignored = false + let unignored = false - ignores (path) { - return !this._filter(path) - } + this._rules.forEach(rule => { + const {negative} = rule + if ( + unignored === negative && ignored !== unignored + || negative && !ignored && !unignored && !checkUnignored + ) { + return + } + + const matched = rule.regex.test(path) + + if (matched) { + ignored = !negative + unignored = negative + } + }) - // @returns `Boolean` true if the `path` is NOT ignored - _filter (path, slices) { - if (!path) { - return false + return { + ignored, + unignored } + } + + // @returns {TestResult} + _test (originalPath, cache, checkUnignored, slices) { + const path = originalPath + // Supports nullable path + && checkPath.convert(originalPath) + + checkPath( + path, + originalPath, + this._allowRelativePaths + ? RETURN_FALSE + : throwError + ) + + return this._t(path, cache, checkUnignored, slices) + } - if (path in this._cache) { - return this._cache[path] + _t (path, cache, checkUnignored, slices) { + if (path in cache) { + return cache[path] } if (!slices) { @@ -407,34 +525,56 @@ class IgnoreBase { slices.pop() - return this._cache[path] = slices.length + // If the path has no parent directory, just test it + if (!slices.length) { + return cache[path] = this._testOne(path, checkUnignored) + } + + const parent = this._t( + slices.join(SLASH) + SLASH, + cache, + checkUnignored, + slices + ) + + // If the path contains a parent directory, check the parent first + return cache[path] = parent.ignored // > It is not possible to re-include a file if a parent directory of // > that file is excluded. - // If the path contains a parent directory, check the parent first - ? this._filter(slices.join(SLASH) + SLASH, slices) - && this._test(path) + ? parent + : this._testOne(path, checkUnignored) + } - // Or only test the path - : this._test(path) + ignores (path) { + return this._test(path, this._ignoreCache, false).ignored } - // @returns {Boolean} true if a file is NOT ignored - _test (path) { - // Explicitly define variable type by setting matched to `0` - let matched = 0 + createFilter () { + return path => !this.ignores(path) + } - this._rules.forEach(rule => { - // if matched = true, then we only test negative rules - // if matched = false, then we test non-negative rules - if (!(matched ^ rule.negative)) { - matched = rule.negative ^ rule.regex.test(path) - } - }) + filter (paths) { + return makeArray(paths).filter(this.createFilter()) + } - return !matched + // @returns {TestResult} + test (path) { + return this._test(path, this._testCache, true) } } +const factory = options => new Ignore(options) + +const isPathValid = path => + checkPath(path && checkPath.convert(path), path, RETURN_FALSE) + +factory.isPathValid = isPathValid + +// Fixes typescript +factory.default = factory + +module.exports = factory + // Windows // -------------------------------------------------------------- /* istanbul ignore if */ @@ -446,18 +586,18 @@ if ( || process.platform === 'win32' ) ) { - const filter = IgnoreBase.prototype._filter - /* eslint no-control-regex: "off" */ - const make_posix = str => /^\\\\\?\\/.test(str) - || /[^\x00-\x80]+/.test(str) + const makePosix = str => /^\\\\\?\\/.test(str) + || /["<>|\u0000-\u001F]+/u.test(str) ? str : str.replace(/\\/g, '/') - IgnoreBase.prototype._filter = function filterWin32 (path, slices) { - path = make_posix(path) - return filter.call(this, path, slices) - } -} + checkPath.convert = makePosix -module.exports = options => new IgnoreBase(options) + // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/' + // 'd:\\foo' + const REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i + checkPath.isNotRelative = path => + REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) + || isNotRelative(path) +} diff --git a/tools/node_modules/eslint/node_modules/ignore/legacy.js b/tools/node_modules/eslint/node_modules/ignore/legacy.js index 14f377d77fa5a3..b579d6f4eeb2a3 100644 --- a/tools/node_modules/eslint/node_modules/ignore/legacy.js +++ b/tools/node_modules/eslint/node_modules/ignore/legacy.js @@ -1,40 +1,61 @@ -'use strict'; +"use strict"; -var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); +function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } + +function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } // A simple implementation of make-array -function make_array(subject) { +function makeArray(subject) { return Array.isArray(subject) ? subject : [subject]; } -var REGEX_BLANK_LINE = /^\s+$/; -var REGEX_LEADING_EXCAPED_EXCLAMATION = /^\\!/; -var REGEX_LEADING_EXCAPED_HASH = /^\\#/; +var EMPTY = ''; +var SPACE = ' '; +var ESCAPE = '\\'; +var REGEX_TEST_BLANK_LINE = /^\s+$/; +var REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION = /^\\!/; +var REGEX_REPLACE_LEADING_EXCAPED_HASH = /^\\#/; +var REGEX_SPLITALL_CRLF = /\r?\n/g; // /foo, +// ./foo, +// ../foo, +// . +// .. + +var REGEX_TEST_INVALID_PATH = /^\.*\/|^\.+$/; var SLASH = '/'; -var KEY_IGNORE = typeof Symbol !== 'undefined' ? Symbol.for('node-ignore') +var KEY_IGNORE = typeof Symbol !== 'undefined' ? Symbol["for"]('node-ignore') /* istanbul ignore next */ : 'node-ignore'; var define = function define(object, key, value) { - return Object.defineProperty(object, key, { value }); + return Object.defineProperty(object, key, { + value: value + }); }; var REGEX_REGEXP_RANGE = /([0-z])-([0-z])/g; -// Sanitize the range of a regular expression +var RETURN_FALSE = function RETURN_FALSE() { + return false; +}; // Sanitize the range of a regular expression // The cases are complicated, see test cases for details + + var sanitizeRange = function sanitizeRange(range) { return range.replace(REGEX_REGEXP_RANGE, function (match, from, to) { - return from.charCodeAt(0) <= to.charCodeAt(0) ? match - // Invalid range (out of order) which is ok for gitignore rules but + return from.charCodeAt(0) <= to.charCodeAt(0) ? match // Invalid range (out of order) which is ok for gitignore rules but // fatal for JavaScript regular expression, so eliminate it. - : ''; + : EMPTY; }); -}; +}; // See fixtures #59 -// > If the pattern ends with a slash, + +var cleanRangeBackSlash = function cleanRangeBackSlash(slashes) { + var length = slashes.length; + return slashes.slice(0, length - length % 2); +}; // > If the pattern ends with a slash, // > it is removed for the purpose of the following description, // > but it would only find a match with a directory. // > In other words, foo/ will match a directory foo and paths underneath it, @@ -43,27 +64,20 @@ var sanitizeRange = function sanitizeRange(range) { // '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`' // -> ignore-rules will not deal with it, because it costs extra `fs.stat` call // you could use option `mark: true` with `glob` - // '`foo/`' should not continue with the '`..`' -var DEFAULT_REPLACER_PREFIX = [ -// > Trailing spaces are ignored unless they are quoted with backslash ("\") -[ -// (a\ ) -> (a ) + +var REPLACERS = [// > Trailing spaces are ignored unless they are quoted with backslash ("\") +[// (a\ ) -> (a ) // (a ) -> (a) // (a \ ) -> (a ) /\\?\s+$/, function (match) { - return match.indexOf('\\') === 0 ? ' ' : ''; -}], - -// replace (\ ) with ' ' + return match.indexOf('\\') === 0 ? SPACE : EMPTY; +}], // replace (\ ) with ' ' [/\\\s/g, function () { - return ' '; -}], - -// Escape metacharacters + return SPACE; +}], // Escape metacharacters // which is written down by users but means special for regular expressions. - // > There are 12 characters with special meanings: // > - the backslash \, // > - the caret ^, @@ -78,324 +92,327 @@ var DEFAULT_REPLACER_PREFIX = [ // > - and the opening square bracket [, // > - the opening curly brace {, // > These special characters are often called "metacharacters". -[/[\\^$.|*+(){]/g, function (match) { - return `\\${match}`; -}], [ -// > [abc] matches any character inside the brackets -// > (in this case a, b, or c); -/\[([^\]/]*)($|\])/g, function (match, p1, p2) { - return p2 === ']' ? `[${sanitizeRange(p1)}]` : `\\${match}`; -}], [ -// > a question mark (?) matches a single character +[/[\\$.|*+(){^]/g, function (match) { + return "\\".concat(match); +}], [// > a question mark (?) matches a single character /(?!\\)\?/g, function () { return '[^/]'; -}], - -// leading slash -[ - -// > A leading slash matches the beginning of the pathname. +}], // leading slash +[// > A leading slash matches the beginning of the pathname. // > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c". // A leading slash matches the beginning of the pathname /^\//, function () { return '^'; -}], - -// replace special metacharacter slash after the leading slash +}], // replace special metacharacter slash after the leading slash [/\//g, function () { return '\\/'; -}], [ -// > A leading "**" followed by a slash means match in all directories. +}], [// > A leading "**" followed by a slash means match in all directories. // > For example, "**/foo" matches file or directory "foo" anywhere, // > the same as pattern "foo". // > "**/foo/bar" matches file or directory "bar" anywhere that is directly // > under directory "foo". // Notice that the '*'s have been replaced as '\\*' -/^\^*\\\*\\\*\\\//, - -// '**/foo' <-> 'foo' +/^\^*\\\*\\\*\\\//, // '**/foo' <-> 'foo' function () { return '^(?:.*\\/)?'; -}]]; - -var DEFAULT_REPLACER_SUFFIX = [ -// starting -[ -// there will be no leading '/' +}], // starting +[// there will be no leading '/' // (which has been replaced by section "leading slash") // If starts with '**', adding a '^' to the regular expression also works /^(?=[^^])/, function startingReplacer() { - return !/\/(?!$)/.test(this) + // If has a slash `/` at the beginning or middle + return !/\/(?!$)/.test(this) // > Prior to 2.22.1 // > If the pattern does not contain a slash /, // > Git treats it as a shell glob pattern // Actually, if there is only a trailing slash, // git also treats it as a shell glob pattern - ? '(?:^|\\/)' - - // > Otherwise, Git treats the pattern as a shell glob suitable for + // After 2.22.1 (compatible but clearer) + // > If there is a separator at the beginning or middle (or both) + // > of the pattern, then the pattern is relative to the directory + // > level of the particular .gitignore file itself. + // > Otherwise the pattern may also match at any level below + // > the .gitignore level. + ? '(?:^|\\/)' // > Otherwise, Git treats the pattern as a shell glob suitable for // > consumption by fnmatch(3) : '^'; -}], - -// two globstars -[ -// Use lookahead assertions so that we could match more than one `'/**'` -/\\\/\\\*\\\*(?=\\\/|$)/g, - -// Zero, one or several directories +}], // two globstars +[// Use lookahead assertions so that we could match more than one `'/**'` +/\\\/\\\*\\\*(?=\\\/|$)/g, // Zero, one or several directories // should not use '*', or it will be replaced by the next replacer - // Check if it is not the last `'/**'` -function (match, index, str) { - return index + 6 < str.length - - // case: /**/ +function (_, index, str) { + return index + 6 < str.length // case: /**/ // > A slash followed by two consecutive asterisks then a slash matches // > zero or more directories. // > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on. // '/**/' - ? '(?:\\/[^\\/]+)*' - - // case: /** + ? '(?:\\/[^\\/]+)*' // case: /** // > A trailing `"/**"` matches everything inside. - // #21: everything inside but it should not include the current folder : '\\/.+'; -}], - -// intermediate wildcards -[ -// Never replace escaped '*' +}], // intermediate wildcards +[// Never replace escaped '*' // ignore rule '\*' will match the path '*' - // 'abc.*/' -> go // 'abc.*' -> skip this rule -/(^|[^\\]+)\\\*(?=.+)/g, - -// '*.js' matches '.js' +/(^|[^\\]+)\\\*(?=.+)/g, // '*.js' matches '.js' // '*.js' doesn't match 'abc' -function (match, p1) { - return `${p1}[^\\/]*`; -}], - -// trailing wildcard -[/(\^|\\\/)?\\\*$/, function (match, p1) { - var prefix = p1 - // '\^': - // '/*' does not match '' +function (_, p1) { + return "".concat(p1, "[^\\/]*"); +}], [// unescape, revert step 3 except for back slash +// For example, if a user escape a '\\*', +// after step 3, the result will be '\\\\\\*' +/\\\\\\(?=[$.|*+(){^])/g, function () { + return ESCAPE; +}], [// '\\\\' -> '\\' +/\\\\/g, function () { + return ESCAPE; +}], [// > The range notation, e.g. [a-zA-Z], +// > can be used to match one of the characters in a range. +// `\` is escaped by step 3 +/(\\)?\[([^\]/]*?)(\\*)($|\])/g, function (match, leadEscape, range, endEscape, close) { + return leadEscape === ESCAPE // '\\[bar]' -> '\\\\[bar\\]' + ? "\\[".concat(range).concat(cleanRangeBackSlash(endEscape)).concat(close) : close === ']' ? endEscape.length % 2 === 0 // A normal case, and it is a range notation + // '[bar]' + // '[bar\\\\]' + ? "[".concat(sanitizeRange(range)).concat(endEscape, "]") // Invalid range notaton + // '[bar\\]' -> '[bar\\\\]' + : '[]' : '[]'; +}], // ending +[// 'js' will not match 'js.' +// 'ab' will not match 'abc' +/(?:[^*])$/, // WTF! +// https://git-scm.com/docs/gitignore +// changes in [2.22.1](https://git-scm.com/docs/gitignore/2.22.1) +// which re-fixes #24, #38 +// > If there is a separator at the end of the pattern then the pattern +// > will only match directories, otherwise the pattern can match both +// > files and directories. +// 'js*' will not match 'a.js' +// 'js/' will not match 'a.js' +// 'js' will match 'a.js' and 'a.js/' +function (match) { + return /\/$/.test(match) // foo/ will not match 'foo' + ? "".concat(match, "$") // foo matches 'foo' and 'foo/' + : "".concat(match, "(?=$|\\/$)"); +}], // trailing wildcard +[/(\^|\\\/)?\\\*$/, function (_, p1) { + var prefix = p1 // '\^': + // '/*' does not match EMPTY // '/*' does not match everything - // '\\\/': // 'abc/*' does not match 'abc/' - ? `${p1}[^/]+` - - // 'a*' matches 'a' + ? "".concat(p1, "[^/]+") // 'a*' matches 'a' // 'a*' matches 'aa' : '[^/]*'; + return "".concat(prefix, "(?=$|\\/$)"); +}]]; // A simple cache, because an ignore rule only has only one certain meaning - return `${prefix}(?=$|\\/$)`; -}], [ -// unescape -/\\\\\\/g, function () { - return '\\'; -}]]; - -var POSITIVE_REPLACERS = [].concat(DEFAULT_REPLACER_PREFIX, [ - -// 'f' -// matches -// - /f(end) -// - /f/ -// - (start)f(end) -// - (start)f/ -// doesn't match -// - oof -// - foo -// pseudo: -// -> (^|/)f(/|$) - -// ending -[ -// 'js' will not match 'js.' -// 'ab' will not match 'abc' -/(?:[^*/])$/, +var regexCache = Object.create(null); // @param {pattern} -// 'js*' will not match 'a.js' -// 'js/' will not match 'a.js' -// 'js' will match 'a.js' and 'a.js/' -function (match) { - return `${match}(?=$|\\/)`; -}]], DEFAULT_REPLACER_SUFFIX); - -var NEGATIVE_REPLACERS = [].concat(DEFAULT_REPLACER_PREFIX, [ - -// #24, #38 -// The MISSING rule of [gitignore docs](https://git-scm.com/docs/gitignore) -// A negative pattern without a trailing wildcard should not -// re-include the things inside that directory. - -// eg: -// ['node_modules/*', '!node_modules'] -// should ignore `node_modules/a.js` -[/(?:[^*])$/, function (match) { - return `${match}(?=$|\\/$)`; -}]], DEFAULT_REPLACER_SUFFIX); - -// A simple cache, because an ignore rule only has only one certain meaning -var cache = Object.create(null); - -// @param {pattern} -var make_regex = function make_regex(pattern, negative, ignorecase) { - var r = cache[pattern]; - if (r) { - return r; +var makeRegex = function makeRegex(pattern, ignoreCase) { + var source = regexCache[pattern]; + + if (!source) { + source = REPLACERS.reduce(function (prev, current) { + return prev.replace(current[0], current[1].bind(pattern)); + }, pattern); + regexCache[pattern] = source; } - var replacers = negative ? NEGATIVE_REPLACERS : POSITIVE_REPLACERS; + return ignoreCase ? new RegExp(source, 'i') : new RegExp(source); +}; - var source = replacers.reduce(function (prev, current) { - return prev.replace(current[0], current[1].bind(pattern)); - }, pattern); +var isString = function isString(subject) { + return typeof subject === 'string'; +}; // > A blank line matches no files, so it can serve as a separator for readability. - return cache[pattern] = ignorecase ? new RegExp(source, 'i') : new RegExp(source); -}; -// > A blank line matches no files, so it can serve as a separator for readability. var checkPattern = function checkPattern(pattern) { - return pattern && typeof pattern === 'string' && !REGEX_BLANK_LINE.test(pattern) - - // > A line starting with # serves as a comment. + return pattern && isString(pattern) && !REGEX_TEST_BLANK_LINE.test(pattern) // > A line starting with # serves as a comment. && pattern.indexOf('#') !== 0; }; -var createRule = function createRule(pattern, ignorecase) { +var splitPattern = function splitPattern(pattern) { + return pattern.split(REGEX_SPLITALL_CRLF); +}; + +var IgnoreRule = function IgnoreRule(origin, pattern, negative, regex) { + _classCallCheck(this, IgnoreRule); + + this.origin = origin; + this.pattern = pattern; + this.negative = negative; + this.regex = regex; +}; + +var createRule = function createRule(pattern, ignoreCase) { var origin = pattern; - var negative = false; + var negative = false; // > An optional prefix "!" which negates the pattern; - // > An optional prefix "!" which negates the pattern; if (pattern.indexOf('!') === 0) { negative = true; pattern = pattern.substr(1); } - pattern = pattern - // > Put a backslash ("\") in front of the first "!" for patterns that + pattern = pattern // > Put a backslash ("\") in front of the first "!" for patterns that // > begin with a literal "!", for example, `"\!important!.txt"`. - .replace(REGEX_LEADING_EXCAPED_EXCLAMATION, '!') - // > Put a backslash ("\") in front of the first hash for patterns that + .replace(REGEX_REPLACE_LEADING_EXCAPED_EXCLAMATION, '!') // > Put a backslash ("\") in front of the first hash for patterns that // > begin with a hash. - .replace(REGEX_LEADING_EXCAPED_HASH, '#'); + .replace(REGEX_REPLACE_LEADING_EXCAPED_HASH, '#'); + var regex = makeRegex(pattern, ignoreCase); + return new IgnoreRule(origin, pattern, negative, regex); +}; - var regex = make_regex(pattern, negative, ignorecase); +var throwError = function throwError(message, Ctor) { + throw new Ctor(message); +}; - return { - origin, - pattern, - negative, - regex - }; +var checkPath = function checkPath(path, originalPath, doThrow) { + if (!isString(path)) { + return doThrow("path must be a string, but got `".concat(originalPath, "`"), TypeError); + } // We don't know if we should ignore EMPTY, so throw + + + if (!path) { + return doThrow("path must not be empty", TypeError); + } // Check if it is a relative path + + + if (checkPath.isNotRelative(path)) { + var r = '`path.relative()`d'; + return doThrow("path should be a ".concat(r, " string, but got \"").concat(originalPath, "\""), RangeError); + } + + return true; }; -var IgnoreBase = function () { - function IgnoreBase() { +var isNotRelative = function isNotRelative(path) { + return REGEX_TEST_INVALID_PATH.test(path); +}; + +checkPath.isNotRelative = isNotRelative; + +checkPath.convert = function (p) { + return p; +}; + +var Ignore = /*#__PURE__*/function () { + function Ignore() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, _ref$ignorecase = _ref.ignorecase, - ignorecase = _ref$ignorecase === undefined ? true : _ref$ignorecase; + ignorecase = _ref$ignorecase === void 0 ? true : _ref$ignorecase, + _ref$ignoreCase = _ref.ignoreCase, + ignoreCase = _ref$ignoreCase === void 0 ? ignorecase : _ref$ignoreCase, + _ref$allowRelativePat = _ref.allowRelativePaths, + allowRelativePaths = _ref$allowRelativePat === void 0 ? false : _ref$allowRelativePat; - _classCallCheck(this, IgnoreBase); + _classCallCheck(this, Ignore); - this._rules = []; - this._ignorecase = ignorecase; define(this, KEY_IGNORE, true); + this._rules = []; + this._ignoreCase = ignoreCase; + this._allowRelativePaths = allowRelativePaths; + this._initCache(); } - _createClass(IgnoreBase, [{ - key: '_initCache', + _createClass(Ignore, [{ + key: "_initCache", value: function _initCache() { - this._cache = Object.create(null); + this._ignoreCache = Object.create(null); + this._testCache = Object.create(null); } + }, { + key: "_addPattern", + value: function _addPattern(pattern) { + // #32 + if (pattern && pattern[KEY_IGNORE]) { + this._rules = this._rules.concat(pattern._rules); + this._added = true; + return; + } + + if (checkPattern(pattern)) { + var rule = createRule(pattern, this._ignoreCase); + this._added = true; - // @param {Array.|string|Ignore} pattern + this._rules.push(rule); + } + } // @param {Array | string | Ignore} pattern }, { - key: 'add', + key: "add", value: function add(pattern) { this._added = false; - - if (typeof pattern === 'string') { - pattern = pattern.split(/\r?\n/g); - } - - make_array(pattern).forEach(this._addPattern, this); - - // Some rules have just added to the ignore, + makeArray(isString(pattern) ? splitPattern(pattern) : pattern).forEach(this._addPattern, this); // Some rules have just added to the ignore, // making the behavior changed. + if (this._added) { this._initCache(); } return this; - } - - // legacy + } // legacy }, { - key: 'addPattern', + key: "addPattern", value: function addPattern(pattern) { return this.add(pattern); - } - }, { - key: '_addPattern', - value: function _addPattern(pattern) { - // #32 - if (pattern && pattern[KEY_IGNORE]) { - this._rules = this._rules.concat(pattern._rules); - this._added = true; - return; - } + } // | ignored : unignored + // negative | 0:0 | 0:1 | 1:0 | 1:1 + // -------- | ------- | ------- | ------- | -------- + // 0 | TEST | TEST | SKIP | X + // 1 | TESTIF | SKIP | TEST | X + // - SKIP: always skip + // - TEST: always test + // - TESTIF: only test if checkUnignored + // - X: that never happen + // @param {boolean} whether should check if the path is unignored, + // setting `checkUnignored` to `false` could reduce additional + // path matching. + // @returns {TestResult} true if a file is ignored - if (checkPattern(pattern)) { - var rule = createRule(pattern, this._ignorecase); - this._added = true; - this._rules.push(rule); - } - } }, { - key: 'filter', - value: function filter(paths) { - var _this = this; + key: "_testOne", + value: function _testOne(path, checkUnignored) { + var ignored = false; + var unignored = false; + + this._rules.forEach(function (rule) { + var negative = rule.negative; - return make_array(paths).filter(function (path) { - return _this._filter(path); + if (unignored === negative && ignored !== unignored || negative && !ignored && !unignored && !checkUnignored) { + return; + } + + var matched = rule.regex.test(path); + + if (matched) { + ignored = !negative; + unignored = negative; + } }); - } - }, { - key: 'createFilter', - value: function createFilter() { - var _this2 = this; - return function (path) { - return _this2._filter(path); + return { + ignored: ignored, + unignored: unignored }; - } + } // @returns {TestResult} + }, { - key: 'ignores', - value: function ignores(path) { - return !this._filter(path); + key: "_test", + value: function _test(originalPath, cache, checkUnignored, slices) { + var path = originalPath // Supports nullable path + && checkPath.convert(originalPath); + checkPath(path, originalPath, this._allowRelativePaths ? RETURN_FALSE : throwError); + return this._t(path, cache, checkUnignored, slices); } - - // @returns `Boolean` true if the `path` is NOT ignored - }, { - key: '_filter', - value: function _filter(path, slices) { - if (!path) { - return false; - } - - if (path in this._cache) { - return this._cache[path]; + key: "_t", + value: function _t(path, cache, checkUnignored, slices) { + if (path in cache) { + return cache[path]; } if (!slices) { @@ -404,63 +421,78 @@ var IgnoreBase = function () { slices = path.split(SLASH); } - slices.pop(); + slices.pop(); // If the path has no parent directory, just test it - return this._cache[path] = slices.length - // > It is not possible to re-include a file if a parent directory of - // > that file is excluded. - // If the path contains a parent directory, check the parent first - ? this._filter(slices.join(SLASH) + SLASH, slices) && this._test(path) + if (!slices.length) { + return cache[path] = this._testOne(path, checkUnignored); + } - // Or only test the path - : this._test(path); - } + var parent = this._t(slices.join(SLASH) + SLASH, cache, checkUnignored, slices); // If the path contains a parent directory, check the parent first - // @returns {Boolean} true if a file is NOT ignored + return cache[path] = parent.ignored // > It is not possible to re-include a file if a parent directory of + // > that file is excluded. + ? parent : this._testOne(path, checkUnignored); + } }, { - key: '_test', - value: function _test(path) { - // Explicitly define variable type by setting matched to `0` - var matched = 0; + key: "ignores", + value: function ignores(path) { + return this._test(path, this._ignoreCache, false).ignored; + } + }, { + key: "createFilter", + value: function createFilter() { + var _this = this; - this._rules.forEach(function (rule) { - // if matched = true, then we only test negative rules - // if matched = false, then we test non-negative rules - if (!(matched ^ rule.negative)) { - matched = rule.negative ^ rule.regex.test(path); - } - }); + return function (path) { + return !_this.ignores(path); + }; + } + }, { + key: "filter", + value: function filter(paths) { + return makeArray(paths).filter(this.createFilter()); + } // @returns {TestResult} - return !matched; + }, { + key: "test", + value: function test(path) { + return this._test(path, this._testCache, true); } }]); - return IgnoreBase; + return Ignore; }(); -// Windows +var factory = function factory(options) { + return new Ignore(options); +}; + +var isPathValid = function isPathValid(path) { + return checkPath(path && checkPath.convert(path), path, RETURN_FALSE); +}; + +factory.isPathValid = isPathValid; // Fixes typescript + +factory["default"] = factory; +module.exports = factory; // Windows // -------------------------------------------------------------- -/* istanbul ignore if */ +/* istanbul ignore if */ -if ( -// Detect `process` so that it can run in browsers. +if ( // Detect `process` so that it can run in browsers. typeof process !== 'undefined' && (process.env && process.env.IGNORE_TEST_WIN32 || process.platform === 'win32')) { - var filter = IgnoreBase.prototype._filter; - /* eslint no-control-regex: "off" */ - var make_posix = function make_posix(str) { - return (/^\\\\\?\\/.test(str) || /[^\x00-\x80]+/.test(str) ? str : str.replace(/\\/g, '/') - ); + var makePosix = function makePosix(str) { + return /^\\\\\?\\/.test(str) || /[\0-\x1F"<>\|]+/.test(str) ? str : str.replace(/\\/g, '/'); }; - IgnoreBase.prototype._filter = function filterWin32(path, slices) { - path = make_posix(path); - return filter.call(this, path, slices); + checkPath.convert = makePosix; // 'C:\\foo' <- 'C:\\foo' has been converted to 'C:/' + // 'd:\\foo' + + var REGIX_IS_WINDOWS_PATH_ABSOLUTE = /^[a-z]:\//i; + + checkPath.isNotRelative = function (path) { + return REGIX_IS_WINDOWS_PATH_ABSOLUTE.test(path) || isNotRelative(path); }; } - -module.exports = function (options) { - return new IgnoreBase(options); -}; diff --git a/tools/node_modules/eslint/node_modules/ignore/package.json b/tools/node_modules/eslint/node_modules/ignore/package.json index 8cb1b7873257b4..45de575cda0b4b 100644 --- a/tools/node_modules/eslint/node_modules/ignore/package.json +++ b/tools/node_modules/eslint/node_modules/ignore/package.json @@ -1,7 +1,7 @@ { "name": "ignore", - "version": "4.0.6", - "description": "Ignore is a manager and filter for .gitignore rules.", + "version": "5.2.0", + "description": "Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.", "files": [ "legacy.js", "index.js", @@ -9,14 +9,19 @@ "LICENSE-MIT" ], "scripts": { - "prepublish": "npm run build", + "prepublishOnly": "npm run build", "build": "babel -o legacy.js index.js", "test:lint": "eslint .", - "test:tsc": "tsc ./test/ts/simple.ts", - "test:git": "tap test/git-check-ignore.js", - "test:ignore": "tap test/ignore.js --coverage", - "test-no-cov": "npm run test:lint && npm run test:tsc && tap test/*.js --coverage", - "test": "npm run test-no-cov", + "test:tsc": "tsc ./test/ts/simple.ts --lib ES6", + "test:ts": "node ./test/ts/simple.js", + "tap": "tap --reporter classic", + "test:git": "npm run tap test/git-check-ignore.js", + "test:ignore": "npm run tap test/ignore.js", + "test:others": "npm run tap test/others.js", + "test:cases": "npm run tap test/*.js -- --coverage", + "test:only": "npm run test:lint && npm run test:tsc && npm run test:ts && npm run test:cases", + "test": "npm run test:only", + "test:win32": "IGNORE_TEST_WIN32=1 npm run test", "posttest": "tap --coverage-report=html && codecov" }, "repository": { @@ -44,19 +49,21 @@ "url": "https://github.com/kaelzhang/node-ignore/issues" }, "devDependencies": { - "babel-cli": "^6.26.0", - "babel-preset-env": "^1.7.0", - "codecov": "^3.0.4", - "eslint": "^5.3.0", - "eslint-config-ostai": "^1.3.2", - "eslint-plugin-import": "^2.13.0", - "mkdirp": "^0.5.1", - "pre-suf": "^1.1.0", - "rimraf": "^2.6.2", + "@babel/cli": "^7.8.4", + "@babel/core": "^7.9.6", + "@babel/preset-env": "^7.9.6", + "codecov": "^3.7.0", + "debug": "^4.1.1", + "eslint": "^7.0.0", + "eslint-config-ostai": "^3.0.0", + "eslint-plugin-import": "^2.20.2", + "mkdirp": "^1.0.4", + "pre-suf": "^1.1.1", + "rimraf": "^3.0.2", "spawn-sync": "^2.0.0", - "tap": "^12.0.1", - "tmp": "0.0.33", - "typescript": "^3.0.1" + "tap": "^14.10.7", + "tmp": "0.2.1", + "typescript": "^3.9.3" }, "engines": { "node": ">= 4" diff --git a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js index 9a5e026563998d..2d0d2cd453eea4 100644 --- a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js +++ b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/dist/index.js @@ -2,7 +2,7 @@ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.jtpp = {})); -}(this, (function (exports) { 'use strict'; +})(this, (function (exports) { 'use strict'; function tokenToString(token) { if (token.text !== undefined && token.text !== '') { @@ -110,6 +110,7 @@ } while (position < text.length); return text.slice(0, position); } + // we are a bit more liberal than TypeScript here and allow `NaN`, `Infinity` and `-Infinity` const numberRegex = /^(NaN|-?((\d*\.\d+|\d+)([Ee][+-]?\d+)?|Infinity))/; function getNumber(text) { var _a, _b; @@ -207,6 +208,7 @@ makeKeyWordRule('keyof'), makeKeyWordRule('readonly'), makeKeyWordRule('import'), + makeKeyWordRule('is'), numberRule, identifierRule, stringValueRule @@ -258,7 +260,10 @@ } } - function assertTerminal(result) { + /** + * Throws an error if the provided result is not a {@link RootResult} + */ + function assertRootResult(result) { if (result === undefined) { throw new Error('Unexpected undefined'); } @@ -267,19 +272,19 @@ } return result; } - function assertPlainKeyValueOrTerminal(result) { + function assertPlainKeyValueOrRootResult(result) { if (result.type === 'JsdocTypeKeyValue') { - return assertPlainKeyValue(result); + return assertPlainKeyValueResult(result); } - return assertTerminal(result); + return assertRootResult(result); } - function assertPlainKeyValueOrName(result) { + function assertPlainKeyValueOrNameResult(result) { if (result.type === 'JsdocTypeName') { return result; } - return assertPlainKeyValue(result); + return assertPlainKeyValueResult(result); } - function assertPlainKeyValue(result) { + function assertPlainKeyValueResult(result) { if (!isPlainKeyValue(result)) { if (result.type === 'JsdocTypeKeyValue') { throw new UnexpectedTypeError(result, 'Expecting no left side expression.'); @@ -290,7 +295,7 @@ } return result; } - function assertNumberOrVariadicName(result) { + function assertNumberOrVariadicNameResult(result) { var _a; if (result.type === 'JsdocTypeVariadic') { if (((_a = result.element) === null || _a === void 0 ? void 0 : _a.type) === 'JsdocTypeName') { @@ -317,7 +322,7 @@ Precedence[Precedence["UNION"] = 4] = "UNION"; Precedence[Precedence["INTERSECTION"] = 5] = "INTERSECTION"; Precedence[Precedence["PREFIX"] = 6] = "PREFIX"; - Precedence[Precedence["POSTFIX"] = 7] = "POSTFIX"; + Precedence[Precedence["INFIX"] = 7] = "INFIX"; Precedence[Precedence["TUPLE"] = 8] = "TUPLE"; Precedence[Precedence["SYMBOL"] = 9] = "SYMBOL"; Precedence[Precedence["OPTIONAL"] = 10] = "OPTIONAL"; @@ -336,48 +341,64 @@ constructor({ grammar, lexer, parent }) { this.lexer = lexer !== null && lexer !== void 0 ? lexer : new Lexer(); this.parent = parent; - const { prefixParslets, infixParslets } = grammar(); - this.prefixParslets = prefixParslets; - this.infixParslets = infixParslets; + this.grammar = grammar; } + /** + * Parses a given string and throws an error if the parse ended before the end of the string. + */ parseText(text) { this.lexer.lex(text); const result = this.parseType(Precedence.ALL); - if (this.getToken().type !== 'EOF') { - throw new EarlyEndOfParseError(this.getToken()); + if (this.lexer.token().type !== 'EOF') { + throw new EarlyEndOfParseError(this.lexer.token()); } return result; } - getPrefixParslet() { - return this.prefixParslets.find(p => p.accepts(this.getToken().type, this.peekToken().type)); - } - getInfixParslet(precedence) { - return this.infixParslets.find(p => { - return p.getPrecedence() > precedence && p.accepts(this.getToken().type, this.peekToken().type); - }); - } - canParseType() { - return this.getPrefixParslet() !== undefined; - } + /** + * Parses with the current lexer and asserts that the result is a {@link RootResult}. + */ parseType(precedence) { - return assertTerminal(this.parseIntermediateType(precedence)); + return assertRootResult(this.parseIntermediateType(precedence)); + } + /** + * Tries to parse the current state with all parslets in the grammar and returns the first non null result. + */ + tryParslets(precedence, left) { + for (const parslet of this.grammar) { + const result = parslet(this, precedence, left); + if (result !== null) { + return result; + } + } + return null; } + /** + * The main parsing function. First it tries to parse the current state in the prefix step, and then it continues + * to parse the state in the infix step. + */ parseIntermediateType(precedence) { - const parslet = this.getPrefixParslet(); - if (parslet === undefined) { - throw new NoParsletFoundError(this.getToken()); + const result = this.tryParslets(precedence, null); + if (result === null) { + throw new NoParsletFoundError(this.lexer.token()); } - const result = parslet.parsePrefix(this); return this.parseInfixIntermediateType(result, precedence); } + /** + * In the infix parsing step the parser continues to parse the current state with all parslets until none returns + * a result. + */ parseInfixIntermediateType(result, precedence) { - let parslet = this.getInfixParslet(precedence); - while (parslet !== undefined) { - result = parslet.parseInfix(this, result); - parslet = this.getInfixParslet(precedence); + let newResult = this.tryParslets(precedence, result); + while (newResult !== null) { + result = newResult; + newResult = this.tryParslets(precedence, result); } return result; } + /** + * If the given type equals the current type of the {@link Lexer} advance the lexer. Return true if the lexer was + * advanced. + */ consume(types) { if (!Array.isArray(types)) { types = [types]; @@ -388,15 +409,6 @@ this.lexer.advance(); return true; } - getToken() { - return this.lexer.token(); - } - peekToken() { - return this.lexer.peek(); - } - previousToken() { - return this.lexer.last(); - } getLexer() { return this.lexer; } @@ -405,251 +417,111 @@ } } - class SymbolParslet { - accepts(type) { - return type === '('; - } - getPrecedence() { - return Precedence.SYMBOL; - } - parseInfix(parser, left) { - if (left.type !== 'JsdocTypeName') { - throw new Error('Symbol expects a name on the left side. (Reacting on \'(\')'); - } - parser.consume('('); - const result = { - type: 'JsdocTypeSymbol', - value: left.value - }; - if (!parser.consume(')')) { - const next = parser.parseIntermediateType(Precedence.SYMBOL); - result.element = assertNumberOrVariadicName(next); - if (!parser.consume(')')) { - throw new Error('Symbol does not end after value'); - } - } - return result; - } + function isQuestionMarkUnknownType(next) { + return next === 'EOF' || next === '|' || next === ',' || next === ')' || next === '>'; } - class ArrayBracketsParslet { - accepts(type, next) { - return type === '[' && next === ']'; - } - getPrecedence() { - return Precedence.ARRAY_BRACKETS; + const nullableParslet = (parser, precedence, left) => { + const type = parser.getLexer().token().type; + const next = parser.getLexer().peek().type; + const accept = ((left == null) && type === '?' && !isQuestionMarkUnknownType(next)) || + ((left != null) && type === '?'); + if (!accept) { + return null; } - parseInfix(parser, left) { - parser.consume('['); - parser.consume(']'); + parser.consume('?'); + if (left == null) { return { - type: 'JsdocTypeGeneric', - left: { - type: 'JsdocTypeName', - value: 'Array' - }, - elements: [ - assertTerminal(left) - ], + type: 'JsdocTypeNullable', + element: parser.parseType(Precedence.NULLABLE), meta: { - brackets: 'square', - dot: false + position: 'prefix' } }; } - } - - class StringValueParslet { - accepts(type) { - return type === 'StringValue'; - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - const token = parser.getToken(); - parser.consume('StringValue'); + else { return { - type: 'JsdocTypeStringValue', - value: token.text.slice(1, -1), + type: 'JsdocTypeNullable', + element: assertRootResult(left), meta: { - quote: token.text[0] === '\'' ? 'single' : 'double' + position: 'suffix' } }; } - } - - class BaseFunctionParslet { - getParameters(value) { - let parameters; - if (value.type === 'JsdocTypeParameterList') { - parameters = value.elements; - } - else if (value.type === 'JsdocTypeParenthesis') { - parameters = [value.element]; - } - else { - throw new UnexpectedTypeError(value); - } - return parameters.map(p => assertPlainKeyValueOrTerminal(p)); - } - getUnnamedParameters(value) { - const parameters = this.getParameters(value); - if (parameters.some(p => p.type === 'JsdocTypeKeyValue')) { - throw new Error('No parameter should be named'); - } - return parameters; - } - } + }; - class FunctionParslet extends BaseFunctionParslet { - constructor(options) { - super(); - this.allowWithoutParenthesis = options.allowWithoutParenthesis; - this.allowNamedParameters = options.allowNamedParameters; - this.allowNoReturnType = options.allowNoReturnType; - } - accepts(type) { - return type === 'function'; - } - getPrecedence() { - return Precedence.FUNCTION; - } - parsePrefix(parser) { - parser.consume('function'); - const hasParenthesis = parser.getToken().type === '('; - if (!hasParenthesis) { - if (!this.allowWithoutParenthesis) { - throw new Error('function is missing parameter list'); - } - return { - type: 'JsdocTypeName', - value: 'function' - }; - } - const result = { - type: 'JsdocTypeFunction', - parameters: [], - arrow: false, - parenthesis: hasParenthesis - }; - const value = parser.parseIntermediateType(Precedence.FUNCTION); - if (this.allowNamedParameters === undefined) { - result.parameters = this.getUnnamedParameters(value); - } - else { - result.parameters = this.getParameters(value); - for (const p of result.parameters) { - if (p.type === 'JsdocTypeKeyValue' && (!this.allowNamedParameters.includes(p.key) || p.meta.quote !== undefined)) { - throw new Error(`only allowed named parameters are ${this.allowNamedParameters.join(',')} but got ${p.type}`); + function composeParslet(options) { + const parslet = (parser, curPrecedence, left) => { + const type = parser.getLexer().token().type; + const next = parser.getLexer().peek().type; + if (left == null) { + if ('parsePrefix' in options) { + if (options.accept(type, next)) { + return options.parsePrefix(parser); } } } - if (parser.consume(':')) { - result.returnType = parser.parseType(Precedence.PREFIX); - } else { - if (!this.allowNoReturnType) { - throw new Error('function is missing return type'); + if ('parseInfix' in options) { + if (options.precedence > curPrecedence && options.accept(type, next)) { + return options.parseInfix(parser, left); + } } } - return result; + return null; + }; + if (options.name !== undefined) { + // for debugging + Object.defineProperty(parslet, 'name', { + value: options.name + }); } + return parslet; } - class UnionParslet { - accepts(type) { - return type === '|'; - } - getPrecedence() { - return Precedence.UNION; - } - parseInfix(parser, left) { - parser.consume('|'); - const elements = []; - do { - elements.push(parser.parseType(Precedence.UNION)); - } while (parser.consume('|')); + const optionalParslet = composeParslet({ + name: 'optionalParslet', + accept: type => type === '=', + precedence: Precedence.OPTIONAL, + parsePrefix: parser => { + parser.consume('='); return { - type: 'JsdocTypeUnion', - elements: [assertTerminal(left), ...elements] + type: 'JsdocTypeOptional', + element: parser.parseType(Precedence.OPTIONAL), + meta: { + position: 'prefix' + } }; - } - } - - function isQuestionMarkUnknownType(next) { - return next === 'EOF' || next === '|' || next === ',' || next === ')' || next === '>'; - } - - class SpecialTypesParslet { - accepts(type, next) { - return (type === '?' && isQuestionMarkUnknownType(next)) || type === 'null' || type === 'undefined' || type === '*'; - } - getPrecedence() { - return Precedence.SPECIAL_TYPES; - } - parsePrefix(parser) { - if (parser.consume('null')) { - return { - type: 'JsdocTypeNull' - }; - } - if (parser.consume('undefined')) { - return { - type: 'JsdocTypeUndefined' - }; - } - if (parser.consume('*')) { - return { - type: 'JsdocTypeAny' - }; - } - if (parser.consume('?')) { - return { - type: 'JsdocTypeUnknown' - }; - } - throw new Error('Unacceptable token: ' + parser.getToken().text); - } - } - - class GenericParslet { - accepts(type, next) { - return type === '<' || (type === '.' && next === '<'); - } - getPrecedence() { - return Precedence.GENERIC; - } - parseInfix(parser, left) { - const dot = parser.consume('.'); - parser.consume('<'); - const objects = []; - do { - objects.push(parser.parseType(Precedence.PARAMETER_LIST)); - } while (parser.consume(',')); - if (!parser.consume('>')) { - throw new Error('Unterminated generic parameter list'); - } + }, + parseInfix: (parser, left) => { + parser.consume('='); return { - type: 'JsdocTypeGeneric', - left: assertTerminal(left), - elements: objects, + type: 'JsdocTypeOptional', + element: assertRootResult(left), meta: { - brackets: 'angle', - dot + position: 'suffix' } }; } - } + }); - class ParenthesisParslet { - accepts(type, next) { - return type === '('; - } - getPrecedence() { - return Precedence.PARENTHESIS; + const numberParslet = composeParslet({ + name: 'numberParslet', + accept: type => type === 'Number', + parsePrefix: parser => { + const value = parseFloat(parser.getLexer().token().text); + parser.consume('Number'); + return { + type: 'JsdocTypeNumber', + value + }; } - parsePrefix(parser) { + }); + + const parenthesisParslet = composeParslet({ + name: 'parenthesisParslet', + accept: type => type === '(', + parsePrefix: parser => { parser.consume('('); if (parser.consume(')')) { return { @@ -672,753 +544,817 @@ } return { type: 'JsdocTypeParenthesis', - element: assertTerminal(result) + element: assertRootResult(result) }; } - } - - class NumberParslet { - accepts(type, next) { - return type === 'Number'; - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - const token = parser.getToken(); - parser.consume('Number'); - return { - type: 'JsdocTypeNumber', - value: parseInt(token.text, 10) - }; - } - } + }); - class ParameterListParslet { - constructor(option) { - this.allowTrailingComma = option.allowTrailingComma; - } - accepts(type, next) { - return type === ','; - } - getPrecedence() { - return Precedence.PARAMETER_LIST; - } - parseInfix(parser, left) { - const elements = [ - assertPlainKeyValueOrTerminal(left) - ]; - parser.consume(','); - do { - try { - const next = parser.parseIntermediateType(Precedence.PARAMETER_LIST); - elements.push(assertPlainKeyValueOrTerminal(next)); - } - catch (e) { - if (this.allowTrailingComma && e instanceof NoParsletFoundError) { - break; - } - else { - throw e; - } - } - } while (parser.consume(',')); - if (elements.length > 0 && elements.slice(0, -1).some(e => e.type === 'JsdocTypeVariadic')) { - throw new Error('Only the last parameter may be a rest parameter'); + const specialTypesParslet = composeParslet({ + name: 'specialTypesParslet', + accept: (type, next) => (type === '?' && isQuestionMarkUnknownType(next)) || + type === 'null' || type === 'undefined' || type === '*', + parsePrefix: parser => { + if (parser.consume('null')) { + return { + type: 'JsdocTypeNull' + }; } - return { - type: 'JsdocTypeParameterList', - elements - }; + if (parser.consume('undefined')) { + return { + type: 'JsdocTypeUndefined' + }; + } + if (parser.consume('*')) { + return { + type: 'JsdocTypeAny' + }; + } + if (parser.consume('?')) { + return { + type: 'JsdocTypeUnknown' + }; + } + throw new Error('Unacceptable token: ' + parser.getLexer().token().text); } - } + }); - class NullablePrefixParslet { - accepts(type, next) { - return type === '?' && !isQuestionMarkUnknownType(next); - } - getPrecedence() { - return Precedence.NULLABLE; - } - parsePrefix(parser) { - parser.consume('?'); + const notNullableParslet = composeParslet({ + name: 'notNullableParslet', + accept: type => type === '!', + precedence: Precedence.NULLABLE, + parsePrefix: parser => { + parser.consume('!'); return { - type: 'JsdocTypeNullable', + type: 'JsdocTypeNotNullable', element: parser.parseType(Precedence.NULLABLE), meta: { position: 'prefix' } }; - } - } - class NullableInfixParslet { - accepts(type, next) { - return type === '?'; - } - getPrecedence() { - return Precedence.NULLABLE; - } - parseInfix(parser, left) { - parser.consume('?'); + }, + parseInfix: (parser, left) => { + parser.consume('!'); return { - type: 'JsdocTypeNullable', - element: assertTerminal(left), + type: 'JsdocTypeNotNullable', + element: assertRootResult(left), meta: { position: 'suffix' } }; } - } + }); - class OptionalParslet { - accepts(type, next) { - return type === '='; - } - getPrecedence() { - return Precedence.OPTIONAL; - } - parsePrefix(parser) { - parser.consume('='); - return { - type: 'JsdocTypeOptional', - element: parser.parseType(Precedence.OPTIONAL), - meta: { - position: 'prefix' - } - }; - } - parseInfix(parser, left) { - parser.consume('='); - return { - type: 'JsdocTypeOptional', - element: assertTerminal(left), - meta: { - position: 'suffix' + function createParameterListParslet({ allowTrailingComma }) { + return composeParslet({ + name: 'parameterListParslet', + accept: type => type === ',', + precedence: Precedence.PARAMETER_LIST, + parseInfix: (parser, left) => { + const elements = [ + assertPlainKeyValueOrRootResult(left) + ]; + parser.consume(','); + do { + try { + const next = parser.parseIntermediateType(Precedence.PARAMETER_LIST); + elements.push(assertPlainKeyValueOrRootResult(next)); + } + catch (e) { + if (allowTrailingComma && e instanceof NoParsletFoundError) { + break; + } + else { + throw e; + } + } + } while (parser.consume(',')); + if (elements.length > 0 && elements.slice(0, -1).some(e => e.type === 'JsdocTypeVariadic')) { + throw new Error('Only the last parameter may be a rest parameter'); } - }; - } + return { + type: 'JsdocTypeParameterList', + elements + }; + } + }); } - class NotNullableParslet { - accepts(type, next) { - return type === '!'; - } - getPrecedence() { - return Precedence.NULLABLE; - } - parsePrefix(parser) { - parser.consume('!'); + const genericParslet = composeParslet({ + name: 'genericParslet', + accept: (type, next) => type === '<' || (type === '.' && next === '<'), + precedence: Precedence.GENERIC, + parseInfix: (parser, left) => { + const dot = parser.consume('.'); + parser.consume('<'); + const objects = []; + do { + objects.push(parser.parseType(Precedence.PARAMETER_LIST)); + } while (parser.consume(',')); + if (!parser.consume('>')) { + throw new Error('Unterminated generic parameter list'); + } return { - type: 'JsdocTypeNotNullable', - element: parser.parseType(Precedence.NULLABLE), + type: 'JsdocTypeGeneric', + left: assertRootResult(left), + elements: objects, meta: { - position: 'prefix' + brackets: 'angle', + dot } }; } - parseInfix(parser, left) { - parser.consume('!'); + }); + + const unionParslet = composeParslet({ + name: 'unionParslet', + accept: type => type === '|', + precedence: Precedence.UNION, + parseInfix: (parser, left) => { + parser.consume('|'); + const elements = []; + do { + elements.push(parser.parseType(Precedence.UNION)); + } while (parser.consume('|')); return { - type: 'JsdocTypeNotNullable', - element: assertTerminal(left), - meta: { - position: 'suffix' - } + type: 'JsdocTypeUnion', + elements: [assertRootResult(left), ...elements] }; } - } + }); - const baseGrammar = () => { - return { - prefixParslets: [ - new NullablePrefixParslet(), - new OptionalParslet(), - new NumberParslet(), - new ParenthesisParslet(), - new SpecialTypesParslet(), - new NotNullableParslet() - ], - infixParslets: [ - new ParameterListParslet({ - allowTrailingComma: true - }), - new GenericParslet(), - new UnionParslet(), - new OptionalParslet(), - new NullableInfixParslet(), - new NotNullableParslet() - ] - }; - }; + const baseGrammar = [ + nullableParslet, + optionalParslet, + numberParslet, + parenthesisParslet, + specialTypesParslet, + notNullableParslet, + createParameterListParslet({ + allowTrailingComma: true + }), + genericParslet, + unionParslet, + optionalParslet + ]; - class NamePathParslet { - constructor(opts) { - this.allowJsdocNamePaths = opts.allowJsdocNamePaths; - this.allowedPropertyTokenTypes = [ - 'Identifier', - 'StringValue', - 'Number', - 'module' - ]; - } - accepts(type, next) { - return (type === '.' && next !== '<') || (this.allowJsdocNamePaths && (type === '~' || type === '#')); - } - getPrecedence() { - return Precedence.NAME_PATH; - } - parseInfix(parser, left) { - let type; + function createNamePathParslet({ allowJsdocNamePaths, pathGrammar }) { + return function namePathParslet(parser, precedence, left) { + if ((left == null) || precedence >= Precedence.NAME_PATH) { + return null; + } + const type = parser.getLexer().token().type; + const next = parser.getLexer().peek().type; + const accept = (type === '.' && next !== '<') || + (type === '[' && left.type === 'JsdocTypeName') || + (allowJsdocNamePaths && (type === '~' || type === '#')); + if (!accept) { + return null; + } + let pathType; + let brackets = false; if (parser.consume('.')) { - type = 'property'; + pathType = 'property'; + } + else if (parser.consume('[')) { + pathType = 'property-brackets'; + brackets = true; } else if (parser.consume('~')) { - type = 'inner'; + pathType = 'inner'; } else { parser.consume('#'); - type = 'instance'; + pathType = 'instance'; } + const pathParser = pathGrammar !== null + ? new Parser({ + grammar: pathGrammar, + lexer: parser.getLexer() + }) + : parser; + const parsed = pathParser.parseIntermediateType(Precedence.NAME_PATH); let right; - const tokenType = this.allowedPropertyTokenTypes.find(token => parser.getToken().type === token); - if (tokenType !== undefined) { - const value = parser.getToken().text; - parser.consume(tokenType); - right = { - type: 'JsdocTypeProperty', - value: value - }; - } - else { - const next = parser.parseIntermediateType(Precedence.NAME_PATH); - if (next.type === 'JsdocTypeName' && next.value === 'event') { + switch (parsed.type) { + case 'JsdocTypeName': right = { type: 'JsdocTypeProperty', - value: 'event' + value: parsed.value, + meta: { + quote: undefined + } }; - } - else if (next.type === 'JsdocTypeSpecialNamePath' && next.specialType === 'event') { - right = next; - } - else { - const validTokens = this.allowedPropertyTokenTypes.join(', '); - throw new Error(`Unexpected property value. Expecting token of type ${validTokens} or 'event' ` + - `name path. Next token is of type: ${parser.getToken().type}`); - } + break; + case 'JsdocTypeNumber': + right = { + type: 'JsdocTypeProperty', + value: parsed.value.toString(10), + meta: { + quote: undefined + } + }; + break; + case 'JsdocTypeStringValue': + right = { + type: 'JsdocTypeProperty', + value: parsed.value, + meta: { + quote: parsed.meta.quote + } + }; + break; + case 'JsdocTypeSpecialNamePath': + if (parsed.specialType === 'event') { + right = parsed; + } + else { + throw new UnexpectedTypeError(parsed, 'Type \'JsdocTypeSpecialNamePath\' is only allowed witch specialType \'event\''); + } + break; + default: + throw new UnexpectedTypeError(parsed, 'Expecting \'JsdocTypeName\', \'JsdocTypeNumber\', \'JsdocStringValue\' or \'JsdocTypeSpecialNamePath\''); + } + if (brackets && !parser.consume(']')) { + const token = parser.getLexer().token(); + throw new Error(`Unterminated square brackets. Next token is '${token.type}' ` + + `with text '${token.text}'`); } return { type: 'JsdocTypeNamePath', - left: assertTerminal(left), + left: assertRootResult(left), right, - pathType: type + pathType: pathType }; - } + }; } - class KeyValueParslet { - constructor(opts) { - this.allowKeyTypes = opts.allowKeyTypes; - this.allowOptional = opts.allowOptional; - this.allowReadonly = opts.allowReadonly; - } - accepts(type, next) { - return type === ':'; - } - getPrecedence() { - return Precedence.KEY_VALUE; - } - parseInfix(parser, left) { - var _a; - let optional = false; - let readonlyProperty = false; - if (this.allowOptional && left.type === 'JsdocTypeNullable') { - optional = true; - left = left.element; - } - if (this.allowReadonly && left.type === 'JsdocTypeReadonlyProperty') { - readonlyProperty = true; - left = left.element; - } - // object parslet uses a special grammar and for the value we want to switch back to the parent - parser = (_a = parser.getParent()) !== null && _a !== void 0 ? _a : parser; - if (left.type === 'JsdocTypeNumber' || left.type === 'JsdocTypeName' || left.type === 'JsdocTypeStringValue') { - parser.consume(':'); - let quote; - if (left.type === 'JsdocTypeStringValue') { - quote = left.meta.quote; - } + function createNameParslet({ allowedAdditionalTokens }) { + return composeParslet({ + name: 'nameParslet', + accept: type => type === 'Identifier' || type === 'this' || type === 'new' || allowedAdditionalTokens.includes(type), + parsePrefix: parser => { + const { type, text } = parser.getLexer().token(); + parser.consume(type); return { - type: 'JsdocTypeKeyValue', - key: left.value.toString(), - right: parser.parseType(Precedence.KEY_VALUE), - optional: optional, - readonly: readonlyProperty, - meta: { - quote, - hasLeftSideExpression: false - } + type: 'JsdocTypeName', + value: text }; } - else { - if (!this.allowKeyTypes) { - throw new UnexpectedTypeError(left); + }); + } + + const stringValueParslet = composeParslet({ + name: 'stringValueParslet', + accept: type => type === 'StringValue', + parsePrefix: parser => { + const text = parser.getLexer().token().text; + parser.consume('StringValue'); + return { + type: 'JsdocTypeStringValue', + value: text.slice(1, -1), + meta: { + quote: text[0] === '\'' ? 'single' : 'double' } - parser.consume(':'); - return { - type: 'JsdocTypeKeyValue', - left: assertTerminal(left), - right: parser.parseType(Precedence.KEY_VALUE), - meta: { - hasLeftSideExpression: true + }; + } + }); + + function createSpecialNamePathParslet({ pathGrammar, allowedTypes }) { + return composeParslet({ + name: 'specialNamePathParslet', + accept: type => allowedTypes.includes(type), + parsePrefix: parser => { + const type = parser.getLexer().token().type; + parser.consume(type); + if (!parser.consume(':')) { + return { + type: 'JsdocTypeName', + value: type + }; + } + const moduleParser = new Parser({ + grammar: pathGrammar, + lexer: parser.getLexer() + }); + let result; + let token = parser.getLexer().token(); + if (parser.consume('StringValue')) { + result = { + type: 'JsdocTypeSpecialNamePath', + value: token.text.slice(1, -1), + specialType: type, + meta: { + quote: token.text[0] === '\'' ? 'single' : 'double' + } + }; + } + else { + let value = ''; + const allowed = ['Identifier', '@', '/']; + while (allowed.some(type => parser.consume(type))) { + value += token.text; + token = parser.getLexer().token(); } - }; + result = { + type: 'JsdocTypeSpecialNamePath', + value, + specialType: type, + meta: { + quote: undefined + } + }; + } + return assertRootResult(moduleParser.parseInfixIntermediateType(result, Precedence.ALL)); } + }); + } + + const basePathGrammar = [ + createNameParslet({ + allowedAdditionalTokens: ['external', 'module'] + }), + stringValueParslet, + numberParslet, + createNamePathParslet({ + allowJsdocNamePaths: true, + pathGrammar: null + }) + ]; + const pathGrammar = [ + ...basePathGrammar, + createSpecialNamePathParslet({ + allowedTypes: ['event'], + pathGrammar: basePathGrammar + }) + ]; + + function getParameters(value) { + let parameters; + if (value.type === 'JsdocTypeParameterList') { + parameters = value.elements; + } + else if (value.type === 'JsdocTypeParenthesis') { + parameters = [value.element]; } + else { + throw new UnexpectedTypeError(value); + } + return parameters.map(p => assertPlainKeyValueOrRootResult(p)); + } + function getUnnamedParameters(value) { + const parameters = getParameters(value); + if (parameters.some(p => p.type === 'JsdocTypeKeyValue')) { + throw new Error('No parameter should be named'); + } + return parameters; + } + function createFunctionParslet({ allowNamedParameters, allowNoReturnType, allowWithoutParenthesis }) { + return composeParslet({ + name: 'functionParslet', + accept: type => type === 'function', + parsePrefix: parser => { + parser.consume('function'); + const hasParenthesis = parser.getLexer().token().type === '('; + if (!hasParenthesis) { + if (!allowWithoutParenthesis) { + throw new Error('function is missing parameter list'); + } + return { + type: 'JsdocTypeName', + value: 'function' + }; + } + const result = { + type: 'JsdocTypeFunction', + parameters: [], + arrow: false, + parenthesis: hasParenthesis + }; + const value = parser.parseIntermediateType(Precedence.FUNCTION); + if (allowNamedParameters === undefined) { + result.parameters = getUnnamedParameters(value); + } + else { + result.parameters = getParameters(value); + for (const p of result.parameters) { + if (p.type === 'JsdocTypeKeyValue' && (!allowNamedParameters.includes(p.key) || p.meta.quote !== undefined)) { + throw new Error(`only allowed named parameters are ${allowNamedParameters.join(',')} but got ${p.type}`); + } + } + } + if (parser.consume(':')) { + result.returnType = parser.parseType(Precedence.PREFIX); + } + else { + if (!allowNoReturnType) { + throw new Error('function is missing return type'); + } + } + return result; + } + }); } - class VariadicParslet { - constructor(opts) { - this.allowEnclosingBrackets = opts.allowEnclosingBrackets; - } - accepts(type) { - return type === '...'; - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - parser.consume('...'); - const brackets = this.allowEnclosingBrackets && parser.consume('['); - if (!parser.canParseType()) { - if (brackets) { - throw new Error('Empty square brackets for variadic are not allowed.'); + function createVariadicParslet({ allowPostfix, allowEnclosingBrackets }) { + return composeParslet({ + name: 'variadicParslet', + accept: type => type === '...', + precedence: Precedence.PREFIX, + parsePrefix: parser => { + parser.consume('...'); + const brackets = allowEnclosingBrackets && parser.consume('['); + try { + const element = parser.parseType(Precedence.PREFIX); + if (brackets && !parser.consume(']')) { + throw new Error('Unterminated variadic type. Missing \']\''); + } + return { + type: 'JsdocTypeVariadic', + element: assertRootResult(element), + meta: { + position: 'prefix', + squareBrackets: brackets + } + }; + } + catch (e) { + if (e instanceof NoParsletFoundError) { + if (brackets) { + throw new Error('Empty square brackets for variadic are not allowed.'); + } + return { + type: 'JsdocTypeVariadic', + meta: { + position: undefined, + squareBrackets: false + } + }; + } + else { + throw e; + } + } + }, + parseInfix: allowPostfix + ? (parser, left) => { + parser.consume('...'); + return { + type: 'JsdocTypeVariadic', + element: assertRootResult(left), + meta: { + position: 'suffix', + squareBrackets: false + } + }; + } + : undefined + }); + } + + const symbolParslet = composeParslet({ + name: 'symbolParslet', + accept: type => type === '(', + precedence: Precedence.SYMBOL, + parseInfix: (parser, left) => { + if (left.type !== 'JsdocTypeName') { + throw new Error('Symbol expects a name on the left side. (Reacting on \'(\')'); + } + parser.consume('('); + const result = { + type: 'JsdocTypeSymbol', + value: left.value + }; + if (!parser.consume(')')) { + const next = parser.parseIntermediateType(Precedence.SYMBOL); + result.element = assertNumberOrVariadicNameResult(next); + if (!parser.consume(')')) { + throw new Error('Symbol does not end after value'); } - return { - type: 'JsdocTypeVariadic', - meta: { - position: undefined, - squareBrackets: false - } - }; - } - const element = parser.parseType(Precedence.PREFIX); - if (brackets && !parser.consume(']')) { - throw new Error('Unterminated variadic type. Missing \']\''); } - return { - type: 'JsdocTypeVariadic', - element: assertTerminal(element), - meta: { - position: 'prefix', - squareBrackets: brackets - } - }; + return result; } - parseInfix(parser, left) { - parser.consume('...'); + }); + + const arrayBracketsParslet = composeParslet({ + name: 'arrayBracketsParslet', + precedence: Precedence.ARRAY_BRACKETS, + accept: (type, next) => type === '[' && next === ']', + parseInfix: (parser, left) => { + parser.consume('['); + parser.consume(']'); return { - type: 'JsdocTypeVariadic', - element: assertTerminal(left), + type: 'JsdocTypeGeneric', + left: { + type: 'JsdocTypeName', + value: 'Array' + }, + elements: [ + assertRootResult(left) + ], meta: { - position: 'suffix', - squareBrackets: false + brackets: 'square', + dot: false } }; } - } - - class NameParslet { - constructor(options) { - this.allowedAdditionalTokens = options.allowedAdditionalTokens; - } - accepts(type, next) { - return type === 'Identifier' || type === 'this' || type === 'new' || this.allowedAdditionalTokens.includes(type); - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - const token = parser.getToken(); - parser.consume('Identifier') || parser.consume('this') || parser.consume('new') || - this.allowedAdditionalTokens.some(type => parser.consume(type)); - return { - type: 'JsdocTypeName', - value: token.text - }; - } - } - - const moduleGrammar = () => ({ - prefixParslets: [ - new SpecialNamePathParslet({ - allowedTypes: ['event'] - }), - new NameParslet({ - allowedAdditionalTokens: ['module', 'external'] - }), - new NumberParslet(), - new StringValueParslet() - ], - infixParslets: [ - new NamePathParslet({ - allowJsdocNamePaths: true - }) - ] }); - class SpecialNamePathParslet { - constructor(opts) { - this.allowedTypes = opts.allowedTypes; - } - accepts(type, next) { - return this.allowedTypes.includes(type); - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - const type = this.allowedTypes.find(type => parser.consume(type)); - if (!parser.consume(':')) { - return { - type: 'JsdocTypeName', - value: type - }; - } - const moduleParser = new Parser({ - grammar: moduleGrammar, - lexer: parser.getLexer() - }); - let result; - let token = parser.getToken(); - if (parser.consume('StringValue')) { - result = { - type: 'JsdocTypeSpecialNamePath', - value: token.text.slice(1, -1), - specialType: type, - meta: { - quote: token.text[0] === '\'' ? 'single' : 'double' + function createKeyValueParslet({ allowKeyTypes, allowReadonly, allowOptional }) { + return composeParslet({ + name: 'keyValueParslet', + precedence: Precedence.KEY_VALUE, + accept: type => type === ':', + parseInfix: (parser, left) => { + var _a; + let optional = false; + let readonlyProperty = false; + if (allowOptional && left.type === 'JsdocTypeNullable') { + optional = true; + left = left.element; + } + if (allowReadonly && left.type === 'JsdocTypeReadonlyProperty') { + readonlyProperty = true; + left = left.element; + } + // object parslet uses a special grammar and for the value we want to switch back to the parent + parser = (_a = parser.getParent()) !== null && _a !== void 0 ? _a : parser; + if (left.type === 'JsdocTypeNumber' || left.type === 'JsdocTypeName' || left.type === 'JsdocTypeStringValue') { + parser.consume(':'); + let quote; + if (left.type === 'JsdocTypeStringValue') { + quote = left.meta.quote; } - }; - } - else { - let value = ''; - const allowed = ['Identifier', '@', '/']; - while (allowed.some(type => parser.consume(type))) { - value += token.text; - token = parser.getToken(); + return { + type: 'JsdocTypeKeyValue', + key: left.value.toString(), + right: parser.parseType(Precedence.KEY_VALUE), + optional: optional, + readonly: readonlyProperty, + meta: { + quote, + hasLeftSideExpression: false + } + }; } - result = { - type: 'JsdocTypeSpecialNamePath', - value, - specialType: type, - meta: { - quote: undefined + else { + if (!allowKeyTypes) { + throw new UnexpectedTypeError(left); } - }; + parser.consume(':'); + return { + type: 'JsdocTypeKeyValue', + left: assertRootResult(left), + right: parser.parseType(Precedence.KEY_VALUE), + meta: { + hasLeftSideExpression: true + } + }; + } } - return assertTerminal(moduleParser.parseInfixIntermediateType(result, Precedence.ALL)); - } + }); } - class ObjectParslet { - constructor({ objectFieldGrammar, allowKeyTypes }) { - this.objectFieldGrammar = objectFieldGrammar; - this.allowKeyTypes = allowKeyTypes; - } - accepts(type) { - return type === '{'; - } - getPrecedence() { - return Precedence.OBJECT; - } - parsePrefix(parser) { - parser.consume('{'); - const result = { - type: 'JsdocTypeObject', - meta: { - separator: 'comma' - }, - elements: [] - }; - if (!parser.consume('}')) { - let separator; - const lexer = parser.getLexer(); - const fieldParser = new Parser({ - grammar: this.objectFieldGrammar, - lexer: lexer, - parent: parser - }); - while (true) { - let field = fieldParser.parseIntermediateType(Precedence.OBJECT); - if (field === undefined && this.allowKeyTypes) { - field = parser.parseIntermediateType(Precedence.OBJECT); - } - let optional = false; - if (field.type === 'JsdocTypeNullable') { - optional = true; - field = field.element; - } - if (field.type === 'JsdocTypeNumber' || field.type === 'JsdocTypeName' || field.type === 'JsdocTypeStringValue') { - let quote; - if (field.type === 'JsdocTypeStringValue') { - quote = field.meta.quote; + function createObjectParslet({ objectFieldGrammar, allowKeyTypes }) { + return composeParslet({ + name: 'objectParslet', + accept: type => type === '{', + parsePrefix: parser => { + parser.consume('{'); + const result = { + type: 'JsdocTypeObject', + meta: { + separator: 'comma' + }, + elements: [] + }; + if (!parser.consume('}')) { + let separator; + const lexer = parser.getLexer(); + const fieldParser = new Parser({ + grammar: objectFieldGrammar, + lexer: lexer, + parent: parser + }); + while (true) { + let field = fieldParser.parseIntermediateType(Precedence.OBJECT); + if (field === undefined && allowKeyTypes) { + field = parser.parseIntermediateType(Precedence.OBJECT); } - result.elements.push({ - type: 'JsdocTypeKeyValue', - key: field.value.toString(), - right: undefined, - optional: optional, - readonly: false, - meta: { - quote, - hasLeftSideExpression: false + let optional = false; + if (field.type === 'JsdocTypeNullable') { + optional = true; + field = field.element; + } + if (field.type === 'JsdocTypeNumber' || field.type === 'JsdocTypeName' || field.type === 'JsdocTypeStringValue') { + let quote; + if (field.type === 'JsdocTypeStringValue') { + quote = field.meta.quote; } - }); - } - else if (field.type === 'JsdocTypeKeyValue') { - result.elements.push(field); - } - else { - throw new UnexpectedTypeError(field); - } - if (parser.consume(',')) { - separator = 'comma'; - } - else if (parser.consume(';')) { - separator = 'semicolon'; + result.elements.push({ + type: 'JsdocTypeKeyValue', + key: field.value.toString(), + right: undefined, + optional: optional, + readonly: false, + meta: { + quote, + hasLeftSideExpression: false + } + }); + } + else if (field.type === 'JsdocTypeKeyValue') { + result.elements.push(field); + } + else { + throw new UnexpectedTypeError(field); + } + if (parser.consume(',')) { + separator = 'comma'; + } + else if (parser.consume(';')) { + separator = 'semicolon'; + } + else { + break; + } } - else { - break; + result.meta.separator = separator !== null && separator !== void 0 ? separator : 'comma'; // TODO: use undefined here + if (!parser.consume('}')) { + throw new Error('Unterminated record type. Missing \'}\''); } } - result.meta.separator = separator !== null && separator !== void 0 ? separator : 'comma'; // TODO: use undefined here - if (!parser.consume('}')) { - throw new Error('Unterminated record type. Missing \'}\''); - } + return result; } - return result; - } - } - - function combineGrammars(grammarFactoryA, grammarFactoryB) { - return () => { - const grammarA = grammarFactoryA(); - const grammarB = grammarFactoryB(); - return { - prefixParslets: [ - ...grammarA.prefixParslets, - ...grammarB.prefixParslets - ], - infixParslets: [ - ...grammarA.infixParslets, - ...grammarB.infixParslets - ] - }; - }; + }); } - const jsdocGrammar = () => { - const jsdocBaseGrammar = combineGrammars(baseGrammar, () => ({ - prefixParslets: [ - new FunctionParslet({ - allowWithoutParenthesis: true, - allowNamedParameters: ['this', 'new'], - allowNoReturnType: true - }), - new StringValueParslet(), - new SpecialNamePathParslet({ - allowedTypes: ['module', 'external', 'event'] - }), - new VariadicParslet({ - allowEnclosingBrackets: true - }), - new NameParslet({ - allowedAdditionalTokens: ['keyof'] - }) - ], - infixParslets: [ - new SymbolParslet(), - new ArrayBracketsParslet(), - new NamePathParslet({ - allowJsdocNamePaths: true - }), - new KeyValueParslet({ - allowKeyTypes: true, - allowOptional: false, - allowReadonly: false + const jsdocBaseGrammar = [ + ...baseGrammar, + createFunctionParslet({ + allowWithoutParenthesis: true, + allowNamedParameters: ['this', 'new'], + allowNoReturnType: true + }), + stringValueParslet, + createSpecialNamePathParslet({ + allowedTypes: ['module', 'external', 'event'], + pathGrammar + }), + createVariadicParslet({ + allowEnclosingBrackets: true, + allowPostfix: true + }), + createNameParslet({ + allowedAdditionalTokens: ['keyof'] + }), + symbolParslet, + arrayBracketsParslet, + createNamePathParslet({ + allowJsdocNamePaths: true, + pathGrammar + }), + createKeyValueParslet({ + allowKeyTypes: true, + allowOptional: false, + allowReadonly: false + }) + ]; + const jsdocGrammar = [ + ...jsdocBaseGrammar, + createObjectParslet({ + // jsdoc syntax allows full types as keys, so we need to pull in the full grammar here + // we leave out the object type deliberately + objectFieldGrammar: [ + createNameParslet({ + allowedAdditionalTokens: ['module'] }), - new VariadicParslet({ - allowEnclosingBrackets: true - }) - ] - })); - return combineGrammars(jsdocBaseGrammar, () => ({ - prefixParslets: [ - new ObjectParslet({ - // jsdoc syntax allows full types as keys, so we need to pull in the full grammar here - // we leave out the object type deliberately - objectFieldGrammar: combineGrammars(() => ({ - prefixParslets: [ - new NameParslet({ - allowedAdditionalTokens: ['module'] - }) - ], - infixParslets: [] - }), jsdocBaseGrammar), - allowKeyTypes: true - }) + ...jsdocBaseGrammar ], - infixParslets: [] - }))(); - }; + allowKeyTypes: true + }) + ]; - class TypeOfParslet { - accepts(type, next) { - return type === 'typeof'; - } - getPrecedence() { - return Precedence.KEY_OF_TYPE_OF; - } - parsePrefix(parser) { + const typeOfParslet = composeParslet({ + name: 'typeOfParslet', + accept: type => type === 'typeof', + parsePrefix: parser => { parser.consume('typeof'); return { type: 'JsdocTypeTypeof', - element: assertTerminal(parser.parseType(Precedence.KEY_OF_TYPE_OF)) + element: assertRootResult(parser.parseType(Precedence.KEY_OF_TYPE_OF)) }; } - } - - const closureGrammar = combineGrammars(baseGrammar, () => { - const objectFieldGrammar = () => ({ - prefixParslets: [ - new NameParslet({ - allowedAdditionalTokens: ['module', 'keyof', 'event', 'external'] - }), - new NullablePrefixParslet(), - new OptionalParslet(), - new StringValueParslet(), - new NumberParslet() - ], - infixParslets: [ - new NullableInfixParslet(), - new OptionalParslet(), - new KeyValueParslet({ - allowKeyTypes: false, - allowOptional: false, - allowReadonly: false - }) - ] - }); - return { - prefixParslets: [ - new ObjectParslet({ - allowKeyTypes: false, - objectFieldGrammar - }), - new NameParslet({ - allowedAdditionalTokens: ['event', 'external'] - }), - new TypeOfParslet(), - new FunctionParslet({ - allowWithoutParenthesis: false, - allowNamedParameters: ['this', 'new'], - allowNoReturnType: true - }), - new VariadicParslet({ - allowEnclosingBrackets: false - }), - // additional name parslet is needed for some special cases - new NameParslet({ - allowedAdditionalTokens: ['keyof'] - }), - new SpecialNamePathParslet({ - allowedTypes: ['module'] - }) - ], - infixParslets: [ - new NamePathParslet({ - allowJsdocNamePaths: true - }), - new KeyValueParslet({ - allowKeyTypes: false, - allowOptional: false, - allowReadonly: false - }), - new SymbolParslet() - ] - }; }); - class TupleParslet { - constructor(opts) { - this.allowQuestionMark = opts.allowQuestionMark; - } - accepts(type, next) { - return type === '['; - } - getPrecedence() { - return Precedence.TUPLE; - } - parsePrefix(parser) { - parser.consume('['); - const result = { - type: 'JsdocTypeTuple', - elements: [] - }; - if (parser.consume(']')) { - return result; - } - const typeList = parser.parseIntermediateType(Precedence.ALL); - if (typeList.type === 'JsdocTypeParameterList') { - if (typeList.elements[0].type === 'JsdocTypeKeyValue') { - result.elements = typeList.elements.map(assertPlainKeyValue); + const objectFieldGrammar$1 = [ + createNameParslet({ + allowedAdditionalTokens: ['module', 'keyof', 'event', 'external'] + }), + nullableParslet, + optionalParslet, + stringValueParslet, + numberParslet, + createKeyValueParslet({ + allowKeyTypes: false, + allowOptional: false, + allowReadonly: false + }) + ]; + const closureGrammar = [ + ...baseGrammar, + createObjectParslet({ + allowKeyTypes: false, + objectFieldGrammar: objectFieldGrammar$1 + }), + createNameParslet({ + allowedAdditionalTokens: ['event', 'external'] + }), + typeOfParslet, + createFunctionParslet({ + allowWithoutParenthesis: false, + allowNamedParameters: ['this', 'new'], + allowNoReturnType: true + }), + createVariadicParslet({ + allowEnclosingBrackets: false, + allowPostfix: false + }), + // additional name parslet is needed for some special cases + createNameParslet({ + allowedAdditionalTokens: ['keyof'] + }), + createSpecialNamePathParslet({ + allowedTypes: ['module'], + pathGrammar + }), + createNamePathParslet({ + allowJsdocNamePaths: true, + pathGrammar + }), + createKeyValueParslet({ + allowKeyTypes: false, + allowOptional: false, + allowReadonly: false + }), + symbolParslet + ]; + + function createTupleParslet({ allowQuestionMark }) { + return composeParslet({ + name: 'tupleParslet', + accept: type => type === '[', + parsePrefix: parser => { + parser.consume('['); + const result = { + type: 'JsdocTypeTuple', + elements: [] + }; + if (parser.consume(']')) { + return result; + } + const typeList = parser.parseIntermediateType(Precedence.ALL); + if (typeList.type === 'JsdocTypeParameterList') { + if (typeList.elements[0].type === 'JsdocTypeKeyValue') { + result.elements = typeList.elements.map(assertPlainKeyValueResult); + } + else { + result.elements = typeList.elements.map(assertRootResult); + } } else { - result.elements = typeList.elements.map(assertTerminal); + if (typeList.type === 'JsdocTypeKeyValue') { + result.elements = [assertPlainKeyValueResult(typeList)]; + } + else { + result.elements = [assertRootResult(typeList)]; + } } - } - else { - if (typeList.type === 'JsdocTypeKeyValue') { - result.elements = [assertPlainKeyValue(typeList)]; + if (!parser.consume(']')) { + throw new Error('Unterminated \'[\''); } - else { - result.elements = [assertTerminal(typeList)]; + if (!allowQuestionMark && result.elements.some((e) => e.type === 'JsdocTypeUnknown')) { + throw new Error('Question mark in tuple not allowed'); } + return result; } - if (!parser.consume(']')) { - throw new Error('Unterminated \'[\''); - } - if (!this.allowQuestionMark && result.elements.some((e) => e.type === 'JsdocTypeUnknown')) { - throw new Error('Question mark in tuple not allowed'); - } - return result; - } + }); } - class KeyOfParslet { - accepts(type, next) { - return type === 'keyof'; - } - getPrecedence() { - return Precedence.KEY_OF_TYPE_OF; - } - parsePrefix(parser) { + const keyOfParslet = composeParslet({ + name: 'keyOfParslet', + accept: type => type === 'keyof', + parsePrefix: parser => { parser.consume('keyof'); return { type: 'JsdocTypeKeyof', - element: assertTerminal(parser.parseType(Precedence.KEY_OF_TYPE_OF)) + element: assertRootResult(parser.parseType(Precedence.KEY_OF_TYPE_OF)) }; } - } + }); - class ImportParslet { - accepts(type, next) { - return type === 'import'; - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { + const importParslet = composeParslet({ + name: 'importParslet', + accept: type => type === 'import', + parsePrefix: parser => { parser.consume('import'); if (!parser.consume('(')) { throw new Error('Missing parenthesis after import keyword'); @@ -1435,35 +1371,41 @@ element: path }; } - } + }); - class ArrowFunctionParslet extends BaseFunctionParslet { - accepts(type, next) { - return type === '=>'; - } - getPrecedence() { - return Precedence.ARROW; + const readonlyPropertyParslet = composeParslet({ + name: 'readonlyPropertyParslet', + accept: type => type === 'readonly', + parsePrefix: parser => { + parser.consume('readonly'); + return { + type: 'JsdocTypeReadonlyProperty', + element: parser.parseType(Precedence.KEY_VALUE) + }; } - parseInfix(parser, left) { + }); + + const arrowFunctionParslet = composeParslet({ + name: 'arrowFunctionParslet', + precedence: Precedence.ARROW, + accept: type => type === '=>', + parseInfix: (parser, left) => { parser.consume('=>'); return { type: 'JsdocTypeFunction', - parameters: this.getParameters(left).map(assertPlainKeyValueOrName), + parameters: getParameters(left).map(assertPlainKeyValueOrNameResult), arrow: true, parenthesis: true, - returnType: parser.parseType(Precedence.ALL) + returnType: parser.parseType(Precedence.OBJECT) }; } - } + }); - class IntersectionParslet { - accepts(type) { - return type === '&'; - } - getPrecedence() { - return Precedence.INTERSECTION; - } - parseInfix(parser, left) { + const intersectionParslet = composeParslet({ + name: 'intersectionParslet', + accept: type => type === '&', + precedence: Precedence.INTERSECTION, + parseInfix: (parser, left) => { parser.consume('&'); const elements = []; do { @@ -1471,93 +1413,87 @@ } while (parser.consume('&')); return { type: 'JsdocTypeIntersection', - elements: [assertTerminal(left), ...elements] + elements: [assertRootResult(left), ...elements] }; } - } + }); - class ReadonlyPropertyParslet { - accepts(type, next) { - return type === 'readonly'; - } - getPrecedence() { - return Precedence.PREFIX; - } - parsePrefix(parser) { - parser.consume('readonly'); + const predicateParslet = composeParslet({ + name: 'predicateParslet', + precedence: Precedence.INFIX, + accept: type => type === 'is', + parseInfix: (parser, left) => { + if (left.type !== 'JsdocTypeName') { + throw new UnexpectedTypeError(left, 'A typescript predicate always has to have a name on the left side.'); + } + parser.consume('is'); return { - type: 'JsdocTypeReadonlyProperty', - element: parser.parseType(Precedence.KEY_VALUE) + type: 'JsdocTypePredicate', + left, + right: assertRootResult(parser.parseIntermediateType(Precedence.INFIX)) }; } - } - - const typescriptGrammar = combineGrammars(baseGrammar, () => { - const objectFieldGrammar = () => ({ - prefixParslets: [ - new NameParslet({ - allowedAdditionalTokens: ['module', 'event', 'keyof', 'event', 'external'] - }), - new NullablePrefixParslet(), - new OptionalParslet(), - new StringValueParslet(), - new NumberParslet() - ], - infixParslets: [ - new NullableInfixParslet(), - new OptionalParslet(), - new KeyValueParslet({ - allowKeyTypes: false, - allowOptional: true, - allowReadonly: true - }) - ] - }); - return { - prefixParslets: [ - new ObjectParslet({ - allowKeyTypes: false, - objectFieldGrammar - }), - new TypeOfParslet(), - new KeyOfParslet(), - new ImportParslet(), - new StringValueParslet(), - new FunctionParslet({ - allowWithoutParenthesis: true, - allowNoReturnType: false, - allowNamedParameters: ['this', 'new'] - }), - new TupleParslet({ - allowQuestionMark: false - }), - new VariadicParslet({ - allowEnclosingBrackets: false - }), - new NameParslet({ - allowedAdditionalTokens: ['event', 'external'] - }), - new SpecialNamePathParslet({ - allowedTypes: ['module'] - }), - new ReadonlyPropertyParslet() - ], - infixParslets: [ - new ArrayBracketsParslet(), - new ArrowFunctionParslet(), - new NamePathParslet({ - allowJsdocNamePaths: false - }), - new KeyValueParslet({ - allowKeyTypes: false, - allowOptional: true, - allowReadonly: true - }), - new IntersectionParslet() - ] - }; }); + const objectFieldGrammar = [ + createNameParslet({ + allowedAdditionalTokens: ['module', 'event', 'keyof', 'event', 'external'] + }), + nullableParslet, + optionalParslet, + stringValueParslet, + numberParslet, + createKeyValueParslet({ + allowKeyTypes: false, + allowOptional: true, + allowReadonly: true + }) + ]; + const typescriptGrammar = [ + ...baseGrammar, + createObjectParslet({ + allowKeyTypes: false, + objectFieldGrammar + }), + typeOfParslet, + keyOfParslet, + importParslet, + stringValueParslet, + createFunctionParslet({ + allowWithoutParenthesis: true, + allowNoReturnType: false, + allowNamedParameters: ['this', 'new'] + }), + createTupleParslet({ + allowQuestionMark: false + }), + createVariadicParslet({ + allowEnclosingBrackets: false, + allowPostfix: false + }), + createNameParslet({ + allowedAdditionalTokens: ['event', 'external'] + }), + createSpecialNamePathParslet({ + allowedTypes: ['module'], + pathGrammar + }), + readonlyPropertyParslet, + arrayBracketsParslet, + arrowFunctionParslet, + createNamePathParslet({ + allowJsdocNamePaths: false, + pathGrammar + }), + createKeyValueParslet({ + allowKeyTypes: false, + allowOptional: true, + allowReadonly: true + }), + intersectionParslet, + predicateParslet + ]; + const parsers = { jsdoc: new Parser({ grammar: jsdocGrammar @@ -1570,7 +1506,7 @@ }) }; /** - * This function parses the given expression in the given mode and produces a {@link ParseResult}. + * This function parses the given expression in the given mode and produces a {@link RootResult}. * @param expression * @param mode */ @@ -1579,7 +1515,7 @@ } /** * This function tries to parse the given expression in multiple modes and returns the first successful - * {@link ParseResult}. By default it tries `'typescript'`, `'closure'` and `'jsdoc'` in this order. If + * {@link RootResult}. By default it tries `'typescript'`, `'closure'` and `'jsdoc'` in this order. If * no mode was successful it throws the error that was produced by the last parsing attempt. * @param expression * @param modes @@ -1672,8 +1608,18 @@ ? '...' : applyPosition(result.meta.position, transform(result.element), '...'), JsdocTypeNamePath: (result, transform) => { - const joiner = result.pathType === 'inner' ? '~' : result.pathType === 'instance' ? '#' : '.'; - return `${transform(result.left)}${joiner}${transform(result.right)}`; + const left = transform(result.left); + const right = transform(result.right); + switch (result.pathType) { + case 'inner': + return `${left}~${right}`; + case 'instance': + return `${left}#${right}`; + case 'property': + return `${left}.${right}`; + case 'property-brackets': + return `${left}[${right}]`; + } }, JsdocTypeStringValue: result => quote(result.value, result.meta.quote), JsdocTypeAny: () => '*', @@ -1727,7 +1673,8 @@ JsdocTypeUnion: (result, transform) => result.elements.map(transform).join(' | '), JsdocTypeUnknown: () => '?', JsdocTypeIntersection: (result, transform) => result.elements.map(transform).join(' & '), - JsdocTypeProperty: result => result.value + JsdocTypeProperty: result => quote(result.value, result.meta.quote), + JsdocTypePredicate: (result, transform) => `${transform(result.left)} is ${transform(result.right)}` }; } const storedStringifyRules = stringifyRules(); @@ -1901,7 +1848,7 @@ rightValue = transform(result.right).name; } else { - rightValue = result.right.value; + rightValue = quote(result.right.value, result.right.meta.quote); } const joiner = result.pathType === 'inner' ? '~' : result.pathType === 'instance' ? '#' : '.'; return makeName(`${leftResult.name}${joiner}${rightValue}`); @@ -1930,13 +1877,14 @@ } return makeName(`${result.value}(${value})`); }, - JsdocTypeParenthesis: (result, transform) => transform(assertTerminal(result.element)), + JsdocTypeParenthesis: (result, transform) => transform(assertRootResult(result.element)), JsdocTypeImport: notAvailableTransform, JsdocTypeKeyof: notAvailableTransform, JsdocTypeTuple: notAvailableTransform, JsdocTypeTypeof: notAvailableTransform, JsdocTypeIntersection: notAvailableTransform, - JsdocTypeProperty: notAvailableTransform + JsdocTypeProperty: notAvailableTransform, + JsdocTypePredicate: notAvailableTransform }; function catharsisTransform(result) { return transform(catharsisTransformRules, result); @@ -1960,6 +1908,8 @@ return 'INSTANCE_MEMBER'; case 'property': return 'MEMBER'; + case 'property-brackets': + return 'MEMBER'; } } function nestResults(type, results) { @@ -2164,18 +2114,8 @@ quoteStyle = getQuoteStyle(result.right.meta.quote); } else { - let quote; - let value = result.right.value; - if (value[0] === '\'') { - quote = 'single'; - value = value.slice(1, -1); - } - else if (value[0] === '"') { - quote = 'double'; - value = value.slice(1, -1); - } - name = `${value}`; - quoteStyle = getQuoteStyle(quote); + name = result.right.value; + quoteStyle = getQuoteStyle(result.right.meta.quote); } const transformed = { type: getMemberType(result.pathType), @@ -2197,7 +2137,7 @@ JsdocTypeUnion: (result, transform) => nestResults('UNION', result.elements.map(transform)), JsdocTypeParenthesis: (result, transform) => ({ type: 'PARENTHESIS', - value: transform(assertTerminal(result.element)) + value: transform(assertRootResult(result.element)) }), JsdocTypeNull: () => ({ type: 'NAME', @@ -2217,7 +2157,8 @@ number: result.value.toString() }), JsdocTypeSymbol: notAvailableTransform, - JsdocTypeProperty: notAvailableTransform + JsdocTypeProperty: notAvailableTransform, + JsdocTypePredicate: notAvailableTransform }; function jtpTransform(result) { return transform(jtpRules, result); @@ -2348,7 +2289,12 @@ type: 'JsdocTypeParenthesis', element: transform(result.element) }), - JsdocTypeProperty: result => result + JsdocTypeProperty: result => result, + JsdocTypePredicate: (result, transform) => ({ + type: 'JsdocTypePredicate', + left: transform(result.left), + right: transform(result.right) + }) }; } @@ -2378,7 +2324,8 @@ JsdocTypeUnion: ['elements'], JsdocTypeUnknown: [], JsdocTypeVariadic: ['element'], - JsdocTypeProperty: [] + JsdocTypeProperty: [], + JsdocTypePredicate: ['left', 'right'] }; function _traverse(node, parentNode, property, onEnter, onLeave) { @@ -2401,6 +2348,12 @@ } onLeave === null || onLeave === void 0 ? void 0 : onLeave(node, parentNode, property); } + /** + * A function to traverse an AST. It traverses it depth first. + * @param node the node to start traversing at. + * @param onEnter node visitor function that will be called on entering the node. This corresponds to preorder traversing. + * @param onLeave node visitor function that will be called on leaving the node. This corresponds to postorder traversing. + */ function traverse(node, onEnter, onLeave) { _traverse(node, undefined, undefined, onEnter, onLeave); } @@ -2418,4 +2371,4 @@ Object.defineProperty(exports, '__esModule', { value: true }); -}))); +})); diff --git a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json index 03ed16b1a52d7c..53709687b0b524 100644 --- a/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json +++ b/tools/node_modules/eslint/node_modules/jsdoc-type-pratt-parser/package.json @@ -1,6 +1,6 @@ { "name": "jsdoc-type-pratt-parser", - "version": "2.0.2", + "version": "2.2.2", "description": "", "main": "dist/index.js", "types": "dist/src/index.d.ts", @@ -15,10 +15,11 @@ "lint": "ts-standard", "typecheck": "tsc --noEmit", "build": "rollup -c", - "apidoc": "typedoc src/index.ts --out docs", + "apidoc": "typedoc --options typedoc.json", "preversion": "npm test", "prepublishOnly": "npm run build", - "semantic-release": "semantic-release" + "semantic-release": "semantic-release", + "benchmark": "npm run build && node benchmark/benchmark.js" }, "author": "Simon Seyock (https://github.com/simonseyock)", "contributors": [ @@ -29,30 +30,32 @@ "node": ">=12.0.0" }, "devDependencies": { - "@rollup/plugin-typescript": "^8.1.1", - "@semantic-release/changelog": "^5.0.1", - "@semantic-release/git": "^9.0.0", - "@types/chai": "^4.2.14", - "@types/mocha": "^8.2.0", - "@types/node": "^14.14.31", - "@types/sinon": "^10.0.0", - "@types/sinon-chai": "^3.2.5", + "@rollup/plugin-typescript": "^8.3.0", + "@semantic-release/changelog": "^6.0.1", + "@semantic-release/git": "^10.0.1", + "@types/chai": "^4.3.0", + "@types/mocha": "^9.0.0", + "@types/node": "^17.0.5", + "@types/sinon": "^10.0.6", + "@types/sinon-chai": "^3.2.7", "benchmark": "^2.1.4", "catharsis": "^0.9.0", - "chai": "^4.3.0", - "coveralls": "^3.1.0", - "eslint-config-standard-with-typescript": "^20.0.0", + "chai": "^4.3.4", + "coveralls": "^3.1.1", + "eslint-config-standard-with-typescript": "^21.0.1", "jsdoctypeparser": "^9.0.0", - "mocha": "^8.2.1", + "mocha": "^9.1.3", + "npm-upgrade": "^3.0.0", "nyc": "^15.1.0", - "rollup": "^2.39.0", - "semantic-release": "^17.4.3", - "sinon": "^10.0.0", + "rollup": "^2.62.0", + "semantic-release": "^18.0.1", + "sinon": "^12.0.1", "sinon-chai": "^3.7.0", - "ts-node": "^9.1.1", - "ts-standard": "^10.0.0", - "typedoc": "^0.20.24", - "typescript": "^4.1.3" + "ts-node": "^10.4.0", + "ts-standard": "^11.0.0", + "typedoc": "^0.22.10", + "typedoc-plugin-merge-modules": "^3.1.0", + "typescript": "^4.5.4" }, "ts-standard": { "ignore": [ @@ -95,6 +98,5 @@ }, "publishConfig": { "access": "public" - }, - "dependencies": {} + } } diff --git a/tools/node_modules/eslint/node_modules/progress/Makefile b/tools/node_modules/eslint/node_modules/progress/Makefile deleted file mode 100644 index f933be10a1976f..00000000000000 --- a/tools/node_modules/eslint/node_modules/progress/Makefile +++ /dev/null @@ -1,8 +0,0 @@ - -EXAMPLES = $(foreach EXAMPLE, $(wildcard examples/*.js), $(EXAMPLE)) - -.PHONY: test -test: $(EXAMPLES) - -.PHONY: $(EXAMPLES) -$(EXAMPLES): ; node $@ && echo diff --git a/tools/node_modules/eslint/node_modules/progress/Readme.md b/tools/node_modules/eslint/node_modules/progress/Readme.md deleted file mode 100644 index 6d4271abc950cb..00000000000000 --- a/tools/node_modules/eslint/node_modules/progress/Readme.md +++ /dev/null @@ -1,146 +0,0 @@ -Flexible ascii progress bar. - -## Installation - -```bash -$ npm install progress -``` - -## Usage - -First we create a `ProgressBar`, giving it a format string -as well as the `total`, telling the progress bar when it will -be considered complete. After that all we need to do is `tick()` appropriately. - -```javascript -var ProgressBar = require('progress'); - -var bar = new ProgressBar(':bar', { total: 10 }); -var timer = setInterval(function () { - bar.tick(); - if (bar.complete) { - console.log('\ncomplete\n'); - clearInterval(timer); - } -}, 100); -``` - -### Options - -These are keys in the options object you can pass to the progress bar along with -`total` as seen in the example above. - -- `curr` current completed index -- `total` total number of ticks to complete -- `width` the displayed width of the progress bar defaulting to total -- `stream` the output stream defaulting to stderr -- `head` head character defaulting to complete character -- `complete` completion character defaulting to "=" -- `incomplete` incomplete character defaulting to "-" -- `renderThrottle` minimum time between updates in milliseconds defaulting to 16 -- `clear` option to clear the bar on completion defaulting to false -- `callback` optional function to call when the progress bar completes - -### Tokens - -These are tokens you can use in the format of your progress bar. - -- `:bar` the progress bar itself -- `:current` current tick number -- `:total` total ticks -- `:elapsed` time elapsed in seconds -- `:percent` completion percentage -- `:eta` estimated completion time in seconds -- `:rate` rate of ticks per second - -### Custom Tokens - -You can define custom tokens by adding a `{'name': value}` object parameter to your method (`tick()`, `update()`, etc.) calls. - -```javascript -var bar = new ProgressBar(':current: :token1 :token2', { total: 3 }) -bar.tick({ - 'token1': "Hello", - 'token2': "World!\n" -}) -bar.tick(2, { - 'token1': "Goodbye", - 'token2': "World!" -}) -``` -The above example would result in the output below. - -``` -1: Hello World! -3: Goodbye World! -``` - -## Examples - -### Download - -In our download example each tick has a variable influence, so we pass the chunk -length which adjusts the progress bar appropriately relative to the total -length. - -```javascript -var ProgressBar = require('progress'); -var https = require('https'); - -var req = https.request({ - host: 'download.github.com', - port: 443, - path: '/visionmedia-node-jscoverage-0d4608a.zip' -}); - -req.on('response', function(res){ - var len = parseInt(res.headers['content-length'], 10); - - console.log(); - var bar = new ProgressBar(' downloading [:bar] :rate/bps :percent :etas', { - complete: '=', - incomplete: ' ', - width: 20, - total: len - }); - - res.on('data', function (chunk) { - bar.tick(chunk.length); - }); - - res.on('end', function () { - console.log('\n'); - }); -}); - -req.end(); -``` - -The above example result in a progress bar like the one below. - -``` -downloading [===== ] 39/bps 29% 3.7s -``` - -### Interrupt - -To display a message during progress bar execution, use `interrupt()` -```javascript -var ProgressBar = require('progress'); - -var bar = new ProgressBar(':bar :current/:total', { total: 10 }); -var timer = setInterval(function () { - bar.tick(); - if (bar.complete) { - clearInterval(timer); - } else if (bar.curr === 5) { - bar.interrupt('this message appears above the progress bar\ncurrent progress is ' + bar.curr + '/' + bar.total); - } -}, 1000); -``` - -You can see more examples in the `examples` folder. - -## License - -MIT diff --git a/tools/node_modules/eslint/node_modules/progress/index.js b/tools/node_modules/eslint/node_modules/progress/index.js deleted file mode 100644 index 4449dd30d7e7ad..00000000000000 --- a/tools/node_modules/eslint/node_modules/progress/index.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./lib/node-progress'); diff --git a/tools/node_modules/eslint/node_modules/progress/lib/node-progress.js b/tools/node_modules/eslint/node_modules/progress/lib/node-progress.js deleted file mode 100644 index 8eb0740a721c67..00000000000000 --- a/tools/node_modules/eslint/node_modules/progress/lib/node-progress.js +++ /dev/null @@ -1,236 +0,0 @@ -/*! - * node-progress - * Copyright(c) 2011 TJ Holowaychuk - * MIT Licensed - */ - -/** - * Expose `ProgressBar`. - */ - -exports = module.exports = ProgressBar; - -/** - * Initialize a `ProgressBar` with the given `fmt` string and `options` or - * `total`. - * - * Options: - * - * - `curr` current completed index - * - `total` total number of ticks to complete - * - `width` the displayed width of the progress bar defaulting to total - * - `stream` the output stream defaulting to stderr - * - `head` head character defaulting to complete character - * - `complete` completion character defaulting to "=" - * - `incomplete` incomplete character defaulting to "-" - * - `renderThrottle` minimum time between updates in milliseconds defaulting to 16 - * - `callback` optional function to call when the progress bar completes - * - `clear` will clear the progress bar upon termination - * - * Tokens: - * - * - `:bar` the progress bar itself - * - `:current` current tick number - * - `:total` total ticks - * - `:elapsed` time elapsed in seconds - * - `:percent` completion percentage - * - `:eta` eta in seconds - * - `:rate` rate of ticks per second - * - * @param {string} fmt - * @param {object|number} options or total - * @api public - */ - -function ProgressBar(fmt, options) { - this.stream = options.stream || process.stderr; - - if (typeof(options) == 'number') { - var total = options; - options = {}; - options.total = total; - } else { - options = options || {}; - if ('string' != typeof fmt) throw new Error('format required'); - if ('number' != typeof options.total) throw new Error('total required'); - } - - this.fmt = fmt; - this.curr = options.curr || 0; - this.total = options.total; - this.width = options.width || this.total; - this.clear = options.clear - this.chars = { - complete : options.complete || '=', - incomplete : options.incomplete || '-', - head : options.head || (options.complete || '=') - }; - this.renderThrottle = options.renderThrottle !== 0 ? (options.renderThrottle || 16) : 0; - this.lastRender = -Infinity; - this.callback = options.callback || function () {}; - this.tokens = {}; - this.lastDraw = ''; -} - -/** - * "tick" the progress bar with optional `len` and optional `tokens`. - * - * @param {number|object} len or tokens - * @param {object} tokens - * @api public - */ - -ProgressBar.prototype.tick = function(len, tokens){ - if (len !== 0) - len = len || 1; - - // swap tokens - if ('object' == typeof len) tokens = len, len = 1; - if (tokens) this.tokens = tokens; - - // start time for eta - if (0 == this.curr) this.start = new Date; - - this.curr += len - - // try to render - this.render(); - - // progress complete - if (this.curr >= this.total) { - this.render(undefined, true); - this.complete = true; - this.terminate(); - this.callback(this); - return; - } -}; - -/** - * Method to render the progress bar with optional `tokens` to place in the - * progress bar's `fmt` field. - * - * @param {object} tokens - * @api public - */ - -ProgressBar.prototype.render = function (tokens, force) { - force = force !== undefined ? force : false; - if (tokens) this.tokens = tokens; - - if (!this.stream.isTTY) return; - - var now = Date.now(); - var delta = now - this.lastRender; - if (!force && (delta < this.renderThrottle)) { - return; - } else { - this.lastRender = now; - } - - var ratio = this.curr / this.total; - ratio = Math.min(Math.max(ratio, 0), 1); - - var percent = Math.floor(ratio * 100); - var incomplete, complete, completeLength; - var elapsed = new Date - this.start; - var eta = (percent == 100) ? 0 : elapsed * (this.total / this.curr - 1); - var rate = this.curr / (elapsed / 1000); - - /* populate the bar template with percentages and timestamps */ - var str = this.fmt - .replace(':current', this.curr) - .replace(':total', this.total) - .replace(':elapsed', isNaN(elapsed) ? '0.0' : (elapsed / 1000).toFixed(1)) - .replace(':eta', (isNaN(eta) || !isFinite(eta)) ? '0.0' : (eta / 1000) - .toFixed(1)) - .replace(':percent', percent.toFixed(0) + '%') - .replace(':rate', Math.round(rate)); - - /* compute the available space (non-zero) for the bar */ - var availableSpace = Math.max(0, this.stream.columns - str.replace(':bar', '').length); - if(availableSpace && process.platform === 'win32'){ - availableSpace = availableSpace - 1; - } - - var width = Math.min(this.width, availableSpace); - - /* TODO: the following assumes the user has one ':bar' token */ - completeLength = Math.round(width * ratio); - complete = Array(Math.max(0, completeLength + 1)).join(this.chars.complete); - incomplete = Array(Math.max(0, width - completeLength + 1)).join(this.chars.incomplete); - - /* add head to the complete string */ - if(completeLength > 0) - complete = complete.slice(0, -1) + this.chars.head; - - /* fill in the actual progress bar */ - str = str.replace(':bar', complete + incomplete); - - /* replace the extra tokens */ - if (this.tokens) for (var key in this.tokens) str = str.replace(':' + key, this.tokens[key]); - - if (this.lastDraw !== str) { - this.stream.cursorTo(0); - this.stream.write(str); - this.stream.clearLine(1); - this.lastDraw = str; - } -}; - -/** - * "update" the progress bar to represent an exact percentage. - * The ratio (between 0 and 1) specified will be multiplied by `total` and - * floored, representing the closest available "tick." For example, if a - * progress bar has a length of 3 and `update(0.5)` is called, the progress - * will be set to 1. - * - * A ratio of 0.5 will attempt to set the progress to halfway. - * - * @param {number} ratio The ratio (between 0 and 1 inclusive) to set the - * overall completion to. - * @api public - */ - -ProgressBar.prototype.update = function (ratio, tokens) { - var goal = Math.floor(ratio * this.total); - var delta = goal - this.curr; - - this.tick(delta, tokens); -}; - -/** - * "interrupt" the progress bar and write a message above it. - * @param {string} message The message to write. - * @api public - */ - -ProgressBar.prototype.interrupt = function (message) { - // clear the current line - this.stream.clearLine(); - // move the cursor to the start of the line - this.stream.cursorTo(0); - // write the message text - this.stream.write(message); - // terminate the line after writing the message - this.stream.write('\n'); - // re-display the progress bar with its lastDraw - this.stream.write(this.lastDraw); -}; - -/** - * Terminates a progress bar. - * - * @api public - */ - -ProgressBar.prototype.terminate = function () { - if (this.clear) { - if (this.stream.clearLine) { - this.stream.clearLine(); - this.stream.cursorTo(0); - } - } else { - this.stream.write('\n'); - } -}; diff --git a/tools/node_modules/eslint/node_modules/progress/package.json b/tools/node_modules/eslint/node_modules/progress/package.json deleted file mode 100644 index bb81fa0bcd2b1d..00000000000000 --- a/tools/node_modules/eslint/node_modules/progress/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "progress", - "version": "2.0.3", - "description": "Flexible ascii progress bar", - "repository": { - "type": "git", - "url": "git://github.com/visionmedia/node-progress" - }, - "keywords": [ - "cli", - "progress" - ], - "author": "TJ Holowaychuk ", - "contributors": [ - "Christoffer Hallas ", - "Jordan Scales ", - "Andrew Rhyne ", - "Marco Brack " - ], - "dependencies": {}, - "main": "./index.js", - "engines": { - "node": ">=0.4.0" - }, - "license": "MIT" -} diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index 0af5d7a5c33830..3af768b765f1bd 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.6.0", + "version": "8.7.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -54,11 +54,10 @@ "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", - "enquirer": "^2.3.5", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.1.0", "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.1.0", + "eslint-visitor-keys": "^3.2.0", "espree": "^9.3.0", "esquery": "^1.4.0", "esutils": "^2.0.2", @@ -67,7 +66,7 @@ "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", "globals": "^13.6.0", - "ignore": "^4.0.6", + "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", @@ -78,9 +77,7 @@ "minimatch": "^3.0.4", "natural-compare": "^1.4.0", "optionator": "^0.9.1", - "progress": "^2.0.0", "regexpp": "^3.2.0", - "semver": "^7.2.1", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", "text-table": "^0.2.0", @@ -123,10 +120,12 @@ "node-polyfill-webpack-plugin": "^1.0.3", "npm-license": "^0.3.3", "nyc": "^15.0.1", + "progress": "^2.0.3", "proxyquire": "^2.0.1", "puppeteer": "^9.1.1", "recast": "^0.20.4", "regenerator-runtime": "^0.13.2", + "semver": "^7.3.5", "shelljs": "^0.8.2", "sinon": "^11.0.0", "temp": "^0.9.0", From c4f5a4939aed778eaea30aaa14ef442f570afdd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 16 Jan 2022 04:51:23 +0100 Subject: [PATCH 032/161] doc: do not reference SSL when discussing SNI Co-authored-by: Rich Trott PR-URL: https://github.com/nodejs/node/pull/41549 Reviewed-By: Rich Trott Reviewed-By: James M Snell --- doc/api/tls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/tls.md b/doc/api/tls.md index dfa7eb1d3fbb0e..de85421deb570b 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -115,7 +115,7 @@ SNI (Server Name Indication) are TLS handshake extensions: * ALPN: Allows the use of one TLS server for multiple protocols (HTTP, HTTP/2) * SNI: Allows the use of one TLS server for multiple hostnames with different - SSL certificates. + certificates. ### Pre-shared keys From 331b90619599cb0a8f1e6dd05834bf23b6d3050a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Tue, 18 Jan 2022 11:37:54 +0100 Subject: [PATCH 033/161] build: fix npm version detection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Npm's package.json now contains two fields named "version". Grep for the top-level one. Fixes: https://github.com/nodejs/build/issues/2850 PR-URL: https://github.com/nodejs/node/pull/41575 Reviewed-By: Antoine du Hamel Reviewed-By: Vladimir de Turckheim Reviewed-By: Filip Skokan Reviewed-By: Evan Lucas Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Zijian Liu Reviewed-By: Matteo Collina Reviewed-By: Christian Clauss Reviewed-By: Tobias Nießen --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2ffd0652a6696..cc455e39ecbdb5 100644 --- a/Makefile +++ b/Makefile @@ -830,7 +830,7 @@ PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]') ifeq ($(findstring os/390,$PLATFORM),os/390) PLATFORM ?= os390 endif -NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/') +NPMVERSION=v$(shell cat deps/npm/package.json | grep '^ "version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/') UNAME_M=$(shell uname -m) ifeq ($(findstring x86_64,$(UNAME_M)),x86_64) From eceb2e75d89212fca96277e0681bd404bbcf6077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 16 Jan 2022 15:09:15 +0100 Subject: [PATCH 034/161] doc: make Web Crypto example spec compliant subtle.sign is not supposed to support strings, and in most Web Crypto implementations, it does not. Passing a string as the 'data' argument only works in Node.js, and users should not rely on that oddity. The Web Crypto spec requires the data argument to be a BufferSource, i.e., an ArrayBuffer or an ArrayBufferView. PR-URL: https://github.com/nodejs/node/pull/41556 Reviewed-By: James M Snell Reviewed-By: Antoine du Hamel Reviewed-By: Luigi Pinca Reviewed-By: Benjamin Gruenbaum Reviewed-By: Filip Skokan Reviewed-By: Colin Ihrig --- doc/api/webcrypto.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index 43290395bc6d2a..8aa0c77a3736ae 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -19,9 +19,12 @@ const { subtle } = require('crypto').webcrypto; length: 256 }, true, ['sign', 'verify']); + const enc = new TextEncoder(); + const message = enc.encode('I love cupcakes'); + const digest = await subtle.sign({ name: 'HMAC' - }, key, 'I love cupcakes'); + }, key, message); })(); ``` From cc97ea5df611695e9f00a455b8e3f6d8a27886d0 Mon Sep 17 00:00:00 2001 From: "Node.js GitHub Bot" Date: Sat, 8 Jan 2022 00:15:54 +0000 Subject: [PATCH 035/161] tools: update lint-md-dependencies Update to @rollup/plugin-node-resolve@13.1.3, rollup@2.64.0, and to-vfile@7.2.3. PR-URL: https://github.com/nodejs/node/pull/41440 Reviewed-By: Rich Trott Reviewed-By: James M Snell --- tools/lint-md/lint-md.mjs | 343 +++++++++++++++++++++++++++++--- tools/lint-md/package-lock.json | 218 ++++++++++---------- tools/lint-md/package.json | 6 +- 3 files changed, 430 insertions(+), 137 deletions(-) diff --git a/tools/lint-md/lint-md.mjs b/tools/lint-md/lint-md.mjs index 61b088b8c6379c..b54fc15cbe2260 100644 --- a/tools/lint-md/lint-md.mjs +++ b/tools/lint-md/lint-md.mjs @@ -20706,35 +20706,317 @@ function stripAnsi(string) { return string.replace(ansiRegex(), ''); } -function isFullwidthCodePoint(codePoint) { - if (!Number.isInteger(codePoint)) { - return false; - } - return codePoint >= 0x1100 && ( - codePoint <= 0x115F || - codePoint === 0x2329 || - codePoint === 0x232A || - (0x2E80 <= codePoint && codePoint <= 0x3247 && codePoint !== 0x303F) || - (0x3250 <= codePoint && codePoint <= 0x4DBF) || - (0x4E00 <= codePoint && codePoint <= 0xA4C6) || - (0xA960 <= codePoint && codePoint <= 0xA97C) || - (0xAC00 <= codePoint && codePoint <= 0xD7A3) || - (0xF900 <= codePoint && codePoint <= 0xFAFF) || - (0xFE10 <= codePoint && codePoint <= 0xFE19) || - (0xFE30 <= codePoint && codePoint <= 0xFE6B) || - (0xFF01 <= codePoint && codePoint <= 0xFF60) || - (0xFFE0 <= codePoint && codePoint <= 0xFFE6) || - (0x1B000 <= codePoint && codePoint <= 0x1B001) || - (0x1F200 <= codePoint && codePoint <= 0x1F251) || - (0x20000 <= codePoint && codePoint <= 0x3FFFD) - ); +var eastasianwidth = {exports: {}}; + +(function (module) { +var eaw = {}; +{ + module.exports = eaw; +} +eaw.eastAsianWidth = function(character) { + var x = character.charCodeAt(0); + var y = (character.length == 2) ? character.charCodeAt(1) : 0; + var codePoint = x; + if ((0xD800 <= x && x <= 0xDBFF) && (0xDC00 <= y && y <= 0xDFFF)) { + x &= 0x3FF; + y &= 0x3FF; + codePoint = (x << 10) | y; + codePoint += 0x10000; + } + if ((0x3000 == codePoint) || + (0xFF01 <= codePoint && codePoint <= 0xFF60) || + (0xFFE0 <= codePoint && codePoint <= 0xFFE6)) { + return 'F'; + } + if ((0x20A9 == codePoint) || + (0xFF61 <= codePoint && codePoint <= 0xFFBE) || + (0xFFC2 <= codePoint && codePoint <= 0xFFC7) || + (0xFFCA <= codePoint && codePoint <= 0xFFCF) || + (0xFFD2 <= codePoint && codePoint <= 0xFFD7) || + (0xFFDA <= codePoint && codePoint <= 0xFFDC) || + (0xFFE8 <= codePoint && codePoint <= 0xFFEE)) { + return 'H'; + } + if ((0x1100 <= codePoint && codePoint <= 0x115F) || + (0x11A3 <= codePoint && codePoint <= 0x11A7) || + (0x11FA <= codePoint && codePoint <= 0x11FF) || + (0x2329 <= codePoint && codePoint <= 0x232A) || + (0x2E80 <= codePoint && codePoint <= 0x2E99) || + (0x2E9B <= codePoint && codePoint <= 0x2EF3) || + (0x2F00 <= codePoint && codePoint <= 0x2FD5) || + (0x2FF0 <= codePoint && codePoint <= 0x2FFB) || + (0x3001 <= codePoint && codePoint <= 0x303E) || + (0x3041 <= codePoint && codePoint <= 0x3096) || + (0x3099 <= codePoint && codePoint <= 0x30FF) || + (0x3105 <= codePoint && codePoint <= 0x312D) || + (0x3131 <= codePoint && codePoint <= 0x318E) || + (0x3190 <= codePoint && codePoint <= 0x31BA) || + (0x31C0 <= codePoint && codePoint <= 0x31E3) || + (0x31F0 <= codePoint && codePoint <= 0x321E) || + (0x3220 <= codePoint && codePoint <= 0x3247) || + (0x3250 <= codePoint && codePoint <= 0x32FE) || + (0x3300 <= codePoint && codePoint <= 0x4DBF) || + (0x4E00 <= codePoint && codePoint <= 0xA48C) || + (0xA490 <= codePoint && codePoint <= 0xA4C6) || + (0xA960 <= codePoint && codePoint <= 0xA97C) || + (0xAC00 <= codePoint && codePoint <= 0xD7A3) || + (0xD7B0 <= codePoint && codePoint <= 0xD7C6) || + (0xD7CB <= codePoint && codePoint <= 0xD7FB) || + (0xF900 <= codePoint && codePoint <= 0xFAFF) || + (0xFE10 <= codePoint && codePoint <= 0xFE19) || + (0xFE30 <= codePoint && codePoint <= 0xFE52) || + (0xFE54 <= codePoint && codePoint <= 0xFE66) || + (0xFE68 <= codePoint && codePoint <= 0xFE6B) || + (0x1B000 <= codePoint && codePoint <= 0x1B001) || + (0x1F200 <= codePoint && codePoint <= 0x1F202) || + (0x1F210 <= codePoint && codePoint <= 0x1F23A) || + (0x1F240 <= codePoint && codePoint <= 0x1F248) || + (0x1F250 <= codePoint && codePoint <= 0x1F251) || + (0x20000 <= codePoint && codePoint <= 0x2F73F) || + (0x2B740 <= codePoint && codePoint <= 0x2FFFD) || + (0x30000 <= codePoint && codePoint <= 0x3FFFD)) { + return 'W'; + } + if ((0x0020 <= codePoint && codePoint <= 0x007E) || + (0x00A2 <= codePoint && codePoint <= 0x00A3) || + (0x00A5 <= codePoint && codePoint <= 0x00A6) || + (0x00AC == codePoint) || + (0x00AF == codePoint) || + (0x27E6 <= codePoint && codePoint <= 0x27ED) || + (0x2985 <= codePoint && codePoint <= 0x2986)) { + return 'Na'; + } + if ((0x00A1 == codePoint) || + (0x00A4 == codePoint) || + (0x00A7 <= codePoint && codePoint <= 0x00A8) || + (0x00AA == codePoint) || + (0x00AD <= codePoint && codePoint <= 0x00AE) || + (0x00B0 <= codePoint && codePoint <= 0x00B4) || + (0x00B6 <= codePoint && codePoint <= 0x00BA) || + (0x00BC <= codePoint && codePoint <= 0x00BF) || + (0x00C6 == codePoint) || + (0x00D0 == codePoint) || + (0x00D7 <= codePoint && codePoint <= 0x00D8) || + (0x00DE <= codePoint && codePoint <= 0x00E1) || + (0x00E6 == codePoint) || + (0x00E8 <= codePoint && codePoint <= 0x00EA) || + (0x00EC <= codePoint && codePoint <= 0x00ED) || + (0x00F0 == codePoint) || + (0x00F2 <= codePoint && codePoint <= 0x00F3) || + (0x00F7 <= codePoint && codePoint <= 0x00FA) || + (0x00FC == codePoint) || + (0x00FE == codePoint) || + (0x0101 == codePoint) || + (0x0111 == codePoint) || + (0x0113 == codePoint) || + (0x011B == codePoint) || + (0x0126 <= codePoint && codePoint <= 0x0127) || + (0x012B == codePoint) || + (0x0131 <= codePoint && codePoint <= 0x0133) || + (0x0138 == codePoint) || + (0x013F <= codePoint && codePoint <= 0x0142) || + (0x0144 == codePoint) || + (0x0148 <= codePoint && codePoint <= 0x014B) || + (0x014D == codePoint) || + (0x0152 <= codePoint && codePoint <= 0x0153) || + (0x0166 <= codePoint && codePoint <= 0x0167) || + (0x016B == codePoint) || + (0x01CE == codePoint) || + (0x01D0 == codePoint) || + (0x01D2 == codePoint) || + (0x01D4 == codePoint) || + (0x01D6 == codePoint) || + (0x01D8 == codePoint) || + (0x01DA == codePoint) || + (0x01DC == codePoint) || + (0x0251 == codePoint) || + (0x0261 == codePoint) || + (0x02C4 == codePoint) || + (0x02C7 == codePoint) || + (0x02C9 <= codePoint && codePoint <= 0x02CB) || + (0x02CD == codePoint) || + (0x02D0 == codePoint) || + (0x02D8 <= codePoint && codePoint <= 0x02DB) || + (0x02DD == codePoint) || + (0x02DF == codePoint) || + (0x0300 <= codePoint && codePoint <= 0x036F) || + (0x0391 <= codePoint && codePoint <= 0x03A1) || + (0x03A3 <= codePoint && codePoint <= 0x03A9) || + (0x03B1 <= codePoint && codePoint <= 0x03C1) || + (0x03C3 <= codePoint && codePoint <= 0x03C9) || + (0x0401 == codePoint) || + (0x0410 <= codePoint && codePoint <= 0x044F) || + (0x0451 == codePoint) || + (0x2010 == codePoint) || + (0x2013 <= codePoint && codePoint <= 0x2016) || + (0x2018 <= codePoint && codePoint <= 0x2019) || + (0x201C <= codePoint && codePoint <= 0x201D) || + (0x2020 <= codePoint && codePoint <= 0x2022) || + (0x2024 <= codePoint && codePoint <= 0x2027) || + (0x2030 == codePoint) || + (0x2032 <= codePoint && codePoint <= 0x2033) || + (0x2035 == codePoint) || + (0x203B == codePoint) || + (0x203E == codePoint) || + (0x2074 == codePoint) || + (0x207F == codePoint) || + (0x2081 <= codePoint && codePoint <= 0x2084) || + (0x20AC == codePoint) || + (0x2103 == codePoint) || + (0x2105 == codePoint) || + (0x2109 == codePoint) || + (0x2113 == codePoint) || + (0x2116 == codePoint) || + (0x2121 <= codePoint && codePoint <= 0x2122) || + (0x2126 == codePoint) || + (0x212B == codePoint) || + (0x2153 <= codePoint && codePoint <= 0x2154) || + (0x215B <= codePoint && codePoint <= 0x215E) || + (0x2160 <= codePoint && codePoint <= 0x216B) || + (0x2170 <= codePoint && codePoint <= 0x2179) || + (0x2189 == codePoint) || + (0x2190 <= codePoint && codePoint <= 0x2199) || + (0x21B8 <= codePoint && codePoint <= 0x21B9) || + (0x21D2 == codePoint) || + (0x21D4 == codePoint) || + (0x21E7 == codePoint) || + (0x2200 == codePoint) || + (0x2202 <= codePoint && codePoint <= 0x2203) || + (0x2207 <= codePoint && codePoint <= 0x2208) || + (0x220B == codePoint) || + (0x220F == codePoint) || + (0x2211 == codePoint) || + (0x2215 == codePoint) || + (0x221A == codePoint) || + (0x221D <= codePoint && codePoint <= 0x2220) || + (0x2223 == codePoint) || + (0x2225 == codePoint) || + (0x2227 <= codePoint && codePoint <= 0x222C) || + (0x222E == codePoint) || + (0x2234 <= codePoint && codePoint <= 0x2237) || + (0x223C <= codePoint && codePoint <= 0x223D) || + (0x2248 == codePoint) || + (0x224C == codePoint) || + (0x2252 == codePoint) || + (0x2260 <= codePoint && codePoint <= 0x2261) || + (0x2264 <= codePoint && codePoint <= 0x2267) || + (0x226A <= codePoint && codePoint <= 0x226B) || + (0x226E <= codePoint && codePoint <= 0x226F) || + (0x2282 <= codePoint && codePoint <= 0x2283) || + (0x2286 <= codePoint && codePoint <= 0x2287) || + (0x2295 == codePoint) || + (0x2299 == codePoint) || + (0x22A5 == codePoint) || + (0x22BF == codePoint) || + (0x2312 == codePoint) || + (0x2460 <= codePoint && codePoint <= 0x24E9) || + (0x24EB <= codePoint && codePoint <= 0x254B) || + (0x2550 <= codePoint && codePoint <= 0x2573) || + (0x2580 <= codePoint && codePoint <= 0x258F) || + (0x2592 <= codePoint && codePoint <= 0x2595) || + (0x25A0 <= codePoint && codePoint <= 0x25A1) || + (0x25A3 <= codePoint && codePoint <= 0x25A9) || + (0x25B2 <= codePoint && codePoint <= 0x25B3) || + (0x25B6 <= codePoint && codePoint <= 0x25B7) || + (0x25BC <= codePoint && codePoint <= 0x25BD) || + (0x25C0 <= codePoint && codePoint <= 0x25C1) || + (0x25C6 <= codePoint && codePoint <= 0x25C8) || + (0x25CB == codePoint) || + (0x25CE <= codePoint && codePoint <= 0x25D1) || + (0x25E2 <= codePoint && codePoint <= 0x25E5) || + (0x25EF == codePoint) || + (0x2605 <= codePoint && codePoint <= 0x2606) || + (0x2609 == codePoint) || + (0x260E <= codePoint && codePoint <= 0x260F) || + (0x2614 <= codePoint && codePoint <= 0x2615) || + (0x261C == codePoint) || + (0x261E == codePoint) || + (0x2640 == codePoint) || + (0x2642 == codePoint) || + (0x2660 <= codePoint && codePoint <= 0x2661) || + (0x2663 <= codePoint && codePoint <= 0x2665) || + (0x2667 <= codePoint && codePoint <= 0x266A) || + (0x266C <= codePoint && codePoint <= 0x266D) || + (0x266F == codePoint) || + (0x269E <= codePoint && codePoint <= 0x269F) || + (0x26BE <= codePoint && codePoint <= 0x26BF) || + (0x26C4 <= codePoint && codePoint <= 0x26CD) || + (0x26CF <= codePoint && codePoint <= 0x26E1) || + (0x26E3 == codePoint) || + (0x26E8 <= codePoint && codePoint <= 0x26FF) || + (0x273D == codePoint) || + (0x2757 == codePoint) || + (0x2776 <= codePoint && codePoint <= 0x277F) || + (0x2B55 <= codePoint && codePoint <= 0x2B59) || + (0x3248 <= codePoint && codePoint <= 0x324F) || + (0xE000 <= codePoint && codePoint <= 0xF8FF) || + (0xFE00 <= codePoint && codePoint <= 0xFE0F) || + (0xFFFD == codePoint) || + (0x1F100 <= codePoint && codePoint <= 0x1F10A) || + (0x1F110 <= codePoint && codePoint <= 0x1F12D) || + (0x1F130 <= codePoint && codePoint <= 0x1F169) || + (0x1F170 <= codePoint && codePoint <= 0x1F19A) || + (0xE0100 <= codePoint && codePoint <= 0xE01EF) || + (0xF0000 <= codePoint && codePoint <= 0xFFFFD) || + (0x100000 <= codePoint && codePoint <= 0x10FFFD)) { + return 'A'; + } + return 'N'; +}; +eaw.characterLength = function(character) { + var code = this.eastAsianWidth(character); + if (code == 'F' || code == 'W' || code == 'A') { + return 2; + } else { + return 1; + } +}; +function stringToArray(string) { + return string.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^\uD800-\uDFFF]/g) || []; } +eaw.length = function(string) { + var characters = stringToArray(string); + var len = 0; + for (var i = 0; i < characters.length; i++) { + len = len + this.characterLength(characters[i]); + } + return len; +}; +eaw.slice = function(text, start, end) { + textLen = eaw.length(text); + start = start ? start : 0; + end = end ? end : 1; + if (start < 0) { + start = textLen + start; + } + if (end < 0) { + end = textLen + end; + } + var result = ''; + var eawLen = 0; + var chars = stringToArray(text); + for (var i = 0; i < chars.length; i++) { + var char = chars[i]; + var charLen = eaw.length(char); + if (eawLen >= start - (charLen == 2 ? 1 : 0)) { + if (eawLen + charLen <= end) { + result += char; + } else { + break; + } + } + eawLen += charLen; + } + return result; +}; +}(eastasianwidth)); +var eastAsianWidth = eastasianwidth.exports; var emojiRegex = function () { return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\uD83D[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3])\uFE0F|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g; }; -function stringWidth(string) { +function stringWidth(string, options = {}) { if (typeof string !== 'string' || string.length === 0) { return 0; } @@ -20743,6 +21025,7 @@ function stringWidth(string) { return 0; } string = string.replace(emojiRegex(), ' '); + const ambiguousCharWidth = options.ambiguousIsNarrow ? 1 : 2; let width = 0; for (let index = 0; index < string.length; index++) { const codePoint = string.codePointAt(index); @@ -20752,10 +21035,18 @@ function stringWidth(string) { if (codePoint >= 0x300 && codePoint <= 0x36F) { continue; } - if (codePoint > 0xFFFF) { - index++; + const code = eastAsianWidth.eastAsianWidth(string.charAt(index)); + switch (code) { + case 'F': + case 'W': + width += 2; + break; + case 'A': + width += ambiguousCharWidth; + break; + default: + width += 1; } - width += isFullwidthCodePoint(codePoint) ? 2 : 1; } return width; } diff --git a/tools/lint-md/package-lock.json b/tools/lint-md/package-lock.json index fc2b33304d0f33..9e8248bd432977 100644 --- a/tools/lint-md/package-lock.json +++ b/tools/lint-md/package-lock.json @@ -11,14 +11,14 @@ "remark-parse": "^10.0.1", "remark-preset-lint-node": "^3.3.0", "remark-stringify": "^10.0.2", - "to-vfile": "^7.2.2", + "to-vfile": "^7.2.3", "unified": "^10.1.1", "vfile-reporter": "^7.0.3" }, "devDependencies": { "@rollup/plugin-commonjs": "^21.0.1", - "@rollup/plugin-node-resolve": "^13.1.2", - "rollup": "^2.62.0", + "@rollup/plugin-node-resolve": "^13.1.3", + "rollup": "^2.64.0", "rollup-plugin-cleanup": "^3.2.1" } }, @@ -44,9 +44,9 @@ } }, "node_modules/@rollup/plugin-node-resolve": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.2.tgz", - "integrity": "sha512-xyqbuf1vyOPC60jEKhx3DBHunymnCJswzjNTKfX4Jz7zCPar1UqbRZCNY1u5QaXh97beaFTWdoUUWiV4qX8o/g==", + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.3.tgz", + "integrity": "sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ==", "dev": true, "dependencies": { "@rollup/pluginutils": "^3.1.0", @@ -121,9 +121,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/node": { - "version": "17.0.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz", - "integrity": "sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==", + "version": "17.0.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz", + "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg==", "dev": true }, "node_modules/@types/resolve": { @@ -286,6 +286,11 @@ "node": ">=0.3.1" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -410,9 +415,9 @@ } }, "node_modules/is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, "dependencies": { "has": "^1.0.3" @@ -421,17 +426,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", @@ -1309,9 +1303,9 @@ } }, "node_modules/picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, "engines": { "node": ">=8.6" @@ -2171,22 +2165,26 @@ } }, "node_modules/resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", "dev": true, "dependencies": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/rollup": { - "version": "2.62.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.62.0.tgz", - "integrity": "sha512-cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw==", + "version": "2.64.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.64.0.tgz", + "integrity": "sha512-+c+lbw1lexBKSMb1yxGDVfJ+vchJH3qLbmavR+awDinTDA2C5Ug9u7lkOzj62SCu0PKUExsW36tpgW7Fmpn3yQ==", "dev": true, "bin": { "rollup": "dist/bin/rollup" @@ -2230,9 +2228,9 @@ "dev": true }, "node_modules/sade": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.0.tgz", - "integrity": "sha512-NRfCA8AVYuAA7Hu8bs18od6J4BdcXXwOv6OJuNgwbw8LcLK8JKwaM3WckLZ+MGyPJUS/ivVgK3twltrOIJJnug==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "dependencies": { "mri": "^1.1.0" }, @@ -2275,12 +2273,12 @@ "dev": true }, "node_modules/string-width": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.0.1.tgz", - "integrity": "sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.0.tgz", + "integrity": "sha512-7x54QnN21P+XL/v8SuNKvfgsUre6PXpN7mc77N3HlZv+f1SBRGmjxtOud2Z6FZ8DmdkD/IdjCaf9XXbnqmTZGQ==", "dependencies": { + "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", - "is-fullwidth-code-point": "^4.0.0", "strip-ansi": "^7.0.1" }, "engines": { @@ -2315,10 +2313,22 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/to-vfile": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.2.tgz", - "integrity": "sha512-7WL+coet3qyaYb5vrVrfLtOUHgNv9E1D5SIsyVKmHKcgZefy77WMQRk7FByqGKNInoHOlY6xkTGymo29AwjUKg==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.3.tgz", + "integrity": "sha512-QO0A9aE6Z/YkmQadJ0syxpmNXtcQiu0qAtCKYKD5cS3EfgfFTAXfgLX6AOaBrSfWSek5nfsMf3gBZ9KGVFcLuw==", "dependencies": { "is-buffer": "^2.0.0", "vfile": "^5.1.0" @@ -2328,14 +2338,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/totalist": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz", - "integrity": "sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ==", - "engines": { - "node": ">=6" - } - }, "node_modules/trough": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz", @@ -2489,15 +2491,14 @@ } }, "node_modules/uvu": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz", - "integrity": "sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz", + "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==", "dependencies": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", - "sade": "^1.7.3", - "totalist": "^2.0.0" + "sade": "^1.7.3" }, "bin": { "uvu": "bin.js" @@ -2507,9 +2508,9 @@ } }, "node_modules/vfile": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz", - "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.0.tgz", + "integrity": "sha512-Tj44nY/48OQvarrE4FAjUfrv7GZOYzPbl5OD65HxVKwLJKMPU7zmfV8cCgCnzKWnSfYG2f3pxu+ALqs7j22xQQ==", "dependencies": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", @@ -2635,9 +2636,9 @@ } }, "@rollup/plugin-node-resolve": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.2.tgz", - "integrity": "sha512-xyqbuf1vyOPC60jEKhx3DBHunymnCJswzjNTKfX4Jz7zCPar1UqbRZCNY1u5QaXh97beaFTWdoUUWiV4qX8o/g==", + "version": "13.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-13.1.3.tgz", + "integrity": "sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ==", "dev": true, "requires": { "@rollup/pluginutils": "^3.1.0", @@ -2702,9 +2703,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "@types/node": { - "version": "17.0.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz", - "integrity": "sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==", + "version": "17.0.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.8.tgz", + "integrity": "sha512-YofkM6fGv4gDJq78g4j0mMuGMkZVxZDgtU0JRdx6FgiJDG+0fY0GKVolOV8WqVmEhLCXkQRjwDdKyPxJp/uucg==", "dev": true }, "@types/resolve": { @@ -2822,6 +2823,11 @@ "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -2907,19 +2913,14 @@ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==" }, "is-core-module": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", - "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", "dev": true, "requires": { "has": "^1.0.3" } }, - "is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - }, "is-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", @@ -3469,9 +3470,9 @@ "dev": true }, "picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true }, "pluralize": { @@ -4133,19 +4134,20 @@ } }, "resolve": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", - "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.21.0.tgz", + "integrity": "sha512-3wCbTpk5WJlyE4mSOtDLhqQmGFi0/TD9VPwmiolnk8U0wRgMEktqCXd3vy5buTO3tljvalNvKrjHEfrd2WpEKA==", "dev": true, "requires": { - "is-core-module": "^2.2.0", - "path-parse": "^1.0.6" + "is-core-module": "^2.8.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, "rollup": { - "version": "2.62.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.62.0.tgz", - "integrity": "sha512-cJEQq2gwB0GWMD3rYImefQTSjrPYaC6s4J9pYqnstVLJ1CHa/aZNVkD4Epuvg4iLeMA4KRiq7UM7awKK6j7jcw==", + "version": "2.64.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.64.0.tgz", + "integrity": "sha512-+c+lbw1lexBKSMb1yxGDVfJ+vchJH3qLbmavR+awDinTDA2C5Ug9u7lkOzj62SCu0PKUExsW36tpgW7Fmpn3yQ==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -4179,9 +4181,9 @@ } }, "sade": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.0.tgz", - "integrity": "sha512-NRfCA8AVYuAA7Hu8bs18od6J4BdcXXwOv6OJuNgwbw8LcLK8JKwaM3WckLZ+MGyPJUS/ivVgK3twltrOIJJnug==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", + "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", "requires": { "mri": "^1.1.0" } @@ -4212,12 +4214,12 @@ "dev": true }, "string-width": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.0.1.tgz", - "integrity": "sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.0.tgz", + "integrity": "sha512-7x54QnN21P+XL/v8SuNKvfgsUre6PXpN7mc77N3HlZv+f1SBRGmjxtOud2Z6FZ8DmdkD/IdjCaf9XXbnqmTZGQ==", "requires": { + "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", - "is-fullwidth-code-point": "^4.0.0", "strip-ansi": "^7.0.1" } }, @@ -4234,20 +4236,21 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.2.1.tgz", "integrity": "sha512-Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ==" }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, "to-vfile": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.2.tgz", - "integrity": "sha512-7WL+coet3qyaYb5vrVrfLtOUHgNv9E1D5SIsyVKmHKcgZefy77WMQRk7FByqGKNInoHOlY6xkTGymo29AwjUKg==", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-7.2.3.tgz", + "integrity": "sha512-QO0A9aE6Z/YkmQadJ0syxpmNXtcQiu0qAtCKYKD5cS3EfgfFTAXfgLX6AOaBrSfWSek5nfsMf3gBZ9KGVFcLuw==", "requires": { "is-buffer": "^2.0.0", "vfile": "^5.1.0" } }, - "totalist": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz", - "integrity": "sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ==" - }, "trough": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/trough/-/trough-2.0.2.tgz", @@ -4357,21 +4360,20 @@ } }, "uvu": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.2.tgz", - "integrity": "sha512-m2hLe7I2eROhh+tm3WE5cTo/Cv3WQA7Oc9f7JB6uWv+/zVKvfAm53bMyOoGOSZeQ7Ov2Fu9pLhFr7p07bnT20w==", + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/uvu/-/uvu-0.5.3.tgz", + "integrity": "sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==", "requires": { "dequal": "^2.0.0", "diff": "^5.0.0", "kleur": "^4.0.3", - "sade": "^1.7.3", - "totalist": "^2.0.0" + "sade": "^1.7.3" } }, "vfile": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.2.1.tgz", - "integrity": "sha512-vXW5XKbELM6mLj88kmkJ+gjFGZ/2gTmpdqPDjs3y+qbvI5i7md7rba/+pbYEawa7t22W7ynywPV6lUUAS1WiYg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.0.tgz", + "integrity": "sha512-Tj44nY/48OQvarrE4FAjUfrv7GZOYzPbl5OD65HxVKwLJKMPU7zmfV8cCgCnzKWnSfYG2f3pxu+ALqs7j22xQQ==", "requires": { "@types/unist": "^2.0.0", "is-buffer": "^2.0.0", diff --git a/tools/lint-md/package.json b/tools/lint-md/package.json index 78c728ac4be828..3b0dad56a00624 100644 --- a/tools/lint-md/package.json +++ b/tools/lint-md/package.json @@ -9,14 +9,14 @@ "remark-parse": "^10.0.1", "remark-preset-lint-node": "^3.3.0", "remark-stringify": "^10.0.2", - "to-vfile": "^7.2.2", + "to-vfile": "^7.2.3", "unified": "^10.1.1", "vfile-reporter": "^7.0.3" }, "devDependencies": { "@rollup/plugin-commonjs": "^21.0.1", - "@rollup/plugin-node-resolve": "^13.1.2", - "rollup": "^2.62.0", + "@rollup/plugin-node-resolve": "^13.1.3", + "rollup": "^2.64.0", "rollup-plugin-cleanup": "^3.2.1" } } From 325b9473c03b2aaf28db44400a4093ed966a745b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 16 Jan 2022 15:09:58 +0100 Subject: [PATCH 036/161] 2022-01-18, Version 17.4.0 (Current) Notable changes: child_process: * (SEMVER-MINOR) add support for URL to `cp.fork` (Antoine du Hamel) https://github.com/nodejs/node/pull/41225 crypto: * (SEMVER-MINOR) alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) https://github.com/nodejs/node/pull/41266 doc: * add Mesteery to collaborators (Mestery) https://github.com/nodejs/node/pull/41543 events: * (SEMVER-MINOR) graduate capturerejections to supported (James M Snell) https://github.com/nodejs/node/pull/41267 * (SEMVER-MINOR) add EventEmitterAsyncResource to core (James M Snell) https://github.com/nodejs/node/pull/41246 loader: * (SEMVER-MINOR) return package format from defaultResolve if known (Gabriel Bota) https://github.com/nodejs/node/pull/40980 perf_hooks: * (SEMVER-MINOR) multiple fixes for Histogram (James M Snell) https://github.com/nodejs/node/pull/41153 stream: * (SEMVER-MINOR) add filter method to readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/41354 * (SEMVER-MINOR) add isReadable helper (Robert Nagy) https://github.com/nodejs/node/pull/41199 * (SEMVER-MINOR) add map method to Readable (Benjamin Gruenbaum, Robert Nagy) https://github.com/nodejs/node/pull/40815 PR-URL: https://github.com/nodejs/node/pull/41557 --- CHANGELOG.md | 3 +- doc/api/child_process.md | 2 +- doc/api/crypto.md | 4 +- doc/api/events.md | 8 +- doc/api/perf_hooks.md | 16 +-- doc/api/stream.md | 6 +- doc/changelogs/CHANGELOG_V17.md | 185 ++++++++++++++++++++++++++++++++ 7 files changed, 205 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eab7d242552d0e..47acaf0675e58b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,7 +33,8 @@ release.

-17.3.1
+17.4.0
+17.3.1
17.3.0
17.2.0
17.1.0
diff --git a/doc/api/child_process.md b/doc/api/child_process.md index c457ac8aa34c8e..31c8f506fc9bff 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -392,7 +392,7 @@ controller.abort(); added: v0.5.0 changes: - version: - - REPLACEME + - v17.4.0 pr-url: https://github.com/nodejs/node/pull/41225 description: The `modulePath` parameter can be a WHATWG `URL` object using `file:` protocol. diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 4dbccff3122d36..3efc08631e0b22 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -4064,7 +4064,7 @@ console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] ### `crypto.getRandomValues(typedArray)` * `typedArray` {Buffer|TypedArray|DataView|ArrayBuffer} @@ -5254,7 +5254,7 @@ If the `callback` function is provided this function uses libuv's threadpool. ### `crypto.subtle` * Type: {SubtleCrypto} diff --git a/doc/api/events.md b/doc/api/events.md index 817099643e2ba4..e16cadf879d9c9 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -740,7 +740,7 @@ added: - v13.4.0 - v12.16.0 changes: - - version: REPLACEME + - version: v17.4.0 pr-url: https://github.com/nodejs/node/pull/41267 description: No longer experimental. --> @@ -1029,7 +1029,7 @@ added: - v13.4.0 - v12.16.0 changes: - - version: REPLACEME + - version: v17.4.0 pr-url: https://github.com/nodejs/node/pull/41267 description: No longer experimental. --> @@ -1045,7 +1045,7 @@ added: - v13.4.0 - v12.16.0 changes: - - version: REPLACEME + - version: v17.4.0 pr-url: https://github.com/nodejs/node/pull/41267 description: No longer experimental. --> @@ -1173,7 +1173,7 @@ setMaxListeners(5, target, emitter); ## Class: `events.EventEmitterAsyncResource extends EventEmitter` Integrates `EventEmitter` with {AsyncResource} for `EventEmitter`s that diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index cbdd34bdb52830..fd7c2bbcd68729 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -874,7 +874,7 @@ added: v11.10.0 ### `histogram.count` * {number} @@ -884,7 +884,7 @@ The number of samples recorded by the histogram. ### `histogram.countBigInt` * {bigint} @@ -905,7 +905,7 @@ loop delay threshold. ### `histogram.exceedsBigInt` * {bigint} @@ -926,7 +926,7 @@ The maximum recorded event loop delay. ### `histogram.maxBigInt` * {bigint} @@ -956,7 +956,7 @@ The minimum recorded event loop delay. ### `histogram.minBigInt` * {bigint} @@ -977,7 +977,7 @@ Returns the value at the given percentile. ### `histogram.percentileBigInt(percentile)` * `percentile` {number} A percentile value in the range (0, 100). @@ -998,7 +998,7 @@ Returns a `Map` object detailing the accumulated percentile distribution. ### `histogram.percentilesBigInt` * {Map} @@ -1066,7 +1066,7 @@ added: ### `histogram.add(other)` * `other` {RecordableHistogram} diff --git a/doc/api/stream.md b/doc/api/stream.md index 77afb18ff566f2..43e5da5206b67e 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1740,7 +1740,7 @@ showBoth(); ### `readable.map(fn[, options])` > Stability: 1 - Experimental @@ -1784,7 +1784,7 @@ for await (const result of dnsResults) { ### `readable.filter(fn[, options])` > Stability: 1 - Experimental @@ -2393,7 +2393,7 @@ Returns whether the stream has encountered an error. ### `stream.isReadable(stream)` > Stability: 1 - Experimental diff --git a/doc/changelogs/CHANGELOG_V17.md b/doc/changelogs/CHANGELOG_V17.md index 664c330a6cbb69..54bedec9a36008 100644 --- a/doc/changelogs/CHANGELOG_V17.md +++ b/doc/changelogs/CHANGELOG_V17.md @@ -8,6 +8,7 @@
+17.4.0
17.3.1
17.3.0
17.2.0
@@ -37,6 +38,190 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-01-18, Version 17.4.0 (Current), @targos + +### Notable Changes + +* \[[`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child\_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#41225](https://github.com/nodejs/node/pull/41225) +* \[[`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#41266](https://github.com/nodejs/node/pull/41266) +* \[[`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#41543](https://github.com/nodejs/node/pull/41543) +* \[[`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#41267](https://github.com/nodejs/node/pull/41267) +* \[[`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#41246](https://github.com/nodejs/node/pull/41246) +* \[[`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#40980](https://github.com/nodejs/node/pull/40980) +* \[[`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf\_hooks**: multiple fixes for Histogram (James M Snell) [#41153](https://github.com/nodejs/node/pull/41153) +* \[[`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum, Robert Nagy) [#41354](https://github.com/nodejs/node/pull/41354) +* \[[`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#41199](https://github.com/nodejs/node/pull/41199) +* \[[`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum, Robert Nagy) [#40815](https://github.com/nodejs/node/pull/40815) + +### Commits + +* \[[`314102b14d`](https://github.com/nodejs/node/commit/314102b14d)] - **async\_hooks**: add missing initialization (Michael Dawson) [#41288](https://github.com/nodejs/node/pull/41288) +* \[[`56345a3f63`](https://github.com/nodejs/node/commit/56345a3f63)] - **async\_hooks**: fix AsyncLocalStorage in unhandledRejection cases (Bradley Farias) [#41202](https://github.com/nodejs/node/pull/41202) +* \[[`fa84353952`](https://github.com/nodejs/node/commit/fa84353952)] - **benchmark**: simplify http benchmarker regular expression (Rich Trott) [#38206](https://github.com/nodejs/node/pull/38206) +* \[[`88d760c559`](https://github.com/nodejs/node/commit/88d760c559)] - **benchmark**: fix benchmark/run.js handling of --set (Rich Trott) [#41334](https://github.com/nodejs/node/pull/41334) +* \[[`dcf1ea0a3f`](https://github.com/nodejs/node/commit/dcf1ea0a3f)] - **benchmark,test**: use Object.hasOwn() where applicable (Rich Trott) [#41229](https://github.com/nodejs/node/pull/41229) +* \[[`4958c800da`](https://github.com/nodejs/node/commit/4958c800da)] - **build**: fix npm version detection (Michaël Zasso) [#41575](https://github.com/nodejs/node/pull/41575) +* \[[`e8538c3751`](https://github.com/nodejs/node/commit/e8538c3751)] - **build**: fix node build failures in WSL Ubuntu (MrJithil) [#41476](https://github.com/nodejs/node/pull/41476) +* \[[`3d88ea195e`](https://github.com/nodejs/node/commit/3d88ea195e)] - **build**: fix workflow access to git history (Rich Trott) [#41472](https://github.com/nodejs/node/pull/41472) +* \[[`b0f0ad1004`](https://github.com/nodejs/node/commit/b0f0ad1004)] - **build**: start build on z/OS (alexcfyung) [#41273](https://github.com/nodejs/node/pull/41273) +* \[[`80a3766ac7`](https://github.com/nodejs/node/commit/80a3766ac7)] - **build**: use list for mutable retval rather than tuple (Rich Trott) [#41372](https://github.com/nodejs/node/pull/41372) +* \[[`afe1e00509`](https://github.com/nodejs/node/commit/afe1e00509)] - **build**: remove Python 2 workaround (Rich Trott) [#41357](https://github.com/nodejs/node/pull/41357) +* \[[`011c5f6498`](https://github.com/nodejs/node/commit/011c5f6498)] - **build**: improve readability of texts in workflows (Mestery) [#40988](https://github.com/nodejs/node/pull/40988) +* \[[`2233f31069`](https://github.com/nodejs/node/commit/2233f31069)] - **build,tools,win**: trim unused VCBUILD\_PYTHON\_LOCATION variable (David Sanders) [#41235](https://github.com/nodejs/node/pull/41235) +* \[[`d9465ae614`](https://github.com/nodejs/node/commit/d9465ae614)] - **child\_process**: queue pending messages (Erick Wendel) [#41221](https://github.com/nodejs/node/pull/41221) +* \[[`ed41fd110d`](https://github.com/nodejs/node/commit/ed41fd110d)] - **child\_process**: revise argument processing (Rich Trott) [#41280](https://github.com/nodejs/node/pull/41280) +* \[[`ef6f98c2e3`](https://github.com/nodejs/node/commit/ef6f98c2e3)] - **(SEMVER-MINOR)** **child\_process**: add support for URL to `cp.fork` (Antoine du Hamel) [#41225](https://github.com/nodejs/node/pull/41225) +* \[[`d62fe315c2`](https://github.com/nodejs/node/commit/d62fe315c2)] - **(SEMVER-MINOR)** **crypto**: alias webcrypto.subtle and webcrypto.getRandomValues on crypto (James M Snell) [#41266](https://github.com/nodejs/node/pull/41266) +* \[[`8ea56a9606`](https://github.com/nodejs/node/commit/8ea56a9606)] - **crypto**: fix error capture when loading engine (Tobias Nießen) [#41187](https://github.com/nodejs/node/pull/41187) +* \[[`f5b8aee1a1`](https://github.com/nodejs/node/commit/f5b8aee1a1)] - **deps**: upgrade npm to 8.3.1 (npm-robot) [#41503](https://github.com/nodejs/node/pull/41503) +* \[[`af3acecd7e`](https://github.com/nodejs/node/commit/af3acecd7e)] - **deps**: V8: cherry-pick 3b6b21f595f6 (Michaël Zasso) [#41457](https://github.com/nodejs/node/pull/41457) +* \[[`02ca5d7c7c`](https://github.com/nodejs/node/commit/02ca5d7c7c)] - **deps**: upgrade to libuv 1.43.0 (Colin Ihrig) [#41398](https://github.com/nodejs/node/pull/41398) +* \[[`48e4780fd7`](https://github.com/nodejs/node/commit/48e4780fd7)] - **doc**: remove statement about client private keys (Tobias Nießen) [#41505](https://github.com/nodejs/node/pull/41505) +* \[[`ba7160e815`](https://github.com/nodejs/node/commit/ba7160e815)] - **doc**: fix typo in `onboarding.md` (Antoine du Hamel) [#41544](https://github.com/nodejs/node/pull/41544) +* \[[`fcb37e9ce5`](https://github.com/nodejs/node/commit/fcb37e9ce5)] - **doc**: add Mesteery to collaborators (Mestery) [#41543](https://github.com/nodejs/node/pull/41543) +* \[[`abbfed8789`](https://github.com/nodejs/node/commit/abbfed8789)] - **doc**: add missing word in readable.read() text (Rich Trott) [#41524](https://github.com/nodejs/node/pull/41524) +* \[[`712dfdc11f`](https://github.com/nodejs/node/commit/712dfdc11f)] - **doc**: add missing YAML tag in `esm.md` (Antoine du Hamel) [#41516](https://github.com/nodejs/node/pull/41516) +* \[[`f443a4e8fa`](https://github.com/nodejs/node/commit/f443a4e8fa)] - **doc**: expand fs.access() mode parameter docs (Colin Ihrig) [#41484](https://github.com/nodejs/node/pull/41484) +* \[[`5c0c459976`](https://github.com/nodejs/node/commit/5c0c459976)] - **doc**: correct checkHost behavior with wildcards etc (Tobias Nießen) [#41468](https://github.com/nodejs/node/pull/41468) +* \[[`c632241440`](https://github.com/nodejs/node/commit/c632241440)] - **doc**: remove extraneous colon in legacy subject (Tobias Nießen) [#41477](https://github.com/nodejs/node/pull/41477) +* \[[`b7b0631b10`](https://github.com/nodejs/node/commit/b7b0631b10)] - **doc**: remove SameValue comparison reference (Rich Trott) [#41460](https://github.com/nodejs/node/pull/41460) +* \[[`524103d6bf`](https://github.com/nodejs/node/commit/524103d6bf)] - **doc**: update mailmap entries for mhdawson (Michael Dawson) [#41437](https://github.com/nodejs/node/pull/41437) +* \[[`62aa190c01`](https://github.com/nodejs/node/commit/62aa190c01)] - **doc**: add guidance on order vulns are listed in (Michael Dawson) [#41429](https://github.com/nodejs/node/pull/41429) +* \[[`d721a758b2`](https://github.com/nodejs/node/commit/d721a758b2)] - **doc**: update output in inspector examples (David Sanders) [#41390](https://github.com/nodejs/node/pull/41390) +* \[[`60025bde16`](https://github.com/nodejs/node/commit/60025bde16)] - **doc**: add note regarding unfinished TLA (Antoine du Hamel) [#41434](https://github.com/nodejs/node/pull/41434) +* \[[`10bdb5969e`](https://github.com/nodejs/node/commit/10bdb5969e)] - **doc**: add reference for `===` operator in assert.md (Rich Trott) [#41442](https://github.com/nodejs/node/pull/41442) +* \[[`edc6a7af42`](https://github.com/nodejs/node/commit/edc6a7af42)] - **doc**: clarify `uncaughtException` `origin` for ESM (Antoine du Hamel) [#41339](https://github.com/nodejs/node/pull/41339) +* \[[`4a369d03b4`](https://github.com/nodejs/node/commit/4a369d03b4)] - **doc**: revise HTTPRequestOptions text (Rich Trott) [#41407](https://github.com/nodejs/node/pull/41407) +* \[[`f43bfe2e16`](https://github.com/nodejs/node/commit/f43bfe2e16)] - **doc**: add reference for == and != operators (Rich Trott) [#41413](https://github.com/nodejs/node/pull/41413) +* \[[`d3111bf0cc`](https://github.com/nodejs/node/commit/d3111bf0cc)] - **doc**: add @RaisinTen to the TSC (Michael Dawson) [#41419](https://github.com/nodejs/node/pull/41419) +* \[[`e6bed4e972`](https://github.com/nodejs/node/commit/e6bed4e972)] - **doc**: update Abstract Equality Comparison text in assert.md (Rich Trott) [#41375](https://github.com/nodejs/node/pull/41375) +* \[[`19db19bb80`](https://github.com/nodejs/node/commit/19db19bb80)] - **doc**: fix example commands for `REPLACEME` updates (Richard Lau) [#41269](https://github.com/nodejs/node/pull/41269) +* \[[`16c0bea91d`](https://github.com/nodejs/node/commit/16c0bea91d)] - **doc**: document that `require.main` may be `undefined` (Antoine du Hamel) [#41384](https://github.com/nodejs/node/pull/41384) +* \[[`014d4836ec`](https://github.com/nodejs/node/commit/014d4836ec)] - **doc**: clarify entry point behavior when using loader hooks (Antoine du Hamel) [#41304](https://github.com/nodejs/node/pull/41304) +* \[[`6460b1b32d`](https://github.com/nodejs/node/commit/6460b1b32d)] - **doc**: clarify `require` behavior with non `.js` extensions (Antoine du Hamel) [#41345](https://github.com/nodejs/node/pull/41345) +* \[[`0d18a8c232`](https://github.com/nodejs/node/commit/0d18a8c232)] - **doc**: revise frozen-intrinsics text (Rich Trott) [#41342](https://github.com/nodejs/node/pull/41342) +* \[[`c267bb2192`](https://github.com/nodejs/node/commit/c267bb2192)] - **doc**: fix example description for worker\_threads (Dmitry Petrov) [#41341](https://github.com/nodejs/node/pull/41341) +* \[[`ffe17a84f2`](https://github.com/nodejs/node/commit/ffe17a84f2)] - **doc**: make pull-request guide default branch agnostic (Antoine du Hamel) [#41299](https://github.com/nodejs/node/pull/41299) +* \[[`5cfc547997`](https://github.com/nodejs/node/commit/5cfc547997)] - **doc**: fix sync comment in observer snippet (Eric Jacobson) [#41262](https://github.com/nodejs/node/pull/41262) +* \[[`3a80104b29`](https://github.com/nodejs/node/commit/3a80104b29)] - **doc**: remove section about amending commits in PR guide (Thiago Santos) [#41287](https://github.com/nodejs/node/pull/41287) +* \[[`23f97ec04e`](https://github.com/nodejs/node/commit/23f97ec04e)] - **doc**: remove legacy in-page links in v8.md (Rich Trott) [#41291](https://github.com/nodejs/node/pull/41291) +* \[[`e819685cec`](https://github.com/nodejs/node/commit/e819685cec)] - **doc**: include stack trace difference in ES modules (Marcos Bérgamo) [#41157](https://github.com/nodejs/node/pull/41157) +* \[[`dac8407944`](https://github.com/nodejs/node/commit/dac8407944)] - **doc**: fix example in node-api docs (Michael Dawson) [#41264](https://github.com/nodejs/node/pull/41264) +* \[[`29563abd85`](https://github.com/nodejs/node/commit/29563abd85)] - **doc**: add usage recommendation for writable.\_destroy (Rafael Gonzaga) [#41040](https://github.com/nodejs/node/pull/41040) +* \[[`e27e8272f7`](https://github.com/nodejs/node/commit/e27e8272f7)] - **doc**: make function signature comply with JSDoc comment (Rich Trott) [#41242](https://github.com/nodejs/node/pull/41242) +* \[[`d83a02994c`](https://github.com/nodejs/node/commit/d83a02994c)] - **doc**: align maxHeaderSize default with current value (Gil Pedersen) [#41183](https://github.com/nodejs/node/pull/41183) +* \[[`730e25d7dd`](https://github.com/nodejs/node/commit/730e25d7dd)] - **doc**: add unhandledRejection to strict mode (Colin Ihrig) [#41194](https://github.com/nodejs/node/pull/41194) +* \[[`74742c3618`](https://github.com/nodejs/node/commit/74742c3618)] - **doc**: adding estimated execution time (mawaregetsuka) [#41142](https://github.com/nodejs/node/pull/41142) +* \[[`34ef5a7d4d`](https://github.com/nodejs/node/commit/34ef5a7d4d)] - **doc**: fix syntax error in nested conditions example (Mateusz Burzyński) [#41205](https://github.com/nodejs/node/pull/41205) +* \[[`c9a4603913`](https://github.com/nodejs/node/commit/c9a4603913)] - **esm**: make `process.exit()` default to exit code 0 (Gang Chen) [#41388](https://github.com/nodejs/node/pull/41388) +* \[[`8a94ca7a69`](https://github.com/nodejs/node/commit/8a94ca7a69)] - **esm**: refactor esm tests out of test/message (Geoffrey Booth) [#41352](https://github.com/nodejs/node/pull/41352) +* \[[`5ebe086ea6`](https://github.com/nodejs/node/commit/5ebe086ea6)] - **esm**: reconcile JSDoc vs. actual parameter name (Rich Trott) [#41238](https://github.com/nodejs/node/pull/41238) +* \[[`9fe304b8e8`](https://github.com/nodejs/node/commit/9fe304b8e8)] - **events**: clarify JSDoc entries (Rich Trott) [#41311](https://github.com/nodejs/node/pull/41311) +* \[[`4079fc42b7`](https://github.com/nodejs/node/commit/4079fc42b7)] - **(SEMVER-MINOR)** **events**: graduate capturerejections to supported (James M Snell) [#41267](https://github.com/nodejs/node/pull/41267) +* \[[`e3a0a9cb3a`](https://github.com/nodejs/node/commit/e3a0a9cb3a)] - **events**: add jsdoc details for Event and EventTarget (James M Snell) [#41274](https://github.com/nodejs/node/pull/41274) +* \[[`fe21607901`](https://github.com/nodejs/node/commit/fe21607901)] - **(SEMVER-MINOR)** **events**: add EventEmitterAsyncResource to core (James M Snell) [#41246](https://github.com/nodejs/node/pull/41246) +* \[[`d4a6f2caf1`](https://github.com/nodejs/node/commit/d4a6f2caf1)] - **fs**: use async directory processing in cp() (Colin Ihrig) [#41351](https://github.com/nodejs/node/pull/41351) +* \[[`0951bd94db`](https://github.com/nodejs/node/commit/0951bd94db)] - **fs**: correct param names in JSDoc comments (Rich Trott) [#41237](https://github.com/nodejs/node/pull/41237) +* \[[`1d75436a1c`](https://github.com/nodejs/node/commit/1d75436a1c)] - **http**: remove duplicate code (Shaw) [#39239](https://github.com/nodejs/node/pull/39239) +* \[[`0aacd4926d`](https://github.com/nodejs/node/commit/0aacd4926d)] - **http2**: handle existing socket data when creating HTTP/2 server sessions (Tim Perry) [#41185](https://github.com/nodejs/node/pull/41185) +* \[[`24fbbf2747`](https://github.com/nodejs/node/commit/24fbbf2747)] - **lib**: remove spurious JSDoc entry (Rich Trott) [#41240](https://github.com/nodejs/node/pull/41240) +* \[[`e457ec05d6`](https://github.com/nodejs/node/commit/e457ec05d6)] - **lib**: fix checking syntax of esm module (Qingyu Deng) [#41198](https://github.com/nodejs/node/pull/41198) +* \[[`f176124e8b`](https://github.com/nodejs/node/commit/f176124e8b)] - **lib,tools**: remove empty lines between JSDoc tags (Rich Trott) [#41147](https://github.com/nodejs/node/pull/41147) +* \[[`68fd2ac999`](https://github.com/nodejs/node/commit/68fd2ac999)] - **loader**: fix package resolution for edge case (Gabriel Bota) [#41218](https://github.com/nodejs/node/pull/41218) +* \[[`6d8eb6ace6`](https://github.com/nodejs/node/commit/6d8eb6ace6)] - **(SEMVER-MINOR)** **loader**: return package format from defaultResolve if known (Gabriel Bota) [#40980](https://github.com/nodejs/node/pull/40980) +* \[[`a6146c7e27`](https://github.com/nodejs/node/commit/a6146c7e27)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#41456](https://github.com/nodejs/node/pull/41456) +* \[[`07353e9b8b`](https://github.com/nodejs/node/commit/07353e9b8b)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#41475](https://github.com/nodejs/node/pull/41475) +* \[[`e1ff4521d7`](https://github.com/nodejs/node/commit/e1ff4521d7)] - **meta**: correct my name in AUTHORS (Jacob Smith) [#41444](https://github.com/nodejs/node/pull/41444) +* \[[`da1d5d6563`](https://github.com/nodejs/node/commit/da1d5d6563)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#41449](https://github.com/nodejs/node/pull/41449) +* \[[`0f9afa58d5`](https://github.com/nodejs/node/commit/0f9afa58d5)] - **meta**: add required fields in issue templates (Rich Trott) [#41378](https://github.com/nodejs/node/pull/41378) +* \[[`da04408075`](https://github.com/nodejs/node/commit/da04408075)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#41374](https://github.com/nodejs/node/pull/41374) +* \[[`1f6c4e819b`](https://github.com/nodejs/node/commit/1f6c4e819b)] - **meta**: replace API docs issue template with form (Rich Trott) [#41348](https://github.com/nodejs/node/pull/41348) +* \[[`253c3e5488`](https://github.com/nodejs/node/commit/253c3e5488)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#41336](https://github.com/nodejs/node/pull/41336) +* \[[`3e188cacc2`](https://github.com/nodejs/node/commit/3e188cacc2)] - **meta**: replace feature request template with form (Rich Trott) [#41317](https://github.com/nodejs/node/pull/41317) +* \[[`e339220511`](https://github.com/nodejs/node/commit/e339220511)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#41322](https://github.com/nodejs/node/pull/41322) +* \[[`d0d595f8f2`](https://github.com/nodejs/node/commit/d0d595f8f2)] - **meta**: update node-api team name (Richard Lau) [#41268](https://github.com/nodejs/node/pull/41268) +* \[[`a53fa2010b`](https://github.com/nodejs/node/commit/a53fa2010b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#41248](https://github.com/nodejs/node/pull/41248) +* \[[`edefb41ec1`](https://github.com/nodejs/node/commit/edefb41ec1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#41234](https://github.com/nodejs/node/pull/41234) +* \[[`6da7909797`](https://github.com/nodejs/node/commit/6da7909797)] - **meta**: remove community-committee from CODEOWNERS (Rich Trott) [#41169](https://github.com/nodejs/node/pull/41169) +* \[[`5fe011a24d`](https://github.com/nodejs/node/commit/5fe011a24d)] - **node-api**: add missing initialization of last error (Michael Dawson) [#41290](https://github.com/nodejs/node/pull/41290) +* \[[`27c619140a`](https://github.com/nodejs/node/commit/27c619140a)] - **(SEMVER-MINOR)** **perf\_hooks**: multiple fixes for Histogram (James M Snell) [#41153](https://github.com/nodejs/node/pull/41153) +* \[[`e60187d8ab`](https://github.com/nodejs/node/commit/e60187d8ab)] - **policy**: add missing JSDoc @param entry (Rich Trott) [#41239](https://github.com/nodejs/node/pull/41239) +* \[[`ec9071f55d`](https://github.com/nodejs/node/commit/ec9071f55d)] - **src**: use `std::optional` for Worker thread id (Anna Henningsen) [#41453](https://github.com/nodejs/node/pull/41453) +* \[[`6aec92f959`](https://github.com/nodejs/node/commit/6aec92f959)] - **src**: gracefully handle errors in GetX509NameObject (Tobias Nießen) [#41490](https://github.com/nodejs/node/pull/41490) +* \[[`7ac126b75c`](https://github.com/nodejs/node/commit/7ac126b75c)] - **src**: fix out-of-bounds check of serialization indices (JoostK) [#41452](https://github.com/nodejs/node/pull/41452) +* \[[`93b3664b9a`](https://github.com/nodejs/node/commit/93b3664b9a)] - **src**: do IWYU for some STL includes (David Sanders) [#41236](https://github.com/nodejs/node/pull/41236) +* \[[`337ebfcd53`](https://github.com/nodejs/node/commit/337ebfcd53)] - **src**: split out async stack corruption detection from inline fn (Anna Henningsen) [#41331](https://github.com/nodejs/node/pull/41331) +* \[[`250e197a62`](https://github.com/nodejs/node/commit/250e197a62)] - **src**: store native async execution resources as `v8::Local` (Anna Henningsen) [#41331](https://github.com/nodejs/node/pull/41331) +* \[[`6187e81a8e`](https://github.com/nodejs/node/commit/6187e81a8e)] - **src**: guard slightly costly check in MakeCallback more strongly (Anna Henningsen) [#41331](https://github.com/nodejs/node/pull/41331) +* \[[`51d86fe6a0`](https://github.com/nodejs/node/commit/51d86fe6a0)] - **stream**: remove always-false condition check (Rich Trott) [#41488](https://github.com/nodejs/node/pull/41488) +* \[[`b08138f367`](https://github.com/nodejs/node/commit/b08138f367)] - **stream**: fix error-path function call (Rich Trott) [#41433](https://github.com/nodejs/node/pull/41433) +* \[[`d79f8c2987`](https://github.com/nodejs/node/commit/d79f8c2987)] - **stream**: remove unused function argument (Rich Trott) [#41403](https://github.com/nodejs/node/pull/41403) +* \[[`09c25bb224`](https://github.com/nodejs/node/commit/09c25bb224)] - **(SEMVER-MINOR)** **stream**: add filter method to readable (Benjamin Gruenbaum) [#41354](https://github.com/nodejs/node/pull/41354) +* \[[`1150963217`](https://github.com/nodejs/node/commit/1150963217)] - **(SEMVER-MINOR)** **stream**: add isReadable helper (Robert Nagy) [#41199](https://github.com/nodejs/node/pull/41199) +* \[[`9f5a873965`](https://github.com/nodejs/node/commit/9f5a873965)] - **(SEMVER-MINOR)** **stream**: add map method to Readable (Benjamin Gruenbaum) [#40815](https://github.com/nodejs/node/pull/40815) +* \[[`3dc65646c8`](https://github.com/nodejs/node/commit/3dc65646c8)] - **stream**: fix enqueue race condition on esm modules (Rafael Gonzaga) [#40901](https://github.com/nodejs/node/pull/40901) +* \[[`09f2fd36a4`](https://github.com/nodejs/node/commit/09f2fd36a4)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#41425](https://github.com/nodejs/node/pull/41425) +* \[[`106ef0cef4`](https://github.com/nodejs/node/commit/106ef0cef4)] - **test**: remove broken wiki link from test/common doc (Yoshiki Kurihara) [#41426](https://github.com/nodejs/node/pull/41426) +* \[[`9d8d7c63cb`](https://github.com/nodejs/node/commit/9d8d7c63cb)] - **test**: do not OR F\_OK in fs.access() test (Colin Ihrig) [#41484](https://github.com/nodejs/node/pull/41484) +* \[[`3e2154deda`](https://github.com/nodejs/node/commit/3e2154deda)] - **test**: mark test-performance-eventloopdelay flaky (Michael Dawson) [#41409](https://github.com/nodejs/node/pull/41409) +* \[[`e808ee68d0`](https://github.com/nodejs/node/commit/e808ee68d0)] - **test**: mark test-repl-sigint-nested-eval as flaky (Michael Dawson) [#41302](https://github.com/nodejs/node/pull/41302) +* \[[`f97f6c585d`](https://github.com/nodejs/node/commit/f97f6c585d)] - **test**: use spawnSync() full name in test-stdio-pipe-stderr (Rich Trott) [#41332](https://github.com/nodejs/node/pull/41332) +* \[[`75c565bf18`](https://github.com/nodejs/node/commit/75c565bf18)] - **test**: improve expectWarning error message (Rich Trott) [#41326](https://github.com/nodejs/node/pull/41326) +* \[[`c136d597f0`](https://github.com/nodejs/node/commit/c136d597f0)] - **test**: use spawnSync() full name (Rich Trott) [#41327](https://github.com/nodejs/node/pull/41327) +* \[[`b2a87f770d`](https://github.com/nodejs/node/commit/b2a87f770d)] - **test**: add comments explaining \_setSimultaneousAccepts deprecation tests (Yoshiki Kurihara) [#41307](https://github.com/nodejs/node/pull/41307) +* \[[`fac0871102`](https://github.com/nodejs/node/commit/fac0871102)] - **test**: mark test-worker-take-heapsnapshot flaky (Michael Dawson) [#41253](https://github.com/nodejs/node/pull/41253) +* \[[`90617b9303`](https://github.com/nodejs/node/commit/90617b9303)] - **test**: mark wpt/test-user-timing test flaky (Michael Dawson) [#41203](https://github.com/nodejs/node/pull/41203) +* \[[`8f08328a01`](https://github.com/nodejs/node/commit/8f08328a01)] - **test**: correct param name in JSDoc comment (Rich Trott) [#41241](https://github.com/nodejs/node/pull/41241) +* \[[`367ab2a55e`](https://github.com/nodejs/node/commit/367ab2a55e)] - **test**: mark test-crypto-keygen slow on windows (Michael Dawson) [#41207](https://github.com/nodejs/node/pull/41207) +* \[[`f067876338`](https://github.com/nodejs/node/commit/f067876338)] - **test**: improve test coverage of dns/promises (Yoshiki Kurihara) [#41133](https://github.com/nodejs/node/pull/41133) +* \[[`2e92f6f5d9`](https://github.com/nodejs/node/commit/2e92f6f5d9)] - **timers**: use ref counts to count timers (Darshan Sen) [#41231](https://github.com/nodejs/node/pull/41231) +* \[[`3c8b25bec8`](https://github.com/nodejs/node/commit/3c8b25bec8)] - **tls**: use optional chaining to simplify checks (Antoine du Hamel) [#41337](https://github.com/nodejs/node/pull/41337) +* \[[`a11ff31bca`](https://github.com/nodejs/node/commit/a11ff31bca)] - **tls**: permit null as a pfx value (CallMeLaNN) [#41170](https://github.com/nodejs/node/pull/41170) +* \[[`5129b7c802`](https://github.com/nodejs/node/commit/5129b7c802)] - **tools**: fix small not-quite-a-bug in find-inactive-tsc.mjs (Rich Trott) [#41469](https://github.com/nodejs/node/pull/41469) +* \[[`258ee4ba64`](https://github.com/nodejs/node/commit/258ee4ba64)] - **tools**: enable ESLint recommended configuration (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`090a674a81`](https://github.com/nodejs/node/commit/090a674a81)] - **tools**: enable ESLint no-constant-condition rule (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`1f4369a106`](https://github.com/nodejs/node/commit/1f4369a106)] - **tools**: enable ESLint require-yield rule (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`8090ce7a6c`](https://github.com/nodejs/node/commit/8090ce7a6c)] - **tools**: enable ESLint no-sparse-arrays rule (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`afa4f37faf`](https://github.com/nodejs/node/commit/afa4f37faf)] - **tools**: enable ESLint no-loss-of-precision rule (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`ec337b2019`](https://github.com/nodejs/node/commit/ec337b2019)] - **tools**: replace for loop with map() (Rich Trott) [#41451](https://github.com/nodejs/node/pull/41451) +* \[[`c91ac205a5`](https://github.com/nodejs/node/commit/c91ac205a5)] - **tools**: use GITHUB\_ACTIONS env var in inactivity scripts (Rich Trott) [#41422](https://github.com/nodejs/node/pull/41422) +* \[[`4a57d476a8`](https://github.com/nodejs/node/commit/4a57d476a8)] - **tools**: replace while+exec() with matchAll() (Rich Trott) [#41406](https://github.com/nodejs/node/pull/41406) +* \[[`583f8d969a`](https://github.com/nodejs/node/commit/583f8d969a)] - **tools**: fix argv bug in find-inactive-tsc.mjs (Rich Trott) [#41394](https://github.com/nodejs/node/pull/41394) +* \[[`dcada80f30`](https://github.com/nodejs/node/commit/dcada80f30)] - **tools**: remove conditional assignment in custom ESLint rule (Rich Trott) [#41325](https://github.com/nodejs/node/pull/41325) +* \[[`e15e1cb030`](https://github.com/nodejs/node/commit/e15e1cb030)] - **tools**: update lint-md-dependencies to @rollup/plugin-node-resolve\@13.1.2 (Node.js GitHub Bot) [#41369](https://github.com/nodejs/node/pull/41369) +* \[[`07683021b7`](https://github.com/nodejs/node/commit/07683021b7)] - **tools**: update doc to rehype-raw\@6.1.1 (Node.js GitHub Bot) [#41367](https://github.com/nodejs/node/pull/41367) +* \[[`bd8b95a5e8`](https://github.com/nodejs/node/commit/bd8b95a5e8)] - **tools**: remove last of error-masking in commit-queue.sh (Rich Trott) [#41356](https://github.com/nodejs/node/pull/41356) +* \[[`9284d24df6`](https://github.com/nodejs/node/commit/9284d24df6)] - **tools**: update eslint to 8.6.0 (Node.js GitHub Bot) [#41368](https://github.com/nodejs/node/pull/41368) +* \[[`5fc886f68e`](https://github.com/nodejs/node/commit/5fc886f68e)] - **tools**: do not mask errors on multiple commit retrieval (Rich Trott) [#41340](https://github.com/nodejs/node/pull/41340) +* \[[`0ca7cda962`](https://github.com/nodejs/node/commit/0ca7cda962)] - **tools**: enable jsdoc/check-param-names lint rule (Rich Trott) [#41311](https://github.com/nodejs/node/pull/41311) +* \[[`75ff8e6505`](https://github.com/nodejs/node/commit/75ff8e6505)] - **tools**: improve section tag additions in HTML doc generator (Rich Trott) [#41318](https://github.com/nodejs/node/pull/41318) +* \[[`9c4124706e`](https://github.com/nodejs/node/commit/9c4124706e)] - **tools**: simplify commit-queue.sh merge command (Rich Trott) [#41314](https://github.com/nodejs/node/pull/41314) +* \[[`137c814848`](https://github.com/nodejs/node/commit/137c814848)] - **tools**: update lint-md-dependencies to rollup\@2.62.0 (Node.js GitHub Bot) [#41315](https://github.com/nodejs/node/pull/41315) +* \[[`58da5d9b43`](https://github.com/nodejs/node/commit/58da5d9b43)] - **tools**: use Object.hasOwn() in alljson.mjs (Rich Trott) [#41306](https://github.com/nodejs/node/pull/41306) +* \[[`c12cbf2020`](https://github.com/nodejs/node/commit/c12cbf2020)] - **tools**: avoid generating duplicate id attributes (Rich Trott) [#41291](https://github.com/nodejs/node/pull/41291) +* \[[`80a114d1b7`](https://github.com/nodejs/node/commit/80a114d1b7)] - **tools**: be intentional about masking possible error in start-ci.sh (Rich Trott) [#41284](https://github.com/nodejs/node/pull/41284) +* \[[`198528426d`](https://github.com/nodejs/node/commit/198528426d)] - **tools**: use {N} for spaces in regex (Rich Trott) [#41295](https://github.com/nodejs/node/pull/41295) +* \[[`46b364a684`](https://github.com/nodejs/node/commit/46b364a684)] - **tools**: consolidate update-authors.js logic (Rich Trott) [#41255](https://github.com/nodejs/node/pull/41255) +* \[[`c546cef4bc`](https://github.com/nodejs/node/commit/c546cef4bc)] - **tools**: update doc dependency mdast-util-gfm-table to 1.0.2 (Rich Trott) [#41260](https://github.com/nodejs/node/pull/41260) +* \[[`60c059e4bc`](https://github.com/nodejs/node/commit/60c059e4bc)] - **tools**: make license-builder.sh comply with shellcheck 0.8.0 (Rich Trott) [#41258](https://github.com/nodejs/node/pull/41258) +* \[[`62e28f19f7`](https://github.com/nodejs/node/commit/62e28f19f7)] - **tools**: use arrow function for callback in lint-sh.js (Rich Trott) [#41256](https://github.com/nodejs/node/pull/41256) +* \[[`e2df381da9`](https://github.com/nodejs/node/commit/e2df381da9)] - **tools**: add double-quotes to make-v8.sh (Rich Trott) [#41257](https://github.com/nodejs/node/pull/41257) +* \[[`dae2e5fffa`](https://github.com/nodejs/node/commit/dae2e5fffa)] - **tools**: enable prefer-object-has-own lint rule (Rich Trott) [#41245](https://github.com/nodejs/node/pull/41245) +* \[[`aa7d14768d`](https://github.com/nodejs/node/commit/aa7d14768d)] - **tools**: update eslint to 8.5.0 (Node.js GitHub Bot) [#41228](https://github.com/nodejs/node/pull/41228) +* \[[`0c14e7e7c8`](https://github.com/nodejs/node/commit/0c14e7e7c8)] - **tools**: enable jsdoc/tag-lines ESLint rule (Rich Trott) [#41147](https://github.com/nodejs/node/pull/41147) +* \[[`c486da1715`](https://github.com/nodejs/node/commit/c486da1715)] - **tools**: update lint-md-dependencies to @rollup/plugin-node-resolve\@13.1.1 (Node.js GitHub Bot) [#41227](https://github.com/nodejs/node/pull/41227) +* \[[`82f492bbb0`](https://github.com/nodejs/node/commit/82f492bbb0)] - **tools**: fix CQ and auto-start-ci jobs (Antoine du Hamel) [#41230](https://github.com/nodejs/node/pull/41230) +* \[[`c44185ca37`](https://github.com/nodejs/node/commit/c44185ca37)] - **tools**: fix GitHub Actions status when CQ is empty (Antoine du Hamel) [#41193](https://github.com/nodejs/node/pull/41193) +* \[[`800640adf9`](https://github.com/nodejs/node/commit/800640adf9)] - **tools,benchmark,lib,test**: enable no-case-declarations lint rule (Rich Trott) [#41385](https://github.com/nodejs/node/pull/41385) +* \[[`4518fdda24`](https://github.com/nodejs/node/commit/4518fdda24)] - **tools,lib,test**: enable ESLint no-regex-spaces rule (Rich Trott) [#41463](https://github.com/nodejs/node/pull/41463) +* \[[`c8e8fc0ecb`](https://github.com/nodejs/node/commit/c8e8fc0ecb)] - **typings**: add types for symbol and accessor properties on `primordials` (ExE Boss) [#40992](https://github.com/nodejs/node/pull/40992) +* \[[`d733b56101`](https://github.com/nodejs/node/commit/d733b56101)] - **typings**: add JSDoc for `string_decoder` (Qingyu Deng) [#38229](https://github.com/nodejs/node/pull/38229) +* \[[`01ad8debd3`](https://github.com/nodejs/node/commit/01ad8debd3)] - **url,lib**: pass urlsearchparams-constructor.any.js (Khaidi Chu) [#41197](https://github.com/nodejs/node/pull/41197) +* \[[`5ed8a1c017`](https://github.com/nodejs/node/commit/5ed8a1c017)] - **util**: do not reduce to a single line if not appropriate using inspect (Ruben Bridgewater) [#41083](https://github.com/nodejs/node/pull/41083) +* \[[`ab5e94c832`](https://github.com/nodejs/node/commit/ab5e94c832)] - **util**: display a present-but-undefined error cause (Jordan Harband) [#41247](https://github.com/nodejs/node/pull/41247) + ## 2022-01-10, Version 17.3.1 (Current), @BethGriggs From 98659c04d5ca5664fa03857beed23c4e43d98c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 18 Jan 2022 13:09:48 +0000 Subject: [PATCH 037/161] doc: use sentence case for Web Crypto headers Refs: https://github.com/nodejs/node/pull/33889 PR-URL: https://github.com/nodejs/node/pull/41577 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Mestery --- 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 8aa0c77a3736ae..191041d50034e1 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -304,7 +304,7 @@ async function digest(data, algorithm = 'SHA-512') { } ``` -## Algorithm Matrix +## Algorithm matrix The table details the algorithms supported by the Node.js Web Crypto API implementation and the APIs supported for each: @@ -923,7 +923,7 @@ The wrapping algorithms currently supported include: * `'AES-GCM'` * `'AES-KW'` -## Algorithm Parameters +## Algorithm parameters The algorithm parameter objects define the methods and parameters used by the various {SubtleCrypto} methods. While described here as "classes", they From 8ed577aae793a27f8aed209091cfc727f265a830 Mon Sep 17 00:00:00 2001 From: Mestery Date: Tue, 18 Jan 2022 19:04:09 +0100 Subject: [PATCH 038/161] doc,readline: add missing node protocol in example PR-URL: https://github.com/nodejs/node/pull/41560 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: James M Snell --- doc/api/readline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/readline.md b/doc/api/readline.md index 31d910e1b68b81..ab93b59eb2ee9c 100644 --- a/doc/api/readline.md +++ b/doc/api/readline.md @@ -33,7 +33,7 @@ The following simple example illustrates the basic use of the `readline` module. ```mjs import * as readline from 'node:readline/promises'; -import { stdin as input, stdout as output } from 'process'; +import { stdin as input, stdout as output } from 'node:process'; const rl = readline.createInterface({ input, output }); From 50b7ab9659276c77760e03b521862c306c838289 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Tue, 18 Jan 2022 23:34:20 +0530 Subject: [PATCH 039/161] build: fix libuv builds for android aarch64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This syncs up the source list in https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/uv.gyp#L257-L265 with https://github.com/nodejs/node/blob/b2edcfee46097fe8e0510a455b97d5c6d0cac5ec/deps/uv/CMakeLists.txt#L218-L227. Fixes: https://github.com/nodejs/node/issues/41380 Signed-off-by: Darshan Sen PR-URL: https://github.com/nodejs/node/pull/41555 Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Mary Marchini Reviewed-By: Jiawen Geng Reviewed-By: James M Snell --- deps/uv/uv.gyp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/deps/uv/uv.gyp b/deps/uv/uv.gyp index 47de0d7edefe20..093f611fb6f6d8 100644 --- a/deps/uv/uv.gyp +++ b/deps/uv/uv.gyp @@ -254,15 +254,16 @@ }], [ 'OS=="android"', { 'sources': [ + 'src/unix/android-ifaddrs.c', 'src/unix/linux-core.c', 'src/unix/linux-inotify.c', 'src/unix/linux-syscalls.c', - 'src/unix/linux-syscalls.h', - 'src/unix/pthread-fixes.c', - 'src/unix/android-ifaddrs.c', 'src/unix/procfs-exepath.c', + 'src/unix/pthread-fixes.c', + 'src/unix/random-getentropy.c', 'src/unix/random-getrandom.c', 'src/unix/random-sysctl-linux.c', + 'src/unix/epoll.c', ], 'link_settings': { 'libraries': [ '-ldl' ], From f8f3d35bd639f335c17a463824c9a2694bc89016 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 18 Jan 2022 19:05:06 +0100 Subject: [PATCH 040/161] tools: add missing `.PHONY` and `.NOTPARALLEL` targets in `Makefile` PR-URL: https://github.com/nodejs/node/pull/41515 Reviewed-By: Richard Lau Reviewed-By: Darshan Sen Reviewed-By: James M Snell Reviewed-By: Yash Ladha --- Makefile | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc455e39ecbdb5..7c3e122c206d2e 100644 --- a/Makefile +++ b/Makefile @@ -171,6 +171,7 @@ uninstall: ## Uninstalls node from $PREFIX (default=/usr/local). $(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)' .PHONY: clean +.NOTPARALLEL: clean clean: ## Remove build artifacts. $(RM) -r out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) \ out/$(BUILDTYPE)/node.exp @@ -183,12 +184,14 @@ clean: ## Remove build artifacts. $(MAKE) bench-addons-clean .PHONY: testclean +.NOTPARALLEL: testclean testclean: # Next one is legacy remove this at some point $(RM) -r test/tmp* $(RM) -r test/.tmp* .PHONY: distclean +.NOTPARALLEL: distclean distclean: $(RM) -r out $(RM) config.gypi icu_config.gypi @@ -203,6 +206,7 @@ distclean: check: test .PHONY: coverage-clean +.NOTPARALLEL: coverage-clean # Remove files generated by running coverage, put the non-instrumented lib back # in place coverage-clean: @@ -316,6 +320,7 @@ test-only: all ## For a quick test, does not run linter or build docs. $(MAKE) tooltest # Used by `make coverage-test` +.PHONY: test-cov test-cov: all $(MAKE) build-addons $(MAKE) build-js-native-api-tests @@ -323,12 +328,15 @@ test-cov: all $(MAKE) cctest CI_SKIP_TESTS=$(COV_SKIP_TESTS) $(MAKE) jstest +.PHONY: test-parallel test-parallel: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) parallel +.PHONY: test-valgrind test-valgrind: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --valgrind sequential parallel message +.PHONY: test-check-deopts test-check-deopts: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --check-deopts parallel sequential @@ -457,16 +465,20 @@ clear-stalled: echo $${PS_OUT} | xargs kill -9; \ fi +.PHONY: test-build test-build: | all build-addons build-js-native-api-tests build-node-api-tests +.PHONY: test-build-js-native-api test-build-js-native-api: all build-js-native-api-tests +.PHONY: test-build-node-api test-build-node-api: all build-node-api-tests .PHONY: test-all test-all: test-build ## Run default tests with both Debug and Release builds. $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release +.PHONY: test-all-valgrind test-all-valgrind: test-build $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release --valgrind @@ -544,30 +556,39 @@ build-ci: run-ci: build-ci $(MAKE) test-ci -j1 +.PHONY: test-release test-release: test-build $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) +.PHONY: test-debug test-debug: test-build $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug +.PHONY: test-message test-message: test-build $(PYTHON) tools/test.py $(PARALLEL_ARGS) message +.PHONY: test-wpt test-wpt: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) wpt +.PHONY: test-simple test-simple: | cctest # Depends on 'all'. $(PYTHON) tools/test.py $(PARALLEL_ARGS) parallel sequential +.PHONY: test-pummel test-pummel: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) pummel +.PHONY: test-internet test-internet: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) internet +.PHONY: test-benchmark test-benchmark: | bench-addons-build $(PYTHON) tools/test.py $(PARALLEL_ARGS) benchmark +.PHONY: test-tick-processor test-tick-processor: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) tick-processor @@ -588,13 +609,16 @@ test-doc: doc-only lint-md ## Builds, lints, and verifies the docs. test-doc-ci: doc-only $(PYTHON) tools/test.py --shell $(NODE) $(TEST_CI_ARGS) $(PARALLEL_ARGS) doctool +.PHONY: test-known-issues test-known-issues: all $(PYTHON) tools/test.py $(PARALLEL_ARGS) known_issues # Related CI job: node-test-npm +.PHONY: test-npm test-npm: $(NODE_EXE) ## Run the npm test suite on deps/npm. $(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test +.PHONY: test-npm-publish test-npm-publish: $(NODE_EXE) npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js @@ -603,6 +627,7 @@ test-js-native-api: test-build-js-native-api $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) js-native-api .PHONY: test-js-native-api-clean +.NOTPARALLEL: test-js-native-api-clean test-js-native-api-clean: $(RM) -r test/js-native-api/*/build $(RM) test/js-native-api/.buildstamp @@ -612,6 +637,7 @@ test-node-api: test-build-node-api $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) node-api .PHONY: test-node-api-clean +.NOTPARALLEL: test-node-api-clean test-node-api-clean: $(RM) -r test/node-api/*/build $(RM) test/node-api/.buildstamp @@ -621,6 +647,7 @@ test-addons: test-build test-js-native-api test-node-api $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) addons .PHONY: test-addons-clean +.NOTPARALLEL: test-addons-clean test-addons-clean: $(RM) -r test/addons/??_*/ $(RM) -r test/addons/*/build @@ -628,9 +655,11 @@ test-addons-clean: $(MAKE) test-js-native-api-clean $(MAKE) test-node-api-clean +.PHONY: test-async-hooks test-async-hooks: $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) async-hooks +.PHONY: test-with-async-hooks test-with-async-hooks: $(MAKE) build-addons $(MAKE) build-js-native-api-tests @@ -783,6 +812,7 @@ docserve: $(apidocs_html) $(apiassets) @$(PYTHON) -m http.server 8000 --bind 127.0.0.1 --directory out/doc/api .PHONY: docclean +.NOTPARALLEL: docclean docclean: $(RM) -r out/doc $(RM) "$(VERSIONS_DATA)" @@ -951,6 +981,7 @@ XZ_COMPRESSION ?= 9e PKG=$(TARNAME).pkg MACOSOUTDIR=out/macos +.PHONY: check-xz ifeq ($(SKIP_XZ), 1) check-xz: $(info SKIP_XZ=1 supplied, skipping .tar.xz creation) @@ -1086,6 +1117,7 @@ endif # Builds the macOS installer for releases. pkg: $(PKG) +.PHONY: corepack-update corepack-update: rm -rf /tmp/node-corepack-clone git clone 'https://github.com/nodejs/corepack.git' /tmp/node-corepack-clone @@ -1094,6 +1126,7 @@ corepack-update: cd deps/corepack && tar xf /tmp/node-corepack-clone/package.tgz --strip-components=1 chmod +x deps/corepack/shims/* +.PHONY: pkg-upload # Note: this is strictly for release builds on release machines only. pkg-upload: pkg ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)" @@ -1142,6 +1175,7 @@ endif .PHONY: tar tar: $(TARBALL) ## Create a source tarball. +.PHONY: tar-upload # Note: this is strictly for release builds on release machines only. tar-upload: tar ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)" @@ -1154,6 +1188,7 @@ ifeq ($(XZ), 1) ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.xz.done" endif +.PHONY: doc-upload # Note: this is strictly for release builds on release machines only. doc-upload: doc ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/" @@ -1179,8 +1214,10 @@ ifeq ($(XZ), 1) endif $(RM) $(TARNAME)-headers.tar +.PHONY: tar-headers tar-headers: $(TARBALL)-headers ## Build the node header tarball. +.PHONY: tar-headers-upload tar-headers-upload: tar-headers ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)" chmod 664 $(TARNAME)-headers.tar.gz @@ -1224,6 +1261,7 @@ endif # This requires NODE_VERSION_IS_RELEASE defined as 1 in src/node_version.h. binary: $(BINARYTAR) ## Build release binary tarballs. +.PHONY: binary-upload # Note: this is strictly for release builds on release machines only. binary-upload: binary ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)" @@ -1246,6 +1284,7 @@ bench bench-all: bench-addons-build bench-addons-build: | $(NODE_EXE) benchmark/napi/.buildstamp .PHONY: bench-addons-clean +.NOTPARALLEL: bench-addons-clean bench-addons-clean: $(RM) -r benchmark/napi/*/build $(RM) benchmark/napi/.buildstamp @@ -1256,6 +1295,7 @@ lint-md-rollup: cd tools/lint-md && npm ci && npm run build .PHONY: lint-md-clean +.NOTPARALLEL: lint-md-clean lint-md-clean: $(RM) -r tools/lint-md/node_modules $(RM) tools/.*mdlintstamp @@ -1372,9 +1412,12 @@ LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \ # and the actual filename is generated so it won't match header guards ADDON_DOC_LINT_FLAGS=-whitespace/ending_newline,-build/header_guard +.PHONY: format-cpp-build format-cpp-build: cd tools/clang-format && $(call available-node,$(run-npm-ci)) +.PHONY: format-cpp-clean +.NOTPARALLEL: format-cpp-clean format-cpp-clean: $(RM) -r tools/clang-format/node_modules @@ -1434,8 +1477,8 @@ lint-py-build: $(PYTHON) -m pip install --no-user --upgrade -t tools/pip/site-packages flake8 || \ $(PYTHON) -m pip install --no-user --upgrade --system -t tools/pip/site-packages flake8 -ifneq ("","$(wildcard tools/pip/site-packages/flake8)") .PHONY: lint-py +ifneq ("","$(wildcard tools/pip/site-packages/flake8)") # Lints the Python code with flake8. # Flag the build if there are Python syntax errors or undefined names lint-py: @@ -1500,6 +1543,7 @@ lint-clean: HAS_DOCKER ?= $(shell command -v docker > /dev/null 2>&1; [ $$? -eq 0 ] && echo 1 || echo 0) +.PHONY: gen-openssl ifeq ($(HAS_DOCKER), 1) DOCKER_COMMAND ?= docker run -it -v $(PWD):/node IS_IN_WORKTREE = $(shell grep '^gitdir: ' $(PWD)/.git 2>/dev/null) From 7a07df4329b6e40d0958c246d6260e16b45ff735 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 18 Jan 2022 10:13:34 -0800 Subject: [PATCH 041/161] doc: edit async_context context loss text Make the text more concise and clear. PR-URL: https://github.com/nodejs/node/pull/41550 Reviewed-By: James M Snell Reviewed-By: Benjamin Gruenbaum --- doc/api/async_context.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/doc/api/async_context.md b/doc/api/async_context.md index 137a84151f0da1..1194a313f45553 100644 --- a/doc/api/async_context.md +++ b/doc/api/async_context.md @@ -316,22 +316,19 @@ functions called by `foo`. Outside of `run`, calling `getStore` will return ### Troubleshooting: Context loss -In most cases your application or library code should have no issues with -`AsyncLocalStorage`. But in rare cases you may face situations when the -current store is lost in one of the asynchronous operations. In those cases, -consider the following options. +In most cases, `AsyncLocalStorage` works without issues. In rare situations, the +current store is lost in one of the asynchronous operations. If your code is callback-based, it is enough to promisify it with -[`util.promisify()`][], so it starts working with native promises. +[`util.promisify()`][] so it starts working with native promises. -If you need to keep using callback-based API, or your code assumes +If you need to use a callback-based API or your code assumes a custom thenable implementation, use the [`AsyncResource`][] class -to associate the asynchronous operation with the correct execution context. To -do so, you will need to identify the function call responsible for the -context loss. You can do that by logging the content of -`asyncLocalStorage.getStore()` after the calls you suspect are responsible for -the loss. When the code logs `undefined`, the last callback called is probably -responsible for the context loss. +to associate the asynchronous operation with the correct execution context. +Find the function call responsible for the context loss by logging the content +of `asyncLocalStorage.getStore()` after the calls you suspect are responsible +for the loss. When the code logs `undefined`, the last callback called is +probably responsible for the context loss. ## Class: `AsyncResource` From 56679eb53044b03e4da0f7420774d54f0c550eec Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 18 Jan 2022 19:13:44 +0100 Subject: [PATCH 042/161] doc: recommend package exports instead of requiring folders PR-URL: https://github.com/nodejs/node/pull/41381 Reviewed-By: James M Snell Reviewed-By: Geoffrey Booth --- doc/api/modules.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/api/modules.md b/doc/api/modules.md index ce8b1d5f123e23..0adca6de8dc50f 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -436,8 +436,8 @@ If the given path does not exist, `require()` will throw an [`Error`][] with its -It is convenient to organize programs and libraries into self-contained -directories, and then provide a single entry point to those directories. +> Stability: 3 - Legacy: Use [subpath exports][] or [subpath imports][] instead. + There are three ways in which a folder may be passed to `require()` as an argument. @@ -454,8 +454,6 @@ If this was in a folder at `./some-library`, then `require('./some-library')` would attempt to load `./some-library/lib/some-library.js`. -This is the extent of the awareness of `package.json` files within Node.js. - If there is no [`package.json`][] file present in the directory, or if the [`"main"`][] entry is missing or cannot be resolved, then Node.js will attempt to load an `index.js` or `index.node` file out of that @@ -472,6 +470,11 @@ with the default error: Error: Cannot find module 'some-library' ``` +In all three above cases, an `import('./some-library')` call would result in a +[`ERR_UNSUPPORTED_DIR_IMPORT`][] error. Using package [subpath exports][] or +[subpath imports][] can provide the same containment organization benefits as +folders as modules, and work for both `require` and `import`. + ## Loading from `node_modules` folders @@ -1080,6 +1083,7 @@ This section was moved to [`"main"`]: packages.md#main [`"type"`]: packages.md#type [`ERR_REQUIRE_ESM`]: errors.md#err_require_esm +[`ERR_UNSUPPORTED_DIR_IMPORT`]: errors.md#err_unsupported_dir_import [`Error`]: errors.md#class-error [`__dirname`]: #__dirname [`__filename`]: #__filename @@ -1094,3 +1098,5 @@ This section was moved to [exports shortcut]: #exports-shortcut [module resolution]: #all-together [native addons]: addons.md +[subpath exports]: packages.md#subpath-exports +[subpath imports]: packages.md#subpath-imports From 65910c0d6cdbca6d8efa919378d72eff34016f35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Sun, 16 Jan 2022 18:02:19 +0000 Subject: [PATCH 043/161] tls: represent registeredID numerically always Refs: https://github.com/nodejs/node/commit/466e5415a2b7b3574ab5403acb87e89a94a980d1 PR-URL: https://github.com/nodejs/node/pull/41561 Reviewed-By: Matteo Collina Reviewed-By: Rich Trott Reviewed-By: Filip Skokan Reviewed-By: James M Snell --- src/crypto/crypto_common.cc | 7 +++---- test/parallel/test-x509-escaping.js | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/crypto/crypto_common.cc b/src/crypto/crypto_common.cc index 53d9d949457c8f..b7f0dbcf8b676a 100644 --- a/src/crypto/crypto_common.cc +++ b/src/crypto/crypto_common.cc @@ -773,11 +773,10 @@ static bool PrintGeneralName(const BIOPointer& out, const GENERAL_NAME* gen) { #endif } } else if (gen->type == GEN_RID) { - // TODO(tniessen): unlike OpenSSL's default implementation, never print the - // OID as text and instead always print its numeric representation, which is - // backward compatible in practice and more future proof (see OBJ_obj2txt). + // Unlike OpenSSL's default implementation, never print the OID as text and + // instead always print its numeric representation. char oline[256]; - i2t_ASN1_OBJECT(oline, sizeof(oline), gen->d.rid); + OBJ_obj2txt(oline, sizeof(oline), gen->d.rid, true); BIO_printf(out.get(), "Registered ID:%s", oline); } else if (gen->type == GEN_OTHERNAME) { // TODO(tniessen): the format that is used here is based on OpenSSL's diff --git a/test/parallel/test-x509-escaping.js b/test/parallel/test-x509-escaping.js index ba11dde79b0821..4c05e2bdb7337c 100644 --- a/test/parallel/test-x509-escaping.js +++ b/test/parallel/test-x509-escaping.js @@ -81,9 +81,9 @@ const { hasOpenSSL3 } = common; hasOpenSSL3 ? 'DirName:"/C=DE/L=Berlin\\\\/CN=good.example.com"' : 'DirName:/C=DE/L=Berlin/CN=good.example.com', - // TODO(tniessen): even OIDs that are well-known (such as the following, - // which is sha256WithRSAEncryption) should be represented numerically only. - 'Registered ID:sha256WithRSAEncryption', + // Even OIDs that are well-known (such as the following, which is + // sha256WithRSAEncryption) should be represented numerically only. + 'Registered ID:1.2.840.113549.1.1.11', // This is an OID that will likely never be assigned to anything, thus // OpenSSL should not know it. 'Registered ID:1.3.9999.12.34', From a199387f045aa55b58c6d2e52bb69bf32c9d3d5e Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Wed, 5 Jan 2022 13:26:30 -0500 Subject: [PATCH 044/161] doc: make contributing info more discoverable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are been several discussions in recent PRs about the docs related to contributing not being very discoverable. Move these docs from doc/guides/ to doc/contributing. Signed-off-by: Michael Dawson PR-URL: https://github.com/nodejs/node/pull/41408 Reviewed-By: Franziska Hinkelmann Reviewed-By: Michaël Zasso Reviewed-By: Derek Lewis Reviewed-By: Mary Marchini Reviewed-By: James M Snell --- .github/CODEOWNERS | 6 ++-- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/auto-start-ci.yml | 2 +- CONTRIBUTING.md | 26 +++++++++--------- GOVERNANCE.md | 4 +-- Makefile | 4 +-- README.md | 6 ++-- benchmark/README.md | 8 +++--- deps/openssl/README.md | 2 +- .../adding-new-napi-api.md | 0 .../backporting-to-release-lines.md | 0 .../building-node-with-ninja.md | 0 .../contributing/code-of-conduct.md | 0 .../collaborator-guide.md | 6 ++-- doc/{guides => contributing}/commit-queue.md | 0 .../components-in-core.md | 0 .../cpp-style-guide.md | 2 +- .../diagnostic-tooling-support-tiers.md | 0 .../doc_img/compare-boxplot.png | Bin .../doc_img/scatter-plot.png | Bin doc/{guides => contributing}/internal-api.md | 0 .../investigating_native_memory_leak.md | 0 doc/{guides => }/contributing/issues.md | 0 .../maintaining-V8.md | 0 .../maintaining-c-ares.md | 2 +- .../maintaining-icu.md | 0 .../maintaining-npm.md | 0 .../maintaining-openssl.md | 0 .../maintaining-root-certs.md | 0 .../maintaining-the-build-files.md | 0 .../maintaining-zlib.md | 2 +- .../node-postmortem-support.md | 0 doc/{guides => contributing}/offboarding.md | 0 .../contributing/pull-requests.md | 16 +++++------ doc/{guides => contributing}/releases.md | 2 +- .../security-release-process.md | 0 .../security-steward-on-off-boarding.md | 0 .../static-analysis.md | 0 .../strategic-initiatives.md | 0 .../technical-priorities.md | 0 .../technical-values.md | 0 .../using-internal-errors.md | 0 doc/{guides => contributing}/using-symbols.md | 0 .../writing-and-running-benchmarks.md | 0 doc/{guides => contributing}/writing-tests.md | 0 onboarding.md | 10 +++---- src/README.md | 2 +- src/base_object.h | 2 +- src/env.h | 2 +- src/handle_wrap.h | 2 +- src/req_wrap.h | 2 +- test/README.md | 4 +-- tools/icu/README.md | 4 +-- 53 files changed, 58 insertions(+), 60 deletions(-) rename doc/{guides => contributing}/adding-new-napi-api.md (100%) rename doc/{guides => contributing}/backporting-to-release-lines.md (100%) rename doc/{guides => contributing}/building-node-with-ninja.md (100%) rename doc/{guides => }/contributing/code-of-conduct.md (100%) rename doc/{guides => contributing}/collaborator-guide.md (99%) rename doc/{guides => contributing}/commit-queue.md (100%) rename doc/{guides => contributing}/components-in-core.md (100%) rename doc/{guides => contributing}/cpp-style-guide.md (99%) rename doc/{guides => contributing}/diagnostic-tooling-support-tiers.md (100%) rename doc/{guides => contributing}/doc_img/compare-boxplot.png (100%) rename doc/{guides => contributing}/doc_img/scatter-plot.png (100%) rename doc/{guides => contributing}/internal-api.md (100%) rename doc/{guides => contributing}/investigating_native_memory_leak.md (100%) rename doc/{guides => }/contributing/issues.md (100%) rename doc/{guides => contributing}/maintaining-V8.md (100%) rename doc/{guides => contributing}/maintaining-c-ares.md (96%) rename doc/{guides => contributing}/maintaining-icu.md (100%) rename doc/{guides => contributing}/maintaining-npm.md (100%) rename doc/{guides => contributing}/maintaining-openssl.md (100%) rename doc/{guides => contributing}/maintaining-root-certs.md (100%) rename doc/{guides => contributing}/maintaining-the-build-files.md (100%) rename doc/{guides => contributing}/maintaining-zlib.md (93%) rename doc/{guides => contributing}/node-postmortem-support.md (100%) rename doc/{guides => contributing}/offboarding.md (100%) rename doc/{guides => }/contributing/pull-requests.md (98%) rename doc/{guides => contributing}/releases.md (99%) rename doc/{guides => contributing}/security-release-process.md (100%) rename doc/{guides => contributing}/security-steward-on-off-boarding.md (100%) rename doc/{guides => contributing}/static-analysis.md (100%) rename doc/{guides => contributing}/strategic-initiatives.md (100%) rename doc/{guides => contributing}/technical-priorities.md (100%) rename doc/{guides => contributing}/technical-values.md (100%) rename doc/{guides => contributing}/using-internal-errors.md (100%) rename doc/{guides => contributing}/using-symbols.md (100%) rename doc/{guides => contributing}/writing-and-running-benchmarks.md (100%) rename doc/{guides => contributing}/writing-tests.md (100%) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 393964d59c52cb..4170038a0ac0fc 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -13,9 +13,7 @@ /CODE_OF_CONDUCT.md @nodejs/tsc /CONTRIBUTING.md @nodejs/tsc /LICENSE @nodejs/tsc -/doc/guides/contributing/*.md @nodejs/tsc -/doc/guides/collaborator-guide.md @nodejs/tsc -/doc/guides/offboarding.md @nodejs/tsc +/doc/contributing/*.md @nodejs/tsc # streams @@ -88,7 +86,7 @@ /src/node_api* @nodejs/node-api /src/js_native_api* @nodejs/node-api -/doc/guides/adding-new-napi-api.md @nodejs/node-api +/doc/contributing/adding-new-napi-api.md @nodejs/node-api /doc/api/n-api.md @nodejs/node-api # gyp diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f99a8abb394d14..fe46bf4deadeb7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,7 +3,7 @@ Before submitting a pull request, please read https://github.com/nodejs/node/blob/HEAD/CONTRIBUTING.md. Commit message formatting guidelines: -https://github.com/nodejs/node/blob/HEAD/doc/guides/contributing/pull-requests.md#commit-message-guidelines +https://github.com/nodejs/node/blob/HEAD/doc/contributing/pull-requests.md#commit-message-guidelines For code changes: 1. Include tests for any bug fixes or new features. diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 6c392c5a5a6f5b..632fdc0a970ceb 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -5,7 +5,7 @@ on: # Runs every five minutes (fastest the scheduler can run). Five minutes is # optimistic, it can take longer to run. # To understand why `schedule` is used instead of other events, refer to - # ./doc/guides/commit-queue.md + # ./doc/contributing/commit-queue.md - cron: "*/5 * * * *" env: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d0d3f4f648ef96..f815adbb1fc34b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,28 +5,28 @@ * [Pull Requests](#pull-requests) * [Developer's Certificate of Origin 1.1](#developers-certificate-of-origin) -## [Code of Conduct](./doc/guides/contributing/code-of-conduct.md) +## [Code of Conduct](./doc/contributing/code-of-conduct.md) The Node.js project has a [Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md) to which all contributors must adhere. -See [details on our policy on Code of Conduct](./doc/guides/contributing/code-of-conduct.md). +See [details on our policy on Code of Conduct](./doc/contributing/code-of-conduct.md). -## [Issues](./doc/guides/contributing/issues.md) +## [Issues](./doc/contributing/issues.md) -* [Asking for General Help](./doc/guides/contributing/issues.md#asking-for-general-help) -* [Discussing non-technical topics](./doc/guides/contributing/issues.md#discussing-non-technical-topics) -* [Submitting a Bug Report](./doc/guides/contributing/issues.md#submitting-a-bug-report) -* [Triaging a Bug Report](./doc/guides/contributing/issues.md#triaging-a-bug-report) +* [Asking for General Help](./doc/contributing/issues.md#asking-for-general-help) +* [Discussing non-technical topics](./doc/contributing/issues.md#discussing-non-technical-topics) +* [Submitting a Bug Report](./doc/contributing/issues.md#submitting-a-bug-report) +* [Triaging a Bug Report](./doc/contributing/issues.md#triaging-a-bug-report) -## [Pull Requests](./doc/guides/contributing/pull-requests.md) +## [Pull Requests](./doc/contributing/pull-requests.md) -* [Dependencies](./doc/guides/contributing/pull-requests.md#dependencies) -* [Setting up your local environment](./doc/guides/contributing/pull-requests.md#setting-up-your-local-environment) -* [The Process of Making Changes](./doc/guides/contributing/pull-requests.md#the-process-of-making-changes) -* [Reviewing Pull Requests](./doc/guides/contributing/pull-requests.md#reviewing-pull-requests) -* [Notes](./doc/guides/contributing/pull-requests.md#notes) +* [Dependencies](./doc/contributing/pull-requests.md#dependencies) +* [Setting up your local environment](./doc/contributing/pull-requests.md#setting-up-your-local-environment) +* [The Process of Making Changes](./doc/contributing/pull-requests.md#the-process-of-making-changes) +* [Reviewing Pull Requests](./doc/contributing/pull-requests.md#reviewing-pull-requests) +* [Notes](./doc/contributing/pull-requests.md#notes) diff --git a/GOVERNANCE.md b/GOVERNANCE.md index fb74525eb0ee79..f5f3ffa015ced7 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -25,7 +25,7 @@ Triagers are given the "Triage" GitHub role and have: See: * [List of triagers](./README.md#triagers) -* [A guide for triagers](./doc/guides/contributing/issues.md#triaging-a-bug-report) +* [A guide for triagers](./doc/contributing/issues.md#triaging-a-bug-report) ## Collaborators @@ -54,7 +54,7 @@ result in collaborators removing their opposition. See: * [List of collaborators](./README.md#current-project-team-members) -* [A guide for collaborators](./doc/guides/collaborator-guide.md) +* [A guide for collaborators](./doc/contributing/collaborator-guide.md) ### Collaborator activities diff --git a/Makefile b/Makefile index 7c3e122c206d2e..8b1b1f16014cd9 100644 --- a/Makefile +++ b/Makefile @@ -997,14 +997,14 @@ endif .PHONY: release-only release-only: check-xz @if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \ - echo 'Please update REPLACEME tags in the following doc/api/*.md files (See doc/guides/releases.md):\n' ; \ + echo 'Please update REPLACEME tags in the following doc/api/*.md files (See doc/contributing/releases.md):\n' ; \ REPLACEMES="$(shell grep -l REPLACEME doc/api/*.md)" ; \ echo "$$REPLACEMES\n" | tr " " "\n" ; \ exit 1 ; \ fi @if [ "$(DISTTYPE)" = "release" ] && \ `grep -q DEP...X doc/api/deprecations.md`; then \ - echo 'Please update DEP...X in doc/api/deprecations.md (See doc/guides/releases.md)' ; \ + echo 'Please update DEP...X in doc/api/deprecations.md (See doc/contributing/releases.md)' ; \ exit 1 ; \ fi @if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \ diff --git a/README.md b/README.md index 53de55288a06a9..93f803420eecf6 100644 --- a/README.md +++ b/README.md @@ -635,7 +635,7 @@ For information about the governance of the Node.js project, see -Collaborators follow the [Collaborator Guide](./doc/guides/collaborator-guide.md) in +Collaborators follow the [Collaborator Guide](./doc/contributing/collaborator-guide.md) in maintaining the Node.js project. ### Triagers @@ -741,6 +741,6 @@ license text. [Contributing to the project]: CONTRIBUTING.md [Node.js Website]: https://nodejs.org/ [OpenJS Foundation]: https://openjsf.org/ -[Strategic initiatives]: doc/guides/strategic-initiatives.md -[Technical values and prioritization]: doc/guides/technical-values.md +[Strategic initiatives]: doc/contributing/strategic-initiatives.md +[Technical values and prioritization]: doc/contributing/technical-values.md [Working Groups]: https://github.com/nodejs/TSC/blob/HEAD/WORKING_GROUPS.md diff --git a/benchmark/README.md b/benchmark/README.md index e40972fde08ac9..710731b3c9f0fd 100644 --- a/benchmark/README.md +++ b/benchmark/README.md @@ -5,7 +5,7 @@ of different Node.js implementations and different ways of writing JavaScript run by the built-in JavaScript engine. For a detailed guide on how to write and run benchmarks in this -directory, see [the guide on benchmarks](../doc/guides/writing-and-running-benchmarks.md). +directory, see [the guide on benchmarks](../doc/contributing/writing-and-running-benchmarks.md). ## Table of Contents @@ -77,17 +77,17 @@ writing benchmarks. ### `createBenchmark(fn, configs[, options])` -See [the guide on writing benchmarks](../doc/guides/writing-and-running-benchmarks.md#basics-of-a-benchmark). +See [the guide on writing benchmarks](../doc/contributing/writing-and-running-benchmarks.md#basics-of-a-benchmark). ### `default_http_benchmarker` The default benchmarker used to run HTTP benchmarks. -See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating-an-http-benchmark). +See [the guide on writing HTTP benchmarks](../doc/contributing/writing-and-running-benchmarks.md#creating-an-http-benchmark). ### `PORT` The default port used to run HTTP benchmarks. -See [the guide on writing HTTP benchmarks](../doc/guides/writing-and-running-benchmarks.md#creating-an-http-benchmark). +See [the guide on writing HTTP benchmarks](../doc/contributing/writing-and-running-benchmarks.md#creating-an-http-benchmark). ### `sendResult(data)` diff --git a/deps/openssl/README.md b/deps/openssl/README.md index bd0ad0c9949848..225bfba8e7425c 100644 --- a/deps/openssl/README.md +++ b/deps/openssl/README.md @@ -77,4 +77,4 @@ Please refer [config/opensslconf_asm.h](config/opensslconf_asm.h) for details. ### Upgrading OpenSSL -Please refer to [maintaining-openssl](../../doc/guides/maintaining-openssl.md). +Please refer to [maintaining-openssl](../../doc/contributing/maintaining-openssl.md). diff --git a/doc/guides/adding-new-napi-api.md b/doc/contributing/adding-new-napi-api.md similarity index 100% rename from doc/guides/adding-new-napi-api.md rename to doc/contributing/adding-new-napi-api.md diff --git a/doc/guides/backporting-to-release-lines.md b/doc/contributing/backporting-to-release-lines.md similarity index 100% rename from doc/guides/backporting-to-release-lines.md rename to doc/contributing/backporting-to-release-lines.md diff --git a/doc/guides/building-node-with-ninja.md b/doc/contributing/building-node-with-ninja.md similarity index 100% rename from doc/guides/building-node-with-ninja.md rename to doc/contributing/building-node-with-ninja.md diff --git a/doc/guides/contributing/code-of-conduct.md b/doc/contributing/code-of-conduct.md similarity index 100% rename from doc/guides/contributing/code-of-conduct.md rename to doc/contributing/code-of-conduct.md diff --git a/doc/guides/collaborator-guide.md b/doc/contributing/collaborator-guide.md similarity index 99% rename from doc/guides/collaborator-guide.md rename to doc/contributing/collaborator-guide.md index 9911acdd973265..77e88f4a4571f6 100644 --- a/doc/guides/collaborator-guide.md +++ b/doc/contributing/collaborator-guide.md @@ -408,7 +408,7 @@ For pull requests introducing new core modules: Node-API provides an ABI-stable API guaranteed for future Node.js versions. Node-API additions call for unusual care and scrutiny. If a change adds to `node_api.h`, `js_native_api.h`, `node_api_types.h`, or `js_native_api_types.h`, -consult [the relevant guide](https://github.com/nodejs/node/blob/HEAD/doc/guides/adding-new-napi-api.md). +consult [the relevant guide](https://github.com/nodejs/node/blob/HEAD/doc/contributing/adding-new-napi-api.md). ### Deprecations @@ -558,7 +558,7 @@ $ git checkout master ``` Update the tree (assumes your repository is set up as detailed in -[CONTRIBUTING.md](./contributing/pull-requests.md#step-1-fork)): +[CONTRIBUTING.md](./pull-requests.md#step-1-fork)): ```text $ git fetch upstream @@ -925,7 +925,7 @@ need to be attached anymore, as only important bugfixes will be included. [`--throw-deprecation`]: ../api/cli.md#--throw-deprecation [`node-core-utils`]: https://github.com/nodejs/node-core-utils [backporting guide]: backporting-to-release-lines.md -[commit message guidelines]: contributing/pull-requests.md#commit-message-guidelines +[commit message guidelines]: pull-requests.md#commit-message-guidelines [commit-example]: https://github.com/nodejs/node/commit/b636ba8186 [commit-queue.md]: ./commit-queue.md [git-email]: https://help.github.com/articles/setting-your-commit-email-address-in-git/ diff --git a/doc/guides/commit-queue.md b/doc/contributing/commit-queue.md similarity index 100% rename from doc/guides/commit-queue.md rename to doc/contributing/commit-queue.md diff --git a/doc/guides/components-in-core.md b/doc/contributing/components-in-core.md similarity index 100% rename from doc/guides/components-in-core.md rename to doc/contributing/components-in-core.md diff --git a/doc/guides/cpp-style-guide.md b/doc/contributing/cpp-style-guide.md similarity index 99% rename from doc/guides/cpp-style-guide.md rename to doc/contributing/cpp-style-guide.md index 0de0d2ec5baeba..64d0efee911e9d 100644 --- a/doc/guides/cpp-style-guide.md +++ b/doc/contributing/cpp-style-guide.md @@ -403,5 +403,5 @@ even `try` and `catch` **will** break. [Run Time Type Information]: https://en.wikipedia.org/wiki/Run-time_type_information [aliased_buffer.h]: https://github.com/nodejs/node/blob/HEAD/src/aliased_buffer.h#L12 [cppref_auto_ptr]: https://en.cppreference.com/w/cpp/memory/auto_ptr -[errors]: https://github.com/nodejs/node/blob/HEAD/doc/guides/using-internal-errors.md +[errors]: https://github.com/nodejs/node/blob/HEAD/doc/contributing/using-internal-errors.md [without C++ exception handling]: https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_exceptions.html#intro.using.exception.no diff --git a/doc/guides/diagnostic-tooling-support-tiers.md b/doc/contributing/diagnostic-tooling-support-tiers.md similarity index 100% rename from doc/guides/diagnostic-tooling-support-tiers.md rename to doc/contributing/diagnostic-tooling-support-tiers.md diff --git a/doc/guides/doc_img/compare-boxplot.png b/doc/contributing/doc_img/compare-boxplot.png similarity index 100% rename from doc/guides/doc_img/compare-boxplot.png rename to doc/contributing/doc_img/compare-boxplot.png diff --git a/doc/guides/doc_img/scatter-plot.png b/doc/contributing/doc_img/scatter-plot.png similarity index 100% rename from doc/guides/doc_img/scatter-plot.png rename to doc/contributing/doc_img/scatter-plot.png diff --git a/doc/guides/internal-api.md b/doc/contributing/internal-api.md similarity index 100% rename from doc/guides/internal-api.md rename to doc/contributing/internal-api.md diff --git a/doc/guides/investigating_native_memory_leak.md b/doc/contributing/investigating_native_memory_leak.md similarity index 100% rename from doc/guides/investigating_native_memory_leak.md rename to doc/contributing/investigating_native_memory_leak.md diff --git a/doc/guides/contributing/issues.md b/doc/contributing/issues.md similarity index 100% rename from doc/guides/contributing/issues.md rename to doc/contributing/issues.md diff --git a/doc/guides/maintaining-V8.md b/doc/contributing/maintaining-V8.md similarity index 100% rename from doc/guides/maintaining-V8.md rename to doc/contributing/maintaining-V8.md diff --git a/doc/guides/maintaining-c-ares.md b/doc/contributing/maintaining-c-ares.md similarity index 96% rename from doc/guides/maintaining-c-ares.md rename to doc/contributing/maintaining-c-ares.md index 968b96f25820d1..64f29674c4e8a6 100644 --- a/doc/guides/maintaining-c-ares.md +++ b/doc/contributing/maintaining-c-ares.md @@ -62,5 +62,5 @@ Commit the changes with a message like ```text deps: update c-ares to x.y.z -Updated as described in doc/guides/maintaining-c-ares.md. +Updated as described in doc/contributing/maintaining-c-ares.md. ``` diff --git a/doc/guides/maintaining-icu.md b/doc/contributing/maintaining-icu.md similarity index 100% rename from doc/guides/maintaining-icu.md rename to doc/contributing/maintaining-icu.md diff --git a/doc/guides/maintaining-npm.md b/doc/contributing/maintaining-npm.md similarity index 100% rename from doc/guides/maintaining-npm.md rename to doc/contributing/maintaining-npm.md diff --git a/doc/guides/maintaining-openssl.md b/doc/contributing/maintaining-openssl.md similarity index 100% rename from doc/guides/maintaining-openssl.md rename to doc/contributing/maintaining-openssl.md diff --git a/doc/guides/maintaining-root-certs.md b/doc/contributing/maintaining-root-certs.md similarity index 100% rename from doc/guides/maintaining-root-certs.md rename to doc/contributing/maintaining-root-certs.md diff --git a/doc/guides/maintaining-the-build-files.md b/doc/contributing/maintaining-the-build-files.md similarity index 100% rename from doc/guides/maintaining-the-build-files.md rename to doc/contributing/maintaining-the-build-files.md diff --git a/doc/guides/maintaining-zlib.md b/doc/contributing/maintaining-zlib.md similarity index 93% rename from doc/guides/maintaining-zlib.md rename to doc/contributing/maintaining-zlib.md index 4dba29bacf9127..caed2534c69c3b 100644 --- a/doc/guides/maintaining-zlib.md +++ b/doc/contributing/maintaining-zlib.md @@ -32,5 +32,5 @@ Commit the changes with a message like ```text deps: update zlib to upstream d7f3ca9 -Updated as described in doc/guides/maintaining-zlib.md. +Updated as described in doc/contributing/maintaining-zlib.md. ``` diff --git a/doc/guides/node-postmortem-support.md b/doc/contributing/node-postmortem-support.md similarity index 100% rename from doc/guides/node-postmortem-support.md rename to doc/contributing/node-postmortem-support.md diff --git a/doc/guides/offboarding.md b/doc/contributing/offboarding.md similarity index 100% rename from doc/guides/offboarding.md rename to doc/contributing/offboarding.md diff --git a/doc/guides/contributing/pull-requests.md b/doc/contributing/pull-requests.md similarity index 98% rename from doc/guides/contributing/pull-requests.md rename to doc/contributing/pull-requests.md index 95024008645916..00868c4bfc91d9 100644 --- a/doc/guides/contributing/pull-requests.md +++ b/doc/contributing/pull-requests.md @@ -137,8 +137,8 @@ added: REPLACEME ``` For contributing C++ code, you may want to look at the -[C++ Style Guide](../cpp-style-guide.md), as well as the -[README of `src/`](../../../src/README.md) for an overview of Node.js +[C++ Style Guide](cpp-style-guide.md), as well as the +[README of `src/`](../../src/README.md) for an overview of Node.js C++ internals. ### Step 4: Commit @@ -586,16 +586,16 @@ You can find the full list of supported subsystems in the [nodejs/core-validate-commit][] repository. More than one subsystem may be valid for any particular issue or pull request. -[Building guide]: ../../../BUILDING.md +[Building guide]: ../../BUILDING.md [CI (Continuous Integration) test run]: #ci-testing [Code of Conduct]: https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md -[Onboarding guide]: ../../../onboarding.md +[Onboarding guide]: ../../onboarding.md [approved]: #getting-approvals-for-your-pull-request -[benchmark results]: ../writing-and-running-benchmarks.md -[collaborator guide]: ../collaborator-guide.md -[guide for writing tests in Node.js]: ../writing-tests.md +[benchmark results]: writing-and-running-benchmarks.md +[collaborator guide]: collaborator-guide.md +[guide for writing tests in Node.js]: writing-tests.md [hiding-a-comment]: https://help.github.com/articles/managing-disruptive-comments/#hiding-a-comment [https://ci.nodejs.org/]: https://ci.nodejs.org/ [nodejs/core-validate-commit]: https://github.com/nodejs/core-validate-commit/blob/main/lib/rules/subsystem.js [pull request template]: https://raw.githubusercontent.com/nodejs/node/HEAD/.github/PULL_REQUEST_TEMPLATE.md -[running tests]: ../../../BUILDING.md#running-tests +[running tests]: ../../BUILDING.md#running-tests diff --git a/doc/guides/releases.md b/doc/contributing/releases.md similarity index 99% rename from doc/guides/releases.md rename to doc/contributing/releases.md index a3a3b51f8bf85f..042f8283744fd8 100644 --- a/doc/guides/releases.md +++ b/doc/contributing/releases.md @@ -202,7 +202,7 @@ When cherry-picking commits, if there are simple conflicts you can resolve them. Otherwise, add the `backport-requested-vN.x` label to the original PR and post a comment stating that it does not land cleanly and will require a backport PR. You can refer the owner of the PR to the "[Backporting to Release -Lines](https://github.com/nodejs/node/blob/HEAD/doc/guides/backporting-to-release-lines.md)" guide. +Lines](https://github.com/nodejs/node/blob/HEAD/doc/contributing/backporting-to-release-lines.md)" guide. If commits were cherry-picked in this step, check that the test still pass. diff --git a/doc/guides/security-release-process.md b/doc/contributing/security-release-process.md similarity index 100% rename from doc/guides/security-release-process.md rename to doc/contributing/security-release-process.md diff --git a/doc/guides/security-steward-on-off-boarding.md b/doc/contributing/security-steward-on-off-boarding.md similarity index 100% rename from doc/guides/security-steward-on-off-boarding.md rename to doc/contributing/security-steward-on-off-boarding.md diff --git a/doc/guides/static-analysis.md b/doc/contributing/static-analysis.md similarity index 100% rename from doc/guides/static-analysis.md rename to doc/contributing/static-analysis.md diff --git a/doc/guides/strategic-initiatives.md b/doc/contributing/strategic-initiatives.md similarity index 100% rename from doc/guides/strategic-initiatives.md rename to doc/contributing/strategic-initiatives.md diff --git a/doc/guides/technical-priorities.md b/doc/contributing/technical-priorities.md similarity index 100% rename from doc/guides/technical-priorities.md rename to doc/contributing/technical-priorities.md diff --git a/doc/guides/technical-values.md b/doc/contributing/technical-values.md similarity index 100% rename from doc/guides/technical-values.md rename to doc/contributing/technical-values.md diff --git a/doc/guides/using-internal-errors.md b/doc/contributing/using-internal-errors.md similarity index 100% rename from doc/guides/using-internal-errors.md rename to doc/contributing/using-internal-errors.md diff --git a/doc/guides/using-symbols.md b/doc/contributing/using-symbols.md similarity index 100% rename from doc/guides/using-symbols.md rename to doc/contributing/using-symbols.md diff --git a/doc/guides/writing-and-running-benchmarks.md b/doc/contributing/writing-and-running-benchmarks.md similarity index 100% rename from doc/guides/writing-and-running-benchmarks.md rename to doc/contributing/writing-and-running-benchmarks.md diff --git a/doc/guides/writing-tests.md b/doc/contributing/writing-tests.md similarity index 100% rename from doc/guides/writing-tests.md rename to doc/contributing/writing-tests.md diff --git a/onboarding.md b/onboarding.md index eef5ee41e7065e..f17b24c50f15ba 100644 --- a/onboarding.md +++ b/onboarding.md @@ -253,15 +253,15 @@ needs to be pointed out separately during the onboarding. access to the projects coverity project as outlined in [static-analysis][]. [Code of Conduct]: https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md -[Labels]: doc/guides/collaborator-guide.md#labels -[Landing pull requests]: doc/guides/collaborator-guide.md#landing-pull-requests +[Labels]: doc/contributing/collaborator-guide.md#labels +[Landing pull requests]: doc/contributing/collaborator-guide.md#landing-pull-requests [Publicizing or hiding organization membership]: https://help.github.com/articles/publicizing-or-hiding-organization-membership/ -[`author-ready`]: doc/guides/collaborator-guide.md#author-ready-pull-requests +[`author-ready`]: doc/contributing/collaborator-guide.md#author-ready-pull-requests [`core-validate-commit`]: https://github.com/nodejs/core-validate-commit [`git-node`]: https://github.com/nodejs/node-core-utils/blob/HEAD/docs/git-node.md [`node-core-utils`]: https://github.com/nodejs/node-core-utils [set up the credentials]: https://github.com/nodejs/node-core-utils#setting-up-github-credentials -[static-analysis]: doc/guides/static-analysis.md +[static-analysis]: doc/contributing/static-analysis.md [two-factor authentication]: https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/ [using a TOTP mobile app]: https://help.github.com/articles/configuring-two-factor-authentication-via-a-totp-mobile-app/ -[who-to-cc]: doc/guides/collaborator-guide.md#who-to-cc-in-the-issue-tracker +[who-to-cc]: doc/contributing/collaborator-guide.md#who-to-cc-in-the-issue-tracker diff --git a/src/README.md b/src/README.md index 25c63e2f8cc3e5..623c3774971b6e 100644 --- a/src/README.md +++ b/src/README.md @@ -1024,7 +1024,7 @@ static void GetUserInfo(const FunctionCallbackInfo& args) { } ``` -[C++ coding style]: ../doc/guides/cpp-style-guide.md +[C++ coding style]: ../doc/contributing/cpp-style-guide.md [Callback scopes]: #callback-scopes [JavaScript value handles]: #js-handles [N-API]: https://nodejs.org/api/n-api.html diff --git a/src/base_object.h b/src/base_object.h index d46a0f216009c6..1c63da92fd80c0 100644 --- a/src/base_object.h +++ b/src/base_object.h @@ -171,7 +171,7 @@ class BaseObject : public MemoryRetainer { // class because it is used by src/node_postmortem_metadata.cc to calculate // offsets and generate debug symbols for BaseObject, which assumes that the // position of members in memory are predictable. For more information please - // refer to `doc/guides/node-postmortem-support.md` + // refer to `doc/contributing/node-postmortem-support.md` friend int GenDebugSymbols(); friend class CleanupHookCallback; template diff --git a/src/env.h b/src/env.h index dfb5155b9b808b..8689129041618b 100644 --- a/src/env.h +++ b/src/env.h @@ -1561,7 +1561,7 @@ class Environment : public MemoryRetainer { // src/node_postmortem_metadata.cc to calculate offsets and generate debug // symbols for Environment, which assumes that the position of members in // memory are predictable. For more information please refer to - // `doc/guides/node-postmortem-support.md` + // `doc/contributing/node-postmortem-support.md` friend int GenDebugSymbols(); HandleWrapQueue handle_wrap_queue_; ReqWrapQueue req_wrap_queue_; diff --git a/src/handle_wrap.h b/src/handle_wrap.h index ff25db2d9194a3..2e06829b7bd885 100644 --- a/src/handle_wrap.h +++ b/src/handle_wrap.h @@ -106,7 +106,7 @@ class HandleWrap : public AsyncWrap { // class because it is used by src/node_postmortem_metadata.cc to calculate // offsets and generate debug symbols for HandleWrap, which assumes that the // position of members in memory are predictable. For more information please - // refer to `doc/guides/node-postmortem-support.md` + // refer to `doc/contributing/node-postmortem-support.md` friend int GenDebugSymbols(); ListNode handle_wrap_queue_; enum { kInitialized, kClosing, kClosed } state_; diff --git a/src/req_wrap.h b/src/req_wrap.h index 5d7fcb42d01148..611e438275a13a 100644 --- a/src/req_wrap.h +++ b/src/req_wrap.h @@ -66,7 +66,7 @@ class ReqWrap : public AsyncWrap, public ReqWrapBase { // members in memory are predictable. sizeof(req_) depends on the type of T, // so req_wrap_queue_ would no longer be at a fixed offset if it came after // req_. For more information please refer to - // `doc/guides/node-postmortem-support.md` + // `doc/contributing/node-postmortem-support.md` T req_; }; diff --git a/test/README.md b/test/README.md index 0534d0dfb81774..121ecc89b54225 100644 --- a/test/README.md +++ b/test/README.md @@ -3,10 +3,10 @@ This directory contains code and data used to test the Node.js implementation. For a detailed guide on how to write tests in this -directory, see [the guide on writing tests](../doc/guides/writing-tests.md). +directory, see [the guide on writing tests](../doc/contributing/writing-tests.md). On how to run tests in this directory, see -[the contributing guide](../doc/guides/contributing/pull-requests.md#step-6-test). +[the contributing guide](../doc/contributing/pull-requests.md#step-6-test). For the tests to run on Windows, be sure to clone Node.js source code with the `autocrlf` git config flag set to true. diff --git a/tools/icu/README.md b/tools/icu/README.md index 544f4bf2152ff0..2e908e2cf44750 100644 --- a/tools/icu/README.md +++ b/tools/icu/README.md @@ -27,8 +27,8 @@ Note: ## See Also -* [docs/guides/maintaining-icu.md](../../doc/guides/maintaining-icu.md) for - information on maintaining ICU in Node.js +* [docs/guides/maintaining-icu.md](../../doc/contributing/maintaining-icu.md) + for information on maintaining ICU in Node.js * [docs/api/intl.md](../../doc/api/intl.md) for information on the internationalization-related APIs in Node.js From 81e88f27b7199bafc9e26bb1def2d06bac2b9fad Mon Sep 17 00:00:00 2001 From: Shi Pujin Date: Wed, 19 Jan 2022 03:39:50 +0800 Subject: [PATCH 045/161] build: add loong64 configure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41323 Reviewed-By: Michaël Zasso Reviewed-By: Tobias Nießen Reviewed-By: Michael Dawson Reviewed-By: Richard Lau Reviewed-By: James M Snell Reviewed-By: Mary Marchini --- configure.py | 4 +++- tools/v8_gypfiles/toolchain.gypi | 5 +++++ tools/v8_gypfiles/v8.gyp | 22 +++++++++++++++++++++- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index c17e3c6dfaab34..44929db5f1a873 100755 --- a/configure.py +++ b/configure.py @@ -47,7 +47,8 @@ valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux', 'android', 'aix', 'cloudabi') valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc', - 'ppc64', 'x32','x64', 'x86', 'x86_64', 's390x', 'riscv64') + 'ppc64', 'x32','x64', 'x86', 'x86_64', 's390x', 'riscv64', + 'loong64') valid_arm_float_abi = ('soft', 'softfp', 'hard') valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon') valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx') @@ -1075,6 +1076,7 @@ def host_arch_cc(): '__x86_64__' : 'x64', '__s390x__' : 's390x', '__riscv' : 'riscv', + '__loongarch64': 'loong64', } rtn = 'ia32' # default diff --git a/tools/v8_gypfiles/toolchain.gypi b/tools/v8_gypfiles/toolchain.gypi index d10525af57c7f2..d66672d43f12a7 100644 --- a/tools/v8_gypfiles/toolchain.gypi +++ b/tools/v8_gypfiles/toolchain.gypi @@ -280,6 +280,11 @@ 'CAN_USE_FPU_INSTRUCTIONS' ], }], + ['v8_target_arch=="loong64"', { + 'defines': [ + 'V8_TARGET_ARCH_LOONG64', + ], + }], ['v8_target_arch=="s390x"', { 'defines': [ 'V8_TARGET_ARCH_S390', diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp index 00306045c9d51e..0ba58b8d14a1d1 100644 --- a/tools/v8_gypfiles/v8.gyp +++ b/tools/v8_gypfiles/v8.gyp @@ -292,6 +292,11 @@ '<(V8_ROOT)/src/builtins/riscv64/builtins-riscv64.cc', ], }], + ['v8_target_arch=="loong64" or v8_target_arch=="loong64"', { + 'sources': [ + '<(V8_ROOT)/src/builtins/loong64/builtins-loong64.cc', + ], + }], ['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', { 'sources': [ '<(V8_ROOT)/src/builtins/mips64/builtins-mips64.cc', @@ -647,6 +652,11 @@ ' Date: Thu, 6 Jan 2022 22:04:30 -0800 Subject: [PATCH 046/161] process: ignore asyncId 0 in exception handler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Today, the global uncaught exception handler is the only place where asyncId 0 is not ignored and we still proceed to call emitAfter. This would've already failed one of our correctness tests in async_hooks if not for some other code meant to handle a different edge case. Fixes: https://github.com/nodejs/node/issues/22982 PR-URL: https://github.com/nodejs/node/pull/41424 Reviewed-By: Gerhard Stöbich Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell --- lib/internal/process/execution.js | 9 +++++++-- test/async-hooks/init-hooks.js | 3 --- .../test-unhandled-exception-valid-ids.js | 17 +++++++++++++++++ 3 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 test/async-hooks/test-unhandled-exception-valid-ids.js diff --git a/lib/internal/process/execution.js b/lib/internal/process/execution.js index 2bed5f3c762cf0..1311349951c5b9 100644 --- a/lib/internal/process/execution.js +++ b/lib/internal/process/execution.js @@ -20,7 +20,8 @@ const { clearAsyncIdStack, hasAsyncIdStack, afterHooksExist, - emitAfter + emitAfter, + popAsyncContext, } = require('internal/async_hooks'); // shouldAbortOnUncaughtToggle is a typed array for faster @@ -183,7 +184,11 @@ function createOnGlobalUncaughtException() { // Emit the after() hooks now that the exception has been handled. if (afterHooksExist()) { do { - emitAfter(executionAsyncId()); + const asyncId = executionAsyncId(); + if (asyncId === 0) + popAsyncContext(0); + else + emitAfter(asyncId); } while (hasAsyncIdStack()); } // And completely empty the id stack, including anything that may be diff --git a/test/async-hooks/init-hooks.js b/test/async-hooks/init-hooks.js index 59ecc96b881a5a..5d697036602902 100644 --- a/test/async-hooks/init-hooks.js +++ b/test/async-hooks/init-hooks.js @@ -168,9 +168,6 @@ class ActivityCollector { } const err = new Error(`Found a handle whose ${hook}` + ' hook was invoked but not its init hook'); - // Don't throw if we see invocations due to an assertion in a test - // failing since we want to list the assertion failure instead - if (/process\._fatalException/.test(err.stack)) return null; throw err; } return h; diff --git a/test/async-hooks/test-unhandled-exception-valid-ids.js b/test/async-hooks/test-unhandled-exception-valid-ids.js new file mode 100644 index 00000000000000..09e5823452fd4d --- /dev/null +++ b/test/async-hooks/test-unhandled-exception-valid-ids.js @@ -0,0 +1,17 @@ +'use strict'; + +const common = require('../common'); +const initHooks = require('./init-hooks'); + +const hooks = initHooks(); +hooks.enable(); + +setImmediate(() => { + throw new Error(); +}); + +setTimeout(() => { + throw new Error(); +}, 1); + +process.on('uncaughtException', common.mustCall(2)); From b9258e5e81408c02a7efe14207960ba7ea12f5ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Tue, 18 Jan 2022 20:39:36 +0100 Subject: [PATCH 047/161] test: fix typo in test_js_native_api_v8 PR-URL: https://github.com/nodejs/node/pull/41584 Reviewed-By: Richard Lau Reviewed-By: Michael Dawson Reviewed-By: Mestery Reviewed-By: Colin Ihrig Reviewed-By: Antoine du Hamel --- test/cctest/test_js_native_api_v8.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cctest/test_js_native_api_v8.cc b/test/cctest/test_js_native_api_v8.cc index 2d95c86d09d5d5..06de770089d9e6 100644 --- a/test/cctest/test_js_native_api_v8.cc +++ b/test/cctest/test_js_native_api_v8.cc @@ -74,7 +74,7 @@ TEST_F(JsNativeApiV8Test, Reference) { // We can hardly trigger a non-forced Garbage Collection in a stable way. // Here we just invoke the weak callbacks directly. - // The persistant handles should be reset in the weak callback in respect + // The persistent handles should be reset in the weak callback in respect // to the API contract of v8 weak callbacks. v8::WeakCallbackInfo data( reinterpret_cast(isolate_), From dbc6e39ca7306b0998beb683193483bf9c898100 Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Wed, 19 Jan 2022 06:28:32 +0100 Subject: [PATCH 048/161] esm: improve validation of resolved URLs PR-URL: https://github.com/nodejs/node/pull/41446 Reviewed-By: Bradley Farias Reviewed-By: Geoffrey Booth Reviewed-By: Guy Bedford --- lib/internal/modules/esm/loader.js | 7 +++++-- test/es-module/test-esm-loader-invalid-url.mjs | 6 +----- test/fixtures/es-module-loaders/hooks-custom.mjs | 15 ++++++++------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index 91f570297be341..1707db8b1857fa 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -29,7 +29,7 @@ const { ERR_INVALID_RETURN_VALUE, ERR_UNKNOWN_MODULE_FORMAT } = require('internal/errors').codes; -const { pathToFileURL, isURLInstance } = require('internal/url'); +const { pathToFileURL, isURLInstance, URL } = require('internal/url'); const { isAnyArrayBuffer, isArrayBufferView, @@ -558,7 +558,8 @@ class ESMLoader { format, ); } - if (typeof url !== 'string') { + + if (typeof url !== 'string') { // non-strings can be coerced to a url string throw new ERR_INVALID_RETURN_PROPERTY_VALUE( 'string', 'loader resolve', @@ -567,6 +568,8 @@ class ESMLoader { ); } + new URL(url); // Intentionally trigger error if `url` is invalid + return { format, url, diff --git a/test/es-module/test-esm-loader-invalid-url.mjs b/test/es-module/test-esm-loader-invalid-url.mjs index 7dce946da2c3c3..6294e57404c8bb 100644 --- a/test/es-module/test-esm-loader-invalid-url.mjs +++ b/test/es-module/test-esm-loader-invalid-url.mjs @@ -4,11 +4,7 @@ import assert from 'assert'; import('../fixtures/es-modules/test-esm-ok.mjs') .then(assert.fail, (error) => { - expectsError({ - code: 'ERR_INVALID_URL', - message: 'Invalid URL' - })(error); - + expectsError({ code: 'ERR_INVALID_URL' })(error); assert.strictEqual(error.input, '../fixtures/es-modules/test-esm-ok.mjs'); }) .then(mustCall()); diff --git a/test/fixtures/es-module-loaders/hooks-custom.mjs b/test/fixtures/es-module-loaders/hooks-custom.mjs index cd9d5020ad3234..5173b97387905a 100644 --- a/test/fixtures/es-module-loaders/hooks-custom.mjs +++ b/test/fixtures/es-module-loaders/hooks-custom.mjs @@ -1,3 +1,4 @@ +import { pathToFileURL } from 'node:url'; import count from '../es-modules/stateful.mjs'; @@ -24,28 +25,28 @@ export function load(url, context, next) { format: 'module', }); - if (url === 'esmHook/badReturnVal.mjs') return 'export function returnShouldBeObject() {}'; + if (url.endsWith('esmHook/badReturnVal.mjs')) return 'export function returnShouldBeObject() {}'; - if (url === 'esmHook/badReturnFormatVal.mjs') return { + if (url.endsWith('esmHook/badReturnFormatVal.mjs')) return { format: Array(0), source: '', } - if (url === 'esmHook/unsupportedReturnFormatVal.mjs') return { + if (url.endsWith('esmHook/unsupportedReturnFormatVal.mjs')) return { format: 'foo', // Not one of the allowable inputs: no translator named 'foo' source: '', } - if (url === 'esmHook/badReturnSourceVal.mjs') return { + if (url.endsWith('esmHook/badReturnSourceVal.mjs')) return { format: 'module', source: Array(0), } - if (url === 'esmHook/preknownFormat.pre') return { + if (url.endsWith('esmHook/preknownFormat.pre')) return { format: context.format, source: `const msg = 'hello world'; export default msg;` }; - if (url === 'esmHook/virtual.mjs') return { + if (url.endsWith('esmHook/virtual.mjs')) return { format: 'module', source: `export const message = 'Woohoo!'.toUpperCase();`, }; @@ -62,7 +63,7 @@ export function resolve(specifier, context, next) { if (specifier.startsWith('esmHook')) return { format, - url: specifier, + url: pathToFileURL(specifier).href, importAssertions: context.importAssertions, }; From 26398575dc5b5155e7d31e961aaf5f189d584e08 Mon Sep 17 00:00:00 2001 From: Daoming Qiu Date: Wed, 12 Jan 2022 12:08:16 +0800 Subject: [PATCH 049/161] build: add --v8-enable-hugepage flag PR-URL: https://github.com/nodejs/node/pull/41487 Reviewed-By: James M Snell Reviewed-By: Jiawen Geng --- common.gypi | 3 +++ configure.py | 11 ++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/common.gypi b/common.gypi index dd89f1c929075e..880f59acbfe998 100644 --- a/common.gypi +++ b/common.gypi @@ -66,6 +66,9 @@ 'v8_enable_pointer_compression%': 0, 'v8_enable_31bit_smis_on_64bit_arch%': 0, + # Disable v8 hugepage by default. + 'v8_enable_hugepage%': 0, + # This is more of a V8 dev setting # https://github.com/nodejs/node/pull/22920/files#r222779926 'v8_enable_fast_mksnapshot': 0, diff --git a/configure.py b/configure.py index 44929db5f1a873..1bd24a4a8e35db 100755 --- a/configure.py +++ b/configure.py @@ -776,6 +776,13 @@ default=True, help='compile V8 with auxiliar functions for native debuggers') +parser.add_argument('--v8-enable-hugepage', + action='store_true', + dest='v8_enable_hugepage', + default=None, + help='Enable V8 transparent hugepage support. This feature is only '+ + 'available on Linux platform.') + parser.add_argument('--node-builtin-modules-path', action='store', dest='node_builtin_modules_path', @@ -1434,7 +1441,9 @@ def configure_v8(o): raise Exception('--enable-d8 is incompatible with --without-bundled-v8.') if options.static_zoslib_gyp: o['variables']['static_zoslib_gyp'] = options.static_zoslib_gyp - + if flavor != 'linux' and options.v8_enable_hugepage: + raise Exception('--v8-enable-hugepage is supported only on linux.') + o['variables']['v8_enable_hugepage'] = 1 if options.v8_enable_hugepage else 0 def configure_openssl(o): variables = o['variables'] From 22792c8632fd17b151aa374c555b66bfc7c2022b Mon Sep 17 00:00:00 2001 From: Gang Chen <13298548+MoonBall@users.noreply.github.com> Date: Wed, 19 Jan 2022 19:26:38 +0800 Subject: [PATCH 050/161] domain: pass opts to `EventEmitter.init` PR-URL: https://github.com/nodejs/node/pull/41414 Fixes: https://github.com/nodejs/node/issues/41391 Reviewed-By: Colin Ihrig Reviewed-By: Yongsheng Zhang Reviewed-By: Anatoli Papirovski Reviewed-By: Antoine du Hamel --- lib/domain.js | 4 ++-- lib/events.js | 2 ++ test/parallel/test-domain-ee.js | 8 ++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/lib/domain.js b/lib/domain.js index fcc8bb0a6dbc69..fbce94bad5fe28 100644 --- a/lib/domain.js +++ b/lib/domain.js @@ -446,7 +446,7 @@ Domain.prototype.bind = function(cb) { EventEmitter.usingDomains = true; const eventInit = EventEmitter.init; -EventEmitter.init = function() { +EventEmitter.init = function(opts) { ObjectDefineProperty(this, 'domain', { configurable: true, enumerable: false, @@ -457,7 +457,7 @@ EventEmitter.init = function() { this.domain = exports.active; } - return FunctionPrototypeCall(eventInit, this); + return FunctionPrototypeCall(eventInit, this, opts); }; const eventEmit = EventEmitter.prototype.emit; diff --git a/lib/events.js b/lib/events.js index 48a080d3460eed..f722b17aecae0d 100644 --- a/lib/events.js +++ b/lib/events.js @@ -321,6 +321,8 @@ EventEmitter.setMaxListeners = } }; +// If you're updating this function definition, please also update any +// re-definitions, such as the one in the Domain module (lib/domain.js). EventEmitter.init = function(opts) { if (this._events === undefined || diff --git a/test/parallel/test-domain-ee.js b/test/parallel/test-domain-ee.js index bc53f78445d7ac..a42ccff7181643 100644 --- a/test/parallel/test-domain-ee.js +++ b/test/parallel/test-domain-ee.js @@ -18,3 +18,11 @@ d.on('error', common.mustCall((err) => { d.add(e); e.emit('error', new Error('foobar')); + +{ + // Ensure initial params pass to origin `EventEmitter.init` function + const e = new EventEmitter({ captureRejections: true }); + const kCapture = Object.getOwnPropertySymbols(e) + .find((it) => it.description === 'kCapture'); + assert.strictEqual(e[kCapture], true); +} From 119519e1da2be1f180e8d66bd0bb79403624ea73 Mon Sep 17 00:00:00 2001 From: Giora Guttsait Date: Wed, 19 Jan 2022 16:22:43 +0200 Subject: [PATCH 051/161] doc: remove redunant `await` calls from stream docs PR-URL: https://github.com/nodejs/node/pull/41592 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Nitzan Uziely Reviewed-By: Mestery Reviewed-By: Colin Ihrig --- doc/api/stream.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 43e5da5206b67e..6444df9f3fcec3 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1771,7 +1771,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).map((x) => x * 2)) { } // With an asynchronous mapper, making at most 2 queries at a time. const resolver = new Resolver(); -const dnsResults = await Readable.from([ +const dnsResults = Readable.from([ 'nodejs.org', 'openjsf.org', 'www.linuxfoundation.org', @@ -1816,7 +1816,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).filter((x) => x > 2)) { } // With an asynchronous predicate, making at most 2 queries at a time. const resolver = new Resolver(); -const dnsResults = await Readable.from([ +const dnsResults = Readable.from([ 'nodejs.org', 'openjsf.org', 'www.linuxfoundation.org', @@ -1874,7 +1874,7 @@ for await (const item of Readable.from([1, 2, 3, 4]).filter((x) => x > 2)) { } // With an asynchronous predicate, making at most 2 queries at a time. const resolver = new Resolver(); -const dnsResults = await Readable.from([ +const dnsResults = Readable.from([ 'nodejs.org', 'openjsf.org', 'www.linuxfoundation.org', From da1b59fc1388f8bffab870d80efa96db49439b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Mon, 17 Jan 2022 14:35:47 +0000 Subject: [PATCH 052/161] crypto: support RFC 2818 compatible checkHost The 'subject' option should not only accept the values 'always' and 'never' because neither is compatible with RFC 2818, i.e., HTTPS. This change adds a third value 'default', which implies the behavior that HTTPS mandates. The new 'default' case matches the default behavior of OpenSSL for both DNS names and email addresses. Future Node.js versions should change the default option value from 'always' to 'default'. Refs: https://github.com/nodejs/node/pull/36804 PR-URL: https://github.com/nodejs/node/pull/41569 Reviewed-By: James M Snell Reviewed-By: Colin Ihrig --- doc/api/crypto.md | 38 +++++++++++++++++++++++++++-- lib/internal/crypto/x509.js | 4 ++- test/parallel/test-x509-escaping.js | 18 ++++++++++++++ 3 files changed, 57 insertions(+), 3 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 3efc08631e0b22..4d9493ac5dee5c 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2471,11 +2471,16 @@ added: v15.6.0 * `email` {string} * `options` {Object} - * `subject` {string} `'always'` or `'never'`. **Default:** `'always'`. + * `subject` {string} `'default'`, `'always'`, or `'never'`. + **Default:** `'always'`. * `wildcards` {boolean} **Default:** `true`. * `partialWildcards` {boolean} **Default:** `true`. * `multiLabelWildcards` {boolean} **Default:** `false`. @@ -2485,15 +2490,31 @@ added: v15.6.0 Checks whether the certificate matches the given email address. +If the `'subject'` option is set to `'always'` and if the subject alternative +name extension either does not exist or does not contain a matching email +address, the certificate subject is considered. + +If the `'subject'` option is set to `'default`', the certificate subject is only +considered if the subject alternative name extension either does not exist or +does not contain any email addresses. + +If the `'subject'` option is set to `'never'`, the certificate subject is never +considered, even if the certificate contains no subject alternative names. + ### `x509.checkHost(name[, options])` * `name` {string} * `options` {Object} - * `subject` {string} `'always'` or `'never'`. **Default:** `'always'`. + * `subject` {string} `'default'`, `'always'`, or `'never'`. + **Default:** `'always'`. * `wildcards` {boolean} **Default:** `true`. * `partialWildcards` {boolean} **Default:** `true`. * `multiLabelWildcards` {boolean} **Default:** `false`. @@ -2509,6 +2530,18 @@ or it might contain wildcards (e.g., `*.example.com`). Because host name comparisons are case-insensitive, the returned subject name might also differ from the given `name` in capitalization. +If the `'subject'` option is set to `'always'` and if the subject alternative +name extension either does not exist or does not contain a matching DNS name, +the certificate subject is considered. + +If the `'subject'` option is set to `'default'`, the certificate subject is only +considered if the subject alternative name extension either does not exist or +does not contain any DNS names. This behavior is consistent with [RFC 2818][] +("HTTP Over TLS"). + +If the `'subject'` option is set to `'never'`, the certificate subject is never +considered, even if the certificate contains no subject alternative names. + ### `x509.checkIP(ip[, options])` * `ip` {string} -* `options` {Object} - * `subject` {string} `'always'` or `'never'`. **Default:** `'always'`. - * `wildcards` {boolean} **Default:** `true`. - * `partialWildcards` {boolean} **Default:** `true`. - * `multiLabelWildcards` {boolean} **Default:** `false`. - * `singleLabelSubdomains` {boolean} **Default:** `false`. * Returns: {string|undefined} Returns `ip` if the certificate matches, `undefined` if it does not. Checks whether the certificate matches the given IP address (IPv4 or IPv6). +Only [RFC 5280][] `iPAddress` subject alternative names are considered, and they +must match the given `ip` address exactly. Other subject alternative names as +well as the subject field of the certificate are ignored. + ### `x509.checkIssued(otherCert)` + +> Stability: 1 - Experimental + +* `options` {Object} + * `signal` {AbortSignal} allows cancelling the toArray operation if the + signal is aborted. +* Returns: {Promise} a promise containing an array (if the stream is in + object mode) or Buffer with the contents of the stream. + +This method allows easily obtaining the contents of a stream. If the +stream is in [object mode][object-mode] an array of its contents is returned. +If the stream is not in object mode a Buffer containing its data is returned. + +As this method reads the entire stream into memory, it negates the benefits of +streams. It's intended for interoperability and convenience, not as the primary +way to consume streams. + +```mjs +import { Readable } from 'stream'; +import { Resolver } from 'dns/promises'; + +await Readable.from([1, 2, 3, 4]).toArray(); // [1, 2, 3, 4] + +// Make dns queries concurrently using .map and collect +// the results into an aray using toArray +const dnsResults = await Readable.from([ + 'nodejs.org', + 'openjsf.org', + 'www.linuxfoundation.org', +]).map(async (domain) => { + const { address } = await resolver.resolve4(domain, { ttl: true }); + return address; +}, { concurrency: 2 }).toArray(); +``` + ### Duplex and transform streams #### Class: `stream.Duplex` diff --git a/lib/internal/streams/operators.js b/lib/internal/streams/operators.js index c9581f7b6dfe6c..2649966fd403ac 100644 --- a/lib/internal/streams/operators.js +++ b/lib/internal/streams/operators.js @@ -1,6 +1,8 @@ 'use strict'; const { AbortController } = require('internal/abort_controller'); +const { Buffer } = require('buffer'); + const { codes: { ERR_INVALID_ARG_TYPE, @@ -10,6 +12,7 @@ const { const { validateInteger } = require('internal/validators'); const { + ArrayPrototypePush, MathFloor, Promise, PromiseReject, @@ -174,6 +177,19 @@ async function * filter(fn, options) { yield* this.map(filterFn, options); } +async function toArray(options) { + const result = []; + for await (const val of this) { + if (options?.signal?.aborted) { + throw new AbortError({ cause: options.signal.reason }); + } + ArrayPrototypePush(result, val); + } + if (!this.readableObjectMode) { + return Buffer.concat(result); + } + return result; +} module.exports.streamReturningOperators = { filter, map, @@ -181,4 +197,5 @@ module.exports.streamReturningOperators = { module.exports.promiseReturningOperators = { forEach, + toArray, }; diff --git a/test/parallel/test-stream-toArray.js b/test/parallel/test-stream-toArray.js new file mode 100644 index 00000000000000..3bd15e7c0fbf34 --- /dev/null +++ b/test/parallel/test-stream-toArray.js @@ -0,0 +1,79 @@ +'use strict'; + +const common = require('../common'); +const { + Readable, +} = require('stream'); +const assert = require('assert'); + +{ + // Works on a synchronous stream + (async () => { + const tests = [ + [], + [1], + [1, 2, 3], + Array(100).fill().map((_, i) => i), + ]; + for (const test of tests) { + const stream = Readable.from(test); + const result = await stream.toArray(); + assert.deepStrictEqual(result, test); + } + })().then(common.mustCall()); +} + +{ + // Works on a non-object-mode stream and flattens it + (async () => { + const stream = Readable.from( + [Buffer.from([1, 2, 3]), Buffer.from([4, 5, 6])] + , { objectMode: false }); + const result = await stream.toArray(); + assert.strictEqual(Buffer.isBuffer(result), true); + assert.deepStrictEqual(Array.from(result), [1, 2, 3, 4, 5, 6]); + })().then(common.mustCall()); +} + +{ + // Works on an asynchronous stream + (async () => { + const tests = [ + [], + [1], + [1, 2, 3], + Array(100).fill().map((_, i) => i), + ]; + for (const test of tests) { + const stream = Readable.from(test).map((x) => Promise.resolve(x)); + const result = await stream.toArray(); + assert.deepStrictEqual(result, test); + } + })().then(common.mustCall()); +} + +{ + // Support for AbortSignal + const ac = new AbortController(); + let stream; + assert.rejects(async () => { + stream = Readable.from([1, 2, 3]).map(async (x) => { + if (x === 3) { + await new Promise(() => {}); // Explicitly do not pass signal here + } + return Promise.resolve(x); + }); + await stream.toArray({ signal: ac.signal }); + }, { + name: 'AbortError', + }).then(common.mustCall(() => { + // Only stops toArray, does not destory the stream + assert(stream.destroyed, false); + })); + ac.abort(); +} +{ + // Test result is a Promise + const result = Readable.from([1, 2, 3, 4, 5]).toArray(); + assert.strictEqual(result instanceof Promise, true); +} From 270253c4e268c2bef2e5995a95cbd92b75ed698d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Tue, 18 Jan 2022 11:07:27 +0100 Subject: [PATCH 063/161] deps: update V8 to 9.7.106.18 PR-URL: https://github.com/nodejs/node/pull/40907 Reviewed-By: Jiawen Geng Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott --- deps/v8/AUTHORS | 2 + deps/v8/BUILD.bazel | 833 ++++---- deps/v8/BUILD.gn | 65 +- deps/v8/COMMON_OWNERS | 1 - deps/v8/DEPS | 63 +- deps/v8/WORKSPACE | 6 + .../trace_event/common/trace_event_common.h | 11 - deps/v8/bazel/BUILD.icu | 1 - deps/v8/bazel/config/BUILD.bazel | 109 ++ deps/v8/bazel/config/v8-target-cpu.bzl | 61 + deps/v8/bazel/defs.bzl | 242 ++- deps/v8/bazel/v8-non-pointer-compression.bzl | 59 + deps/v8/include/cppgc/allocation.h | 105 +- .../v8/include/cppgc/internal/api-constants.h | 5 + .../include/cppgc/internal/persistent-node.h | 19 +- .../include/cppgc/internal/pointer-policies.h | 8 +- deps/v8/include/libplatform/libplatform.h | 2 +- deps/v8/include/v8-context.h | 2 +- deps/v8/include/v8-cppgc.h | 17 +- deps/v8/include/v8-embedder-heap.h | 2 +- deps/v8/include/v8-exception.h | 2 +- deps/v8/include/v8-fast-api-calls.h | 51 +- deps/v8/include/v8-function.h | 3 + deps/v8/include/v8-initialization.h | 10 + deps/v8/include/v8-inspector.h | 2 +- deps/v8/include/v8-internal.h | 60 +- deps/v8/include/v8-isolate.h | 11 + deps/v8/include/v8-message.h | 14 +- deps/v8/include/v8-metrics.h | 12 +- deps/v8/include/v8-object.h | 5 + deps/v8/include/v8-platform.h | 6 - deps/v8/include/v8-primitive.h | 2 +- deps/v8/include/v8-profiler.h | 2 +- deps/v8/include/v8-script.h | 49 +- deps/v8/include/v8-traced-handle.h | 89 +- deps/v8/include/v8-version.h | 6 +- deps/v8/include/v8-wasm.h | 8 +- deps/v8/include/v8config.h | 13 + deps/v8/infra/mb/mb_config.pyl | 8 +- deps/v8/infra/testing/builders.pyl | 6 +- deps/v8/src/api/api-inl.h | 2 +- deps/v8/src/api/api.cc | 242 ++- deps/v8/src/api/api.h | 6 +- deps/v8/src/asmjs/asm-parser.cc | 6 + deps/v8/src/ast/OWNERS | 1 - deps/v8/src/ast/scopes.cc | 3 +- deps/v8/src/base/bounded-page-allocator.cc | 27 +- deps/v8/src/base/bounded-page-allocator.h | 3 +- deps/v8/src/base/cpu.cc | 7 + deps/v8/src/base/cpu.h | 9 + deps/v8/src/base/platform/platform-aix.cc | 6 + deps/v8/src/base/platform/platform-cygwin.cc | 6 + deps/v8/src/base/platform/platform-freebsd.cc | 6 + deps/v8/src/base/platform/platform-fuchsia.cc | 33 +- deps/v8/src/base/platform/platform-linux.cc | 51 + deps/v8/src/base/platform/platform-macos.cc | 6 + deps/v8/src/base/platform/platform-openbsd.cc | 6 + deps/v8/src/base/platform/platform-qnx.cc | 6 + deps/v8/src/base/platform/platform-solaris.cc | 6 + .../src/base/platform/platform-starboard.cc | 6 + deps/v8/src/base/platform/platform-win32.cc | 38 + deps/v8/src/base/platform/platform.h | 13 + deps/v8/src/base/platform/time.cc | 13 +- .../src/base/sanitizer/lsan-page-allocator.h | 4 + .../src/base/utils/random-number-generator.cc | 1 + deps/v8/src/baseline/baseline-assembler-inl.h | 4 + .../src/baseline/baseline-batch-compiler.cc | 240 ++- .../v8/src/baseline/baseline-batch-compiler.h | 19 +- deps/v8/src/baseline/baseline-compiler.cc | 74 +- deps/v8/src/baseline/baseline-compiler.h | 11 +- deps/v8/src/baseline/baseline.cc | 28 +- .../loong64/baseline-assembler-loong64-inl.h | 7 +- .../mips/baseline-assembler-mips-inl.h | 7 +- .../mips64/baseline-assembler-mips64-inl.h | 7 +- .../baseline/ppc/baseline-assembler-ppc-inl.h | 374 ++++ .../baseline/ppc/baseline-compiler-ppc-inl.h | 27 + .../riscv64/baseline-assembler-riscv64-inl.h | 7 +- .../s390/baseline-assembler-s390-inl.h | 374 ++++ .../s390/baseline-compiler-s390-inl.h | 27 + deps/v8/src/builtins/arm/builtins-arm.cc | 17 + deps/v8/src/builtins/arm64/builtins-arm64.cc | 18 + deps/v8/src/builtins/base.tq | 17 +- deps/v8/src/builtins/builtins-definitions.h | 622 +++++- deps/v8/src/builtins/builtins-handler-gen.cc | 10 + deps/v8/src/builtins/builtins-ic-gen.cc | 28 + deps/v8/src/builtins/builtins-iterator-gen.cc | 4 + .../builtins/builtins-microtask-queue-gen.cc | 2 +- deps/v8/src/builtins/builtins-temporal.cc | 631 +++++++ deps/v8/src/builtins/builtins-typed-array.cc | 2 +- deps/v8/src/builtins/builtins.cc | 44 +- deps/v8/src/builtins/builtins.h | 5 + deps/v8/src/builtins/convert.tq | 3 + deps/v8/src/builtins/ia32/builtins-ia32.cc | 17 + .../src/builtins/loong64/builtins-loong64.cc | 379 ++-- deps/v8/src/builtins/mips/builtins-mips.cc | 384 ++-- .../v8/src/builtins/mips64/builtins-mips64.cc | 384 ++-- deps/v8/src/builtins/number.tq | 3 + deps/v8/src/builtins/ppc/builtins-ppc.cc | 156 +- .../src/builtins/riscv64/builtins-riscv64.cc | 359 ++-- deps/v8/src/builtins/s390/builtins-s390.cc | 166 +- .../src/builtins/setup-builtins-internal.cc | 5 +- .../builtins/typed-array-createtypedarray.tq | 2 +- deps/v8/src/builtins/typed-array-every.tq | 12 +- deps/v8/src/builtins/typed-array-filter.tq | 18 +- deps/v8/src/builtins/typed-array-find.tq | 27 +- deps/v8/src/builtins/typed-array-findindex.tq | 29 +- deps/v8/src/builtins/typed-array-findlast.tq | 28 +- .../src/builtins/typed-array-findlastindex.tq | 31 +- deps/v8/src/builtins/typed-array-foreach.tq | 27 +- deps/v8/src/builtins/typed-array-reduce.tq | 28 +- .../src/builtins/typed-array-reduceright.tq | 29 +- deps/v8/src/builtins/typed-array-some.tq | 12 +- deps/v8/src/builtins/typed-array.tq | 26 +- deps/v8/src/builtins/wasm.tq | 123 +- deps/v8/src/builtins/x64/builtins-x64.cc | 219 +++ deps/v8/src/codegen/OWNERS | 1 - deps/v8/src/codegen/arm/assembler-arm-inl.h | 6 +- deps/v8/src/codegen/arm/assembler-arm.cc | 39 +- deps/v8/src/codegen/arm/assembler-arm.h | 16 - .../arm/interface-descriptors-arm-inl.h | 14 +- .../v8/src/codegen/arm/macro-assembler-arm.cc | 14 + deps/v8/src/codegen/arm/macro-assembler-arm.h | 4 + .../src/codegen/arm64/assembler-arm64-inl.h | 24 +- deps/v8/src/codegen/arm64/assembler-arm64.cc | 46 +- deps/v8/src/codegen/arm64/assembler-arm64.h | 15 - .../arm64/interface-descriptors-arm64-inl.h | 14 +- .../codegen/arm64/macro-assembler-arm64.cc | 68 +- .../src/codegen/arm64/macro-assembler-arm64.h | 26 +- deps/v8/src/codegen/arm64/register-arm64.h | 2 - deps/v8/src/codegen/assembler.cc | 58 - deps/v8/src/codegen/assembler.h | 26 - deps/v8/src/codegen/bailout-reason.h | 1 + deps/v8/src/codegen/code-factory.cc | 8 +- deps/v8/src/codegen/code-stub-assembler.cc | 77 +- deps/v8/src/codegen/code-stub-assembler.h | 41 +- deps/v8/src/codegen/compiler.cc | 80 +- deps/v8/src/codegen/compiler.h | 17 +- deps/v8/src/codegen/constant-pool.cc | 11 +- deps/v8/src/codegen/external-reference.cc | 40 +- deps/v8/src/codegen/external-reference.h | 27 +- deps/v8/src/codegen/ia32/assembler-ia32-inl.h | 22 +- deps/v8/src/codegen/ia32/assembler-ia32.cc | 38 +- deps/v8/src/codegen/ia32/assembler-ia32.h | 16 - .../ia32/interface-descriptors-ia32-inl.h | 14 +- .../src/codegen/ia32/macro-assembler-ia32.cc | 15 + .../src/codegen/ia32/macro-assembler-ia32.h | 4 + deps/v8/src/codegen/interface-descriptors.h | 5 +- .../codegen/loong64/assembler-loong64-inl.h | 6 +- .../src/codegen/loong64/assembler-loong64.cc | 31 +- .../src/codegen/loong64/assembler-loong64.h | 34 +- .../interface-descriptors-loong64-inl.h | 12 +- .../loong64/macro-assembler-loong64.cc | 84 +- .../codegen/loong64/macro-assembler-loong64.h | 33 +- deps/v8/src/codegen/machine-type.cc | 2 + deps/v8/src/codegen/machine-type.h | 9 + deps/v8/src/codegen/macro-assembler.h | 2 +- deps/v8/src/codegen/mips/assembler-mips-inl.h | 6 +- deps/v8/src/codegen/mips/assembler-mips.cc | 33 +- deps/v8/src/codegen/mips/assembler-mips.h | 43 +- .../mips/interface-descriptors-mips-inl.h | 14 +- .../src/codegen/mips/macro-assembler-mips.cc | 80 +- .../src/codegen/mips/macro-assembler-mips.h | 11 + .../src/codegen/mips64/assembler-mips64-inl.h | 6 +- .../v8/src/codegen/mips64/assembler-mips64.cc | 31 +- deps/v8/src/codegen/mips64/assembler-mips64.h | 43 +- .../mips64/interface-descriptors-mips64-inl.h | 14 +- .../codegen/mips64/macro-assembler-mips64.cc | 83 +- .../codegen/mips64/macro-assembler-mips64.h | 33 +- deps/v8/src/codegen/ppc/assembler-ppc-inl.h | 14 +- deps/v8/src/codegen/ppc/assembler-ppc.cc | 12 - deps/v8/src/codegen/ppc/assembler-ppc.h | 9 - .../v8/src/codegen/ppc/macro-assembler-ppc.cc | 14 + deps/v8/src/codegen/ppc/macro-assembler-ppc.h | 6 + deps/v8/src/codegen/reloc-info.cc | 8 +- deps/v8/src/codegen/reloc-info.h | 7 +- .../codegen/riscv64/assembler-riscv64-inl.h | 14 +- .../src/codegen/riscv64/assembler-riscv64.cc | 95 +- .../src/codegen/riscv64/assembler-riscv64.h | 57 +- .../src/codegen/riscv64/constants-riscv64.h | 46 + .../interface-descriptors-riscv64-inl.h | 14 +- .../riscv64/macro-assembler-riscv64.cc | 80 +- .../codegen/riscv64/macro-assembler-riscv64.h | 19 +- deps/v8/src/codegen/s390/assembler-s390-inl.h | 14 +- deps/v8/src/codegen/s390/assembler-s390.cc | 23 +- deps/v8/src/codegen/s390/assembler-s390.h | 10 +- deps/v8/src/codegen/s390/constants-s390.h | 2 +- .../src/codegen/s390/macro-assembler-s390.cc | 14 + .../src/codegen/s390/macro-assembler-s390.h | 6 + .../macro-assembler-shared-ia32-x64.cc | 14 +- .../macro-assembler-shared-ia32-x64.h | 66 + deps/v8/src/codegen/tnode.h | 5 + deps/v8/src/codegen/x64/assembler-x64-inl.h | 35 +- deps/v8/src/codegen/x64/assembler-x64.cc | 108 +- deps/v8/src/codegen/x64/assembler-x64.h | 102 +- .../x64/interface-descriptors-x64-inl.h | 14 +- .../v8/src/codegen/x64/macro-assembler-x64.cc | 62 +- deps/v8/src/codegen/x64/macro-assembler-x64.h | 15 + deps/v8/src/codegen/x64/sse-instr.h | 146 +- deps/v8/src/common/globals.h | 44 +- deps/v8/src/common/message-template.h | 5 +- deps/v8/src/common/ptr-compr-inl.h | 4 + .../lazy-compile-dispatcher.cc | 106 +- .../lazy-compile-dispatcher.h | 25 +- deps/v8/src/compiler/OWNERS | 1 - deps/v8/src/compiler/access-info.cc | 29 +- deps/v8/src/compiler/access-info.h | 3 +- .../compiler/add-type-assertions-reducer.cc | 3 + .../backend/arm/code-generator-arm.cc | 38 +- .../backend/arm/instruction-codes-arm.h | 706 ++++--- .../backend/arm/instruction-selector-arm.cc | 2 + .../backend/arm64/code-generator-arm64.cc | 58 +- .../backend/arm64/instruction-codes-arm64.h | 4 + .../arm64/instruction-scheduler-arm64.cc | 4 + .../arm64/instruction-selector-arm64.cc | 101 +- .../v8/src/compiler/backend/code-generator.cc | 4 +- .../backend/ia32/code-generator-ia32.cc | 25 +- .../backend/ia32/instruction-codes-ia32.h | 704 ++++--- .../backend/ia32/instruction-selector-ia32.cc | 14 +- .../src/compiler/backend/instruction-codes.h | 4 + .../compiler/backend/instruction-selector.cc | 55 + deps/v8/src/compiler/backend/instruction.cc | 10 +- deps/v8/src/compiler/backend/instruction.h | 1 + .../v8/src/compiler/backend/jump-threading.cc | 4 +- .../backend/loong64/code-generator-loong64.cc | 35 +- .../loong64/instruction-codes-loong64.h | 722 ++++--- .../loong64/instruction-selector-loong64.cc | 2 + .../backend/mid-tier-register-allocator.cc | 8 +- .../backend/mips/code-generator-mips.cc | 33 +- .../backend/mips/instruction-codes-mips.h | 730 ++++--- .../backend/mips/instruction-selector-mips.cc | 4 + .../backend/mips64/code-generator-mips64.cc | 33 +- .../backend/mips64/instruction-codes-mips64.h | 778 ++++---- .../mips64/instruction-selector-mips64.cc | 4 + .../backend/ppc/code-generator-ppc.cc | 40 +- .../backend/ppc/instruction-codes-ppc.h | 804 ++++---- .../backend/ppc/instruction-selector-ppc.cc | 2 + .../compiler/backend/register-allocation.h | 1 + .../compiler/backend/register-allocator.cc | 23 +- .../src/compiler/backend/register-allocator.h | 2 +- .../backend/riscv64/code-generator-riscv64.cc | 36 +- .../riscv64/instruction-codes-riscv64.h | 780 ++++---- .../riscv64/instruction-selector-riscv64.cc | 4 + .../backend/s390/code-generator-s390.cc | 25 +- .../backend/s390/instruction-codes-s390.h | 776 ++++---- .../backend/s390/instruction-selector-s390.cc | 2 + .../backend/x64/code-generator-x64.cc | 108 +- .../backend/x64/instruction-codes-x64.h | 19 +- .../backend/x64/instruction-scheduler-x64.cc | 15 +- .../backend/x64/instruction-selector-x64.cc | 137 +- deps/v8/src/compiler/branch-elimination.cc | 4 +- deps/v8/src/compiler/bytecode-analysis.cc | 3 +- .../v8/src/compiler/bytecode-graph-builder.cc | 38 +- deps/v8/src/compiler/code-assembler.cc | 9 + deps/v8/src/compiler/code-assembler.h | 1 + .../src/compiler/effect-control-linearizer.cc | 164 +- deps/v8/src/compiler/graph-assembler.cc | 12 +- deps/v8/src/compiler/graph-assembler.h | 4 +- deps/v8/src/compiler/graph-reducer.cc | 4 +- deps/v8/src/compiler/graph-visualizer.cc | 28 +- deps/v8/src/compiler/heap-refs.cc | 4 + deps/v8/src/compiler/heap-refs.h | 7 +- deps/v8/src/compiler/js-call-reducer.cc | 60 +- deps/v8/src/compiler/js-call-reducer.h | 2 +- deps/v8/src/compiler/js-create-lowering.cc | 4 +- deps/v8/src/compiler/js-generic-lowering.cc | 20 +- deps/v8/src/compiler/js-heap-broker.cc | 11 +- .../js-native-context-specialization.cc | 33 +- .../js-native-context-specialization.h | 1 + deps/v8/src/compiler/js-operator.cc | 13 +- deps/v8/src/compiler/js-operator.h | 22 + deps/v8/src/compiler/js-type-hint-lowering.cc | 3 +- deps/v8/src/compiler/js-typed-lowering.cc | 8 + deps/v8/src/compiler/load-elimination.cc | 3 + .../v8/src/compiler/machine-graph-verifier.cc | 1 + deps/v8/src/compiler/machine-operator.cc | 36 +- deps/v8/src/compiler/machine-operator.h | 16 +- deps/v8/src/compiler/memory-lowering.cc | 4 +- deps/v8/src/compiler/node-matchers.h | 18 +- deps/v8/src/compiler/node-properties.cc | 3 +- deps/v8/src/compiler/opcodes.h | 462 ++--- deps/v8/src/compiler/operation-typer.cc | 8 +- deps/v8/src/compiler/operator-properties.cc | 2 + deps/v8/src/compiler/pipeline.cc | 108 +- deps/v8/src/compiler/raw-machine-assembler.cc | 1 + deps/v8/src/compiler/representation-change.cc | 29 +- deps/v8/src/compiler/scheduler.cc | 109 +- deps/v8/src/compiler/scheduler.h | 11 + deps/v8/src/compiler/simplified-lowering.cc | 61 +- .../compiler/simplified-operator-reducer.cc | 2 +- deps/v8/src/compiler/simplified-operator.cc | 32 +- deps/v8/src/compiler/simplified-operator.h | 19 +- deps/v8/src/compiler/typer.cc | 4 +- deps/v8/src/compiler/types.cc | 46 + deps/v8/src/compiler/types.h | 50 +- deps/v8/src/compiler/verifier.cc | 17 +- deps/v8/src/compiler/wasm-compiler.cc | 238 ++- deps/v8/src/compiler/wasm-compiler.h | 18 +- deps/v8/src/compiler/wasm-escape-analysis.cc | 58 + deps/v8/src/compiler/wasm-escape-analysis.h | 41 + deps/v8/src/compiler/wasm-inlining.cc | 179 +- deps/v8/src/compiler/wasm-inlining.h | 120 +- deps/v8/src/d8/d8-test.cc | 23 +- deps/v8/src/d8/d8.cc | 45 +- deps/v8/src/d8/d8.h | 5 +- deps/v8/src/debug/OWNERS | 1 + deps/v8/src/debug/debug-evaluate.cc | 26 +- deps/v8/src/debug/debug-interface.cc | 8 +- deps/v8/src/debug/debug-interface.h | 5 +- deps/v8/src/debug/debug-scopes.cc | 11 +- deps/v8/src/debug/debug-wasm-objects.cc | 6 +- deps/v8/src/debug/debug.cc | 2 +- deps/v8/src/deoptimizer/OWNERS | 1 - deps/v8/src/diagnostics/disassembler.cc | 6 +- deps/v8/src/diagnostics/objects-debug.cc | 79 +- deps/v8/src/diagnostics/objects-printer.cc | 86 +- .../src/diagnostics/riscv64/disasm-riscv64.cc | 78 +- .../src/diagnostics/unwinding-info-win64.cc | 30 - deps/v8/src/diagnostics/x64/disasm-x64.cc | 12 +- deps/v8/src/execution/arm/simulator-arm.cc | 45 +- .../v8/src/execution/arm64/simulator-arm64.cc | 81 +- deps/v8/src/execution/execution.cc | 66 +- deps/v8/src/execution/execution.h | 20 +- deps/v8/src/execution/frames.cc | 49 +- deps/v8/src/execution/isolate-data.h | 2 +- deps/v8/src/execution/isolate.cc | 199 +- deps/v8/src/execution/isolate.h | 103 +- deps/v8/src/execution/local-isolate.cc | 6 +- deps/v8/src/execution/local-isolate.h | 6 + .../execution/loong64/simulator-loong64.cc | 35 +- deps/v8/src/execution/mips/simulator-mips.cc | 35 +- .../src/execution/mips64/simulator-mips64.cc | 36 +- .../execution/riscv64/simulator-riscv64.cc | 414 +++- .../src/execution/riscv64/simulator-riscv64.h | 35 +- deps/v8/src/execution/s390/simulator-s390.cc | 9 +- deps/v8/src/execution/stack-guard.cc | 7 + deps/v8/src/execution/stack-guard.h | 11 +- deps/v8/src/flags/flag-definitions.h | 79 +- deps/v8/src/flags/flags.cc | 64 +- deps/v8/src/handles/global-handles.cc | 48 +- deps/v8/src/handles/global-handles.h | 12 +- deps/v8/src/handles/handles.cc | 3 + deps/v8/src/handles/local-handles-inl.h | 2 + deps/v8/src/handles/persistent-handles.cc | 2 +- deps/v8/src/heap/base/stack.cc | 15 +- deps/v8/src/heap/basic-memory-chunk.cc | 4 + deps/v8/src/heap/code-object-registry.cc | 9 + deps/v8/src/heap/code-object-registry.h | 2 + deps/v8/src/heap/code-range.cc | 77 +- deps/v8/src/heap/code-range.h | 17 +- deps/v8/src/heap/combined-heap.h | 7 +- deps/v8/src/heap/concurrent-marking.cc | 4 + deps/v8/src/heap/cppgc-js/cpp-heap.cc | 13 +- .../cppgc-js/unified-heap-marking-verifier.cc | 5 +- .../cppgc-js/unified-heap-marking-verifier.h | 3 +- deps/v8/src/heap/cppgc/allocation.cc | 29 + deps/v8/src/heap/cppgc/caged-heap.cc | 28 +- deps/v8/src/heap/cppgc/free-list.cc | 42 +- deps/v8/src/heap/cppgc/free-list.h | 27 +- deps/v8/src/heap/cppgc/heap-base.cc | 34 +- deps/v8/src/heap/cppgc/heap-base.h | 8 +- deps/v8/src/heap/cppgc/heap-page.cc | 15 +- deps/v8/src/heap/cppgc/heap-page.h | 12 + deps/v8/src/heap/cppgc/heap.cc | 24 +- deps/v8/src/heap/cppgc/marker.cc | 41 +- deps/v8/src/heap/cppgc/marker.h | 9 +- deps/v8/src/heap/cppgc/marking-state.h | 23 +- deps/v8/src/heap/cppgc/marking-verifier.cc | 71 +- deps/v8/src/heap/cppgc/marking-verifier.h | 10 +- deps/v8/src/heap/cppgc/object-allocator.cc | 78 +- deps/v8/src/heap/cppgc/object-allocator.h | 86 +- deps/v8/src/heap/cppgc/object-size-trait.cc | 5 +- deps/v8/src/heap/cppgc/object-view.h | 5 +- deps/v8/src/heap/cppgc/persistent-node.cc | 24 +- deps/v8/src/heap/cppgc/pointer-policies.cc | 2 + deps/v8/src/heap/cppgc/stats-collector.cc | 3 +- deps/v8/src/heap/cppgc/stats-collector.h | 21 +- deps/v8/src/heap/cppgc/sweeper.cc | 5 +- deps/v8/src/heap/cppgc/unmarker.h | 30 + deps/v8/src/heap/embedder-tracing.cc | 1 + deps/v8/src/heap/factory-base.cc | 100 +- deps/v8/src/heap/factory-base.h | 11 + deps/v8/src/heap/factory-inl.h | 5 + deps/v8/src/heap/factory.cc | 320 ++-- deps/v8/src/heap/factory.h | 41 +- deps/v8/src/heap/heap-inl.h | 23 +- deps/v8/src/heap/heap-write-barrier-inl.h | 22 + deps/v8/src/heap/heap-write-barrier.cc | 6 +- deps/v8/src/heap/heap-write-barrier.h | 6 +- deps/v8/src/heap/heap.cc | 297 ++- deps/v8/src/heap/heap.h | 78 +- deps/v8/src/heap/incremental-marking.cc | 7 - deps/v8/src/heap/incremental-marking.h | 2 - deps/v8/src/heap/large-spaces.cc | 15 +- deps/v8/src/heap/large-spaces.h | 5 + deps/v8/src/heap/local-factory-inl.h | 7 + deps/v8/src/heap/local-factory.h | 5 + deps/v8/src/heap/local-heap-inl.h | 21 +- deps/v8/src/heap/local-heap.cc | 184 +- deps/v8/src/heap/local-heap.h | 151 +- deps/v8/src/heap/mark-compact.cc | 81 +- deps/v8/src/heap/marking-barrier.cc | 11 + deps/v8/src/heap/marking-barrier.h | 3 + deps/v8/src/heap/marking-visitor-inl.h | 11 +- deps/v8/src/heap/marking-visitor.h | 7 +- deps/v8/src/heap/memory-allocator.cc | 7 + deps/v8/src/heap/new-spaces-inl.h | 2 +- deps/v8/src/heap/new-spaces.cc | 2 +- deps/v8/src/heap/object-stats.cc | 19 +- deps/v8/src/heap/objects-visiting.h | 1 + deps/v8/src/heap/paged-spaces-inl.h | 6 +- deps/v8/src/heap/paged-spaces.cc | 26 +- deps/v8/src/heap/paged-spaces.h | 13 + deps/v8/src/heap/read-only-spaces.cc | 5 +- deps/v8/src/heap/remembered-set.h | 2 +- deps/v8/src/heap/safepoint.cc | 82 +- deps/v8/src/heap/safepoint.h | 10 +- deps/v8/src/heap/scavenger-inl.h | 53 +- deps/v8/src/heap/scavenger.cc | 13 +- deps/v8/src/heap/scavenger.h | 15 +- deps/v8/src/heap/setup-heap-internal.cc | 3 + deps/v8/src/heap/spaces-inl.h | 2 +- deps/v8/src/heap/spaces.cc | 12 +- deps/v8/src/ic/accessor-assembler.cc | 233 ++- deps/v8/src/ic/accessor-assembler.h | 33 +- deps/v8/src/ic/handler-configuration.cc | 36 + deps/v8/src/ic/handler-configuration.h | 5 + deps/v8/src/ic/ic.cc | 150 +- deps/v8/src/ic/ic.h | 14 +- deps/v8/src/ic/keyed-store-generic.cc | 71 +- deps/v8/src/ic/keyed-store-generic.h | 10 + deps/v8/src/ic/stub-cache.cc | 26 +- deps/v8/src/ic/stub-cache.h | 12 +- deps/v8/src/init/bootstrapper.cc | 637 ++++++- deps/v8/src/init/heap-symbols.h | 521 ++--- deps/v8/src/init/isolate-allocator.cc | 13 +- deps/v8/src/init/v8.cc | 5 +- deps/v8/src/init/vm-cage.cc | 97 - deps/v8/src/inspector/OWNERS | 1 + deps/v8/src/inspector/inspected-context.cc | 19 +- deps/v8/src/inspector/v8-console.cc | 128 ++ deps/v8/src/inspector/v8-console.h | 19 + .../src/inspector/v8-debugger-agent-impl.cc | 19 +- deps/v8/src/inspector/v8-debugger.cc | 131 +- deps/v8/src/inspector/v8-debugger.h | 3 +- .../inspector/v8-heap-profiler-agent-impl.cc | 2 +- deps/v8/src/inspector/value-mirror.cc | 45 +- .../src/interpreter/bytecode-array-builder.cc | 11 + .../src/interpreter/bytecode-array-builder.h | 3 + deps/v8/src/interpreter/bytecode-generator.cc | 247 ++- deps/v8/src/interpreter/bytecodes.h | 2 + .../src/interpreter/interpreter-generator.cc | 29 +- deps/v8/src/json/json-parser.cc | 14 +- deps/v8/src/json/json-stringifier.cc | 7 +- deps/v8/src/logging/counters-definitions.h | 5 + deps/v8/src/logging/log.cc | 24 + deps/v8/src/logging/log.h | 1 + deps/v8/src/logging/runtime-call-stats.h | 5 +- deps/v8/src/objects/all-objects-inl.h | 1 + deps/v8/src/objects/arguments.tq | 4 + deps/v8/src/objects/backing-store.cc | 2 +- deps/v8/src/objects/code-inl.h | 229 ++- deps/v8/src/objects/code.cc | 9 - deps/v8/src/objects/code.h | 44 +- deps/v8/src/objects/compressed-slots-inl.h | 3 +- deps/v8/src/objects/compressed-slots.h | 1 + deps/v8/src/objects/contexts-inl.h | 21 +- deps/v8/src/objects/contexts.cc | 63 +- deps/v8/src/objects/contexts.h | 57 +- deps/v8/src/objects/elements.cc | 20 +- deps/v8/src/objects/feedback-vector-inl.h | 1 + deps/v8/src/objects/feedback-vector.cc | 28 +- deps/v8/src/objects/feedback-vector.h | 18 +- deps/v8/src/objects/fixed-array-inl.h | 60 +- deps/v8/src/objects/fixed-array.h | 27 +- deps/v8/src/objects/foreign-inl.h | 5 +- deps/v8/src/objects/heap-object.h | 10 +- deps/v8/src/objects/instance-type-inl.h | 77 +- deps/v8/src/objects/instance-type.h | 24 +- deps/v8/src/objects/intl-objects.cc | 558 +++++- deps/v8/src/objects/intl-objects.h | 20 +- deps/v8/src/objects/js-array-buffer-inl.h | 5 +- deps/v8/src/objects/js-array-buffer.cc | 1 + deps/v8/src/objects/js-collator.h | 2 +- deps/v8/src/objects/js-function-inl.h | 16 +- deps/v8/src/objects/js-function.cc | 10 + deps/v8/src/objects/js-function.h | 2 +- deps/v8/src/objects/js-objects-inl.h | 2 - deps/v8/src/objects/js-objects.cc | 108 +- deps/v8/src/objects/js-objects.h | 8 +- deps/v8/src/objects/js-temporal-objects-inl.h | 103 + deps/v8/src/objects/js-temporal-objects.h | 163 ++ deps/v8/src/objects/js-temporal-objects.tq | 89 + deps/v8/src/objects/map.cc | 12 + deps/v8/src/objects/map.h | 1 + deps/v8/src/objects/map.tq | 4 + deps/v8/src/objects/module-inl.h | 1 + deps/v8/src/objects/module.cc | 14 +- deps/v8/src/objects/module.h | 7 + deps/v8/src/objects/module.tq | 5 + deps/v8/src/objects/name.h | 8 + deps/v8/src/objects/object-list-macros.h | 11 + deps/v8/src/objects/object-macros-undef.h | 2 - deps/v8/src/objects/object-macros.h | 18 +- .../objects/objects-body-descriptors-inl.h | 43 +- deps/v8/src/objects/objects-definitions.h | 3 + deps/v8/src/objects/objects-inl.h | 105 +- deps/v8/src/objects/objects.cc | 8 +- deps/v8/src/objects/objects.h | 28 + deps/v8/src/objects/scope-info.cc | 106 +- deps/v8/src/objects/scope-info.h | 6 +- deps/v8/src/objects/scope-info.tq | 9 - deps/v8/src/objects/script.tq | 5 + .../v8/src/objects/shared-function-info-inl.h | 6 +- deps/v8/src/objects/shared-function-info.h | 2 +- deps/v8/src/objects/slots-inl.h | 5 +- deps/v8/src/objects/slots.h | 1 + deps/v8/src/objects/string-inl.h | 23 +- deps/v8/src/objects/string-table.cc | 100 +- deps/v8/src/objects/string-table.h | 5 +- deps/v8/src/objects/string.cc | 46 +- deps/v8/src/objects/string.h | 12 + deps/v8/src/objects/string.tq | 4 + deps/v8/src/objects/tagged-field.h | 2 +- deps/v8/src/objects/turbofan-types-inl.h | 24 + deps/v8/src/objects/turbofan-types.h | 30 + deps/v8/src/objects/turbofan-types.tq | 204 ++ deps/v8/src/objects/visitors.h | 51 +- deps/v8/src/parsing/OWNERS | 1 - deps/v8/src/parsing/parse-info.cc | 5 +- deps/v8/src/parsing/parse-info.h | 10 + deps/v8/src/parsing/parser-base.h | 14 +- deps/v8/src/parsing/parser.cc | 18 + deps/v8/src/parsing/parser.h | 2 + .../src/parsing/scanner-character-streams.cc | 14 +- deps/v8/src/parsing/scanner.h | 55 +- .../src/profiler/heap-snapshot-generator.cc | 55 +- .../v8/src/profiler/heap-snapshot-generator.h | 6 +- .../regexp/arm/regexp-macro-assembler-arm.cc | 257 +-- .../regexp/arm/regexp-macro-assembler-arm.h | 120 +- .../arm64/regexp-macro-assembler-arm64.cc | 280 +-- .../arm64/regexp-macro-assembler-arm64.h | 133 +- .../ia32/regexp-macro-assembler-ia32.cc | 279 +-- .../regexp/ia32/regexp-macro-assembler-ia32.h | 122 +- .../loong64/regexp-macro-assembler-loong64.cc | 108 +- .../loong64/regexp-macro-assembler-loong64.h | 119 +- .../mips/regexp-macro-assembler-mips.cc | 265 +-- .../regexp/mips/regexp-macro-assembler-mips.h | 123 +- .../mips64/regexp-macro-assembler-mips64.cc | 266 +-- .../mips64/regexp-macro-assembler-mips64.h | 123 +- .../regexp/ppc/regexp-macro-assembler-ppc.cc | 83 +- .../regexp/ppc/regexp-macro-assembler-ppc.h | 119 +- deps/v8/src/regexp/regexp-ast.cc | 10 +- deps/v8/src/regexp/regexp-ast.h | 352 ++-- .../v8/src/regexp/regexp-bytecode-generator.h | 17 +- deps/v8/src/regexp/regexp-bytecodes.h | 1 + deps/v8/src/regexp/regexp-compiler-tonode.cc | 356 ++-- deps/v8/src/regexp/regexp-compiler.cc | 208 +- .../regexp/regexp-macro-assembler-tracer.cc | 44 +- .../regexp/regexp-macro-assembler-tracer.h | 11 +- deps/v8/src/regexp/regexp-macro-assembler.cc | 152 +- deps/v8/src/regexp/regexp-macro-assembler.h | 171 +- deps/v8/src/regexp/regexp-nodes.h | 10 +- deps/v8/src/regexp/regexp-parser.cc | 166 +- deps/v8/src/regexp/regexp.cc | 16 +- .../riscv64/regexp-macro-assembler-riscv64.cc | 107 +- .../riscv64/regexp-macro-assembler-riscv64.h | 122 +- .../s390/regexp-macro-assembler-s390.cc | 82 +- .../regexp/s390/regexp-macro-assembler-s390.h | 117 +- .../regexp/x64/regexp-macro-assembler-x64.cc | 304 +-- .../regexp/x64/regexp-macro-assembler-x64.h | 12 +- deps/v8/src/roots/roots.h | 1 + deps/v8/src/runtime/runtime-internal.cc | 1 + deps/v8/src/runtime/runtime-object.cc | 98 +- deps/v8/src/runtime/runtime-test-wasm.cc | 5 +- deps/v8/src/runtime/runtime-test.cc | 28 + deps/v8/src/runtime/runtime-wasm.cc | 59 +- deps/v8/src/runtime/runtime.cc | 6 +- deps/v8/src/runtime/runtime.h | 23 +- deps/v8/src/security/OWNERS | 4 + deps/v8/src/security/caged-pointer-inl.h | 48 + deps/v8/src/security/caged-pointer.h | 27 + .../external-pointer-inl.h | 8 +- .../external-pointer-table.cc | 2 +- .../external-pointer-table.h | 8 +- .../{common => security}/external-pointer.h | 6 +- deps/v8/src/security/vm-cage.cc | 431 +++++ deps/v8/src/{init => security}/vm-cage.h | 54 +- deps/v8/src/snapshot/code-serializer.cc | 127 +- deps/v8/src/snapshot/code-serializer.h | 47 +- deps/v8/src/snapshot/context-serializer.cc | 12 +- deps/v8/src/snapshot/context-serializer.h | 1 + deps/v8/src/snapshot/deserializer.cc | 105 +- deps/v8/src/snapshot/deserializer.h | 30 +- deps/v8/src/snapshot/read-only-serializer.cc | 7 +- .../src/snapshot/serializer-deserializer.cc | 35 +- .../v8/src/snapshot/serializer-deserializer.h | 13 +- deps/v8/src/snapshot/serializer-inl.h | 32 + deps/v8/src/snapshot/serializer.cc | 69 +- deps/v8/src/snapshot/serializer.h | 4 + .../src/snapshot/shared-heap-deserializer.cc | 61 + .../src/snapshot/shared-heap-deserializer.h | 36 + .../v8/src/snapshot/shared-heap-serializer.cc | 174 ++ deps/v8/src/snapshot/shared-heap-serializer.h | 65 + deps/v8/src/snapshot/snapshot-data.cc | 4 - deps/v8/src/snapshot/snapshot.cc | 115 +- deps/v8/src/snapshot/startup-deserializer.cc | 28 +- deps/v8/src/snapshot/startup-deserializer.h | 1 - deps/v8/src/snapshot/startup-serializer.cc | 80 +- deps/v8/src/snapshot/startup-serializer.h | 15 +- deps/v8/src/torque/cpp-builder.cc | 6 +- deps/v8/src/torque/declarations.cc | 9 +- deps/v8/src/torque/implementation-visitor.cc | 57 +- deps/v8/src/torque/instance-type-generator.cc | 7 +- deps/v8/src/torque/source-positions.h | 4 +- deps/v8/src/torque/torque-parser.cc | 35 +- deps/v8/src/torque/torque.cc | 2 +- deps/v8/src/torque/types.cc | 4 +- deps/v8/src/torque/utils.cc | 4 - deps/v8/src/torque/utils.h | 2 - deps/v8/src/trap-handler/handler-inside.cc | 6 +- deps/v8/src/trap-handler/handler-outside.cc | 14 +- deps/v8/src/trap-handler/trap-handler.h | 2 +- deps/v8/src/utils/allocation.cc | 14 +- deps/v8/src/utils/locked-queue-inl.h | 10 + deps/v8/src/utils/locked-queue.h | 4 + .../wasm/baseline/arm/liftoff-assembler-arm.h | 25 +- .../baseline/arm64/liftoff-assembler-arm64.h | 17 +- .../baseline/ia32/liftoff-assembler-ia32.h | 11 +- .../v8/src/wasm/baseline/liftoff-assembler.cc | 40 +- deps/v8/src/wasm/baseline/liftoff-assembler.h | 11 +- deps/v8/src/wasm/baseline/liftoff-compiler.cc | 399 ++-- deps/v8/src/wasm/baseline/liftoff-register.h | 8 +- .../loong64/liftoff-assembler-loong64.h | 20 +- .../baseline/mips/liftoff-assembler-mips.h | 34 +- .../mips64/liftoff-assembler-mips64.h | 20 +- .../wasm/baseline/ppc/liftoff-assembler-ppc.h | 167 +- .../riscv64/liftoff-assembler-riscv64.h | 50 +- .../baseline/s390/liftoff-assembler-s390.h | 22 +- .../wasm/baseline/x64/liftoff-assembler-x64.h | 9 + deps/v8/src/wasm/c-api.cc | 11 +- deps/v8/src/wasm/function-compiler.h | 1 + deps/v8/src/wasm/graph-builder-interface.cc | 63 +- deps/v8/src/wasm/jump-table-assembler.cc | 49 +- deps/v8/src/wasm/jump-table-assembler.h | 8 +- deps/v8/src/wasm/module-compiler.cc | 160 +- deps/v8/src/wasm/module-compiler.h | 5 +- deps/v8/src/wasm/module-decoder.cc | 5 +- deps/v8/src/wasm/module-instantiate.cc | 26 + deps/v8/src/wasm/stacks.h | 74 + deps/v8/src/wasm/streaming-decoder.cc | 11 +- deps/v8/src/wasm/streaming-decoder.h | 5 +- deps/v8/src/wasm/sync-streaming-decoder.cc | 4 +- deps/v8/src/wasm/wasm-code-manager.cc | 24 +- deps/v8/src/wasm/wasm-code-manager.h | 10 +- deps/v8/src/wasm/wasm-constants.h | 2 +- deps/v8/src/wasm/wasm-engine.cc | 37 +- deps/v8/src/wasm/wasm-engine.h | 8 +- deps/v8/src/wasm/wasm-feature-flags.h | 8 + deps/v8/src/wasm/wasm-js.cc | 115 +- deps/v8/src/wasm/wasm-limits.h | 2 +- deps/v8/src/wasm/wasm-module.h | 23 + deps/v8/src/wasm/wasm-objects-inl.h | 6 + deps/v8/src/wasm/wasm-objects.cc | 99 +- deps/v8/src/wasm/wasm-objects.h | 40 +- deps/v8/src/wasm/wasm-objects.tq | 33 +- deps/v8/src/wasm/wasm-opcodes-inl.h | 21 +- deps/v8/src/wasm/wasm-opcodes.h | 27 +- deps/v8/src/web-snapshot/web-snapshot.cc | 57 +- deps/v8/src/web-snapshot/web-snapshot.h | 5 + deps/v8/test/cctest/BUILD.gn | 2 +- deps/v8/test/cctest/cctest.status | 28 +- .../test-js-context-specialization.cc | 17 +- .../test-run-calls-to-external-references.cc | 152 +- .../test/cctest/compiler/test-run-machops.cc | 13 + deps/v8/test/cctest/compiler/value-helper.h | 1 + .../cctest/heap/test-array-buffer-tracker.cc | 10 +- .../test/cctest/heap/test-embedder-tracing.cc | 25 +- deps/v8/test/cctest/heap/test-heap.cc | 51 +- .../cctest/heap/test-invalidated-slots.cc | 8 +- deps/v8/test/cctest/heap/test-shared-heap.cc | 11 +- deps/v8/test/cctest/heap/test-spaces.cc | 2 +- .../bytecode_expectations/ForOfLoop.golden | 6 +- .../ObjectLiterals.golden | 13 +- .../PrivateAccessorAccess.golden | 123 +- .../PrivateMethodAccess.golden | 74 +- .../StaticPrivateMethodAccess.golden | 20 +- .../cctest/parsing/test-scanner-streams.cc | 2 - .../v8/test/cctest/test-accessor-assembler.cc | 5 +- deps/v8/test/cctest/test-api.cc | 163 +- deps/v8/test/cctest/test-assembler-mips.cc | 6 +- deps/v8/test/cctest/test-assembler-mips64.cc | 6 +- deps/v8/test/cctest/test-assembler-riscv64.cc | 390 ++++ deps/v8/test/cctest/test-assembler-x64.cc | 130 +- deps/v8/test/cctest/test-compiler.cc | 130 +- deps/v8/test/cctest/test-cpu-profiler.cc | 2 +- deps/v8/test/cctest/test-debug.cc | 12 +- deps/v8/test/cctest/test-disasm-riscv64.cc | 34 + deps/v8/test/cctest/test-disasm-x64.cc | 862 +++++---- deps/v8/test/cctest/test-heap-profiler.cc | 2 +- deps/v8/test/cctest/test-helper-riscv64.h | 5 + deps/v8/test/cctest/test-intl.cc | 62 +- deps/v8/test/cctest/test-liveedit.cc | 38 +- deps/v8/test/cctest/test-local-handles.cc | 2 +- deps/v8/test/cctest/test-log.cc | 4 +- .../test/cctest/test-macro-assembler-arm64.cc | 6 +- .../test/cctest/test-macro-assembler-x64.cc | 9 +- .../v8/test/cctest/test-persistent-handles.cc | 2 +- deps/v8/test/cctest/test-ptr-compr-cage.cc | 2 +- deps/v8/test/cctest/test-regexp.cc | 24 +- deps/v8/test/cctest/test-serialize.cc | 251 ++- deps/v8/test/cctest/test-shared-strings.cc | 416 ++++ deps/v8/test/cctest/test-types.cc | 4 +- .../test/cctest/test-unwinder-code-pages.cc | 4 +- deps/v8/test/cctest/test-utils.cc | 19 +- .../test/cctest/test-virtual-memory-cage.cc | 36 - deps/v8/test/cctest/test-weakmaps.cc | 12 +- deps/v8/test/cctest/test-weaksets.cc | 8 +- deps/v8/test/cctest/wasm/test-gc.cc | 164 +- .../cctest/wasm/test-run-wasm-relaxed-simd.cc | 179 ++ .../v8/test/cctest/wasm/test-run-wasm-simd.cc | 174 +- deps/v8/test/cctest/wasm/wasm-run-utils.cc | 1 + deps/v8/test/cctest/wasm/wasm-simd-utils.cc | 21 + deps/v8/test/cctest/wasm/wasm-simd-utils.h | 10 + deps/v8/test/common/wasm/wasm-interpreter.cc | 32 +- deps/v8/test/debugger/bugs/bug-1264852.js | 38 + .../debug-evaluate-no-side-effect-builtins.js | 4 +- deps/v8/test/fuzzer/wasm-compile.cc | 579 ++++-- deps/v8/test/fuzzer/wasm-fuzzer-common.cc | 37 +- ...uate-with-await-on-breakpoint-expected.txt | 37 + .../evaluate-with-await-on-breakpoint.js | 39 + ...t-preview-internal-properties-expected.txt | 53 +- ...et-instrumentation-breakpoint-expected.txt | 7 + .../set-instrumentation-breakpoint.js | 40 +- ...de-effect-free-debug-evaluate-expected.txt | 13 + .../side-effect-free-debug-evaluate.js | 23 +- ...sm-instrumentation-breakpoint-expected.txt | 13 + .../wasm-instrumentation-breakpoint.js | 5 + deps/v8/test/inspector/inspector.status | 1 - .../regress/regress-crbug-980018-expected.txt | 30 + .../inspector/regress/regress-crbug-980018.js | 28 + ...valuate-with-generate-preview-expected.txt | 11 +- .../runtime/remote-object-expected.txt | 29 +- deps/v8/test/intl/intl.status | 18 +- deps/v8/test/intl/regress-1074578.js | 3 +- deps/v8/test/intl/string-localecompare.js | 36 + .../js-perf-test/ApiAccessors/accessor.js | 14 + deps/v8/test/js-perf-test/ApiAccessors/run.js | 19 + deps/v8/test/js-perf-test/BigInt/as-int-n.js | 88 + deps/v8/test/js-perf-test/ClassFields.json | 139 +- .../test/js-perf-test/ClassFields/classes.js | 31 + .../ClassFields/define-private-field.js | 74 - .../ClassFields/define-public-field.js | 75 - .../ClassFields/evaluate-class.js | 144 +- .../ClassFields/initialize-instance.js | 98 + deps/v8/test/js-perf-test/ClassFields/run.js | 2 +- deps/v8/test/js-perf-test/JSTests1.json | 21 + deps/v8/test/js-perf-test/JSTests3.json | 64 + deps/v8/test/js-perf-test/JSTests5.json | 11 + deps/v8/test/mjsunit/asm/asm-validation.js | 36 + .../mjsunit/baseline/batch-compilation.js | 5 +- .../mjsunit/baseline/flush-baseline-code.js | 1 + .../baseline/flush-only-baseline-code.js | 1 + .../v8/test/mjsunit/compiler/bigint-asintn.js | 37 + .../mjsunit/compiler/bigint-int64-lowered.js | 86 +- .../mjsunit/compiler/bigint-uint64-lowered.js | 88 + .../call-with-arraylike-or-spread-2.js | 4 + .../call-with-arraylike-or-spread-3.js | 4 + .../call-with-arraylike-or-spread-4.js | 4 + .../call-with-arraylike-or-spread-5.js | 4 + .../call-with-arraylike-or-spread-6.js | 4 + .../call-with-arraylike-or-spread-7.js | 4 + .../compiler/call-with-arraylike-or-spread.js | 4 + .../compiler/diamond-followedby-branch.js | 2 +- .../mjsunit/compiler/fast-api-sequences.js | 26 + deps/v8/test/mjsunit/compiler/number-ceil.js | 2 +- .../compiler/number-comparison-truncations.js | 2 +- deps/v8/test/mjsunit/compiler/number-floor.js | 2 +- deps/v8/test/mjsunit/compiler/number-max.js | 2 +- deps/v8/test/mjsunit/compiler/number-min.js | 2 +- .../test/mjsunit/compiler/number-modulus.js | 2 +- deps/v8/test/mjsunit/compiler/number-round.js | 2 +- deps/v8/test/mjsunit/compiler/number-trunc.js | 2 +- .../store-data-property-in-literal-private.js | 61 + deps/v8/test/mjsunit/compiler/verify-type.js | 2 +- deps/v8/test/mjsunit/getters-on-elements.js | 2 +- .../define-private-class-field-stress.js | 103 + deps/v8/test/mjsunit/mjsunit.status | 73 +- deps/v8/test/mjsunit/regress-1120905.js | 4 + .../test/mjsunit/regress/regress-1255368.js | 10 + .../test/mjsunit/regress/regress-1262423.js | 7 + .../test/mjsunit/regress/regress-1262478.js | 8 + .../test/mjsunit/regress/regress-1263327.js | 5 + .../test/mjsunit/regress/regress-1264508.js | 7 + .../test/mjsunit/regress/regress-1267674.js | 7 + .../test/mjsunit/regress/regress-1275096.js | 7 + deps/v8/test/mjsunit/regress/regress-2132.js | 2 +- deps/v8/test/mjsunit/regress/regress-9441.js | 4 + .../mjsunit/regress/regress-crbug-1251366.js | 11 +- .../mjsunit/regress/regress-crbug-1257519.js | 23 + .../mjsunit/regress/regress-crbug-1258603.js | 7 + .../mjsunit/regress/regress-crbug-1259902.js | 12 + .../mjsunit/regress/regress-crbug-1259950.js | 25 + .../mjsunit/regress/regress-crbug-1260623.js | 27 + .../mjsunit/regress/regress-crbug-1262007.js | 16 + .../mjsunit/regress/regress-crbug-1263389.js | 21 + .../mjsunit/regress/regress-crbug-1263994.js | 18 + .../mjsunit/regress/regress-crbug-1264013.js | 16 + .../mjsunit/regress/regress-crbug-9161.js | 8 +- .../mjsunit/regress/wasm/regress-12270.js | 39 + .../mjsunit/regress/wasm/regress-12330.js | 27 + .../mjsunit/regress/wasm/regress-1264462.js | 18 + deps/v8/test/mjsunit/shift-for-integer-div.js | 2 +- .../temporal/function-exist-no-intl.js | 329 ++++ .../test/mjsunit/temporal/function-exist.js | 338 ++++ .../mjsunit/temporal/plain-date-time-add.js | 68 + .../temporal/plain-date-time-compare.js | 34 + .../temporal/plain-date-time-constructor.js | 154 ++ .../temporal/plain-date-time-equals.js | 18 + .../mjsunit/temporal/plain-date-time-from.js | 101 + .../temporal/plain-date-time-get-calendar.js | 9 + .../temporal/plain-date-time-get-day.js | 9 + .../temporal/plain-date-time-get-dayOfWeek.js | 9 + .../temporal/plain-date-time-get-dayOfYear.js | 9 + .../plain-date-time-get-daysInMonth.js | 9 + .../plain-date-time-get-daysInWeek.js | 9 + .../plain-date-time-get-daysInYear.js | 9 + .../temporal/plain-date-time-get-era.js | 10 + .../temporal/plain-date-time-get-eraYear.js | 9 + .../temporal/plain-date-time-get-hour.js | 9 + .../plain-date-time-get-inLeapYear.js | 10 + .../plain-date-time-get-iso-fields.js | 50 + .../plain-date-time-get-microsecond.js | 9 + .../plain-date-time-get-millisecond.js | 9 + .../temporal/plain-date-time-get-minute.js | 9 + .../temporal/plain-date-time-get-month.js | 9 + .../temporal/plain-date-time-get-monthCode.js | 9 + .../plain-date-time-get-monthsInYear.js | 9 + .../plain-date-time-get-nanosecond.js | 9 + .../temporal/plain-date-time-get-second.js | 9 + .../plain-date-time-get-weekOfYear.js | 9 + .../temporal/plain-date-time-get-year.js | 9 + .../temporal/plain-date-time-subtract.js | 68 + .../temporal/plain-date-time-to-json.js | 94 + .../temporal/plain-date-time-to-plain-date.js | 12 + .../plain-date-time-to-plain-month-day.js | 12 + .../temporal/plain-date-time-to-plain-time.js | 12 + .../plain-date-time-to-plain-year-month.js | 12 + .../temporal/plain-date-time-valueOf.js | 7 + .../temporal/plain-date-time-with-calendar.js | 32 + .../plain-date-time-with-plain-date.js | 40 + .../plain-date-time-with-plain-time.js | 44 + .../mjsunit/temporal/plain-date-time-with.js | 54 + .../typedarray-growablesharedarraybuffer.js | 880 ++++++++- deps/v8/test/mjsunit/typedarray-helpers.js | 16 +- .../typedarray-resizablearraybuffer-detach.js | 539 +++++- .../typedarray-resizablearraybuffer.js | 1680 ++++++++++++++++- deps/v8/test/mjsunit/wasm/inlining.js | 101 +- .../test/mjsunit/wasm/speculative-inlining.js | 135 ++ deps/v8/test/mjsunit/wasm/stack-switching.js | 19 + .../test/mjsunit/wasm/wasm-module-builder.js | 1 - deps/v8/test/test262/test262.status | 149 +- deps/v8/test/unittests/BUILD.gn | 3 + .../unittests/avoid-windows-h-includes.cc | 13 + .../compiler-dispatcher-unittest.cc | 288 +-- .../instruction-selector-arm64-unittest.cc | 54 +- .../heap/cppgc/allocation-unittest.cc | 91 + .../heap/cppgc/custom-spaces-unittest.cc | 21 + .../heap/cppgc/ephemeron-pair-unittest.cc | 45 + .../heap-statistics-collector-unittest.cc | 2 +- .../heap/cppgc/marking-verifier-unittest.cc | 2 +- .../unittests/heap/cppgc/minor-gc-unittest.cc | 7 + .../heap/cppgc/prefinalizer-unittest.cc | 4 +- deps/v8/test/unittests/heap/heap-unittest.cc | 12 +- .../unittests/heap/local-heap-unittest.cc | 4 + .../v8/test/unittests/heap/spaces-unittest.cc | 13 +- .../heap/traced-reference-unittest.cc | 151 +- .../unittests/heap/unified-heap-unittest.cc | 9 + .../bytecode-array-builder-unittest.cc | 1 + .../security/virtual-memory-cage-unittest.cc | 148 ++ .../wasm/function-body-decoder-unittest.cc | 20 + .../unittests/wasm/module-decoder-unittest.cc | 23 +- deps/v8/test/wasm-js/tests.tar.gz.sha1 | 2 +- .../v8/test/wasm-spec-tests/tests.tar.gz.sha1 | 2 +- deps/v8/test/webkit/run-json-stringify.js | 2 +- deps/v8/third_party/jinja2/AUTHORS | 34 - .../jinja2/Jinja2-2.10.1.tar.gz.md5 | 1 - .../jinja2/Jinja2-2.10.1.tar.gz.sha512 | 1 - .../jinja2/Jinja2-2.11.3.tar.gz.md5 | 1 + .../jinja2/Jinja2-2.11.3.tar.gz.sha512 | 1 + deps/v8/third_party/jinja2/LICENSE | 31 - deps/v8/third_party/jinja2/LICENSE.rst | 28 + deps/v8/third_party/jinja2/README.chromium | 21 +- deps/v8/third_party/jinja2/README.rst | 66 + deps/v8/third_party/jinja2/__init__.py | 123 +- deps/v8/third_party/jinja2/_compat.py | 67 +- deps/v8/third_party/jinja2/_identifier.py | 6 +- deps/v8/third_party/jinja2/asyncfilters.py | 70 +- deps/v8/third_party/jinja2/asyncsupport.py | 186 +- deps/v8/third_party/jinja2/bccache.py | 142 +- deps/v8/third_party/jinja2/compiler.py | 1242 ++++++------ deps/v8/third_party/jinja2/constants.py | 15 +- deps/v8/third_party/jinja2/debug.py | 522 ++--- deps/v8/third_party/jinja2/defaults.py | 68 +- deps/v8/third_party/jinja2/environment.py | 592 +++--- deps/v8/third_party/jinja2/exceptions.py | 73 +- deps/v8/third_party/jinja2/ext.py | 387 ++-- deps/v8/third_party/jinja2/filters.py | 716 ++++--- deps/v8/third_party/jinja2/get_jinja2.sh | 137 -- deps/v8/third_party/jinja2/idtracking.py | 58 +- deps/v8/third_party/jinja2/jinja2.gni | 2 - deps/v8/third_party/jinja2/lexer.py | 769 ++++---- deps/v8/third_party/jinja2/loaders.py | 135 +- deps/v8/third_party/jinja2/meta.py | 33 +- deps/v8/third_party/jinja2/nativetypes.py | 248 +-- deps/v8/third_party/jinja2/nodes.py | 427 +++-- deps/v8/third_party/jinja2/optimizer.py | 60 +- deps/v8/third_party/jinja2/parser.py | 568 +++--- ...iled-template-deterministic-for-pyth.patch | 33 +- ...a2-add-_identifier-to-pydeps-for-py3.patch | 34 - deps/v8/third_party/jinja2/runtime.py | 700 ++++--- deps/v8/third_party/jinja2/sandbox.py | 218 ++- deps/v8/third_party/jinja2/tests.py | 142 +- deps/v8/third_party/jinja2/utils.py | 406 ++-- deps/v8/third_party/jinja2/visitor.py | 14 +- deps/v8/third_party/zlib/BUILD.gn | 14 + deps/v8/third_party/zlib/google/zip_reader.h | 10 +- .../third_party/zlib/google/zip_unittest.cc | 2 +- deps/v8/tools/OWNERS | 2 +- .../clusterfuzz/js_fuzzer/source_helpers.js | 2 +- .../js_fuzzer/test_data/spidermonkey/shell.js | 2 +- .../spidermonkey/test/load_expected.js | 6 +- deps/v8/tools/clusterfuzz/v8_fuzz_flags.json | 1 + .../debug_helper/get-object-properties.cc | 2 +- deps/v8/tools/dev/update-compile-commands.py | 4 +- deps/v8/tools/gcmole/OWNERS | 4 + deps/v8/tools/gcmole/gcmole-tools.tar.gz.sha1 | 2 +- deps/v8/tools/gcmole/package.sh | 12 +- deps/v8/tools/gdb-v8-support.py | 56 +- deps/v8/tools/gdbinit | 5 + deps/v8/tools/gen-postmortem-metadata.py | 812 ++++---- deps/v8/tools/mb/mb.py | 2 - .../tools/process-wasm-compilation-times.py | 130 ++ deps/v8/tools/release/list_deprecated.py | 13 +- deps/v8/tools/system-analyzer/log/code.mjs | 68 +- deps/v8/tools/system-analyzer/processor.mjs | 24 +- .../view/code-panel-template.html | 2 + .../tools/system-analyzer/view/code-panel.mjs | 28 +- deps/v8/tools/system-analyzer/view/helper.mjs | 9 +- .../view/property-link-table.mjs | 4 + .../system-analyzer/view/script-panel.mjs | 8 +- deps/v8/tools/testrunner/base_runner.py | 10 +- .../v8/tools/testrunner/local/junit_output.py | 49 - deps/v8/tools/testrunner/local/variants.py | 15 +- deps/v8/tools/testrunner/testproc/fuzzer.py | 1 + deps/v8/tools/testrunner/testproc/progress.py | 40 - deps/v8/tools/tickprocessor.mjs | 2 +- .../testdata/testroot1/v8_build_config.json | 3 +- .../testdata/testroot2/v8_build_config.json | 3 +- .../testdata/testroot3/v8_build_config.json | 3 +- deps/v8/tools/v8heapconst.py | 708 +++---- deps/v8/tools/v8windbg/base/utilities.cc | 2 +- deps/v8/tools/whitespace.txt | 4 +- 962 files changed, 42076 insertions(+), 18400 deletions(-) create mode 100644 deps/v8/bazel/config/BUILD.bazel create mode 100644 deps/v8/bazel/config/v8-target-cpu.bzl create mode 100644 deps/v8/bazel/v8-non-pointer-compression.bzl create mode 100644 deps/v8/src/baseline/ppc/baseline-assembler-ppc-inl.h create mode 100644 deps/v8/src/baseline/ppc/baseline-compiler-ppc-inl.h create mode 100644 deps/v8/src/baseline/s390/baseline-assembler-s390-inl.h create mode 100644 deps/v8/src/baseline/s390/baseline-compiler-s390-inl.h create mode 100644 deps/v8/src/builtins/builtins-temporal.cc create mode 100644 deps/v8/src/compiler/wasm-escape-analysis.cc create mode 100644 deps/v8/src/compiler/wasm-escape-analysis.h create mode 100644 deps/v8/src/heap/cppgc/unmarker.h delete mode 100644 deps/v8/src/init/vm-cage.cc create mode 100644 deps/v8/src/objects/js-temporal-objects-inl.h create mode 100644 deps/v8/src/objects/js-temporal-objects.h create mode 100644 deps/v8/src/objects/js-temporal-objects.tq create mode 100644 deps/v8/src/objects/turbofan-types-inl.h create mode 100644 deps/v8/src/objects/turbofan-types.h create mode 100644 deps/v8/src/objects/turbofan-types.tq create mode 100644 deps/v8/src/security/OWNERS create mode 100644 deps/v8/src/security/caged-pointer-inl.h create mode 100644 deps/v8/src/security/caged-pointer.h rename deps/v8/src/{common => security}/external-pointer-inl.h (96%) rename deps/v8/src/{execution => security}/external-pointer-table.cc (94%) rename deps/v8/src/{execution => security}/external-pointer-table.h (90%) rename deps/v8/src/{common => security}/external-pointer.h (93%) create mode 100644 deps/v8/src/security/vm-cage.cc rename deps/v8/src/{init => security}/vm-cage.h (70%) create mode 100644 deps/v8/src/snapshot/serializer-inl.h create mode 100644 deps/v8/src/snapshot/shared-heap-deserializer.cc create mode 100644 deps/v8/src/snapshot/shared-heap-deserializer.h create mode 100644 deps/v8/src/snapshot/shared-heap-serializer.cc create mode 100644 deps/v8/src/snapshot/shared-heap-serializer.h create mode 100644 deps/v8/src/wasm/stacks.h create mode 100644 deps/v8/test/cctest/test-shared-strings.cc delete mode 100644 deps/v8/test/cctest/test-virtual-memory-cage.cc create mode 100644 deps/v8/test/debugger/bugs/bug-1264852.js create mode 100644 deps/v8/test/inspector/debugger/evaluate-with-await-on-breakpoint-expected.txt create mode 100644 deps/v8/test/inspector/debugger/evaluate-with-await-on-breakpoint.js create mode 100644 deps/v8/test/inspector/regress/regress-crbug-980018-expected.txt create mode 100644 deps/v8/test/inspector/regress/regress-crbug-980018.js create mode 100644 deps/v8/test/intl/string-localecompare.js create mode 100644 deps/v8/test/js-perf-test/ApiAccessors/accessor.js create mode 100644 deps/v8/test/js-perf-test/ApiAccessors/run.js create mode 100644 deps/v8/test/js-perf-test/BigInt/as-int-n.js delete mode 100644 deps/v8/test/js-perf-test/ClassFields/define-private-field.js delete mode 100644 deps/v8/test/js-perf-test/ClassFields/define-public-field.js create mode 100644 deps/v8/test/js-perf-test/ClassFields/initialize-instance.js create mode 100644 deps/v8/test/mjsunit/compiler/bigint-asintn.js create mode 100644 deps/v8/test/mjsunit/compiler/bigint-uint64-lowered.js create mode 100644 deps/v8/test/mjsunit/compiler/store-data-property-in-literal-private.js create mode 100644 deps/v8/test/mjsunit/harmony/define-private-class-field-stress.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1255368.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1262423.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1262478.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1263327.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1264508.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1267674.js create mode 100644 deps/v8/test/mjsunit/regress/regress-1275096.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1257519.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1258603.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1259902.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1259950.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1260623.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1262007.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1263389.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1263994.js create mode 100644 deps/v8/test/mjsunit/regress/regress-crbug-1264013.js create mode 100644 deps/v8/test/mjsunit/regress/wasm/regress-12270.js create mode 100644 deps/v8/test/mjsunit/regress/wasm/regress-12330.js create mode 100644 deps/v8/test/mjsunit/regress/wasm/regress-1264462.js create mode 100644 deps/v8/test/mjsunit/temporal/function-exist-no-intl.js create mode 100644 deps/v8/test/mjsunit/temporal/function-exist.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-add.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-compare.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-constructor.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-equals.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-from.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-calendar.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-day.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-dayOfWeek.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-dayOfYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-daysInMonth.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-daysInWeek.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-daysInYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-era.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-eraYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-hour.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-inLeapYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-iso-fields.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-microsecond.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-millisecond.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-minute.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-month.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-monthCode.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-monthsInYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-nanosecond.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-second.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-weekOfYear.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-get-year.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-subtract.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-to-json.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-to-plain-date.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-to-plain-month-day.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-to-plain-time.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-to-plain-year-month.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-valueOf.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-with-calendar.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-with-plain-date.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-with-plain-time.js create mode 100644 deps/v8/test/mjsunit/temporal/plain-date-time-with.js create mode 100644 deps/v8/test/mjsunit/wasm/speculative-inlining.js create mode 100644 deps/v8/test/mjsunit/wasm/stack-switching.js create mode 100644 deps/v8/test/unittests/avoid-windows-h-includes.cc create mode 100644 deps/v8/test/unittests/security/virtual-memory-cage-unittest.cc delete mode 100644 deps/v8/third_party/jinja2/AUTHORS delete mode 100644 deps/v8/third_party/jinja2/Jinja2-2.10.1.tar.gz.md5 delete mode 100644 deps/v8/third_party/jinja2/Jinja2-2.10.1.tar.gz.sha512 create mode 100644 deps/v8/third_party/jinja2/Jinja2-2.11.3.tar.gz.md5 create mode 100644 deps/v8/third_party/jinja2/Jinja2-2.11.3.tar.gz.sha512 delete mode 100644 deps/v8/third_party/jinja2/LICENSE create mode 100644 deps/v8/third_party/jinja2/LICENSE.rst create mode 100644 deps/v8/third_party/jinja2/README.rst delete mode 100755 deps/v8/third_party/jinja2/get_jinja2.sh delete mode 100644 deps/v8/third_party/jinja2/patches/0002-jinja2-add-_identifier-to-pydeps-for-py3.patch create mode 100644 deps/v8/tools/gcmole/OWNERS create mode 100755 deps/v8/tools/process-wasm-compilation-times.py delete mode 100644 deps/v8/tools/testrunner/local/junit_output.py diff --git a/deps/v8/AUTHORS b/deps/v8/AUTHORS index 7307ced9fc28f8..46dd9fb1aaf72f 100644 --- a/deps/v8/AUTHORS +++ b/deps/v8/AUTHORS @@ -62,6 +62,7 @@ Andrew Paprocki Anna Henningsen Antoine du Hamel Anton Bikineev +Archil Sharashenidze Bangfu Tao Ben Coe Ben Newman @@ -251,6 +252,7 @@ Yi Wang Yong Wang Youfeng Hao Yu Yin +Yujie Wang Yuri Iozzelli Yusif Khudhur Zac Hansen diff --git a/deps/v8/BUILD.bazel b/deps/v8/BUILD.bazel index 23bce0f4bdcbfc..ff69465f0ebf3b 100644 --- a/deps/v8/BUILD.bazel +++ b/deps/v8/BUILD.bazel @@ -9,18 +9,14 @@ load( "v8_build_config", "v8_config", "v8_custom_config", - "v8_raw_flag", "v8_flag", "v8_int", - "v8_string", "v8_library", - "v8_torque", "v8_mksnapshot", + "v8_string", + "v8_torque", ) - -# ================================================= -# Configuration settings -# ================================================= +load(":bazel/v8-non-pointer-compression.bzl", "v8_binary_non_pointer_compression") config_setting( name = "is_debug", @@ -29,93 +25,6 @@ config_setting( }, ) -config_setting( - name = "is_k8", - values = {"cpu": "k8"}, -) - -config_setting( - name = "is_darwin", - values = {"cpu": "darwin"}, -) - -selects.config_setting_group( - name = "is_x64", - match_any = [":is_k8", ":is_darwin"], -) - -config_setting( - name = "is_arm64", - values = { - "host_cpu": "k8", - "cpu": "arm", - }, -) - -config_setting( - name = "is_ia32", - values = { - "host_cpu": "k8", - "cpu": "x86", - }, -) - -config_setting( - name = "is_arm", - values = { - "host_cpu": "k8", - "cpu": "armeabi-v7a", - }, -) - -selects.config_setting_group( - name = "is_32bits", - match_any = [":is_ia32", ":is_arm"], -) - -config_setting( - name = "is_linux", - constraint_values = ["@platforms//os:linux"], -) - -config_setting( - name = "is_android", - constraint_values = ["@platforms//os:android"], -) - -config_setting( - name = "is_macos", - constraint_values = ["@platforms//os:macos"], -) - -selects.config_setting_group( - name = "is_posix", - match_any = [":is_linux", ":is_android", ":is_macos"], -) - -config_setting( - name = "is_linux_x64", - constraint_values = ["@platforms//os:linux"], - values = {"cpu": "k8"}, -) - -config_setting( - name = "is_macos_x64", - constraint_values = ["@platforms//os:macos"], - values = {"cpu": "darwin"}, -) - -selects.config_setting_group( - name = "is_linux_x64_or_macos_x64", - match_any = [":is_linux_x64", ":is_macos_x64"], -) - -config_setting( - name = "is_android_x86", - constraint_values = ["@platforms//os:android"], - values = {"cpu": "x86"}, -) - # ================================================= # Flags # ================================================= @@ -165,6 +74,7 @@ config_setting( # v8_control_flow_integrity # v8_enable_virtual_memory_cage # cppgc_enable_caged_heap +# cppgc_enable_check_assignments_in_prefinalizers # cppgc_enable_object_names # cppgc_enable_verify_heap # cppgc_enable_young_generation @@ -179,48 +89,147 @@ config_setting( # v8_enable_allocation_folding # v8_allocation_site_tracking -v8_string(name = "v8_root", default = ".") +v8_string( + name = "v8_root", + default = "third_party/v8/HEAD", +) v8_flag(name = "v8_android_log_stdout") + v8_flag(name = "v8_annotate_torque_ir") v8_flag(name = "v8_code_comments") -v8_flag(name = "v8_deprecation_warnings", default = True) -v8_flag(name = "v8_imminent_deprecation_warnings", default = True) +v8_flag( + name = "v8_deprecation_warnings", + default = True, +) + +v8_flag( + name = "v8_imminent_deprecation_warnings", + default = True, +) v8_flag(name = "v8_enable_backtrace") + v8_flag(name = "v8_enable_debug_code") + v8_flag(name = "v8_enable_disassembler") -v8_flag(name = "v8_enable_handle_zapping", default = True) + +v8_flag( + name = "v8_enable_handle_zapping", + default = True, +) + v8_flag(name = "v8_enable_hugepage") + v8_flag(name = "v8_enable_fast_mksnapshot") + v8_flag(name = "v8_enable_future") -v8_flag(name = "v8_enable_i18n_support", default = True) -v8_flag(name = "v8_enable_lazy_source_positions", default = True) -v8_flag(name = "v8_enable_minor_mc", default = True) + +# NOTE: Transitions are not recommended in library targets: +# https://groups.google.com/a/google.com/g/c-toolchain-team/c/W4nmWonD0ow/m/rLGyIL4YIQAJ +# Therefore we create multiple targets with and without ICU, instead of +# implementing the flag v8_enable_i18n_support. + +v8_flag( + name = "v8_enable_lazy_source_positions", + default = True, +) + +v8_flag( + name = "v8_enable_minor_mc", + default = True, +) + v8_flag(name = "v8_enable_object_print") + v8_flag(name = "v8_enable_slow_dchecks") + v8_flag(name = "v8_enable_snapshot_code_comments") + v8_flag(name = "v8_enable_snapshot_native_code_counters") + v8_flag(name = "v8_enable_trace_maps") + v8_flag(name = "v8_enable_v8_checks") + v8_flag(name = "v8_enable_verify_csa") + v8_flag(name = "v8_enable_verify_heap") + v8_flag(name = "v8_enable_verify_predictable") + v8_flag(name = "v8_enable_test_features") -v8_flag(name = "v8_enable_webassembly", default = True) -v8_int(name = "v8_typed_array_max_size_in_heap", default = 64) +v8_flag( + name = "v8_enable_webassembly", + default = True, +) -# Pointer compression, true by default if x64 or arm64. -v8_raw_flag(name = "v8_enable_pointer_compression") +v8_int( + name = "v8_typed_array_max_size_in_heap", + default = 64, +) + +# We use a string flag to create a 3 value-logic. +# If no explicit value for v8_enable_pointer_compression, we set it to 'none'. +v8_string( + name = "v8_enable_pointer_compression", + default = "none", +) + +# Default setting for v8_enable_pointer_compression. +config_setting( + name = "v8_enable_pointer_compression_is_none", + flag_values = { + ":v8_enable_pointer_compression": "none", + }, +) + +# Explicity defined v8_enable_pointer_compression. +config_setting( + name = "v8_enable_pointer_compression_is_true", + flag_values = { + ":v8_enable_pointer_compression": "True", + }, +) + +# Default setting for v8_enable_pointer_compression when target is x64. +selects.config_setting_group( + name = "v8_target_x64_default_pointer_compression", + match_all = [ + ":v8_enable_pointer_compression_is_none", + "@config//:v8_target_x64", + ], +) + +# Default setting for v8_enable_pointer_compression when target is arm64. +selects.config_setting_group( + name = "v8_target_arm64_default_pointer_compression", + match_all = [ + ":v8_enable_pointer_compression_is_none", + "@config//:v8_target_arm64", + ], +) + +# v8_enable_pointer_compression is valid whenever it is explicitly defined +# or we have the default settings for targets x64 and arm64. selects.config_setting_group( name = "is_v8_enable_pointer_compression", - match_any = [ ":raw_v8_enable_pointer_compression", ":is_x64", ":is_arm64" ], + match_any = [ + ":v8_enable_pointer_compression_is_true", + ":v8_target_x64_default_pointer_compression", + ":v8_target_arm64_default_pointer_compression", + ], ) + # Pointer cage, true by default if v8_enable_pointer_compression. -v8_flag(name = "v8_enable_pointer_compression_shared_cage", default = True) +v8_flag( + name = "v8_enable_pointer_compression_shared_cage", + default = True, +) + # Enable shared cage if v8_enable_pointer_compression # and v8_enable_pointer_compression_shared_cage. selects.config_setting_group( @@ -230,6 +239,7 @@ selects.config_setting_group( ":is_v8_enable_pointer_compression_shared_cage", ], ) + # Enable isolated cage if v8_enable_pointer_compression and # NOT v8_enable_pointer_compression_shared_cage. selects.config_setting_group( @@ -243,7 +253,10 @@ selects.config_setting_group( # Enable -rdynamic. selects.config_setting_group( name = "should_add_rdynamic", - match_all = [ ":is_linux", ":is_v8_enable_backtrace" ], + match_all = [ + "@config//:is_linux", + ":is_v8_enable_backtrace", + ], ) v8_custom_config(name = "default") @@ -260,13 +273,11 @@ v8_config( "v8_enable_handle_zapping": "ENABLE_HANDLE_ZAPPING", "v8_enable_hugepage": "ENABLE_HUGEPAGE", "v8_enable_future": "V8_ENABLE_FUTURE", - "v8_enable_i18n_support": "V8_INTL_SUPPORT", "v8_enable_lazy_source_positions": "V8_ENABLE_LAZY_SOURCE_POSITIONS", "v8_enable_minor_mc": "ENABLE_MINOR_MC", "v8_enable_object_print": "OBJECT_PRINT", "v8_enable_slow_dchecks": "ENABLE_SLOW_DCHECKS", - "v8_enable_snapshot_native_code_counters": - "V8_SNAPSHOT_NATIVE_CODE_COUNTERS", + "v8_enable_snapshot_native_code_counters": "V8_SNAPSHOT_NATIVE_CODE_COUNTERS", "v8_enable_trace_maps": "V8_TRACE_MAPS", "v8_enable_v8_checks": "V8_ENABLE_CHECKS", "v8_enable_verify_csa": "ENABLE_VERIFY_CSA", @@ -277,30 +288,37 @@ v8_config( defines = [ "GOOGLE3", "CHROMIUM_ZLIB_NO_CHROMECONF", + "ENABLE_DEBUGGER_SUPPORT", "V8_ADVANCED_BIGINT_ALGORITHMS", "V8_CONCURRENT_MARKING", ] + select({ - ":is_debug": [ "DEBUG" ], - "//conditions:default": [], - }) + select({ - ":is_ia32": [ "V8_TARGET_ARCH_IA32" ], - ":is_x64": [ "V8_TARGET_ARCH_X64" ], - ":is_arm": [ - "V8_TARGET_ARCH_ARM", - "CAN_USE_ARMV7_INSTRUCTIONS", - "CAN_USE_VFP3_INSTRUCTIONS", + ":is_debug": [ + "DEBUG", + "V8_ENABLE_CHECKS", ], - ":is_arm64": [ "V8_TARGET_ARCH_ARM64" ], - }) + select({ - ":is_android": [ + "//conditions:default": [], + }) + select( + { + "@config//:v8_target_ia32": ["V8_TARGET_ARCH_IA32"], + "@config//:v8_target_x64": ["V8_TARGET_ARCH_X64"], + "@config//:v8_target_arm": [ + "V8_TARGET_ARCH_ARM", + "CAN_USE_ARMV7_INSTRUCTIONS", + "CAN_USE_VFP3_INSTRUCTIONS", + ], + "@config//:v8_target_arm64": ["V8_TARGET_ARCH_ARM64"], + }, + no_match_error = "Please specify a target cpu supported by v8", + ) + select({ + "@config//:is_android": [ "V8_HAVE_TARGET_OS", "V8_TARGET_OS_ANDROID", ], - ":is_linux": [ + "@config//:is_linux": [ "V8_HAVE_TARGET_OS", "V8_TARGET_OS_LINUX", ], - ":is_macos": [ + "@config//:is_macos": [ "V8_HAVE_TARGET_OS", "V8_TARGET_OS_MACOSX", ], @@ -312,10 +330,10 @@ v8_config( "//conditions:default": [], }) + select({ ":enable_pointer_compression_shared_cage": [ - "V8_COMPRESS_POINTERS_IN_SHARED_CAGE" + "V8_COMPRESS_POINTERS_IN_SHARED_CAGE", ], ":enable_pointer_compression_isolated_cage": [ - "V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE" + "V8_COMPRESS_POINTERS_IN_ISOLATE_CAGE", ], "//conditions:default": [], }) + select({ @@ -326,7 +344,7 @@ v8_config( ], "//conditions:default": [], }), - deps = [ ":default" ], + deps = [":default"], ) # ================================================= @@ -345,8 +363,8 @@ filegroup( name = "v8_version_files", srcs = [ "include/v8-value-serializer-version.h", - "include/v8-version-string.h", "include/v8-version.h", + "include/v8-version-string.h", ], ) @@ -361,10 +379,10 @@ filegroup( "include/cppgc/ephemeron-pair.h", "include/cppgc/explicit-management.h", "include/cppgc/garbage-collected.h", + "include/cppgc/heap.h", "include/cppgc/heap-consistency.h", "include/cppgc/heap-state.h", "include/cppgc/heap-statistics.h", - "include/cppgc/heap.h", "include/cppgc/internal/api-constants.h", "include/cppgc/internal/atomic-entry-flag.h", "include/cppgc/internal/caged-heap-local-data.h", @@ -391,14 +409,13 @@ filegroup( "include/cppgc/trace-trait.h", "include/cppgc/type-traits.h", "include/cppgc/visitor.h", - ] + ], ) filegroup( name = "v8_headers_files", srcs = [ - ":cppgc_headers_files", - ":v8_version_files", + "include/v8.h", "include/v8-array-buffer.h", "include/v8-callbacks.h", "include/v8-container.h", @@ -424,12 +441,12 @@ filegroup( "include/v8-maybe.h", "include/v8-memory-span.h", "include/v8-message.h", - "include/v8-microtask-queue.h", "include/v8-microtask.h", + "include/v8-microtask-queue.h", "include/v8-object.h", "include/v8-persistent-handle.h", - "include/v8-primitive-object.h", "include/v8-primitive.h", + "include/v8-primitive-object.h", "include/v8-profiler.h", "include/v8-promise.h", "include/v8-proxy.h", @@ -442,11 +459,12 @@ filegroup( "include/v8-typed-array.h", "include/v8-unwinder.h", "include/v8-util.h", - "include/v8-value-serializer.h", "include/v8-value.h", + "include/v8-value-serializer.h", "include/v8-wasm.h", "include/v8-weak-callback-info.h", - "include/v8.h", + ":cppgc_headers_files", + ":v8_version_files", ], ) @@ -456,7 +474,7 @@ filegroup( "src/flags/flag-definitions.h", "src/flags/flags.h", ] + select({ - "is_v8_enable_webassembly": [ "src/wasm/wasm-feature-flags.h" ], + "is_v8_enable_webassembly": ["src/wasm/wasm-feature-flags.h"], "//conditions:default": [], }), ) @@ -577,7 +595,7 @@ filegroup( "src/base/vlq-base64.cc", "src/base/vlq-base64.h", ] + select({ - ":is_posix": [ + "@config//:is_posix": [ "src/base/platform/platform-posix.cc", "src/base/platform/platform-posix.h", "src/base/platform/platform-posix-time.cc", @@ -585,19 +603,20 @@ filegroup( ], "//conditions:default": [], }) + select({ - ":is_linux": [ + "@config//:is_linux": [ "src/base/debug/stack_trace_posix.cc", "src/base/platform/platform-linux.cc", ], - "is_android": [ + "@config//:is_android": [ "src/base/debug/stack_trace_android.cc", "src/base/platform/platform-linux.cc", ], - "is_macos": [ + "@config//:is_macos": [ "src/base/debug/stack_trace_posix.cc", "src/base/platform/platform-macos.cc", ], }), + visibility = ["//visibility:public"], ) filegroup( @@ -642,11 +661,11 @@ filegroup( filegroup( name = "torque_runtime_support_files", - srcs = [ "src/torque/runtime-support.h" ], + srcs = ["src/torque/runtime-support.h"], ) filegroup( - name = "torque_files", + name = "noicu/torque_files", srcs = [ "src/builtins/aggregate-error.tq", "src/builtins/array-at.tq", @@ -805,6 +824,7 @@ filegroup( "src/objects/js-proxy.tq", "src/objects/js-regexp-string-iterator.tq", "src/objects/js-regexp.tq", + "src/objects/js-temporal-objects.tq", "src/objects/js-weak-refs.tq", "src/objects/literal-objects.tq", "src/objects/map.tq", @@ -834,6 +854,7 @@ filegroup( "src/objects/template-objects.tq", "src/objects/templates.tq", "src/objects/torque-defined-classes.tq", + "src/objects/turbofan-types.tq", "test/torque/test-torque.tq", "third_party/v8/builtins/array-sort.tq", ] + select({ @@ -843,24 +864,27 @@ filegroup( "src/wasm/wasm-objects.tq", ], "//conditions:default": [], - }) + select({ - ":is_v8_enable_i18n_support": [ - "src/objects/intl-objects.tq", - "src/objects/js-break-iterator.tq", - "src/objects/js-collator.tq", - "src/objects/js-date-time-format.tq", - "src/objects/js-display-names.tq", - "src/objects/js-list-format.tq", - "src/objects/js-locale.tq", - "src/objects/js-number-format.tq", - "src/objects/js-plural-rules.tq", - "src/objects/js-relative-time-format.tq", - "src/objects/js-segment-iterator.tq", - "src/objects/js-segmenter.tq", - "src/objects/js-segments.tq", - ], - "//conditions:default": [], - }) + }), +) + +filegroup( + name = "icu/torque_files", + srcs = [ + "src/objects/intl-objects.tq", + "src/objects/js-break-iterator.tq", + "src/objects/js-collator.tq", + "src/objects/js-date-time-format.tq", + "src/objects/js-display-names.tq", + "src/objects/js-list-format.tq", + "src/objects/js-locale.tq", + "src/objects/js-number-format.tq", + "src/objects/js-plural-rules.tq", + "src/objects/js-relative-time-format.tq", + "src/objects/js-segment-iterator.tq", + "src/objects/js-segmenter.tq", + "src/objects/js-segments.tq", + ":noicu/torque_files", + ], ) filegroup( @@ -999,6 +1023,7 @@ filegroup( "src/builtins/builtins-sharedarraybuffer.cc", "src/builtins/builtins-string.cc", "src/builtins/builtins-symbol.cc", + "src/builtins/builtins-temporal.cc", "src/builtins/builtins-trace.cc", "src/builtins/builtins-typed-array.cc", "src/builtins/builtins-utils-inl.h", @@ -1085,8 +1110,6 @@ filegroup( "src/common/assert-scope.cc", "src/common/assert-scope.h", "src/common/checks.h", - "src/common/external-pointer-inl.h", - "src/common/external-pointer.h", "src/common/message-template.h", "src/common/ptr-compr-inl.h", "src/common/ptr-compr.h", @@ -1159,8 +1182,6 @@ filegroup( "src/execution/arguments.h", "src/execution/execution.cc", "src/execution/execution.h", - "src/execution/external-pointer-table.cc", - "src/execution/external-pointer-table.h", "src/execution/frame-constants.h", "src/execution/frames-inl.h", "src/execution/frames.cc", @@ -1404,8 +1425,6 @@ filegroup( "src/init/startup-data-util.h", "src/init/v8.cc", "src/init/v8.h", - "src/init/vm-cage.cc", - "src/init/vm-cage.h", "src/interpreter/block-coverage-builder.h", "src/interpreter/bytecode-array-builder.cc", "src/interpreter/bytecode-array-builder.h", @@ -1577,6 +1596,8 @@ filegroup( "src/objects/js-regexp-string-iterator.h", "src/objects/js-regexp.cc", "src/objects/js-regexp.h", + "src/objects/js-temporal-objects.h", + "src/objects/js-temporal-objects-inl.h", "src/objects/js-weak-refs.h", "src/objects/js-weak-refs-inl.h", "src/objects/keys.cc", @@ -1708,6 +1729,8 @@ filegroup( "src/objects/transitions-inl.h", "src/objects/transitions.cc", "src/objects/transitions.h", + "src/objects/turbofan-types-inl.h", + "src/objects/turbofan-types.h", "src/objects/type-hints.cc", "src/objects/type-hints.h", "src/objects/value-serializer.cc", @@ -1856,6 +1879,14 @@ filegroup( "src/runtime/runtime-weak-refs.cc", "src/runtime/runtime.cc", "src/runtime/runtime.h", + "src/security/external-pointer-table.cc", + "src/security/vm-cage.cc", + "src/security/caged-pointer-inl.h", + "src/security/caged-pointer.h", + "src/security/external-pointer-inl.h", + "src/security/external-pointer-table.h", + "src/security/external-pointer.h", + "src/security/vm-cage.h", "src/base/sanitizer/asan.h", "src/base/sanitizer/lsan-page-allocator.cc", "src/base/sanitizer/lsan-page-allocator.h", @@ -1884,9 +1915,16 @@ filegroup( "src/snapshot/serializer-deserializer.cc", "src/snapshot/serializer-deserializer.h", "src/snapshot/serializer.cc", + "src/snapshot/serializer-inl.h", "src/snapshot/serializer.h", + "src/snapshot/shared-heap-deserializer.h", + "src/snapshot/shared-heap-deserializer.cc", + "src/snapshot/shared-heap-serializer.h", + "src/snapshot/shared-heap-serializer.cc", "src/snapshot/snapshot-compression.cc", "src/snapshot/snapshot-compression.h", + "third_party/zlib/google/compression_utils_portable.h", + "third_party/zlib/google/compression_utils_portable.cc", "src/snapshot/snapshot-data.cc", "src/snapshot/snapshot-data.h", "src/snapshot/snapshot-source-sink.cc", @@ -1989,7 +2027,7 @@ filegroup( "src/heap/third-party/heap-api.h", "src/heap/third-party/heap-api-stub.cc", ] + select({ - ":is_ia32": [ + "@config//:v8_target_ia32": [ "src/baseline/ia32/baseline-assembler-ia32-inl.h", "src/baseline/ia32/baseline-compiler-ia32-inl.h", "src/codegen/shared-ia32-x64/macro-assembler-shared-ia32-x64.h", @@ -2015,10 +2053,9 @@ filegroup( "src/execution/ia32/frame-constants-ia32.h", "src/regexp/ia32/regexp-macro-assembler-ia32.cc", "src/regexp/ia32/regexp-macro-assembler-ia32.h", - "src/third_party/valgrind/valgrind.h", "src/wasm/baseline/ia32/liftoff-assembler-ia32.h", ], - ":is_x64": [ + "@config//:v8_target_x64": [ "src/baseline/x64/baseline-assembler-x64-inl.h", "src/baseline/x64/baseline-compiler-x64-inl.h", "src/codegen/shared-ia32-x64/macro-assembler-shared-ia32-x64.h", @@ -2048,10 +2085,9 @@ filegroup( "src/execution/x64/frame-constants-x64.h", "src/regexp/x64/regexp-macro-assembler-x64.cc", "src/regexp/x64/regexp-macro-assembler-x64.h", - "src/third_party/valgrind/valgrind.h", "src/wasm/baseline/x64/liftoff-assembler-x64.h", ], - "is_arm": [ + "@config//:v8_target_arm": [ "src/baseline/arm/baseline-assembler-arm-inl.h", "src/baseline/arm/baseline-compiler-arm-inl.h", "src/codegen/arm/assembler-arm-inl.h", @@ -2082,7 +2118,7 @@ filegroup( "src/regexp/arm/regexp-macro-assembler-arm.h", "src/wasm/baseline/arm/liftoff-assembler-arm.h", ], - ":is_arm64": [ + "@config//:v8_target_arm64": [ "src/baseline/arm64/baseline-assembler-arm64-inl.h", "src/baseline/arm64/baseline-compiler-arm64-inl.h", "src/codegen/arm64/assembler-arm64-inl.h", @@ -2126,11 +2162,18 @@ filegroup( "src/wasm/baseline/arm64/liftoff-assembler-arm64.h", ], }) + select({ - ":is_linux_x64_or_macos_x64": [ + # Only for x64 builds and for arm64 with x64 host simulator. + "@config//:is_x64": [ "src/trap-handler/handler-inside-posix.cc", "src/trap-handler/handler-outside-posix.cc", ], "//conditions:default": [], + }) + select({ + "@config//:v8_arm64_simulator": [ + "src/trap-handler/trap-handler-simulator.h", + "src/trap-handler/handler-outside-simulator.cc", + ], + "//conditions:default": [], }) + select({ ":is_v8_enable_webassembly": [ "src/asmjs/asm-js.cc", @@ -2143,6 +2186,7 @@ filegroup( "src/asmjs/asm-types.h", "src/compiler/int64-lowering.h", "src/compiler/wasm-compiler.h", + "src/compiler/wasm-escape-analysis.h", "src/compiler/wasm-inlining.h", "src/debug/debug-wasm-objects.cc", "src/debug/debug-wasm-objects.h", @@ -2189,6 +2233,7 @@ filegroup( "src/wasm/signature-map.h", "src/wasm/simd-shuffle.cc", "src/wasm/simd-shuffle.h", + "src/wasm/stacks.h", "src/wasm/streaming-decoder.cc", "src/wasm/streaming-decoder.h", "src/wasm/struct-types.h", @@ -2235,55 +2280,57 @@ filegroup( "src/wasm/wasm-value.h", ], "//conditions:default": [], - }) + select({ - ":is_v8_enable_i18n_support": [ - "src/builtins/builtins-intl.cc", - "src/builtins/builtins-intl-gen.cc", - "src/objects/intl-objects.cc", - "src/objects/intl-objects.h", - "src/objects/js-break-iterator.cc", - "src/objects/js-break-iterator.h", - "src/objects/js-break-iterator-inl.h", - "src/objects/js-collator.cc", - "src/objects/js-collator.h", - "src/objects/js-collator-inl.h", - "src/objects/js-date-time-format.cc", - "src/objects/js-date-time-format.h", - "src/objects/js-date-time-format-inl.h", - "src/objects/js-display-names.cc", - "src/objects/js-display-names.h", - "src/objects/js-display-names-inl.h", - "src/objects/js-list-format.cc", - "src/objects/js-list-format.h", - "src/objects/js-list-format-inl.h", - "src/objects/js-locale.cc", - "src/objects/js-locale.h", - "src/objects/js-locale-inl.h", - "src/objects/js-number-format.cc", - "src/objects/js-number-format.h", - "src/objects/js-number-format-inl.h", - "src/objects/js-plural-rules.cc", - "src/objects/js-plural-rules.h", - "src/objects/js-plural-rules-inl.h", - "src/objects/js-relative-time-format.cc", - "src/objects/js-relative-time-format.h", - "src/objects/js-relative-time-format-inl.h", - "src/objects/js-segmenter.cc", - "src/objects/js-segmenter.h", - "src/objects/js-segmenter-inl.h", - "src/objects/js-segment-iterator.cc", - "src/objects/js-segment-iterator.h", - "src/objects/js-segment-iterator-inl.h", - "src/objects/js-segments.cc", - "src/objects/js-segments.h", - "src/objects/js-segments-inl.h", - "src/runtime/runtime-intl.cc", - "src/strings/char-predicates.cc", - ], - "//conditions:default": [], }), ) +filegroup( + name = "icu/v8_base_without_compiler_files", + srcs = [ + "src/builtins/builtins-intl.cc", + "src/builtins/builtins-intl-gen.cc", + "src/objects/intl-objects.cc", + "src/objects/intl-objects.h", + "src/objects/js-break-iterator.cc", + "src/objects/js-break-iterator.h", + "src/objects/js-break-iterator-inl.h", + "src/objects/js-collator.cc", + "src/objects/js-collator.h", + "src/objects/js-collator-inl.h", + "src/objects/js-date-time-format.cc", + "src/objects/js-date-time-format.h", + "src/objects/js-date-time-format-inl.h", + "src/objects/js-display-names.cc", + "src/objects/js-display-names.h", + "src/objects/js-display-names-inl.h", + "src/objects/js-list-format.cc", + "src/objects/js-list-format.h", + "src/objects/js-list-format-inl.h", + "src/objects/js-locale.cc", + "src/objects/js-locale.h", + "src/objects/js-locale-inl.h", + "src/objects/js-number-format.cc", + "src/objects/js-number-format.h", + "src/objects/js-number-format-inl.h", + "src/objects/js-plural-rules.cc", + "src/objects/js-plural-rules.h", + "src/objects/js-plural-rules-inl.h", + "src/objects/js-relative-time-format.cc", + "src/objects/js-relative-time-format.h", + "src/objects/js-relative-time-format-inl.h", + "src/objects/js-segment-iterator.cc", + "src/objects/js-segment-iterator.h", + "src/objects/js-segment-iterator-inl.h", + "src/objects/js-segmenter.cc", + "src/objects/js-segmenter.h", + "src/objects/js-segmenter-inl.h", + "src/objects/js-segments.cc", + "src/objects/js-segments.h", + "src/objects/js-segments-inl.h", + "src/runtime/runtime-intl.cc", + "src/strings/char-predicates.cc", + ], +) + filegroup( name = "v8_compiler_files", srcs = [ @@ -2526,14 +2573,13 @@ filegroup( ":is_v8_enable_webassembly": [ "src/compiler/int64-lowering.cc", "src/compiler/wasm-compiler.cc", + "src/compiler/wasm-escape-analysis.cc", "src/compiler/wasm-inlining.cc", ], "//conditions:default": [], }), ) - - filegroup( name = "v8_initializers_files", srcs = [ @@ -2605,10 +2651,10 @@ filegroup( "src/interpreter/interpreter-intrinsics-generator.cc", "src/interpreter/interpreter-intrinsics-generator.h", ] + select({ - ":is_ia32": ["src/builtins/ia32/builtins-ia32.cc"], - ":is_x64": ["src/builtins/x64/builtins-x64.cc"], - ":is_arm" : ["src/builtins/arm/builtins-arm.cc"], - ":is_arm64": ["src/builtins/arm64/builtins-arm64.cc"], + "@config//:v8_target_ia32": ["src/builtins/ia32/builtins-ia32.cc"], + "@config//:v8_target_x64": ["src/builtins/x64/builtins-x64.cc"], + "@config//:v8_target_arm": ["src/builtins/arm/builtins-arm.cc"], + "@config//:v8_target_arm64": ["src/builtins/arm64/builtins-arm64.cc"], }) + select({ ":is_v8_enable_webassembly": [ "src/builtins/builtins-wasm-gen.cc", @@ -2702,6 +2748,7 @@ filegroup( "src/heap/cppgc/task-handle.h", "src/heap/cppgc/trace-event.h", "src/heap/cppgc/trace-trait.cc", + "src/heap/cppgc/unmarker.h", "src/heap/cppgc/virtual-memory.cc", "src/heap/cppgc/virtual-memory.h", "src/heap/cppgc/visitor.cc", @@ -2720,19 +2767,22 @@ filegroup( "src/heap/base/worklist.h", "src/heap/cppgc/globals.h", ] + select({ - ":is_ia32": ["src/heap/base/asm/ia32/push_registers_asm.cc"], - ":is_x64": ["src/heap/base/asm/x64/push_registers_asm.cc"], - ":is_arm" : ["src/heap/base/asm/arm/push_registers_asm.cc"], - ":is_arm64": ["src/heap/base/asm/arm64/push_registers_asm.cc"], + # Note these cannot be v8_target_is_* selects because these contain + # inline assembly that runs inside the executable. Since these are + # linked directly into mksnapshot, they must use the actual target cpu. + "@config//:is_ia32": ["src/heap/base/asm/ia32/push_registers_asm.cc"], + "@config//:is_x64": ["src/heap/base/asm/x64/push_registers_asm.cc"], + "@config//:is_arm": ["src/heap/base/asm/arm/push_registers_asm.cc"], + "@config//:is_arm64": ["src/heap/base/asm/arm64/push_registers_asm.cc"], }), ) filegroup( name = "v8_bigint", srcs = [ + "src/bigint/bigint.h", "src/bigint/bigint-internal.cc", "src/bigint/bigint-internal.h", - "src/bigint/bigint.h", "src/bigint/bitwise.cc", "src/bigint/digit-arithmetic.h", "src/bigint/div-barrett.cc", @@ -2755,6 +2805,7 @@ filegroup( filegroup( name = "mksnapshot_files", srcs = [ + "src/init/setup-isolate-full.cc", "src/snapshot/embedded/embedded-empty.cc", "src/snapshot/embedded/embedded-file-writer.cc", "src/snapshot/embedded/embedded-file-writer.h", @@ -2770,8 +2821,7 @@ filegroup( "src/snapshot/embedded/platform-embedded-file-writer-win.h", "src/snapshot/mksnapshot.cc", "src/snapshot/snapshot-empty.cc", - "src/init/setup-isolate-full.cc", - ] + ], ) filegroup( @@ -2803,6 +2853,8 @@ filegroup( "src/inspector/v8-debugger.h", "src/inspector/v8-debugger-agent-impl.cc", "src/inspector/v8-debugger-agent-impl.h", + "src/inspector/v8-debugger-id.cc", + "src/inspector/v8-debugger-id.h", "src/inspector/v8-debugger-script.cc", "src/inspector/v8-debugger-script.h", "src/inspector/v8-heap-profiler-agent-impl.cc", @@ -2825,8 +2877,6 @@ filegroup( "src/inspector/v8-string-conversions.h", "src/inspector/v8-value-utils.cc", "src/inspector/v8-value-utils.h", - "src/inspector/v8-debugger-id.h", - "src/inspector/v8-debugger-id.cc", "src/inspector/value-mirror.cc", "src/inspector/value-mirror.h", ":crdtp_platform_files", @@ -2848,7 +2898,6 @@ filegroup( srcs = [ "third_party/inspector_protocol/crdtp/cbor.cc", "third_party/inspector_protocol/crdtp/cbor.h", - "third_party/inspector_protocol/crdtp/maybe.h", "third_party/inspector_protocol/crdtp/dispatch.cc", "third_party/inspector_protocol/crdtp/dispatch.h", "third_party/inspector_protocol/crdtp/error_support.cc", @@ -2857,11 +2906,12 @@ filegroup( "third_party/inspector_protocol/crdtp/find_by_first.h", "third_party/inspector_protocol/crdtp/frontend_channel.h", "third_party/inspector_protocol/crdtp/glue.h", - "third_party/inspector_protocol/crdtp/protocol_core.h", - "third_party/inspector_protocol/crdtp/protocol_core.cc", "third_party/inspector_protocol/crdtp/json.cc", "third_party/inspector_protocol/crdtp/json.h", + "third_party/inspector_protocol/crdtp/maybe.h", "third_party/inspector_protocol/crdtp/parser_handler.h", + "third_party/inspector_protocol/crdtp/protocol_core.cc", + "third_party/inspector_protocol/crdtp/protocol_core.h", "third_party/inspector_protocol/crdtp/serializable.cc", "third_party/inspector_protocol/crdtp/serializable.h", "third_party/inspector_protocol/crdtp/serializer_traits.h", @@ -2873,12 +2923,39 @@ filegroup( ) filegroup( - name = "snapshot_files", + name = "noicu/snapshot_files", srcs = [ "src/init/setup-isolate-deserialize.cc", - # TODO(victorgomes): Create a flag to select pregenerated snapshots. - ":generated_snapshot_files", - ] + ] + select({ + "@config//:v8_target_arm": [ + "google3/snapshots/arm/noicu/embedded.S", + "google3/snapshots/arm/noicu/snapshot.cc", + ], + "@config//:v8_target_ia32": [ + "google3/snapshots/ia32/noicu/embedded.S", + "google3/snapshots/ia32/noicu/snapshot.cc", + ], + "@config//:v8_target_arm64": [":noicu/generated_snapshot_files"], + "@config//:v8_target_x64": [":noicu/generated_snapshot_files"], + }), +) + +filegroup( + name = "icu/snapshot_files", + srcs = [ + "src/init/setup-isolate-deserialize.cc", + ] + select({ + "@config//:v8_target_arm": [ + "google3/snapshots/arm/icu/embedded.S", + "google3/snapshots/arm/icu/snapshot.cc", + ], + "@config//:v8_target_ia32": [ + "google3/snapshots/ia32/icu/embedded.S", + "google3/snapshots/ia32/icu/snapshot.cc", + ], + "@config//:v8_target_arm64": [":icu/generated_snapshot_files"], + "@config//:v8_target_x64": [":icu/generated_snapshot_files"], + }), ) filegroup( @@ -2888,7 +2965,7 @@ filegroup( "src/wasm/c-api.h", "third_party/wasm-api/wasm.h", "third_party/wasm-api/wasm.hh", - ] + ], ) # ================================================= @@ -2899,7 +2976,13 @@ filegroup( # which needs class-debug-readers and debug-macros. v8_torque( name = "generated_torque_files", - srcs = [":torque_files"], + args = select({ + ":is_v8_annotate_torque_ir": ["-annotate-ir"], + "//conditions:default": [], + }) + select({ + "@config//:v8_target_is_32_bits": ["-m32"], + "//conditions:default": [], + }), extras = [ "bit-fields.h", "builtin-definitions.h", @@ -2922,18 +3005,13 @@ v8_torque( "objects-printer.cc", "visitor-lists.h", ], - args = select({ - ":is_v8_annotate_torque_ir": [ "-annotate-ir" ], - "//conditions:default": [], - }) + select({ - ":is_32bits": [ "-m32" ], - "//conditions:default": [], - }), + icu_srcs = [":icu/torque_files"], + noicu_srcs = [":noicu/torque_files"], ) genrule( name = "generated_inspector_files", - srcs = [ "include/js_protocol.pdl" ], + srcs = ["include/js_protocol.pdl"], outs = [ "include/inspector/Debugger.h", "include/inspector/Runtime.h", @@ -2954,9 +3032,38 @@ genrule( "src/inspector/protocol/Schema.cpp", "src/inspector/protocol/Schema.h", ], - message = "Generating inspector files", cmd = "bazel/generate-inspector-files.sh $(@D)", local = 1, + message = "Generating inspector files", +) + +filegroup( + name = "v8_common_libshared_files", + srcs = [ + ":torque_runtime_support_files", + ":v8_compiler_files", + ":v8_initializers_files", + ":v8_libplatform_files", + ":v8_libsampler_files", + ":v8_shared_internal_headers", + ], +) + +filegroup( + name = "d8_files", + srcs = [ + "src/d8/async-hooks-wrapper.cc", + "src/d8/async-hooks-wrapper.h", + "src/d8/d8.cc", + "src/d8/d8.h", + "src/d8/d8-console.cc", + "src/d8/d8-console.h", + "src/d8/d8-js.cc", + "src/d8/d8-platforms.cc", + "src/d8/d8-platforms.h", + "src/d8/d8-posix.cc", + "src/d8/d8-test.cc", + ], ) genrule( @@ -2978,75 +3085,126 @@ genrule( v8_mksnapshot( name = "generated_snapshot_files", args = select({ - ":is_v8_enable_verify_heap": [ "--verify-heap" ], + ":is_v8_enable_verify_heap": ["--verify-heap"], "//conditions:default": [], }) + select({ ":is_v8_enable_fast_mksnapshot": [ "--no-turbo-rewrite-far-jumps", "--no-turbo-verify-allocation", - ], + ], "//conditions:default": [], }) + select({ - ":is_v8_enable_snapshot_code_comments": [ "--code-comments" ], + ":is_v8_enable_snapshot_code_comments": ["--code-comments"], "//conditions:default": [], }) + select({ ":is_v8_enable_snapshot_native_code_counters": [ - "--native-code-counters" + "--native-code-counters", ], - "//conditions:default": [ "--no-native-code-counters" ], - }) + "//conditions:default": ["--no-native-code-counters"], + }), ) # ================================================= # Libraries rules # ================================================= +# NOTE: This allow headers to be accessed without the icu/noicu prefixes. +cc_library( + name = "icu/generated_torque_headers", + hdrs = [":icu/generated_torque_files"], + strip_include_prefix = "icu", +) + +cc_library( + name = "noicu/generated_torque_headers", + hdrs = [":noicu/generated_torque_files"], + strip_include_prefix = "noicu", +) + v8_library( name = "v8_libbase", srcs = [ - ":v8_shared_internal_headers", ":v8_libbase_files", + ":v8_shared_internal_headers", + ], +) + +cc_library( + name = "torque_base_headers", + hdrs = [ + "src/torque/kythe-data.h", + "src/torque/torque-compiler.h", + ], + include_prefix = "third_party/v8", + includes = ["."], + visibility = ["//visibility:public"], +) + +cc_library( + name = "torque_base", + srcs = [ + ":torque_base_files", + ], + copts = ["-fexceptions"], + features = ["-use_header_modules"], + visibility = ["//visibility:public"], + deps = [ + ":torque_base_headers", + ":v8_libbase", ], ) v8_library( name = "v8_libshared", srcs = [ - ":generated_torque_files", - ":torque_runtime_support_files", ":v8_base_without_compiler_files", - ":v8_compiler_files", - ":v8_initializers_files", - ":v8_libplatform_files", - ":v8_libsampler_files", - ":v8_shared_internal_headers", - ] + select({ - ":is_v8_enable_i18n_support": [ ":generated_regexp_special_case" ], - "//conditions:default": [], - }), + ":v8_common_libshared_files", + ], + icu_deps = [ + ":icu/generated_torque_headers", + "@icu", + ], + icu_srcs = [ + ":generated_regexp_special_case", + ":icu/generated_torque_files", + ":icu/v8_base_without_compiler_files", + ], + noicu_deps = [ + ":noicu/generated_torque_headers", + ], + noicu_srcs = [ + ":noicu/generated_torque_files", + ], deps = [ ":v8_libbase", "@zlib", - ] + select({ - ":is_v8_enable_i18n_support": [ "@icu" ], - "//conditions:default": [], - }), + ], ) v8_library( name = "v8", - srcs = [ - ":snapshot_files", - ":v8_inspector_files", - ], - deps = [ ":v8_libshared" ], + srcs = [":v8_inspector_files"], + icu_deps = [":icu/v8_libshared"], + icu_srcs = [":icu/snapshot_files"], + noicu_deps = [":noicu/v8_libshared"], + noicu_srcs = [":noicu/snapshot_files"], ) # TODO(victorgomes): Check if v8_enable_webassembly is true. v8_library( name = "wee8", - srcs = [ ":wee8_files" ], - deps = [ ":v8" ], + srcs = [":wee8_files"], + deps = [":noicu/v8"], +) + +alias( + name = "core_lib_noicu", + actual = "noicu/v8", +) + +alias( + name = "core_lib_icu", + actual = "icu/v8", ) # ================================================= @@ -3063,57 +3221,66 @@ v8_binary( "src/interpreter/bytecodes.cc", "src/interpreter/bytecodes.h", ], - deps = [ "v8_libbase" ], + deps = ["v8_libbase"], ) v8_binary( name = "regexp_special_case_generator", srcs = [ - ":v8_shared_internal_headers", - ":v8_libbase_files", - "src/regexp/special-case.h", "src/regexp/gen-regexp-special-case.cc", + "src/regexp/special-case.h", + ":v8_libbase_files", + ":v8_shared_internal_headers", + ], + defines = [ + "V8_INTL_SUPPORT", + "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC", + # src/regexp/regexp-compiler-tonode.cc uses an unsafe ICU method and + # access a character implicitly. + "UNISTR_FROM_CHAR_EXPLICIT=", + ], + deps = [ + "@icu", ], - deps = [ "@icu" ], ) v8_binary( name = "torque", srcs = [ - ":torque_base_files", "src/torque/torque.cc", + ":torque_base_files", ], - copts = [ "-fexceptions" ], - features = [ "-use_header_modules" ], - deps = [ "v8_libbase" ], + copts = ["-fexceptions"], + features = ["-use_header_modules"], + linkopts = select({ + "@config//:is_android": ["-llog"], + "//conditions:default": [], + }), + deps = ["v8_libbase"], ) v8_binary( name = "mksnapshot", - srcs = [ ":mksnapshot_files" ], - deps = [ ":v8_libshared" ], + srcs = [":mksnapshot_files"], + icu_deps = [":icu/v8_libshared"], linkopts = select({ - "is_android": [ "-llog" ], + "@config//:is_android": ["-llog"], "//conditions:default": [], }), + noicu_deps = [":noicu/v8_libshared"], ) v8_binary( name = "d8", - srcs = [ - "src/d8/async-hooks-wrapper.cc", - "src/d8/async-hooks-wrapper.h", - "src/d8/d8.cc", - "src/d8/d8.h", - "src/d8/d8-console.cc", - "src/d8/d8-console.h", - "src/d8/d8-js.cc", - "src/d8/d8-platforms.cc", - "src/d8/d8-platforms.h", - "src/d8/d8-posix.cc", - "src/d8/d8-test.cc", - ], - deps = [ ":v8" ], + srcs = [":d8_files"], + icu_deps = [":icu/v8"], + noicu_deps = [":noicu/v8"], +) + +# This target forces torque to be compiled without pointer compression. +v8_binary_non_pointer_compression( + name = "torque_non_pointer_compression", + binary = "torque", ) # ================================================= @@ -3124,9 +3291,39 @@ v8_build_config( name = "v8_build_config", ) -# Runs mjunit with d8. +# Runs mjsunit with d8. +py_test( + name = "noicu/mjsunit", + size = "medium", + srcs = [ + "test/mjsunit/testcfg.py", + "tools/predictable_wrapper.py", + "tools/run-tests.py", + ] + glob(["tools/testrunner/**/*.py"]), + args = [ + "--no-sorting", + "--nopresubmit", + "--variant=google3_noicu", + "--outdir noicu", + "--verbose", + "mjsunit", + ], + data = [ + "//testing/pybase", + ":noicu/v8_build_config", + ":noicu/d8", + "test", + ] + glob(["test/**"]) + glob(["tools/**/*.js"]) + glob(["tools/**/*.mjs"]), + main = "tools/run-tests.py", + python_version = "PY3", + tags = [ + # Disable sanitizers, as they don't work in general in V8. + "nosan", + ], +) + py_test( - name = "mjsunit", + name = "icu/mjsunit", size = "medium", srcs = [ "test/mjsunit/testcfg.py", @@ -3136,19 +3333,19 @@ py_test( args = [ "--no-sorting", "--nopresubmit", - # TODO(victorgomes): Create a flag to pass the variant in the cmdline. - "--variant=default", - "--outdir bazel-bin", + "--variant=google3_icu", + "--outdir icu", + "--verbose", "mjsunit", ], data = [ - ":v8_build_config", - ":d8", + "//testing/pybase", + ":icu/v8_build_config", + ":icu/d8", "test", ] + glob(["test/**"]) + glob(["tools/**/*.js"]) + glob(["tools/**/*.mjs"]), main = "tools/run-tests.py", - # TODO(victorgomes): Move this to PY3. - python_version = "PY2", + python_version = "PY3", tags = [ # Disable sanitizers, as they don't work in general in V8. "nosan", diff --git a/deps/v8/BUILD.gn b/deps/v8/BUILD.gn index f491f2a4e64c6b..bca5b5356b20bc 100644 --- a/deps/v8/BUILD.gn +++ b/deps/v8/BUILD.gn @@ -343,13 +343,21 @@ declare_args() { # Enable global allocation site tracking. v8_allocation_site_tracking = true + # TODO(cbruni, v8:12302): Remove once API is migrated + # Enable legacy mode for ScriptOrModule's lifetime. By default it's a + # temporary object, if enabled it will be kept alive by the parent Script. + # This is only used by nodejs. + v8_scriptormodule_legacy_lifetime = false + # If enabled, the receiver is always included in the actual and formal # parameter count of function with JS linkage. # TODO(v8:11112): Remove once all architectures support the flag and it is # enabled unconditionally. v8_include_receiver_in_argc = v8_current_cpu == "x86" || v8_current_cpu == "x64" || - v8_current_cpu == "arm" || v8_current_cpu == "arm64" + v8_current_cpu == "arm" || v8_current_cpu == "arm64" || + v8_current_cpu == "mips64el" || v8_current_cpu == "mipsel" || + v8_current_cpu == "loong64" || v8_current_cpu == "riscv64" } # Derived defaults. @@ -456,9 +464,12 @@ if (v8_multi_arch_build && v8_enable_pointer_compression_shared_cage = v8_enable_pointer_compression } if (v8_enable_short_builtin_calls && - (!v8_enable_pointer_compression || v8_control_flow_integrity)) { + ((!v8_enable_pointer_compression && v8_current_cpu != "x64") || + v8_control_flow_integrity)) { # Disable short calls when pointer compression is not enabled. - # Or when CFI is enabled (until the CFI-related issues are fixed). + # Or when CFI is enabled (until the CFI-related issues are fixed), except x64, + # where short builtin calls can still be enabled if the code range is + # guaranteed to be close enough to embedded builtins. v8_enable_short_builtin_calls = false } if (v8_enable_shared_ro_heap == "") { @@ -473,10 +484,8 @@ if (build_with_chromium && v8_current_cpu == "arm64" && } # Enable the virtual memory cage on 64-bit Chromium builds. -if (build_with_chromium && - (v8_current_cpu == "arm64" || v8_current_cpu == "x64")) { - # The cage is incompatible with lsan. - v8_enable_virtual_memory_cage = !is_lsan +if (build_with_chromium && v8_enable_pointer_compression_shared_cage) { + v8_enable_virtual_memory_cage = true } assert(!v8_disable_write_barriers || v8_enable_single_generation, @@ -498,6 +507,9 @@ assert(!v8_enable_map_packing || !v8_enable_pointer_compression, assert(!v8_enable_map_packing || v8_current_cpu == "x64", "Map packing is only supported on x64") +assert(!v8_enable_external_code_space || v8_enable_pointer_compression, + "External code space feature requires pointer compression") + assert(!v8_enable_heap_sandbox || v8_enable_pointer_compression, "V8 Heap Sandbox requires pointer compression") @@ -511,9 +523,6 @@ assert( !v8_enable_virtual_memory_cage || v8_enable_pointer_compression_shared_cage, "V8 VirtualMemoryCage requires the shared pointer compression cage") -assert(!v8_enable_virtual_memory_cage || !is_lsan, - "V8 VirtualMemoryCage is currently incompatible with Leak Sanitizer") - assert( !v8_enable_pointer_compression_shared_cage || v8_enable_pointer_compression, "Can't share a pointer compression cage if pointers aren't compressed") @@ -958,6 +967,9 @@ config("features") { if (v8_allocation_site_tracking) { defines += [ "V8_ALLOCATION_SITE_TRACKING" ] } + if (v8_scriptormodule_legacy_lifetime) { + defines += [ "V8_SCRIPTORMODULE_LEGACY_LIFETIME" ] + } if (v8_advanced_bigint_algorithms) { defines += [ "V8_ADVANCED_BIGINT_ALGORITHMS" ] } @@ -1742,6 +1754,7 @@ torque_files = [ "src/objects/js-proxy.tq", "src/objects/js-regexp-string-iterator.tq", "src/objects/js-regexp.tq", + "src/objects/js-temporal-objects.tq", "src/objects/js-weak-refs.tq", "src/objects/literal-objects.tq", "src/objects/map.tq", @@ -1771,6 +1784,7 @@ torque_files = [ "src/objects/template-objects.tq", "src/objects/templates.tq", "src/objects/torque-defined-classes.tq", + "src/objects/turbofan-types.tq", "test/torque/test-torque.tq", "third_party/v8/builtins/array-sort.tq", ] @@ -2200,6 +2214,7 @@ action("v8_dump_build_config") { "v8_enable_virtual_memory_cage=$v8_enable_virtual_memory_cage", "v8_enable_third_party_heap=$v8_enable_third_party_heap", "v8_enable_webassembly=$v8_enable_webassembly", + "v8_dict_property_const_tracking=$v8_dict_property_const_tracking", "v8_control_flow_integrity=$v8_control_flow_integrity", "v8_target_cpu=\"$v8_target_cpu\"", ] @@ -2693,8 +2708,6 @@ v8_header_set("v8_internal_headers") { "src/codegen/unoptimized-compilation-info.h", "src/common/assert-scope.h", "src/common/checks.h", - "src/common/external-pointer-inl.h", - "src/common/external-pointer.h", "src/common/message-template.h", "src/common/ptr-compr-inl.h", "src/common/ptr-compr.h", @@ -2860,7 +2873,6 @@ v8_header_set("v8_internal_headers") { "src/execution/arguments-inl.h", "src/execution/arguments.h", "src/execution/execution.h", - "src/execution/external-pointer-table.h", "src/execution/frame-constants.h", "src/execution/frames-inl.h", "src/execution/frames.h", @@ -3009,7 +3021,6 @@ v8_header_set("v8_internal_headers") { "src/init/setup-isolate.h", "src/init/startup-data-util.h", "src/init/v8.h", - "src/init/vm-cage.h", "src/interpreter/block-coverage-builder.h", "src/interpreter/bytecode-array-builder.h", "src/interpreter/bytecode-array-iterator.h", @@ -3139,6 +3150,8 @@ v8_header_set("v8_internal_headers") { "src/objects/js-regexp.h", "src/objects/js-segments-inl.h", "src/objects/js-segments.h", + "src/objects/js-temporal-objects-inl.h", + "src/objects/js-temporal-objects.h", "src/objects/js-weak-refs-inl.h", "src/objects/js-weak-refs.h", "src/objects/keys.h", @@ -3241,6 +3254,8 @@ v8_header_set("v8_internal_headers") { "src/objects/torque-defined-classes.h", "src/objects/transitions-inl.h", "src/objects/transitions.h", + "src/objects/turbofan-types-inl.h", + "src/objects/turbofan-types.h", "src/objects/type-hints.h", "src/objects/value-serializer.h", "src/objects/visitors-inl.h", @@ -3310,6 +3325,12 @@ v8_header_set("v8_internal_headers") { "src/roots/roots.h", "src/runtime/runtime-utils.h", "src/runtime/runtime.h", + "src/security/caged-pointer-inl.h", + "src/security/caged-pointer.h", + "src/security/external-pointer-inl.h", + "src/security/external-pointer-table.h", + "src/security/external-pointer.h", + "src/security/vm-cage.h", "src/snapshot/code-serializer.h", "src/snapshot/context-deserializer.h", "src/snapshot/context-serializer.h", @@ -3322,7 +3343,10 @@ v8_header_set("v8_internal_headers") { "src/snapshot/references.h", "src/snapshot/roots-serializer.h", "src/snapshot/serializer-deserializer.h", + "src/snapshot/serializer-inl.h", "src/snapshot/serializer.h", + "src/snapshot/shared-heap-deserializer.h", + "src/snapshot/shared-heap-serializer.h", "src/snapshot/snapshot-compression.h", "src/snapshot/snapshot-data.h", "src/snapshot/snapshot-source-sink.h", @@ -3396,6 +3420,7 @@ v8_header_set("v8_internal_headers") { "src/asmjs/asm-types.h", "src/compiler/int64-lowering.h", "src/compiler/wasm-compiler.h", + "src/compiler/wasm-escape-analysis.h", "src/compiler/wasm-inlining.h", "src/debug/debug-wasm-objects-inl.h", "src/debug/debug-wasm-objects.h", @@ -3424,6 +3449,7 @@ v8_header_set("v8_internal_headers") { "src/wasm/object-access.h", "src/wasm/signature-map.h", "src/wasm/simd-shuffle.h", + "src/wasm/stacks.h", "src/wasm/streaming-decoder.h", "src/wasm/struct-types.h", "src/wasm/value-type.h", @@ -3684,6 +3710,8 @@ v8_header_set("v8_internal_headers") { ] } else if (v8_current_cpu == "ppc64") { sources += [ ### gcmole(arch:ppc64) ### + "src/baseline/s390/baseline-assembler-s390-inl.h", + "src/baseline/s390/baseline-compiler-s390-inl.h", "src/codegen/ppc/assembler-ppc-inl.h", "src/codegen/ppc/assembler-ppc.h", "src/codegen/ppc/constants-ppc.h", @@ -3864,6 +3892,7 @@ if (v8_enable_webassembly) { v8_compiler_sources += [ "src/compiler/int64-lowering.cc", "src/compiler/wasm-compiler.cc", + "src/compiler/wasm-escape-analysis.cc", "src/compiler/wasm-inlining.cc", ] } @@ -3990,6 +4019,7 @@ v8_source_set("v8_base_without_compiler") { "src/builtins/builtins-sharedarraybuffer.cc", "src/builtins/builtins-string.cc", "src/builtins/builtins-symbol.cc", + "src/builtins/builtins-temporal.cc", "src/builtins/builtins-trace.cc", "src/builtins/builtins-typed-array.cc", "src/builtins/builtins-weak-refs.cc", @@ -4057,7 +4087,6 @@ v8_source_set("v8_base_without_compiler") { "src/diagnostics/unwinder.cc", "src/execution/arguments.cc", "src/execution/execution.cc", - "src/execution/external-pointer-table.cc", "src/execution/frames.cc", "src/execution/futex-emulation.cc", "src/execution/interrupts-scope.cc", @@ -4149,7 +4178,6 @@ v8_source_set("v8_base_without_compiler") { "src/init/isolate-allocator.cc", "src/init/startup-data-util.cc", "src/init/v8.cc", - "src/init/vm-cage.cc", "src/interpreter/bytecode-array-builder.cc", "src/interpreter/bytecode-array-iterator.cc", "src/interpreter/bytecode-array-random-iterator.cc", @@ -4318,6 +4346,8 @@ v8_source_set("v8_base_without_compiler") { "src/runtime/runtime-typedarray.cc", "src/runtime/runtime-weak-refs.cc", "src/runtime/runtime.cc", + "src/security/external-pointer-table.cc", + "src/security/vm-cage.cc", "src/snapshot/code-serializer.cc", "src/snapshot/context-deserializer.cc", "src/snapshot/context-serializer.cc", @@ -4329,6 +4359,8 @@ v8_source_set("v8_base_without_compiler") { "src/snapshot/roots-serializer.cc", "src/snapshot/serializer-deserializer.cc", "src/snapshot/serializer.cc", + "src/snapshot/shared-heap-deserializer.cc", + "src/snapshot/shared-heap-serializer.cc", "src/snapshot/snapshot-compression.cc", "src/snapshot/snapshot-data.cc", "src/snapshot/snapshot-source-sink.cc", @@ -5485,6 +5517,7 @@ v8_source_set("cppgc_base") { "src/heap/cppgc/sweeper.cc", "src/heap/cppgc/sweeper.h", "src/heap/cppgc/task-handle.h", + "src/heap/cppgc/unmarker.h", # TODO(v8:11952): Remove the testing header here once depending on both, # //v8:v8 and //v8:v8_for_testing does not result in ODR violations. diff --git a/deps/v8/COMMON_OWNERS b/deps/v8/COMMON_OWNERS index dc831c0e977fab..add6b07ed60d9d 100644 --- a/deps/v8/COMMON_OWNERS +++ b/deps/v8/COMMON_OWNERS @@ -24,7 +24,6 @@ marja@chromium.org mlippautz@chromium.org mslekova@chromium.org mvstanton@chromium.org -neis@chromium.org nicohartmann@chromium.org omerkatz@chromium.org pthier@chromium.org diff --git a/deps/v8/DEPS b/deps/v8/DEPS index 587b7e53759ce5..8d1be4a65833ae 100644 --- a/deps/v8/DEPS +++ b/deps/v8/DEPS @@ -6,9 +6,6 @@ use_relative_paths = True gclient_gn_args_file = 'build/config/gclient_args.gni' gclient_gn_args = [ - # TODO(https://crbug.com/1137662, https://crbug.com/1080854) - # Remove when migration is complete. - 'checkout_fuchsia_for_arm64_host', ] vars = { @@ -27,12 +24,6 @@ vars = { # Wildcards are supported (e.g. "qemu.*"). 'checkout_fuchsia_boot_images': "qemu.x64,qemu.arm64", - # TODO(https://crbug.com/1137662, https://crbug.com/1080854) - # Remove when migration is complete. - # By default, do not check out files required to run fuchsia tests in - # qemu on linux-arm64 machines. - 'checkout_fuchsia_for_arm64_host': False, - 'checkout_instrumented_libraries': False, 'checkout_ittapi': False, # Fetch clang-tidy into the same bin/ directory as our clang binary. @@ -49,10 +40,10 @@ vars = { 'reclient_version': 're_client_version:0.40.0.40ff5a5', # GN CIPD package version. - 'gn_version': 'git_revision:0153d369bbccc908f4da4993b1ba82728055926a', + 'gn_version': 'git_revision:8926696a4186279489cc2b8d768533e61bba73d7', # luci-go CIPD package version. - 'luci_go': 'git_revision:a373a19da0fbbbe81b2b684e3797260294393e40', + 'luci_go': 'git_revision:68355732afb00a422ae0c70eed95c6a45f9868b1', # Three lines of non-changing comments so that # the commit queue can handle CLs rolling android_sdk_build-tools_version @@ -81,7 +72,7 @@ vars = { # Three lines of non-changing comments so that # the commit queue can handle CLs rolling android_sdk_sources_version # and whatever else without interference from each other. - 'android_sdk_sources_version': 'n7svc8KYah-i4s8zwkVa85SI3_H0WFOniP0mpwNdFO0C', + 'android_sdk_sources_version': 'Yw53980aNNn0n9l58lN7u0wSVmxlY0OM1zFnGDQeJs4C', # Three lines of non-changing comments so that # the commit queue can handle CLs rolling android_sdk_tools-lint_version # and whatever else without interference from each other. @@ -90,13 +81,13 @@ vars = { deps = { 'base/trace_event/common': - Var('chromium_url') + '/chromium/src/base/trace_event/common.git' + '@' + '68d816952258c9d817bba656ee2664b35507f01b', + Var('chromium_url') + '/chromium/src/base/trace_event/common.git' + '@' + '7f36dbc19d31e2aad895c60261ca8f726442bfbb', 'build': - Var('chromium_url') + '/chromium/src/build.git' + '@' + 'ebad8533842661f66b9b905e0ee9890a32f628d5', + Var('chromium_url') + '/chromium/src/build.git' + '@' + 'cf325916d58a194a935c26a56fcf6b525d1e2bf4', 'buildtools': - Var('chromium_url') + '/chromium/src/buildtools.git' + '@' + 'a9bc3e283182a586998338a665c7eae17406ec54', + Var('chromium_url') + '/chromium/src/buildtools.git' + '@' + '80e4f838faaf50e18629ae630df1d421f255a62a', 'buildtools/clang_format/script': - Var('chromium_url') + '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git' + '@' + '99803d74e35962f63a775f29477882afd4d57d94', + Var('chromium_url') + '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git' + '@' + '99876cacf78329e5f99c244dbe42ccd1654517a0', 'buildtools/linux64': { 'packages': [ { @@ -120,9 +111,9 @@ deps = { 'buildtools/third_party/libc++/trunk': Var('chromium_url') + '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + '79a2e924d96e2fc1e4b937c42efd08898fa472d7', 'buildtools/third_party/libc++abi/trunk': - Var('chromium_url') + '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + '9959b06ccd7291269796e85c7c8f7b432af414bd', + Var('chromium_url') + '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + '4c6e0991b109638204f08c93600b008c21f01da5', 'buildtools/third_party/libunwind/trunk': - Var('chromium_url') + '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + 'a002c725cf03e16d3bc47dd9b7962aa22f7ee1d9', + Var('chromium_url') + '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + '99015718c37b30d44c3bcbcc92a03fb85fb85a99', 'buildtools/win': { 'packages': [ { @@ -148,14 +139,14 @@ deps = { 'test/mozilla/data': Var('chromium_url') + '/v8/deps/third_party/mozilla-tests.git' + '@' + 'f6c578a10ea707b1a8ab0b88943fe5115ce2b9be', 'test/test262/data': - Var('chromium_url') + '/external/github.com/tc39/test262.git' + '@' + '50dd431dffe5cf86e9064a652d6b01dbbe542cf0', + Var('chromium_url') + '/external/github.com/tc39/test262.git' + '@' + 'ba82d46238bd16c3e31b93d21d2846c81a9ccf7a', 'test/test262/harness': Var('chromium_url') + '/external/github.com/test262-utils/test262-harness-py.git' + '@' + '278bcfaed0dcaa13936831fb1769d15e7c1e3b2b', 'third_party/aemu-linux-x64': { 'packages': [ { 'package': 'fuchsia/third_party/aemu/linux-amd64', - 'version': 'FAd7QuRV-mCjbKgg2SO4BBlRCvGIsI672THjo3tEIZAC' + 'version': 'hys6gk1KOHMz9nURGWen255HiLIaVd3e4eZfa-w6l7oC' }, ], 'condition': 'host_os == "linux" and checkout_fuchsia', @@ -176,7 +167,7 @@ deps = { 'condition': 'checkout_android', }, 'third_party/android_platform': { - 'url': Var('chromium_url') + '/chromium/src/third_party/android_platform.git' + '@' + '7a11b799efba1cd679b4f5d14889465e9e1fb1f4', + 'url': Var('chromium_url') + '/chromium/src/third_party/android_platform.git' + '@' + '72e09e98a62744cd10b762bd438c702ed8b131fb', 'condition': 'checkout_android', }, 'third_party/android_sdk/public': { @@ -218,7 +209,7 @@ deps = { 'dep_type': 'cipd', }, 'third_party/catapult': { - 'url': Var('chromium_url') + '/catapult.git' + '@' + 'c0b9d253fbf9a729be51d3890fa78be4b5eb3352', + 'url': Var('chromium_url') + '/catapult.git' + '@' + '75c4ea8c6eef1d5941ec3d5cfee174e8d0f73566', 'condition': 'checkout_android', }, 'third_party/colorama/src': { @@ -226,20 +217,20 @@ deps = { 'condition': 'checkout_android', }, 'third_party/depot_tools': - Var('chromium_url') + '/chromium/tools/depot_tools.git' + '@' + '0e2fb336b2e7ddbbb9c5ab70eab25f82f55dff2b', + Var('chromium_url') + '/chromium/tools/depot_tools.git' + '@' + '57c928cd959aa46e9dbd6b0bc754888075b4a4c3', 'third_party/fuchsia-sdk': { 'url': Var('chromium_url') + '/chromium/src/third_party/fuchsia-sdk.git' + '@' + '18896843130c33372c455c153ad07d2217bd2085', 'condition': 'checkout_fuchsia', }, 'third_party/google_benchmark/src': { - 'url': Var('chromium_url') + '/external/github.com/google/benchmark.git' + '@' + '0baacde3618ca617da95375e0af13ce1baadea47', + 'url': Var('chromium_url') + '/external/github.com/google/benchmark.git' + '@' + '4f31803ebbf283e24602260e39e63a296d44b0f8', }, 'third_party/googletest/src': - Var('chromium_url') + '/external/github.com/google/googletest.git' + '@' + '3b49be074d5c1340eeb447e6a8e78427051e675a', + Var('chromium_url') + '/external/github.com/google/googletest.git' + '@' + '16f637fbf4ffc3f7a01fa4eceb7906634565242f', 'third_party/icu': - Var('chromium_url') + '/chromium/deps/icu.git' + '@' + '3f443830bd52d3aa5fab3c1aa2b6d0848bb5039d', + Var('chromium_url') + '/chromium/deps/icu.git' + '@' + 'eedbaf76e49d28465d9119b10c30b82906e606ff', 'third_party/instrumented_libraries': - Var('chromium_url') + '/chromium/src/third_party/instrumented_libraries.git' + '@' + '5df06a49fc485f3371e8ca2f4957dac4840ba3bb', + Var('chromium_url') + '/chromium/src/third_party/instrumented_libraries.git' + '@' + '3c149f5611237dc59a7ec229e8ea009d8be8f51d', 'third_party/ittapi': { # Force checkout ittapi libraries to pass v8 header includes check on # bots that has check_v8_header_includes enabled. @@ -247,7 +238,7 @@ deps = { 'condition': "checkout_ittapi or check_v8_header_includes", }, 'third_party/jinja2': - Var('chromium_url') + '/chromium/src/third_party/jinja2.git' + '@' + '6db8da1615a13fdfab925688bc4bf2eb394a73af', + Var('chromium_url') + '/chromium/src/third_party/jinja2.git' + '@' + 'ee69aa00ee8536f61db6a451f3858745cf587de6', 'third_party/jsoncpp/source': Var('chromium_url') + '/external/github.com/open-source-parsers/jsoncpp.git'+ '@' + '9059f5cad030ba11d37818847443a53918c327b1', 'third_party/logdog/logdog': @@ -283,9 +274,9 @@ deps = { 'condition': 'checkout_android', }, 'third_party/zlib': - Var('chromium_url') + '/chromium/src/third_party/zlib.git'+ '@' + 'dfa96e81458fb3b39676e45f7e9e000dff789b05', + Var('chromium_url') + '/chromium/src/third_party/zlib.git'+ '@' + '6da1d53b97c89b07e47714d88cab61f1ce003c68', 'tools/clang': - Var('chromium_url') + '/chromium/src/tools/clang.git' + '@' + 'c06edd1f455183fc89e9f8c2cf745db8f564d8ea', + Var('chromium_url') + '/chromium/src/tools/clang.git' + '@' + '21baac0e13389b03d6f805701c75544ed0b1ebb0', 'tools/clang/dsymutil': { 'packages': [ { @@ -494,7 +485,7 @@ hooks = [ '--no_resume', '--no_auth', '--bucket', 'chromium-instrumented-libraries', - '-s', 'third_party/instrumented_libraries/binaries/msan-chained-origins-xenial.tgz.sha1', + '-s', 'third_party/instrumented_libraries/binaries/msan-chained-origins.tgz.sha1', ], }, { @@ -505,7 +496,7 @@ hooks = [ '--no_resume', '--no_auth', '--bucket', 'chromium-instrumented-libraries', - '-s', 'third_party/instrumented_libraries/binaries/msan-no-origins-xenial.tgz.sha1', + '-s', 'third_party/instrumented_libraries/binaries/msan-no-origins.tgz.sha1', ], }, { @@ -540,13 +531,13 @@ hooks = [ 'pattern': '.', # clang not supported on aix 'condition': 'host_os != "aix"', - 'action': ['python', 'tools/clang/scripts/update.py'], + 'action': ['python3', 'tools/clang/scripts/update.py'], }, { 'name': 'clang_tidy', 'pattern': '.', 'condition': 'checkout_clang_tidy', - 'action': ['python', 'tools/clang/scripts/update.py', + 'action': ['python3', 'tools/clang/scripts/update.py', '--package=clang-tidy'], }, { @@ -576,11 +567,11 @@ hooks = [ ], }, { - # Mac does not have llvm-objdump, download it for cross builds in Fuchsia. + # Mac does not have llvm-objdump, download it for cross builds in Fuchsia. 'name': 'llvm-objdump', 'pattern': '.', 'condition': 'host_os == "mac" and checkout_fuchsia', - 'action': ['python', 'tools/clang/scripts/update.py', + 'action': ['python3', 'tools/clang/scripts/update.py', '--package=objdump'], }, # Download and initialize "vpython" VirtualEnv environment packages. diff --git a/deps/v8/WORKSPACE b/deps/v8/WORKSPACE index 289902f68d857f..32fff02aab80b6 100644 --- a/deps/v8/WORKSPACE +++ b/deps/v8/WORKSPACE @@ -16,6 +16,12 @@ http_archive( load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace") bazel_skylib_workspace() +new_local_repository( + name = "config", + path = "bazel/config", + build_file = "bazel/config/BUILD.bazel", +) + new_local_repository( name = "zlib", path = "third_party/zlib", diff --git a/deps/v8/base/trace_event/common/trace_event_common.h b/deps/v8/base/trace_event/common/trace_event_common.h index 9384adeb69f65d..1fd2283decc212 100644 --- a/deps/v8/base/trace_event/common/trace_event_common.h +++ b/deps/v8/base/trace_event/common/trace_event_common.h @@ -224,12 +224,6 @@ // variable a unique name based on the line number to prevent name collisions. #define INTERNAL_TRACE_EVENT_UID(name_prefix) PERFETTO_UID(name_prefix) -// Special trace event macro to trace task execution with the location where it -// was posted from. -// TODO(skyostil): Convert this into a regular typed trace event. -#define TRACE_TASK_EXECUTION(run_function, task) \ - INTERNAL_TRACE_TASK_EXECUTION(run_function, task) - // Special trace event macro to trace log messages. // TODO(skyostil): Convert this into a regular typed trace event. #define TRACE_LOG_MESSAGE(file, message, line) \ @@ -985,11 +979,6 @@ struct BASE_EXPORT TraceTimestampTraits<::base::TimeTicks> { category_group, name, id, \ TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val) -// Special trace event macro to trace task execution with the location where it -// was posted from. -#define TRACE_TASK_EXECUTION(run_function, task) \ - INTERNAL_TRACE_TASK_EXECUTION(run_function, task) - // Special trace event macro to trace log messages. #define TRACE_LOG_MESSAGE(file, message, line) \ INTERNAL_TRACE_LOG_MESSAGE(file, message, line) diff --git a/deps/v8/bazel/BUILD.icu b/deps/v8/bazel/BUILD.icu index fd651d513ddf89..ea3860ac901b0a 100644 --- a/deps/v8/bazel/BUILD.icu +++ b/deps/v8/bazel/BUILD.icu @@ -26,7 +26,6 @@ cc_library( "U_ENABLE_RESOURCE_TRACING=0", "UNISTR_FROM_STRING_EXPLICIT=", "UNISTR_FROM_CHAR_EXPLICIT=", - "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE", ], copts = [ "-Wno-unused-function", diff --git a/deps/v8/bazel/config/BUILD.bazel b/deps/v8/bazel/config/BUILD.bazel new file mode 100644 index 00000000000000..78dcdb14d5ec45 --- /dev/null +++ b/deps/v8/bazel/config/BUILD.bazel @@ -0,0 +1,109 @@ +# Copyright 2021 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +load("@bazel_skylib//lib:selects.bzl", "selects") +load( + ":v8-target-cpu.bzl", + "v8_configure_target_cpu", + "v8_target_cpu", +) + +package( + default_visibility = [ + "//visibility:public", + ], +) + +config_setting( + name = "platform_cpu_x64", + constraint_values = ["@platforms//cpu:x86_64"], +) + +config_setting( + name = "platform_cpu_ia32", + constraint_values = ["@platforms//cpu:x86_32"], +) + +config_setting( + name = "platform_cpu_arm64", + constraint_values = ["@platforms//cpu:arm"], +) + +config_setting( + name = "platform_cpu_arm", + constraint_values = ["@platforms//cpu:arm"], +) + +v8_target_cpu( + name = "v8_target_cpu", + build_setting_default = "none", +) + +config_setting( + name = "v8_host_target_is_none", + flag_values = { + ":v8_target_cpu": "none", + }, +) + +v8_configure_target_cpu( + name = "x64", + matching_configs = [":platform_cpu_x64"], +) + +v8_configure_target_cpu( + name = "ia32", + matching_configs = [":platform_cpu_ia32"], +) + +v8_configure_target_cpu( + name = "arm", + matching_configs = [":platform_cpu_arm64"], +) + +v8_configure_target_cpu( + name = "arm64", + matching_configs = [":platform_cpu_arm"], +) + +selects.config_setting_group( + name = "v8_target_is_32_bits", + match_any = [ + ":v8_target_ia32", + ":v8_target_arm", + ], +) + +# Running arm64 simulator on x64 host. +selects.config_setting_group( + name = "v8_arm64_simulator", + match_all = [ + ":v8_target_arm64", + ":is_x64", + ], +) + +config_setting( + name = "is_linux", + constraint_values = ["@platforms//os:linux"], +) + +config_setting( + name = "is_android", + constraint_values = ["@platforms//os:android"], +) + +config_setting( + name = "is_macos", + constraint_values = ["@platforms//os:macos"], +) + +selects.config_setting_group( + name = "is_posix", + match_any = [ + ":is_linux", + ":is_android", + ":is_macos", + ], +) diff --git a/deps/v8/bazel/config/v8-target-cpu.bzl b/deps/v8/bazel/config/v8-target-cpu.bzl new file mode 100644 index 00000000000000..2d5d241ebf45f4 --- /dev/null +++ b/deps/v8/bazel/config/v8-target-cpu.bzl @@ -0,0 +1,61 @@ +# Copyright 2021 the V8 project authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Build rules to choose the v8 target architecture.""" + +load("@bazel_skylib//lib:selects.bzl", "selects") + +V8CpuTypeInfo = provider( + doc = "A singleton provider that specifies the V8 target CPU type", + fields = { + "value": "The V8 Target CPU selected.", + }, +) + +def _host_target_cpu_impl(ctx): + allowed_values = ["arm", "arm64", "ia32", "x64", "none"] + cpu_type = ctx.build_setting_value + if cpu_type in allowed_values: + return V8CpuTypeInfo(value = cpu_type) + else: + fail("Error setting " + str(ctx.label) + ": invalid v8 target cpu '" + + cpu_type + "'. Allowed values are " + str(allowed_values)) + +v8_target_cpu = rule( + implementation = _host_target_cpu_impl, + build_setting = config.string(flag = True), + doc = "CPU that V8 will generate code for.", +) + +def v8_configure_target_cpu(name, matching_configs): + selects.config_setting_group( + name = "is_" + name, + match_any = matching_configs, + ) + + # If v8_target_cpu flag is set to 'name' + native.config_setting( + name = "v8_host_target_is_" + name, + flag_values = { + ":v8_target_cpu": name, + }, + ) + + # Default target if no v8_host_target flag is set. + selects.config_setting_group( + name = "v8_target_is_" + name, + match_all = [ + ":v8_host_target_is_none", + ":is_" + name, + ], + ) + + # Select either the default target or the flag. + selects.config_setting_group( + name = "v8_target_" + name, + match_any = [ + ":v8_host_target_is_" + name, + ":v8_target_is_" + name, + ], + ) diff --git a/deps/v8/bazel/defs.bzl b/deps/v8/bazel/defs.bzl index 58fd53ed607e12..130e7be9eddd65 100644 --- a/deps/v8/bazel/defs.bzl +++ b/deps/v8/bazel/defs.bzl @@ -22,10 +22,6 @@ _create_option_int = rule( build_setting = config.int(flag = True), ) -def v8_raw_flag(name, default = False): - _create_option_flag(name = name, build_setting_default = default) - native.config_setting(name = "raw_" + name, flag_values = {name: "True"}) - def v8_flag(name, default = False): _create_option_flag(name = name, build_setting_default = default) native.config_setting(name = "is_" + name, flag_values = {name: "True"}) @@ -40,28 +36,30 @@ def v8_int(name, default = 0): def _custom_config_impl(ctx): defs = [] defs.append("V8_TYPED_ARRAY_MAX_SIZE_IN_HEAP=" + - str(ctx.attr._v8_typed_array_max_size_in_heap[FlagInfo].value)) + str(ctx.attr._v8_typed_array_max_size_in_heap[FlagInfo].value)) context = cc_common.create_compilation_context(defines = depset(defs)) return [CcInfo(compilation_context = context)] v8_custom_config = rule( implementation = _custom_config_impl, attrs = { - "_v8_typed_array_max_size_in_heap": - attr.label(default = ":v8_typed_array_max_size_in_heap"), - } + "_v8_typed_array_max_size_in_heap": attr.label(default = ":v8_typed_array_max_size_in_heap"), + }, ) def _config_impl(ctx): hdrs = [] + # Add headers for h in ctx.attr.hdrs: hdrs += h[DefaultInfo].files.to_list() defs = [] + # Add conditional_defines for f, d in ctx.attr.conditional_defines.items(): if f[FlagInfo].value: defs.append(d) + # Add defines for d in ctx.attr.defines: defs.append(d) @@ -87,13 +85,14 @@ v8_config = rule( }, ) -def _default_args(configs): +def _default_args(): return struct( - deps = configs + [":define_flags"], + deps = [":define_flags"], copts = [ "-fPIC", "-Werror", "-Wextra", + "-Wno-bitwise-instead-of-logical", "-Wno-builtin-assume-aligned-alignment", "-Wno-unused-parameter", "-Wno-implicit-int-float-conversion", @@ -104,140 +103,248 @@ def _default_args(configs): ], includes = ["include"], linkopts = [ - "-pthread" + "-pthread", ] + select({ - ":is_macos": [], - "//conditions:default": [ "-Wl,--no-as-needed -ldl" ], + "@config//:is_macos": [], + "//conditions:default": ["-Wl,--no-as-needed -ldl"], }) + select({ - ":should_add_rdynamic": [ "-rdynamic" ], + ":should_add_rdynamic": ["-rdynamic"], "//conditions:default": [], }), ) +ENABLE_I18N_SUPPORT_DEFINES = [ + "-DV8_INTL_SUPPORT", + "-DICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC", + # src/regexp/regexp-compiler-tonode.cc uses an unsafe ICU method and + # access a character implicitly. + "-DUNISTR_FROM_CHAR_EXPLICIT=", +] + +def _should_emit_noicu_and_icu(noicu_srcs, noicu_deps, icu_srcs, icu_deps): + return noicu_srcs != [] or noicu_deps != [] or icu_srcs != [] or icu_deps != [] + +# buildifier: disable=function-docstring def v8_binary( name, srcs, - configs = [], deps = [], includes = [], copts = [], linkopts = [], + noicu_srcs = [], + noicu_deps = [], + icu_srcs = [], + icu_deps = [], **kwargs): - default = _default_args(configs) - native.cc_binary( - name = name, - srcs = srcs, - deps = deps + default.deps, - includes = includes + default.includes, - copts = copts + default.copts, - linkopts = linkopts + default.linkopts, - **kwargs - ) + default = _default_args() + if _should_emit_noicu_and_icu(noicu_srcs, noicu_deps, icu_srcs, icu_deps): + native.cc_binary( + name = "noicu/" + name, + srcs = srcs + noicu_srcs, + deps = deps + noicu_deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts, + linkopts = linkopts + default.linkopts, + **kwargs + ) + native.cc_binary( + name = "icu/" + name, + srcs = srcs + icu_srcs, + deps = deps + icu_deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts + ENABLE_I18N_SUPPORT_DEFINES, + linkopts = linkopts + default.linkopts, + **kwargs + ) + else: + native.cc_binary( + name = name, + srcs = srcs, + deps = deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts, + linkopts = linkopts + default.linkopts, + **kwargs + ) +# buildifier: disable=function-docstring def v8_library( name, srcs, - configs = [], deps = [], includes = [], copts = [], linkopts = [], + noicu_srcs = [], + noicu_deps = [], + icu_srcs = [], + icu_deps = [], **kwargs): - default = _default_args(configs) - native.cc_library( - name = name, - srcs = srcs, - deps = deps + default.deps, - includes = includes + default.includes, - copts = copts + default.copts, - linkopts = linkopts + default.linkopts, - alwayslink = 1, - **kwargs - ) + default = _default_args() + if _should_emit_noicu_and_icu(noicu_srcs, noicu_deps, icu_srcs, icu_deps): + native.cc_library( + name = "noicu/" + name, + srcs = srcs + noicu_srcs, + deps = deps + noicu_deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts, + linkopts = linkopts + default.linkopts, + alwayslink = 1, + **kwargs + ) + native.cc_library( + name = "icu/" + name, + srcs = srcs + icu_srcs, + deps = deps + icu_deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts + ENABLE_I18N_SUPPORT_DEFINES, + linkopts = linkopts + default.linkopts, + alwayslink = 1, + **kwargs + ) + else: + native.cc_library( + name = name, + srcs = srcs, + deps = deps + default.deps, + includes = includes + default.includes, + copts = copts + default.copts, + linkopts = linkopts + default.linkopts, + alwayslink = 1, + **kwargs + ) def _torque_impl(ctx): - v8root = ctx.attr.v8root[FlagInfo].value + v8root = "." + prefix = ctx.attr.prefix + # Arguments args = [] args += ctx.attr.args args.append("-o") - args.append(ctx.bin_dir.path + "/torque-generated") + args.append(ctx.bin_dir.path + "/" + v8root + "/" + ctx.attr.prefix + "/torque-generated") args.append("-strip-v8-root") args.append("-v8-root") args.append(v8root) + # Sources args += [f.path for f in ctx.files.srcs] + # Generate/declare output files outs = [] for src in ctx.files.srcs: root, period, ext = src.path.rpartition(".") + # Strip v8root if root[:len(v8root)] == v8root: root = root[len(v8root):] - file = "torque-generated/" + root + file = ctx.attr.prefix + "/torque-generated/" + root outs.append(ctx.actions.declare_file(file + "-tq-csa.cc")) outs.append(ctx.actions.declare_file(file + "-tq-csa.h")) outs.append(ctx.actions.declare_file(file + "-tq-inl.inc")) outs.append(ctx.actions.declare_file(file + "-tq.inc")) outs.append(ctx.actions.declare_file(file + "-tq.cc")) - outs += [ctx.actions.declare_file("torque-generated/" + f) for f in ctx.attr.extras] + outs += [ctx.actions.declare_file(ctx.attr.prefix + "/torque-generated/" + f) for f in ctx.attr.extras] ctx.actions.run( outputs = outs, inputs = ctx.files.srcs, arguments = args, executable = ctx.executable.tool, + mnemonic = "GenTorque", progress_message = "Generating Torque files", ) return [DefaultInfo(files = depset(outs))] -v8_torque = rule( +_v8_torque = rule( implementation = _torque_impl, + # cfg = v8_target_cpu_transition, attrs = { + "prefix": attr.string(mandatory = True), "srcs": attr.label_list(allow_files = True, mandatory = True), "extras": attr.string_list(), "tool": attr.label( - default = ":torque", allow_files = True, executable = True, - cfg = "host", + cfg = "exec", ), "args": attr.string_list(), "v8root": attr.label(default = ":v8_root"), }, ) +def v8_torque(name, noicu_srcs, icu_srcs, args, extras): + _v8_torque( + name = "noicu/" + name, + prefix = "noicu", + srcs = noicu_srcs, + args = args, + extras = extras, + tool = select({ + "@config//:v8_target_is_32_bits": ":torque_non_pointer_compression", + "//conditions:default": ":torque", + }), + ) + _v8_torque( + name = "icu/" + name, + prefix = "icu", + srcs = icu_srcs, + args = args, + extras = extras, + tool = select({ + "@config//:v8_target_is_32_bits": ":torque_non_pointer_compression", + "//conditions:default": ":torque", + }), + ) + def _mksnapshot(ctx): outs = [ - ctx.actions.declare_file("snapshot.cc"), - ctx.actions.declare_file("embedded.S"), + ctx.actions.declare_file(ctx.attr.prefix + "/snapshot.cc"), + ctx.actions.declare_file(ctx.attr.prefix + "/embedded.S"), ] ctx.actions.run( outputs = outs, inputs = [], arguments = [ "--embedded_variant=Default", - "--startup_src", outs[0].path, - "--embedded_src", outs[1].path, + "--startup_src", + outs[0].path, + "--embedded_src", + outs[1].path, ] + ctx.attr.args, executable = ctx.executable.tool, - progress_message = "Running mksnapshot" + progress_message = "Running mksnapshot", ) return [DefaultInfo(files = depset(outs))] - -v8_mksnapshot = rule( +_v8_mksnapshot = rule( implementation = _mksnapshot, attrs = { "args": attr.string_list(), "tool": attr.label( - default = ":mksnapshot", + mandatory = True, allow_files = True, executable = True, - cfg = "host", + cfg = "exec", ), - } + "prefix": attr.string(mandatory = True), + }, ) +def v8_mksnapshot(name, args): + _v8_mksnapshot( + name = "noicu/" + name, + args = args, + prefix = "noicu", + tool = ":noicu/mksnapshot", + ) + _v8_mksnapshot( + name = "icu/" + name, + args = args, + prefix = "icu", + tool = ":icu/mksnapshot", + ) + def _quote(val): if val[0] == '"' and val[-1] == '"': fail("String", val, "already quoted") @@ -255,11 +362,8 @@ def _json(kv_pairs): content += "}\n" return content -# TODO(victorgomes): Create a rule (instead of a macro), that can -# dynamically populate the build config. -def v8_build_config(name): - cpu = _quote("x64") - content = _json([ +def build_config_content(cpu, icu): + return _json([ ("current_cpu", cpu), ("dcheck_always_on", "false"), ("is_android", "false"), @@ -275,10 +379,11 @@ def v8_build_config(name): ("is_ubsan_vptr", "false"), ("target_cpu", cpu), ("v8_current_cpu", cpu), + ("v8_dict_property_const_tracking", "false"), ("v8_enable_atomic_marking_state", "false"), ("v8_enable_atomic_object_field_writes", "false"), ("v8_enable_concurrent_marking", "false"), - ("v8_enable_i18n_support", "true"), + ("v8_enable_i18n_support", icu), ("v8_enable_verify_predictable", "false"), ("v8_enable_verify_csa", "false"), ("v8_enable_lite_mode", "false"), @@ -289,10 +394,21 @@ def v8_build_config(name): ("v8_enable_webassembly", "false"), ("v8_control_flow_integrity", "false"), ("v8_enable_single_generation", "false"), + ("v8_enable_virtual_memory_cage", "false"), ("v8_target_cpu", cpu), ]) + +# TODO(victorgomes): Create a rule (instead of a macro), that can +# dynamically populate the build config. +def v8_build_config(name): + cpu = _quote("x64") + native.genrule( + name = "noicu/" + name, + outs = ["noicu/" + name + ".json"], + cmd = "echo '" + build_config_content(cpu, "false") + "' > \"$@\"", + ) native.genrule( - name = name, - outs = [name + ".json"], - cmd = "echo '" + content + "' > \"$@\"", + name = "icu/" + name, + outs = ["icu/" + name + ".json"], + cmd = "echo '" + build_config_content(cpu, "true") + "' > \"$@\"", ) diff --git a/deps/v8/bazel/v8-non-pointer-compression.bzl b/deps/v8/bazel/v8-non-pointer-compression.bzl new file mode 100644 index 00000000000000..4f1c6bc003372e --- /dev/null +++ b/deps/v8/bazel/v8-non-pointer-compression.bzl @@ -0,0 +1,59 @@ +def _v8_disable_pointer_compression(settings, attr): + return { + "//third_party/v8/HEAD:v8_enable_pointer_compression": "False", + } + +v8_disable_pointer_compression = transition( + implementation = _v8_disable_pointer_compression, + inputs = [], + outputs = ["//third_party/v8/HEAD:v8_enable_pointer_compression"], +) + +# The implementation of transition_rule: all this does is copy the +# cc_binary's output to its own output and propagate its runfiles +# and executable to use for "$ bazel run". +# +# This makes transition_rule as close to a pure wrapper of cc_binary +# as possible. +def _v8_binary_non_pointer_compression(ctx): + binary = ctx.attr.binary[0] + outfile = ctx.actions.declare_file(ctx.label.name) + cc_binary_outfile = binary[DefaultInfo].files.to_list()[0] + + ctx.actions.run_shell( + inputs = [cc_binary_outfile], + outputs = [outfile], + command = "cp %s %s" % (cc_binary_outfile.path, outfile.path), + ) + return [ + DefaultInfo( + executable = outfile, + data_runfiles = binary[DefaultInfo].data_runfiles, + ), + ] + +# The purpose of this rule is to transition to a config where v8_target_cpu is +# set to the appropriate architecture, which will remain in place through exec +# transitions, so mksnapshot can for instance build on x64 but for arm64. +v8_binary_non_pointer_compression = rule( + implementation = _v8_binary_non_pointer_compression, + attrs = { + # This is the cc_binary whose deps will select() on that feature. + # Note specificaly how it's configured with v8_target_cpu_transition, which + # ensures that setting propagates down the graph. + "binary": attr.label(cfg = v8_disable_pointer_compression), + # This is a stock Bazel requirement for any rule that uses Starlark + # transitions. It's okay to copy the below verbatim for all such rules. + # + # The purpose of this requirement is to give the ability to restrict + # which packages can invoke these rules, since Starlark transitions + # make much larger graphs possible that can have memory and performance + # consequences for your build. The whitelist defaults to "everything". + # But you can redefine it more strictly if you feel that's prudent. + "_allowlist_function_transition": attr.label( + default = "//tools/allowlists/function_transition_allowlist", + ), + }, + # Making this executable means it works with "$ bazel run". + executable = True, +) diff --git a/deps/v8/include/cppgc/allocation.h b/deps/v8/include/cppgc/allocation.h index a3112dd61fbbdd..69883fb34d1e46 100644 --- a/deps/v8/include/cppgc/allocation.h +++ b/deps/v8/include/cppgc/allocation.h @@ -18,6 +18,23 @@ #include "cppgc/type-traits.h" #include "v8config.h" // NOLINT(build/include_directory) +#if defined(__has_attribute) +#if __has_attribute(assume_aligned) +#define CPPGC_DEFAULT_ALIGNED \ + __attribute__((assume_aligned(api_constants::kDefaultAlignment))) +#define CPPGC_DOUBLE_WORD_ALIGNED \ + __attribute__((assume_aligned(2 * api_constants::kDefaultAlignment))) +#endif // __has_attribute(assume_aligned) +#endif // defined(__has_attribute) + +#if !defined(CPPGC_DEFAULT_ALIGNED) +#define CPPGC_DEFAULT_ALIGNED +#endif + +#if !defined(CPPGC_DOUBLE_WORD_ALIGNED) +#define CPPGC_DOUBLE_WORD_ALIGNED +#endif + namespace cppgc { /** @@ -27,6 +44,9 @@ class AllocationHandle; namespace internal { +// Similar to C++17 std::align_val_t; +enum class AlignVal : size_t {}; + class V8_EXPORT MakeGarbageCollectedTraitInternal { protected: static inline void MarkObjectAsFullyConstructed(const void* payload) { @@ -45,32 +65,72 @@ class V8_EXPORT MakeGarbageCollectedTraitInternal { atomic_mutable_bitfield->store(value, std::memory_order_release); } - template - struct SpacePolicy { - static void* Allocate(AllocationHandle& handle, size_t size) { - // Custom space. + // Dispatch based on compile-time information. + // + // Default implementation is for a custom space with >`kDefaultAlignment` byte + // alignment. + template + struct AllocationDispatcher final { + static void* Invoke(AllocationHandle& handle, size_t size) { static_assert(std::is_base_of::value, "Custom space must inherit from CustomSpaceBase."); + static_assert( + !CustomSpace::kSupportsCompaction, + "Custom spaces that support compaction do not support allocating " + "objects with non-default (i.e. word-sized) alignment."); return MakeGarbageCollectedTraitInternal::Allocate( - handle, size, internal::GCInfoTrait::Index(), - CustomSpace::kSpaceIndex); + handle, size, static_cast(alignment), + internal::GCInfoTrait::Index(), CustomSpace::kSpaceIndex); + } + }; + + // Fast path for regular allocations for the default space with + // `kDefaultAlignment` byte alignment. + template + struct AllocationDispatcher + final { + static void* Invoke(AllocationHandle& handle, size_t size) { + return MakeGarbageCollectedTraitInternal::Allocate( + handle, size, internal::GCInfoTrait::Index()); } }; - template - struct SpacePolicy { - static void* Allocate(AllocationHandle& handle, size_t size) { - // Default space. + // Default space with >`kDefaultAlignment` byte alignment. + template + struct AllocationDispatcher final { + static void* Invoke(AllocationHandle& handle, size_t size) { return MakeGarbageCollectedTraitInternal::Allocate( - handle, size, internal::GCInfoTrait::Index()); + handle, size, static_cast(alignment), + internal::GCInfoTrait::Index()); + } + }; + + // Custom space with `kDefaultAlignment` byte alignment. + template + struct AllocationDispatcher + final { + static void* Invoke(AllocationHandle& handle, size_t size) { + static_assert(std::is_base_of::value, + "Custom space must inherit from CustomSpaceBase."); + return MakeGarbageCollectedTraitInternal::Allocate( + handle, size, internal::GCInfoTrait::Index(), + CustomSpace::kSpaceIndex); } }; private: - static void* Allocate(cppgc::AllocationHandle& handle, size_t size, - GCInfoIndex index); - static void* Allocate(cppgc::AllocationHandle& handle, size_t size, - GCInfoIndex index, CustomSpaceIndex space_index); + static void* CPPGC_DEFAULT_ALIGNED Allocate(cppgc::AllocationHandle&, size_t, + GCInfoIndex); + static void* CPPGC_DOUBLE_WORD_ALIGNED Allocate(cppgc::AllocationHandle&, + size_t, AlignVal, + GCInfoIndex); + static void* CPPGC_DEFAULT_ALIGNED Allocate(cppgc::AllocationHandle&, size_t, + GCInfoIndex, CustomSpaceIndex); + static void* CPPGC_DOUBLE_WORD_ALIGNED Allocate(cppgc::AllocationHandle&, + size_t, AlignVal, GCInfoIndex, + CustomSpaceIndex); friend class HeapObjectHeader; }; @@ -109,10 +169,18 @@ class MakeGarbageCollectedTraitBase std::is_base_of::value, "U of GarbageCollected must be a base of T. Check " "GarbageCollected base class inheritance."); - return SpacePolicy< + static constexpr size_t kWantedAlignment = + alignof(T) < internal::api_constants::kDefaultAlignment + ? internal::api_constants::kDefaultAlignment + : alignof(T); + static_assert( + kWantedAlignment <= internal::api_constants::kMaxSupportedAlignment, + "Requested alignment larger than alignof(std::max_align_t) bytes. " + "Please file a bug to possibly get this restriction lifted."); + return AllocationDispatcher< typename internal::GCInfoFolding< T, typename T::ParentMostGarbageCollectedType>::ResultType, - typename SpaceTrait::Space>::Allocate(handle, size); + typename SpaceTrait::Space, kWantedAlignment>::Invoke(handle, size); } /** @@ -236,4 +304,7 @@ V8_INLINE T* MakeGarbageCollected(AllocationHandle& handle, } // namespace cppgc +#undef CPPGC_DEFAULT_ALIGNED +#undef CPPGC_DOUBLE_WORD_ALIGNED + #endif // INCLUDE_CPPGC_ALLOCATION_H_ diff --git a/deps/v8/include/cppgc/internal/api-constants.h b/deps/v8/include/cppgc/internal/api-constants.h index 7253a47089352c..791039f1ee1326 100644 --- a/deps/v8/include/cppgc/internal/api-constants.h +++ b/deps/v8/include/cppgc/internal/api-constants.h @@ -39,6 +39,11 @@ constexpr size_t kCagedHeapReservationSize = static_cast(4) * kGB; constexpr size_t kCagedHeapReservationAlignment = kCagedHeapReservationSize; #endif +static constexpr size_t kDefaultAlignment = sizeof(void*); + +// Maximum support alignment for a type as in `alignof(T)`. +static constexpr size_t kMaxSupportedAlignment = 2 * kDefaultAlignment; + } // namespace api_constants } // namespace internal diff --git a/deps/v8/include/cppgc/internal/persistent-node.h b/deps/v8/include/cppgc/internal/persistent-node.h index 1fea667848b30d..68a8096cb66c6e 100644 --- a/deps/v8/include/cppgc/internal/persistent-node.h +++ b/deps/v8/include/cppgc/internal/persistent-node.h @@ -20,6 +20,7 @@ class Visitor; namespace internal { class CrossThreadPersistentRegion; +class FatalOutOfMemoryHandler; // PersistentNode represents a variant of two states: // 1) traceable node with a back pointer to the Persistent object; @@ -79,7 +80,7 @@ class V8_EXPORT PersistentRegionBase { using PersistentNodeSlots = std::array; public: - PersistentRegionBase() = default; + explicit PersistentRegionBase(const FatalOutOfMemoryHandler& oom_handler); // Clears Persistent fields to avoid stale pointers after heap teardown. ~PersistentRegionBase(); @@ -89,6 +90,7 @@ class V8_EXPORT PersistentRegionBase { PersistentNode* AllocateNode(void* owner, TraceCallback trace) { if (!free_list_head_) { EnsureNodeSlots(); + CPPGC_DCHECK(free_list_head_); } PersistentNode* node = free_list_head_; free_list_head_ = free_list_head_->FreeListNext(); @@ -122,6 +124,7 @@ class V8_EXPORT PersistentRegionBase { std::vector> nodes_; PersistentNode* free_list_head_ = nullptr; size_t nodes_in_use_ = 0; + const FatalOutOfMemoryHandler& oom_handler_; friend class CrossThreadPersistentRegion; }; @@ -130,7 +133,7 @@ class V8_EXPORT PersistentRegionBase { // freeing happens only on the thread that created the region. class V8_EXPORT PersistentRegion final : public PersistentRegionBase { public: - PersistentRegion(); + explicit PersistentRegion(const FatalOutOfMemoryHandler&); // Clears Persistent fields to avoid stale pointers after heap teardown. ~PersistentRegion() = default; @@ -138,21 +141,17 @@ class V8_EXPORT PersistentRegion final : public PersistentRegionBase { PersistentRegion& operator=(const PersistentRegion&) = delete; V8_INLINE PersistentNode* AllocateNode(void* owner, TraceCallback trace) { -#if V8_ENABLE_CHECKS - CheckIsCreationThread(); -#endif // V8_ENABLE_CHECKS + CPPGC_DCHECK(IsCreationThread()); return PersistentRegionBase::AllocateNode(owner, trace); } V8_INLINE void FreeNode(PersistentNode* node) { -#if V8_ENABLE_CHECKS - CheckIsCreationThread(); -#endif // V8_ENABLE_CHECKS + CPPGC_DCHECK(IsCreationThread()); PersistentRegionBase::FreeNode(node); } private: - void CheckIsCreationThread(); + bool IsCreationThread(); int creation_thread_id_; }; @@ -172,7 +171,7 @@ class V8_EXPORT PersistentRegionLock final { class V8_EXPORT CrossThreadPersistentRegion final : protected PersistentRegionBase { public: - CrossThreadPersistentRegion() = default; + explicit CrossThreadPersistentRegion(const FatalOutOfMemoryHandler&); // Clears Persistent fields to avoid stale pointers after heap teardown. ~CrossThreadPersistentRegion(); diff --git a/deps/v8/include/cppgc/internal/pointer-policies.h b/deps/v8/include/cppgc/internal/pointer-policies.h index 7c4f4a0862a67f..853d7031530979 100644 --- a/deps/v8/include/cppgc/internal/pointer-policies.h +++ b/deps/v8/include/cppgc/internal/pointer-policies.h @@ -92,19 +92,19 @@ class DisabledCheckingPolicy { void CheckPointer(const void*) {} }; -#if V8_ENABLE_CHECKS +#ifdef DEBUG // Off heap members are not connected to object graph and thus cannot ressurect // dead objects. using DefaultMemberCheckingPolicy = SameThreadEnabledCheckingPolicy; using DefaultPersistentCheckingPolicy = SameThreadEnabledCheckingPolicy; -#else +#else // !DEBUG using DefaultMemberCheckingPolicy = DisabledCheckingPolicy; using DefaultPersistentCheckingPolicy = DisabledCheckingPolicy; -#endif +#endif // !DEBUG // For CT(W)P neither marking information (for value), nor objectstart bitmap -// (for slot) are guaranteed to be present because there's no synchonization +// (for slot) are guaranteed to be present because there's no synchronization // between heaps after marking. using DefaultCrossThreadPersistentCheckingPolicy = DisabledCheckingPolicy; diff --git a/deps/v8/include/libplatform/libplatform.h b/deps/v8/include/libplatform/libplatform.h index 00de81df887fc4..fb79bcfe40784c 100644 --- a/deps/v8/include/libplatform/libplatform.h +++ b/deps/v8/include/libplatform/libplatform.h @@ -95,7 +95,7 @@ V8_PLATFORM_EXPORT void RunIdleTasks(v8::Platform* platform, * The |platform| has to be created using |NewDefaultPlatform|. * */ -V8_DEPRECATE_SOON("Access the DefaultPlatform directly") +V8_DEPRECATED("Access the DefaultPlatform directly") V8_PLATFORM_EXPORT void SetTracingController( v8::Platform* platform, v8::platform::tracing::TracingController* tracing_controller); diff --git a/deps/v8/include/v8-context.h b/deps/v8/include/v8-context.h index bd28c6c9c935d1..d398ac4b21baad 100644 --- a/deps/v8/include/v8-context.h +++ b/deps/v8/include/v8-context.h @@ -318,7 +318,7 @@ class V8_EXPORT Context : public Data { * stack may be allocated separately from the native stack. See also * |TryCatch::JSStackComparableAddressPrivate| for details. */ - V8_DEPRECATE_SOON( + V8_DEPRECATED( "This is private V8 information that should not be exposed in the API.") uintptr_t JSStackComparableAddress() const { return JSStackComparableAddressPrivate(); diff --git a/deps/v8/include/v8-cppgc.h b/deps/v8/include/v8-cppgc.h index 813e0842fa7cf7..64b42c2b48b3af 100644 --- a/deps/v8/include/v8-cppgc.h +++ b/deps/v8/include/v8-cppgc.h @@ -195,9 +195,11 @@ class V8_EXPORT JSHeapConsistency final { * \returns whether a write barrier is needed and which barrier to invoke. */ template + V8_DEPRECATE_SOON("Write barriers automatically emitted by TracedReference.") static V8_INLINE WriteBarrierType - GetWriteBarrierType(const TracedReferenceBase& ref, - WriteBarrierParams& params, HeapHandleCallback callback) { + GetWriteBarrierType(const TracedReferenceBase& ref, + WriteBarrierParams& params, + HeapHandleCallback callback) { if (ref.IsEmpty()) return WriteBarrierType::kNone; if (V8_LIKELY(!cppgc::internal::WriteBarrier:: @@ -251,6 +253,7 @@ class V8_EXPORT JSHeapConsistency final { * \param params The parameters retrieved from `GetWriteBarrierType()`. * \param ref The reference being written to. */ + V8_DEPRECATE_SOON("Write barriers automatically emitted by TracedReference.") static V8_INLINE void DijkstraMarkingBarrier(const WriteBarrierParams& params, cppgc::HeapHandle& heap_handle, const TracedReferenceBase& ref) { @@ -280,6 +283,7 @@ class V8_EXPORT JSHeapConsistency final { * \param params The parameters retrieved from `GetWriteBarrierType()`. * \param ref The reference being written to. */ + V8_DEPRECATE_SOON("Write barriers automatically emitted by TracedReference.") static V8_INLINE void GenerationalBarrier(const WriteBarrierParams& params, const TracedReferenceBase& ref) {} @@ -318,8 +322,13 @@ namespace cppgc { template struct TraceTrait> { - static void Trace(Visitor* visitor, const v8::TracedReference* self) { - static_cast(visitor)->Trace(*self); + static cppgc::TraceDescriptor GetTraceDescriptor(const void* self) { + return {nullptr, Trace}; + } + + static void Trace(Visitor* visitor, const void* self) { + static_cast(visitor)->Trace( + *static_cast*>(self)); } }; diff --git a/deps/v8/include/v8-embedder-heap.h b/deps/v8/include/v8-embedder-heap.h index 501a4fc523b78f..c3e5ddc16c7d5c 100644 --- a/deps/v8/include/v8-embedder-heap.h +++ b/deps/v8/include/v8-embedder-heap.h @@ -127,7 +127,7 @@ class V8_EXPORT EmbedderHeapTracer { /** * Called by the embedder to notify V8 of an empty execution stack. */ - V8_DEPRECATE_SOON( + V8_DEPRECATED( "This call only optimized internal caches which V8 is able to figure out " "on its own now.") void NotifyEmptyEmbedderStack(); diff --git a/deps/v8/include/v8-exception.h b/deps/v8/include/v8-exception.h index add882da4c47e6..faa46487f8fb31 100644 --- a/deps/v8/include/v8-exception.h +++ b/deps/v8/include/v8-exception.h @@ -169,7 +169,7 @@ class V8_EXPORT TryCatch { */ void SetCaptureMessage(bool value); - V8_DEPRECATE_SOON( + V8_DEPRECATED( "This is private information that should not be exposed by the API") static void* JSStackComparableAddress(TryCatch* handler) { if (handler == nullptr) return nullptr; diff --git a/deps/v8/include/v8-fast-api-calls.h b/deps/v8/include/v8-fast-api-calls.h index cf90695785393b..141fddd2445eb6 100644 --- a/deps/v8/include/v8-fast-api-calls.h +++ b/deps/v8/include/v8-fast-api-calls.h @@ -460,12 +460,6 @@ class V8_EXPORT CFunction { return ArgUnwrap::Make(func); } - template - V8_DEPRECATED("Use CFunctionBuilder instead.") - static CFunction MakeWithFallbackSupport(F* func) { - return ArgUnwrap::Make(func); - } - CFunction(const void* address, const CFunctionInfo* type_info); private: @@ -485,7 +479,7 @@ class V8_EXPORT CFunction { }; }; -struct ApiObject { +struct V8_DEPRECATED("Use v8::Local instead.") ApiObject { uintptr_t address; }; @@ -684,17 +678,19 @@ struct TypeInfoHelper { #define STATIC_ASSERT_IMPLIES(COND, ASSERTION, MSG) \ static_assert(((COND) == 0) || (ASSERTION), MSG) +} // namespace internal + template -class CTypeInfoBuilder { +class V8_EXPORT CTypeInfoBuilder { public: using BaseType = T; static constexpr CTypeInfo Build() { constexpr CTypeInfo::Flags kFlags = - MergeFlags(TypeInfoHelper::Flags(), Flags...); - constexpr CTypeInfo::Type kType = TypeInfoHelper::Type(); + MergeFlags(internal::TypeInfoHelper::Flags(), Flags...); + constexpr CTypeInfo::Type kType = internal::TypeInfoHelper::Type(); constexpr CTypeInfo::SequenceType kSequenceType = - TypeInfoHelper::SequenceType(); + internal::TypeInfoHelper::SequenceType(); STATIC_ASSERT_IMPLIES( uint8_t(kFlags) & uint8_t(CTypeInfo::Flags::kAllowSharedBit), @@ -722,8 +718,8 @@ class CTypeInfoBuilder { "TypedArrays are only supported from primitive types or void."); // Return the same type with the merged flags. - return CTypeInfo(TypeInfoHelper::Type(), - TypeInfoHelper::SequenceType(), kFlags); + return CTypeInfo(internal::TypeInfoHelper::Type(), + internal::TypeInfoHelper::SequenceType(), kFlags); } private: @@ -735,6 +731,7 @@ class CTypeInfoBuilder { static constexpr CTypeInfo::Flags MergeFlags() { return CTypeInfo::Flags(0); } }; +namespace internal { template class CFunctionBuilderWithFunction { public: @@ -864,24 +861,28 @@ bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer( Local src, T* dst, uint32_t max_length); template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), int32_t>( - Local src, int32_t* dst, uint32_t max_length); +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + int32_t>(Local src, int32_t* dst, + uint32_t max_length); template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), uint32_t>( - Local src, uint32_t* dst, uint32_t max_length); +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + uint32_t>(Local src, uint32_t* dst, + uint32_t max_length); template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), float>( - Local src, float* dst, uint32_t max_length); +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + float>(Local src, float* dst, + uint32_t max_length); template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), double>( - Local src, double* dst, uint32_t max_length); +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + double>(Local src, double* dst, + uint32_t max_length); } // namespace v8 diff --git a/deps/v8/include/v8-function.h b/deps/v8/include/v8-function.h index 9424a86fdafc40..897e6ed6175931 100644 --- a/deps/v8/include/v8-function.h +++ b/deps/v8/include/v8-function.h @@ -18,6 +18,7 @@ namespace v8 { class Context; +class UnboundScript; /** * A JavaScript function object (ECMA-262, 15.3). @@ -58,6 +59,8 @@ class V8_EXPORT Function : public Object { void SetName(Local name); Local GetName() const; + MaybeLocal GetUnboundScript() const; + /** * Name inferred from variable or property assignment of this function. * Used to facilitate debugging and profiling of JavaScript code written diff --git a/deps/v8/include/v8-initialization.h b/deps/v8/include/v8-initialization.h index 7c9f26b89279d0..822d150371c698 100644 --- a/deps/v8/include/v8-initialization.h +++ b/deps/v8/include/v8-initialization.h @@ -227,6 +227,16 @@ class V8_EXPORT V8 { * this returns zero. */ static size_t GetVirtualMemoryCageSizeInBytes(); + + /** + * Returns whether the virtual memory cage is configured securely. + * + * If V8 cannot create a proper virtual memory cage, it will fall back to + * creating a cage that doesn't have the desired security properties but at + * least still allows V8 to function. This API can be used to determine if + * such an insecure cage is being used, in which case it will return false. + */ + static bool IsUsingSecureVirtualMemoryCage(); #endif /** diff --git a/deps/v8/include/v8-inspector.h b/deps/v8/include/v8-inspector.h index 74592fdf573e96..8ba21ffd84a560 100644 --- a/deps/v8/include/v8-inspector.h +++ b/deps/v8/include/v8-inspector.h @@ -114,7 +114,7 @@ class V8_EXPORT V8StackTrace { virtual int topLineNumber() const = 0; virtual int topColumnNumber() const = 0; virtual int topScriptId() const = 0; - V8_DEPRECATE_SOON("Use V8::StackTrace::topScriptId() instead.") + V8_DEPRECATED("Use V8::StackTrace::topScriptId() instead.") int topScriptIdAsInteger() const { return topScriptId(); } virtual StringView topFunctionName() const = 0; diff --git a/deps/v8/include/v8-internal.h b/deps/v8/include/v8-internal.h index e1aee508bbceac..f0531bcff6ebde 100644 --- a/deps/v8/include/v8-internal.h +++ b/deps/v8/include/v8-internal.h @@ -494,13 +494,14 @@ constexpr bool VirtualMemoryCageIsEnabled() { #endif } -#ifdef V8_VIRTUAL_MEMORY_CAGE -// Size of the virtual memory cage, excluding the guard regions surrounding it. -constexpr size_t kVirtualMemoryCageSize = size_t{1} << 40; // 1 TB +#ifdef V8_VIRTUAL_MEMORY_CAGE_IS_AVAILABLE -static_assert(kVirtualMemoryCageSize > Internals::kPtrComprCageReservationSize, - "The virtual memory cage must be larger than the pointer " - "compression cage contained within it."); +#define GB (1ULL << 30) +#define TB (1ULL << 40) + +// Size of the virtual memory cage, excluding the guard regions surrounding it. +constexpr size_t kVirtualMemoryCageSizeLog2 = 40; // 1 TB +constexpr size_t kVirtualMemoryCageSize = 1ULL << kVirtualMemoryCageSizeLog2; // Required alignment of the virtual memory cage. For simplicity, we require the // size of the guard regions to be a multiple of this, so that this specifies @@ -510,10 +511,22 @@ static_assert(kVirtualMemoryCageSize > Internals::kPtrComprCageReservationSize, constexpr size_t kVirtualMemoryCageAlignment = Internals::kPtrComprCageBaseAlignment; +#ifdef V8_CAGED_POINTERS +// CagedPointers are guaranteed to point into the virtual memory cage. This is +// achieved by storing them as offset from the cage base rather than as raw +// pointers. +using CagedPointer_t = Address; + +// For efficiency, the offset is stored shifted to the left, so that +// it is guaranteed that the offset is smaller than the cage size after +// shifting it to the right again. This constant specifies the shift amount. +constexpr uint64_t kCagedPointerShift = 64 - kVirtualMemoryCageSizeLog2; +#endif + // Size of the guard regions surrounding the virtual memory cage. This assumes a // worst-case scenario of a 32-bit unsigned index being used to access an array // of 64-bit values. -constexpr size_t kVirtualMemoryCageGuardRegionSize = size_t{32} << 30; // 32 GB +constexpr size_t kVirtualMemoryCageGuardRegionSize = 32ULL * GB; static_assert((kVirtualMemoryCageGuardRegionSize % kVirtualMemoryCageAlignment) == 0, @@ -525,7 +538,33 @@ static_assert((kVirtualMemoryCageGuardRegionSize % // until either the reservation succeeds or the minimum size is reached. A // minimum of 32GB allows the 4GB pointer compression region as well as the // ArrayBuffer partition and two 10GB WASM memory cages to fit into the cage. -constexpr size_t kVirtualMemoryCageMinimumSize = size_t{32} << 30; // 32 GB +// 32GB should also be the minimum possible size of the userspace address space +// as there are some machine configurations with only 36 virtual address bits. +constexpr size_t kVirtualMemoryCageMinimumSize = 32ULL * GB; + +static_assert(kVirtualMemoryCageMinimumSize <= kVirtualMemoryCageSize, + "The minimal size of the virtual memory cage must be smaller or " + "equal to the regular size."); + +// On OSes where reservation virtual memory is too expensive to create a real +// cage, notably Windows pre 8.1, we create a fake cage that doesn't actually +// reserve most of the memory, and so doesn't have the desired security +// properties, but still ensures that objects that should be located inside the +// cage are allocated within kVirtualMemoryCageSize bytes from the start of the +// cage, and so appear to be inside the cage. The minimum size of the virtual +// memory range that is actually reserved for a fake cage is specified by this +// constant and should be big enough to contain the pointer compression region +// as well as the ArrayBuffer partition. +constexpr size_t kFakeVirtualMemoryCageMinReservationSize = 8ULL * GB; + +static_assert(kVirtualMemoryCageMinimumSize > + Internals::kPtrComprCageReservationSize, + "The virtual memory cage must be larger than the pointer " + "compression cage contained within it."); +static_assert(kFakeVirtualMemoryCageMinReservationSize > + Internals::kPtrComprCageReservationSize, + "The reservation for a fake virtual memory cage must be larger " + "than the pointer compression cage contained within it."); // For now, even if the virtual memory cage is enabled, we still allow backing // stores to be allocated outside of it as fallback. This will simplify the @@ -537,7 +576,10 @@ constexpr bool kAllowBackingStoresOutsideCage = false; constexpr bool kAllowBackingStoresOutsideCage = true; #endif // V8_HEAP_SANDBOX -#endif // V8_VIRTUAL_MEMORY_CAGE +#undef GB +#undef TB + +#endif // V8_VIRTUAL_MEMORY_CAGE_IS_AVAILABLE // Only perform cast check for types derived from v8::Data since // other types do not implement the Cast method. diff --git a/deps/v8/include/v8-isolate.h b/deps/v8/include/v8-isolate.h index 39276b34a9d5b2..32b53f1b423557 100644 --- a/deps/v8/include/v8-isolate.h +++ b/deps/v8/include/v8-isolate.h @@ -281,6 +281,12 @@ class V8_EXPORT Isolate { */ int embedder_wrapper_type_index = -1; int embedder_wrapper_object_index = -1; + + /** + * The following parameter is experimental and may change significantly. + * This is currently for internal testing. + */ + Isolate* experimental_attach_to_shared_isolate = nullptr; }; /** @@ -585,6 +591,11 @@ class V8_EXPORT Isolate { */ static Isolate* TryGetCurrent(); + /** + * Return true if this isolate is currently active. + **/ + bool IsCurrent() const; + /** * Clears the set of objects held strongly by the heap. This set of * objects are originally built when a WeakRef is created or diff --git a/deps/v8/include/v8-message.h b/deps/v8/include/v8-message.h index be427e79cf21e0..e9d668ca521f8b 100644 --- a/deps/v8/include/v8-message.h +++ b/deps/v8/include/v8-message.h @@ -60,9 +60,7 @@ class ScriptOriginOptions { */ class V8_EXPORT ScriptOrigin { public: - #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */ - V8_DEPRECATE_SOON("Use constructor with primitive C++ types") - #endif + V8_DEPRECATED("Use constructor with primitive C++ types") ScriptOrigin( Local resource_name, Local resource_line_offset, Local resource_column_offset, @@ -73,9 +71,7 @@ class V8_EXPORT ScriptOrigin { Local is_wasm = Local(), Local is_module = Local(), Local host_defined_options = Local()); - #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */ - V8_DEPRECATE_SOON("Use constructor that takes an isolate") - #endif + V8_DEPRECATED("Use constructor that takes an isolate") explicit ScriptOrigin( Local resource_name, int resource_line_offset = 0, int resource_column_offset = 0, @@ -103,11 +99,11 @@ class V8_EXPORT ScriptOrigin { host_defined_options_(host_defined_options) {} V8_INLINE Local ResourceName() const; - V8_DEPRECATE_SOON("Use getter with primitive C++ types.") + V8_DEPRECATED("Use getter with primitive C++ types.") V8_INLINE Local ResourceLineOffset() const; - V8_DEPRECATE_SOON("Use getter with primitive C++ types.") + V8_DEPRECATED("Use getter with primitive C++ types.") V8_INLINE Local ResourceColumnOffset() const; - V8_DEPRECATE_SOON("Use getter with primitive C++ types.") + V8_DEPRECATED("Use getter with primitive C++ types.") V8_INLINE Local ScriptID() const; V8_INLINE int LineOffset() const; V8_INLINE int ColumnOffset() const; diff --git a/deps/v8/include/v8-metrics.h b/deps/v8/include/v8-metrics.h index 29e54401067d3a..62738442f7ce8c 100644 --- a/deps/v8/include/v8-metrics.h +++ b/deps/v8/include/v8-metrics.h @@ -46,12 +46,12 @@ struct GarbageCollectionFullCycle { GarbageCollectionSizes objects_cpp; GarbageCollectionSizes memory; GarbageCollectionSizes memory_cpp; - double collection_rate_in_percent; - double collection_rate_cpp_in_percent; - double efficiency_in_bytes_per_us; - double efficiency_cpp_in_bytes_per_us; - double main_thread_efficiency_in_bytes_per_us; - double main_thread_efficiency_cpp_in_bytes_per_us; + double collection_rate_in_percent = -1.0; + double collection_rate_cpp_in_percent = -1.0; + double efficiency_in_bytes_per_us = -1.0; + double efficiency_cpp_in_bytes_per_us = -1.0; + double main_thread_efficiency_in_bytes_per_us = -1.0; + double main_thread_efficiency_cpp_in_bytes_per_us = -1.0; }; struct GarbageCollectionFullMainThreadIncrementalMark { diff --git a/deps/v8/include/v8-object.h b/deps/v8/include/v8-object.h index 114e452a380083..6716162df10d75 100644 --- a/deps/v8/include/v8-object.h +++ b/deps/v8/include/v8-object.h @@ -598,6 +598,11 @@ class V8_EXPORT Object : public Value { Local CreationContext(); MaybeLocal GetCreationContext(); + /** + * Shortcut for GetCreationContext().ToLocalChecked(). + **/ + Local GetCreationContextChecked(); + /** Same as above, but works for Persistents */ V8_DEPRECATE_SOON( "Use MaybeLocal GetCreationContext(const " diff --git a/deps/v8/include/v8-platform.h b/deps/v8/include/v8-platform.h index e60e1757b63941..234582f0f6aff2 100644 --- a/deps/v8/include/v8-platform.h +++ b/deps/v8/include/v8-platform.h @@ -444,13 +444,7 @@ class PageAllocator { * zero-initialized again. The memory must have been previously allocated by a * call to AllocatePages. Returns true on success, false otherwise. */ -#ifdef V8_VIRTUAL_MEMORY_CAGE - // Implementing this API is required when the virtual memory cage is enabled. virtual bool DecommitPages(void* address, size_t size) = 0; -#else - // Otherwise, it is optional for now. - virtual bool DecommitPages(void* address, size_t size) { return false; } -#endif /** * INTERNAL ONLY: This interface has not been stabilised and may change diff --git a/deps/v8/include/v8-primitive.h b/deps/v8/include/v8-primitive.h index 59d959da0572e1..8a95c151bd1f62 100644 --- a/deps/v8/include/v8-primitive.h +++ b/deps/v8/include/v8-primitive.h @@ -575,7 +575,7 @@ class V8_EXPORT Symbol : public Name { /** * Returns the description string of the symbol, or undefined if none. */ - V8_DEPRECATE_SOON("Use Symbol::Description(isolate)") + V8_DEPRECATED("Use Symbol::Description(isolate)") Local Description() const; Local Description(Isolate* isolate) const; diff --git a/deps/v8/include/v8-profiler.h b/deps/v8/include/v8-profiler.h index f2354cac38e237..ccf15bab2a0cdd 100644 --- a/deps/v8/include/v8-profiler.h +++ b/deps/v8/include/v8-profiler.h @@ -603,7 +603,7 @@ class V8_EXPORT ActivityControl { * Notify about current progress. The activity can be stopped by * returning kAbort as the callback result. */ - virtual ControlOption ReportProgressValue(int done, int total) = 0; + virtual ControlOption ReportProgressValue(uint32_t done, uint32_t total) = 0; }; /** diff --git a/deps/v8/include/v8-script.h b/deps/v8/include/v8-script.h index 370903b20a60e4..bc68dd9ae92a40 100644 --- a/deps/v8/include/v8-script.h +++ b/deps/v8/include/v8-script.h @@ -173,14 +173,14 @@ class V8_EXPORT Module : public Data { /** * Returns the number of modules requested by this module. */ - V8_DEPRECATE_SOON("Use Module::GetModuleRequests() and FixedArray::Length().") + V8_DEPRECATED("Use Module::GetModuleRequests() and FixedArray::Length().") int GetModuleRequestsLength() const; /** * Returns the ith module specifier in this module. * i must be < GetModuleRequestsLength() and >= 0. */ - V8_DEPRECATE_SOON( + V8_DEPRECATED( "Use Module::GetModuleRequests() and ModuleRequest::GetSpecifier().") Local GetModuleRequest(int i) const; @@ -188,7 +188,7 @@ class V8_EXPORT Module : public Data { * Returns the source location (line number and column number) of the ith * module specifier's first occurrence in this module. */ - V8_DEPRECATE_SOON( + V8_DEPRECATED( "Use Module::GetModuleRequests(), ModuleRequest::GetSourceOffset(), and " "Module::SourceOffsetToLocation().") Location GetModuleRequestLocation(int i) const; @@ -209,7 +209,7 @@ class V8_EXPORT Module : public Data { */ int GetIdentityHash() const; - using ResolveCallback = + using ResolveCallback V8_DEPRECATED("Use ResolveModuleCallback") = MaybeLocal (*)(Local context, Local specifier, Local referrer); using ResolveModuleCallback = MaybeLocal (*)( @@ -223,7 +223,7 @@ class V8_EXPORT Module : public Data { * instantiation. (In the case where the callback throws an exception, that * exception is propagated.) */ - V8_DEPRECATE_SOON( + V8_DEPRECATED( "Use the version of InstantiateModule that takes a ResolveModuleCallback " "parameter") V8_WARN_UNUSED_RESULT Maybe InstantiateModule(Local context, @@ -345,6 +345,12 @@ class V8_EXPORT Script { * Returns the corresponding context-unbound script. */ Local GetUnboundScript(); + + /** + * The name that was passed by the embedder as ResourceName to the + * ScriptOrigin. This can be either a v8::String or v8::Undefined. + */ + Local GetResourceName(); }; enum class ScriptType { kClassic, kModule }; @@ -465,21 +471,16 @@ class V8_EXPORT ScriptCompiler { virtual size_t GetMoreData(const uint8_t** src) = 0; /** - * V8 calls this method to set a 'bookmark' at the current position in - * the source stream, for the purpose of (maybe) later calling - * ResetToBookmark. If ResetToBookmark is called later, then subsequent - * calls to GetMoreData should return the same data as they did when - * SetBookmark was called earlier. - * - * The embedder may return 'false' to indicate it cannot provide this - * functionality. + * [DEPRECATED]: No longer used, will be removed soon. */ - virtual bool SetBookmark(); + V8_DEPRECATED("Not used") + virtual bool SetBookmark() { return false; } /** - * V8 calls this to return to a previously set bookmark. + * [DEPRECATED]: No longer used, will be removed soon. */ - virtual void ResetToBookmark(); + V8_DEPRECATED("Not used") + virtual void ResetToBookmark() {} }; /** @@ -687,6 +688,7 @@ class V8_EXPORT ScriptCompiler { * It is possible to specify multiple context extensions (obj in the above * example). */ + V8_DEPRECATE_SOON("Use CompileFunction") static V8_WARN_UNUSED_RESULT MaybeLocal CompileFunctionInContext( Local context, Source* source, size_t arguments_count, Local arguments[], size_t context_extension_count, @@ -694,6 +696,12 @@ class V8_EXPORT ScriptCompiler { CompileOptions options = kNoCompileOptions, NoCacheReason no_cache_reason = kNoCacheNoReason, Local* script_or_module_out = nullptr); + static V8_WARN_UNUSED_RESULT MaybeLocal CompileFunction( + Local context, Source* source, size_t arguments_count = 0, + Local arguments[] = nullptr, size_t context_extension_count = 0, + Local context_extensions[] = nullptr, + CompileOptions options = kNoCompileOptions, + NoCacheReason no_cache_reason = kNoCacheNoReason); /** * Creates and returns code cache for the specified unbound_script. @@ -712,7 +720,7 @@ class V8_EXPORT ScriptCompiler { /** * Creates and returns code cache for the specified function that was - * previously produced by CompileFunctionInContext. + * previously produced by CompileFunction. * This will return nullptr if the script cannot be serialized. The * CachedData returned by this function should be owned by the caller. */ @@ -722,6 +730,13 @@ class V8_EXPORT ScriptCompiler { static V8_WARN_UNUSED_RESULT MaybeLocal CompileUnboundInternal( Isolate* isolate, Source* source, CompileOptions options, NoCacheReason no_cache_reason); + + static V8_WARN_UNUSED_RESULT MaybeLocal CompileFunctionInternal( + Local context, Source* source, size_t arguments_count, + Local arguments[], size_t context_extension_count, + Local context_extensions[], CompileOptions options, + NoCacheReason no_cache_reason, + Local* script_or_module_out); }; ScriptCompiler::Source::Source(Local string, const ScriptOrigin& origin, diff --git a/deps/v8/include/v8-traced-handle.h b/deps/v8/include/v8-traced-handle.h index 15c9693ecbb967..7db34a970c8d35 100644 --- a/deps/v8/include/v8-traced-handle.h +++ b/deps/v8/include/v8-traced-handle.h @@ -26,13 +26,20 @@ namespace v8 { class Value; namespace internal { + class BasicTracedReferenceExtractor; -} // namespace internal -namespace api_internal { +enum class GlobalHandleDestructionMode { kWithDestructor, kWithoutDestructor }; + +enum class GlobalHandleStoreMode { + kInitializingStore, + kAssigningStore, +}; + V8_EXPORT internal::Address* GlobalizeTracedReference( internal::Isolate* isolate, internal::Address* handle, - internal::Address* slot, bool has_destructor); + internal::Address* slot, GlobalHandleDestructionMode destruction_mode, + GlobalHandleStoreMode store_mode); V8_EXPORT void MoveTracedGlobalReference(internal::Address** from, internal::Address** to); V8_EXPORT void CopyTracedGlobalReference(const internal::Address* const* from, @@ -41,7 +48,8 @@ V8_EXPORT void DisposeTracedGlobal(internal::Address* global_handle); V8_EXPORT void SetFinalizationCallbackTraced( internal::Address* location, void* parameter, WeakCallbackInfo::Callback callback); -} // namespace api_internal + +} // namespace internal /** * Deprecated. Use |TracedReference| instead. @@ -164,15 +172,15 @@ class BasicTracedReference : public TracedReferenceBase { } private: - enum DestructionMode { kWithDestructor, kWithoutDestructor }; - /** * An empty BasicTracedReference without storage cell. */ BasicTracedReference() = default; - V8_INLINE static internal::Address* New(Isolate* isolate, T* that, void* slot, - DestructionMode destruction_mode); + V8_INLINE static internal::Address* New( + Isolate* isolate, T* that, void* slot, + internal::GlobalHandleDestructionMode destruction_mode, + internal::GlobalHandleStoreMode store_mode); friend class EmbedderHeapTracer; template @@ -215,15 +223,17 @@ class TracedGlobal : public BasicTracedReference { */ template TracedGlobal(Isolate* isolate, Local that) : BasicTracedReference() { - this->val_ = this->New(isolate, that.val_, &this->val_, - BasicTracedReference::kWithDestructor); + this->val_ = + this->New(isolate, that.val_, &this->val_, + internal::GlobalHandleDestructionMode::kWithDestructor, + internal::GlobalHandleStoreMode::kInitializingStore); static_assert(std::is_base_of::value, "type check"); } /** * Move constructor initializing TracedGlobal from an existing one. */ - V8_INLINE TracedGlobal(TracedGlobal&& other) { + V8_INLINE TracedGlobal(TracedGlobal&& other) noexcept { // Forward to operator=. *this = std::move(other); } @@ -232,7 +242,7 @@ class TracedGlobal : public BasicTracedReference { * Move constructor initializing TracedGlobal from an existing one. */ template - V8_INLINE TracedGlobal(TracedGlobal&& other) { + V8_INLINE TracedGlobal(TracedGlobal&& other) noexcept { // Forward to operator=. *this = std::move(other); } @@ -257,13 +267,13 @@ class TracedGlobal : public BasicTracedReference { /** * Move assignment operator initializing TracedGlobal from an existing one. */ - V8_INLINE TracedGlobal& operator=(TracedGlobal&& rhs); + V8_INLINE TracedGlobal& operator=(TracedGlobal&& rhs) noexcept; /** * Move assignment operator initializing TracedGlobal from an existing one. */ template - V8_INLINE TracedGlobal& operator=(TracedGlobal&& rhs); + V8_INLINE TracedGlobal& operator=(TracedGlobal&& rhs) noexcept; /** * Copy assignment operator initializing TracedGlobal from an existing one. @@ -338,8 +348,10 @@ class TracedReference : public BasicTracedReference { */ template TracedReference(Isolate* isolate, Local that) : BasicTracedReference() { - this->val_ = this->New(isolate, that.val_, &this->val_, - BasicTracedReference::kWithoutDestructor); + this->val_ = + this->New(isolate, that.val_, &this->val_, + internal::GlobalHandleDestructionMode::kWithoutDestructor, + internal::GlobalHandleStoreMode::kInitializingStore); static_assert(std::is_base_of::value, "type check"); } @@ -347,7 +359,7 @@ class TracedReference : public BasicTracedReference { * Move constructor initializing TracedReference from an * existing one. */ - V8_INLINE TracedReference(TracedReference&& other) { + V8_INLINE TracedReference(TracedReference&& other) noexcept { // Forward to operator=. *this = std::move(other); } @@ -357,7 +369,7 @@ class TracedReference : public BasicTracedReference { * existing one. */ template - V8_INLINE TracedReference(TracedReference&& other) { + V8_INLINE TracedReference(TracedReference&& other) noexcept { // Forward to operator=. *this = std::move(other); } @@ -384,13 +396,13 @@ class TracedReference : public BasicTracedReference { /** * Move assignment operator initializing TracedGlobal from an existing one. */ - V8_INLINE TracedReference& operator=(TracedReference&& rhs); + V8_INLINE TracedReference& operator=(TracedReference&& rhs) noexcept; /** * Move assignment operator initializing TracedGlobal from an existing one. */ template - V8_INLINE TracedReference& operator=(TracedReference&& rhs); + V8_INLINE TracedReference& operator=(TracedReference&& rhs) noexcept; /** * Copy assignment operator initializing TracedGlobal from an existing one. @@ -420,18 +432,19 @@ class TracedReference : public BasicTracedReference { // --- Implementation --- template internal::Address* BasicTracedReference::New( - Isolate* isolate, T* that, void* slot, DestructionMode destruction_mode) { + Isolate* isolate, T* that, void* slot, + internal::GlobalHandleDestructionMode destruction_mode, + internal::GlobalHandleStoreMode store_mode) { if (that == nullptr) return nullptr; internal::Address* p = reinterpret_cast(that); - return api_internal::GlobalizeTracedReference( + return internal::GlobalizeTracedReference( reinterpret_cast(isolate), p, - reinterpret_cast(slot), - destruction_mode == kWithDestructor); + reinterpret_cast(slot), destruction_mode, store_mode); } void TracedReferenceBase::Reset() { if (IsEmpty()) return; - api_internal::DisposeTracedGlobal(reinterpret_cast(val_)); + internal::DisposeTracedGlobal(reinterpret_cast(val_)); SetSlotThreadSafe(nullptr); } @@ -484,12 +497,13 @@ void TracedGlobal::Reset(Isolate* isolate, const Local& other) { Reset(); if (other.IsEmpty()) return; this->val_ = this->New(isolate, other.val_, &this->val_, - BasicTracedReference::kWithDestructor); + internal::GlobalHandleDestructionMode::kWithDestructor, + internal::GlobalHandleStoreMode::kAssigningStore); } template template -TracedGlobal& TracedGlobal::operator=(TracedGlobal&& rhs) { +TracedGlobal& TracedGlobal::operator=(TracedGlobal&& rhs) noexcept { static_assert(std::is_base_of::value, "type check"); *this = std::move(rhs.template As()); return *this; @@ -504,9 +518,9 @@ TracedGlobal& TracedGlobal::operator=(const TracedGlobal& rhs) { } template -TracedGlobal& TracedGlobal::operator=(TracedGlobal&& rhs) { +TracedGlobal& TracedGlobal::operator=(TracedGlobal&& rhs) noexcept { if (this != &rhs) { - api_internal::MoveTracedGlobalReference( + internal::MoveTracedGlobalReference( reinterpret_cast(&rhs.val_), reinterpret_cast(&this->val_)); } @@ -518,7 +532,7 @@ TracedGlobal& TracedGlobal::operator=(const TracedGlobal& rhs) { if (this != &rhs) { this->Reset(); if (rhs.val_ != nullptr) { - api_internal::CopyTracedGlobalReference( + internal::CopyTracedGlobalReference( reinterpret_cast(&rhs.val_), reinterpret_cast(&this->val_)); } @@ -534,12 +548,14 @@ void TracedReference::Reset(Isolate* isolate, const Local& other) { if (other.IsEmpty()) return; this->SetSlotThreadSafe( this->New(isolate, other.val_, &this->val_, - BasicTracedReference::kWithoutDestructor)); + internal::GlobalHandleDestructionMode::kWithoutDestructor, + internal::GlobalHandleStoreMode::kAssigningStore)); } template template -TracedReference& TracedReference::operator=(TracedReference&& rhs) { +TracedReference& TracedReference::operator=( + TracedReference&& rhs) noexcept { static_assert(std::is_base_of::value, "type check"); *this = std::move(rhs.template As()); return *this; @@ -555,9 +571,10 @@ TracedReference& TracedReference::operator=( } template -TracedReference& TracedReference::operator=(TracedReference&& rhs) { +TracedReference& TracedReference::operator=( + TracedReference&& rhs) noexcept { if (this != &rhs) { - api_internal::MoveTracedGlobalReference( + internal::MoveTracedGlobalReference( reinterpret_cast(&rhs.val_), reinterpret_cast(&this->val_)); } @@ -569,7 +586,7 @@ TracedReference& TracedReference::operator=(const TracedReference& rhs) { if (this != &rhs) { this->Reset(); if (rhs.val_ != nullptr) { - api_internal::CopyTracedGlobalReference( + internal::CopyTracedGlobalReference( reinterpret_cast(&rhs.val_), reinterpret_cast(&this->val_)); } @@ -596,7 +613,7 @@ uint16_t TracedReferenceBase::WrapperClassId() const { template void TracedGlobal::SetFinalizationCallback( void* parameter, typename WeakCallbackInfo::Callback callback) { - api_internal::SetFinalizationCallbackTraced( + internal::SetFinalizationCallbackTraced( reinterpret_cast(this->val_), parameter, callback); } diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h index 207f81723bfd14..24da2489f7f3f3 100644 --- a/deps/v8/include/v8-version.h +++ b/deps/v8/include/v8-version.h @@ -9,9 +9,9 @@ // NOTE these macros are used by some of the tool scripts and the build // system so their names cannot be changed without changing the scripts. #define V8_MAJOR_VERSION 9 -#define V8_MINOR_VERSION 6 -#define V8_BUILD_NUMBER 180 -#define V8_PATCH_LEVEL 15 +#define V8_MINOR_VERSION 7 +#define V8_BUILD_NUMBER 106 +#define V8_PATCH_LEVEL 18 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) diff --git a/deps/v8/include/v8-wasm.h b/deps/v8/include/v8-wasm.h index af47a3eab37167..612ed2fae40c89 100644 --- a/deps/v8/include/v8-wasm.h +++ b/deps/v8/include/v8-wasm.h @@ -151,8 +151,12 @@ class V8_EXPORT WasmStreaming final { * {Finish} should be called after all received bytes where passed to * {OnBytesReceived} to tell V8 that there will be no more bytes. {Finish} * does not have to be called after {Abort} has been called already. + * If {can_use_compiled_module} is true and {SetCompiledModuleBytes} was + * previously called, the compiled module bytes can be used. + * If {can_use_compiled_module} is false, the compiled module bytes previously + * set by {SetCompiledModuleBytes} should not be used. */ - void Finish(); + void Finish(bool can_use_compiled_module = true); /** * Abort streaming compilation. If {exception} has a value, then the promise @@ -167,6 +171,8 @@ class V8_EXPORT WasmStreaming final { * can be used, false otherwise. The buffer passed via {bytes} and {size} * is owned by the caller. If {SetCompiledModuleBytes} returns true, the * buffer must remain valid until either {Finish} or {Abort} completes. + * The compiled module bytes should not be used until {Finish(true)} is + * called, because they can be invalidated later by {Finish(false)}. */ bool SetCompiledModuleBytes(const uint8_t* bytes, size_t size); diff --git a/deps/v8/include/v8config.h b/deps/v8/include/v8config.h index b010b65dfd648b..ecb992822cff3e 100644 --- a/deps/v8/include/v8config.h +++ b/deps/v8/include/v8config.h @@ -553,6 +553,19 @@ V8 shared library set USING_V8_SHARED. #endif // V8_OS_WIN +// The virtual memory cage is available (i.e. defined) when pointer compression +// is enabled, but it is only used when V8_VIRTUAL_MEMORY_CAGE is enabled as +// well. This allows better test coverage of the cage. +#if defined(V8_COMPRESS_POINTERS) +#define V8_VIRTUAL_MEMORY_CAGE_IS_AVAILABLE +#endif + +// CagedPointers are currently only used if the heap sandbox is enabled. +// In the future, they will be enabled when the virtual memory cage is enabled. +#if defined(V8_HEAP_SANDBOX) +#define V8_CAGED_POINTERS +#endif + // clang-format on #undef V8_HAS_CPP_ATTRIBUTE diff --git a/deps/v8/infra/mb/mb_config.pyl b/deps/v8/infra/mb/mb_config.pyl index e3afd9787b9e93..049a2e2786aba3 100644 --- a/deps/v8/infra/mb/mb_config.pyl +++ b/deps/v8/infra/mb/mb_config.pyl @@ -18,6 +18,7 @@ 'arm64.debug': 'default_debug_arm64', 'arm64.optdebug': 'default_optdebug_arm64', 'arm64.release': 'default_release_arm64', + 'arm64.release.sample': 'release_arm64_sample', 'ia32.debug': 'default_debug_x86', 'ia32.optdebug': 'default_optdebug_x86', 'ia32.release': 'default_release_x86', @@ -181,8 +182,8 @@ 'V8 Android Arm - builder': 'release_android_arm', 'V8 Linux - arm - sim': 'release_simulate_arm', 'V8 Linux - arm - sim - debug': 'debug_simulate_arm', - 'V8 Linux - arm - sim - lite': 'release_simulate_arm_lite', - 'V8 Linux - arm - sim - lite - debug': 'debug_simulate_arm_lite', + 'V8 Linux - arm - sim - lite - builder': 'release_simulate_arm_lite', + 'V8 Linux - arm - sim - lite - debug builder': 'debug_simulate_arm_lite', # Arm64. 'V8 Android Arm64 - builder': 'release_android_arm64', 'V8 Android Arm64 - debug builder': 'debug_android_arm64', @@ -281,6 +282,7 @@ 'v8_mac64_compile_full_dbg_ng': 'full_debug_x64', 'v8_mac64_asan_rel_ng': 'release_x64_asan_no_lsan', 'v8_linux_arm_rel_ng': 'release_simulate_arm_trybot', + 'v8_linux_arm_lite_compile_dbg': 'debug_simulate_arm_lite', 'v8_linux_arm_lite_rel_ng': 'release_simulate_arm_lite_trybot', 'v8_linux_arm_dbg_ng': 'debug_simulate_arm', 'v8_linux_arm_armv8a_rel': 'release_simulate_arm_trybot', @@ -320,6 +322,8 @@ 'debug', 'simulate_arm64', 'v8_enable_slow_dchecks'], 'default_release_arm64': [ 'release', 'simulate_arm64'], + 'release_arm64_sample': [ + 'release', 'arm64', 'sample'], 'default_debug_mipsel': [ 'debug', 'simulate_mipsel', 'v8_enable_slow_dchecks', 'v8_full_debug'], 'default_optdebug_mipsel': [ diff --git a/deps/v8/infra/testing/builders.pyl b/deps/v8/infra/testing/builders.pyl index f17f651212954b..56e238f4d0b533 100644 --- a/deps/v8/infra/testing/builders.pyl +++ b/deps/v8/infra/testing/builders.pyl @@ -282,7 +282,7 @@ 'tests': [ {'name': 'mjsunit_sp_frame_access'}, {'name': 'mozilla'}, - {'name': 'test262', 'variant': 'default'}, + {'name': 'test262', 'variant': 'default', 'shards': 2}, {'name': 'v8testing', 'shards': 7}, {'name': 'v8testing', 'variant': 'extra', 'shards': 7}, ], @@ -1743,7 +1743,7 @@ 'tests': [ {'name': 'mjsunit_sp_frame_access'}, {'name': 'mozilla'}, - {'name': 'test262', 'variant': 'default'}, + {'name': 'test262', 'variant': 'default', 'shards': 2}, {'name': 'v8testing', 'shards': 6}, {'name': 'v8testing', 'variant': 'extra', 'shards': 3}, # Armv8-a. @@ -1791,7 +1791,7 @@ 'tests': [ {'name': 'mjsunit_sp_frame_access', 'shards': 6}, {'name': 'mozilla', 'shards': 6}, - {'name': 'test262', 'variant': 'default'}, + {'name': 'test262', 'variant': 'default', 'shards': 2}, {'name': 'v8testing', 'shards': 10}, {'name': 'v8testing', 'variant': 'extra', 'shards': 10}, # Armv8-a. diff --git a/deps/v8/src/api/api-inl.h b/deps/v8/src/api/api-inl.h index c033c3d2e8f947..20a3d910cea486 100644 --- a/deps/v8/src/api/api-inl.h +++ b/deps/v8/src/api/api-inl.h @@ -111,7 +111,7 @@ MAKE_TO_LOCAL(CallableToLocal, JSReceiver, Function) MAKE_TO_LOCAL(ToLocalPrimitive, Object, Primitive) MAKE_TO_LOCAL(FixedArrayToLocal, FixedArray, FixedArray) MAKE_TO_LOCAL(PrimitiveArrayToLocal, FixedArray, PrimitiveArray) -MAKE_TO_LOCAL(ScriptOrModuleToLocal, Script, ScriptOrModule) +MAKE_TO_LOCAL(ToLocal, ScriptOrModule, ScriptOrModule) #undef MAKE_TO_LOCAL_TYPED_ARRAY #undef MAKE_TO_LOCAL diff --git a/deps/v8/src/api/api.cc b/deps/v8/src/api/api.cc index f79d0482ed3f1b..3cc4f2b61e0692 100644 --- a/deps/v8/src/api/api.cc +++ b/deps/v8/src/api/api.cc @@ -40,7 +40,6 @@ #include "src/codegen/cpu-features.h" #include "src/codegen/script-details.h" #include "src/common/assert-scope.h" -#include "src/common/external-pointer.h" #include "src/common/globals.h" #include "src/compiler-dispatcher/lazy-compile-dispatcher.h" #include "src/date/date.h" @@ -64,7 +63,6 @@ #include "src/init/icu_util.h" #include "src/init/startup-data-util.h" #include "src/init/v8.h" -#include "src/init/vm-cage.h" #include "src/json/json-parser.h" #include "src/json/json-stringifier.h" #include "src/logging/counters-scopes.h" @@ -110,6 +108,8 @@ #include "src/profiler/tick-sample.h" #include "src/regexp/regexp-utils.h" #include "src/runtime/runtime.h" +#include "src/security/external-pointer.h" +#include "src/security/vm-cage.h" #include "src/snapshot/code-serializer.h" #include "src/snapshot/embedded/embedded-data.h" #include "src/snapshot/snapshot.h" @@ -120,6 +120,7 @@ #include "src/tracing/trace-event.h" #include "src/utils/detachable-vector.h" #include "src/utils/version.h" +#include "src/web-snapshot/web-snapshot.h" #if V8_ENABLE_WEBASSEMBLY #include "src/trap-handler/trap-handler.h" @@ -382,11 +383,11 @@ void V8::SetSnapshotDataBlob(StartupData* snapshot_blob) { namespace { -#ifdef V8_VIRTUAL_MEMORY_CAGE -// ArrayBufferAllocator to use when the virtual memory cage is enabled, in which -// case all ArrayBuffer backing stores need to be allocated inside the data -// cage. Note, the current implementation is extremely inefficient as it uses -// the BoundedPageAllocator. In the future, we'll need a proper allocator +#ifdef V8_HEAP_SANDBOX +// ArrayBufferAllocator to use when the heap sandbox is enabled, in which case +// all ArrayBuffer backing stores need to be allocated inside the virtual +// memory cage. Note, the current implementation is extremely inefficient as it +// uses the BoundedPageAllocator. In the future, we'll need a proper allocator // implementation. class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { public: @@ -454,7 +455,7 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { return new_data; } }; -#endif // V8_VIRTUAL_MEMORY_CAGE +#endif // V8_HEAP_SANDBOX struct SnapshotCreatorData { explicit SnapshotCreatorData(Isolate* isolate) @@ -829,17 +830,19 @@ void ResourceConstraints::ConfigureDefaults(uint64_t physical_memory, } } -namespace api_internal { -i::Address* GlobalizeTracedReference(i::Isolate* isolate, i::Address* obj, - internal::Address* slot, - bool has_destructor) { +namespace internal { + +i::Address* GlobalizeTracedReference( + i::Isolate* isolate, i::Address* obj, internal::Address* slot, + GlobalHandleDestructionMode destruction_mode, + GlobalHandleStoreMode store_mode) { LOG_API(isolate, TracedGlobal, New); #ifdef DEBUG Utils::ApiCheck((slot != nullptr), "v8::GlobalizeTracedReference", "the address slot must be not null"); #endif - i::Handle result = - isolate->global_handles()->CreateTraced(*obj, slot, has_destructor); + i::Handle result = isolate->global_handles()->CreateTraced( + *obj, slot, destruction_mode, store_mode); #ifdef VERIFY_HEAP if (i::FLAG_verify_heap) { i::Object(*obj).ObjectVerify(isolate); @@ -848,6 +851,30 @@ i::Address* GlobalizeTracedReference(i::Isolate* isolate, i::Address* obj, return result.location(); } +void MoveTracedGlobalReference(internal::Address** from, + internal::Address** to) { + GlobalHandles::MoveTracedGlobal(from, to); +} + +void CopyTracedGlobalReference(const internal::Address* const* from, + internal::Address** to) { + GlobalHandles::CopyTracedGlobal(from, to); +} + +void DisposeTracedGlobal(internal::Address* location) { + GlobalHandles::DestroyTraced(location); +} + +void SetFinalizationCallbackTraced(internal::Address* location, void* parameter, + WeakCallbackInfo::Callback callback) { + GlobalHandles::SetFinalizationCallbackForTraced(location, parameter, + callback); +} + +} // namespace internal + +namespace api_internal { + i::Address* GlobalizeReference(i::Isolate* isolate, i::Address* obj) { LOG_API(isolate, Persistent, New); i::Handle result = isolate->global_handles()->Create(*obj); @@ -899,26 +926,6 @@ Value* Eternalize(Isolate* v8_isolate, Value* value) { isolate->eternal_handles()->Get(index).location()); } -void MoveTracedGlobalReference(internal::Address** from, - internal::Address** to) { - i::GlobalHandles::MoveTracedGlobal(from, to); -} - -void CopyTracedGlobalReference(const internal::Address* const* from, - internal::Address** to) { - i::GlobalHandles::CopyTracedGlobal(from, to); -} - -void DisposeTracedGlobal(internal::Address* location) { - i::GlobalHandles::DestroyTraced(location); -} - -void SetFinalizationCallbackTraced(internal::Address* location, void* parameter, - WeakCallbackInfo::Callback callback) { - i::GlobalHandles::SetFinalizationCallbackForTraced(location, parameter, - callback); -} - void FromJustIsNothing() { Utils::ApiCheck(false, "v8::FromJust", "Maybe value is Nothing."); } @@ -1962,10 +1969,6 @@ ScriptCompiler::CachedData::~CachedData() { } } -bool ScriptCompiler::ExternalSourceStream::SetBookmark() { return false; } - -void ScriptCompiler::ExternalSourceStream::ResetToBookmark() { UNREACHABLE(); } - ScriptCompiler::StreamedSource::StreamedSource( std::unique_ptr stream, Encoding encoding) : impl_(new i::ScriptStreamingData(std::move(stream), encoding)) {} @@ -2048,7 +2051,8 @@ Local UnboundScript::GetSourceMappingURL() { } MaybeLocal Script::Run(Local context) { - auto isolate = reinterpret_cast(context->GetIsolate()); + auto v8_isolate = context->GetIsolate(); + auto isolate = reinterpret_cast(v8_isolate); TRACE_EVENT_CALL_STATS_SCOPED(isolate, "v8", "V8.Execute"); ENTER_V8(isolate, context, Script, Run, MaybeLocal(), InternalEscapableScope); @@ -2078,10 +2082,26 @@ MaybeLocal Script::Run(Local context) { } } + if (V8_UNLIKELY(i::FLAG_experimental_web_snapshots)) { + i::Handle maybe_script = + handle(fun->shared().script(), isolate); + if (maybe_script->IsScript() && + i::Script::cast(*maybe_script).type() == i::Script::TYPE_WEB_SNAPSHOT) { + i::WebSnapshotDeserializer deserializer(v8_isolate); + deserializer.UseWebSnapshot(i::Handle::cast(maybe_script)); + RETURN_ON_FAILED_EXECUTION(Value); + Local result = v8::Undefined(v8_isolate); + RETURN_ESCAPED(result); + } + } + i::Handle receiver = isolate->global_proxy(); + i::Handle host_defined_options( + i::Script::cast(fun->shared().script()).host_defined_options(), isolate); Local result; has_pending_exception = !ToLocal( - i::Execution::Call(isolate, fun, receiver, 0, nullptr), &result); + i::Execution::CallScript(isolate, fun, receiver, host_defined_options), + &result); if (i::FLAG_script_delay_fraction > 0.0) { delta = v8::base::TimeDelta::FromMillisecondsD( @@ -2097,28 +2117,39 @@ MaybeLocal Script::Run(Local context) { } Local ScriptOrModule::GetResourceName() { - i::Handle obj = Utils::OpenHandle(this); - i::Isolate* isolate = obj->GetIsolate(); + i::Handle obj = Utils::OpenHandle(this); + i::Isolate* isolate = i::GetIsolateFromWritableObject(*obj); ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate); - i::Handle val(obj->name(), isolate); + i::Handle val(obj->resource_name(), isolate); return ToApiHandle(val); } Local ScriptOrModule::GetHostDefinedOptions() { - i::Handle obj = Utils::OpenHandle(this); - i::Isolate* isolate = obj->GetIsolate(); + i::Handle obj = Utils::OpenHandle(this); + i::Isolate* isolate = i::GetIsolateFromWritableObject(*obj); ENTER_V8_NO_SCRIPT_NO_EXCEPTION(isolate); i::Handle val(obj->host_defined_options(), isolate); return ToApiHandle(val); } Local Script::GetUnboundScript() { - i::Handle obj = Utils::OpenHandle(this); - i::SharedFunctionInfo sfi = i::JSFunction::cast(*obj).shared(); + i::DisallowGarbageCollection no_gc; + i::Handle obj = Utils::OpenHandle(this); + i::SharedFunctionInfo sfi = (*obj).shared(); i::Isolate* isolate = sfi.GetIsolate(); return ToApiHandle(i::handle(sfi, isolate)); } +Local Script::GetResourceName() { + i::DisallowGarbageCollection no_gc; + i::Handle func = Utils::OpenHandle(this); + i::SharedFunctionInfo sfi = (*func).shared(); + i::Isolate* isolate = func->GetIsolate(); + CHECK(sfi.script().IsScript()); + return ToApiHandle( + i::handle(i::Script::cast(sfi.script()).name(), isolate)); +} + // static Local PrimitiveArray::New(Isolate* v8_isolate, int length) { i::Isolate* isolate = reinterpret_cast(v8_isolate); @@ -2580,9 +2611,32 @@ bool IsIdentifier(i::Isolate* isolate, i::Handle string) { } return true; } -} // anonymous namespace +} // namespace + +// static +V8_WARN_UNUSED_RESULT MaybeLocal ScriptCompiler::CompileFunction( + Local context, Source* source, size_t arguments_count, + Local arguments[], size_t context_extension_count, + Local context_extensions[], CompileOptions options, + NoCacheReason no_cache_reason) { + return CompileFunctionInternal(context, source, arguments_count, arguments, + context_extension_count, context_extensions, + options, no_cache_reason, nullptr); +} +// static MaybeLocal ScriptCompiler::CompileFunctionInContext( + Local context, Source* source, size_t arguments_count, + Local arguments[], size_t context_extension_count, + Local context_extensions[], CompileOptions options, + NoCacheReason no_cache_reason, + Local* script_or_module_out) { + return CompileFunctionInternal( + context, source, arguments_count, arguments, context_extension_count, + context_extensions, options, no_cache_reason, script_or_module_out); +} + +MaybeLocal ScriptCompiler::CompileFunctionInternal( Local v8_context, Source* source, size_t arguments_count, Local arguments[], size_t context_extension_count, Local context_extensions[], CompileOptions options, @@ -2591,7 +2645,7 @@ MaybeLocal ScriptCompiler::CompileFunctionInContext( Local result; { - PREPARE_FOR_EXECUTION(v8_context, ScriptCompiler, CompileFunctionInContext, + PREPARE_FOR_EXECUTION(v8_context, ScriptCompiler, CompileFunction, Function); TRACE_EVENT_CALL_STATS_SCOPED(isolate, "v8", "V8.ScriptCompiler"); @@ -2650,16 +2704,26 @@ MaybeLocal ScriptCompiler::CompileFunctionInContext( RETURN_ON_FAILED_EXECUTION(Function); result = handle_scope.Escape(Utils::CallableToLocal(scoped_result)); } - + // TODO(cbruni): remove script_or_module_out paramater if (script_or_module_out != nullptr) { i::Handle function = i::Handle::cast(Utils::OpenHandle(*result)); i::Isolate* isolate = function->GetIsolate(); i::Handle shared(function->shared(), isolate); i::Handle script(i::Script::cast(shared->script()), isolate); - *script_or_module_out = v8::Utils::ScriptOrModuleToLocal(script); + // TODO(cbruni, v8:12302): Avoid creating tempory ScriptOrModule objects. + auto script_or_module = i::Handle::cast( + isolate->factory()->NewStruct(i::SCRIPT_OR_MODULE_TYPE)); + script_or_module->set_resource_name(script->name()); + script_or_module->set_host_defined_options(script->host_defined_options()); +#ifdef V8_SCRIPTORMODULE_LEGACY_LIFETIME + i::Handle list = + i::handle(script->script_or_modules(), isolate); + list = i::ArrayList::Add(isolate, list, script_or_module); + script->set_script_or_modules(*list); +#endif // V8_SCRIPTORMODULE_LEGACY_LIFETIME + *script_or_module_out = v8::Utils::ToLocal(script_or_module); } - return result; } @@ -5000,10 +5064,17 @@ MaybeLocal v8::Object::GetCreationContext() { if (self->GetCreationContext().ToHandle(&context)) { return Utils::ToLocal(context); } - return MaybeLocal(); } +Local v8::Object::GetCreationContextChecked() { + Local context; + Utils::ApiCheck(GetCreationContext().ToLocal(&context), + "v8::Object::GetCreationContextChecked", + "No creation context available"); + return context; +} + int v8::Object::GetIdentityHash() { i::DisallowGarbageCollection no_gc; auto self = Utils::OpenHandle(this); @@ -5257,6 +5328,14 @@ int Function::GetScriptColumnNumber() const { return kLineOffsetNotFound; } +MaybeLocal Function::GetUnboundScript() const { + i::Handle self = Utils::OpenHandle(this); + if (!self->IsJSFunction()) return MaybeLocal(); + i::SharedFunctionInfo sfi = i::JSFunction::cast(*self).shared(); + i::Isolate* isolate = sfi.GetIsolate(); + return ToApiHandle(i::handle(sfi, isolate)); +} + int Function::ScriptId() const { i::JSReceiver self = *Utils::OpenHandle(this); if (!self.IsJSFunction()) return v8::UnboundScript::kNoScriptId; @@ -6089,7 +6168,9 @@ const char* v8::V8::GetVersion() { return i::Version::GetVersion(); } #ifdef V8_VIRTUAL_MEMORY_CAGE PageAllocator* v8::V8::GetVirtualMemoryCagePageAllocator() { - CHECK(i::GetProcessWideVirtualMemoryCage()->is_initialized()); + Utils::ApiCheck(i::GetProcessWideVirtualMemoryCage()->is_initialized(), + "v8::V8::GetVirtualMemoryCagePageAllocator", + "The virtual memory cage must be initialized first."); return i::GetProcessWideVirtualMemoryCage()->page_allocator(); } @@ -6100,6 +6181,17 @@ size_t v8::V8::GetVirtualMemoryCageSizeInBytes() { return i::GetProcessWideVirtualMemoryCage()->size(); } } + +bool v8::V8::IsUsingSecureVirtualMemoryCage() { + Utils::ApiCheck(i::GetProcessWideVirtualMemoryCage()->is_initialized(), + "v8::V8::IsUsingSecureVirtualMemoryCage", + "The virtual memory cage must be initialized first."); + // TODO(saelo) For now, we only treat a fake cage as insecure. Once we use + // caged pointers that assume that the cage has a constant size, we'll also + // treat cages smaller than the default size as insecure because caged + // pointers can then access memory outside of them. + return !i::GetProcessWideVirtualMemoryCage()->is_fake_cage(); +} #endif void V8::GetSharedMemoryStatistics(SharedMemoryStatistics* statistics) { @@ -8395,6 +8487,10 @@ Isolate* Isolate::TryGetCurrent() { return reinterpret_cast(isolate); } +bool Isolate::IsCurrent() const { + return reinterpret_cast(this)->IsCurrent(); +} + // static Isolate* Isolate::Allocate() { return reinterpret_cast(i::Isolate::New()); @@ -8445,6 +8541,12 @@ void Isolate::Initialize(Isolate* isolate, reinterpret_cast(params.constraints.stack_limit()); i_isolate->stack_guard()->SetStackLimit(limit); } + + if (params.experimental_attach_to_shared_isolate != nullptr) { + i_isolate->set_shared_isolate(reinterpret_cast( + params.experimental_attach_to_shared_isolate)); + } + // TODO(jochen): Once we got rid of Isolate::Current(), we can remove this. Isolate::Scope isolate_scope(isolate); if (i_isolate->snapshot_blob() == nullptr) { @@ -9117,7 +9219,7 @@ JSEntryStubs Isolate::GetJSEntryStubs() { {i::Builtin::kJSRunMicrotasksEntry, &entry_stubs.js_run_microtasks_entry_stub}}}; for (auto& pair : stubs) { - i::Code js_entry = isolate->heap()->builtin(pair.first); + i::Code js_entry = isolate->builtins()->code(pair.first); pair.second->code.start = reinterpret_cast(js_entry.InstructionStart()); pair.second->code.length_in_bytes = js_entry.InstructionSize(); @@ -10192,7 +10294,7 @@ void WasmStreaming::OnBytesReceived(const uint8_t* bytes, size_t size) { UNREACHABLE(); } -void WasmStreaming::Finish() { UNREACHABLE(); } +void WasmStreaming::Finish(bool can_use_compiled_module) { UNREACHABLE(); } void WasmStreaming::Abort(MaybeLocal exception) { UNREACHABLE(); } @@ -10439,9 +10541,10 @@ bool ConvertDouble(double d) { } // namespace internal template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), int32_t>( - Local src, int32_t* dst, uint32_t max_length) { +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + int32_t>(Local src, int32_t* dst, + uint32_t max_length) { return CopyAndConvertArrayToCppBuffer< CTypeInfo(CTypeInfo::Type::kInt32, CTypeInfo::SequenceType::kIsSequence) .GetId(), @@ -10449,9 +10552,10 @@ bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< } template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), uint32_t>( - Local src, uint32_t* dst, uint32_t max_length) { +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + uint32_t>(Local src, uint32_t* dst, + uint32_t max_length) { return CopyAndConvertArrayToCppBuffer< CTypeInfo(CTypeInfo::Type::kUint32, CTypeInfo::SequenceType::kIsSequence) .GetId(), @@ -10459,9 +10563,10 @@ bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< } template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), float>( - Local src, float* dst, uint32_t max_length) { +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + float>(Local src, float* dst, + uint32_t max_length) { return CopyAndConvertArrayToCppBuffer< CTypeInfo(CTypeInfo::Type::kFloat32, CTypeInfo::SequenceType::kIsSequence) .GetId(), @@ -10469,9 +10574,10 @@ bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< } template <> -bool V8_EXPORT V8_WARN_UNUSED_RESULT TryToCopyAndConvertArrayToCppBuffer< - internal::CTypeInfoBuilder::Build().GetId(), double>( - Local src, double* dst, uint32_t max_length) { +bool V8_EXPORT V8_WARN_UNUSED_RESULT +TryToCopyAndConvertArrayToCppBuffer::Build().GetId(), + double>(Local src, double* dst, + uint32_t max_length) { return CopyAndConvertArrayToCppBuffer< CTypeInfo(CTypeInfo::Type::kFloat64, CTypeInfo::SequenceType::kIsSequence) .GetId(), diff --git a/deps/v8/src/api/api.h b/deps/v8/src/api/api.h index c255dad1e64131..48f549bbb0d513 100644 --- a/deps/v8/src/api/api.h +++ b/deps/v8/src/api/api.h @@ -141,7 +141,7 @@ class RegisteredExtension { V(Primitive, Object) \ V(PrimitiveArray, FixedArray) \ V(BigInt, BigInt) \ - V(ScriptOrModule, Script) \ + V(ScriptOrModule, ScriptOrModule) \ V(FixedArray, FixedArray) \ V(ModuleRequest, ModuleRequest) \ IF_WASM(V, WasmMemoryObject, WasmMemoryObject) @@ -254,8 +254,8 @@ class Utils { v8::internal::Handle obj); static inline Local PrimitiveArrayToLocal( v8::internal::Handle obj); - static inline Local ScriptOrModuleToLocal( - v8::internal::Handle obj); + static inline Local ToLocal( + v8::internal::Handle obj); #define DECLARE_OPEN_HANDLE(From, To) \ static inline v8::internal::Handle OpenHandle( \ diff --git a/deps/v8/src/asmjs/asm-parser.cc b/deps/v8/src/asmjs/asm-parser.cc index b6743117fe2b94..c782bbaae7237c 100644 --- a/deps/v8/src/asmjs/asm-parser.cc +++ b/deps/v8/src/asmjs/asm-parser.cc @@ -398,12 +398,18 @@ void AsmJsParser::ValidateModuleParameters() { FAIL("Expected foreign parameter"); } foreign_name_ = Consume(); + if (stdlib_name_ == foreign_name_) { + FAIL("Duplicate parameter name"); + } if (!Peek(')')) { EXPECT_TOKEN(','); if (!scanner_.IsGlobal()) { FAIL("Expected heap parameter"); } heap_name_ = Consume(); + if (heap_name_ == stdlib_name_ || heap_name_ == foreign_name_) { + FAIL("Duplicate parameter name"); + } } } } diff --git a/deps/v8/src/ast/OWNERS b/deps/v8/src/ast/OWNERS index a0077986c61b1c..13586e139c7710 100644 --- a/deps/v8/src/ast/OWNERS +++ b/deps/v8/src/ast/OWNERS @@ -1,5 +1,4 @@ gsathya@chromium.org leszeks@chromium.org marja@chromium.org -neis@chromium.org verwaest@chromium.org diff --git a/deps/v8/src/ast/scopes.cc b/deps/v8/src/ast/scopes.cc index bf490a42bb97d6..c179776571c43b 100644 --- a/deps/v8/src/ast/scopes.cc +++ b/deps/v8/src/ast/scopes.cc @@ -679,6 +679,7 @@ void DeclarationScope::DeclareThis(AstValueFactory* ast_value_factory) { THIS_VARIABLE, derived_constructor ? kNeedsInitialization : kCreatedInitialized, kNotAssigned); + locals_.Add(receiver_); } void DeclarationScope::DeclareArguments(AstValueFactory* ast_value_factory) { @@ -2487,10 +2488,10 @@ void Scope::AllocateVariablesRecursively() { // Allocate variables for this scope. // Parameters must be allocated first, if any. if (scope->is_declaration_scope()) { + scope->AsDeclarationScope()->AllocateReceiver(); if (scope->is_function_scope()) { scope->AsDeclarationScope()->AllocateParameterLocals(); } - scope->AsDeclarationScope()->AllocateReceiver(); } scope->AllocateNonParameterLocalsAndDeclaredGlobals(); diff --git a/deps/v8/src/base/bounded-page-allocator.cc b/deps/v8/src/base/bounded-page-allocator.cc index e5f090682f47dd..d33857845a5c34 100644 --- a/deps/v8/src/base/bounded-page-allocator.cc +++ b/deps/v8/src/base/bounded-page-allocator.cc @@ -33,16 +33,25 @@ void* BoundedPageAllocator::AllocatePages(void* hint, size_t size, DCHECK(IsAligned(alignment, region_allocator_.page_size())); DCHECK(IsAligned(alignment, allocate_page_size_)); - Address address; - if (alignment <= allocate_page_size_) { - // TODO(ishell): Consider using randomized version here. - address = region_allocator_.AllocateRegion(size); - } else { - // Currently, this should only be necessary when V8_VIRTUAL_MEMORY_CAGE is - // enabled, in which case a bounded page allocator is used to allocate WASM - // memory buffers, which have a larger alignment. - address = region_allocator_.AllocateAlignedRegion(size, alignment); + Address address = RegionAllocator::kAllocationFailure; + + Address hint_address = reinterpret_cast
(hint); + if (hint_address && IsAligned(hint_address, alignment) && + region_allocator_.contains(hint_address, size)) { + if (region_allocator_.AllocateRegionAt(hint_address, size)) { + address = hint_address; + } + } + + if (address == RegionAllocator::kAllocationFailure) { + if (alignment <= allocate_page_size_) { + // TODO(ishell): Consider using randomized version here. + address = region_allocator_.AllocateRegion(size); + } else { + address = region_allocator_.AllocateAlignedRegion(size, alignment); + } } + if (address == RegionAllocator::kAllocationFailure) { return nullptr; } diff --git a/deps/v8/src/base/bounded-page-allocator.h b/deps/v8/src/base/bounded-page-allocator.h index a98a2299f8442a..07c5cda3070ed4 100644 --- a/deps/v8/src/base/bounded-page-allocator.h +++ b/deps/v8/src/base/bounded-page-allocator.h @@ -15,8 +15,7 @@ namespace base { // Defines the page initialization mode of a BoundedPageAllocator. enum class PageInitializationMode { // The contents of allocated pages must be zero initialized. This causes any - // committed pages to be decommitted during FreePages and ReleasePages. This - // requires the embedder to provide the PageAllocator::DecommitPages API. + // committed pages to be decommitted during FreePages and ReleasePages. kAllocatedPagesMustBeZeroInitialized, // Allocated pages do not have to be be zero initialized and can contain old // data. This is slightly faster as comitted pages are not decommitted diff --git a/deps/v8/src/base/cpu.cc b/deps/v8/src/base/cpu.cc index 9bfc2a55afdf50..ab263c7e7781d9 100644 --- a/deps/v8/src/base/cpu.cc +++ b/deps/v8/src/base/cpu.cc @@ -414,6 +414,7 @@ CPU::CPU() part_(0), icache_line_size_(kUnknownCacheLineSize), dcache_line_size_(kUnknownCacheLineSize), + num_virtual_address_bits_(kUnknownNumVirtualAddressBits), has_fpu_(false), has_cmov_(false), has_sahf_(false), @@ -547,6 +548,12 @@ CPU::CPU() has_non_stop_time_stamp_counter_ = (cpu_info[3] & (1 << 8)) != 0; } + const unsigned virtual_physical_address_bits = 0x80000008; + if (num_ext_ids >= virtual_physical_address_bits) { + __cpuid(cpu_info, virtual_physical_address_bits); + num_virtual_address_bits_ = (cpu_info[0] >> 8) & 0xff; + } + // This logic is replicated from cpu.cc present in chromium.src if (!has_non_stop_time_stamp_counter_ && is_running_in_vm_) { int cpu_info_hv[4] = {}; diff --git a/deps/v8/src/base/cpu.h b/deps/v8/src/base/cpu.h index 11615aca061824..9fcf90b3bcd845 100644 --- a/deps/v8/src/base/cpu.h +++ b/deps/v8/src/base/cpu.h @@ -105,6 +105,14 @@ class V8_BASE_EXPORT CPU final { return has_non_stop_time_stamp_counter_; } bool is_running_in_vm() const { return is_running_in_vm_; } + bool exposes_num_virtual_address_bits() const { + return num_virtual_address_bits_ != kUnknownNumVirtualAddressBits; + } + int num_virtual_address_bits() const { + DCHECK(exposes_num_virtual_address_bits()); + return num_virtual_address_bits_; + } + static const int kUnknownNumVirtualAddressBits = 0; // arm features bool has_idiva() const { return has_idiva_; } @@ -136,6 +144,7 @@ class V8_BASE_EXPORT CPU final { int part_; int icache_line_size_; int dcache_line_size_; + int num_virtual_address_bits_; bool has_fpu_; bool has_cmov_; bool has_sahf_; diff --git a/deps/v8/src/base/platform/platform-aix.cc b/deps/v8/src/base/platform/platform-aix.cc index e5a5305d483ee3..b27bfbc8bcf8d2 100644 --- a/deps/v8/src/base/platform/platform-aix.cc +++ b/deps/v8/src/base/platform/platform-aix.cc @@ -129,6 +129,12 @@ void OS::SignalCodeMovingGC() {} void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + // static Stack::StackSlot Stack::GetStackStart() { // pthread_getthrds_np creates 3 values: diff --git a/deps/v8/src/base/platform/platform-cygwin.cc b/deps/v8/src/base/platform/platform-cygwin.cc index b9da2f1cd592db..5aae01c9c41d81 100644 --- a/deps/v8/src/base/platform/platform-cygwin.cc +++ b/deps/v8/src/base/platform/platform-cygwin.cc @@ -271,5 +271,11 @@ void OS::SignalCodeMovingGC() { void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + } // namespace base } // namespace v8 diff --git a/deps/v8/src/base/platform/platform-freebsd.cc b/deps/v8/src/base/platform/platform-freebsd.cc index ac36b0527e7c3b..55d600283f6029 100644 --- a/deps/v8/src/base/platform/platform-freebsd.cc +++ b/deps/v8/src/base/platform/platform-freebsd.cc @@ -97,6 +97,12 @@ void OS::SignalCodeMovingGC() {} void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + // static Stack::StackSlot Stack::GetStackStart() { pthread_attr_t attr; diff --git a/deps/v8/src/base/platform/platform-fuchsia.cc b/deps/v8/src/base/platform/platform-fuchsia.cc index 11dba08d79f310..a0fd83e93974fc 100644 --- a/deps/v8/src/base/platform/platform-fuchsia.cc +++ b/deps/v8/src/base/platform/platform-fuchsia.cc @@ -17,7 +17,7 @@ namespace base { namespace { -uint32_t GetProtectionFromMemoryPermission(OS::MemoryPermission access) { +zx_vm_option_t GetProtectionFromMemoryPermission(OS::MemoryPermission access) { switch (access) { case OS::MemoryPermission::kNoAccess: case OS::MemoryPermission::kNoAccessWillJitLater: @@ -66,10 +66,24 @@ void* OS::Allocate(void* address, size_t size, size_t alignment, return nullptr; } + zx_vm_option_t options = GetProtectionFromMemoryPermission(access); + + uint64_t vmar_offset = 0; + if (address) { + vmar_offset = reinterpret_cast(address); + options |= ZX_VM_SPECIFIC; + } + zx_vaddr_t reservation; - uint32_t prot = GetProtectionFromMemoryPermission(access); - if (zx::vmar::root_self()->map(prot, 0, vmo, 0, request_size, &reservation) != - ZX_OK) { + zx_status_t status = zx::vmar::root_self()->map(options, vmar_offset, vmo, 0, + request_size, &reservation); + if (status != ZX_OK && address != nullptr) { + // Retry without the hint, if we supplied one. + options &= ~(ZX_VM_SPECIFIC); + status = zx::vmar::root_self()->map(options, 0, vmo, 0, request_size, + &reservation); + } + if (status != ZX_OK) { return nullptr; } @@ -142,10 +156,7 @@ bool OS::DecommitPages(void* address, size_t size) { } // static -bool OS::HasLazyCommits() { - // TODO(scottmg): Port, https://crbug.com/731217. - return false; -} +bool OS::HasLazyCommits() { return true; } std::vector OS::GetSharedLibraryAddresses() { UNREACHABLE(); // TODO(scottmg): Port, https://crbug.com/731217. @@ -177,5 +188,11 @@ int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + } // namespace base } // namespace v8 diff --git a/deps/v8/src/base/platform/platform-linux.cc b/deps/v8/src/base/platform/platform-linux.cc index 5b619fb007380d..3ab88060f55e6e 100644 --- a/deps/v8/src/base/platform/platform-linux.cc +++ b/deps/v8/src/base/platform/platform-linux.cc @@ -155,5 +155,56 @@ void* OS::RemapShared(void* old_address, void* new_address, size_t size) { return result; } +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + std::vector result = {}; + // This function assumes that the layout of the file is as follows: + // hex_start_addr-hex_end_addr rwxp [binary_file_name] + // and the lines are arranged in increasing order of address. + // If we encounter an unexpected situation we abort scanning further entries. + FILE* fp = fopen("/proc/self/maps", "r"); + if (fp == nullptr) return {}; + + // Search for the gaps between existing virtual memory (vm) areas. If the gap + // contains enough space for the requested-size range that is within the + // boundary, push the overlapped memory range to the vector. + uintptr_t gap_start = 0, gap_end = 0; + // This loop will terminate once the scanning hits an EOF or reaches the gap + // at the higher address to the end of boundary. + uintptr_t vm_start; + uintptr_t vm_end; + while (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &vm_start, &vm_end) == 2 && + gap_start < boundary_end) { + // Visit the gap at the lower address to this vm. + gap_end = vm_start; + // Skip the gaps at the lower address to the start of boundary. + if (gap_end > boundary_start) { + // The available area is the overlap of the gap and boundary. Push + // the overlapped memory range to the vector if there is enough space. + const uintptr_t overlap_start = + RoundUp(std::max(gap_start, boundary_start), alignment); + const uintptr_t overlap_end = + RoundDown(std::min(gap_end, boundary_end), alignment); + if (overlap_start < overlap_end && + overlap_end - overlap_start >= minimum_size) { + result.push_back({overlap_start, overlap_end}); + } + } + // Continue to visit the next gap. + gap_start = vm_end; + + int c; + // Skip characters until we reach the end of the line or EOF. + do { + c = getc(fp); + } while ((c != EOF) && (c != '\n')); + if (c == EOF) break; + } + + fclose(fp); + return result; +} + } // namespace base } // namespace v8 diff --git a/deps/v8/src/base/platform/platform-macos.cc b/deps/v8/src/base/platform/platform-macos.cc index 1b1f4c4ce8a2c3..d1675bdc44d9c8 100644 --- a/deps/v8/src/base/platform/platform-macos.cc +++ b/deps/v8/src/base/platform/platform-macos.cc @@ -93,6 +93,12 @@ void OS::AdjustSchedulingParams() { #endif } +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + // static Stack::StackSlot Stack::GetStackStart() { return pthread_get_stackaddr_np(pthread_self()); diff --git a/deps/v8/src/base/platform/platform-openbsd.cc b/deps/v8/src/base/platform/platform-openbsd.cc index e4a3cb6f35f0ae..f15800aa878419 100644 --- a/deps/v8/src/base/platform/platform-openbsd.cc +++ b/deps/v8/src/base/platform/platform-openbsd.cc @@ -122,5 +122,11 @@ void OS::SignalCodeMovingGC() { void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + } // namespace base } // namespace v8 diff --git a/deps/v8/src/base/platform/platform-qnx.cc b/deps/v8/src/base/platform/platform-qnx.cc index f1ba3c6d45e3ca..ccd270cd7fdf8a 100644 --- a/deps/v8/src/base/platform/platform-qnx.cc +++ b/deps/v8/src/base/platform/platform-qnx.cc @@ -148,5 +148,11 @@ void OS::SignalCodeMovingGC() {} void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + } // namespace base } // namespace v8 diff --git a/deps/v8/src/base/platform/platform-solaris.cc b/deps/v8/src/base/platform/platform-solaris.cc index 90f1617dde1576..8f5dd0c9f12284 100644 --- a/deps/v8/src/base/platform/platform-solaris.cc +++ b/deps/v8/src/base/platform/platform-solaris.cc @@ -65,6 +65,12 @@ void OS::SignalCodeMovingGC() {} void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + // static Stack::StackSlot Stack::GetStackStart() { pthread_attr_t attr; diff --git a/deps/v8/src/base/platform/platform-starboard.cc b/deps/v8/src/base/platform/platform-starboard.cc index f631d800de8d67..a688c70692a706 100644 --- a/deps/v8/src/base/platform/platform-starboard.cc +++ b/deps/v8/src/base/platform/platform-starboard.cc @@ -474,6 +474,12 @@ void OS::SignalCodeMovingGC() { SB_NOTIMPLEMENTED(); } void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + return {}; +} + bool OS::DiscardSystemPages(void* address, size_t size) { // Starboard API does not support this function yet. return true; diff --git a/deps/v8/src/base/platform/platform-win32.cc b/deps/v8/src/base/platform/platform-win32.cc index 6b5c5df4963e60..919c3ef4df8956 100644 --- a/deps/v8/src/base/platform/platform-win32.cc +++ b/deps/v8/src/base/platform/platform-win32.cc @@ -1440,6 +1440,44 @@ void Thread::SetThreadLocal(LocalStorageKey key, void* value) { void OS::AdjustSchedulingParams() {} +std::vector OS::GetFreeMemoryRangesWithin( + OS::Address boundary_start, OS::Address boundary_end, size_t minimum_size, + size_t alignment) { + std::vector result = {}; + + // Search for the virtual memory (vm) ranges within the boundary. + // If a range is free and larger than {minimum_size}, then push it to the + // returned vector. + uintptr_t vm_start = RoundUp(boundary_start, alignment); + uintptr_t vm_end = 0; + MEMORY_BASIC_INFORMATION mi; + // This loop will terminate once the scanning reaches the higher address + // to the end of boundary or the function VirtualQuery fails. + while (vm_start < boundary_end && + VirtualQuery(reinterpret_cast(vm_start), &mi, sizeof(mi)) != + 0) { + vm_start = reinterpret_cast(mi.BaseAddress); + vm_end = vm_start + mi.RegionSize; + if (mi.State == MEM_FREE) { + // The available area is the overlap of the virtual memory range and + // boundary. Push the overlapped memory range to the vector if there is + // enough space. + const uintptr_t overlap_start = + RoundUp(std::max(vm_start, boundary_start), alignment); + const uintptr_t overlap_end = + RoundDown(std::min(vm_end, boundary_end), alignment); + if (overlap_start < overlap_end && + overlap_end - overlap_start >= minimum_size) { + result.push_back({overlap_start, overlap_end}); + } + } + // Continue to visit the next virtual memory range. + vm_start = vm_end; + } + + return result; +} + // static Stack::StackSlot Stack::GetStackStart() { #if defined(V8_TARGET_ARCH_X64) diff --git a/deps/v8/src/base/platform/platform.h b/deps/v8/src/base/platform/platform.h index 2e7ad32974feb4..bc1edc9c03e1ec 100644 --- a/deps/v8/src/base/platform/platform.h +++ b/deps/v8/src/base/platform/platform.h @@ -274,6 +274,19 @@ class V8_BASE_EXPORT OS { static void AdjustSchedulingParams(); + using Address = uintptr_t; + + struct MemoryRange { + uintptr_t start = 0; + uintptr_t end = 0; + }; + + // Find gaps between existing virtual memory ranges that have enough space + // to place a region with minimum_size within (boundary_start, boundary_end) + static std::vector GetFreeMemoryRangesWithin( + Address boundary_start, Address boundary_end, size_t minimum_size, + size_t alignment); + [[noreturn]] static void ExitProcess(int exit_code); private: diff --git a/deps/v8/src/base/platform/time.cc b/deps/v8/src/base/platform/time.cc index 9979f33fcecdd1..af214f0a6da308 100644 --- a/deps/v8/src/base/platform/time.cc +++ b/deps/v8/src/base/platform/time.cc @@ -24,6 +24,8 @@ // This has to come after windows.h. #include // For timeGetTime(). +#include + #include "src/base/lazy-instance.h" #include "src/base/win32-headers.h" #endif @@ -619,15 +621,10 @@ using TimeTicksNowFunction = decltype(&TimeTicks::Now); TimeTicksNowFunction g_time_ticks_now_function = &InitialTimeTicksNowFunction; int64_t g_qpc_ticks_per_second = 0; -// As of January 2015, use of is forbidden in Chromium code. This is -// what std::atomic_thread_fence does on Windows on all Intel architectures when -// the memory_order argument is anything but std::memory_order_seq_cst: -#define ATOMIC_THREAD_FENCE(memory_order) _ReadWriteBarrier(); - TimeDelta QPCValueToTimeDelta(LONGLONG qpc_value) { // Ensure that the assignment to |g_qpc_ticks_per_second|, made in // InitializeNowFunctionPointer(), has happened by this point. - ATOMIC_THREAD_FENCE(memory_order_acquire); + std::atomic_thread_fence(std::memory_order_acquire); DCHECK_GT(g_qpc_ticks_per_second, 0); @@ -682,7 +679,7 @@ void InitializeTimeTicksNowFunctionPointer() { // assignment to |g_qpc_ticks_per_second| happens before the function pointers // are changed. g_qpc_ticks_per_second = ticks_per_sec.QuadPart; - ATOMIC_THREAD_FENCE(memory_order_release); + std::atomic_thread_fence(std::memory_order_release); g_time_ticks_now_function = now_function; } @@ -691,8 +688,6 @@ TimeTicks InitialTimeTicksNowFunction() { return g_time_ticks_now_function(); } -#undef ATOMIC_THREAD_FENCE - } // namespace // static diff --git a/deps/v8/src/base/sanitizer/lsan-page-allocator.h b/deps/v8/src/base/sanitizer/lsan-page-allocator.h index 4c8a1f04a0dc93..6a3b28c8ea7dd5 100644 --- a/deps/v8/src/base/sanitizer/lsan-page-allocator.h +++ b/deps/v8/src/base/sanitizer/lsan-page-allocator.h @@ -49,6 +49,10 @@ class V8_BASE_EXPORT LsanPageAllocator : public v8::PageAllocator { return page_allocator_->SetPermissions(address, size, access); } + bool DecommitPages(void* address, size_t size) override { + return page_allocator_->DecommitPages(address, size); + } + private: v8::PageAllocator* const page_allocator_; const size_t allocate_page_size_; diff --git a/deps/v8/src/base/utils/random-number-generator.cc b/deps/v8/src/base/utils/random-number-generator.cc index bae2da1bf9e9c8..f6f9dcfef2a43a 100644 --- a/deps/v8/src/base/utils/random-number-generator.cc +++ b/deps/v8/src/base/utils/random-number-generator.cc @@ -54,6 +54,7 @@ RandomNumberGenerator::RandomNumberGenerator() { DCHECK_EQ(0, result); result = rand_s(&second_half); DCHECK_EQ(0, result); + USE(result); SetSeed((static_cast(first_half) << 32) + second_half); #elif V8_OS_MACOSX || V8_OS_FREEBSD || V8_OS_OPENBSD // Despite its prefix suggests it is not RC4 algorithm anymore. diff --git a/deps/v8/src/baseline/baseline-assembler-inl.h b/deps/v8/src/baseline/baseline-assembler-inl.h index 583db7e6798bf7..5a81dd55b0d2d3 100644 --- a/deps/v8/src/baseline/baseline-assembler-inl.h +++ b/deps/v8/src/baseline/baseline-assembler-inl.h @@ -28,6 +28,10 @@ #include "src/baseline/ia32/baseline-assembler-ia32-inl.h" #elif V8_TARGET_ARCH_ARM #include "src/baseline/arm/baseline-assembler-arm-inl.h" +#elif V8_TARGET_ARCH_PPC64 +#include "src/baseline/ppc/baseline-assembler-ppc-inl.h" +#elif V8_TARGET_ARCH_S390X +#include "src/baseline/s390/baseline-assembler-s390-inl.h" #elif V8_TARGET_ARCH_RISCV64 #include "src/baseline/riscv64/baseline-assembler-riscv64-inl.h" #elif V8_TARGET_ARCH_MIPS64 diff --git a/deps/v8/src/baseline/baseline-batch-compiler.cc b/deps/v8/src/baseline/baseline-batch-compiler.cc index 249702bd623e80..a34764744bc16e 100644 --- a/deps/v8/src/baseline/baseline-batch-compiler.cc +++ b/deps/v8/src/baseline/baseline-batch-compiler.cc @@ -15,19 +15,222 @@ #include "src/handles/global-handles-inl.h" #include "src/heap/factory-inl.h" #include "src/heap/heap-inl.h" +#include "src/heap/local-heap-inl.h" +#include "src/heap/parked-scope.h" #include "src/objects/fixed-array-inl.h" #include "src/objects/js-function-inl.h" +#include "src/utils/locked-queue-inl.h" namespace v8 { namespace internal { namespace baseline { +class BaselineCompilerTask { + public: + BaselineCompilerTask(Isolate* isolate, PersistentHandles* handles, + SharedFunctionInfo sfi) + : shared_function_info_(handles->NewHandle(sfi)), + bytecode_(handles->NewHandle(sfi.GetBytecodeArray(isolate))) { + DCHECK(sfi.is_compiled()); + } + + BaselineCompilerTask(const BaselineCompilerTask&) V8_NOEXCEPT = delete; + BaselineCompilerTask(BaselineCompilerTask&&) V8_NOEXCEPT = default; + + // Executed in the background thread. + void Compile(LocalIsolate* local_isolate) { + BaselineCompiler compiler(local_isolate, shared_function_info_, bytecode_); + compiler.GenerateCode(); + maybe_code_ = local_isolate->heap()->NewPersistentMaybeHandle( + compiler.Build(local_isolate)); + Handle code; + if (maybe_code_.ToHandle(&code)) { + local_isolate->heap()->RegisterCodeObject(code); + } + } + + // Executed in the main thread. + void Install(Isolate* isolate) { + Handle code; + if (!maybe_code_.ToHandle(&code)) return; + if (FLAG_print_code) { + code->Print(); + } + shared_function_info_->set_baseline_code(*code, kReleaseStore); + if (V8_LIKELY(FLAG_use_osr)) { + // Arm back edges for OSR + shared_function_info_->GetBytecodeArray(isolate) + .set_osr_loop_nesting_level(AbstractCode::kMaxLoopNestingMarker); + } + if (FLAG_trace_baseline_concurrent_compilation) { + CodeTracer::Scope scope(isolate->GetCodeTracer()); + std::stringstream ss; + ss << "[Concurrent Sparkplug Off Thread] Function "; + shared_function_info_->ShortPrint(ss); + ss << " installed\n"; + OFStream os(scope.file()); + os << ss.str(); + } + } + + private: + Handle shared_function_info_; + Handle bytecode_; + MaybeHandle maybe_code_; +}; + +class BaselineBatchCompilerJob { + public: + BaselineBatchCompilerJob(Isolate* isolate, Handle task_queue, + int batch_size) + : isolate_for_local_isolate_(isolate) { + handles_ = isolate->NewPersistentHandles(); + tasks_.reserve(batch_size); + for (int i = 0; i < batch_size; i++) { + MaybeObject maybe_sfi = task_queue->Get(i); + // TODO(victorgomes): Do I need to clear the value? + task_queue->Set(i, HeapObjectReference::ClearedValue(isolate)); + HeapObject obj; + // Skip functions where weak reference is no longer valid. + if (!maybe_sfi.GetHeapObjectIfWeak(&obj)) continue; + // Skip functions where the bytecode has been flushed. + SharedFunctionInfo shared = SharedFunctionInfo::cast(obj); + if (ShouldSkipFunction(shared)) continue; + tasks_.emplace_back(isolate, handles_.get(), shared); + } + if (FLAG_trace_baseline_concurrent_compilation) { + CodeTracer::Scope scope(isolate->GetCodeTracer()); + PrintF(scope.file(), "[Concurrent Sparkplug] compiling %zu functions\n", + tasks_.size()); + } + } + + bool ShouldSkipFunction(SharedFunctionInfo shared) { + return !shared.is_compiled() || shared.HasBaselineCode() || + !CanCompileWithBaseline(isolate_for_local_isolate_, shared); + } + + // Executed in the background thread. + void Compile() { +#ifdef V8_RUNTIME_CALL_STATS + WorkerThreadRuntimeCallStatsScope runtime_call_stats_scope( + isolate_for_local_isolate_->counters() + ->worker_thread_runtime_call_stats()); + LocalIsolate local_isolate(isolate_for_local_isolate_, + ThreadKind::kBackground, + runtime_call_stats_scope.Get()); +#else + LocalIsolate local_isolate(isolate_for_local_isolate_, + ThreadKind::kBackground); +#endif + local_isolate.heap()->AttachPersistentHandles(std::move(handles_)); + UnparkedScope unparked_scope(&local_isolate); + LocalHandleScope handle_scope(&local_isolate); + + for (auto& task : tasks_) { + task.Compile(&local_isolate); + } + + // Get the handle back since we'd need them to install the code later. + handles_ = local_isolate.heap()->DetachPersistentHandles(); + } + + // Executed in the main thread. + void Install(Isolate* isolate) { + for (auto& task : tasks_) { + task.Install(isolate); + } + } + + private: + Isolate* isolate_for_local_isolate_; + std::vector tasks_; + std::unique_ptr handles_; +}; + +class ConcurrentBaselineCompiler { + public: + class JobDispatcher : public v8::JobTask { + public: + JobDispatcher( + Isolate* isolate, + LockedQueue>* incoming_queue, + LockedQueue>* outcoming_queue) + : isolate_(isolate), + incoming_queue_(incoming_queue), + outgoing_queue_(outcoming_queue) {} + + void Run(JobDelegate* delegate) override { + while (!incoming_queue_->IsEmpty() && !delegate->ShouldYield()) { + std::unique_ptr job; + incoming_queue_->Dequeue(&job); + job->Compile(); + outgoing_queue_->Enqueue(std::move(job)); + } + isolate_->stack_guard()->RequestInstallBaselineCode(); + } + + size_t GetMaxConcurrency(size_t worker_count) const override { + return incoming_queue_->size(); + } + + private: + Isolate* isolate_; + LockedQueue>* incoming_queue_; + LockedQueue>* outgoing_queue_; + }; + + explicit ConcurrentBaselineCompiler(Isolate* isolate) : isolate_(isolate) { + if (FLAG_concurrent_sparkplug) { + job_handle_ = V8::GetCurrentPlatform()->PostJob( + TaskPriority::kUserVisible, + std::make_unique(isolate_, &incoming_queue_, + &outgoing_queue_)); + } + } + + ~ConcurrentBaselineCompiler() { + if (job_handle_ && job_handle_->IsValid()) { + // Wait for the job handle to complete, so that we know the queue + // pointers are safe. + job_handle_->Cancel(); + } + } + + void CompileBatch(Handle task_queue, int batch_size) { + DCHECK(FLAG_concurrent_sparkplug); + RCS_SCOPE(isolate_, RuntimeCallCounterId::kCompileBaseline); + incoming_queue_.Enqueue(std::make_unique( + isolate_, task_queue, batch_size)); + job_handle_->NotifyConcurrencyIncrease(); + } + + void InstallBatch() { + while (!outgoing_queue_.IsEmpty()) { + std::unique_ptr job; + outgoing_queue_.Dequeue(&job); + job->Install(isolate_); + } + } + + private: + Isolate* isolate_; + std::unique_ptr job_handle_ = nullptr; + LockedQueue> incoming_queue_; + LockedQueue> outgoing_queue_; +}; + BaselineBatchCompiler::BaselineBatchCompiler(Isolate* isolate) : isolate_(isolate), compilation_queue_(Handle::null()), last_index_(0), estimated_instruction_size_(0), - enabled_(true) {} + enabled_(true) { + if (FLAG_concurrent_sparkplug) { + concurrent_compiler_ = + std::make_unique(isolate_); + } +} BaselineBatchCompiler::~BaselineBatchCompiler() { if (!compilation_queue_.is_null()) { @@ -36,19 +239,20 @@ BaselineBatchCompiler::~BaselineBatchCompiler() { } } -bool BaselineBatchCompiler::EnqueueFunction(Handle function) { +void BaselineBatchCompiler::EnqueueFunction(Handle function) { Handle shared(function->shared(), isolate_); // Early return if the function is compiled with baseline already or it is not // suitable for baseline compilation. - if (shared->HasBaselineCode()) return true; - if (!CanCompileWithBaseline(isolate_, *shared)) return false; + if (shared->HasBaselineCode()) return; + if (!CanCompileWithBaseline(isolate_, *shared)) return; // Immediately compile the function if batch compilation is disabled. if (!is_enabled()) { IsCompiledScope is_compiled_scope( function->shared().is_compiled_scope(isolate_)); - return Compiler::CompileBaseline( - isolate_, function, Compiler::CLEAR_EXCEPTION, &is_compiled_scope); + Compiler::CompileBaseline(isolate_, function, Compiler::CLEAR_EXCEPTION, + &is_compiled_scope); + return; } int estimated_size; @@ -76,12 +280,26 @@ bool BaselineBatchCompiler::EnqueueFunction(Handle function) { "functions\n", (last_index_ + 1)); } - CompileBatch(function); - return true; + if (FLAG_concurrent_sparkplug) { + Enqueue(shared); + concurrent_compiler_->CompileBatch(compilation_queue_, last_index_); + ClearBatch(); + } else { + CompileBatch(function); + } + } else { + Enqueue(shared); } +} + +void BaselineBatchCompiler::Enqueue(Handle shared) { EnsureQueueCapacity(); compilation_queue_->Set(last_index_++, HeapObjectReference::Weak(*shared)); - return false; +} + +void BaselineBatchCompiler::InstallBatch() { + DCHECK(FLAG_concurrent_sparkplug); + concurrent_compiler_->InstallBatch(); } void BaselineBatchCompiler::EnsureQueueCapacity() { @@ -150,6 +368,8 @@ namespace v8 { namespace internal { namespace baseline { +class ConcurrentBaselineCompiler {}; + BaselineBatchCompiler::BaselineBatchCompiler(Isolate* isolate) : isolate_(isolate), compilation_queue_(Handle::null()), @@ -164,6 +384,8 @@ BaselineBatchCompiler::~BaselineBatchCompiler() { } } +void BaselineBatchCompiler::InstallBatch() { UNREACHABLE(); } + } // namespace baseline } // namespace internal } // namespace v8 diff --git a/deps/v8/src/baseline/baseline-batch-compiler.h b/deps/v8/src/baseline/baseline-batch-compiler.h index 3643064f10be0e..a85a42f9a0c752 100644 --- a/deps/v8/src/baseline/baseline-batch-compiler.h +++ b/deps/v8/src/baseline/baseline-batch-compiler.h @@ -5,6 +5,8 @@ #ifndef V8_BASELINE_BASELINE_BATCH_COMPILER_H_ #define V8_BASELINE_BASELINE_BATCH_COMPILER_H_ +#include + #include "src/handles/global-handles.h" #include "src/handles/handles.h" @@ -12,6 +14,9 @@ namespace v8 { namespace internal { namespace baseline { +class BaselineCompiler; +class ConcurrentBaselineCompiler; + class BaselineBatchCompiler { public: static const int kInitialQueueSize = 32; @@ -19,23 +24,26 @@ class BaselineBatchCompiler { explicit BaselineBatchCompiler(Isolate* isolate); ~BaselineBatchCompiler(); // Enqueues SharedFunctionInfo of |function| for compilation. - // Returns true if the function is compiled (either it was compiled already, - // or the current batch including the function was just compiled). - bool EnqueueFunction(Handle function); + void EnqueueFunction(Handle function); void set_enabled(bool enabled) { enabled_ = enabled; } bool is_enabled() { return enabled_; } + void InstallBatch(); + private: // Ensure there is enough space in the compilation queue to enqueue another // function, growing the queue if necessary. void EnsureQueueCapacity(); + // Enqueues SharedFunctionInfo. + void Enqueue(Handle shared); + // Returns true if the current batch exceeds the threshold and should be // compiled. bool ShouldCompileBatch() const; - // Compiles the current batch and returns the number of functions compiled. + // Compiles the current batch. void CompileBatch(Handle function); // Resets the current batch. @@ -60,6 +68,9 @@ class BaselineBatchCompiler { // Flag indicating whether batch compilation is enabled. // Batch compilation can be dynamically disabled e.g. when creating snapshots. bool enabled_; + + // Handle to the background compilation jobs. + std::unique_ptr concurrent_compiler_; }; } // namespace baseline diff --git a/deps/v8/src/baseline/baseline-compiler.cc b/deps/v8/src/baseline/baseline-compiler.cc index 63d684e733e4d4..071e46268efb8c 100644 --- a/deps/v8/src/baseline/baseline-compiler.cc +++ b/deps/v8/src/baseline/baseline-compiler.cc @@ -24,6 +24,7 @@ #include "src/codegen/macro-assembler-inl.h" #include "src/common/globals.h" #include "src/execution/frame-constants.h" +#include "src/heap/local-factory-inl.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/interpreter/bytecode-flags.h" #include "src/logging/runtime-call-stats-scope.h" @@ -42,6 +43,10 @@ #include "src/baseline/ia32/baseline-compiler-ia32-inl.h" #elif V8_TARGET_ARCH_ARM #include "src/baseline/arm/baseline-compiler-arm-inl.h" +#elif V8_TARGET_ARCH_PPC64 +#include "src/baseline/ppc/baseline-compiler-ppc-inl.h" +#elif V8_TARGET_ARCH_S390X +#include "src/baseline/s390/baseline-compiler-s390-inl.h" #elif V8_TARGET_ARCH_RISCV64 #include "src/baseline/riscv64/baseline-compiler-riscv64-inl.h" #elif V8_TARGET_ARCH_MIPS64 @@ -243,43 +248,33 @@ namespace { // than pre-allocating a large enough buffer. #ifdef V8_TARGET_ARCH_IA32 const int kAverageBytecodeToInstructionRatio = 5; -const int kMinimumEstimatedInstructionSize = 200; #else const int kAverageBytecodeToInstructionRatio = 7; -const int kMinimumEstimatedInstructionSize = 300; #endif std::unique_ptr AllocateBuffer( - Isolate* isolate, Handle bytecodes, - BaselineCompiler::CodeLocation code_location) { + Handle bytecodes) { int estimated_size; { DisallowHeapAllocation no_gc; estimated_size = BaselineCompiler::EstimateInstructionSize(*bytecodes); } - Heap* heap = isolate->heap(); - // TODO(victorgomes): When compiling on heap, we allocate whatever is left - // over on the page with a minimum of the estimated_size. - if (code_location == BaselineCompiler::kOnHeap && - Code::SizeFor(estimated_size) < - heap->MaxRegularHeapObjectSize(AllocationType::kCode)) { - return NewOnHeapAssemblerBuffer(isolate, estimated_size); - } return NewAssemblerBuffer(RoundUp(estimated_size, 4 * KB)); } } // namespace BaselineCompiler::BaselineCompiler( - Isolate* isolate, Handle shared_function_info, - Handle bytecode, CodeLocation code_location) - : local_isolate_(isolate->AsLocalIsolate()), - stats_(isolate->counters()->runtime_call_stats()), + LocalIsolate* local_isolate, + Handle shared_function_info, + Handle bytecode) + : local_isolate_(local_isolate), + stats_(local_isolate->runtime_call_stats()), shared_function_info_(shared_function_info), bytecode_(bytecode), - masm_(isolate, CodeObjectRequired::kNo, - AllocateBuffer(isolate, bytecode, code_location)), + masm_(local_isolate->GetMainThreadIsolateUnsafe(), + CodeObjectRequired::kNo, AllocateBuffer(bytecode)), basm_(&masm_), iterator_(bytecode_), - zone_(isolate->allocator(), ZONE_NAME), + zone_(local_isolate->allocator(), ZONE_NAME), labels_(zone_.NewArray(bytecode_->length())) { MemsetPointer(labels_, nullptr, bytecode_->length()); @@ -293,9 +288,15 @@ BaselineCompiler::BaselineCompiler( #define __ basm_. +#define RCS_BASELINE_SCOPE(rcs) \ + RCS_SCOPE(stats_, \ + local_isolate_->is_main_thread() \ + ? RuntimeCallCounterId::kCompileBaseline##rcs \ + : RuntimeCallCounterId::kCompileBackgroundBaseline##rcs) + void BaselineCompiler::GenerateCode() { { - RCS_SCOPE(stats_, RuntimeCallCounterId::kCompileBaselinePreVisit); + RCS_BASELINE_SCOPE(PreVisit); for (; !iterator_.done(); iterator_.Advance()) { PreVisitSingleBytecode(); } @@ -307,7 +308,7 @@ void BaselineCompiler::GenerateCode() { __ CodeEntry(); { - RCS_SCOPE(stats_, RuntimeCallCounterId::kCompileBaselineVisit); + RCS_BASELINE_SCOPE(Visit); Prologue(); AddPosition(); for (; !iterator_.done(); iterator_.Advance()) { @@ -317,18 +318,19 @@ void BaselineCompiler::GenerateCode() { } } -MaybeHandle BaselineCompiler::Build(Isolate* isolate) { +MaybeHandle BaselineCompiler::Build(LocalIsolate* local_isolate) { CodeDesc desc; - __ GetCode(isolate, &desc); + __ GetCode(local_isolate->GetMainThreadIsolateUnsafe(), &desc); + // Allocate the bytecode offset table. Handle bytecode_offset_table = - bytecode_offset_table_builder_.ToBytecodeOffsetTable(isolate); + bytecode_offset_table_builder_.ToBytecodeOffsetTable(local_isolate); - Factory::CodeBuilder code_builder(isolate, desc, CodeKind::BASELINE); + Factory::CodeBuilder code_builder(local_isolate, desc, CodeKind::BASELINE); code_builder.set_bytecode_offset_table(bytecode_offset_table); if (shared_function_info_->HasInterpreterData()) { code_builder.set_interpreter_data( - handle(shared_function_info_->interpreter_data(), isolate)); + handle(shared_function_info_->interpreter_data(), local_isolate)); } else { code_builder.set_interpreter_data(bytecode_); } @@ -336,8 +338,7 @@ MaybeHandle BaselineCompiler::Build(Isolate* isolate) { } int BaselineCompiler::EstimateInstructionSize(BytecodeArray bytecode) { - return bytecode.length() * kAverageBytecodeToInstructionRatio + - kMinimumEstimatedInstructionSize; + return bytecode.length() * kAverageBytecodeToInstructionRatio; } interpreter::Register BaselineCompiler::RegisterOperand(int operand_index) { @@ -929,10 +930,11 @@ void BaselineCompiler::VisitStaNamedProperty() { } void BaselineCompiler::VisitStaNamedOwnProperty() { - // TODO(v8:11429,ishell): Currently we use StoreOwnIC only for storing - // properties that already exist in the boilerplate therefore we can use - // StoreIC. - VisitStaNamedProperty(); + CallBuiltin( + RegisterOperand(0), // object + Constant(1), // name + kInterpreterAccumulatorRegister, // value + IndexAsTagged(2)); // slot } void BaselineCompiler::VisitStaKeyedProperty() { @@ -943,6 +945,14 @@ void BaselineCompiler::VisitStaKeyedProperty() { IndexAsTagged(2)); // slot } +void BaselineCompiler::VisitStaKeyedPropertyAsDefine() { + CallBuiltin( + RegisterOperand(0), // object + RegisterOperand(1), // key + kInterpreterAccumulatorRegister, // value + IndexAsTagged(2)); // slot +} + void BaselineCompiler::VisitStaInArrayLiteral() { CallBuiltin( RegisterOperand(0), // object diff --git a/deps/v8/src/baseline/baseline-compiler.h b/deps/v8/src/baseline/baseline-compiler.h index 341e7c0822f6fb..22073922535f02 100644 --- a/deps/v8/src/baseline/baseline-compiler.h +++ b/deps/v8/src/baseline/baseline-compiler.h @@ -14,6 +14,7 @@ #include "src/base/threaded-list.h" #include "src/base/vlq.h" #include "src/baseline/baseline-assembler.h" +#include "src/execution/local-isolate.h" #include "src/handles/handles.h" #include "src/interpreter/bytecode-array-iterator.h" #include "src/interpreter/bytecode-register.h" @@ -51,14 +52,12 @@ class BytecodeOffsetTableBuilder { class BaselineCompiler { public: - enum CodeLocation { kOffHeap, kOnHeap }; - explicit BaselineCompiler( - Isolate* isolate, Handle shared_function_info, - Handle bytecode, - CodeLocation code_location = CodeLocation::kOffHeap); + explicit BaselineCompiler(LocalIsolate* local_isolate, + Handle shared_function_info, + Handle bytecode); void GenerateCode(); - MaybeHandle Build(Isolate* isolate); + MaybeHandle Build(LocalIsolate* local_isolate); static int EstimateInstructionSize(BytecodeArray bytecode); private: diff --git a/deps/v8/src/baseline/baseline.cc b/deps/v8/src/baseline/baseline.cc index 764d2db645a2c0..0a6ada029bab1b 100644 --- a/deps/v8/src/baseline/baseline.cc +++ b/deps/v8/src/baseline/baseline.cc @@ -56,34 +56,14 @@ bool CanCompileWithBaseline(Isolate* isolate, SharedFunctionInfo shared) { return true; } -namespace { -MaybeHandle GenerateOnHeapCode(Isolate* isolate, - Handle shared, - Handle bytecode) { - CodePageCollectionMemoryModificationScope code_allocation(isolate->heap()); - baseline::BaselineCompiler compiler(isolate, shared, bytecode, - baseline::BaselineCompiler::kOnHeap); - compiler.GenerateCode(); - return compiler.Build(isolate); -} - -MaybeHandle GenerateOffHeapCode(Isolate* isolate, - Handle shared, - Handle bytecode) { - baseline::BaselineCompiler compiler(isolate, shared, bytecode); - compiler.GenerateCode(); - return compiler.Build(isolate); -} - -} // namespace - MaybeHandle GenerateBaselineCode(Isolate* isolate, Handle shared) { RCS_SCOPE(isolate, RuntimeCallCounterId::kCompileBaseline); Handle bytecode(shared->GetBytecodeArray(isolate), isolate); - MaybeHandle code = FLAG_sparkplug_on_heap - ? GenerateOnHeapCode(isolate, shared, bytecode) - : GenerateOffHeapCode(isolate, shared, bytecode); + LocalIsolate* local_isolate = isolate->main_thread_local_isolate(); + baseline::BaselineCompiler compiler(local_isolate, shared, bytecode); + compiler.GenerateCode(); + MaybeHandle code = compiler.Build(local_isolate); if (FLAG_print_code && !code.is_null()) { code.ToHandleChecked()->Print(); } diff --git a/deps/v8/src/baseline/loong64/baseline-assembler-loong64-inl.h b/deps/v8/src/baseline/loong64/baseline-assembler-loong64-inl.h index 059d932ef9a3f8..33f792fce83e35 100644 --- a/deps/v8/src/baseline/loong64/baseline-assembler-loong64-inl.h +++ b/deps/v8/src/baseline/loong64/baseline-assembler-loong64-inl.h @@ -483,8 +483,11 @@ void BaselineAssembler::EmitReturn(MacroAssembler* masm) { __ masm()->LeaveFrame(StackFrame::BASELINE); // Drop receiver + arguments. - __ masm()->Add_d(params_size, params_size, 1); // Include the receiver. - __ masm()->Alsl_d(sp, params_size, sp, kPointerSizeLog2); + __ masm()->DropArguments(params_size, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); + __ masm()->Ret(); } diff --git a/deps/v8/src/baseline/mips/baseline-assembler-mips-inl.h b/deps/v8/src/baseline/mips/baseline-assembler-mips-inl.h index 989d5c4ae5cba3..996b4ba831f93a 100644 --- a/deps/v8/src/baseline/mips/baseline-assembler-mips-inl.h +++ b/deps/v8/src/baseline/mips/baseline-assembler-mips-inl.h @@ -499,8 +499,11 @@ void BaselineAssembler::EmitReturn(MacroAssembler* masm) { __ masm()->LeaveFrame(StackFrame::BASELINE); // Drop receiver + arguments. - __ masm()->Addu(params_size, params_size, 1); // Include the receiver. - __ masm()->Lsa(sp, sp, params_size, kPointerSizeLog2); + __ masm()->DropArguments(params_size, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); + __ masm()->Ret(); } diff --git a/deps/v8/src/baseline/mips64/baseline-assembler-mips64-inl.h b/deps/v8/src/baseline/mips64/baseline-assembler-mips64-inl.h index 561e45249ed847..18e0c3445dd312 100644 --- a/deps/v8/src/baseline/mips64/baseline-assembler-mips64-inl.h +++ b/deps/v8/src/baseline/mips64/baseline-assembler-mips64-inl.h @@ -497,8 +497,11 @@ void BaselineAssembler::EmitReturn(MacroAssembler* masm) { __ masm()->LeaveFrame(StackFrame::BASELINE); // Drop receiver + arguments. - __ masm()->Daddu(params_size, params_size, 1); // Include the receiver. - __ masm()->Dlsa(sp, sp, params_size, kPointerSizeLog2); + __ masm()->DropArguments(params_size, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); + __ masm()->Ret(); } diff --git a/deps/v8/src/baseline/ppc/baseline-assembler-ppc-inl.h b/deps/v8/src/baseline/ppc/baseline-assembler-ppc-inl.h new file mode 100644 index 00000000000000..110f7b74659c3f --- /dev/null +++ b/deps/v8/src/baseline/ppc/baseline-assembler-ppc-inl.h @@ -0,0 +1,374 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef V8_BASELINE_PPC_BASELINE_ASSEMBLER_PPC_INL_H_ +#define V8_BASELINE_PPC_BASELINE_ASSEMBLER_PPC_INL_H_ + +#include "src/baseline/baseline-assembler.h" +#include "src/codegen/ppc/assembler-ppc-inl.h" +#include "src/codegen/interface-descriptors.h" + +namespace v8 { +namespace internal { +namespace baseline { + +class BaselineAssembler::ScratchRegisterScope { + public: + explicit ScratchRegisterScope(BaselineAssembler* assembler) + : assembler_(assembler), + prev_scope_(assembler->scratch_register_scope_), + wrapped_scope_(assembler->masm()) { + if (!assembler_->scratch_register_scope_) { + // If we haven't opened a scratch scope yet, for the first one add a + // couple of extra registers. + DCHECK(wrapped_scope_.CanAcquire()); + wrapped_scope_.Include(r8, r9); + wrapped_scope_.Include(kInterpreterBytecodeOffsetRegister); + } + assembler_->scratch_register_scope_ = this; + } + ~ScratchRegisterScope() { assembler_->scratch_register_scope_ = prev_scope_; } + + Register AcquireScratch() { return wrapped_scope_.Acquire(); } + + private: + BaselineAssembler* assembler_; + ScratchRegisterScope* prev_scope_; + UseScratchRegisterScope wrapped_scope_; +}; + +// TODO(v8:11429,leszeks): Unify condition names in the MacroAssembler. +enum class Condition : uint32_t { + kEqual = static_cast(eq), + kNotEqual = static_cast(ne), + + kLessThan = static_cast(lt), + kGreaterThan = static_cast(gt), + kLessThanEqual = static_cast(le), + kGreaterThanEqual = static_cast(ge), + + kUnsignedLessThan = static_cast(lo), + kUnsignedGreaterThan = static_cast(hi), + kUnsignedLessThanEqual = static_cast(ls), + kUnsignedGreaterThanEqual = static_cast(hs), + + kOverflow = static_cast(vs), + kNoOverflow = static_cast(vc), + + kZero = static_cast(eq), + kNotZero = static_cast(ne), +}; + +inline internal::Condition AsMasmCondition(Condition cond) { + UNIMPLEMENTED(); + return static_cast(cond); +} + +namespace detail { + +#ifdef DEBUG +inline bool Clobbers(Register target, MemOperand op) { + UNIMPLEMENTED(); + return false; +} +#endif + +} // namespace detail + +#define __ masm_-> + +MemOperand BaselineAssembler::RegisterFrameOperand( + interpreter::Register interpreter_register) { + UNIMPLEMENTED(); + return MemOperand(fp, interpreter_register.ToOperand() * kSystemPointerSize); +} +MemOperand BaselineAssembler::FeedbackVectorOperand() { + UNIMPLEMENTED(); + return MemOperand(fp, BaselineFrameConstants::kFeedbackVectorFromFp); +} + +void BaselineAssembler::Bind(Label* label) { __ bind(label); } +void BaselineAssembler::BindWithoutJumpTarget(Label* label) { __ bind(label); } + +void BaselineAssembler::JumpTarget() { + // NOP on arm. + UNIMPLEMENTED(); +} + +void BaselineAssembler::Jump(Label* target, Label::Distance distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfRoot(Register value, RootIndex index, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfNotRoot(Register value, RootIndex index, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::CallBuiltin(Builtin builtin) { UNIMPLEMENTED(); } + +void BaselineAssembler::TailCallBuiltin(Builtin builtin) { + ASM_CODE_COMMENT_STRING(masm_, + __ CommentForOffHeapTrampoline("tail call", builtin)); + UNIMPLEMENTED(); +} + +void BaselineAssembler::TestAndBranch(Register value, int mask, Condition cc, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::JumpIf(Condition cc, Register lhs, const Operand& rhs, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfObjectType(Condition cc, Register object, + InstanceType instance_type, + Register map, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfInstanceType(Condition cc, Register map, + InstanceType instance_type, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfPointer(Condition cc, Register value, + MemOperand operand, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Condition cc, Register value, Smi smi, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Condition cc, Register lhs, Register rhs, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfTagged(Condition cc, Register value, + MemOperand operand, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfTagged(Condition cc, MemOperand operand, + Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfByte(Condition cc, Register value, int32_t byte, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::Move(interpreter::Register output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, TaggedIndex value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(MemOperand output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, ExternalReference reference) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, Handle value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, int32_t value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::MoveMaybeSmi(Register output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::MoveSmi(Register output, Register source) { + UNIMPLEMENTED(); +} + +namespace detail { + +template +inline Register ToRegister(BaselineAssembler* basm, + BaselineAssembler::ScratchRegisterScope* scope, + Arg arg) { + UNIMPLEMENTED(); + return reg; +} +inline Register ToRegister(BaselineAssembler* basm, + BaselineAssembler::ScratchRegisterScope* scope, + Register reg) { + return reg; +} + +template +struct PushAllHelper; +template <> +struct PushAllHelper<> { + static int Push(BaselineAssembler* basm) { return 0; } + static int PushReverse(BaselineAssembler* basm) { return 0; } +}; +// TODO(ishell): try to pack sequence of pushes into one instruction by +// looking at regiser codes. For example, Push(r1, r2, r5, r0, r3, r4) +// could be generated as two pushes: Push(r1, r2, r5) and Push(r0, r3, r4). +template +struct PushAllHelper { + static int Push(BaselineAssembler* basm, Arg arg) { + BaselineAssembler::ScratchRegisterScope scope(basm); + basm->masm()->Push(ToRegister(basm, &scope, arg)); + return 1; + } + static int PushReverse(BaselineAssembler* basm, Arg arg) { + return Push(basm, arg); + } +}; +// TODO(ishell): try to pack sequence of pushes into one instruction by +// looking at regiser codes. For example, Push(r1, r2, r5, r0, r3, r4) +// could be generated as two pushes: Push(r1, r2, r5) and Push(r0, r3, r4). +template +struct PushAllHelper { + static int Push(BaselineAssembler* basm, Arg arg, Args... args) { + PushAllHelper::Push(basm, arg); + return 1 + PushAllHelper::Push(basm, args...); + } + static int PushReverse(BaselineAssembler* basm, Arg arg, Args... args) { + int nargs = PushAllHelper::PushReverse(basm, args...); + PushAllHelper::Push(basm, arg); + return nargs + 1; + } +}; +template <> +struct PushAllHelper { + static int Push(BaselineAssembler* basm, interpreter::RegisterList list) { + for (int reg_index = 0; reg_index < list.register_count(); ++reg_index) { + PushAllHelper::Push(basm, list[reg_index]); + } + return list.register_count(); + } + static int PushReverse(BaselineAssembler* basm, + interpreter::RegisterList list) { + for (int reg_index = list.register_count() - 1; reg_index >= 0; + --reg_index) { + PushAllHelper::Push(basm, list[reg_index]); + } + return list.register_count(); + } +}; + +template +struct PopAllHelper; +template <> +struct PopAllHelper<> { + static void Pop(BaselineAssembler* basm) {} +}; +// TODO(ishell): try to pack sequence of pops into one instruction by +// looking at regiser codes. For example, Pop(r1, r2, r5, r0, r3, r4) +// could be generated as two pops: Pop(r1, r2, r5) and Pop(r0, r3, r4). +template <> +struct PopAllHelper { + static void Pop(BaselineAssembler* basm, Register reg) { + basm->masm()->Pop(reg); + } +}; +template +struct PopAllHelper { + static void Pop(BaselineAssembler* basm, Register reg, T... tail) { + PopAllHelper::Pop(basm, reg); + PopAllHelper::Pop(basm, tail...); + } +}; + +} // namespace detail + +template +int BaselineAssembler::Push(T... vals) { + return detail::PushAllHelper::Push(this, vals...); +} + +template +void BaselineAssembler::PushReverse(T... vals) { + detail::PushAllHelper::PushReverse(this, vals...); +} + +template +void BaselineAssembler::Pop(T... registers) { + detail::PopAllHelper::Pop(this, registers...); +} + +void BaselineAssembler::LoadTaggedPointerField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadTaggedSignedField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadTaggedAnyField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadByteField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedSignedField(Register target, int offset, + Smi value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedFieldWithWriteBarrier(Register target, + int offset, + Register value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedFieldNoWriteBarrier(Register target, + int offset, + Register value) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddToInterruptBudgetAndJumpIfNotExceeded( + int32_t weight, Label* skip_interrupt_label) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddToInterruptBudgetAndJumpIfNotExceeded( + Register weight, Label* skip_interrupt_label) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddSmi(Register lhs, Smi rhs) { UNIMPLEMENTED(); } + +void BaselineAssembler::Switch(Register reg, int case_value_base, + Label** labels, int num_labels) { + UNIMPLEMENTED(); +} + +#undef __ + +#define __ basm. + +void BaselineAssembler::EmitReturn(MacroAssembler* masm) { UNIMPLEMENTED(); } + +#undef __ + +inline void EnsureAccumulatorPreservedScope::AssertEqualToAccumulator( + Register reg) { + UNIMPLEMENTED(); +} + +} // namespace baseline +} // namespace internal +} // namespace v8 + +#endif // V8_BASELINE_PPC_BASELINE_ASSEMBLER_PPC_INL_H_ diff --git a/deps/v8/src/baseline/ppc/baseline-compiler-ppc-inl.h b/deps/v8/src/baseline/ppc/baseline-compiler-ppc-inl.h new file mode 100644 index 00000000000000..3d395bce7d4223 --- /dev/null +++ b/deps/v8/src/baseline/ppc/baseline-compiler-ppc-inl.h @@ -0,0 +1,27 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ +#define V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ + +#include "src/base/logging.h" +#include "src/baseline/baseline-compiler.h" + +namespace v8 { +namespace internal { +namespace baseline { + +#define __ basm_. + +void BaselineCompiler::Prologue() { UNIMPLEMENTED(); } + +void BaselineCompiler::PrologueFillFrame() { UNIMPLEMENTED(); } + +void BaselineCompiler::VerifyFrameSize() { UNIMPLEMENTED(); } + +} // namespace baseline +} // namespace internal +} // namespace v8 + +#endif // V8_BASELINE_PPC_BASELINE_COMPILER_PPC_INL_H_ diff --git a/deps/v8/src/baseline/riscv64/baseline-assembler-riscv64-inl.h b/deps/v8/src/baseline/riscv64/baseline-assembler-riscv64-inl.h index 7bf6bd2f4ec8ee..85ada600f18d28 100644 --- a/deps/v8/src/baseline/riscv64/baseline-assembler-riscv64-inl.h +++ b/deps/v8/src/baseline/riscv64/baseline-assembler-riscv64-inl.h @@ -503,9 +503,10 @@ void BaselineAssembler::EmitReturn(MacroAssembler* masm) { __ masm()->LeaveFrame(StackFrame::BASELINE); // Drop receiver + arguments. - __ masm()->Add64(params_size, params_size, 1); // Include the receiver. - __ masm()->slli(params_size, params_size, kSystemPointerSizeLog2); - __ masm()->Add64(sp, sp, params_size); + __ masm()->DropArguments(params_size, MacroAssembler::kCountIsInteger, + kJSArgcIncludesReceiver + ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver); __ masm()->Ret(); } diff --git a/deps/v8/src/baseline/s390/baseline-assembler-s390-inl.h b/deps/v8/src/baseline/s390/baseline-assembler-s390-inl.h new file mode 100644 index 00000000000000..c73f080ecb8db0 --- /dev/null +++ b/deps/v8/src/baseline/s390/baseline-assembler-s390-inl.h @@ -0,0 +1,374 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef V8_BASELINE_S390_BASELINE_ASSEMBLER_S390_INL_H_ +#define V8_BASELINE_S390_BASELINE_ASSEMBLER_S390_INL_H_ + +#include "src/baseline/baseline-assembler.h" +#include "src/codegen/s390/assembler-s390-inl.h" +#include "src/codegen/interface-descriptors.h" + +namespace v8 { +namespace internal { +namespace baseline { + +class BaselineAssembler::ScratchRegisterScope { + public: + explicit ScratchRegisterScope(BaselineAssembler* assembler) + : assembler_(assembler), + prev_scope_(assembler->scratch_register_scope_), + wrapped_scope_(assembler->masm()) { + if (!assembler_->scratch_register_scope_) { + // If we haven't opened a scratch scope yet, for the first one add a + // couple of extra registers. + DCHECK(wrapped_scope_.CanAcquire()); + wrapped_scope_.Include(r8, r9); + wrapped_scope_.Include(kInterpreterBytecodeOffsetRegister); + } + assembler_->scratch_register_scope_ = this; + } + ~ScratchRegisterScope() { assembler_->scratch_register_scope_ = prev_scope_; } + + Register AcquireScratch() { return wrapped_scope_.Acquire(); } + + private: + BaselineAssembler* assembler_; + ScratchRegisterScope* prev_scope_; + UseScratchRegisterScope wrapped_scope_; +}; + +// TODO(v8:11429,leszeks): Unify condition names in the MacroAssembler. +enum class Condition : uint32_t { + kEqual = static_cast(eq), + kNotEqual = static_cast(ne), + + kLessThan = static_cast(lt), + kGreaterThan = static_cast(gt), + kLessThanEqual = static_cast(le), + kGreaterThanEqual = static_cast(ge), + + kUnsignedLessThan = static_cast(lo), + kUnsignedGreaterThan = static_cast(hi), + kUnsignedLessThanEqual = static_cast(ls), + kUnsignedGreaterThanEqual = static_cast(hs), + + kOverflow = static_cast(vs), + kNoOverflow = static_cast(vc), + + kZero = static_cast(eq), + kNotZero = static_cast(ne), +}; + +inline internal::Condition AsMasmCondition(Condition cond) { + UNIMPLEMENTED(); + return static_cast(cond); +} + +namespace detail { + +#ifdef DEBUG +inline bool Clobbers(Register target, MemOperand op) { + UNIMPLEMENTED(); + return false; +} +#endif + +} // namespace detail + +#define __ masm_-> + +MemOperand BaselineAssembler::RegisterFrameOperand( + interpreter::Register interpreter_register) { + UNIMPLEMENTED(); + return MemOperand(fp, interpreter_register.ToOperand() * kSystemPointerSize); +} +MemOperand BaselineAssembler::FeedbackVectorOperand() { + UNIMPLEMENTED(); + return MemOperand(fp, BaselineFrameConstants::kFeedbackVectorFromFp); +} + +void BaselineAssembler::Bind(Label* label) { __ bind(label); } +void BaselineAssembler::BindWithoutJumpTarget(Label* label) { __ bind(label); } + +void BaselineAssembler::JumpTarget() { + // NOP on arm. + UNIMPLEMENTED(); +} + +void BaselineAssembler::Jump(Label* target, Label::Distance distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfRoot(Register value, RootIndex index, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfNotRoot(Register value, RootIndex index, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfNotSmi(Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::CallBuiltin(Builtin builtin) { UNIMPLEMENTED(); } + +void BaselineAssembler::TailCallBuiltin(Builtin builtin) { + ASM_CODE_COMMENT_STRING(masm_, + __ CommentForOffHeapTrampoline("tail call", builtin)); + UNIMPLEMENTED(); +} + +void BaselineAssembler::TestAndBranch(Register value, int mask, Condition cc, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::JumpIf(Condition cc, Register lhs, const Operand& rhs, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfObjectType(Condition cc, Register object, + InstanceType instance_type, + Register map, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfInstanceType(Condition cc, Register map, + InstanceType instance_type, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfPointer(Condition cc, Register value, + MemOperand operand, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Condition cc, Register value, Smi smi, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfSmi(Condition cc, Register lhs, Register rhs, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfTagged(Condition cc, Register value, + MemOperand operand, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfTagged(Condition cc, MemOperand operand, + Register value, Label* target, + Label::Distance) { + UNIMPLEMENTED(); +} +void BaselineAssembler::JumpIfByte(Condition cc, Register value, int32_t byte, + Label* target, Label::Distance) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::Move(interpreter::Register output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, TaggedIndex value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(MemOperand output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, ExternalReference reference) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, Handle value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::Move(Register output, int32_t value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::MoveMaybeSmi(Register output, Register source) { + UNIMPLEMENTED(); +} +void BaselineAssembler::MoveSmi(Register output, Register source) { + UNIMPLEMENTED(); +} + +namespace detail { + +template +inline Register ToRegister(BaselineAssembler* basm, + BaselineAssembler::ScratchRegisterScope* scope, + Arg arg) { + UNIMPLEMENTED(); + return reg; +} +inline Register ToRegister(BaselineAssembler* basm, + BaselineAssembler::ScratchRegisterScope* scope, + Register reg) { + return reg; +} + +template +struct PushAllHelper; +template <> +struct PushAllHelper<> { + static int Push(BaselineAssembler* basm) { return 0; } + static int PushReverse(BaselineAssembler* basm) { return 0; } +}; +// TODO(ishell): try to pack sequence of pushes into one instruction by +// looking at regiser codes. For example, Push(r1, r2, r5, r0, r3, r4) +// could be generated as two pushes: Push(r1, r2, r5) and Push(r0, r3, r4). +template +struct PushAllHelper { + static int Push(BaselineAssembler* basm, Arg arg) { + BaselineAssembler::ScratchRegisterScope scope(basm); + basm->masm()->Push(ToRegister(basm, &scope, arg)); + return 1; + } + static int PushReverse(BaselineAssembler* basm, Arg arg) { + return Push(basm, arg); + } +}; +// TODO(ishell): try to pack sequence of pushes into one instruction by +// looking at regiser codes. For example, Push(r1, r2, r5, r0, r3, r4) +// could be generated as two pushes: Push(r1, r2, r5) and Push(r0, r3, r4). +template +struct PushAllHelper { + static int Push(BaselineAssembler* basm, Arg arg, Args... args) { + PushAllHelper::Push(basm, arg); + return 1 + PushAllHelper::Push(basm, args...); + } + static int PushReverse(BaselineAssembler* basm, Arg arg, Args... args) { + int nargs = PushAllHelper::PushReverse(basm, args...); + PushAllHelper::Push(basm, arg); + return nargs + 1; + } +}; +template <> +struct PushAllHelper { + static int Push(BaselineAssembler* basm, interpreter::RegisterList list) { + for (int reg_index = 0; reg_index < list.register_count(); ++reg_index) { + PushAllHelper::Push(basm, list[reg_index]); + } + return list.register_count(); + } + static int PushReverse(BaselineAssembler* basm, + interpreter::RegisterList list) { + for (int reg_index = list.register_count() - 1; reg_index >= 0; + --reg_index) { + PushAllHelper::Push(basm, list[reg_index]); + } + return list.register_count(); + } +}; + +template +struct PopAllHelper; +template <> +struct PopAllHelper<> { + static void Pop(BaselineAssembler* basm) {} +}; +// TODO(ishell): try to pack sequence of pops into one instruction by +// looking at regiser codes. For example, Pop(r1, r2, r5, r0, r3, r4) +// could be generated as two pops: Pop(r1, r2, r5) and Pop(r0, r3, r4). +template <> +struct PopAllHelper { + static void Pop(BaselineAssembler* basm, Register reg) { + basm->masm()->Pop(reg); + } +}; +template +struct PopAllHelper { + static void Pop(BaselineAssembler* basm, Register reg, T... tail) { + PopAllHelper::Pop(basm, reg); + PopAllHelper::Pop(basm, tail...); + } +}; + +} // namespace detail + +template +int BaselineAssembler::Push(T... vals) { + return detail::PushAllHelper::Push(this, vals...); +} + +template +void BaselineAssembler::PushReverse(T... vals) { + detail::PushAllHelper::PushReverse(this, vals...); +} + +template +void BaselineAssembler::Pop(T... registers) { + detail::PopAllHelper::Pop(this, registers...); +} + +void BaselineAssembler::LoadTaggedPointerField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadTaggedSignedField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadTaggedAnyField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::LoadByteField(Register output, Register source, + int offset) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedSignedField(Register target, int offset, + Smi value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedFieldWithWriteBarrier(Register target, + int offset, + Register value) { + UNIMPLEMENTED(); +} +void BaselineAssembler::StoreTaggedFieldNoWriteBarrier(Register target, + int offset, + Register value) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddToInterruptBudgetAndJumpIfNotExceeded( + int32_t weight, Label* skip_interrupt_label) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddToInterruptBudgetAndJumpIfNotExceeded( + Register weight, Label* skip_interrupt_label) { + UNIMPLEMENTED(); +} + +void BaselineAssembler::AddSmi(Register lhs, Smi rhs) { UNIMPLEMENTED(); } + +void BaselineAssembler::Switch(Register reg, int case_value_base, + Label** labels, int num_labels) { + UNIMPLEMENTED(); +} + +#undef __ + +#define __ basm. + +void BaselineAssembler::EmitReturn(MacroAssembler* masm) { UNIMPLEMENTED(); } + +#undef __ + +inline void EnsureAccumulatorPreservedScope::AssertEqualToAccumulator( + Register reg) { + UNIMPLEMENTED(); +} + +} // namespace baseline +} // namespace internal +} // namespace v8 + +#endif // V8_BASELINE_S390_BASELINE_ASSEMBLER_S390_INL_H_ diff --git a/deps/v8/src/baseline/s390/baseline-compiler-s390-inl.h b/deps/v8/src/baseline/s390/baseline-compiler-s390-inl.h new file mode 100644 index 00000000000000..c481c549401a30 --- /dev/null +++ b/deps/v8/src/baseline/s390/baseline-compiler-s390-inl.h @@ -0,0 +1,27 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef V8_BASELINE_S390_BASELINE_COMPILER_S390_INL_H_ +#define V8_BASELINE_S390_BASELINE_COMPILER_S390_INL_H_ + +#include "src/base/logging.h" +#include "src/baseline/baseline-compiler.h" + +namespace v8 { +namespace internal { +namespace baseline { + +#define __ basm_. + +void BaselineCompiler::Prologue() { UNIMPLEMENTED(); } + +void BaselineCompiler::PrologueFillFrame() { UNIMPLEMENTED(); } + +void BaselineCompiler::VerifyFrameSize() { UNIMPLEMENTED(); } + +} // namespace baseline +} // namespace internal +} // namespace v8 + +#endif // V8_BASELINE_S390_BASELINE_COMPILER_S390_INL_H_ diff --git a/deps/v8/src/builtins/arm/builtins-arm.cc b/deps/v8/src/builtins/arm/builtins-arm.cc index 00f57bcbff8ff0..a3a2209f9fefdd 100644 --- a/deps/v8/src/builtins/arm/builtins-arm.cc +++ b/deps/v8/src/builtins/arm/builtins-arm.cc @@ -2283,7 +2283,11 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // ----------------------------------- __ AssertFunction(r1); + Label class_constructor; __ ldr(r2, FieldMemOperand(r1, JSFunction::kSharedFunctionInfoOffset)); + __ ldr(r3, FieldMemOperand(r2, SharedFunctionInfo::kFlagsOffset)); + __ tst(r3, Operand(SharedFunctionInfo::IsClassConstructorBit::kMask)); + __ b(ne, &class_constructor); // Enter the context of the function; ToObject has to run in the function // context, and we also need to take the global proxy from the function @@ -2358,6 +2362,14 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ ldrh(r2, FieldMemOperand(r2, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(r1, no_reg, r2, r0, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ push(r1); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } namespace { @@ -2747,6 +2759,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); diff --git a/deps/v8/src/builtins/arm64/builtins-arm64.cc b/deps/v8/src/builtins/arm64/builtins-arm64.cc index 27d13ecb46f1f2..0cb79c1f04d5a0 100644 --- a/deps/v8/src/builtins/arm64/builtins-arm64.cc +++ b/deps/v8/src/builtins/arm64/builtins-arm64.cc @@ -2648,8 +2648,12 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // ----------------------------------- __ AssertFunction(x1); + Label class_constructor; __ LoadTaggedPointerField( x2, FieldMemOperand(x1, JSFunction::kSharedFunctionInfoOffset)); + __ Ldr(w3, FieldMemOperand(x2, SharedFunctionInfo::kFlagsOffset)); + __ TestAndBranchIfAnySet(w3, SharedFunctionInfo::IsClassConstructorBit::kMask, + &class_constructor); // Enter the context of the function; ToObject has to run in the function // context, and we also need to take the global proxy from the function @@ -2725,6 +2729,15 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ Ldrh(x2, FieldMemOperand(x2, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(x1, no_reg, x2, x0, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ Bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ PushArgument(x1); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + __ Unreachable(); + } } namespace { @@ -3175,6 +3188,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); diff --git a/deps/v8/src/builtins/base.tq b/deps/v8/src/builtins/base.tq index 7716d94288a9b8..3726207e1d6268 100644 --- a/deps/v8/src/builtins/base.tq +++ b/deps/v8/src/builtins/base.tq @@ -1168,7 +1168,7 @@ extern macro Int32Constant(constexpr int31): int31; extern macro Int32Constant(constexpr int32): int32; extern macro Int64Constant(constexpr int64): int64; extern macro Uint64Constant(constexpr uint64): uint64; -extern macro Float64Constant(constexpr int31): float64; +extern macro Float64Constant(constexpr int32): float64; extern macro Float64Constant(constexpr float64): float64; extern macro SmiConstant(constexpr int31): Smi; extern macro SmiConstant(constexpr Smi): Smi; @@ -1799,7 +1799,6 @@ macro Float64IsSomeInfinity(value: float64): bool { return value == (Convert(0) - V8_INFINITY); } -@export macro IsIntegerOrSomeInfinity(o: Object): bool { typeswitch (o) { case (Smi): { @@ -1817,20 +1816,6 @@ macro IsIntegerOrSomeInfinity(o: Object): bool { } } -builtin CheckNumberInRange(implicit context: Context)( - value: Number, min: Number, max: Number, nodeId: Smi): Undefined { - if (IsIntegerOrSomeInfinity(value) && min <= value && value <= max) { - return Undefined; - } else { - Print('Range type assertion failed! (value/min/max/nodeId)'); - Print(value); - Print(min); - Print(max); - Print(nodeId); - unreachable; - } -} - // Assert that the objects satisfy SameValue or are both the hole. builtin CheckSameObject(implicit context: Context)( lhs: Object, rhs: Object): Undefined { diff --git a/deps/v8/src/builtins/builtins-definitions.h b/deps/v8/src/builtins/builtins-definitions.h index f7b94c4059393d..db4fc381890ce5 100644 --- a/deps/v8/src/builtins/builtins-definitions.h +++ b/deps/v8/src/builtins/builtins-definitions.h @@ -273,6 +273,7 @@ namespace internal { /* Handlers */ \ TFH(KeyedLoadIC_PolymorphicName, LoadWithVector) \ TFH(KeyedStoreIC_Megamorphic, Store) \ + TFH(KeyedDefineOwnIC_Megamorphic, Store) \ TFH(LoadGlobalIC_NoFeedback, LoadGlobalNoFeedback) \ TFH(LoadIC_FunctionPrototype, LoadWithVector) \ TFH(LoadIC_StringLength, LoadWithVector) \ @@ -280,6 +281,7 @@ namespace internal { TFH(LoadIC_NoFeedback, LoadNoFeedback) \ TFH(StoreGlobalIC_Slow, StoreWithVector) \ TFH(StoreIC_NoFeedback, Store) \ + TFH(StoreOwnIC_NoFeedback, Store) \ TFH(KeyedLoadIC_SloppyArguments, LoadWithVector) \ TFH(LoadIndexedInterceptorIC, LoadWithVector) \ TFH(KeyedStoreIC_SloppyArguments_Standard, StoreWithVector) \ @@ -630,9 +632,15 @@ namespace internal { TFH(StoreIC, StoreWithVector) \ TFH(StoreICTrampoline, Store) \ TFH(StoreICBaseline, StoreBaseline) \ + TFH(StoreOwnIC, StoreWithVector) \ + TFH(StoreOwnICTrampoline, Store) \ + TFH(StoreOwnICBaseline, StoreBaseline) \ TFH(KeyedStoreIC, StoreWithVector) \ TFH(KeyedStoreICTrampoline, Store) \ TFH(KeyedStoreICBaseline, StoreBaseline) \ + TFH(KeyedDefineOwnIC, StoreWithVector) \ + TFH(KeyedDefineOwnICTrampoline, Store) \ + TFH(KeyedDefineOwnICBaseline, StoreBaseline) \ TFH(StoreInArrayLiteralIC, StoreWithVector) \ TFH(StoreInArrayLiteralICBaseline, StoreBaseline) \ TFH(LookupContextBaseline, LookupBaseline) \ @@ -927,6 +935,7 @@ namespace internal { \ /* Wasm */ \ IF_WASM(ASM, GenericJSToWasmWrapper, Dummy) \ + IF_WASM(ASM, WasmReturnPromiseOnSuspend, Dummy) \ IF_WASM(ASM, WasmCompileLazy, Dummy) \ IF_WASM(ASM, WasmDebugBreak, Dummy) \ IF_WASM(ASM, WasmOnStackReplace, Dummy) \ @@ -1044,7 +1053,579 @@ namespace internal { \ /* CallAsyncModule* are spec anonymyous functions */ \ CPP(CallAsyncModuleFulfilled) \ - CPP(CallAsyncModuleRejected) + CPP(CallAsyncModuleRejected) \ + \ + /* Temporal */ \ + /* Temporal #sec-temporal.now.timezone */ \ + CPP(TemporalNowTimeZone) \ + /* Temporal #sec-temporal.now.instant */ \ + CPP(TemporalNowInstant) \ + /* Temporal #sec-temporal.now.plaindatetime */ \ + CPP(TemporalNowPlainDateTime) \ + /* Temporal #sec-temporal.now.plaindatetimeiso */ \ + CPP(TemporalNowPlainDateTimeISO) \ + /* Temporal #sec-temporal.now.zoneddatetime */ \ + CPP(TemporalNowZonedDateTime) \ + /* Temporal #sec-temporal.now.zoneddatetimeiso */ \ + CPP(TemporalNowZonedDateTimeISO) \ + /* Temporal #sec-temporal.now.plaindate */ \ + CPP(TemporalNowPlainDate) \ + /* Temporal #sec-temporal.now.plaindateiso */ \ + CPP(TemporalNowPlainDateISO) \ + /* There are no Temporal.now.plainTime */ \ + /* See https://github.com/tc39/proposal-temporal/issues/1540 */ \ + /* Temporal #sec-temporal.now.plaintimeiso */ \ + CPP(TemporalNowPlainTimeISO) \ + \ + /* Temporal.PlaneDate */ \ + /* Temporal #sec-temporal.plaindate */ \ + CPP(TemporalPlainDateConstructor) \ + /* Temporal #sec-temporal.plaindate.from */ \ + CPP(TemporalPlainDateFrom) \ + /* Temporal #sec-temporal.plaindate.compare */ \ + CPP(TemporalPlainDateCompare) \ + /* Temporal #sec-get-temporal.plaindate.prototype.calendar */ \ + CPP(TemporalPlainDatePrototypeCalendar) \ + /* Temporal #sec-get-temporal.plaindate.prototype.year */ \ + CPP(TemporalPlainDatePrototypeYear) \ + /* Temporal #sec-get-temporal.plaindate.prototype.month */ \ + CPP(TemporalPlainDatePrototypeMonth) \ + /* Temporal #sec-get-temporal.plaindate.prototype.monthcode */ \ + CPP(TemporalPlainDatePrototypeMonthCode) \ + /* Temporal #sec-get-temporal.plaindate.prototype.day */ \ + CPP(TemporalPlainDatePrototypeDay) \ + /* Temporal #sec-get-temporal.plaindate.prototype.dayofweek */ \ + CPP(TemporalPlainDatePrototypeDayOfWeek) \ + /* Temporal #sec-get-temporal.plaindate.prototype.dayofyear */ \ + CPP(TemporalPlainDatePrototypeDayOfYear) \ + /* Temporal #sec-get-temporal.plaindate.prototype.weekofyear */ \ + CPP(TemporalPlainDatePrototypeWeekOfYear) \ + /* Temporal #sec-get-temporal.plaindate.prototype.daysinweek */ \ + CPP(TemporalPlainDatePrototypeDaysInWeek) \ + /* Temporal #sec-get-temporal.plaindate.prototype.daysinmonth */ \ + CPP(TemporalPlainDatePrototypeDaysInMonth) \ + /* Temporal #sec-get-temporal.plaindate.prototype.daysinyear */ \ + CPP(TemporalPlainDatePrototypeDaysInYear) \ + /* Temporal #sec-get-temporal.plaindate.prototype.monthsinyear */ \ + CPP(TemporalPlainDatePrototypeMonthsInYear) \ + /* Temporal #sec-get-temporal.plaindate.prototype.inleapyear */ \ + CPP(TemporalPlainDatePrototypeInLeapYear) \ + /* Temporal #sec-temporal.plaindate.prototype.toplainyearmonth */ \ + CPP(TemporalPlainDatePrototypeToPlainYearMonth) \ + /* Temporal #sec-temporal.plaindate.prototype.toplainmonthday */ \ + CPP(TemporalPlainDatePrototypeToPlainMonthDay) \ + /* Temporal #sec-temporal.plaindate.prototype.getisofields */ \ + CPP(TemporalPlainDatePrototypeGetISOFields) \ + /* Temporal #sec-temporal.plaindate.prototype.add */ \ + CPP(TemporalPlainDatePrototypeAdd) \ + /* Temporal #sec-temporal.plaindate.prototype.substract */ \ + CPP(TemporalPlainDatePrototypeSubtract) \ + /* Temporal #sec-temporal.plaindate.prototype.with */ \ + CPP(TemporalPlainDatePrototypeWith) \ + /* Temporal #sec-temporal.plaindate.prototype.withcalendar */ \ + CPP(TemporalPlainDatePrototypeWithCalendar) \ + /* Temporal #sec-temporal.plaindate.prototype.until */ \ + CPP(TemporalPlainDatePrototypeUntil) \ + /* Temporal #sec-temporal.plaindate.prototype.since */ \ + CPP(TemporalPlainDatePrototypeSince) \ + /* Temporal #sec-temporal.plaindate.prototype.equals */ \ + CPP(TemporalPlainDatePrototypeEquals) \ + /* Temporal #sec-temporal.plaindate.prototype.toplaindatetime */ \ + CPP(TemporalPlainDatePrototypeToPlainDateTime) \ + /* Temporal #sec-temporal.plaindate.prototype.tozoneddatetime */ \ + CPP(TemporalPlainDatePrototypeToZonedDateTime) \ + /* Temporal #sec-temporal.plaindate.prototype.tostring */ \ + CPP(TemporalPlainDatePrototypeToString) \ + /* Temporal #sec-temporal.plaindate.prototype.tojson */ \ + CPP(TemporalPlainDatePrototypeToJSON) \ + /* Temporal #sec-temporal.plaindate.prototype.valueof */ \ + CPP(TemporalPlainDatePrototypeValueOf) \ + \ + /* Temporal.PlaneTime */ \ + /* Temporal #sec-temporal.plaintime */ \ + CPP(TemporalPlainTimeConstructor) \ + /* Temporal #sec-temporal.plaintime.from */ \ + CPP(TemporalPlainTimeFrom) \ + /* Temporal #sec-temporal.plaintime.compare */ \ + CPP(TemporalPlainTimeCompare) \ + /* Temporal #sec-get-temporal.plaintime.prototype.calendar */ \ + CPP(TemporalPlainTimePrototypeCalendar) \ + /* Temporal #sec-get-temporal.plaintime.prototype.hour */ \ + CPP(TemporalPlainTimePrototypeHour) \ + /* Temporal #sec-get-temporal.plaintime.prototype.minute */ \ + CPP(TemporalPlainTimePrototypeMinute) \ + /* Temporal #sec-get-temporal.plaintime.prototype.second */ \ + CPP(TemporalPlainTimePrototypeSecond) \ + /* Temporal #sec-get-temporal.plaintime.prototype.millisecond */ \ + CPP(TemporalPlainTimePrototypeMillisecond) \ + /* Temporal #sec-get-temporal.plaintime.prototype.microsecond */ \ + CPP(TemporalPlainTimePrototypeMicrosecond) \ + /* Temporal #sec-get-temporal.plaintime.prototype.nanoseond */ \ + CPP(TemporalPlainTimePrototypeNanosecond) \ + /* Temporal #sec-temporal.plaintime.prototype.add */ \ + CPP(TemporalPlainTimePrototypeAdd) \ + /* Temporal #sec-temporal.plaintime.prototype.subtract */ \ + CPP(TemporalPlainTimePrototypeSubtract) \ + /* Temporal #sec-temporal.plaintime.prototype.with */ \ + CPP(TemporalPlainTimePrototypeWith) \ + /* Temporal #sec-temporal.plaintime.prototype.until */ \ + CPP(TemporalPlainTimePrototypeUntil) \ + /* Temporal #sec-temporal.plaintime.prototype.since */ \ + CPP(TemporalPlainTimePrototypeSince) \ + /* Temporal #sec-temporal.plaintime.prototype.round */ \ + CPP(TemporalPlainTimePrototypeRound) \ + /* Temporal #sec-temporal.plaintime.prototype.equals */ \ + CPP(TemporalPlainTimePrototypeEquals) \ + /* Temporal #sec-temporal.plaintime.prototype.toplaindatetime */ \ + CPP(TemporalPlainTimePrototypeToPlainDateTime) \ + /* Temporal #sec-temporal.plaintime.prototype.tozoneddatetime */ \ + CPP(TemporalPlainTimePrototypeToZonedDateTime) \ + /* Temporal #sec-temporal.plaintime.prototype.getisofields */ \ + CPP(TemporalPlainTimePrototypeGetISOFields) \ + /* Temporal #sec-temporal.plaintime.prototype.tostring */ \ + CPP(TemporalPlainTimePrototypeToString) \ + /* Temporal #sec-temporal.plaindtimeprototype.tojson */ \ + CPP(TemporalPlainTimePrototypeToJSON) \ + /* Temporal #sec-temporal.plaintime.prototype.valueof */ \ + CPP(TemporalPlainTimePrototypeValueOf) \ + \ + /* Temporal.PlaneDateTime */ \ + /* Temporal #sec-temporal.plaindatetime */ \ + CPP(TemporalPlainDateTimeConstructor) \ + /* Temporal #sec-temporal.plaindatetime.from */ \ + CPP(TemporalPlainDateTimeFrom) \ + /* Temporal #sec-temporal.plaindatetime.compare */ \ + CPP(TemporalPlainDateTimeCompare) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.calendar */ \ + CPP(TemporalPlainDateTimePrototypeCalendar) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.year */ \ + CPP(TemporalPlainDateTimePrototypeYear) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.month */ \ + CPP(TemporalPlainDateTimePrototypeMonth) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.monthcode */ \ + CPP(TemporalPlainDateTimePrototypeMonthCode) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.day */ \ + CPP(TemporalPlainDateTimePrototypeDay) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.hour */ \ + CPP(TemporalPlainDateTimePrototypeHour) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.minute */ \ + CPP(TemporalPlainDateTimePrototypeMinute) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.second */ \ + CPP(TemporalPlainDateTimePrototypeSecond) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.millisecond */ \ + CPP(TemporalPlainDateTimePrototypeMillisecond) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.microsecond */ \ + CPP(TemporalPlainDateTimePrototypeMicrosecond) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.nanosecond */ \ + CPP(TemporalPlainDateTimePrototypeNanosecond) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.dayofweek */ \ + CPP(TemporalPlainDateTimePrototypeDayOfWeek) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.dayofyear */ \ + CPP(TemporalPlainDateTimePrototypeDayOfYear) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.weekofyear */ \ + CPP(TemporalPlainDateTimePrototypeWeekOfYear) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.daysinweek */ \ + CPP(TemporalPlainDateTimePrototypeDaysInWeek) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.daysinmonth */ \ + CPP(TemporalPlainDateTimePrototypeDaysInMonth) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.daysinyear */ \ + CPP(TemporalPlainDateTimePrototypeDaysInYear) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.monthsinyear */ \ + CPP(TemporalPlainDateTimePrototypeMonthsInYear) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.inleapyear */ \ + CPP(TemporalPlainDateTimePrototypeInLeapYear) \ + /* Temporal #sec-temporal.plaindatetime.prototype.with */ \ + CPP(TemporalPlainDateTimePrototypeWith) \ + /* Temporal #sec-temporal.plaindatetime.prototype.withplainTime */ \ + CPP(TemporalPlainDateTimePrototypeWithPlainTime) \ + /* Temporal #sec-temporal.plaindatetime.prototype.withplainDate */ \ + CPP(TemporalPlainDateTimePrototypeWithPlainDate) \ + /* Temporal #sec-temporal.plaindatetime.prototype.withcalendar */ \ + CPP(TemporalPlainDateTimePrototypeWithCalendar) \ + /* Temporal #sec-temporal.plaindatetime.prototype.add */ \ + CPP(TemporalPlainDateTimePrototypeAdd) \ + /* Temporal #sec-temporal.plaindatetime.prototype.subtract */ \ + CPP(TemporalPlainDateTimePrototypeSubtract) \ + /* Temporal #sec-temporal.plaindatetime.prototype.until */ \ + CPP(TemporalPlainDateTimePrototypeUntil) \ + /* Temporal #sec-temporal.plaindatetime.prototype.since */ \ + CPP(TemporalPlainDateTimePrototypeSince) \ + /* Temporal #sec-temporal.plaindatetime.prototype.round */ \ + CPP(TemporalPlainDateTimePrototypeRound) \ + /* Temporal #sec-temporal.plaindatetime.prototype.equals */ \ + CPP(TemporalPlainDateTimePrototypeEquals) \ + /* Temporal #sec-temporal.plaindatetime.prototype.tostring */ \ + CPP(TemporalPlainDateTimePrototypeToString) \ + /* Temporal #sec-temporal.plainddatetimeprototype.tojson */ \ + CPP(TemporalPlainDateTimePrototypeToJSON) \ + /* Temporal #sec-temporal.plaindatetime.prototype.valueof */ \ + CPP(TemporalPlainDateTimePrototypeValueOf) \ + /* Temporal #sec-temporal.plaindatetime.prototype.tozoneddatetime */ \ + CPP(TemporalPlainDateTimePrototypeToZonedDateTime) \ + /* Temporal #sec-temporal.plaindatetime.prototype.toplaindate */ \ + CPP(TemporalPlainDateTimePrototypeToPlainDate) \ + /* Temporal #sec-temporal.plaindatetime.prototype.toplainyearmonth */ \ + CPP(TemporalPlainDateTimePrototypeToPlainYearMonth) \ + /* Temporal #sec-temporal.plaindatetime.prototype.toplainmonthday */ \ + CPP(TemporalPlainDateTimePrototypeToPlainMonthDay) \ + /* Temporal #sec-temporal.plaindatetime.prototype.toplaintime */ \ + CPP(TemporalPlainDateTimePrototypeToPlainTime) \ + /* Temporal #sec-temporal.plaindatetime.prototype.getisofields */ \ + CPP(TemporalPlainDateTimePrototypeGetISOFields) \ + \ + /* Temporal.ZonedDateTime */ \ + /* Temporal #sec-temporal.zoneddatetime */ \ + CPP(TemporalZonedDateTimeConstructor) \ + /* Temporal #sec-temporal.zoneddatetime.from */ \ + CPP(TemporalZonedDateTimeFrom) \ + /* Temporal #sec-temporal.zoneddatetime.compare */ \ + CPP(TemporalZonedDateTimeCompare) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.calendar */ \ + CPP(TemporalZonedDateTimePrototypeCalendar) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.timezone */ \ + CPP(TemporalZonedDateTimePrototypeTimeZone) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.year */ \ + CPP(TemporalZonedDateTimePrototypeYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.month */ \ + CPP(TemporalZonedDateTimePrototypeMonth) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.monthcode */ \ + CPP(TemporalZonedDateTimePrototypeMonthCode) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.day */ \ + CPP(TemporalZonedDateTimePrototypeDay) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.hour */ \ + CPP(TemporalZonedDateTimePrototypeHour) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.minute */ \ + CPP(TemporalZonedDateTimePrototypeMinute) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.second */ \ + CPP(TemporalZonedDateTimePrototypeSecond) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.millisecond */ \ + CPP(TemporalZonedDateTimePrototypeMillisecond) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.microsecond */ \ + CPP(TemporalZonedDateTimePrototypeMicrosecond) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.nanosecond */ \ + CPP(TemporalZonedDateTimePrototypeNanosecond) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.epochsecond */ \ + CPP(TemporalZonedDateTimePrototypeEpochSeconds) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.epochmilliseconds */ \ + CPP(TemporalZonedDateTimePrototypeEpochMilliseconds) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.epochmicroseconds */ \ + CPP(TemporalZonedDateTimePrototypeEpochMicroseconds) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.epochnanoseconds */ \ + CPP(TemporalZonedDateTimePrototypeEpochNanoseconds) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.dayofweek */ \ + CPP(TemporalZonedDateTimePrototypeDayOfWeek) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.dayofyear */ \ + CPP(TemporalZonedDateTimePrototypeDayOfYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.weekofyear */ \ + CPP(TemporalZonedDateTimePrototypeWeekOfYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.hoursinday */ \ + CPP(TemporalZonedDateTimePrototypeHoursInDay) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinweek */ \ + CPP(TemporalZonedDateTimePrototypeDaysInWeek) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinmonth */ \ + CPP(TemporalZonedDateTimePrototypeDaysInMonth) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinyear */ \ + CPP(TemporalZonedDateTimePrototypeDaysInYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.monthsinyear */ \ + CPP(TemporalZonedDateTimePrototypeMonthsInYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.inleapyear */ \ + CPP(TemporalZonedDateTimePrototypeInLeapYear) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.offsetnanoseconds */ \ + CPP(TemporalZonedDateTimePrototypeOffsetNanoseconds) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.offset */ \ + CPP(TemporalZonedDateTimePrototypeOffset) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.with */ \ + CPP(TemporalZonedDateTimePrototypeWith) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.withplaintime */ \ + CPP(TemporalZonedDateTimePrototypeWithPlainTime) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.withplaindate */ \ + CPP(TemporalZonedDateTimePrototypeWithPlainDate) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.withtimezone */ \ + CPP(TemporalZonedDateTimePrototypeWithTimeZone) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.withcalendar */ \ + CPP(TemporalZonedDateTimePrototypeWithCalendar) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.add */ \ + CPP(TemporalZonedDateTimePrototypeAdd) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.subtract */ \ + CPP(TemporalZonedDateTimePrototypeSubtract) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.until */ \ + CPP(TemporalZonedDateTimePrototypeUntil) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.since */ \ + CPP(TemporalZonedDateTimePrototypeSince) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.round */ \ + CPP(TemporalZonedDateTimePrototypeRound) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.equals */ \ + CPP(TemporalZonedDateTimePrototypeEquals) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.tostring */ \ + CPP(TemporalZonedDateTimePrototypeToString) \ + /* Temporal #sec-temporal.zonedddatetimeprototype.tojson */ \ + CPP(TemporalZonedDateTimePrototypeToJSON) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.valueof */ \ + CPP(TemporalZonedDateTimePrototypeValueOf) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.startofday */ \ + CPP(TemporalZonedDateTimePrototypeStartOfDay) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toinstant */ \ + CPP(TemporalZonedDateTimePrototypeToInstant) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toplaindate */ \ + CPP(TemporalZonedDateTimePrototypeToPlainDate) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toplaintime */ \ + CPP(TemporalZonedDateTimePrototypeToPlainTime) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toplaindatetime */ \ + CPP(TemporalZonedDateTimePrototypeToPlainDateTime) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toplainyearmonth */ \ + CPP(TemporalZonedDateTimePrototypeToPlainYearMonth) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.toplainmonthday */ \ + CPP(TemporalZonedDateTimePrototypeToPlainMonthDay) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.getisofields */ \ + CPP(TemporalZonedDateTimePrototypeGetISOFields) \ + \ + /* Temporal.Duration */ \ + /* Temporal #sec-temporal.duration */ \ + CPP(TemporalDurationConstructor) \ + /* Temporal #sec-temporal.duration.from */ \ + CPP(TemporalDurationFrom) \ + /* Temporal #sec-temporal.duration.compare */ \ + CPP(TemporalDurationCompare) \ + /* Temporal #sec-get-temporal.duration.prototype.years */ \ + CPP(TemporalDurationPrototypeYears) \ + /* Temporal #sec-get-temporal.duration.prototype.months */ \ + CPP(TemporalDurationPrototypeMonths) \ + /* Temporal #sec-get-temporal.duration.prototype.weeks */ \ + CPP(TemporalDurationPrototypeWeeks) \ + /* Temporal #sec-get-temporal.duration.prototype.days */ \ + CPP(TemporalDurationPrototypeDays) \ + /* Temporal #sec-get-temporal.duration.prototype.hours */ \ + CPP(TemporalDurationPrototypeHours) \ + /* Temporal #sec-get-temporal.duration.prototype.minutes */ \ + CPP(TemporalDurationPrototypeMinutes) \ + /* Temporal #sec-get-temporal.duration.prototype.seconds */ \ + CPP(TemporalDurationPrototypeSeconds) \ + /* Temporal #sec-get-temporal.duration.prototype.milliseconds */ \ + CPP(TemporalDurationPrototypeMilliseconds) \ + /* Temporal #sec-get-temporal.duration.prototype.microseconds */ \ + CPP(TemporalDurationPrototypeMicroseconds) \ + /* Temporal #sec-get-temporal.duration.prototype.nanoseconds */ \ + CPP(TemporalDurationPrototypeNanoseconds) \ + /* Temporal #sec-get-temporal.duration.prototype.sign */ \ + CPP(TemporalDurationPrototypeSign) \ + /* Temporal #sec-get-temporal.duration.prototype.blank */ \ + CPP(TemporalDurationPrototypeBlank) \ + /* Temporal #sec-temporal.duration.prototype.with */ \ + CPP(TemporalDurationPrototypeWith) \ + /* Temporal #sec-temporal.duration.prototype.negated */ \ + CPP(TemporalDurationPrototypeNegated) \ + /* Temporal #sec-temporal.duration.prototype.abs */ \ + CPP(TemporalDurationPrototypeAbs) \ + /* Temporal #sec-temporal.duration.prototype.add */ \ + CPP(TemporalDurationPrototypeAdd) \ + /* Temporal #sec-temporal.duration.prototype.subtract */ \ + CPP(TemporalDurationPrototypeSubtract) \ + /* Temporal #sec-temporal.duration.prototype.round */ \ + CPP(TemporalDurationPrototypeRound) \ + /* Temporal #sec-temporal.duration.prototype.total */ \ + CPP(TemporalDurationPrototypeTotal) \ + /* Temporal #sec-temporal.duration.prototype.tostring */ \ + CPP(TemporalDurationPrototypeToString) \ + /* Temporal #sec-temporal.duration.tojson */ \ + CPP(TemporalDurationPrototypeToJSON) \ + /* Temporal #sec-temporal.duration.prototype.valueof */ \ + CPP(TemporalDurationPrototypeValueOf) \ + \ + /* Temporal.Instant */ \ + /* Temporal #sec-temporal.instant */ \ + CPP(TemporalInstantConstructor) \ + /* Temporal #sec-temporal.instant.from */ \ + CPP(TemporalInstantFrom) \ + /* Temporal #sec-temporal.instant.fromepochseconds */ \ + CPP(TemporalInstantFromEpochSeconds) \ + /* Temporal #sec-temporal.instant.fromepochmilliseconds */ \ + CPP(TemporalInstantFromEpochMilliseconds) \ + /* Temporal #sec-temporal.instant.fromepochmicroseconds */ \ + CPP(TemporalInstantFromEpochMicroseconds) \ + /* Temporal #sec-temporal.instant.fromepochnanoseconds */ \ + CPP(TemporalInstantFromEpochNanoseconds) \ + /* Temporal #sec-temporal.instant.compare */ \ + CPP(TemporalInstantCompare) \ + /* Temporal #sec-get-temporal.instant.prototype.epochseconds */ \ + CPP(TemporalInstantPrototypeEpochSeconds) \ + /* Temporal #sec-get-temporal.instant.prototype.epochmilliseconds */ \ + CPP(TemporalInstantPrototypeEpochMilliseconds) \ + /* Temporal #sec-get-temporal.instant.prototype.epochmicroseconds */ \ + CPP(TemporalInstantPrototypeEpochMicroseconds) \ + /* Temporal #sec-get-temporal.instant.prototype.epochnanoseconds */ \ + CPP(TemporalInstantPrototypeEpochNanoseconds) \ + /* Temporal #sec-temporal.instant.prototype.add */ \ + CPP(TemporalInstantPrototypeAdd) \ + /* Temporal #sec-temporal.instant.prototype.subtract */ \ + CPP(TemporalInstantPrototypeSubtract) \ + /* Temporal #sec-temporal.instant.prototype.until */ \ + CPP(TemporalInstantPrototypeUntil) \ + /* Temporal #sec-temporal.instant.prototype.since */ \ + CPP(TemporalInstantPrototypeSince) \ + /* Temporal #sec-temporal.instant.prototype.round */ \ + CPP(TemporalInstantPrototypeRound) \ + /* Temporal #sec-temporal.instant.prototype.equals */ \ + CPP(TemporalInstantPrototypeEquals) \ + /* Temporal #sec-temporal.instant.prototype.tostring */ \ + CPP(TemporalInstantPrototypeToString) \ + /* Temporal #sec-temporal.instant.tojson */ \ + CPP(TemporalInstantPrototypeToJSON) \ + /* Temporal #sec-temporal.instant.prototype.valueof */ \ + CPP(TemporalInstantPrototypeValueOf) \ + /* Temporal #sec-temporal.instant.prototype.tozoneddatetime */ \ + CPP(TemporalInstantPrototypeToZonedDateTime) \ + /* Temporal #sec-temporal.instant.prototype.tozoneddatetimeiso */ \ + CPP(TemporalInstantPrototypeToZonedDateTimeISO) \ + \ + /* Temporal.PlainYearMonth */ \ + /* Temporal #sec-temporal.plainyearmonth */ \ + CPP(TemporalPlainYearMonthConstructor) \ + /* Temporal #sec-temporal.plainyearmonth.from */ \ + CPP(TemporalPlainYearMonthFrom) \ + /* Temporal #sec-temporal.plainyearmonth.compare */ \ + CPP(TemporalPlainYearMonthCompare) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.calendar */ \ + CPP(TemporalPlainYearMonthPrototypeCalendar) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.year */ \ + CPP(TemporalPlainYearMonthPrototypeYear) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.month */ \ + CPP(TemporalPlainYearMonthPrototypeMonth) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.monthcode */ \ + CPP(TemporalPlainYearMonthPrototypeMonthCode) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.daysinyear */ \ + CPP(TemporalPlainYearMonthPrototypeDaysInYear) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.daysinmonth */ \ + CPP(TemporalPlainYearMonthPrototypeDaysInMonth) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.monthsinyear */ \ + CPP(TemporalPlainYearMonthPrototypeMonthsInYear) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.inleapyear */ \ + CPP(TemporalPlainYearMonthPrototypeInLeapYear) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.with */ \ + CPP(TemporalPlainYearMonthPrototypeWith) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.add */ \ + CPP(TemporalPlainYearMonthPrototypeAdd) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.subtract */ \ + CPP(TemporalPlainYearMonthPrototypeSubtract) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.until */ \ + CPP(TemporalPlainYearMonthPrototypeUntil) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.since */ \ + CPP(TemporalPlainYearMonthPrototypeSince) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.equals */ \ + CPP(TemporalPlainYearMonthPrototypeEquals) \ + /* Temporal #sec-temporal.plainyearmonth.tostring */ \ + CPP(TemporalPlainYearMonthPrototypeToString) \ + /* Temporal #sec-temporal.plainyearmonth.tojson */ \ + CPP(TemporalPlainYearMonthPrototypeToJSON) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.valueof */ \ + CPP(TemporalPlainYearMonthPrototypeValueOf) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.toplaindate */ \ + CPP(TemporalPlainYearMonthPrototypeToPlainDate) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.getisofields */ \ + CPP(TemporalPlainYearMonthPrototypeGetISOFields) \ + \ + /* Temporal.PlainMonthDay */ \ + /* Temporal #sec-temporal.plainmonthday */ \ + CPP(TemporalPlainMonthDayConstructor) \ + /* Temporal #sec-temporal.plainmonthday.from */ \ + CPP(TemporalPlainMonthDayFrom) \ + /* There are no compare for PlainMonthDay */ \ + /* See https://github.com/tc39/proposal-temporal/issues/1547 */ \ + /* Temporal #sec-get-temporal.plainmonthday.prototype.calendar */ \ + CPP(TemporalPlainMonthDayPrototypeCalendar) \ + /* Temporal #sec-get-temporal.plainmonthday.prototype.monthcode */ \ + CPP(TemporalPlainMonthDayPrototypeMonthCode) \ + /* Temporal #sec-get-temporal.plainmonthday.prototype.day */ \ + CPP(TemporalPlainMonthDayPrototypeDay) \ + /* Temporal #sec-temporal.plainmonthday.prototype.with */ \ + CPP(TemporalPlainMonthDayPrototypeWith) \ + /* Temporal #sec-temporal.plainmonthday.prototype.equals */ \ + CPP(TemporalPlainMonthDayPrototypeEquals) \ + /* Temporal #sec-temporal.plainmonthday.prototype.tostring */ \ + CPP(TemporalPlainMonthDayPrototypeToString) \ + /* Temporal #sec-temporal.plainmonthday.tojson */ \ + CPP(TemporalPlainMonthDayPrototypeToJSON) \ + /* Temporal #sec-temporal.plainmonthday.prototype.valueof */ \ + CPP(TemporalPlainMonthDayPrototypeValueOf) \ + /* Temporal #sec-temporal.plainmonthday.prototype.toplaindate */ \ + CPP(TemporalPlainMonthDayPrototypeToPlainDate) \ + /* Temporal #sec-temporal.plainmonthday.prototype.getisofields */ \ + CPP(TemporalPlainMonthDayPrototypeGetISOFields) \ + \ + /* Temporal.TimeZone */ \ + /* Temporal #sec-temporal.timezone */ \ + CPP(TemporalTimeZoneConstructor) \ + /* Temporal #sec-temporal.timezone.from */ \ + CPP(TemporalTimeZoneFrom) \ + /* Temporal #sec-get-temporal.timezone.prototype.id */ \ + CPP(TemporalTimeZonePrototypeId) \ + /* Temporal #sec-temporal.timezone.prototype.getoffsetnanosecondsfor */ \ + CPP(TemporalTimeZonePrototypeGetOffsetNanosecondsFor) \ + /* Temporal #sec-temporal.timezone.prototype.getoffsetstringfor */ \ + CPP(TemporalTimeZonePrototypeGetOffsetStringFor) \ + /* Temporal #sec-temporal.timezone.prototype.getplaindatetimefor */ \ + CPP(TemporalTimeZonePrototypeGetPlainDateTimeFor) \ + /* Temporal #sec-temporal.timezone.prototype.getinstantfor */ \ + CPP(TemporalTimeZonePrototypeGetInstantFor) \ + /* Temporal #sec-temporal.timezone.prototype.getpossibleinstantsfor */ \ + CPP(TemporalTimeZonePrototypeGetPossibleInstantsFor) \ + /* Temporal #sec-temporal.timezone.prototype.getnexttransition */ \ + CPP(TemporalTimeZonePrototypeGetNextTransition) \ + /* Temporal #sec-temporal.timezone.prototype.getprevioustransition */ \ + CPP(TemporalTimeZonePrototypeGetPreviousTransition) \ + /* Temporal #sec-temporal.timezone.prototype.tostring */ \ + CPP(TemporalTimeZonePrototypeToString) \ + /* Temporal #sec-temporal.timezone.prototype.tojson */ \ + CPP(TemporalTimeZonePrototypeToJSON) \ + \ + /* Temporal.Calendar */ \ + /* Temporal #sec-temporal.calendar */ \ + CPP(TemporalCalendarConstructor) \ + /* Temporal #sec-temporal.calendar.from */ \ + CPP(TemporalCalendarFrom) \ + /* Temporal #sec-get-temporal.calendar.prototype.id */ \ + CPP(TemporalCalendarPrototypeId) \ + /* Temporal #sec-temporal.calendar.prototype.datefromfields */ \ + CPP(TemporalCalendarPrototypeDateFromFields) \ + /* Temporal #sec-temporal.calendar.prototype.yearmonthfromfields */ \ + CPP(TemporalCalendarPrototypeYearMonthFromFields) \ + /* Temporal #sec-temporal.calendar.prototype.monthdayfromfields */ \ + CPP(TemporalCalendarPrototypeMonthDayFromFields) \ + /* Temporal #sec-temporal.calendar.prototype.dateadd */ \ + CPP(TemporalCalendarPrototypeDateAdd) \ + /* Temporal #sec-temporal.calendar.prototype.dateuntil */ \ + CPP(TemporalCalendarPrototypeDateUntil) \ + /* Temporal #sec-temporal.calendar.prototype.year */ \ + CPP(TemporalCalendarPrototypeYear) \ + /* Temporal #sec-temporal.calendar.prototype.month */ \ + CPP(TemporalCalendarPrototypeMonth) \ + /* Temporal #sec-temporal.calendar.prototype.monthcode */ \ + CPP(TemporalCalendarPrototypeMonthCode) \ + /* Temporal #sec-temporal.calendar.prototype.day */ \ + CPP(TemporalCalendarPrototypeDay) \ + /* Temporal #sec-temporal.calendar.prototype.dayofweek */ \ + CPP(TemporalCalendarPrototypeDayOfWeek) \ + /* Temporal #sec-temporal.calendar.prototype.dayofyear */ \ + CPP(TemporalCalendarPrototypeDayOfYear) \ + /* Temporal #sec-temporal.calendar.prototype.weekofyear */ \ + CPP(TemporalCalendarPrototypeWeekOfYear) \ + /* Temporal #sec-temporal.calendar.prototype.daysinweek */ \ + CPP(TemporalCalendarPrototypeDaysInWeek) \ + /* Temporal #sec-temporal.calendar.prototype.daysinmonth */ \ + CPP(TemporalCalendarPrototypeDaysInMonth) \ + /* Temporal #sec-temporal.calendar.prototype.daysinyear */ \ + CPP(TemporalCalendarPrototypeDaysInYear) \ + /* Temporal #sec-temporal.calendar.prototype.monthsinyear */ \ + CPP(TemporalCalendarPrototypeMonthsInYear) \ + /* Temporal #sec-temporal.calendar.prototype.inleapyear */ \ + CPP(TemporalCalendarPrototypeInLeapYear) \ + /* Temporal #sec-temporal.calendar.prototype.fields */ \ + CPP(TemporalCalendarPrototypeFields) \ + /* Temporal #sec-temporal.calendar.prototype.mergefields */ \ + CPP(TemporalCalendarPrototypeMergeFields) \ + /* Temporal #sec-temporal.calendar.prototype.tostring */ \ + CPP(TemporalCalendarPrototypeToString) \ + /* Temporal #sec-temporal.calendar.prototype.tojson */ \ + CPP(TemporalCalendarPrototypeToJSON) #define BUILTIN_LIST_BASE(CPP, TFJ, TFC, TFS, TFH, ASM) \ BUILTIN_LIST_BASE_TIER0(CPP, TFJ, TFC, TFS, TFH, ASM) \ @@ -1203,6 +1784,45 @@ namespace internal { /* ES #sec-string.prototype.touppercase */ \ CPP(StringPrototypeToUpperCaseIntl) \ TFS(StringToLowerCaseIntl, kString) \ + \ + /* Temporal */ \ + /* Temporal #sec-temporal.calendar.prototype.era */ \ + CPP(TemporalCalendarPrototypeEra) \ + /* Temporal #sec-temporal.calendar.prototype.erayear */ \ + CPP(TemporalCalendarPrototypeEraYear) \ + /* Temporal #sec-temporal.duration.prototype.tolocalestring */ \ + CPP(TemporalDurationPrototypeToLocaleString) \ + /* Temporal #sec-temporal.instant.prototype.tolocalestring */ \ + CPP(TemporalInstantPrototypeToLocaleString) \ + /* Temporal #sec-get-temporal.plaindate.prototype.era */ \ + CPP(TemporalPlainDatePrototypeEra) \ + /* Temporal #sec-get-temporal.plaindate.prototype.erayear */ \ + CPP(TemporalPlainDatePrototypeEraYear) \ + /* Temporal #sec-temporal.plaindate.prototype.tolocalestring */ \ + CPP(TemporalPlainDatePrototypeToLocaleString) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.era */ \ + CPP(TemporalPlainDateTimePrototypeEra) \ + /* Temporal #sec-get-temporal.plaindatetime.prototype.erayear */ \ + CPP(TemporalPlainDateTimePrototypeEraYear) \ + /* Temporal #sec-temporal.plaindatetime.prototype.tolocalestring */ \ + CPP(TemporalPlainDateTimePrototypeToLocaleString) \ + /* Temporal #sec-temporal.plainmonthday.prototype.tolocalestring */ \ + CPP(TemporalPlainMonthDayPrototypeToLocaleString) \ + /* Temporal #sec-temporal.plaintime.prototype.tolocalestring */ \ + CPP(TemporalPlainTimePrototypeToLocaleString) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.era */ \ + CPP(TemporalPlainYearMonthPrototypeEra) \ + /* Temporal #sec-get-temporal.plainyearmonth.prototype.erayear */ \ + CPP(TemporalPlainYearMonthPrototypeEraYear) \ + /* Temporal #sec-temporal.plainyearmonth.prototype.tolocalestring */ \ + CPP(TemporalPlainYearMonthPrototypeToLocaleString) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.era */ \ + CPP(TemporalZonedDateTimePrototypeEra) \ + /* Temporal #sec-get-temporal.zoneddatetime.prototype.erayear */ \ + CPP(TemporalZonedDateTimePrototypeEraYear) \ + /* Temporal #sec-temporal.zoneddatetime.prototype.tolocalestring */ \ + CPP(TemporalZonedDateTimePrototypeToLocaleString) \ + \ CPP(V8BreakIteratorConstructor) \ CPP(V8BreakIteratorInternalAdoptText) \ CPP(V8BreakIteratorInternalBreakType) \ diff --git a/deps/v8/src/builtins/builtins-handler-gen.cc b/deps/v8/src/builtins/builtins-handler-gen.cc index f3dd16f1d056cb..ed039cc680a18d 100644 --- a/deps/v8/src/builtins/builtins-handler-gen.cc +++ b/deps/v8/src/builtins/builtins-handler-gen.cc @@ -58,11 +58,21 @@ void Builtins::Generate_KeyedStoreIC_Megamorphic( KeyedStoreGenericGenerator::Generate(state); } +void Builtins::Generate_KeyedDefineOwnIC_Megamorphic( + compiler::CodeAssemblerState* state) { + KeyedDefineOwnGenericGenerator::Generate(state); +} + void Builtins::Generate_StoreIC_NoFeedback( compiler::CodeAssemblerState* state) { StoreICNoFeedbackGenerator::Generate(state); } +void Builtins::Generate_StoreOwnIC_NoFeedback( + compiler::CodeAssemblerState* state) { + StoreOwnICNoFeedbackGenerator::Generate(state); +} + // All possible fast-to-fast transitions. Transitions to dictionary mode are not // handled by ElementsTransitionAndStore builtins. #define ELEMENTS_KIND_TRANSITIONS(V) \ diff --git a/deps/v8/src/builtins/builtins-ic-gen.cc b/deps/v8/src/builtins/builtins-ic-gen.cc index 8a525ef45a4b9a..19bf83cabb48f5 100644 --- a/deps/v8/src/builtins/builtins-ic-gen.cc +++ b/deps/v8/src/builtins/builtins-ic-gen.cc @@ -109,6 +109,20 @@ void Builtins::Generate_StoreICBaseline(compiler::CodeAssemblerState* state) { AccessorAssembler assembler(state); assembler.GenerateStoreICBaseline(); } +void Builtins::Generate_StoreOwnIC(compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateStoreOwnIC(); +} +void Builtins::Generate_StoreOwnICTrampoline( + compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateStoreOwnICTrampoline(); +} +void Builtins::Generate_StoreOwnICBaseline( + compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateStoreOwnICBaseline(); +} void Builtins::Generate_KeyedStoreIC(compiler::CodeAssemblerState* state) { AccessorAssembler assembler(state); assembler.GenerateKeyedStoreIC(); @@ -123,6 +137,20 @@ void Builtins::Generate_KeyedStoreICBaseline( AccessorAssembler assembler(state); assembler.GenerateKeyedStoreICBaseline(); } +void Builtins::Generate_KeyedDefineOwnIC(compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateKeyedDefineOwnIC(); +} +void Builtins::Generate_KeyedDefineOwnICTrampoline( + compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateKeyedDefineOwnICTrampoline(); +} +void Builtins::Generate_KeyedDefineOwnICBaseline( + compiler::CodeAssemblerState* state) { + AccessorAssembler assembler(state); + assembler.GenerateKeyedDefineOwnICBaseline(); +} void Builtins::Generate_StoreInArrayLiteralIC( compiler::CodeAssemblerState* state) { AccessorAssembler assembler(state); diff --git a/deps/v8/src/builtins/builtins-iterator-gen.cc b/deps/v8/src/builtins/builtins-iterator-gen.cc index d16474feaebcb5..11c11b00b03915 100644 --- a/deps/v8/src/builtins/builtins-iterator-gen.cc +++ b/deps/v8/src/builtins/builtins-iterator-gen.cc @@ -316,6 +316,10 @@ void IteratorBuiltinsAssembler::FastIterableToList( TVariable* var_result, Label* slow) { Label done(this), check_string(this), check_map(this), check_set(this); + // Always call the `next()` builtins when the debugger is + // active, to ensure we capture side-effects correctly. + GotoIf(IsDebugActive(), slow); + GotoIfNot( Word32Or(IsFastJSArrayWithNoCustomIteration(context, iterable), IsFastJSArrayForReadWithNoCustomIteration(context, iterable)), diff --git a/deps/v8/src/builtins/builtins-microtask-queue-gen.cc b/deps/v8/src/builtins/builtins-microtask-queue-gen.cc index 6c677e922d9b2f..ab7dcf832ff10a 100644 --- a/deps/v8/src/builtins/builtins-microtask-queue-gen.cc +++ b/deps/v8/src/builtins/builtins-microtask-queue-gen.cc @@ -331,7 +331,7 @@ void MicrotaskQueueBuiltinsAssembler::RunSingleMicrotask( BIND(&if_exception); { // Report unhandled exceptions from microtasks. - CallRuntime(Runtime::kReportMessageFromMicrotask, current_context, + CallRuntime(Runtime::kReportMessageFromMicrotask, GetCurrentContext(), var_exception.value()); RewindEnteredContext(saved_entered_context_count); SetCurrentContext(current_context); diff --git a/deps/v8/src/builtins/builtins-temporal.cc b/deps/v8/src/builtins/builtins-temporal.cc new file mode 100644 index 00000000000000..bbffa68a1df031 --- /dev/null +++ b/deps/v8/src/builtins/builtins-temporal.cc @@ -0,0 +1,631 @@ +// Copyright 2021 the V8 project authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "src/builtins/builtins-utils-inl.h" +#include "src/builtins/builtins.h" +#include "src/objects/bigint.h" +#include "src/objects/js-temporal-objects-inl.h" + +namespace v8 { +namespace internal { + +#define TO_BE_IMPLEMENTED(id) \ + BUILTIN(id) { \ + HandleScope scope(isolate); \ + UNIMPLEMENTED(); \ + } + +/* Temporal #sec-temporal.now.timezone */ +TO_BE_IMPLEMENTED(TemporalNowTimeZone) +/* Temporal #sec-temporal.now.instant */ +TO_BE_IMPLEMENTED(TemporalNowInstant) +/* Temporal #sec-temporal.now.plaindatetime */ +TO_BE_IMPLEMENTED(TemporalNowPlainDateTime) +/* Temporal #sec-temporal.now.plaindatetimeiso */ +TO_BE_IMPLEMENTED(TemporalNowPlainDateTimeISO) +/* Temporal #sec-temporal.now.zoneddatetime */ +TO_BE_IMPLEMENTED(TemporalNowZonedDateTime) +/* Temporal #sec-temporal.now.zoneddatetimeiso */ +TO_BE_IMPLEMENTED(TemporalNowZonedDateTimeISO) +/* Temporal #sec-temporal.now.plaindate */ +TO_BE_IMPLEMENTED(TemporalNowPlainDate) +/* Temporal #sec-temporal.now.plaindateiso */ +TO_BE_IMPLEMENTED(TemporalNowPlainDateISO) +/* There are no Temporal.now.plainTime */ +/* See https://github.com/tc39/proposal-temporal/issues/1540 */ +/* Temporal #sec-temporal.now.plaintimeiso */ +TO_BE_IMPLEMENTED(TemporalNowPlainTimeISO) + +/* Temporal.PlaneDate */ +/* Temporal #sec-temporal.plaindate */ +TO_BE_IMPLEMENTED(TemporalPlainDateConstructor) +/* Temporal #sec-temporal.plaindate.from */ +TO_BE_IMPLEMENTED(TemporalPlainDateFrom) +/* Temporal #sec-temporal.plaindate.compare */ +TO_BE_IMPLEMENTED(TemporalPlainDateCompare) +/* Temporal #sec-get-temporal.plaindate.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeCalendar) +/* Temporal #sec-get-temporal.plaindate.prototype.year */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeYear) +/* Temporal #sec-get-temporal.plaindate.prototype.month */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeMonth) +/* Temporal #sec-get-temporal.plaindate.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeMonthCode) +/* Temporal #sec-get-temporal.plaindate.prototype.day */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDay) +/* Temporal #sec-get-temporal.plaindate.prototype.dayofweek */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDayOfWeek) +/* Temporal #sec-get-temporal.plaindate.prototype.dayofyear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDayOfYear) +/* Temporal #sec-get-temporal.plaindate.prototype.weekofyear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeWeekOfYear) +/* Temporal #sec-get-temporal.plaindate.prototype.daysinweek */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDaysInWeek) +/* Temporal #sec-get-temporal.plaindate.prototype.daysinmonth */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDaysInMonth) +/* Temporal #sec-get-temporal.plaindate.prototype.daysinyear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeDaysInYear) +/* Temporal #sec-get-temporal.plaindate.prototype.monthsinyear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeMonthsInYear) +/* Temporal #sec-get-temporal.plaindate.prototype.inleapyear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeInLeapYear) +/* Temporal #sec-temporal.plaindate.prototype.toplainyearmonth */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToPlainYearMonth) +/* Temporal #sec-temporal.plaindate.prototype.toplainmonthday */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToPlainMonthDay) +/* Temporal #sec-temporal.plaindate.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeGetISOFields) +/* Temporal #sec-temporal.plaindate.prototype.add */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeAdd) +/* Temporal #sec-temporal.plaindate.prototype.substract */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeSubtract) +/* Temporal #sec-temporal.plaindate.prototype.with */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeWith) +/* Temporal #sec-temporal.plaindate.prototype.withcalendar */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeWithCalendar) +/* Temporal #sec-temporal.plaindate.prototype.until */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeUntil) +/* Temporal #sec-temporal.plaindate.prototype.since */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeSince) +/* Temporal #sec-temporal.plaindate.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeEquals) +/* Temporal #sec-temporal.plaindate.prototype.toplaindatetime */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToPlainDateTime) +/* Temporal #sec-temporal.plaindate.prototype.tozoneddatetime */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToZonedDateTime) +/* Temporal #sec-temporal.plaindate.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToString) +/* Temporal #sec-temporal.plaindate.prototype.tojson */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToJSON) +/* Temporal #sec-temporal.plaindate.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeValueOf) + +/* Temporal.PlaneTime */ +/* Temporal #sec-temporal.plaintime */ +TO_BE_IMPLEMENTED(TemporalPlainTimeConstructor) +/* Temporal #sec-temporal.plaintime.from */ +TO_BE_IMPLEMENTED(TemporalPlainTimeFrom) +/* Temporal #sec-temporal.plaintime.compare */ +TO_BE_IMPLEMENTED(TemporalPlainTimeCompare) +/* Temporal #sec-get-temporal.plaintime.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeCalendar) +/* Temporal #sec-get-temporal.plaintime.prototype.hour */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeHour) +/* Temporal #sec-get-temporal.plaintime.prototype.minute */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeMinute) +/* Temporal #sec-get-temporal.plaintime.prototype.second */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeSecond) +/* Temporal #sec-get-temporal.plaintime.prototype.millisecond */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeMillisecond) +/* Temporal #sec-get-temporal.plaintime.prototype.microsecond */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeMicrosecond) +/* Temporal #sec-get-temporal.plaintime.prototype.nanoseond */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeNanosecond) +/* Temporal #sec-temporal.plaintime.prototype.add */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeAdd) +/* Temporal #sec-temporal.plaintime.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeSubtract) +/* Temporal #sec-temporal.plaintime.prototype.with */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeWith) +/* Temporal #sec-temporal.plaintime.prototype.until */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeUntil) +/* Temporal #sec-temporal.plaintime.prototype.since */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeSince) +/* Temporal #sec-temporal.plaintime.prototype.round */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeRound) +/* Temporal #sec-temporal.plaintime.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeEquals) +/* Temporal #sec-temporal.plaintime.prototype.toplaindatetime */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeToPlainDateTime) +/* Temporal #sec-temporal.plaintime.prototype.tozoneddatetime */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeToZonedDateTime) +/* Temporal #sec-temporal.plaintime.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeGetISOFields) +/* Temporal #sec-temporal.plaintime.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeToString) +/* Temporal #sec-temporal.plaindtimeprototype.tojson */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeToJSON) +/* Temporal #sec-temporal.plaintime.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeValueOf) + +/* Temporal.PlaneDateTime */ +/* Temporal #sec-temporal.plaindatetime */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimeConstructor) +/* Temporal #sec-temporal.plaindatetime.from */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimeFrom) +/* Temporal #sec-temporal.plaindatetime.compare */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimeCompare) +/* Temporal #sec-get-temporal.plaindatetime.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeCalendar) +/* Temporal #sec-get-temporal.plaindatetime.prototype.year */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeYear) +/* Temporal #sec-get-temporal.plaindatetime.prototype.month */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMonth) +/* Temporal #sec-get-temporal.plaindatetime.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMonthCode) +/* Temporal #sec-get-temporal.plaindatetime.prototype.day */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDay) +/* Temporal #sec-get-temporal.plaindatetime.prototype.hour */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeHour) +/* Temporal #sec-get-temporal.plaindatetime.prototype.minute */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMinute) +/* Temporal #sec-get-temporal.plaindatetime.prototype.second */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeSecond) +/* Temporal #sec-get-temporal.plaindatetime.prototype.millisecond */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMillisecond) +/* Temporal #sec-get-temporal.plaindatetime.prototype.microsecond */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMicrosecond) +/* Temporal #sec-get-temporal.plaindatetime.prototype.nanosecond */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeNanosecond) +/* Temporal #sec-get-temporal.plaindatetime.prototype.dayofweek */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDayOfWeek) +/* Temporal #sec-get-temporal.plaindatetime.prototype.dayofyear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDayOfYear) +/* Temporal #sec-get-temporal.plaindatetime.prototype.weekofyear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeWeekOfYear) +/* Temporal #sec-get-temporal.plaindatetime.prototype.daysinweek */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDaysInWeek) +/* Temporal #sec-get-temporal.plaindatetime.prototype.daysinmonth */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDaysInMonth) +/* Temporal #sec-get-temporal.plaindatetime.prototype.daysinyear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeDaysInYear) +/* Temporal #sec-get-temporal.plaindatetime.prototype.monthsinyear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeMonthsInYear) +/* Temporal #sec-get-temporal.plaindatetime.prototype.inleapyear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeInLeapYear) +/* Temporal #sec-temporal.plaindatetime.prototype.with */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeWith) +/* Temporal #sec-temporal.plaindatetime.prototype.withplainTime */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeWithPlainTime) +/* Temporal #sec-temporal.plaindatetime.prototype.withplainDate */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeWithPlainDate) +/* Temporal #sec-temporal.plaindatetime.prototype.withcalendar */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeWithCalendar) +/* Temporal #sec-temporal.plaindatetime.prototype.add */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeAdd) +/* Temporal #sec-temporal.plaindatetime.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeSubtract) +/* Temporal #sec-temporal.plaindatetime.prototype.until */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeUntil) +/* Temporal #sec-temporal.plaindatetime.prototype.since */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeSince) +/* Temporal #sec-temporal.plaindatetime.prototype.round */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeRound) +/* Temporal #sec-temporal.plaindatetime.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeEquals) +/* Temporal #sec-temporal.plaindatetime.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToString) +/* Temporal #sec-temporal.plainddatetimeprototype.tojson */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToJSON) +/* Temporal #sec-temporal.plaindatetime.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeValueOf) +/* Temporal #sec-temporal.plaindatetime.prototype.tozoneddatetime */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToZonedDateTime) +/* Temporal #sec-temporal.plaindatetime.prototype.toplaindate */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToPlainDate) +/* Temporal #sec-temporal.plaindatetime.prototype.toplainyearmonth */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToPlainYearMonth) +/* Temporal #sec-temporal.plaindatetime.prototype.toplainmonthday */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToPlainMonthDay) +/* Temporal #sec-temporal.plaindatetime.prototype.toplaintime */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToPlainTime) +/* Temporal #sec-temporal.plaindatetime.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeGetISOFields) + +/* Temporal.ZonedDateTime */ +/* Temporal #sec-temporal.zoneddatetime */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimeConstructor) +/* Temporal #sec-temporal.zoneddatetime.from */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimeFrom) +/* Temporal #sec-temporal.zoneddatetime.compare */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimeCompare) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeCalendar) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.timezone */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeTimeZone) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.year */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.month */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMonth) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMonthCode) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.day */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDay) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.hour */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeHour) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.minute */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMinute) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.second */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeSecond) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.millisecond */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMillisecond) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.microsecond */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMicrosecond) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.nanosecond */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeNanosecond) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.epochsecond */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEpochSeconds) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.epochmilliseconds */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEpochMilliseconds) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.epochmicroseconds */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEpochMicroseconds) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.epochnanoseconds */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEpochNanoseconds) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.dayofweek */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDayOfWeek) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.dayofyear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDayOfYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.weekofyear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWeekOfYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.hoursinday */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeHoursInDay) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinweek */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDaysInWeek) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinmonth */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDaysInMonth) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.daysinyear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeDaysInYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.monthsinyear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeMonthsInYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.inleapyear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeInLeapYear) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.offsetnanoseconds */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeOffsetNanoseconds) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.offset */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeOffset) +/* Temporal #sec-temporal.zoneddatetime.prototype.with */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWith) +/* Temporal #sec-temporal.zoneddatetime.prototype.withplaintime */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWithPlainTime) +/* Temporal #sec-temporal.zoneddatetime.prototype.withplaindate */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWithPlainDate) +/* Temporal #sec-temporal.zoneddatetime.prototype.withtimezone */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWithTimeZone) +/* Temporal #sec-temporal.zoneddatetime.prototype.withcalendar */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeWithCalendar) +/* Temporal #sec-temporal.zoneddatetime.prototype.add */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeAdd) +/* Temporal #sec-temporal.zoneddatetime.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeSubtract) +/* Temporal #sec-temporal.zoneddatetime.prototype.until */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeUntil) +/* Temporal #sec-temporal.zoneddatetime.prototype.since */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeSince) +/* Temporal #sec-temporal.zoneddatetime.prototype.round */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeRound) +/* Temporal #sec-temporal.zoneddatetime.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEquals) +/* Temporal #sec-temporal.zoneddatetime.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToString) +/* Temporal #sec-temporal.zonedddatetimeprototype.tojson */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToJSON) +/* Temporal #sec-temporal.zoneddatetime.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeValueOf) +/* Temporal #sec-temporal.zoneddatetime.prototype.startofday */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeStartOfDay) +/* Temporal #sec-temporal.zoneddatetime.prototype.toinstant */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToInstant) +/* Temporal #sec-temporal.zoneddatetime.prototype.toplaindate */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToPlainDate) +/* Temporal #sec-temporal.zoneddatetime.prototype.toplaintime */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToPlainTime) +/* Temporal #sec-temporal.zoneddatetime.prototype.toplaindatetime */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToPlainDateTime) +/* Temporal #sec-temporal.zoneddatetime.prototype.toplainyearmonth */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToPlainYearMonth) +/* Temporal #sec-temporal.zoneddatetime.prototype.toplainmonthday */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToPlainMonthDay) +/* Temporal #sec-temporal.zoneddatetime.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeGetISOFields) + +/* Temporal.Duration */ +/* Temporal #sec-temporal.duration */ +TO_BE_IMPLEMENTED(TemporalDurationConstructor) +/* Temporal #sec-temporal.duration.from */ +TO_BE_IMPLEMENTED(TemporalDurationFrom) +/* Temporal #sec-temporal.duration.compare */ +TO_BE_IMPLEMENTED(TemporalDurationCompare) +/* Temporal #sec-get-temporal.duration.prototype.years */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeYears) +/* Temporal #sec-get-temporal.duration.prototype.months */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeMonths) +/* Temporal #sec-get-temporal.duration.prototype.weeks */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeWeeks) +/* Temporal #sec-get-temporal.duration.prototype.days */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeDays) +/* Temporal #sec-get-temporal.duration.prototype.hours */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeHours) +/* Temporal #sec-get-temporal.duration.prototype.minutes */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeMinutes) +/* Temporal #sec-get-temporal.duration.prototype.seconds */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeSeconds) +/* Temporal #sec-get-temporal.duration.prototype.milliseconds */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeMilliseconds) +/* Temporal #sec-get-temporal.duration.prototype.microseconds */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeMicroseconds) +/* Temporal #sec-get-temporal.duration.prototype.nanoseconds */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeNanoseconds) +/* Temporal #sec-get-temporal.duration.prototype.sign */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeSign) +/* Temporal #sec-get-temporal.duration.prototype.blank */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeBlank) +/* Temporal #sec-temporal.duration.prototype.with */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeWith) +/* Temporal #sec-temporal.duration.prototype.negated */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeNegated) +/* Temporal #sec-temporal.duration.prototype.abs */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeAbs) +/* Temporal #sec-temporal.duration.prototype.add */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeAdd) +/* Temporal #sec-temporal.duration.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeSubtract) +/* Temporal #sec-temporal.duration.prototype.round */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeRound) +/* Temporal #sec-temporal.duration.prototype.total */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeTotal) +/* Temporal #sec-temporal.duration.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeToString) +/* Temporal #sec-temporal.duration.tojson */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeToJSON) +/* Temporal #sec-temporal.duration.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeValueOf) + +/* Temporal.Instant */ +/* Temporal #sec-temporal.instant */ +TO_BE_IMPLEMENTED(TemporalInstantConstructor) +/* Temporal #sec-temporal.instant.from */ +TO_BE_IMPLEMENTED(TemporalInstantFrom) +/* Temporal #sec-temporal.instant.fromepochseconds */ +TO_BE_IMPLEMENTED(TemporalInstantFromEpochSeconds) +/* Temporal #sec-temporal.instant.fromepochmilliseconds */ +TO_BE_IMPLEMENTED(TemporalInstantFromEpochMilliseconds) +/* Temporal #sec-temporal.instant.fromepochmicroseconds */ +TO_BE_IMPLEMENTED(TemporalInstantFromEpochMicroseconds) +/* Temporal #sec-temporal.instant.fromepochnanoseconds */ +TO_BE_IMPLEMENTED(TemporalInstantFromEpochNanoseconds) +/* Temporal #sec-temporal.instant.compare */ +TO_BE_IMPLEMENTED(TemporalInstantCompare) +/* Temporal #sec-get-temporal.instant.prototype.epochseconds */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeEpochSeconds) +/* Temporal #sec-get-temporal.instant.prototype.epochmilliseconds */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeEpochMilliseconds) +/* Temporal #sec-get-temporal.instant.prototype.epochmicroseconds */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeEpochMicroseconds) +/* Temporal #sec-get-temporal.instant.prototype.epochnanoseconds */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeEpochNanoseconds) +/* Temporal #sec-temporal.instant.prototype.add */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeAdd) +/* Temporal #sec-temporal.instant.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeSubtract) +/* Temporal #sec-temporal.instant.prototype.until */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeUntil) +/* Temporal #sec-temporal.instant.prototype.since */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeSince) +/* Temporal #sec-temporal.instant.prototype.round */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeRound) +/* Temporal #sec-temporal.instant.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeEquals) +/* Temporal #sec-temporal.instant.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeToString) +/* Temporal #sec-temporal.instant.tojson */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeToJSON) +/* Temporal #sec-temporal.instant.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeValueOf) +/* Temporal #sec-temporal.instant.prototype.tozoneddatetime */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeToZonedDateTime) +/* Temporal #sec-temporal.instant.prototype.tozoneddatetimeiso */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeToZonedDateTimeISO) + +/* Temporal.PlainYearMonth */ +/* Temporal #sec-temporal.plainyearmonth */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthConstructor) +/* Temporal #sec-temporal.plainyearmonth.from */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthFrom) +/* Temporal #sec-temporal.plainyearmonth.compare */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthCompare) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeCalendar) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.year */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeYear) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.month */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeMonth) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeMonthCode) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.daysinyear */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeDaysInYear) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.daysinmonth */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeDaysInMonth) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.monthsinyear */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeMonthsInYear) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.inleapyear */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeInLeapYear) +/* Temporal #sec-temporal.plainyearmonth.prototype.with */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeWith) +/* Temporal #sec-temporal.plainyearmonth.prototype.add */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeAdd) +/* Temporal #sec-temporal.plainyearmonth.prototype.subtract */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeSubtract) +/* Temporal #sec-temporal.plainyearmonth.prototype.until */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeUntil) +/* Temporal #sec-temporal.plainyearmonth.prototype.since */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeSince) +/* Temporal #sec-temporal.plainyearmonth.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeEquals) +/* Temporal #sec-temporal.plainyearmonth.tostring */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeToString) +/* Temporal #sec-temporal.plainyearmonth.tojson */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeToJSON) +/* Temporal #sec-temporal.plainyearmonth.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeValueOf) +/* Temporal #sec-temporal.plainyearmonth.prototype.toplaindate */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeToPlainDate) +/* Temporal #sec-temporal.plainyearmonth.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeGetISOFields) + +/* Temporal.PlainMonthDay */ +/* Temporal #sec-temporal.plainmonthday */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayConstructor) +/* Temporal #sec-temporal.plainmonthday.from */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayFrom) +/* There are no compare for PlainMonthDay */ +/* See https://github.com/tc39/proposal-temporal/issues/1547 */ +/* Temporal #sec-get-temporal.plainmonthday.prototype.calendar */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeCalendar) +/* Temporal #sec-get-temporal.plainmonthday.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeMonthCode) +/* Temporal #sec-get-temporal.plainmonthday.prototype.day */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeDay) +/* Temporal #sec-temporal.plainmonthday.prototype.with */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeWith) +/* Temporal #sec-temporal.plainmonthday.prototype.equals */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeEquals) +/* Temporal #sec-temporal.plainmonthday.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeToString) +/* Temporal #sec-temporal.plainmonthday.tojson */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeToJSON) +/* Temporal #sec-temporal.plainmonthday.prototype.valueof */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeValueOf) +/* Temporal #sec-temporal.plainmonthday.prototype.toplaindate */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeToPlainDate) +/* Temporal #sec-temporal.plainmonthday.prototype.getisofields */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeGetISOFields) + +/* Temporal.TimeZone */ +/* Temporal #sec-temporal.timezone */ +TO_BE_IMPLEMENTED(TemporalTimeZoneConstructor) +/* Temporal #sec-temporal.timezone.from */ +TO_BE_IMPLEMENTED(TemporalTimeZoneFrom) +/* Temporal #sec-get-temporal.timezone.prototype.id */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeId) +/* Temporal #sec-temporal.timezone.prototype.getoffsetnanosecondsfor */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetOffsetNanosecondsFor) +/* Temporal #sec-temporal.timezone.prototype.getoffsetstringfor */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetOffsetStringFor) +/* Temporal #sec-temporal.timezone.prototype.getplaindatetimefor */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetPlainDateTimeFor) +/* Temporal #sec-temporal.timezone.prototype.getinstantfor */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetInstantFor) +/* Temporal #sec-temporal.timezone.prototype.getpossibleinstantsfor */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetPossibleInstantsFor) +/* Temporal #sec-temporal.timezone.prototype.getnexttransition */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetNextTransition) +/* Temporal #sec-temporal.timezone.prototype.getprevioustransition */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeGetPreviousTransition) +/* Temporal #sec-temporal.timezone.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeToString) +/* Temporal #sec-temporal.timezone.prototype.tojson */ +TO_BE_IMPLEMENTED(TemporalTimeZonePrototypeToJSON) + +/* Temporal.Calendar */ +/* Temporal #sec-temporal.calendar */ +TO_BE_IMPLEMENTED(TemporalCalendarConstructor) +/* Temporal #sec-temporal.calendar.from */ +TO_BE_IMPLEMENTED(TemporalCalendarFrom) +/* Temporal #sec-get-temporal.calendar.prototype.id */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeId) +/* Temporal #sec-temporal.calendar.prototype.datefromfields */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDateFromFields) +/* Temporal #sec-temporal.calendar.prototype.yearmonthfromfields */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeYearMonthFromFields) +/* Temporal #sec-temporal.calendar.prototype.monthdayfromfields */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeMonthDayFromFields) +/* Temporal #sec-temporal.calendar.prototype.dateadd */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDateAdd) +/* Temporal #sec-temporal.calendar.prototype.dateuntil */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDateUntil) +/* Temporal #sec-temporal.calendar.prototype.year */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeYear) +/* Temporal #sec-temporal.calendar.prototype.month */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeMonth) +/* Temporal #sec-temporal.calendar.prototype.monthcode */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeMonthCode) +/* Temporal #sec-temporal.calendar.prototype.day */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDay) +/* Temporal #sec-temporal.calendar.prototype.dayofweek */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDayOfWeek) +/* Temporal #sec-temporal.calendar.prototype.dayofyear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDayOfYear) +/* Temporal #sec-temporal.calendar.prototype.weekofyear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeWeekOfYear) +/* Temporal #sec-temporal.calendar.prototype.daysinweek */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDaysInWeek) +/* Temporal #sec-temporal.calendar.prototype.daysinmonth */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDaysInMonth) +/* Temporal #sec-temporal.calendar.prototype.daysinyear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeDaysInYear) +/* Temporal #sec-temporal.calendar.prototype.monthsinyear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeMonthsInYear) +/* Temporal #sec-temporal.calendar.prototype.inleapyear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeInLeapYear) +/* Temporal #sec-temporal.calendar.prototype.fields */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeFields) +/* Temporal #sec-temporal.calendar.prototype.mergefields */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeMergeFields) +/* Temporal #sec-temporal.calendar.prototype.tostring */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeToString) +/* Temporal #sec-temporal.calendar.prototype.tojson */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeToJSON) + +#ifdef V8_INTL_SUPPORT +/* Temporal */ +/* Temporal #sec-temporal.calendar.prototype.era */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeEra) +/* Temporal #sec-temporal.calendar.prototype.erayear */ +TO_BE_IMPLEMENTED(TemporalCalendarPrototypeEraYear) +/* Temporal #sec-temporal.duration.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalDurationPrototypeToLocaleString) +/* Temporal #sec-temporal.instant.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalInstantPrototypeToLocaleString) +/* Temporal #sec-get-temporal.plaindate.prototype.era */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeEra) +/* Temporal #sec-get-temporal.plaindate.prototype.erayear */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeEraYear) +/* Temporal #sec-temporal.plaindate.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalPlainDatePrototypeToLocaleString) +/* Temporal #sec-get-temporal.plaindatetime.prototype.era */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeEra) +/* Temporal #sec-get-temporal.plaindatetime.prototype.erayear */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeEraYear) +/* Temporal #sec-temporal.plaindatetime.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalPlainDateTimePrototypeToLocaleString) +/* Temporal #sec-temporal.plainmonthday.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalPlainMonthDayPrototypeToLocaleString) +/* Temporal #sec-temporal.plaintime.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalPlainTimePrototypeToLocaleString) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.era */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeEra) +/* Temporal #sec-get-temporal.plainyearmonth.prototype.erayear */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeEraYear) +/* Temporal #sec-temporal.plainyearmonth.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalPlainYearMonthPrototypeToLocaleString) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.era */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEra) +/* Temporal #sec-get-temporal.zoneddatetime.prototype.erayear */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeEraYear) +/* Temporal #sec-temporal.zoneddatetime.prototype.tolocalestring */ +TO_BE_IMPLEMENTED(TemporalZonedDateTimePrototypeToLocaleString) +#endif // V8_INTL_SUPPORT + +} // namespace internal +} // namespace v8 diff --git a/deps/v8/src/builtins/builtins-typed-array.cc b/deps/v8/src/builtins/builtins-typed-array.cc index a7827e7d9f068b..f64d2aeab64eca 100644 --- a/deps/v8/src/builtins/builtins-typed-array.cc +++ b/deps/v8/src/builtins/builtins-typed-array.cc @@ -218,7 +218,7 @@ BUILTIN(TypedArrayPrototypeIncludes) { if (args.length() < 2) return ReadOnlyRoots(isolate).false_value(); - int64_t len = array->length(); + int64_t len = array->GetLength(); if (len == 0) return ReadOnlyRoots(isolate).false_value(); int64_t index = 0; diff --git a/deps/v8/src/builtins/builtins.cc b/deps/v8/src/builtins/builtins.cc index d0045b43d5d328..af1e7490b0eb48 100644 --- a/deps/v8/src/builtins/builtins.cc +++ b/deps/v8/src/builtins/builtins.cc @@ -165,18 +165,33 @@ Handle Builtins::OrdinaryToPrimitive(OrdinaryToPrimitiveHint hint) { UNREACHABLE(); } +FullObjectSlot Builtins::builtin_slot(Builtin builtin) { + Address* location = &isolate_->builtin_table()[Builtins::ToInt(builtin)]; + return FullObjectSlot(location); +} + +FullObjectSlot Builtins::builtin_tier0_slot(Builtin builtin) { + DCHECK(IsTier0(builtin)); + Address* location = + &isolate_->builtin_tier0_table()[Builtins::ToInt(builtin)]; + return FullObjectSlot(location); +} + void Builtins::set_code(Builtin builtin, Code code) { DCHECK_EQ(builtin, code.builtin_id()); - isolate_->heap()->set_builtin(builtin, code); + DCHECK(Internals::HasHeapObjectTag(code.ptr())); + // The given builtin may be uninitialized thus we cannot check its type here. + isolate_->builtin_table()[Builtins::ToInt(builtin)] = code.ptr(); } -Code Builtins::code(Builtin builtin_enum) { - return isolate_->heap()->builtin(builtin_enum); +Code Builtins::code(Builtin builtin) { + Address ptr = isolate_->builtin_table()[Builtins::ToInt(builtin)]; + return Code::cast(Object(ptr)); } Handle Builtins::code_handle(Builtin builtin) { - return Handle( - reinterpret_cast(isolate_->heap()->builtin_address(builtin))); + Address* location = &isolate_->builtin_table()[Builtins::ToInt(builtin)]; + return Handle(location); } // static @@ -272,15 +287,12 @@ bool Builtins::IsBuiltin(const Code code) { bool Builtins::IsBuiltinHandle(Handle maybe_code, Builtin* builtin) const { - Heap* heap = isolate_->heap(); - Address handle_location = maybe_code.address(); - Address end = - heap->builtin_address(static_cast(Builtins::kBuiltinCount)); - if (handle_location >= end) return false; - Address start = heap->builtin_address(static_cast(0)); - if (handle_location < start) return false; - *builtin = FromInt(static_cast(handle_location - start) >> - kSystemPointerSizeLog2); + Address* handle_location = maybe_code.location(); + Address* builtins_table = isolate_->builtin_table(); + if (handle_location < builtins_table) return false; + Address* builtins_table_end = &builtins_table[Builtins::kBuiltinCount]; + if (handle_location >= builtins_table_end) return false; + *builtin = FromInt(static_cast(handle_location - builtins_table)); return true; } @@ -298,8 +310,8 @@ void Builtins::InitializeIsolateDataTables(Isolate* isolate) { // The entry table. for (Builtin i = Builtins::kFirst; i <= Builtins::kLast; ++i) { - DCHECK(Builtins::IsBuiltinId(isolate->heap()->builtin(i).builtin_id())); - DCHECK(isolate->heap()->builtin(i).is_off_heap_trampoline()); + DCHECK(Builtins::IsBuiltinId(isolate->builtins()->code(i).builtin_id())); + DCHECK(isolate->builtins()->code(i).is_off_heap_trampoline()); isolate_data->builtin_entry_table()[ToInt(i)] = embedded_data.InstructionStartOfBuiltin(i); } diff --git a/deps/v8/src/builtins/builtins.h b/deps/v8/src/builtins/builtins.h index e606a3881e1402..79e4da840cd09b 100644 --- a/deps/v8/src/builtins/builtins.h +++ b/deps/v8/src/builtins/builtins.h @@ -276,6 +276,11 @@ class Builtins { js_entry_handler_offset_ = offset; } + // Returns given builtin's slot in the main builtin table. + FullObjectSlot builtin_slot(Builtin builtin); + // Returns given builtin's slot in the tier0 builtin table. + FullObjectSlot builtin_tier0_slot(Builtin builtin); + private: static void Generate_CallFunction(MacroAssembler* masm, ConvertReceiverMode mode); diff --git a/deps/v8/src/builtins/convert.tq b/deps/v8/src/builtins/convert.tq index 6a3c157db8e256..2a36badfb74c87 100644 --- a/deps/v8/src/builtins/convert.tq +++ b/deps/v8/src/builtins/convert.tq @@ -88,6 +88,9 @@ FromConstexpr(i: constexpr int31): uintptr { FromConstexpr(i: constexpr int31): float64 { return Float64Constant(i); } +FromConstexpr(i: constexpr int32): float64 { + return Float64Constant(i); +} FromConstexpr(i: constexpr float64): float64 { return Float64Constant(i); } diff --git a/deps/v8/src/builtins/ia32/builtins-ia32.cc b/deps/v8/src/builtins/ia32/builtins-ia32.cc index c140a2c812fec5..aed3333c71ecbf 100644 --- a/deps/v8/src/builtins/ia32/builtins-ia32.cc +++ b/deps/v8/src/builtins/ia32/builtins-ia32.cc @@ -2447,7 +2447,11 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, StackArgumentsAccessor args(eax); __ AssertFunction(edi, edx); + Label class_constructor; __ mov(edx, FieldOperand(edi, JSFunction::kSharedFunctionInfoOffset)); + __ test(FieldOperand(edx, SharedFunctionInfo::kFlagsOffset), + Immediate(SharedFunctionInfo::IsClassConstructorBit::kMask)); + __ j(not_zero, &class_constructor); // Enter the context of the function; ToObject has to run in the function // context, and we also need to take the global proxy from the function @@ -2528,6 +2532,14 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ movzx_w( ecx, FieldOperand(edx, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(edi, no_reg, ecx, eax, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ push(edi); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } namespace { @@ -3007,6 +3019,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); diff --git a/deps/v8/src/builtins/loong64/builtins-loong64.cc b/deps/v8/src/builtins/loong64/builtins-loong64.cc index 714353fc96dc20..30632232270ffd 100644 --- a/deps/v8/src/builtins/loong64/builtins-loong64.cc +++ b/deps/v8/src/builtins/loong64/builtins-loong64.cc @@ -71,6 +71,34 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, Register scratch2, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Label loop, entry; + if (kJSArgcIncludesReceiver) { + __ Sub_d(scratch, argc, Operand(kJSArgcReceiverSlots)); + } else { + __ mov(scratch, argc); + } + __ Branch(&entry); + __ bind(&loop); + __ Alsl_d(scratch2, scratch, array, kPointerSizeLog2, t7); + __ Ld_d(scratch2, MemOperand(scratch2, 0)); + if (element_type == ArgumentsElementType::kHandle) { + __ Ld_d(scratch2, MemOperand(scratch2, 0)); + } + __ Push(scratch2); + __ bind(&entry); + __ Add_d(scratch, scratch, Operand(-1)); + __ Branch(&loop, greater_equal, scratch, Operand(zero_reg)); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- a0 : number of arguments @@ -90,12 +118,14 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { __ Push(cp, a0); __ SmiUntag(a0); - // Set up pointer to last argument (skip receiver). + // Set up pointer to first argument (skip receiver). __ Add_d( t2, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t3, t0); + // t2: Pointer to start of arguments. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t3, t0, ArgumentsElementType::kRaw); // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -113,9 +143,11 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { } // Remove caller arguments from the stack and return. - __ SmiScale(t3, t3, kPointerSizeLog2); - __ Add_d(sp, sp, t3); - __ Add_d(sp, sp, kPointerSize); + __ DropArguments(t3, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver, + t3); __ Ret(); } @@ -221,7 +253,9 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { // InvokeFunction. // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t0, t1); + // t2: Pointer to start of argument. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t0, t1, ArgumentsElementType::kRaw); // We need two copies because we may have to return the original one // and the calling conventions dictate that the called function pops the // receiver. The second copy is pushed after the arguments, @@ -267,9 +301,11 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { __ LeaveFrame(StackFrame::CONSTRUCT); // Remove caller arguments from the stack and return. - __ SmiScale(a4, a1, kPointerSizeLog2); - __ Add_d(sp, sp, a4); - __ Add_d(sp, sp, kPointerSize); + __ DropArguments(a1, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver, + a4); __ Ret(); __ bind(&check_receiver); @@ -391,6 +427,9 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) { __ Ld_d(a3, FieldMemOperand(a4, JSFunction::kSharedFunctionInfoOffset)); __ Ld_hu( a3, FieldMemOperand(a3, SharedFunctionInfo::kFormalParameterCountOffset)); + if (kJSArgcIncludesReceiver) { + __ Sub_d(a3, a3, Operand(kJSArgcReceiverSlots)); + } __ Ld_d(t1, FieldMemOperand( a1, JSGeneratorObject::kParametersAndRegistersOffset)); { @@ -723,23 +762,17 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, __ Push(a2); // Check if we have enough stack space to push all arguments. - __ addi_d(a6, a4, 1); + if (kJSArgcIncludesReceiver) { + __ mov(a6, a4); + } else { + __ addi_d(a6, a4, 1); + } Generate_CheckStackOverflow(masm, a6, a0, s2); - // Copy arguments to the stack in a loop. + // Copy arguments to the stack. // a4: argc // a5: argv, i.e. points to first arg - Label loop, entry; - __ Alsl_d(s1, a4, a5, kPointerSizeLog2, t7); - __ b(&entry); - // s1 points past last arg. - __ bind(&loop); - __ addi_d(s1, s1, -kPointerSize); - __ Ld_d(s2, MemOperand(s1, 0)); // Read next parameter. - __ Ld_d(s2, MemOperand(s2, 0)); // Dereference handle. - __ Push(s2); // Push parameter. - __ bind(&entry); - __ Branch(&loop, ne, a5, Operand(s1)); + Generate_PushArguments(masm, a5, a4, s1, s2, ArgumentsElementType::kHandle); // Push the receive. __ Push(a3); @@ -814,7 +847,10 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ Ld_d(actual_params_size, MemOperand(fp, StandardFrameConstants::kArgCOffset)); __ slli_d(actual_params_size, actual_params_size, kPointerSizeLog2); - __ Add_d(actual_params_size, actual_params_size, Operand(kSystemPointerSize)); + if (!kJSArgcIncludesReceiver) { + __ Add_d(actual_params_size, actual_params_size, + Operand(kSystemPointerSize)); + } // If actual is bigger than formal, then we should use it to free up the stack // arguments. @@ -825,7 +861,8 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ LeaveFrame(StackFrame::INTERPRETED); // Drop receiver + arguments. - __ Add_d(sp, sp, params_size); + __ DropArguments(params_size, TurboAssembler::kCountIsBytes, + TurboAssembler::kCountIncludesReceiver); } // Tail-call |function_id| if |actual_marker| == |expected_marker| @@ -1192,7 +1229,7 @@ void Builtins::Generate_BaselineOutOfLinePrologue(MacroAssembler* masm) { // stack left to right. // // The live registers are: -// o a0 : actual argument count (not including the receiver) +// o a0 : actual argument count // o a1: the JS function object being called. // o a3: the incoming new target or generator object // o cp: our context @@ -1458,7 +1495,7 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( InterpreterPushArgsMode mode) { DCHECK(mode != InterpreterPushArgsMode::kArrayFunction); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a2 : the address of the first argument to be pushed. Subsequent // arguments should be consecutive above this, in the same order as // they are to be pushed onto the stack. @@ -1470,15 +1507,18 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( __ Sub_d(a0, a0, Operand(1)); } - __ Add_d(a3, a0, Operand(1)); // Add one for receiver. - - __ StackOverflowCheck(a3, a4, t0, &stack_overflow); - - if (receiver_mode == ConvertReceiverMode::kNullOrUndefined) { - // Don't copy receiver. + const bool skip_receiver = + receiver_mode == ConvertReceiverMode::kNullOrUndefined; + if (kJSArgcIncludesReceiver && skip_receiver) { + __ Sub_d(a3, a0, Operand(kJSArgcReceiverSlots)); + } else if (!kJSArgcIncludesReceiver && !skip_receiver) { + __ Add_d(a3, a0, Operand(1)); + } else { __ mov(a3, a0); } + __ StackOverflowCheck(a3, a4, t0, &stack_overflow); + // This function modifies a2, t0 and a4. GenerateInterpreterPushArgs(masm, a3, a2, a4, t0); @@ -1514,23 +1554,28 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( void Builtins::Generate_InterpreterPushArgsThenConstructImpl( MacroAssembler* masm, InterpreterPushArgsMode mode) { // ----------- S t a t e ------------- - // -- a0 : argument count (not including receiver) + // -- a0 : argument count // -- a3 : new target // -- a1 : constructor to call // -- a2 : allocation site feedback if available, undefined otherwise. // -- a4 : address of the first argument // ----------------------------------- Label stack_overflow; - __ addi_d(a6, a0, 1); - __ StackOverflowCheck(a6, a5, t0, &stack_overflow); + __ StackOverflowCheck(a0, a5, t0, &stack_overflow); if (mode == InterpreterPushArgsMode::kWithFinalSpread) { // The spread argument should not be pushed. __ Sub_d(a0, a0, Operand(1)); } + Register argc_without_receiver = a0; + if (kJSArgcIncludesReceiver) { + argc_without_receiver = a6; + __ Sub_d(argc_without_receiver, a0, Operand(kJSArgcReceiverSlots)); + } + // Push the arguments, This function modifies t0, a4 and a5. - GenerateInterpreterPushArgs(masm, a0, a4, a5, t0); + GenerateInterpreterPushArgs(masm, argc_without_receiver, a4, a5, t0); // Push a slot for the receiver. __ Push(zero_reg); @@ -1729,13 +1774,14 @@ void Generate_ContinueToBuiltinHelper(MacroAssembler* masm, // Overwrite the hole inserted by the deoptimizer with the return value from // the LAZY deopt point. t0 contains the arguments count, the return value // from LAZY is always the last argument. - __ Add_d(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + constexpr int return_value_offset = + BuiltinContinuationFrameConstants::kFixedSlotCount - + kJSArgcReceiverSlots; + __ Add_d(a0, a0, Operand(return_value_offset)); __ Alsl_d(t0, a0, sp, kSystemPointerSizeLog2, t7); __ St_d(scratch, MemOperand(t0, 0)); // Recover arguments count. - __ Sub_d(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + __ Sub_d(a0, a0, Operand(return_value_offset)); } __ Ld_d( @@ -1856,10 +1902,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments from the stack (including the receiver), and push thisArg (if // present) instead. { - // Claim (2 - argc) dummy arguments form the stack, to put the stack in a - // consistent state for a simple pop operation. - - __ mov(scratch, argc); + __ Sub_d(scratch, argc, JSParameterCount(0)); __ Ld_d(this_arg, MemOperand(sp, kPointerSize)); __ Ld_d(arg_array, MemOperand(sp, 2 * kPointerSize)); __ Movz(arg_array, undefined_value, scratch); // if argc == 0 @@ -1867,8 +1910,10 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { __ Sub_d(scratch, scratch, Operand(1)); __ Movz(arg_array, undefined_value, scratch); // if argc == 1 __ Ld_d(receiver, MemOperand(sp, 0)); - __ Alsl_d(sp, argc, sp, kSystemPointerSizeLog2, t7); - __ St_d(this_arg, MemOperand(sp, 0)); + __ DropArgumentsAndPushNewReceiver( + argc, this_arg, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1895,7 +1940,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments to the receiver. __ bind(&no_arguments); { - __ mov(a0, zero_reg); + __ li(a0, JSParameterCount(0)); DCHECK(receiver == a1); __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); } @@ -1910,7 +1955,7 @@ void Builtins::Generate_FunctionPrototypeCall(MacroAssembler* masm) { // a0: actual number of arguments { Label done; - __ Branch(&done, ne, a0, Operand(zero_reg)); + __ Branch(&done, ne, a0, Operand(JSParameterCount(0))); __ PushRoot(RootIndex::kUndefinedValue); __ Add_d(a0, a0, Operand(1)); __ bind(&done); @@ -1948,7 +1993,7 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { // Claim (3 - argc) dummy arguments form the stack, to put the stack in a // consistent state for a simple pop operation. - __ mov(scratch, argc); + __ Sub_d(scratch, argc, Operand(JSParameterCount(0))); __ Ld_d(target, MemOperand(sp, kPointerSize)); __ Ld_d(this_argument, MemOperand(sp, 2 * kPointerSize)); __ Ld_d(arguments_list, MemOperand(sp, 3 * kPointerSize)); @@ -1961,8 +2006,10 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { __ Sub_d(scratch, scratch, Operand(1)); __ Movz(arguments_list, undefined_value, scratch); // if argc == 2 - __ Alsl_d(sp, argc, sp, kSystemPointerSizeLog2, t7); - __ St_d(this_argument, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, this_argument, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2007,7 +2054,7 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { // Claim (3 - argc) dummy arguments form the stack, to put the stack in a // consistent state for a simple pop operation. - __ mov(scratch, argc); + __ Sub_d(scratch, argc, Operand(JSParameterCount(0))); __ Ld_d(target, MemOperand(sp, kPointerSize)); __ Ld_d(arguments_list, MemOperand(sp, 2 * kPointerSize)); __ Ld_d(new_target, MemOperand(sp, 3 * kPointerSize)); @@ -2020,8 +2067,10 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { __ Sub_d(scratch, scratch, Operand(1)); __ Movz(new_target, target, scratch); // if argc == 2 - __ Alsl_d(sp, argc, sp, kSystemPointerSizeLog2, t7); - __ St_d(undefined_value, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, undefined_value, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2044,12 +2093,59 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out, Register scratch1, Register scratch2, + Register scratch3) { + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ mov(old_sp, sp); + __ slli_d(new_space, count, kPointerSizeLog2); + __ Sub_d(sp, sp, Operand(new_space)); + + Register end = scratch2; + Register value = scratch3; + Register dest = pointer_to_new_space_out; + __ mov(dest, sp); + __ Alsl_d(end, argc_in_out, old_sp, kSystemPointerSizeLog2); + Label loop, done; + if (kJSArgcIncludesReceiver) { + __ Branch(&done, ge, old_sp, Operand(end)); + } else { + __ Branch(&done, gt, old_sp, Operand(end)); + } + __ bind(&loop); + __ Ld_d(value, MemOperand(old_sp, 0)); + __ St_d(value, MemOperand(dest, 0)); + __ Add_d(old_sp, old_sp, Operand(kSystemPointerSize)); + __ Add_d(dest, dest, Operand(kSystemPointerSize)); + if (kJSArgcIncludesReceiver) { + __ Branch(&loop, lt, old_sp, Operand(end)); + } else { + __ Branch(&loop, le, old_sp, Operand(end)); + } + __ bind(&done); + + // Update total number of arguments. + __ Add_d(argc_in_out, argc_in_out, count); +} + +} // namespace + // static void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle code) { // ----------- S t a t e ------------- // -- a1 : target - // -- a0 : number of parameters on the stack (not including the receiver) + // -- a0 : number of parameters on the stack // -- a2 : arguments list (a FixedArray) // -- a4 : len (number of elements to push from args) // -- a3 : new.target (for [[Construct]]) @@ -2078,24 +2174,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = a6, dest = a7; - __ mov(src, sp); - __ slli_d(t0, a4, kSystemPointerSizeLog2); - __ Sub_d(sp, sp, Operand(t0)); - // Update stack pointer. - __ mov(dest, sp); - __ Add_d(t0, a0, Operand(zero_reg)); - - __ bind(©); - __ Ld_d(t1, MemOperand(src, 0)); - __ St_d(t1, MemOperand(dest, 0)); - __ Sub_d(t0, t0, Operand(1)); - __ Add_d(src, src, Operand(kSystemPointerSize)); - __ Add_d(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t0, Operand(zero_reg)); - } + // a4: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a7: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a4, a0, a7, a6, t0, t1); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -2104,7 +2186,6 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, Register scratch = len; __ addi_d(src, args, FixedArray::kHeaderSize - kHeapObjectTag); - __ Add_d(a0, a0, len); // The 'len' argument for Call() or Construct(). __ Branch(&done, eq, len, Operand(zero_reg)); __ slli_d(scratch, len, kPointerSizeLog2); __ Sub_d(scratch, sp, Operand(scratch)); @@ -2134,7 +2215,7 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle code) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a3 : the new.target (for [[Construct]] calls) // -- a1 : the target to call (can be any Object) // -- a2 : start index (to support rest parameters) @@ -2160,7 +2241,10 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, Label stack_done, stack_overflow; __ Ld_d(a7, MemOperand(fp, StandardFrameConstants::kArgCOffset)); - __ Sub_w(a7, a7, a2); + if (kJSArgcIncludesReceiver) { + __ Sub_d(a7, a7, Operand(kJSArgcReceiverSlots)); + } + __ Sub_d(a7, a7, a2); __ Branch(&stack_done, le, a7, Operand(zero_reg)); { // Check for stack overflow. @@ -2176,31 +2260,17 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = t0, dest = a2; - __ mov(src, sp); - // Update stack pointer. - __ slli_d(t1, a7, kSystemPointerSizeLog2); - __ Sub_d(sp, sp, Operand(t1)); - __ mov(dest, sp); - __ Add_d(t2, a0, Operand(zero_reg)); - - __ bind(©); - __ Ld_d(t1, MemOperand(src, 0)); - __ St_d(t1, MemOperand(dest, 0)); - __ Sub_d(t2, t2, Operand(1)); - __ Add_d(src, src, Operand(kSystemPointerSize)); - __ Add_d(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t2, Operand(zero_reg)); - } + // a7: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a2: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a7, a0, a2, t0, t1, + t2); // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ Add_d(a0, a0, a7); __ bind(&loop); { __ Sub_w(a7, a7, Operand(1)); @@ -2225,13 +2295,11 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, void Builtins::Generate_CallFunction(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // ----------------------------------- __ AssertFunction(a1); - // See ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) - // Check that function is not a "classConstructor". Label class_constructor; __ Ld_d(a2, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset)); __ Ld_wu(a3, FieldMemOperand(a2, SharedFunctionInfo::kFlagsOffset)); @@ -2252,7 +2320,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ Branch(&done_convert, ne, kScratchReg, Operand(zero_reg)); { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2304,7 +2372,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ bind(&done_convert); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2326,7 +2394,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // static void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // ----------------------------------- __ AssertBoundFunction(a1); @@ -2342,7 +2410,7 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { __ SmiUntag(a4, FieldMemOperand(a2, FixedArray::kLengthOffset)); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a4 : the number of [[BoundArguments]] @@ -2397,35 +2465,53 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // static void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the target to call (can be any Object). // ----------------------------------- - Label non_callable, non_smi; - __ JumpIfSmi(a1, &non_callable); - __ bind(&non_smi); - __ LoadMap(t1, a1); - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + + Label non_callable, class_constructor; + __ JumpIfSmi(target, &non_callable); + __ LoadMap(map, target); + __ GetInstanceTypeRange(map, instance_type, FIRST_CALLABLE_JS_FUNCTION_TYPE, + scratch); __ Jump(masm->isolate()->builtins()->CallFunction(mode), - RelocInfo::CODE_TARGET, ls, t8, - Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, ls, scratch, + Operand(LAST_CALLABLE_JS_FUNCTION_TYPE - + FIRST_CALLABLE_JS_FUNCTION_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), CallBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Check if target has a [[Call]] internal method. - __ Ld_bu(t1, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t1, t1, Operand(Map::Bits1::IsCallableBit::kMask)); - __ Branch(&non_callable, eq, t1, Operand(zero_reg)); + { + Register flags = t1; + __ Ld_bu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + map = no_reg; + __ And(flags, flags, Operand(Map::Bits1::IsCallableBit::kMask)); + __ Branch(&non_callable, eq, flags, Operand(zero_reg)); + } __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), RelocInfo::CODE_TARGET, eq, - t2, Operand(JS_PROXY_TYPE)); + instance_type, Operand(JS_PROXY_TYPE)); + + // ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) + // Check that the function is not a "classConstructor". + __ Branch(&class_constructor, eq, instance_type, + Operand(JS_CLASS_CONSTRUCTOR_TYPE)); // 2. Call to something else, which might have a [[Call]] internal method (if // not we raise an exception). // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_function_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction( ConvertReceiverMode::kNotNullOrUndefined), RelocInfo::CODE_TARGET); @@ -2434,14 +2520,22 @@ void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { __ bind(&non_callable); { FrameScope scope(masm, StackFrame::INTERNAL); - __ Push(a1); + __ Push(target); __ CallRuntime(Runtime::kThrowCalledNonCallable); } + + // 4. The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ Push(target); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (checked to be a JSFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2471,7 +2565,7 @@ void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // static void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2483,7 +2577,7 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { __ SmiUntag(a4, FieldMemOperand(a2, FixedArray::kLengthOffset)); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a3 : the new target (checked to be a constructor) @@ -2547,35 +2641,46 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // static void Builtins::Generate_Construct(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (can be any Object) // -- a3 : the new target (either the same as the constructor or // the JSFunction on which new was invoked initially) // ----------------------------------- + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + // Check if target is a Smi. Label non_constructor, non_proxy; - __ JumpIfSmi(a1, &non_constructor); + __ JumpIfSmi(target, &non_constructor); // Check if target has a [[Construct]] internal method. - __ Ld_d(t1, FieldMemOperand(a1, HeapObject::kMapOffset)); - __ Ld_bu(t3, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t3, t3, Operand(Map::Bits1::IsConstructorBit::kMask)); - __ Branch(&non_constructor, eq, t3, Operand(zero_reg)); + __ Ld_d(map, FieldMemOperand(target, HeapObject::kMapOffset)); + { + Register flags = t3; + __ Ld_bu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + __ And(flags, flags, Operand(Map::Bits1::IsConstructorBit::kMask)); + __ Branch(&non_constructor, eq, flags, Operand(zero_reg)); + } // Dispatch based on instance type. - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + __ GetInstanceTypeRange(map, instance_type, FIRST_JS_FUNCTION_TYPE, scratch); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructFunction), - RelocInfo::CODE_TARGET, ls, t8, + RelocInfo::CODE_TARGET, ls, scratch, Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); // Only dispatch to bound functions after checking whether they are // constructors. __ Jump(BUILTIN_CODE(masm->isolate(), ConstructBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Only dispatch to proxies after checking whether they are constructors. - __ Branch(&non_proxy, ne, t2, Operand(JS_PROXY_TYPE)); + __ Branch(&non_proxy, ne, instance_type, Operand(JS_PROXY_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructProxy), RelocInfo::CODE_TARGET); @@ -2583,9 +2688,10 @@ void Builtins::Generate_Construct(MacroAssembler* masm) { __ bind(&non_proxy); { // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_constructor_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, + Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction(), RelocInfo::CODE_TARGET); } @@ -2678,6 +2784,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); @@ -3072,7 +3183,7 @@ void Builtins::Generate_CallApiCallback(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- cp : context // -- a1 : api function address - // -- a2 : arguments count (not including the receiver) + // -- a2 : arguments count // -- a3 : call data // -- a0 : holder // -- sp[0] : receiver diff --git a/deps/v8/src/builtins/mips/builtins-mips.cc b/deps/v8/src/builtins/mips/builtins-mips.cc index 9a97f0fa4e6a32..74493abad3228b 100644 --- a/deps/v8/src/builtins/mips/builtins-mips.cc +++ b/deps/v8/src/builtins/mips/builtins-mips.cc @@ -72,6 +72,34 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, Register scratch2, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Label loop, entry; + if (kJSArgcIncludesReceiver) { + __ Subu(scratch, argc, Operand(kJSArgcReceiverSlots)); + } else { + __ mov(scratch, argc); + } + __ Branch(&entry); + __ bind(&loop); + __ Lsa(scratch2, array, scratch, kSystemPointerSizeLog2); + __ lw(scratch2, MemOperand(scratch2)); + if (element_type == ArgumentsElementType::kHandle) { + __ lw(scratch2, MemOperand(scratch2)); + } + __ push(scratch2); + __ bind(&entry); + __ Addu(scratch, scratch, Operand(-1)); + __ Branch(&loop, greater_equal, scratch, Operand(zero_reg)); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- a0 : number of arguments @@ -90,12 +118,14 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { __ SmiTag(a0); __ Push(cp, a0); __ SmiUntag(a0); - // Set up pointer to last argument (skip receiver). + // Set up pointer to first argument (skip receiver). __ Addu( t2, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t3, t0); + // t2: Pointer to start of arguments. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t3, t0, ArgumentsElementType::kRaw); // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -113,8 +143,10 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { } // Remove caller arguments from the stack and return. - __ Lsa(sp, sp, t3, kPointerSizeLog2 - 1); - __ Addu(sp, sp, kPointerSize); + __ DropArguments(t3, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); __ Ret(); } @@ -219,7 +251,9 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { // InvokeFunction. // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t0, t1); + // t2: Pointer to start of argument. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t0, t1, ArgumentsElementType::kRaw); // We need two copies because we may have to return the original one // and the calling conventions dictate that the called function pops the @@ -266,8 +300,10 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { __ LeaveFrame(StackFrame::CONSTRUCT); // Remove caller arguments from the stack and return. - __ Lsa(sp, sp, a1, kPointerSizeLog2 - kSmiTagSize); - __ Addu(sp, sp, kPointerSize); + __ DropArguments(a1, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); __ Ret(); __ bind(&check_receiver); @@ -465,6 +501,7 @@ void Generate_JSEntryVariant(MacroAssembler* masm, StackFrame::Type type, Handle trampoline_code = masm->isolate()->builtins()->code_handle(entry_trampoline); DCHECK_EQ(kPushedStackSpace, pushed_stack_space); + USE(pushed_stack_space); __ Call(trampoline_code, RelocInfo::CODE_TARGET); // Unlink this frame from the handler chain. @@ -546,24 +583,17 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, // Check if we have enough stack space to push all arguments. // Clobbers a2 and t0. - __ addiu(t1, a0, 1); + if (kJSArgcIncludesReceiver) { + __ mov(t1, a0); + } else { + __ addiu(t1, a0, 1); + } Generate_CheckStackOverflow(masm, t1, t0, t2); - // Copy arguments to the stack in a loop. + // Copy arguments to the stack. // a0: argc // s0: argv, i.e. points to first arg - Label loop, entry; - __ Lsa(t2, s0, a0, kPointerSizeLog2); - __ b(&entry); - __ nop(); // Branch delay slot nop. - // t2 points past last arg. - __ bind(&loop); - __ addiu(t2, t2, -kPointerSize); - __ lw(t0, MemOperand(t2)); // Read next parameter. - __ lw(t0, MemOperand(t0)); // Dereference handle. - __ push(t0); // Push parameter. - __ bind(&entry); - __ Branch(&loop, ne, s0, Operand(t2)); + Generate_PushArguments(masm, s0, a0, t2, t0, ArgumentsElementType::kHandle); // Push the receiver. __ Push(a3); @@ -702,6 +732,9 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) { __ lw(a3, FieldMemOperand(t0, JSFunction::kSharedFunctionInfoOffset)); __ lhu(a3, FieldMemOperand(a3, SharedFunctionInfo::kFormalParameterCountOffset)); + if (kJSArgcIncludesReceiver) { + __ Subu(a3, a3, Operand(kJSArgcReceiverSlots)); + } __ lw(t1, FieldMemOperand(a1, JSGeneratorObject::kParametersAndRegistersOffset)); { @@ -807,7 +840,10 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ Lw(actual_params_size, MemOperand(fp, StandardFrameConstants::kArgCOffset)); __ sll(actual_params_size, actual_params_size, kPointerSizeLog2); - __ Addu(actual_params_size, actual_params_size, Operand(kSystemPointerSize)); + if (!kJSArgcIncludesReceiver) { + __ Addu(actual_params_size, actual_params_size, + Operand(kSystemPointerSize)); + } // If actual is bigger than formal, then we should use it to free up the stack // arguments. @@ -818,7 +854,8 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ LeaveFrame(StackFrame::INTERPRETED); // Drop receiver + arguments. - __ Addu(sp, sp, params_size); + __ DropArguments(params_size, TurboAssembler::kCountIsBytes, + TurboAssembler::kCountIncludesReceiver); } // Tail-call |function_id| if |actual_marker| == |expected_marker| @@ -1185,7 +1222,7 @@ void Builtins::Generate_BaselineOutOfLinePrologue(MacroAssembler* masm) { // stack left to right. // // The live registers are: -// o a0 : actual argument count (not including the receiver) +// o a0 : actual argument count // o a1: the JS function object being called. // o a3: the incoming new target or generator object // o cp: our context @@ -1447,7 +1484,7 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( InterpreterPushArgsMode mode) { DCHECK(mode != InterpreterPushArgsMode::kArrayFunction); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a2 : the address of the first argument to be pushed. Subsequent // arguments should be consecutive above this, in the same order as // they are to be pushed onto the stack. @@ -1459,15 +1496,18 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( __ Subu(a0, a0, Operand(1)); } - __ Addu(t0, a0, Operand(1)); // Add one for receiver. - - __ StackOverflowCheck(t0, t4, t1, &stack_overflow); - - if (receiver_mode == ConvertReceiverMode::kNullOrUndefined) { - // Don't copy receiver. + const bool skip_receiver = + receiver_mode == ConvertReceiverMode::kNullOrUndefined; + if (kJSArgcIncludesReceiver && skip_receiver) { + __ Subu(t0, a0, Operand(kJSArgcReceiverSlots)); + } else if (!kJSArgcIncludesReceiver && !skip_receiver) { + __ Addu(t0, a0, Operand(1)); + } else { __ mov(t0, a0); } + __ StackOverflowCheck(t0, t4, t1, &stack_overflow); + // This function modifies a2, t4 and t1. GenerateInterpreterPushArgs(masm, t0, a2, t4, t1); @@ -1503,22 +1543,27 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( void Builtins::Generate_InterpreterPushArgsThenConstructImpl( MacroAssembler* masm, InterpreterPushArgsMode mode) { // ----------- S t a t e ------------- - // -- a0 : argument count (not including receiver) + // -- a0 : argument count // -- a3 : new target // -- a1 : constructor to call // -- a2 : allocation site feedback if available, undefined otherwise. // -- t4 : address of the first argument // ----------------------------------- Label stack_overflow; - __ addiu(t2, a0, 1); - __ StackOverflowCheck(t2, t1, t0, &stack_overflow); + __ StackOverflowCheck(a0, t1, t0, &stack_overflow); if (mode == InterpreterPushArgsMode::kWithFinalSpread) { // The spread argument should not be pushed. __ Subu(a0, a0, Operand(1)); } - GenerateInterpreterPushArgs(masm, a0, t4, t1, t0); + Register argc_without_receiver = a0; + if (kJSArgcIncludesReceiver) { + argc_without_receiver = t2; + __ Subu(argc_without_receiver, a0, Operand(kJSArgcReceiverSlots)); + } + + GenerateInterpreterPushArgs(masm, argc_without_receiver, t4, t1, t0); // Push a slot for the receiver. __ push(zero_reg); @@ -1718,13 +1763,14 @@ void Generate_ContinueToBuiltinHelper(MacroAssembler* masm, // Overwrite the hole inserted by the deoptimizer with the return value from // the LAZY deopt point. t0 contains the arguments count, the return value // from LAZY is always the last argument. - __ Addu(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + constexpr int return_value_offset = + BuiltinContinuationFrameConstants::kFixedSlotCount - + kJSArgcReceiverSlots; + __ Addu(a0, a0, Operand(return_value_offset)); __ Lsa(t0, sp, a0, kSystemPointerSizeLog2); __ Sw(scratch, MemOperand(t0)); // Recover arguments count. - __ Subu(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + __ Subu(a0, a0, Operand(return_value_offset)); } __ lw(fp, MemOperand( @@ -1841,13 +1887,15 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { __ mov(a3, a2); // Lsa() cannot be used hare as scratch value used later. __ lw(a1, MemOperand(sp)); // receiver - __ Branch(&no_arg, eq, a0, Operand(zero_reg)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(0))); __ lw(a3, MemOperand(sp, kSystemPointerSize)); // thisArg - __ Branch(&no_arg, eq, a0, Operand(1)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(1))); __ lw(a2, MemOperand(sp, 2 * kSystemPointerSize)); // argArray __ bind(&no_arg); - __ Lsa(sp, sp, a0, kPointerSizeLog2); - __ sw(a3, MemOperand(sp)); + __ DropArgumentsAndPushNewReceiver( + a0, a3, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1873,7 +1921,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments to the receiver. __ bind(&no_arguments); { - __ mov(a0, zero_reg); + __ li(a0, JSParameterCount(0)); __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); } } @@ -1887,7 +1935,7 @@ void Builtins::Generate_FunctionPrototypeCall(MacroAssembler* masm) { // a0: actual number of arguments { Label done; - __ Branch(&done, ne, a0, Operand(zero_reg)); + __ Branch(&done, ne, a0, Operand(JSParameterCount(0))); __ PushRoot(RootIndex::kUndefinedValue); __ Addu(a0, a0, Operand(1)); __ bind(&done); @@ -1917,15 +1965,17 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { __ LoadRoot(a1, RootIndex::kUndefinedValue); __ mov(a2, a1); __ mov(a3, a1); - __ Branch(&no_arg, eq, a0, Operand(zero_reg)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(0))); __ lw(a1, MemOperand(sp, kSystemPointerSize)); // target - __ Branch(&no_arg, eq, a0, Operand(1)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(1))); __ lw(a3, MemOperand(sp, 2 * kSystemPointerSize)); // thisArgument - __ Branch(&no_arg, eq, a0, Operand(2)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(2))); __ lw(a2, MemOperand(sp, 3 * kSystemPointerSize)); // argumentsList __ bind(&no_arg); - __ Lsa(sp, sp, a0, kPointerSizeLog2); - __ sw(a3, MemOperand(sp)); + __ DropArgumentsAndPushNewReceiver( + a0, a3, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1961,16 +2011,18 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { __ LoadRoot(a1, RootIndex::kUndefinedValue); __ mov(a2, a1); __ mov(t0, a1); - __ Branch(&no_arg, eq, a0, Operand(zero_reg)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(0))); __ lw(a1, MemOperand(sp, kSystemPointerSize)); // target __ mov(a3, a1); // new.target defaults to target - __ Branch(&no_arg, eq, a0, Operand(1)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(1))); __ lw(a2, MemOperand(sp, 2 * kSystemPointerSize)); // argumentsList - __ Branch(&no_arg, eq, a0, Operand(2)); + __ Branch(&no_arg, eq, a0, Operand(JSParameterCount(2))); __ lw(a3, MemOperand(sp, 3 * kSystemPointerSize)); // new.target __ bind(&no_arg); - __ Lsa(sp, sp, a0, kPointerSizeLog2); - __ sw(t0, MemOperand(sp)); // set undefined to the receiver + __ DropArgumentsAndPushNewReceiver( + a0, t0, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1993,12 +2045,59 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out, Register scratch1, Register scratch2, + Register scratch3) { + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ mov(old_sp, sp); + __ sll(new_space, count, kPointerSizeLog2); + __ Subu(sp, sp, Operand(new_space)); + + Register end = scratch2; + Register value = scratch3; + Register dest = pointer_to_new_space_out; + __ mov(dest, sp); + __ Lsa(end, old_sp, argc_in_out, kSystemPointerSizeLog2); + Label loop, done; + if (kJSArgcIncludesReceiver) { + __ Branch(&done, ge, old_sp, Operand(end)); + } else { + __ Branch(&done, gt, old_sp, Operand(end)); + } + __ bind(&loop); + __ lw(value, MemOperand(old_sp, 0)); + __ sw(value, MemOperand(dest, 0)); + __ Addu(old_sp, old_sp, Operand(kSystemPointerSize)); + __ Addu(dest, dest, Operand(kSystemPointerSize)); + if (kJSArgcIncludesReceiver) { + __ Branch(&loop, lt, old_sp, Operand(end)); + } else { + __ Branch(&loop, le, old_sp, Operand(end)); + } + __ bind(&done); + + // Update total number of arguments. + __ Addu(argc_in_out, argc_in_out, count); +} + +} // namespace + // static void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle code) { // ----------- S t a t e ------------- // -- a1 : target - // -- a0 : number of parameters on the stack (not including the receiver) + // -- a0 : number of parameters on the stack // -- a2 : arguments list (a FixedArray) // -- t0 : len (number of elements to push from args) // -- a3 : new.target (for [[Construct]]) @@ -2024,24 +2123,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = t3, dest = t4; - __ mov(src, sp); - __ sll(t1, t0, kSystemPointerSizeLog2); - __ Subu(sp, sp, Operand(t1)); - // Update stack pointer. - __ mov(dest, sp); - __ Addu(t1, a0, Operand(zero_reg)); - - __ bind(©); - __ Lw(t2, MemOperand(src, 0)); - __ Sw(t2, MemOperand(dest, 0)); - __ Subu(t1, t1, Operand(1)); - __ Addu(src, src, Operand(kSystemPointerSize)); - __ Addu(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t1, Operand(zero_reg)); - } + // t0: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // t4: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, t0, a0, t4, t3, t1, t2); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -2060,7 +2145,6 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, __ Addu(t4, t4, Operand(kSystemPointerSize)); __ Branch(&loop); __ bind(&done); - __ Addu(a0, a0, t2); } // Tail-call to the actual Call or Construct builtin. @@ -2075,7 +2159,7 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle code) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a3 : the new.target (for [[Construct]] calls) // -- a1 : the target to call (can be any Object) // -- a2 : start index (to support rest parameters) @@ -2101,6 +2185,9 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, Label stack_done, stack_overflow; __ Lw(t2, MemOperand(fp, StandardFrameConstants::kArgCOffset)); + if (kJSArgcIncludesReceiver) { + __ Subu(t2, t2, Operand(kJSArgcReceiverSlots)); + } __ Subu(t2, t2, a2); __ Branch(&stack_done, le, t2, Operand(zero_reg)); { @@ -2116,31 +2203,17 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = t5, dest = a2; - __ mov(src, sp); - // Update stack pointer. - __ sll(t6, t2, kSystemPointerSizeLog2); - __ Subu(sp, sp, Operand(t6)); - __ mov(dest, sp); - __ Addu(t7, a0, Operand(zero_reg)); - - __ bind(©); - __ Lw(t6, MemOperand(src, 0)); - __ Sw(t6, MemOperand(dest, 0)); - __ Subu(t7, t7, Operand(1)); - __ Addu(src, src, Operand(kSystemPointerSize)); - __ Addu(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t7, Operand(zero_reg)); - } + // t2: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a2: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, t2, a0, a2, t5, t6, + t7); // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ Addu(a0, a0, t2); __ bind(&loop); { __ Subu(t2, t2, Operand(1)); @@ -2165,13 +2238,11 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, void Builtins::Generate_CallFunction(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // ----------------------------------- __ AssertFunction(a1); - // See ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) - // Check that the function is not a "classConstructor". Label class_constructor; __ lw(a2, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset)); __ lw(a3, FieldMemOperand(a2, SharedFunctionInfo::kFlagsOffset)); @@ -2192,7 +2263,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ Branch(&done_convert, ne, kScratchReg, Operand(zero_reg)); { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2244,7 +2315,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ bind(&done_convert); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2266,7 +2337,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // static void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // ----------------------------------- __ AssertBoundFunction(a1); @@ -2283,7 +2354,7 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { __ SmiUntag(t0); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- t0 : the number of [[BoundArguments]] @@ -2337,36 +2408,54 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // static void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the target to call (can be any Object). // ----------------------------------- - Label non_callable, non_smi; - __ JumpIfSmi(a1, &non_callable); - __ bind(&non_smi); - __ LoadMap(t1, a1); - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + + Label non_callable, class_constructor; + __ JumpIfSmi(target, &non_callable); + __ LoadMap(map, target); + __ GetInstanceTypeRange(map, instance_type, FIRST_CALLABLE_JS_FUNCTION_TYPE, + scratch); __ Jump(masm->isolate()->builtins()->CallFunction(mode), - RelocInfo::CODE_TARGET, ls, t8, - Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, ls, scratch, + Operand(LAST_CALLABLE_JS_FUNCTION_TYPE - + FIRST_CALLABLE_JS_FUNCTION_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), CallBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Check if target has a [[Call]] internal method. - __ lbu(t1, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t1, t1, Operand(Map::Bits1::IsCallableBit::kMask)); - __ Branch(&non_callable, eq, t1, Operand(zero_reg)); + { + Register flags = t1; + __ lbu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + map = no_reg; + __ And(flags, flags, Operand(Map::Bits1::IsCallableBit::kMask)); + __ Branch(&non_callable, eq, flags, Operand(zero_reg)); + } // Check if target is a proxy and call CallProxy external builtin - __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_PROXY_TYPE)); + __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), RelocInfo::CODE_TARGET, eq, + instance_type, Operand(JS_PROXY_TYPE)); + + // ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) + // Check that the function is not a "classConstructor". + __ Branch(&class_constructor, eq, instance_type, + Operand(JS_CLASS_CONSTRUCTOR_TYPE)); // 2. Call to something else, which might have a [[Call]] internal method (if // not we raise an exception). // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_function_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction( ConvertReceiverMode::kNotNullOrUndefined), RelocInfo::CODE_TARGET); @@ -2375,15 +2464,23 @@ void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { __ bind(&non_callable); { FrameScope scope(masm, StackFrame::INTERNAL); - __ Push(a1); + __ Push(target); __ CallRuntime(Runtime::kThrowCalledNonCallable); } + + // 4. The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ Push(target); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } // static void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (checked to be a JSFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2413,7 +2510,7 @@ void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // static void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2426,7 +2523,7 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { __ SmiUntag(t0); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a3 : the new target (checked to be a constructor) @@ -2488,35 +2585,46 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // static void Builtins::Generate_Construct(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (can be any Object) // -- a3 : the new target (either the same as the constructor or // the JSFunction on which new was invoked initially) // ----------------------------------- + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + // Check if target is a Smi. Label non_constructor, non_proxy; - __ JumpIfSmi(a1, &non_constructor); + __ JumpIfSmi(target, &non_constructor); // Check if target has a [[Construct]] internal method. - __ lw(t1, FieldMemOperand(a1, HeapObject::kMapOffset)); - __ lbu(t3, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t3, t3, Operand(Map::Bits1::IsConstructorBit::kMask)); - __ Branch(&non_constructor, eq, t3, Operand(zero_reg)); + __ lw(map, FieldMemOperand(target, HeapObject::kMapOffset)); + { + Register flags = t3; + __ lbu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + __ And(flags, flags, Operand(Map::Bits1::IsConstructorBit::kMask)); + __ Branch(&non_constructor, eq, flags, Operand(zero_reg)); + } // Dispatch based on instance type. - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + __ GetInstanceTypeRange(map, instance_type, FIRST_JS_FUNCTION_TYPE, scratch); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructFunction), - RelocInfo::CODE_TARGET, ls, t8, + RelocInfo::CODE_TARGET, ls, scratch, Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); // Only dispatch to bound functions after checking whether they are // constructors. __ Jump(BUILTIN_CODE(masm->isolate(), ConstructBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Only dispatch to proxies after checking whether they are constructors. - __ Branch(&non_proxy, ne, t2, Operand(JS_PROXY_TYPE)); + __ Branch(&non_proxy, ne, instance_type, Operand(JS_PROXY_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructProxy), RelocInfo::CODE_TARGET); @@ -2524,9 +2632,10 @@ void Builtins::Generate_Construct(MacroAssembler* masm) { __ bind(&non_proxy); { // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_constructor_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, + Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction(), RelocInfo::CODE_TARGET); } @@ -2612,6 +2721,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); @@ -3006,7 +3120,7 @@ void Builtins::Generate_CallApiCallback(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- cp : context // -- a1 : api function address - // -- a2 : arguments count (not including the receiver) + // -- a2 : arguments count // -- a3 : call data // -- a0 : holder // -- sp[0] : receiver diff --git a/deps/v8/src/builtins/mips64/builtins-mips64.cc b/deps/v8/src/builtins/mips64/builtins-mips64.cc index 3f8824d97d3f71..a357877acf7060 100644 --- a/deps/v8/src/builtins/mips64/builtins-mips64.cc +++ b/deps/v8/src/builtins/mips64/builtins-mips64.cc @@ -71,6 +71,34 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, Register scratch2, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Label loop, entry; + if (kJSArgcIncludesReceiver) { + __ Dsubu(scratch, argc, Operand(kJSArgcReceiverSlots)); + } else { + __ mov(scratch, argc); + } + __ Branch(&entry); + __ bind(&loop); + __ Dlsa(scratch2, array, scratch, kSystemPointerSizeLog2); + __ Ld(scratch2, MemOperand(scratch2)); + if (element_type == ArgumentsElementType::kHandle) { + __ Ld(scratch2, MemOperand(scratch2)); + } + __ push(scratch2); + __ bind(&entry); + __ Daddu(scratch, scratch, Operand(-1)); + __ Branch(&loop, greater_equal, scratch, Operand(zero_reg)); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- a0 : number of arguments @@ -90,12 +118,14 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { __ Push(cp, a0); __ SmiUntag(a0); - // Set up pointer to last argument (skip receiver). + // Set up pointer to first argument (skip receiver). __ Daddu( t2, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t3, t0); + // t2: Pointer to start of arguments. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t3, t0, ArgumentsElementType::kRaw); // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -113,9 +143,11 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { } // Remove caller arguments from the stack and return. - __ SmiScale(t3, t3, kPointerSizeLog2); - __ Daddu(sp, sp, t3); - __ Daddu(sp, sp, kPointerSize); + __ DropArguments(t3, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver, + t3); __ Ret(); } @@ -198,7 +230,7 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { kSystemPointerSize)); // ----------- S t a t e ------------- - // -- r3: new target + // -- a3: new target // -- sp[0*kPointerSize]: implicit receiver // -- sp[1*kPointerSize]: implicit receiver // -- sp[2*kPointerSize]: padding @@ -221,7 +253,9 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { // InvokeFunction. // Copy arguments and receiver to the expression stack. - __ PushArray(t2, a0, t0, t1); + // t2: Pointer to start of argument. + // a0: Number of arguments. + Generate_PushArguments(masm, t2, a0, t0, t1, ArgumentsElementType::kRaw); // We need two copies because we may have to return the original one // and the calling conventions dictate that the called function pops the // receiver. The second copy is pushed after the arguments, @@ -267,9 +301,11 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { __ LeaveFrame(StackFrame::CONSTRUCT); // Remove caller arguments from the stack and return. - __ SmiScale(a4, a1, kPointerSizeLog2); - __ Daddu(sp, sp, a4); - __ Daddu(sp, sp, kPointerSize); + __ DropArguments(a1, TurboAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver, + a4); __ Ret(); __ bind(&check_receiver); @@ -390,6 +426,9 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) { __ Ld(a3, FieldMemOperand(a4, JSFunction::kSharedFunctionInfoOffset)); __ Lhu(a3, FieldMemOperand(a3, SharedFunctionInfo::kFormalParameterCountOffset)); + if (kJSArgcIncludesReceiver) { + __ Dsubu(a3, a3, Operand(kJSArgcReceiverSlots)); + } __ Ld(t1, FieldMemOperand(a1, JSGeneratorObject::kParametersAndRegistersOffset)); { @@ -725,24 +764,17 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, __ Push(a2); // Check if we have enough stack space to push all arguments. - __ daddiu(a6, a4, 1); + if (kJSArgcIncludesReceiver) { + __ mov(a6, a4); + } else { + __ daddiu(a6, a4, 1); + } Generate_CheckStackOverflow(masm, a6, a0, s2); - // Copy arguments to the stack in a loop. + // Copy arguments to the stack. // a4: argc // a5: argv, i.e. points to first arg - Label loop, entry; - __ Dlsa(s1, a5, a4, kPointerSizeLog2); - __ b(&entry); - __ nop(); // Branch delay slot nop. - // s1 points past last arg. - __ bind(&loop); - __ daddiu(s1, s1, -kPointerSize); - __ Ld(s2, MemOperand(s1)); // Read next parameter. - __ Ld(s2, MemOperand(s2)); // Dereference handle. - __ push(s2); // Push parameter. - __ bind(&entry); - __ Branch(&loop, ne, a5, Operand(s1)); + Generate_PushArguments(masm, a5, a4, s1, s2, ArgumentsElementType::kHandle); // Push the receive. __ Push(a3); @@ -820,7 +852,10 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ Ld(actual_params_size, MemOperand(fp, StandardFrameConstants::kArgCOffset)); __ dsll(actual_params_size, actual_params_size, kPointerSizeLog2); - __ Daddu(actual_params_size, actual_params_size, Operand(kSystemPointerSize)); + if (!kJSArgcIncludesReceiver) { + __ Daddu(actual_params_size, actual_params_size, + Operand(kSystemPointerSize)); + } // If actual is bigger than formal, then we should use it to free up the stack // arguments. @@ -831,7 +866,8 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ LeaveFrame(StackFrame::INTERPRETED); // Drop receiver + arguments. - __ Daddu(sp, sp, params_size); + __ DropArguments(params_size, TurboAssembler::kCountIsBytes, + TurboAssembler::kCountIncludesReceiver); } // Tail-call |function_id| if |actual_marker| == |expected_marker| @@ -1196,7 +1232,7 @@ void Builtins::Generate_BaselineOutOfLinePrologue(MacroAssembler* masm) { // stack left to right. // // The live registers are: -// o a0 : actual argument count (not including the receiver) +// o a0 : actual argument count // o a1: the JS function object being called. // o a3: the incoming new target or generator object // o cp: our context @@ -1457,7 +1493,7 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( InterpreterPushArgsMode mode) { DCHECK(mode != InterpreterPushArgsMode::kArrayFunction); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a2 : the address of the first argument to be pushed. Subsequent // arguments should be consecutive above this, in the same order as // they are to be pushed onto the stack. @@ -1469,15 +1505,18 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( __ Dsubu(a0, a0, Operand(1)); } - __ Daddu(a3, a0, Operand(1)); // Add one for receiver. - - __ StackOverflowCheck(a3, a4, t0, &stack_overflow); - - if (receiver_mode == ConvertReceiverMode::kNullOrUndefined) { - // Don't copy receiver. + const bool skip_receiver = + receiver_mode == ConvertReceiverMode::kNullOrUndefined; + if (kJSArgcIncludesReceiver && skip_receiver) { + __ Dsubu(a3, a0, Operand(kJSArgcReceiverSlots)); + } else if (!kJSArgcIncludesReceiver && !skip_receiver) { + __ Daddu(a3, a0, Operand(1)); + } else { __ mov(a3, a0); } + __ StackOverflowCheck(a3, a4, t0, &stack_overflow); + // This function modifies a2, t0 and a4. GenerateInterpreterPushArgs(masm, a3, a2, a4, t0); @@ -1513,23 +1552,27 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( void Builtins::Generate_InterpreterPushArgsThenConstructImpl( MacroAssembler* masm, InterpreterPushArgsMode mode) { // ----------- S t a t e ------------- - // -- a0 : argument count (not including receiver) + // -- a0 : argument count // -- a3 : new target // -- a1 : constructor to call // -- a2 : allocation site feedback if available, undefined otherwise. // -- a4 : address of the first argument // ----------------------------------- Label stack_overflow; - __ daddiu(a6, a0, 1); - __ StackOverflowCheck(a6, a5, t0, &stack_overflow); + __ StackOverflowCheck(a0, a5, t0, &stack_overflow); if (mode == InterpreterPushArgsMode::kWithFinalSpread) { // The spread argument should not be pushed. __ Dsubu(a0, a0, Operand(1)); } + Register argc_without_receiver = a0; + if (kJSArgcIncludesReceiver) { + argc_without_receiver = a6; + __ Dsubu(argc_without_receiver, a0, Operand(kJSArgcReceiverSlots)); + } // Push the arguments, This function modifies t0, a4 and a5. - GenerateInterpreterPushArgs(masm, a0, a4, a5, t0); + GenerateInterpreterPushArgs(masm, argc_without_receiver, a4, a5, t0); // Push a slot for the receiver. __ push(zero_reg); @@ -1727,13 +1770,14 @@ void Generate_ContinueToBuiltinHelper(MacroAssembler* masm, // Overwrite the hole inserted by the deoptimizer with the return value from // the LAZY deopt point. t0 contains the arguments count, the return value // from LAZY is always the last argument. - __ Daddu(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + constexpr int return_value_offset = + BuiltinContinuationFrameConstants::kFixedSlotCount - + kJSArgcReceiverSlots; + __ Daddu(a0, a0, Operand(return_value_offset)); __ Dlsa(t0, sp, a0, kSystemPointerSizeLog2); __ Sd(scratch, MemOperand(t0)); // Recover arguments count. - __ Dsubu(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + __ Dsubu(a0, a0, Operand(return_value_offset)); } __ Ld(fp, MemOperand( @@ -1852,10 +1896,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments from the stack (including the receiver), and push thisArg (if // present) instead. { - // Claim (2 - argc) dummy arguments form the stack, to put the stack in a - // consistent state for a simple pop operation. - - __ mov(scratch, argc); + __ Dsubu(scratch, argc, JSParameterCount(0)); __ Ld(this_arg, MemOperand(sp, kPointerSize)); __ Ld(arg_array, MemOperand(sp, 2 * kPointerSize)); __ Movz(arg_array, undefined_value, scratch); // if argc == 0 @@ -1863,8 +1904,10 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { __ Dsubu(scratch, scratch, Operand(1)); __ Movz(arg_array, undefined_value, scratch); // if argc == 1 __ Ld(receiver, MemOperand(sp)); - __ Dlsa(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(this_arg, MemOperand(sp)); + __ DropArgumentsAndPushNewReceiver( + argc, this_arg, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1891,7 +1934,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments to the receiver. __ bind(&no_arguments); { - __ mov(a0, zero_reg); + __ li(a0, JSParameterCount(0)); DCHECK(receiver == a1); __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); } @@ -1908,7 +1951,7 @@ void Builtins::Generate_FunctionPrototypeCall(MacroAssembler* masm) { // a0: actual number of arguments { Label done; - __ Branch(&done, ne, a0, Operand(zero_reg)); + __ Branch(&done, ne, a0, Operand(JSParameterCount(0))); __ PushRoot(RootIndex::kUndefinedValue); __ Daddu(a0, a0, Operand(1)); __ bind(&done); @@ -1946,7 +1989,7 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { // Claim (3 - argc) dummy arguments form the stack, to put the stack in a // consistent state for a simple pop operation. - __ mov(scratch, argc); + __ Dsubu(scratch, argc, Operand(JSParameterCount(0))); __ Ld(target, MemOperand(sp, kPointerSize)); __ Ld(this_argument, MemOperand(sp, 2 * kPointerSize)); __ Ld(arguments_list, MemOperand(sp, 3 * kPointerSize)); @@ -1959,8 +2002,10 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { __ Dsubu(scratch, scratch, Operand(1)); __ Movz(arguments_list, undefined_value, scratch); // if argc == 2 - __ Dlsa(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(this_argument, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, this_argument, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2005,7 +2050,7 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { // Claim (3 - argc) dummy arguments form the stack, to put the stack in a // consistent state for a simple pop operation. - __ mov(scratch, argc); + __ Dsubu(scratch, argc, Operand(JSParameterCount(0))); __ Ld(target, MemOperand(sp, kPointerSize)); __ Ld(arguments_list, MemOperand(sp, 2 * kPointerSize)); __ Ld(new_target, MemOperand(sp, 3 * kPointerSize)); @@ -2018,8 +2063,10 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { __ Dsubu(scratch, scratch, Operand(1)); __ Movz(new_target, target, scratch); // if argc == 2 - __ Dlsa(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(undefined_value, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, undefined_value, TurboAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? TurboAssembler::kCountIncludesReceiver + : TurboAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2042,12 +2089,59 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out, Register scratch1, Register scratch2, + Register scratch3) { + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ mov(old_sp, sp); + __ dsll(new_space, count, kPointerSizeLog2); + __ Dsubu(sp, sp, Operand(new_space)); + + Register end = scratch2; + Register value = scratch3; + Register dest = pointer_to_new_space_out; + __ mov(dest, sp); + __ Dlsa(end, old_sp, argc_in_out, kSystemPointerSizeLog2); + Label loop, done; + if (kJSArgcIncludesReceiver) { + __ Branch(&done, ge, old_sp, Operand(end)); + } else { + __ Branch(&done, gt, old_sp, Operand(end)); + } + __ bind(&loop); + __ Ld(value, MemOperand(old_sp, 0)); + __ Sd(value, MemOperand(dest, 0)); + __ Daddu(old_sp, old_sp, Operand(kSystemPointerSize)); + __ Daddu(dest, dest, Operand(kSystemPointerSize)); + if (kJSArgcIncludesReceiver) { + __ Branch(&loop, lt, old_sp, Operand(end)); + } else { + __ Branch(&loop, le, old_sp, Operand(end)); + } + __ bind(&done); + + // Update total number of arguments. + __ Daddu(argc_in_out, argc_in_out, count); +} + +} // namespace + // static void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle code) { // ----------- S t a t e ------------- // -- a1 : target - // -- a0 : number of parameters on the stack (not including the receiver) + // -- a0 : number of parameters on the stack // -- a2 : arguments list (a FixedArray) // -- a4 : len (number of elements to push from args) // -- a3 : new.target (for [[Construct]]) @@ -2076,24 +2170,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = a6, dest = a7; - __ mov(src, sp); - __ dsll(t0, a4, kSystemPointerSizeLog2); - __ Dsubu(sp, sp, Operand(t0)); - // Update stack pointer. - __ mov(dest, sp); - __ Daddu(t0, a0, Operand(zero_reg)); - - __ bind(©); - __ Ld(t1, MemOperand(src, 0)); - __ Sd(t1, MemOperand(dest, 0)); - __ Dsubu(t0, t0, Operand(1)); - __ Daddu(src, src, Operand(kSystemPointerSize)); - __ Daddu(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t0, Operand(zero_reg)); - } + // a4: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a7: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a4, a0, a7, a6, t0, t1); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -2103,7 +2183,6 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, __ daddiu(src, args, FixedArray::kHeaderSize - kHeapObjectTag); __ Branch(&done, eq, len, Operand(zero_reg), i::USE_DELAY_SLOT); - __ Daddu(a0, a0, len); // The 'len' argument for Call() or Construct(). __ dsll(scratch, len, kPointerSizeLog2); __ Dsubu(scratch, sp, Operand(scratch)); __ LoadRoot(t1, RootIndex::kTheHoleValue); @@ -2132,7 +2211,7 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle code) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a3 : the new.target (for [[Construct]] calls) // -- a1 : the target to call (can be any Object) // -- a2 : start index (to support rest parameters) @@ -2158,7 +2237,10 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, Label stack_done, stack_overflow; __ Ld(a7, MemOperand(fp, StandardFrameConstants::kArgCOffset)); - __ Subu(a7, a7, a2); + if (kJSArgcIncludesReceiver) { + __ Dsubu(a7, a7, Operand(kJSArgcReceiverSlots)); + } + __ Dsubu(a7, a7, a2); __ Branch(&stack_done, le, a7, Operand(zero_reg)); { // Check for stack overflow. @@ -2174,31 +2256,17 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = t0, dest = a2; - __ mov(src, sp); - // Update stack pointer. - __ dsll(t1, a7, kSystemPointerSizeLog2); - __ Dsubu(sp, sp, Operand(t1)); - __ mov(dest, sp); - __ Daddu(t2, a0, Operand(zero_reg)); - - __ bind(©); - __ Ld(t1, MemOperand(src, 0)); - __ Sd(t1, MemOperand(dest, 0)); - __ Dsubu(t2, t2, Operand(1)); - __ Daddu(src, src, Operand(kSystemPointerSize)); - __ Daddu(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, t2, Operand(zero_reg)); - } + // a7: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a2: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a7, a0, a2, t0, t1, + t2); // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ Daddu(a0, a0, a7); __ bind(&loop); { __ Subu(a7, a7, Operand(1)); @@ -2223,13 +2291,11 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, void Builtins::Generate_CallFunction(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // ----------------------------------- __ AssertFunction(a1); - // See ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) - // Check that function is not a "classConstructor". Label class_constructor; __ Ld(a2, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset)); __ Lwu(a3, FieldMemOperand(a2, SharedFunctionInfo::kFlagsOffset)); @@ -2250,7 +2316,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ Branch(&done_convert, ne, kScratchReg, Operand(zero_reg)); { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2302,7 +2368,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ bind(&done_convert); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2324,7 +2390,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // static void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // ----------------------------------- __ AssertBoundFunction(a1); @@ -2340,7 +2406,7 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { __ SmiUntag(a4, FieldMemOperand(a2, FixedArray::kLengthOffset)); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a4 : the number of [[BoundArguments]] @@ -2395,35 +2461,52 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // static void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the target to call (can be any Object). // ----------------------------------- - - Label non_callable, non_smi; - __ JumpIfSmi(a1, &non_callable); - __ bind(&non_smi); - __ LoadMap(t1, a1); - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + + Label non_callable, class_constructor; + __ JumpIfSmi(target, &non_callable); + __ LoadMap(map, target); + __ GetInstanceTypeRange(map, instance_type, FIRST_CALLABLE_JS_FUNCTION_TYPE, + scratch); __ Jump(masm->isolate()->builtins()->CallFunction(mode), - RelocInfo::CODE_TARGET, ls, t8, - Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, ls, scratch, + Operand(LAST_CALLABLE_JS_FUNCTION_TYPE - + FIRST_CALLABLE_JS_FUNCTION_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), CallBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Check if target has a [[Call]] internal method. - __ Lbu(t1, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t1, t1, Operand(Map::Bits1::IsCallableBit::kMask)); - __ Branch(&non_callable, eq, t1, Operand(zero_reg)); + { + Register flags = t1; + __ Lbu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + map = no_reg; + __ And(flags, flags, Operand(Map::Bits1::IsCallableBit::kMask)); + __ Branch(&non_callable, eq, flags, Operand(zero_reg)); + } + + __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), RelocInfo::CODE_TARGET, eq, + instance_type, Operand(JS_PROXY_TYPE)); - __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_PROXY_TYPE)); + // ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) + // Check that the function is not a "classConstructor". + __ Branch(&class_constructor, eq, instance_type, + Operand(JS_CLASS_CONSTRUCTOR_TYPE)); // 2. Call to something else, which might have a [[Call]] internal method (if // not we raise an exception). // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_function_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, Context::CALL_AS_FUNCTION_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction( ConvertReceiverMode::kNotNullOrUndefined), RelocInfo::CODE_TARGET); @@ -2432,14 +2515,22 @@ void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { __ bind(&non_callable); { FrameScope scope(masm, StackFrame::INTERNAL); - __ Push(a1); + __ Push(target); __ CallRuntime(Runtime::kThrowCalledNonCallable); } + + // 4. The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ Push(target); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (checked to be a JSFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2469,7 +2560,7 @@ void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // static void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2481,7 +2572,7 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { __ SmiUntag(a4, FieldMemOperand(a2, FixedArray::kLengthOffset)); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a3 : the new target (checked to be a constructor) @@ -2544,35 +2635,46 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // static void Builtins::Generate_Construct(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (can be any Object) // -- a3 : the new target (either the same as the constructor or // the JSFunction on which new was invoked initially) // ----------------------------------- + Register argc = a0; + Register target = a1; + Register map = t1; + Register instance_type = t2; + Register scratch = t8; + DCHECK(!AreAliased(argc, target, map, instance_type, scratch)); + // Check if target is a Smi. Label non_constructor, non_proxy; - __ JumpIfSmi(a1, &non_constructor); + __ JumpIfSmi(target, &non_constructor); // Check if target has a [[Construct]] internal method. - __ ld(t1, FieldMemOperand(a1, HeapObject::kMapOffset)); - __ Lbu(t3, FieldMemOperand(t1, Map::kBitFieldOffset)); - __ And(t3, t3, Operand(Map::Bits1::IsConstructorBit::kMask)); - __ Branch(&non_constructor, eq, t3, Operand(zero_reg)); + __ ld(map, FieldMemOperand(target, HeapObject::kMapOffset)); + { + Register flags = t3; + __ Lbu(flags, FieldMemOperand(map, Map::kBitFieldOffset)); + __ And(flags, flags, Operand(Map::Bits1::IsConstructorBit::kMask)); + __ Branch(&non_constructor, eq, flags, Operand(zero_reg)); + } // Dispatch based on instance type. - __ GetInstanceTypeRange(t1, t2, FIRST_JS_FUNCTION_TYPE, t8); + __ GetInstanceTypeRange(map, instance_type, FIRST_JS_FUNCTION_TYPE, scratch); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructFunction), - RelocInfo::CODE_TARGET, ls, t8, + RelocInfo::CODE_TARGET, ls, scratch, Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); // Only dispatch to bound functions after checking whether they are // constructors. __ Jump(BUILTIN_CODE(masm->isolate(), ConstructBoundFunction), - RelocInfo::CODE_TARGET, eq, t2, Operand(JS_BOUND_FUNCTION_TYPE)); + RelocInfo::CODE_TARGET, eq, instance_type, + Operand(JS_BOUND_FUNCTION_TYPE)); // Only dispatch to proxies after checking whether they are constructors. - __ Branch(&non_proxy, ne, t2, Operand(JS_PROXY_TYPE)); + __ Branch(&non_proxy, ne, instance_type, Operand(JS_PROXY_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), ConstructProxy), RelocInfo::CODE_TARGET); @@ -2580,9 +2682,10 @@ void Builtins::Generate_Construct(MacroAssembler* masm) { __ bind(&non_proxy); { // Overwrite the original receiver with the (original) target. - __ StoreReceiver(a1, a0, kScratchReg); + __ StoreReceiver(target, argc, kScratchReg); // Let the "call_as_constructor_delegate" take care of the rest. - __ LoadNativeContextSlot(a1, Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); + __ LoadNativeContextSlot(target, + Context::CALL_AS_CONSTRUCTOR_DELEGATE_INDEX); __ Jump(masm->isolate()->builtins()->CallFunction(), RelocInfo::CODE_TARGET); } @@ -2702,6 +2805,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); @@ -3096,7 +3204,7 @@ void Builtins::Generate_CallApiCallback(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- cp : context // -- a1 : api function address - // -- a2 : arguments count (not including the receiver) + // -- a2 : arguments count // -- a3 : call data // -- a0 : holder // -- sp[0] : receiver diff --git a/deps/v8/src/builtins/number.tq b/deps/v8/src/builtins/number.tq index 777dd210d6ea59..4136b9a69335d7 100644 --- a/deps/v8/src/builtins/number.tq +++ b/deps/v8/src/builtins/number.tq @@ -75,6 +75,9 @@ macro NumberToStringSmi(x: int32, radix: int32): String labels Slow { if (!isNegative) { // Fast case where the result is a one character string. if (x < radix) { + if (x == 0) { + return ZeroStringConstant(); + } return StringFromSingleCharCode(ToCharCode(n)); } } else { diff --git a/deps/v8/src/builtins/ppc/builtins-ppc.cc b/deps/v8/src/builtins/ppc/builtins-ppc.cc index 4ea4332e19ac9e..56dfcfa2627b3c 100644 --- a/deps/v8/src/builtins/ppc/builtins-ppc.cc +++ b/deps/v8/src/builtins/ppc/builtins-ppc.cc @@ -69,6 +69,32 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Label loop, done; + __ cmpi(argc, Operand::Zero()); + __ beq(&done); + __ ShiftLeftU64(scratch, argc, Operand(kSystemPointerSizeLog2)); + __ add(scratch, array, scratch); + __ mtctr(argc); + + __ bind(&loop); + __ LoadU64WithUpdate(ip, MemOperand(scratch, -kSystemPointerSize)); + if (element_type == ArgumentsElementType::kHandle) { + __ LoadU64(ip, MemOperand(ip)); + } + __ push(ip); + __ bdnz(&loop); + __ bind(&done); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- r3 : number of arguments @@ -99,12 +125,15 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // correct position (including any undefined), instead of delaying this to // InvokeFunction. - // Set up pointer to last argument (skip receiver). + // Set up pointer to first argument (skip receiver). __ addi( r7, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // Copy arguments and receiver to the expression stack. - __ PushArray(r7, r3, r8, r0); + // r7: Pointer to start of arguments. + // r3: Number of arguments. + Generate_PushArguments(masm, r7, r3, r8, ArgumentsElementType::kRaw); + // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -234,8 +263,10 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { Label stack_overflow; __ StackOverflowCheck(r3, r8, &stack_overflow); - // Copy arguments and receiver to the expression stack. - __ PushArray(r7, r3, r8, r0); + // Copy arguments to the expression stack. + // r7: Pointer to start of argument. + // r3: Number of arguments. + Generate_PushArguments(masm, r7, r3, r8, ArgumentsElementType::kRaw); // Push implicit receiver. __ Push(r9); @@ -711,25 +742,11 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, __ bind(&enough_stack_space); - // Copy arguments to the stack in a loop. + // Copy arguments to the stack. // r4: function // r7: argc // r8: argv, i.e. points to first arg - Label loop, done; - __ cmpi(r7, Operand::Zero()); - __ beq(&done); - - __ ShiftLeftU64(r9, r7, Operand(kSystemPointerSizeLog2)); - __ add(r8, r8, r9); // point to last arg - - __ mtctr(r7); - __ bind(&loop); - __ LoadU64WithUpdate( - r9, MemOperand(r8, -kSystemPointerSize)); // read next parameter - __ LoadU64(r0, MemOperand(r9)); // dereference handle - __ push(r0); // push parameter - __ bdnz(&loop); - __ bind(&done); + Generate_PushArguments(masm, r8, r7, r9, ArgumentsElementType::kHandle); // Push the receiver. __ Push(r6); @@ -1851,6 +1868,40 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out, Register scratch1, Register scratch2) { + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ addi(old_sp, sp, Operand(-kSystemPointerSize)); + __ ShiftLeftU64(new_space, count, Operand(kSystemPointerSizeLog2)); + __ AllocateStackSpace(new_space); + + Register dest = pointer_to_new_space_out; + __ addi(dest, sp, Operand(-kSystemPointerSize)); + __ addi(r0, argc_in_out, Operand(1)); + __ mtctr(r0); + Label loop; + __ bind(&loop); + __ LoadU64WithUpdate(r0, MemOperand(old_sp, kSystemPointerSize)); + __ StoreU64WithUpdate(r0, MemOperand(dest, kSystemPointerSize)); + __ bdnz(&loop); + + // Update total number of arguments, restore dest. + __ add(argc_in_out, argc_in_out, count); + __ addi(dest, dest, Operand(kSystemPointerSize)); +} + +} // namespace + // static // TODO(v8:11615): Observe Code::kMaxArguments in CallOrConstructVarargs void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, @@ -1891,22 +1942,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = r9, dest = r8; - __ addi(src, sp, Operand(-kSystemPointerSize)); - __ ShiftLeftU64(r0, r7, Operand(kSystemPointerSizeLog2)); - __ sub(sp, sp, r0); - // Update stack pointer. - __ addi(dest, sp, Operand(-kSystemPointerSize)); - __ addi(r0, r3, Operand(1)); - __ mtctr(r0); - - __ bind(©); - __ LoadU64WithUpdate(r0, MemOperand(src, kSystemPointerSize)); - __ StoreU64WithUpdate(r0, MemOperand(dest, kSystemPointerSize)); - __ bdnz(©); - } + // r7: Number of arguments to make room for. + // r3: Number of arguments already on the stack. + // r8: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, r7, r3, r8, ip, r9); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -1923,10 +1962,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, __ bne(&skip); __ LoadRoot(scratch, RootIndex::kUndefinedValue); __ bind(&skip); - __ StoreU64WithUpdate(scratch, MemOperand(r8, kSystemPointerSize)); + __ StoreU64(scratch, MemOperand(r8)); + __ addi(r8, r8, Operand(kSystemPointerSize)); __ bdnz(&loop); __ bind(&no_args); - __ add(r3, r3, r7); } // Tail-call to the actual Call or Construct builtin. @@ -1995,29 +2034,17 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = ip, dest = r5; // r7 and r10 are context and root. - __ addi(src, sp, Operand(-kSystemPointerSize)); - // Update stack pointer. - __ ShiftLeftU64(scratch, r8, Operand(kSystemPointerSizeLog2)); - __ sub(sp, sp, scratch); - __ addi(dest, sp, Operand(-kSystemPointerSize)); - __ addi(r0, r3, Operand(1)); - __ mtctr(r0); - - __ bind(©); - __ LoadU64WithUpdate(r0, MemOperand(src, kSystemPointerSize)); - __ StoreU64WithUpdate(r0, MemOperand(dest, kSystemPointerSize)); - __ bdnz(©); - } + // r8: Number of arguments to make room for. + // r3: Number of arguments already on the stack. + // r5: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, r8, r3, r5, scratch, + ip); + // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ add(r3, r3, r8); - __ addi(r5, r5, Operand(kSystemPointerSize)); __ bind(&loop); { __ subi(r8, r8, Operand(1)); @@ -2047,8 +2074,12 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // ----------------------------------- __ AssertFunction(r4); + Label class_constructor; __ LoadTaggedPointerField( r5, FieldMemOperand(r4, JSFunction::kSharedFunctionInfoOffset), r0); + __ lwz(r6, FieldMemOperand(r5, SharedFunctionInfo::kFlagsOffset)); + __ TestBitMask(r6, SharedFunctionInfo::IsClassConstructorBit::kMask, r0); + __ bne(&class_constructor, cr0); // Enter the context of the function; ToObject has to run in the function // context, and we also need to take the global proxy from the function @@ -2126,6 +2157,14 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ LoadU16( r5, FieldMemOperand(r5, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(r4, no_reg, r5, r3, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameAndConstantPoolScope frame(masm, StackFrame::INTERNAL); + __ push(r4); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } namespace { @@ -2507,6 +2546,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); diff --git a/deps/v8/src/builtins/riscv64/builtins-riscv64.cc b/deps/v8/src/builtins/riscv64/builtins-riscv64.cc index 3676ae344198fe..51a08c12967366 100644 --- a/deps/v8/src/builtins/riscv64/builtins-riscv64.cc +++ b/deps/v8/src/builtins/riscv64/builtins-riscv64.cc @@ -70,6 +70,34 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, Register scratch2, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Label loop, entry; + if (kJSArgcIncludesReceiver) { + __ Sub64(scratch, argc, Operand(kJSArgcReceiverSlots)); + } else { + __ mv(scratch, argc); + } + __ Branch(&entry); + __ bind(&loop); + __ CalcScaledAddress(scratch2, array, scratch, kSystemPointerSizeLog2); + __ Ld(scratch2, MemOperand(scratch2)); + if (element_type == ArgumentsElementType::kHandle) { + __ Ld(scratch2, MemOperand(scratch2)); + } + __ push(scratch2); + __ bind(&entry); + __ Add64(scratch, scratch, Operand(-1)); + __ Branch(&loop, greater_equal, scratch, Operand(zero_reg)); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- a0 : number of arguments @@ -89,15 +117,18 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { __ Push(cp, a0); __ SmiUntag(a0); - // Set up pointer to last argument (skip receiver). - UseScratchRegisterScope temps(masm); - temps.Include(t0); - Register scratch = temps.Acquire(); + // Set up pointer to first argument (skip receiver). __ Add64( - scratch, fp, + t2, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); - // Copy arguments and receiver to the expression stack. - __ PushArray(scratch, a0); + // t2: Pointer to start of arguments. + // a0: Number of arguments. + { + UseScratchRegisterScope temps(masm); + temps.Include(t0); + Generate_PushArguments(masm, t2, a0, temps.Acquire(), temps.Acquire(), + ArgumentsElementType::kRaw); + } // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -115,9 +146,11 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { } // Remove caller arguments from the stack and return. - __ SmiScale(kScratchReg, kScratchReg, kSystemPointerSizeLog2); - __ Add64(sp, sp, kScratchReg); - __ Add64(sp, sp, kSystemPointerSize); + __ DropArguments(kScratchReg, MacroAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver, + kScratchReg); __ Ret(); } @@ -201,10 +234,9 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { // since a0 will store the return value of callRuntime. __ Move(a6, a0); - // Set up pointer to last argument. - Register scratch = temps.Acquire(); + // Set up pointer to first argument (skip receiver).. __ Add64( - scratch, fp, + t2, fp, Operand(StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // ----------- S t a t e ------------- @@ -234,7 +266,13 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { // InvokeFunction. // Copy arguments and receiver to the expression stack. - __ PushArray(scratch, a0); + // t2: Pointer to start of argument. + // a0: Number of arguments. + { + UseScratchRegisterScope temps(masm); + Generate_PushArguments(masm, t2, a0, temps.Acquire(), temps.Acquire(), + ArgumentsElementType::kRaw); + } // We need two copies because we may have to return the original one // and the calling conventions dictate that the called function pops the // receiver. The second copy is pushed after the arguments, @@ -283,9 +321,11 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { __ LeaveFrame(StackFrame::CONSTRUCT); // Remove caller arguments from the stack and return. - __ SmiScale(a4, a1, kSystemPointerSizeLog2); - __ Add64(sp, sp, a4); - __ Add64(sp, sp, kSystemPointerSize); + __ DropArguments(a1, MacroAssembler::kCountIsSmi, + kJSArgcIncludesReceiver + ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver, + a4); __ Ret(); __ bind(&check_receiver); @@ -411,6 +451,9 @@ void Builtins::Generate_ResumeGeneratorTrampoline(MacroAssembler* masm) { a3, FieldMemOperand(a4, JSFunction::kSharedFunctionInfoOffset)); __ Lhu(a3, FieldMemOperand(a3, SharedFunctionInfo::kFormalParameterCountOffset)); + if (kJSArgcIncludesReceiver) { + __ Sub64(a3, a3, Operand(kJSArgcReceiverSlots)); + } __ LoadTaggedPointerField( t1, FieldMemOperand(a1, JSGeneratorObject::kParametersAndRegistersOffset)); @@ -754,24 +797,21 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, __ Push(a2); // Check if we have enough stack space to push all arguments. - __ Add64(a6, a4, 1); + if (kJSArgcIncludesReceiver) { + __ mv(a6, a4); + } else { + __ Add64(a6, a4, 1); + } Generate_CheckStackOverflow(masm, a6, a0, s2); - // Copy arguments to the stack in a loop. + // Copy arguments to the stack. // a4: argc // a5: argv, i.e. points to first arg - Label loop, entry; - __ CalcScaledAddress(s1, a5, a4, kSystemPointerSizeLog2); - __ BranchShort(&entry); - // s1 points past last arg. - __ bind(&loop); - __ Add64(s1, s1, -kSystemPointerSize); - __ Ld(s2, MemOperand(s1)); // Read next parameter. - __ Ld(s2, MemOperand(s2)); // Dereference handle. - __ push(s2); // Push parameter. - __ bind(&entry); - __ Branch(&loop, ne, a5, Operand(s1)); - + { + UseScratchRegisterScope temps(masm); + Generate_PushArguments(masm, a5, a4, temps.Acquire(), temps.Acquire(), + ArgumentsElementType::kHandle); + } // Push the receive. __ Push(a3); @@ -855,8 +895,10 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ Ld(actual_params_size, MemOperand(fp, StandardFrameConstants::kArgCOffset)); __ Sll64(actual_params_size, actual_params_size, kSystemPointerSizeLog2); - __ Add64(actual_params_size, actual_params_size, Operand(kSystemPointerSize)); - + if (!kJSArgcIncludesReceiver) { + __ Add64(actual_params_size, actual_params_size, + Operand(kSystemPointerSize)); + } // If actual is bigger than formal, then we should use it to free up the stack // arguments. __ Branch(&L1, le, actual_params_size, Operand(params_size), @@ -868,7 +910,8 @@ static void LeaveInterpreterFrame(MacroAssembler* masm, Register scratch1, __ LeaveFrame(StackFrame::INTERPRETED); // Drop receiver + arguments. - __ Add64(sp, sp, params_size); + __ DropArguments(params_size, MacroAssembler::kCountIsBytes, + MacroAssembler::kCountIncludesReceiver); } // Tail-call |function_id| if |actual_marker| == |expected_marker| @@ -1241,7 +1284,7 @@ void Builtins::Generate_BaselineOutOfLinePrologue(MacroAssembler* masm) { // stack left to right. // // The live registers are: -// o a0 : actual argument count (not including the receiver) +// o a0 : actual argument count // o a1: the JS function object being called. // o a3: the incoming new target or generator object // o cp: our context @@ -1538,7 +1581,7 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( InterpreterPushArgsMode mode) { DCHECK(mode != InterpreterPushArgsMode::kArrayFunction); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a2 : the address of the first argument to be pushed. Subsequent // arguments should be consecutive above this, in the same order as // they are to be pushed onto the stack. @@ -1550,18 +1593,19 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( __ Sub64(a0, a0, Operand(1)); } - __ Add64(a3, a0, Operand(1)); // Add one for receiver. - - __ StackOverflowCheck(a3, a4, t0, &stack_overflow); - - if (receiver_mode == ConvertReceiverMode::kNullOrUndefined) { - // Don't copy receiver. + const bool skip_receiver = + receiver_mode == ConvertReceiverMode::kNullOrUndefined; + if (kJSArgcIncludesReceiver && skip_receiver) { + __ Sub64(a3, a0, Operand(kJSArgcReceiverSlots)); + } else if (!kJSArgcIncludesReceiver && !skip_receiver) { + __ Add64(a3, a0, Operand(1)); + } else { __ Move(a3, a0); } + __ StackOverflowCheck(a3, a4, t0, &stack_overflow); // This function modifies a2 and a4. GenerateInterpreterPushArgs(masm, a3, a2, a4); - if (receiver_mode == ConvertReceiverMode::kNullOrUndefined) { __ PushRoot(RootIndex::kUndefinedValue); } @@ -1594,23 +1638,26 @@ void Builtins::Generate_InterpreterPushArgsThenCallImpl( void Builtins::Generate_InterpreterPushArgsThenConstructImpl( MacroAssembler* masm, InterpreterPushArgsMode mode) { // ----------- S t a t e ------------- - // -- a0 : argument count (not including receiver) + // -- a0 : argument count // -- a3 : new target // -- a1 : constructor to call // -- a2 : allocation site feedback if available, undefined otherwise. // -- a4 : address of the first argument // ----------------------------------- Label stack_overflow; - __ Add64(a6, a0, 1); - __ StackOverflowCheck(a6, a5, t0, &stack_overflow); + __ StackOverflowCheck(a0, a5, t0, &stack_overflow); if (mode == InterpreterPushArgsMode::kWithFinalSpread) { // The spread argument should not be pushed. __ Sub64(a0, a0, Operand(1)); } - + Register argc_without_receiver = a0; + if (kJSArgcIncludesReceiver) { + argc_without_receiver = a6; + __ Sub64(argc_without_receiver, a0, Operand(kJSArgcReceiverSlots)); + } // Push the arguments, This function modifies a4 and a5. - GenerateInterpreterPushArgs(masm, a0, a4, a5); + GenerateInterpreterPushArgs(masm, argc_without_receiver, a4, a5); // Push a slot for the receiver. __ push(zero_reg); @@ -1813,13 +1860,14 @@ void Generate_ContinueToBuiltinHelper(MacroAssembler* masm, // Overwrite the hole inserted by the deoptimizer with the return value from // the LAZY deopt point. t0 contains the arguments count, the return value // from LAZY is always the last argument. - __ Add64(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + constexpr int return_value_offset = + BuiltinContinuationFrameConstants::kFixedSlotCount - + kJSArgcReceiverSlots; + __ Add64(a0, a0, Operand(return_value_offset)); __ CalcScaledAddress(t0, sp, a0, kSystemPointerSizeLog2); __ Sd(scratch, MemOperand(t0)); // Recover arguments count. - __ Sub64(a0, a0, - Operand(BuiltinContinuationFrameConstants::kFixedSlotCount)); + __ Sub64(a0, a0, Operand(return_value_offset)); } __ Ld(fp, MemOperand( @@ -1945,18 +1993,23 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { __ Ld(arg_array, MemOperand(sp, 2 * kSystemPointerSize)); Label done0, done1; - __ Branch(&done0, ne, argc, Operand(zero_reg), Label::Distance::kNear); + UseScratchRegisterScope temps(masm); + Register scratch = temps.Acquire(); + __ Sub64(scratch, argc, JSParameterCount(0)); + __ Branch(&done0, ne, scratch, Operand(zero_reg), Label::Distance::kNear); __ Move(arg_array, undefined_value); // if argc == 0 __ Move(this_arg, undefined_value); // if argc == 0 __ bind(&done0); // else (i.e., argc > 0) - __ Branch(&done1, ne, argc, Operand(1), Label::Distance::kNear); + __ Branch(&done1, ne, scratch, Operand(1), Label::Distance::kNear); __ Move(arg_array, undefined_value); // if argc == 1 __ bind(&done1); // else (i.e., argc > 1) __ Ld(receiver, MemOperand(sp)); - __ CalcScaledAddress(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(this_arg, MemOperand(sp)); + __ DropArgumentsAndPushNewReceiver( + argc, this_arg, MacroAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -1984,7 +2037,7 @@ void Builtins::Generate_FunctionPrototypeApply(MacroAssembler* masm) { // arguments to the receiver. __ bind(&no_arguments); { - __ Move(a0, zero_reg); + __ li(a0, JSParameterCount(0)); DCHECK(receiver == a1); __ Jump(masm->isolate()->builtins()->Call(), RelocInfo::CODE_TARGET); } @@ -1999,7 +2052,8 @@ void Builtins::Generate_FunctionPrototypeCall(MacroAssembler* masm) { // a0: actual number of arguments { Label done; - __ Branch(&done, ne, a0, Operand(zero_reg), Label::Distance::kNear); + __ Branch(&done, ne, a0, Operand(JSParameterCount(0)), + Label::Distance::kNear); __ PushRoot(RootIndex::kUndefinedValue); __ Add64(a0, a0, Operand(1)); __ bind(&done); @@ -2041,23 +2095,28 @@ void Builtins::Generate_ReflectApply(MacroAssembler* masm) { __ Ld(arguments_list, MemOperand(sp, 3 * kSystemPointerSize)); Label done0, done1, done2; - __ Branch(&done0, ne, argc, Operand(zero_reg), Label::Distance::kNear); + UseScratchRegisterScope temps(masm); + Register scratch = temps.Acquire(); + __ Sub64(scratch, argc, Operand(JSParameterCount(0))); + __ Branch(&done0, ne, scratch, Operand(zero_reg), Label::Distance::kNear); __ Move(arguments_list, undefined_value); // if argc == 0 __ Move(this_argument, undefined_value); // if argc == 0 __ Move(target, undefined_value); // if argc == 0 __ bind(&done0); // argc != 0 - __ Branch(&done1, ne, argc, Operand(1), Label::Distance::kNear); + __ Branch(&done1, ne, scratch, Operand(1), Label::Distance::kNear); __ Move(arguments_list, undefined_value); // if argc == 1 __ Move(this_argument, undefined_value); // if argc == 1 __ bind(&done1); // argc > 1 - __ Branch(&done2, ne, argc, Operand(2), Label::Distance::kNear); + __ Branch(&done2, ne, scratch, Operand(2), Label::Distance::kNear); __ Move(arguments_list, undefined_value); // if argc == 2 __ bind(&done2); // argc > 2 - __ CalcScaledAddress(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(this_argument, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, this_argument, MacroAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2104,23 +2163,28 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { __ Ld(new_target, MemOperand(sp, 3 * kSystemPointerSize)); Label done0, done1, done2; - __ Branch(&done0, ne, argc, Operand(zero_reg), Label::Distance::kNear); + UseScratchRegisterScope temps(masm); + Register scratch = temps.Acquire(); + __ Sub64(scratch, argc, Operand(JSParameterCount(0))); + __ Branch(&done0, ne, scratch, Operand(zero_reg), Label::Distance::kNear); __ Move(arguments_list, undefined_value); // if argc == 0 __ Move(new_target, undefined_value); // if argc == 0 __ Move(target, undefined_value); // if argc == 0 __ bind(&done0); - __ Branch(&done1, ne, argc, Operand(1), Label::Distance::kNear); + __ Branch(&done1, ne, scratch, Operand(1), Label::Distance::kNear); __ Move(arguments_list, undefined_value); // if argc == 1 __ Move(new_target, target); // if argc == 1 __ bind(&done1); - __ Branch(&done2, ne, argc, Operand(2), Label::Distance::kNear); + __ Branch(&done2, ne, scratch, Operand(2), Label::Distance::kNear); __ Move(new_target, target); // if argc == 2 __ bind(&done2); - __ CalcScaledAddress(sp, sp, argc, kSystemPointerSizeLog2); - __ Sd(undefined_value, MemOperand(sp, 0)); // Overwrite receiver + __ DropArgumentsAndPushNewReceiver( + argc, undefined_value, MacroAssembler::kCountIsInteger, + kJSArgcIncludesReceiver ? MacroAssembler::kCountIncludesReceiver + : MacroAssembler::kCountExcludesReceiver); } // ----------- S t a t e ------------- @@ -2143,6 +2207,56 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out) { + UseScratchRegisterScope temps(masm); + Register scratch1 = temps.Acquire(); + Register scratch2 = temps.Acquire(); + Register scratch3 = temps.Acquire(); + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ mv(old_sp, sp); + __ slli(new_space, count, kPointerSizeLog2); + __ Sub64(sp, sp, Operand(new_space)); + + Register end = scratch2; + Register value = scratch3; + Register dest = pointer_to_new_space_out; + __ mv(dest, sp); + __ CalcScaledAddress(end, old_sp, argc_in_out, kSystemPointerSizeLog2); + Label loop, done; + if (kJSArgcIncludesReceiver) { + __ Branch(&done, ge, old_sp, Operand(end)); + } else { + __ Branch(&done, gt, old_sp, Operand(end)); + } + __ bind(&loop); + __ Ld(value, MemOperand(old_sp, 0)); + __ Sd(value, MemOperand(dest, 0)); + __ Add64(old_sp, old_sp, Operand(kSystemPointerSize)); + __ Add64(dest, dest, Operand(kSystemPointerSize)); + if (kJSArgcIncludesReceiver) { + __ Branch(&loop, lt, old_sp, Operand(end)); + } else { + __ Branch(&loop, le, old_sp, Operand(end)); + } + __ bind(&done); + + // Update total number of arguments. + __ Add64(argc_in_out, argc_in_out, count); +} + +} // namespace + // static void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle code) { @@ -2150,7 +2264,7 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, temps.Include(t1, t0); // ----------- S t a t e ------------- // -- a1 : target - // -- a0 : number of parameters on the stack (not including the receiver) + // -- a0 : number of parameters on the stack // -- a2 : arguments list (a FixedArray) // -- a4 : len (number of elements to push from args) // -- a3 : new.target (for [[Construct]]) @@ -2181,27 +2295,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - Register src = a6, dest = a7; - UseScratchRegisterScope temps(masm); - Register size = temps.Acquire(); - Register vlaue = temps.Acquire(); - __ Move(src, sp); - __ Sll64(size, len, kSystemPointerSizeLog2); - __ Sub64(sp, sp, Operand(size)); - // Update stack pointer. - __ Move(dest, sp); - __ Add64(size, a0, Operand(zero_reg)); - - __ bind(©); - __ Ld(vlaue, MemOperand(src, 0)); - __ Sd(vlaue, MemOperand(dest, 0)); - __ Sub64(size, size, Operand(1)); - __ Add64(src, src, Operand(kSystemPointerSize)); - __ Add64(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, size, Operand(zero_reg)); - } + // a4: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a7: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a4, a0, a7); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -2211,7 +2308,6 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, UseScratchRegisterScope temps(masm); Register hole_value = temps.Acquire(); __ Add64(src, args, FixedArray::kHeaderSize - kHeapObjectTag); - __ Add64(a0, a0, len); // The 'len' argument for Call() or Construct(). __ Branch(&done, eq, len, Operand(zero_reg), Label::Distance::kNear); __ Sll64(scratch, len, kTaggedSizeLog2); __ Sub64(scratch, sp, Operand(scratch)); @@ -2241,7 +2337,7 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle code) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a3 : the new.target (for [[Construct]] calls) // -- a1 : the target to call (can be any Object) // -- a2 : start index (to support rest parameters) @@ -2277,7 +2373,10 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, __ Ld(a7, MemOperand(fp, StandardFrameConstants::kArgCOffset)); Label stack_done, stack_overflow; - __ Sub32(a7, a7, a2); + if (kJSArgcIncludesReceiver) { + __ Sub64(a7, a7, Operand(kJSArgcReceiverSlots)); + } + __ Sub64(a7, a7, a2); __ Branch(&stack_done, le, a7, Operand(zero_reg)); { // Check for stack overflow. @@ -2293,33 +2392,16 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy; - UseScratchRegisterScope temps(masm); - Register src = temps.Acquire(), dest = a2, scratch = temps.Acquire(); - Register count = temps.Acquire(); - __ Move(src, sp); - // Update stack pointer. - __ Sll64(scratch, a7, kSystemPointerSizeLog2); - __ Sub64(sp, sp, Operand(scratch)); - __ Move(dest, sp); - __ Move(count, a0); - - __ bind(©); - __ Ld(scratch, MemOperand(src, 0)); - __ Sd(scratch, MemOperand(dest, 0)); - __ Sub64(count, count, Operand(1)); - __ Add64(src, src, Operand(kSystemPointerSize)); - __ Add64(dest, dest, Operand(kSystemPointerSize)); - __ Branch(©, ge, count, Operand(zero_reg)); - } + // a7: Number of arguments to make room for. + // a0: Number of arguments already on the stack. + // a2: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, a7, a0, a2); // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ Add64(a0, a0, a7); __ bind(&loop); { UseScratchRegisterScope temps(masm); @@ -2346,13 +2428,11 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, void Builtins::Generate_CallFunction(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // ----------------------------------- __ AssertFunction(a1); - // See ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) - // Check that function is not a "classConstructor". Label class_constructor; __ LoadTaggedPointerField( a2, FieldMemOperand(a1, JSFunction::kSharedFunctionInfoOffset)); @@ -2375,7 +2455,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ Branch(&done_convert, ne, kScratchReg, Operand(zero_reg)); { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2429,7 +2509,7 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ bind(&done_convert); // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSFunction) // -- a2 : the shared function info. // -- cp : the function context. @@ -2452,7 +2532,7 @@ namespace { void Generate_PushBoundArguments(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : target (checked to be a JSBoundFunction) // -- a3 : new.target (only in case of [[Construct]]) // ----------------------------------- @@ -2469,7 +2549,7 @@ void Generate_PushBoundArguments(MacroAssembler* masm) { __ Branch(&no_bound_arguments, eq, bound_argc, Operand(zero_reg)); { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : target (checked to be a JSBoundFunction) // -- a2 : the [[BoundArguments]] (implemented as FixedArray) // -- a3 : new.target (only in case of [[Construct]]) @@ -2523,7 +2603,7 @@ void Generate_PushBoundArguments(MacroAssembler* masm) { // static void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // ----------------------------------- __ AssertBoundFunction(a1); @@ -2550,23 +2630,23 @@ void Builtins::Generate_CallBoundFunctionImpl(MacroAssembler* masm) { // static void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the target to call (can be any Object). // ----------------------------------- - Label non_callable, non_smi; + Label non_callable, class_constructor; UseScratchRegisterScope temps(masm); temps.Include(t1, t2); temps.Include(t4); Register map = temps.Acquire(), type = temps.Acquire(), range = temps.Acquire(); __ JumpIfSmi(a1, &non_callable); - __ bind(&non_smi); __ LoadMap(map, a1); - __ GetInstanceTypeRange(map, type, FIRST_JS_FUNCTION_TYPE, range); + __ GetInstanceTypeRange(map, type, FIRST_CALLABLE_JS_FUNCTION_TYPE, range); __ Jump(masm->isolate()->builtins()->CallFunction(mode), RelocInfo::CODE_TARGET, Uless_equal, range, - Operand(LAST_JS_FUNCTION_TYPE - FIRST_JS_FUNCTION_TYPE)); + Operand(LAST_CALLABLE_JS_FUNCTION_TYPE - + FIRST_CALLABLE_JS_FUNCTION_TYPE)); __ Jump(BUILTIN_CODE(masm->isolate(), CallBoundFunction), RelocInfo::CODE_TARGET, eq, type, Operand(JS_BOUND_FUNCTION_TYPE)); Register scratch = map; @@ -2579,6 +2659,10 @@ void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { __ Jump(BUILTIN_CODE(masm->isolate(), CallProxy), RelocInfo::CODE_TARGET, eq, type, Operand(JS_PROXY_TYPE)); + // ES6 section 9.2.1 [[Call]] ( thisArgument, argumentsList) + // Check that the function is not a "classConstructor". + __ Branch(&class_constructor, eq, type, Operand(JS_CLASS_CONSTRUCTOR_TYPE)); + // 2. Call to something else, which might have a [[Call]] internal method (if // not we raise an exception). // Overwrite the original receiver with the (original) target. @@ -2596,11 +2680,19 @@ void Builtins::Generate_Call(MacroAssembler* masm, ConvertReceiverMode mode) { __ Push(a1); __ CallRuntime(Runtime::kThrowCalledNonCallable); } + // 4. The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ Push(a1); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + __ ebreak(); + } } void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (checked to be a JSFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2632,7 +2724,7 @@ void Builtins::Generate_ConstructFunction(MacroAssembler* masm) { // static void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the function to call (checked to be a JSBoundFunction) // -- a3 : the new target (checked to be a constructor) // ----------------------------------- @@ -2662,7 +2754,7 @@ void Builtins::Generate_ConstructBoundFunction(MacroAssembler* masm) { // static void Builtins::Generate_Construct(MacroAssembler* masm) { // ----------- S t a t e ------------- - // -- a0 : the number of arguments (not including the receiver) + // -- a0 : the number of arguments // -- a1 : the constructor to call (can be any Object) // -- a3 : the new target (either the same as the constructor or // the JSFunction on which new was invoked initially) @@ -3051,6 +3143,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); @@ -3188,7 +3285,7 @@ void Builtins::Generate_CallApiCallback(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- cp : context // -- a1 : api function address - // -- a2 : arguments count (not including the receiver) + // -- a2 : arguments count // -- a3 : call data // -- a0 : holder // -- diff --git a/deps/v8/src/builtins/s390/builtins-s390.cc b/deps/v8/src/builtins/s390/builtins-s390.cc index 65fffbba7956ae..3b51a086ec0fcf 100644 --- a/deps/v8/src/builtins/s390/builtins-s390.cc +++ b/deps/v8/src/builtins/s390/builtins-s390.cc @@ -69,6 +69,32 @@ static void GenerateTailCallToReturnedCode(MacroAssembler* masm, namespace { +enum class ArgumentsElementType { + kRaw, // Push arguments as they are. + kHandle // Dereference arguments before pushing. +}; + +void Generate_PushArguments(MacroAssembler* masm, Register array, Register argc, + Register scratch, + ArgumentsElementType element_type) { + DCHECK(!AreAliased(array, argc, scratch)); + Register counter = scratch; + Register value = ip; + Label loop, entry; + __ mov(counter, argc); + __ b(&entry); + __ bind(&loop); + __ ShiftLeftU64(value, counter, Operand(kSystemPointerSizeLog2)); + __ LoadU64(value, MemOperand(array, value)); + if (element_type == ArgumentsElementType::kHandle) { + __ LoadU64(value, MemOperand(value)); + } + __ push(value); + __ bind(&entry); + __ SubS64(counter, counter, Operand(1)); + __ bge(&loop); +} + void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // ----------- S t a t e ------------- // -- r2 : number of arguments @@ -98,11 +124,14 @@ void Generate_JSBuiltinsConstructStubHelper(MacroAssembler* masm) { // correct position (including any undefined), instead of delaying this to // InvokeFunction. - // Set up pointer to last argument (skip receiver). + // Set up pointer to first argument (skip receiver). __ la(r6, MemOperand(fp, StandardFrameConstants::kCallerSPOffset + kSystemPointerSize)); // Copy arguments and receiver to the expression stack. - __ PushArray(r6, r2, r1, r0); + // r6: Pointer to start of arguments. + // r2: Number of arguments. + Generate_PushArguments(masm, r6, r2, r1, ArgumentsElementType::kRaw); + // The receiver for the builtin/api call. __ PushRoot(RootIndex::kTheHoleValue); @@ -230,7 +259,9 @@ void Builtins::Generate_JSConstructStubGeneric(MacroAssembler* masm) { __ StackOverflowCheck(r2, r7, &stack_overflow); // Copy arguments and receiver to the expression stack. - __ PushArray(r6, r2, r1, r0); + // r6: Pointer to start of argument. + // r2: Number of arguments. + Generate_PushArguments(masm, r6, r2, r1, ArgumentsElementType::kRaw); // Push implicit receiver. __ Push(r8); @@ -642,6 +673,7 @@ void Generate_JSEntryVariant(MacroAssembler* masm, StackFrame::Type type, // pop the faked function when we return. Handle trampoline_code = masm->isolate()->builtins()->code_handle(entry_trampoline); + USE(pushed_stack_space); DCHECK_EQ(kPushedStackSpace, pushed_stack_space); __ Call(trampoline_code, RelocInfo::CODE_TARGET); @@ -758,7 +790,7 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, __ bind(&enough_stack_space); - // Copy arguments to the stack in a loop from argv to sp. + // Copy arguments to the stack from argv to sp. // The arguments are actually placed in reverse order on sp // compared to argv (i.e. arg1 is highest memory in sp). // r2: argc @@ -768,24 +800,7 @@ static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm, // r7: scratch reg to hold scaled argc // r8: scratch reg to hold arg handle // r9: scratch reg to hold index into argv - Label argLoop, argExit; - - __ ShiftLeftU64(r9, r2, Operand(kSystemPointerSizeLog2)); - __ lay(r9, MemOperand(r6, r9, -kSystemPointerSize)); // point to last arg - - __ ltgr(r7, r2); - - __ beq(&argExit, Label::kNear); - __ bind(&argLoop); - - __ LoadU64(r8, MemOperand(r9)); // read next parameter - __ LoadU64(r0, MemOperand(r8)); // dereference handle - __ Push(r0); - __ lay(r9, MemOperand(r9, -kSystemPointerSize)); // r9++; - __ SubS64(r7, r7, Operand(1)); - __ bgt(&argLoop); - - __ bind(&argExit); + Generate_PushArguments(masm, r6, r2, r1, ArgumentsElementType::kHandle); // Push the receiver. __ Push(r5); @@ -1885,6 +1900,46 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { RelocInfo::CODE_TARGET); } +namespace { + +// Allocate new stack space for |count| arguments and shift all existing +// arguments already on the stack. |pointer_to_new_space_out| points to the +// first free slot on the stack to copy additional arguments to and +// |argc_in_out| is updated to include |count|. +void Generate_AllocateSpaceAndShiftExistingArguments( + MacroAssembler* masm, Register count, Register argc_in_out, + Register pointer_to_new_space_out, Register scratch1, Register scratch2) { + DCHECK(!AreAliased(count, argc_in_out, pointer_to_new_space_out, scratch1, + scratch2)); + Register old_sp = scratch1; + Register new_space = scratch2; + __ mov(old_sp, sp); + __ ShiftLeftU64(new_space, count, Operand(kSystemPointerSizeLog2)); + __ AllocateStackSpace(new_space); + + Register end = scratch2; + Register value = r1; + Register dest = pointer_to_new_space_out; + __ mov(dest, sp); + __ ShiftLeftU64(r0, argc_in_out, Operand(kSystemPointerSizeLog2)); + __ AddS64(end, old_sp, r0); + Label loop, done; + __ bind(&loop); + __ CmpS64(old_sp, end); + __ bgt(&done); + __ LoadU64(value, MemOperand(old_sp)); + __ lay(old_sp, MemOperand(old_sp, kSystemPointerSize)); + __ StoreU64(value, MemOperand(dest)); + __ lay(dest, MemOperand(dest, kSystemPointerSize)); + __ b(&loop); + __ bind(&done); + + // Update total number of arguments. + __ AddS64(argc_in_out, argc_in_out, count); +} + +} // namespace + // static // TODO(v8:11615): Observe Code::kMaxArguments in CallOrConstructVarargs void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, @@ -1926,25 +1981,10 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy, check; - Register num = ip, src = r8, dest = r7; - __ mov(src, sp); - __ ShiftLeftU64(r1, r6, Operand(kSystemPointerSizeLog2)); - __ SubS64(sp, sp, r1); - // Update stack pointer. - __ mov(dest, sp); - __ ltgr(num, r2); - __ b(&check); - __ bind(©); - __ LoadU64(r0, MemOperand(src)); - __ lay(src, MemOperand(src, kSystemPointerSize)); - __ StoreU64(r0, MemOperand(dest)); - __ lay(dest, MemOperand(dest, kSystemPointerSize)); - __ SubS64(num, num, Operand(1)); - __ bind(&check); - __ b(ge, ©); - } + // r6: Number of arguments to make room for. + // r2: Number of arguments already on the stack. + // r7: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, r6, r2, r7, ip, r8); // Push arguments onto the stack (thisArgument is already on the stack). { @@ -1965,7 +2005,6 @@ void Builtins::Generate_CallOrConstructVarargs(MacroAssembler* masm, __ lay(r7, MemOperand(r7, kSystemPointerSize)); __ BranchOnCount(r1, &loop); __ bind(&no_args); - __ AddS64(r2, r2, r6); } // Tail-call to the actual Call or Construct builtin. @@ -2035,33 +2074,17 @@ void Builtins::Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, // Move the arguments already in the stack, // including the receiver and the return address. - { - Label copy, check; - Register num = r1, src = ip, - dest = r4; // r7 and r10 are context and root. - __ mov(src, sp); - // Update stack pointer. - __ ShiftLeftU64(scratch, r7, Operand(kSystemPointerSizeLog2)); - __ SubS64(sp, sp, scratch); - __ mov(dest, sp); - __ ltgr(num, r2); - __ b(&check); - __ bind(©); - __ LoadU64(r0, MemOperand(src)); - __ lay(src, MemOperand(src, kSystemPointerSize)); - __ StoreU64(r0, MemOperand(dest)); - __ lay(dest, MemOperand(dest, kSystemPointerSize)); - __ SubS64(num, num, Operand(1)); - __ bind(&check); - __ b(ge, ©); - } + // r7: Number of arguments to make room for.0 + // r2: Number of arguments already on the stack. + // r4: Points to first free slot on the stack after arguments were shifted. + Generate_AllocateSpaceAndShiftExistingArguments(masm, r7, r2, r4, scratch, + ip); // Copy arguments from the caller frame. // TODO(victorgomes): Consider using forward order as potentially more cache // friendly. { Label loop; - __ AddS64(r2, r2, r7); __ bind(&loop); { __ SubS64(r7, r7, Operand(1)); @@ -2091,8 +2114,12 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, // ----------------------------------- __ AssertFunction(r3); + Label class_constructor; __ LoadTaggedPointerField( r4, FieldMemOperand(r3, JSFunction::kSharedFunctionInfoOffset)); + __ LoadU32(r5, FieldMemOperand(r4, SharedFunctionInfo::kFlagsOffset)); + __ TestBitMask(r5, SharedFunctionInfo::IsClassConstructorBit::kMask, r0); + __ bne(&class_constructor); // Enter the context of the function; ToObject has to run in the function // context, and we also need to take the global proxy from the function @@ -2170,6 +2197,14 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ LoadU16( r4, FieldMemOperand(r4, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(r3, no_reg, r4, r2, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameAndConstantPoolScope frame(masm, StackFrame::INTERNAL); + __ push(r3); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } namespace { @@ -2540,6 +2575,11 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ Trap(); } +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // TODO(v8:12191): Implement for this platform. + __ Trap(); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { // Only needed on x64. __ Trap(); diff --git a/deps/v8/src/builtins/setup-builtins-internal.cc b/deps/v8/src/builtins/setup-builtins-internal.cc index d61a2705fb32a2..9dcecdab3302e6 100644 --- a/deps/v8/src/builtins/setup-builtins-internal.cc +++ b/deps/v8/src/builtins/setup-builtins-internal.cc @@ -226,6 +226,7 @@ void SetupIsolateDelegate::ReplacePlaceholders(Isolate* isolate) { RelocInfo::ModeMask(RelocInfo::FULL_EMBEDDED_OBJECT) | RelocInfo::ModeMask(RelocInfo::COMPRESSED_EMBEDDED_OBJECT) | RelocInfo::ModeMask(RelocInfo::RELATIVE_CODE_TARGET); + PtrComprCageBase cage_base(isolate); for (Builtin builtin = Builtins::kFirst; builtin <= Builtins::kLast; ++builtin) { Code code = builtins->code(builtin); @@ -242,8 +243,8 @@ void SetupIsolateDelegate::ReplacePlaceholders(Isolate* isolate) { UPDATE_WRITE_BARRIER, SKIP_ICACHE_FLUSH); } else { DCHECK(RelocInfo::IsEmbeddedObjectMode(rinfo->rmode())); - Object object = rinfo->target_object(); - if (!object.IsCode()) continue; + Object object = rinfo->target_object(cage_base); + if (!object.IsCode(cage_base)) continue; Code target = Code::cast(object); if (!target.is_builtin()) continue; Code new_target = builtins->code(target.builtin_id()); diff --git a/deps/v8/src/builtins/typed-array-createtypedarray.tq b/deps/v8/src/builtins/typed-array-createtypedarray.tq index 519d98867b8285..45a396afe63808 100644 --- a/deps/v8/src/builtins/typed-array-createtypedarray.tq +++ b/deps/v8/src/builtins/typed-array-createtypedarray.tq @@ -292,7 +292,7 @@ transitioning macro ConstructByArrayBuffer(implicit context: Context)( // in the step 12 branch. newByteLength = bufferByteLength - offset; newLength = elementsInfo.CalculateLength(newByteLength) - otherwise IfInvalidOffset; + otherwise IfInvalidLength; // 12. Else, } else { diff --git a/deps/v8/src/builtins/typed-array-every.tq b/deps/v8/src/builtins/typed-array-every.tq index f2701a040b9f87..fa1b7ab619dcba 100644 --- a/deps/v8/src/builtins/typed-array-every.tq +++ b/deps/v8/src/builtins/typed-array-every.tq @@ -9,13 +9,14 @@ const kBuiltinNameEvery: constexpr string = '%TypedArray%.prototype.every'; // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.every transitioning macro EveryAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, length: uintptr, + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, callbackfn: Callable, thisArg: JSAny): Boolean { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); // 5. Let k be 0. // 6. Repeat, while k < len - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -59,13 +60,12 @@ TypedArrayPrototypeEvery( // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const length = LoadJSTypedArrayLengthAndCheckDetached(array) + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) otherwise IsDetachedOrOutOfBounds; // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return EveryAllElements( - %RawDownCast(array), length, callbackfn, thisArg); + return EveryAllElements(attachedArrayAndLength, callbackfn, thisArg); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameEvery); } label IsDetachedOrOutOfBounds deferred { diff --git a/deps/v8/src/builtins/typed-array-filter.tq b/deps/v8/src/builtins/typed-array-filter.tq index 18fbce9f09f883..736dff0affb8e1 100644 --- a/deps/v8/src/builtins/typed-array-filter.tq +++ b/deps/v8/src/builtins/typed-array-filter.tq @@ -13,14 +13,13 @@ transitioning javascript builtin TypedArrayPrototypeFilter( try { // 1. Let O be the this value. // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise ThrowTypeError( MessageTemplate::kNotTypedArray, kBuiltinNameFilter); - const src = typed_array::EnsureAttached(array) otherwise IsDetached; - - // 3. Let len be O.[[ArrayLength]]. - const len: uintptr = src.length; + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); @@ -32,19 +31,20 @@ transitioning javascript builtin TypedArrayPrototypeFilter( // TODO(v8:4153): Support huge TypedArrays here. (growable fixed arrays // can't be longer than kMaxSmiValue). let kept = growable_fixed_array::NewGrowableFixedArray(); - let witness = typed_array::NewAttachedJSTypedArrayWitness(src); + let witness = typed_array::NewAttachedJSTypedArrayWitness( + attachedArrayAndLength.array); // 7. Let k be 0. // 8. Let captured be 0. // 9. Repeat, while k < len - for (let k: uintptr = 0; k < len; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { let value: JSAny; // a. Let Pk be ! ToString(k). // b. Let kValue be ? Get(O, Pk). try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -80,7 +80,7 @@ transitioning javascript builtin TypedArrayPrototypeFilter( // 13. Return A. return typedArray; - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameFilter); } } diff --git a/deps/v8/src/builtins/typed-array-find.tq b/deps/v8/src/builtins/typed-array-find.tq index b37b4ef8a91f41..c2456f9268fcc4 100644 --- a/deps/v8/src/builtins/typed-array-find.tq +++ b/deps/v8/src/builtins/typed-array-find.tq @@ -9,13 +9,14 @@ const kBuiltinNameFind: constexpr string = '%TypedArray%.prototype.find'; // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.find transitioning macro FindAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, predicate: Callable, - thisArg: JSAny): JSAny { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + predicate: Callable, thisArg: JSAny): JSAny { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); + // 5. Let k be 0. // 6. Repeat, while k < len - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -23,9 +24,9 @@ transitioning macro FindAllElements(implicit context: Context)( // kValue must be undefined when the buffer is detached. let value: JSAny; try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -56,18 +57,22 @@ TypedArrayPrototypeFind( // arguments[0] = callback // arguments[1] = thisArg try { + // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; + // 4. If IsCallable(predicate) is false, throw a TypeError exception. const predicate = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return FindAllElements(uarray, predicate, thisArg); + return FindAllElements(attachedArrayAndLength, predicate, thisArg); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameFind); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameFind); } } diff --git a/deps/v8/src/builtins/typed-array-findindex.tq b/deps/v8/src/builtins/typed-array-findindex.tq index aede90dc7f7be2..6a63008145a9af 100644 --- a/deps/v8/src/builtins/typed-array-findindex.tq +++ b/deps/v8/src/builtins/typed-array-findindex.tq @@ -9,13 +9,14 @@ const kBuiltinNameFindIndex: constexpr string = '%TypedArray%.prototype.findIndex'; transitioning macro FindIndexAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, predicate: Callable, - thisArg: JSAny): Number { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + predicate: Callable, thisArg: JSAny): Number { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); + // 5. Let k be 0. // 6. Repeat, while k < len - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -23,9 +24,9 @@ transitioning macro FindIndexAllElements(implicit context: Context)( // kValue must be undefined when the buffer is detached. let value: JSAny; try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -47,21 +48,25 @@ transitioning macro FindIndexAllElements(implicit context: Context)( transitioning javascript builtin TypedArrayPrototypeFindIndex( js-implicit context: NativeContext, receiver: JSAny)(...arguments): JSAny { - // arguments[0] = callback + // arguments[0] = predicate // arguments[1] = thisArg. try { + // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; + // 4. If IsCallable(predicate) is false, throw a TypeError exception. const predicate = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return FindIndexAllElements(uarray, predicate, thisArg); + return FindIndexAllElements(attachedArrayAndLength, predicate, thisArg); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameFindIndex); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameFindIndex); } } diff --git a/deps/v8/src/builtins/typed-array-findlast.tq b/deps/v8/src/builtins/typed-array-findlast.tq index 15f67760c0f145..45695f83ac7f50 100644 --- a/deps/v8/src/builtins/typed-array-findlast.tq +++ b/deps/v8/src/builtins/typed-array-findlast.tq @@ -10,14 +10,13 @@ const kBuiltinNameFindLast: constexpr string = // https://tc39.es/proposal-array-find-from-last/index.html#sec-%typedarray%.prototype.findlast transitioning macro FindLastAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, predicate: Callable, - thisArg: JSAny): JSAny { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - // 3. Let len be O.[[ArrayLength]]. - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + predicate: Callable, thisArg: JSAny): JSAny { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); // 5. Let k be len - 1. // 6. Repeat, while k ≥ 0 - for (let k: uintptr = length; k-- > 0;) { + for (let k: uintptr = attachedArrayAndLength.length; k-- > 0;) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -25,9 +24,9 @@ transitioning macro FindLastAllElements(implicit context: Context)( // kValue must be undefined when the buffer was detached. let value: JSAny; try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -54,24 +53,25 @@ transitioning macro FindLastAllElements(implicit context: Context)( transitioning javascript builtin TypedArrayPrototypeFindLast( js-implicit context: NativeContext, receiver: JSAny)(...arguments): JSAny { - // arguments[0] = callback + // arguments[0] = predicate // arguments[1] = thisArg try { // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - // 2. Perform ? ValidateTypedArray(O). - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; // 4. If IsCallable(predicate) is false, throw a TypeError exception. const predicate = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return FindLastAllElements(uarray, predicate, thisArg); + return FindLastAllElements(attachedArrayAndLength, predicate, thisArg); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameFindLast); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameFindLast); } } diff --git a/deps/v8/src/builtins/typed-array-findlastindex.tq b/deps/v8/src/builtins/typed-array-findlastindex.tq index 56d139d8b1b5e2..1edee5444feba0 100644 --- a/deps/v8/src/builtins/typed-array-findlastindex.tq +++ b/deps/v8/src/builtins/typed-array-findlastindex.tq @@ -10,14 +10,13 @@ const kBuiltinNameFindLastIndex: constexpr string = // https://tc39.es/proposal-array-find-from-last/index.html#sec-%typedarray%.prototype.findlastindex transitioning macro FindLastIndexAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, predicate: Callable, - thisArg: JSAny): Number { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - // 3. Let len be O.[[ArrayLength]]. - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + predicate: Callable, thisArg: JSAny): Number { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); // 5. Let k be len - 1. // 6. Repeat, while k ≥ 0 - for (let k: uintptr = length; k-- > 0;) { + for (let k: uintptr = attachedArrayAndLength.length; k-- > 0;) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -25,9 +24,9 @@ transitioning macro FindLastIndexAllElements(implicit context: Context)( // kValue must be undefined when the buffer was detached. let value: JSAny; try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -54,25 +53,25 @@ transitioning macro FindLastIndexAllElements(implicit context: Context)( transitioning javascript builtin TypedArrayPrototypeFindLastIndex( js-implicit context: NativeContext, receiver: JSAny)(...arguments): JSAny { - // arguments[0] = callback - // arguments[1] = thisArg. + // arguments[0] = predicate + // arguments[1] = thisArg try { // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - // 2. Perform ? ValidateTypedArray(O). - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; // 4. If IsCallable(predicate) is false, throw a TypeError exception. const predicate = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - - return FindLastIndexAllElements(uarray, predicate, thisArg); + return FindLastIndexAllElements(attachedArrayAndLength, predicate, thisArg); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameFindLastIndex); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError( MessageTemplate::kDetachedOperation, kBuiltinNameFindLastIndex); } diff --git a/deps/v8/src/builtins/typed-array-foreach.tq b/deps/v8/src/builtins/typed-array-foreach.tq index fa227bc75be77f..45b949b4ef1e36 100644 --- a/deps/v8/src/builtins/typed-array-foreach.tq +++ b/deps/v8/src/builtins/typed-array-foreach.tq @@ -8,13 +8,14 @@ namespace typed_array { const kBuiltinNameForEach: constexpr string = '%TypedArray%.prototype.forEach'; transitioning macro ForEachAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, callbackfn: Callable, - thisArg: JSAny): Undefined { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + callbackfn: Callable, thisArg: JSAny): Undefined { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); + // 5. Let k be 0. // 6. Repeat, while k < len - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -22,9 +23,9 @@ transitioning macro ForEachAllElements(implicit context: Context)( // kValue must be undefined when the buffer is detached. let value: JSAny; try { - witness.Recheck() otherwise goto IsDetached; + witness.RecheckIndex(k) otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } @@ -50,18 +51,22 @@ TypedArrayPrototypeForEach(js-implicit context: NativeContext, receiver: JSAny)( // arguments[1] = this_arg. try { + // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; + // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return ForEachAllElements(uarray, callbackfn, thisArg); + return ForEachAllElements(attachedArrayAndLength, callbackfn, thisArg); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameForEach); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameForEach); } } diff --git a/deps/v8/src/builtins/typed-array-reduce.tq b/deps/v8/src/builtins/typed-array-reduce.tq index 0261599106d364..b231b1ff98398f 100644 --- a/deps/v8/src/builtins/typed-array-reduce.tq +++ b/deps/v8/src/builtins/typed-array-reduce.tq @@ -8,19 +8,19 @@ namespace typed_array { const kBuiltinNameReduce: constexpr string = '%TypedArray%.prototype.reduce'; transitioning macro ReduceAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, callbackfn: Callable, - initialValue: JSAny|TheHole): JSAny { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + callbackfn: Callable, initialValue: JSAny|TheHole): JSAny { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); let accumulator = initialValue; - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { let value: JSAny; try { - witness.Recheck() - otherwise goto IsDetached; + witness.RecheckIndex(k) + otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } typeswitch (accumulator) { @@ -53,18 +53,22 @@ TypedArrayPrototypeReduce( // arguments[0] = callback // arguments[1] = initialValue. try { + // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; + // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise NotCallable; const initialValue = arguments.length >= 2 ? arguments[1] : TheHole; - return ReduceAllElements(uarray, callbackfn, initialValue); + return ReduceAllElements(attachedArrayAndLength, callbackfn, initialValue); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameReduce); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError(MessageTemplate::kDetachedOperation, kBuiltinNameReduce); } } diff --git a/deps/v8/src/builtins/typed-array-reduceright.tq b/deps/v8/src/builtins/typed-array-reduceright.tq index 5449c4f1fcfcba..36f14a1b68ef38 100644 --- a/deps/v8/src/builtins/typed-array-reduceright.tq +++ b/deps/v8/src/builtins/typed-array-reduceright.tq @@ -10,18 +10,18 @@ const kBuiltinNameReduceRight: constexpr string = // https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.reduceright transitioning macro ReduceRightAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, callbackfn: Callable, - initialValue: JSAny|TheHole): JSAny { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); - const length: uintptr = witness.Get().length; + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, + callbackfn: Callable, initialValue: JSAny|TheHole): JSAny { + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); let accumulator = initialValue; - for (let k: uintptr = length; k-- > 0;) { + for (let k: uintptr = attachedArrayAndLength.length; k-- > 0;) { let value: JSAny; try { - witness.Recheck() - otherwise goto IsDetached; + witness.RecheckIndex(k) + otherwise goto IsDetachedOrOutOfBounds; value = witness.Load(k); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { value = Undefined; } typeswitch (accumulator) { @@ -55,19 +55,24 @@ TypedArrayPrototypeReduceRight( // arguments[0] = callback // arguments[1] = initialValue. try { + // 1. Let O be the this value. + // 2. Perform ? ValidateTypedArray(O). + // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const uarray = typed_array::EnsureAttached(array) otherwise IsDetached; - + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) + otherwise IsDetachedOrOutOfBounds; + // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise NotCallable; const initialValue = arguments.length >= 2 ? arguments[1] : TheHole; - return ReduceRightAllElements(uarray, callbackfn, initialValue); + return ReduceRightAllElements( + attachedArrayAndLength, callbackfn, initialValue); } label NotCallable deferred { ThrowTypeError(MessageTemplate::kCalledNonCallable, arguments[0]); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameReduceRight); - } label IsDetached deferred { + } label IsDetachedOrOutOfBounds deferred { ThrowTypeError( MessageTemplate::kDetachedOperation, kBuiltinNameReduceRight); } diff --git a/deps/v8/src/builtins/typed-array-some.tq b/deps/v8/src/builtins/typed-array-some.tq index d9f37937b436d2..bb2d951ec7b76d 100644 --- a/deps/v8/src/builtins/typed-array-some.tq +++ b/deps/v8/src/builtins/typed-array-some.tq @@ -9,13 +9,14 @@ const kBuiltinNameSome: constexpr string = '%TypedArray%.prototype.some'; // https://tc39.es/ecma262/#sec-%typedarray%.prototype.some transitioning macro SomeAllElements(implicit context: Context)( - array: typed_array::AttachedJSTypedArray, length: uintptr, + attachedArrayAndLength: typed_array::AttachedJSTypedArrayAndLength, callbackfn: Callable, thisArg: JSAny): Boolean { - let witness = typed_array::NewAttachedJSTypedArrayWitness(array); + let witness = + typed_array::NewAttachedJSTypedArrayWitness(attachedArrayAndLength.array); // 5. Let k be 0. // 6. Repeat, while k < len - for (let k: uintptr = 0; k < length; k++) { + for (let k: uintptr = 0; k < attachedArrayAndLength.length; k++) { // 6a. Let Pk be ! ToString(𝔽(k)). // There is no need to cast ToString to load elements. @@ -61,13 +62,12 @@ TypedArrayPrototypeSome( // 3. Let len be IntegerIndexedObjectLength(O). const array: JSTypedArray = Cast(receiver) otherwise NotTypedArray; - const length = LoadJSTypedArrayLengthAndCheckDetached(array) + const attachedArrayAndLength = EnsureAttachedAndReadLength(array) otherwise IsDetachedOrOutOfBounds; // 4. If IsCallable(callbackfn) is false, throw a TypeError exception. const callbackfn = Cast(arguments[0]) otherwise NotCallable; const thisArg = arguments[1]; - return SomeAllElements( - %RawDownCast(array), length, callbackfn, thisArg); + return SomeAllElements(attachedArrayAndLength, callbackfn, thisArg); } label NotTypedArray deferred { ThrowTypeError(MessageTemplate::kNotTypedArray, kBuiltinNameSome); } label IsDetachedOrOutOfBounds deferred { diff --git a/deps/v8/src/builtins/typed-array.tq b/deps/v8/src/builtins/typed-array.tq index c64573cb3be925..5ddb1072ae1fab 100644 --- a/deps/v8/src/builtins/typed-array.tq +++ b/deps/v8/src/builtins/typed-array.tq @@ -195,21 +195,27 @@ macro EnsureAttached(array: JSTypedArray): AttachedJSTypedArray } } -struct AttachedJSTypedArrayWitness { - macro Get(): AttachedJSTypedArray { - return this.unstable; - } +struct AttachedJSTypedArrayAndLength { + array: AttachedJSTypedArray; + length: uintptr; +} + +macro EnsureAttachedAndReadLength(array: JSTypedArray): + AttachedJSTypedArrayAndLength + labels DetachedOrOutOfBounds { + const length = LoadJSTypedArrayLengthAndCheckDetached(array) + otherwise DetachedOrOutOfBounds; + return AttachedJSTypedArrayAndLength{ + array: %RawDownCast(array), + length: length + }; +} +struct AttachedJSTypedArrayWitness { macro GetStable(): JSTypedArray { return this.stable; } - // TODO(v8:11111): Migrate users to use RecheckIndex. - macro Recheck(): void labels Detached { - if (IsDetachedBuffer(this.stable.buffer)) goto Detached; - this.unstable = %RawDownCast(this.stable); - } - macro RecheckIndex(index: uintptr): void labels DetachedOrOutOfBounds { const length = LoadJSTypedArrayLengthAndCheckDetached(this.stable) otherwise DetachedOrOutOfBounds; diff --git a/deps/v8/src/builtins/wasm.tq b/deps/v8/src/builtins/wasm.tq index e4aea1446d615c..aadb17c3a04663 100644 --- a/deps/v8/src/builtins/wasm.tq +++ b/deps/v8/src/builtins/wasm.tq @@ -254,6 +254,14 @@ builtin WasmRethrow(exception: Object): JSAny { tail runtime::WasmReThrow(LoadContextFromFrame(), exception); } +// We need this for frames that do not have the instance in the parameters. +// Currently, this is CapiCallWrapper frames. +builtin WasmRethrowExplicitContext( + exception: Object, explicitContext: Context): JSAny { + if (exception == Null) tail ThrowWasmTrapRethrowNull(); + tail runtime::WasmReThrow(explicitContext, exception); +} + builtin WasmTriggerTierUp(): JSAny { const instance: WasmInstanceObject = LoadInstanceFromFrame(); tail runtime::WasmTriggerTierUp(LoadContextFromFrame(), instance); @@ -284,11 +292,6 @@ builtin WasmAllocateJSArray(implicit context: Context)(size: Smi): JSArray { return AllocateJSArray(ElementsKind::PACKED_ELEMENTS, map, size, size); } -builtin WasmAllocatePair(first: Object, second: Object): Tuple2 { - const tuple2Map: Map = %GetClassMapConstant(); - return new Tuple2{map: tuple2Map, value1: first, value2: second}; -} - builtin WasmAllocateRtt(typeIndex: intptr, parent: Map): Map { tail runtime::WasmAllocateRtt( LoadContextFromFrame(), SmiTag(typeIndex), parent, @@ -370,6 +373,15 @@ builtin WasmArrayCopyWithChecks( SmiFromUint32(srcIndex), SmiFromUint32(length)); } +builtin WasmArrayCopy( + dstIndex: uint32, srcIndex: uint32, length: uint32, dstArray: WasmArray, + srcArray: WasmArray): JSAny { + if (length == 0) return Undefined; + tail runtime::WasmArrayCopy( + LoadContextFromFrame(), dstArray, SmiFromUint32(dstIndex), srcArray, + SmiFromUint32(srcIndex), SmiFromUint32(length)); +} + // Redeclaration with different typing (value is an Object, not JSAny). extern transitioning runtime CreateDataProperty(implicit context: Context)(JSReceiver, JSAny, Object): void; @@ -453,6 +465,107 @@ builtin WasmI64AtomicWait64( } } +// Type feedback collection support for `call_ref`. + +extern macro GetCodeEntry(Code): RawPtr; +extern macro GetCodeEntry(CodeDataContainer): RawPtr; + +struct TargetAndInstance { + target: RawPtr; + instance: HeapObject; // WasmInstanceObject or WasmApiFunctionRef +} + +macro GetTargetAndInstance(funcref: JSFunction): TargetAndInstance { + const sfi = funcref.shared_function_info; + dcheck(Is(sfi.function_data)); + const funcData = UnsafeCast(sfi.function_data); + const ref = funcData.ref; + let target = funcData.foreign_address_ptr; + if (Signed(target) == IntPtrConstant(0)) { + const wrapper = + UnsafeCast(funcData).wasm_to_js_wrapper_code; + target = GetCodeEntry(wrapper); + } + return TargetAndInstance{target: target, instance: ref}; +} + +// Vector format: +// Two slots per call_ref instruction. These slots' values can be: +// - uninitialized: (undefined, ). Note: we use {undefined} as the +// sentinel as an optimization, as it's the default value for FixedArrays. +// - monomorphic: (funcref, call_ref_data) +// - polymorphic: (fixed_array, ). In this case, the array +// contains 2..4 pairs (funcref, call_ref_data) (like monomorphic data). +// - megamorphic: ("megamorphic" sentinel, ) + +builtin CallRefIC( + vector: FixedArray, index: intptr, funcref: JSFunction): TargetAndInstance { + const value = vector.objects[index]; + if (value == funcref) { + // Monomorphic hit. Check for this case first to maximize its performance. + const data = UnsafeCast(vector.objects[index + 1]); + data.count = data.count + 1; + return TargetAndInstance{target: data.target, instance: data.instance}; + } + // Check for polymorphic hit; its performance is second-most-important. + if (Is(value)) { + const entries = UnsafeCast(value); + for (let i: intptr = 0; i < entries.length_intptr; i += 2) { + if (entries.objects[i] == funcref) { + // Polymorphic hit. + const data = UnsafeCast(entries.objects[i + 1]); + data.count = data.count + 1; + return TargetAndInstance{target: data.target, instance: data.instance}; + } + } + } + // All other cases are some sort of miss and must compute the target/ + // instance. They all fall through to returning the computed data. + const result = GetTargetAndInstance(funcref); + if (TaggedEqual(value, Undefined)) { + const data = new + CallRefData{instance: result.instance, target: result.target, count: 1}; + vector.objects[index] = funcref; + vector.objects[index + 1] = data; + } else if (Is(value)) { + // Polymorphic miss. + const entries = UnsafeCast(value); + if (entries.length == SmiConstant(8)) { // 4 entries, 2 slots each. + vector.objects[index] = ic::kMegamorphicSymbol; + vector.objects[index + 1] = ic::kMegamorphicSymbol; + } else { + const data = new + CallRefData{instance: result.instance, target: result.target, count: 1}; + const newEntries = UnsafeCast(AllocateFixedArray( + ElementsKind::PACKED_ELEMENTS, entries.length_intptr + 2, + AllocationFlag::kNone)); + for (let i: intptr = 0; i < entries.length_intptr; i++) { + newEntries.objects[i] = entries.objects[i]; + } + const newIndex = entries.length_intptr; + newEntries.objects[newIndex] = funcref; + newEntries.objects[newIndex + 1] = data; + vector.objects[index] = newEntries; + } + } else if (Is(value)) { + // Monomorphic miss. + const data = new + CallRefData{instance: result.instance, target: result.target, count: 1}; + const newEntries = UnsafeCast(AllocateFixedArray( + ElementsKind::PACKED_ELEMENTS, 4, AllocationFlag::kNone)); + newEntries.objects[0] = value; + newEntries.objects[1] = vector.objects[index + 1]; + newEntries.objects[2] = funcref; + newEntries.objects[3] = data; + vector.objects[index] = newEntries; + // Clear the old pointer to the first entry's data object; the specific + // value we write doesn't matter. + vector.objects[index + 1] = Undefined; + } + // The "ic::IsMegamorphic(value)" case doesn't need to do anything. + return result; +} + extern macro TryHasOwnProperty(HeapObject, Map, InstanceType, Name): never labels Found, NotFound, Bailout; type OnNonExistent constexpr 'OnNonExistent'; diff --git a/deps/v8/src/builtins/x64/builtins-x64.cc b/deps/v8/src/builtins/x64/builtins-x64.cc index f2f36243611055..7beedbc3fd702a 100644 --- a/deps/v8/src/builtins/x64/builtins-x64.cc +++ b/deps/v8/src/builtins/x64/builtins-x64.cc @@ -2377,8 +2377,12 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, StackArgumentsAccessor args(rax); __ AssertFunction(rdi); + Label class_constructor; __ LoadTaggedPointerField( rdx, FieldOperand(rdi, JSFunction::kSharedFunctionInfoOffset)); + __ testl(FieldOperand(rdx, SharedFunctionInfo::kFlagsOffset), + Immediate(SharedFunctionInfo::IsClassConstructorBit::kMask)); + __ j(not_zero, &class_constructor); // ----------- S t a t e ------------- // -- rax : the number of arguments // -- rdx : the shared function info. @@ -2463,6 +2467,14 @@ void Builtins::Generate_CallFunction(MacroAssembler* masm, __ movzxwq( rbx, FieldOperand(rdx, SharedFunctionInfo::kFormalParameterCountOffset)); __ InvokeFunctionCode(rdi, no_reg, rbx, rax, InvokeType::kJump); + + // The function is a "classConstructor", need to raise an exception. + __ bind(&class_constructor); + { + FrameScope frame(masm, StackFrame::INTERNAL); + __ Push(rdi); + __ CallRuntime(Runtime::kThrowConstructorNonCallableError); + } } namespace { @@ -3640,6 +3652,213 @@ void Builtins::Generate_GenericJSToWasmWrapper(MacroAssembler* masm) { __ jmp(&compile_wrapper_done); } +namespace { +// Helper function for WasmReturnPromiseOnSuspend. +void LoadJumpBuffer(MacroAssembler* masm, Register jmpbuf) { + __ movq(rsp, MemOperand(jmpbuf, wasm::kJmpBufSpOffset)); + // The stack limit is set separately under the ExecutionAccess lock. + // TODO(thibaudm): Reload live registers. +} +} // namespace + +void Builtins::Generate_WasmReturnPromiseOnSuspend(MacroAssembler* masm) { + // Set up the stackframe. + __ EnterFrame(StackFrame::JS_TO_WASM); + + // Parameters. + Register closure = kJSFunctionRegister; // rdi + Register param_count = kJavaScriptCallArgCountRegister; // rax + if (kJSArgcIncludesReceiver) { + __ decq(param_count); + } + + constexpr int kFrameMarkerOffset = -kSystemPointerSize; + constexpr int kParamCountOffset = kFrameMarkerOffset - kSystemPointerSize; + // The frame marker is not included in the slot count. + constexpr int kNumSpillSlots = + -(kParamCountOffset - kFrameMarkerOffset) / kSystemPointerSize; + __ subq(rsp, Immediate(kNumSpillSlots * kSystemPointerSize)); + + __ movq(MemOperand(rbp, kParamCountOffset), param_count); + + // ------------------------------------------- + // Get the instance and wasm call target. + // ------------------------------------------- + Register sfi = closure; + __ LoadAnyTaggedField( + sfi, + MemOperand( + closure, + wasm::ObjectAccess::SharedFunctionInfoOffsetInTaggedJSFunction())); + Register function_data = sfi; + __ LoadAnyTaggedField( + function_data, + FieldOperand(sfi, SharedFunctionInfo::kFunctionDataOffset)); + Register wasm_instance = kWasmInstanceRegister; // rsi + __ LoadAnyTaggedField( + wasm_instance, + FieldOperand(function_data, WasmExportedFunctionData::kInstanceOffset)); + sfi = no_reg; + closure = no_reg; + // live: [rsi, rdi] + + // ------------------------------------------- + // Save current state in active jmpbuf. + // ------------------------------------------- + Register active_continuation = rax; + Register foreign_jmpbuf = rbx; + __ LoadAnyTaggedField( + active_continuation, + FieldOperand(wasm_instance, + WasmInstanceObject::kActiveContinuationOffset)); + __ LoadAnyTaggedField( + foreign_jmpbuf, + FieldOperand(active_continuation, WasmContinuationObject::kJmpbufOffset)); + Register jmpbuf = rbx; + __ LoadExternalPointerField( + jmpbuf, FieldOperand(foreign_jmpbuf, Foreign::kForeignAddressOffset), + kForeignForeignAddressTag, r8); + __ movq(MemOperand(jmpbuf, wasm::kJmpBufSpOffset), rsp); + Register stack_limit_address = rcx; + __ movq(stack_limit_address, + FieldOperand(wasm_instance, + WasmInstanceObject::kRealStackLimitAddressOffset)); + Register stack_limit = rdx; + __ movq(stack_limit, MemOperand(stack_limit_address, 0)); + __ movq(MemOperand(jmpbuf, wasm::kJmpBufStackLimitOffset), stack_limit); + // TODO(thibaudm): Save live registers. + foreign_jmpbuf = no_reg; + stack_limit = no_reg; + stack_limit_address = no_reg; + // live: [rsi, rdi, rax] + + // ------------------------------------------- + // Allocate a new continuation. + // ------------------------------------------- + __ Push(wasm_instance); + __ Push(function_data); + __ Push(wasm_instance); + __ Move(kContextRegister, Smi::zero()); + // TODO(thibaudm): Handle GC. + __ CallRuntime(Runtime::kWasmAllocateContinuation); + __ Pop(function_data); + __ Pop(wasm_instance); + STATIC_ASSERT(kReturnRegister0 == rax); + Register target_continuation = rax; + // live: [rsi, rdi, rax] + + // ------------------------------------------- + // Load target continuation jmpbuf. + // ------------------------------------------- + foreign_jmpbuf = rbx; + __ LoadAnyTaggedField( + foreign_jmpbuf, + FieldOperand(target_continuation, WasmContinuationObject::kJmpbufOffset)); + Register target_jmpbuf = rbx; + __ LoadExternalPointerField( + target_jmpbuf, + FieldOperand(foreign_jmpbuf, Foreign::kForeignAddressOffset), + kForeignForeignAddressTag, r8); + // Switch stack! + LoadJumpBuffer(masm, target_jmpbuf); + __ movq(rbp, rsp); // New stack, there is no frame yet. + foreign_jmpbuf = no_reg; + target_jmpbuf = no_reg; + // live: [rsi, rdi] + + // ------------------------------------------- + // Load and call target wasm function. + // ------------------------------------------- + // TODO(thibaudm): Handle arguments. + // TODO(thibaudm): Handle GC. + // Set thread_in_wasm_flag. + Register thread_in_wasm_flag_addr = rax; + __ movq( + thread_in_wasm_flag_addr, + MemOperand(kRootRegister, Isolate::thread_in_wasm_flag_address_offset())); + __ movl(MemOperand(thread_in_wasm_flag_addr, 0), Immediate(1)); + Register function_entry = function_data; + __ LoadExternalPointerField( + function_entry, + FieldOperand(function_data, + WasmExportedFunctionData::kForeignAddressOffset), + kForeignForeignAddressTag, r8); + __ Push(wasm_instance); + __ call(function_entry); + __ Pop(wasm_instance); + // Unset thread_in_wasm_flag. + __ movq( + thread_in_wasm_flag_addr, + MemOperand(kRootRegister, Isolate::thread_in_wasm_flag_address_offset())); + __ movl(MemOperand(thread_in_wasm_flag_addr, 0), Immediate(0)); + thread_in_wasm_flag_addr = no_reg; + function_entry = no_reg; + function_data = no_reg; + // live: [rsi] + + // ------------------------------------------- + // Reload parent continuation. + // ------------------------------------------- + active_continuation = rbx; + __ LoadAnyTaggedField( + active_continuation, + FieldOperand(wasm_instance, + WasmInstanceObject::kActiveContinuationOffset)); + Register parent = rdx; + __ LoadAnyTaggedField( + parent, + FieldOperand(active_continuation, WasmContinuationObject::kParentOffset)); + active_continuation = no_reg; + // live: [rsi] + + // ------------------------------------------- + // Update instance active continuation. + // ------------------------------------------- + Register object = WriteBarrierDescriptor::ObjectRegister(); + Register slot_address = WriteBarrierDescriptor::SlotAddressRegister(); + DCHECK_EQ(object, rdi); + DCHECK((slot_address == rbx || slot_address == r8)); + // Save reg clobbered by the write barrier. + __ movq(rax, parent); + __ movq(object, wasm_instance); + __ StoreTaggedField( + FieldOperand(object, WasmInstanceObject::kActiveContinuationOffset), + parent); + __ RecordWriteField(object, WasmInstanceObject::kActiveContinuationOffset, + parent, slot_address, SaveFPRegsMode::kIgnore); + // Restore reg clobbered by the write barrier. + __ movq(parent, rax); + foreign_jmpbuf = rax; + __ LoadAnyTaggedField( + foreign_jmpbuf, + FieldOperand(parent, WasmContinuationObject::kJmpbufOffset)); + jmpbuf = foreign_jmpbuf; + __ LoadExternalPointerField( + jmpbuf, FieldOperand(foreign_jmpbuf, Foreign::kForeignAddressOffset), + kForeignForeignAddressTag, r8); + // Switch stack! + LoadJumpBuffer(masm, jmpbuf); + __ leaq(rbp, Operand(rsp, (kNumSpillSlots + 1) * kSystemPointerSize)); + __ Push(wasm_instance); // Spill. + __ Push(wasm_instance); // First arg. + __ Move(kContextRegister, Smi::zero()); + __ CallRuntime(Runtime::kWasmSyncStackLimit); + __ Pop(wasm_instance); + parent = no_reg; + active_continuation = no_reg; + foreign_jmpbuf = no_reg; + wasm_instance = no_reg; + + // ------------------------------------------- + // Epilogue. + // ------------------------------------------- + __ movq(param_count, MemOperand(rbp, kParamCountOffset)); + __ LeaveFrame(StackFrame::JS_TO_WASM); + __ DropArguments(param_count, r8, TurboAssembler::kCountIsInteger, + TurboAssembler::kCountExcludesReceiver); + __ ret(0); +} + void Builtins::Generate_WasmOnStackReplace(MacroAssembler* masm) { MemOperand OSRTargetSlot(rbp, -wasm::kOSRTargetOffset); __ movq(kScratchRegister, OSRTargetSlot); diff --git a/deps/v8/src/codegen/OWNERS b/deps/v8/src/codegen/OWNERS index 6644faa7fb230a..a3c3ffdba6b36f 100644 --- a/deps/v8/src/codegen/OWNERS +++ b/deps/v8/src/codegen/OWNERS @@ -8,6 +8,5 @@ jkummerow@chromium.org leszeks@chromium.org mslekova@chromium.org mvstanton@chromium.org -neis@chromium.org nicohartmann@chromium.org zhin@chromium.org diff --git a/deps/v8/src/codegen/arm/assembler-arm-inl.h b/deps/v8/src/codegen/arm/assembler-arm-inl.h index 2c0e69a753bfdc..0ee81b2f945de9 100644 --- a/deps/v8/src/codegen/arm/assembler-arm-inl.h +++ b/deps/v8/src/codegen/arm/assembler-arm-inl.h @@ -91,7 +91,7 @@ Address RelocInfo::constant_pool_entry_address() { int RelocInfo::target_address_size() { return kPointerSize; } -HeapObject RelocInfo::target_object() { +HeapObject RelocInfo::target_object(PtrComprCageBase cage_base) { DCHECK(IsCodeTarget(rmode_) || IsFullEmbeddedObject(rmode_) || IsDataEmbeddedObject(rmode_)); if (IsDataEmbeddedObject(rmode_)) { @@ -101,10 +101,6 @@ HeapObject RelocInfo::target_object() { Object(Assembler::target_address_at(pc_, constant_pool_))); } -HeapObject RelocInfo::target_object_no_host(PtrComprCageBase cage_base) { - return target_object(); -} - Handle RelocInfo::target_object_handle(Assembler* origin) { if (IsCodeTarget(rmode_) || IsFullEmbeddedObject(rmode_)) { return Handle(reinterpret_cast( diff --git a/deps/v8/src/codegen/arm/assembler-arm.cc b/deps/v8/src/codegen/arm/assembler-arm.cc index b49d9ed186d821..38d691007f3ff5 100644 --- a/deps/v8/src/codegen/arm/assembler-arm.cc +++ b/deps/v8/src/codegen/arm/assembler-arm.cc @@ -5172,29 +5172,9 @@ void Assembler::RecordConstPool(int size) { RecordRelocInfo(RelocInfo::CONST_POOL, static_cast(size)); } -void Assembler::FixOnHeapReferences(bool update_embedded_objects) { - if (!update_embedded_objects) return; - Address base = reinterpret_cast
(buffer_->start()); - for (auto p : saved_handles_for_raw_object_ptr_) { - Handle object(reinterpret_cast(p.second)); - WriteUnalignedValue(base + p.first, *object); - } -} - -void Assembler::FixOnHeapReferencesToHandles() { - Address base = reinterpret_cast
(buffer_->start()); - for (auto p : saved_handles_for_raw_object_ptr_) { - WriteUnalignedValue(base + p.first, p.second); - } - saved_handles_for_raw_object_ptr_.clear(); -} - void Assembler::GrowBuffer() { DCHECK_EQ(buffer_start_, buffer_->start()); - bool previously_on_heap = buffer_->IsOnHeap(); - int previous_on_heap_gc_count = OnHeapGCCount(); - // Compute new buffer size. int old_size = buffer_->size(); int new_size = std::min(2 * old_size, old_size + 1 * MB); @@ -5227,15 +5207,6 @@ void Assembler::GrowBuffer() { reinterpret_cast
(reloc_info_writer.last_pc()) + pc_delta); reloc_info_writer.Reposition(new_reloc_start, new_last_pc); - // Fix on-heap references. - if (previously_on_heap) { - if (buffer_->IsOnHeap()) { - FixOnHeapReferences(previous_on_heap_gc_count != OnHeapGCCount()); - } else { - FixOnHeapReferencesToHandles(); - } - } - // None of our relocation types are pc relative pointing outside the code // buffer nor pc absolute pointing inside the code buffer, so there is no need // to relocate any emitted relocation entries. @@ -5470,15 +5441,7 @@ void Assembler::CheckConstPool(bool force_emit, bool require_jump) { instr_at_put(entry.position(), SetLdrRegisterImmediateOffset(instr, delta)); if (!entry.is_merged()) { - if (IsOnHeap() && RelocInfo::IsEmbeddedObjectMode(entry.rmode())) { - int offset = pc_offset(); - saved_handles_for_raw_object_ptr_.emplace_back(offset, entry.value()); - Handle object(reinterpret_cast(entry.value())); - emit(object->ptr()); - DCHECK(EmbeddedObjectMatches(offset, object)); - } else { - emit(entry.value()); - } + emit(entry.value()); } } diff --git a/deps/v8/src/codegen/arm/assembler-arm.h b/deps/v8/src/codegen/arm/assembler-arm.h index a34b9e1b6626cc..a7d224a09457ed 100644 --- a/deps/v8/src/codegen/arm/assembler-arm.h +++ b/deps/v8/src/codegen/arm/assembler-arm.h @@ -328,15 +328,6 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBase { GetCode(isolate, desc, kNoSafepointTable, kNoHandlerTable); } - // This function is called when on-heap-compilation invariants are - // invalidated. For instance, when the assembler buffer grows or a GC happens - // between Code object allocation and Code object finalization. - void FixOnHeapReferences(bool update_embedded_objects = true); - - // This function is called when we fallback from on-heap to off-heap - // compilation and patch on-heap references to handles. - void FixOnHeapReferencesToHandles(); - // Label operations & relative jumps (PPUM Appendix D) // // Takes a branch opcode (cc) and a label (L) and generates @@ -1197,13 +1188,6 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBase { } } -#ifdef DEBUG - bool EmbeddedObjectMatches(int pc_offset, Handle object) { - return *reinterpret_cast(buffer_->start() + pc_offset) == - (IsOnHeap() ? object->ptr() : object.address()); - } -#endif - // Move a 32-bit immediate into a register, potentially via the constant pool. void Move32BitImmediate(Register rd, const Operand& x, Condition cond = al); diff --git a/deps/v8/src/codegen/arm/interface-descriptors-arm-inl.h b/deps/v8/src/codegen/arm/interface-descriptors-arm-inl.h index 83d82fe3cea089..14960a3193bcff 100644 --- a/deps/v8/src/codegen/arm/interface-descriptors-arm-inl.h +++ b/deps/v8/src/codegen/arm/interface-descriptors-arm-inl.h @@ -117,7 +117,7 @@ constexpr auto CallTrampolineDescriptor::registers() { // static constexpr auto CallVarargsDescriptor::registers() { - // r0 : number of arguments (on the stack, not including receiver) + // r0 : number of arguments (on the stack) // r1 : the target to call // r4 : arguments list length (untagged) // r2 : arguments list (FixedArray) @@ -135,13 +135,13 @@ constexpr auto CallForwardVarargsDescriptor::registers() { // static constexpr auto CallFunctionTemplateDescriptor::registers() { // r1 : function template info - // r2 : number of arguments (on the stack, not including receiver) + // r2 : number of arguments (on the stack) return RegisterArray(r1, r2); } // static constexpr auto CallWithSpreadDescriptor::registers() { - // r0 : number of arguments (on the stack, not including receiver) + // r0 : number of arguments (on the stack) // r1 : the target to call // r2 : the object to spread return RegisterArray(r1, r0, r2); @@ -156,7 +156,7 @@ constexpr auto CallWithArrayLikeDescriptor::registers() { // static constexpr auto ConstructVarargsDescriptor::registers() { - // r0 : number of arguments (on the stack, not including receiver) + // r0 : number of arguments (on the stack) // r1 : the target to call // r3 : the new target // r4 : arguments list length (untagged) @@ -175,7 +175,7 @@ constexpr auto ConstructForwardVarargsDescriptor::registers() { // static constexpr auto ConstructWithSpreadDescriptor::registers() { - // r0 : number of arguments (on the stack, not including receiver) + // r0 : number of arguments (on the stack) // r1 : the target to call // r3 : the new target // r2 : the object to spread @@ -241,7 +241,7 @@ constexpr auto InterpreterDispatchDescriptor::registers() { // static constexpr auto InterpreterPushArgsThenCallDescriptor::registers() { - return RegisterArray(r0, // argument count (not including receiver) + return RegisterArray(r0, // argument count r2, // address of first argument r1); // the target callable to be call } @@ -249,7 +249,7 @@ constexpr auto InterpreterPushArgsThenCallDescriptor::registers() { // static constexpr auto InterpreterPushArgsThenConstructDescriptor::registers() { return RegisterArray( - r0, // argument count (not including receiver) + r0, // argument count r4, // address of the first argument r1, // constructor to call r3, // new target diff --git a/deps/v8/src/codegen/arm/macro-assembler-arm.cc b/deps/v8/src/codegen/arm/macro-assembler-arm.cc index aebfaab9320b8f..5c46c64b3eebee 100644 --- a/deps/v8/src/codegen/arm/macro-assembler-arm.cc +++ b/deps/v8/src/codegen/arm/macro-assembler-arm.cc @@ -2218,6 +2218,20 @@ void MacroAssembler::AssertFunction(Register object) { Check(ls, AbortReason::kOperandIsNotAFunction); } +void MacroAssembler::AssertCallableFunction(Register object) { + if (!FLAG_debug_code) return; + ASM_CODE_COMMENT(this); + STATIC_ASSERT(kSmiTag == 0); + tst(object, Operand(kSmiTagMask)); + Check(ne, AbortReason::kOperandIsASmiAndNotAFunction); + push(object); + LoadMap(object, object); + CompareInstanceTypeRange(object, object, FIRST_CALLABLE_JS_FUNCTION_TYPE, + LAST_CALLABLE_JS_FUNCTION_TYPE); + pop(object); + Check(ls, AbortReason::kOperandIsNotACallableFunction); +} + void MacroAssembler::AssertBoundFunction(Register object) { if (!FLAG_debug_code) return; ASM_CODE_COMMENT(this); diff --git a/deps/v8/src/codegen/arm/macro-assembler-arm.h b/deps/v8/src/codegen/arm/macro-assembler-arm.h index 3dc3e208f59d23..73efa120028f2c 100644 --- a/deps/v8/src/codegen/arm/macro-assembler-arm.h +++ b/deps/v8/src/codegen/arm/macro-assembler-arm.h @@ -851,6 +851,10 @@ class V8_EXPORT_PRIVATE MacroAssembler : public TurboAssembler { // Abort execution if argument is not a JSFunction, enabled via --debug-code. void AssertFunction(Register object); + // Abort execution if argument is not a callable JSFunction, enabled via + // --debug-code. + void AssertCallableFunction(Register object); + // Abort execution if argument is not a JSBoundFunction, // enabled via --debug-code. void AssertBoundFunction(Register object); diff --git a/deps/v8/src/codegen/arm64/assembler-arm64-inl.h b/deps/v8/src/codegen/arm64/assembler-arm64-inl.h index 41d07b10b18983..c5a1d4fd8ad0aa 100644 --- a/deps/v8/src/codegen/arm64/assembler-arm64-inl.h +++ b/deps/v8/src/codegen/arm64/assembler-arm64-inl.h @@ -655,31 +655,25 @@ Address RelocInfo::constant_pool_entry_address() { return Assembler::target_pointer_address_at(pc_); } -HeapObject RelocInfo::target_object() { +HeapObject RelocInfo::target_object(PtrComprCageBase cage_base) { DCHECK(IsCodeTarget(rmode_) || IsEmbeddedObjectMode(rmode_)); if (IsDataEmbeddedObject(rmode_)) { return HeapObject::cast(Object(ReadUnalignedValue
(pc_))); } else if (IsCompressedEmbeddedObject(rmode_)) { - CHECK(!host_.is_null()); - return HeapObject::cast(Object(DecompressTaggedAny( - host_.address(), - Assembler::target_compressed_address_at(pc_, constant_pool_)))); + Tagged_t compressed = + Assembler::target_compressed_address_at(pc_, constant_pool_); + DCHECK(!HAS_SMI_TAG(compressed)); + Object obj(DecompressTaggedPointer(cage_base, compressed)); + // Embedding of compressed Code objects must not happen when external code + // space is enabled, because CodeDataContainers must be used instead. + DCHECK_IMPLIES(V8_EXTERNAL_CODE_SPACE_BOOL, !obj.IsCode(cage_base)); + return HeapObject::cast(obj); } else { return HeapObject::cast( Object(Assembler::target_address_at(pc_, constant_pool_))); } } -HeapObject RelocInfo::target_object_no_host(PtrComprCageBase cage_base) { - if (IsCompressedEmbeddedObject(rmode_)) { - return HeapObject::cast(Object(DecompressTaggedAny( - cage_base, - Assembler::target_compressed_address_at(pc_, constant_pool_)))); - } else { - return target_object(); - } -} - Handle RelocInfo::target_object_handle(Assembler* origin) { if (IsDataEmbeddedObject(rmode_)) { return Handle::cast(ReadUnalignedValue>(pc_)); diff --git a/deps/v8/src/codegen/arm64/assembler-arm64.cc b/deps/v8/src/codegen/arm64/assembler-arm64.cc index f6a035a9e7737b..627c7ae0213351 100644 --- a/deps/v8/src/codegen/arm64/assembler-arm64.cc +++ b/deps/v8/src/codegen/arm64/assembler-arm64.cc @@ -2627,7 +2627,7 @@ void Assembler::fmov(const VRegister& vd, float imm) { DCHECK(vd.Is1S()); Emit(FMOV_s_imm | Rd(vd) | ImmFP(imm)); } else { - DCHECK(vd.Is2S() | vd.Is4S()); + DCHECK(vd.Is2S() || vd.Is4S()); Instr op = NEONModifiedImmediate_MOVI; Instr q = vd.Is4S() ? NEON_Q : 0; Emit(q | op | ImmNEONFP(imm) | NEONCmode(0xF) | Rd(vd)); @@ -4275,42 +4275,7 @@ bool Assembler::IsImmFP64(double imm) { return true; } -void Assembler::FixOnHeapReferences(bool update_embedded_objects) { - Address base = reinterpret_cast
(buffer_->start()); - if (update_embedded_objects) { - for (auto p : saved_handles_for_raw_object_ptr_) { - Handle object = GetEmbeddedObject(p.second); - WriteUnalignedValue(base + p.first, object->ptr()); - } - } - for (auto p : saved_offsets_for_runtime_entries_) { - Instruction* instr = reinterpret_cast(base + p.first); - Address target = p.second * kInstrSize + options().code_range_start; - DCHECK(is_int26(p.second)); - DCHECK(instr->IsBranchAndLink() || instr->IsUnconditionalBranch()); - instr->SetBranchImmTarget(reinterpret_cast(target)); - } -} - -void Assembler::FixOnHeapReferencesToHandles() { - Address base = reinterpret_cast
(buffer_->start()); - for (auto p : saved_handles_for_raw_object_ptr_) { - WriteUnalignedValue(base + p.first, p.second); - } - saved_handles_for_raw_object_ptr_.clear(); - for (auto p : saved_offsets_for_runtime_entries_) { - Instruction* instr = reinterpret_cast(base + p.first); - DCHECK(is_int26(p.second)); - DCHECK(instr->IsBranchAndLink() || instr->IsUnconditionalBranch()); - instr->SetInstructionBits(instr->Mask(UnconditionalBranchMask) | p.second); - } - saved_offsets_for_runtime_entries_.clear(); -} - void Assembler::GrowBuffer() { - bool previously_on_heap = buffer_->IsOnHeap(); - int previous_on_heap_gc_count = OnHeapGCCount(); - // Compute new buffer size. int old_size = buffer_->size(); int new_size = std::min(2 * old_size, old_size + 1 * MB); @@ -4353,15 +4318,6 @@ void Assembler::GrowBuffer() { WriteUnalignedValue(address, internal_ref); } - // Fix on-heap references. - if (previously_on_heap) { - if (buffer_->IsOnHeap()) { - FixOnHeapReferences(previous_on_heap_gc_count != OnHeapGCCount()); - } else { - FixOnHeapReferencesToHandles(); - } - } - // Pending relocation entries are also relative, no need to relocate. } diff --git a/deps/v8/src/codegen/arm64/assembler-arm64.h b/deps/v8/src/codegen/arm64/assembler-arm64.h index 8cdca7bfa83ef7..dac90f8058c9dd 100644 --- a/deps/v8/src/codegen/arm64/assembler-arm64.h +++ b/deps/v8/src/codegen/arm64/assembler-arm64.h @@ -204,15 +204,6 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBase { GetCode(isolate, desc, kNoSafepointTable, kNoHandlerTable); } - // This function is called when on-heap-compilation invariants are - // invalidated. For instance, when the assembler buffer grows or a GC happens - // between Code object allocation and Code object finalization. - void FixOnHeapReferences(bool update_embedded_objects = true); - - // This function is called when we fallback from on-heap to off-heap - // compilation and patch on-heap references to handles. - void FixOnHeapReferencesToHandles(); - // Insert the smallest number of nop instructions // possible to align the pc offset to a multiple // of m. m must be a power of 2 (>= 4). @@ -2689,12 +2680,6 @@ class V8_EXPORT_PRIVATE Assembler : public AssemblerBase { static size_t GetApproxMaxDistToConstPoolForTesting() { return ConstantPool::kApproxDistToPool64; } - - bool EmbeddedObjectMatches(int pc_offset, Handle object, - EmbeddedObjectIndex index) { - return *reinterpret_cast(buffer_->start() + pc_offset) == - (IsOnHeap() ? object->ptr() : index); - } #endif class FarBranchInfo { diff --git a/deps/v8/src/codegen/arm64/interface-descriptors-arm64-inl.h b/deps/v8/src/codegen/arm64/interface-descriptors-arm64-inl.h index e8fe4ef1d327b5..f1fa16673c1464 100644 --- a/deps/v8/src/codegen/arm64/interface-descriptors-arm64-inl.h +++ b/deps/v8/src/codegen/arm64/interface-descriptors-arm64-inl.h @@ -117,7 +117,7 @@ constexpr auto CallTrampolineDescriptor::registers() { // static constexpr auto CallVarargsDescriptor::registers() { - // x0 : number of arguments (on the stack, not including receiver) + // x0 : number of arguments (on the stack) // x1 : the target to call // x4 : arguments list length (untagged) // x2 : arguments list (FixedArray) @@ -135,13 +135,13 @@ constexpr auto CallForwardVarargsDescriptor::registers() { // static constexpr auto CallFunctionTemplateDescriptor::registers() { // x1 : function template info - // x2 : number of arguments (on the stack, not including receiver) + // x2 : number of arguments (on the stack) return RegisterArray(x1, x2); } // static constexpr auto CallWithSpreadDescriptor::registers() { - // x0 : number of arguments (on the stack, not including receiver) + // x0 : number of arguments (on the stack) // x1 : the target to call // x2 : the object to spread return RegisterArray(x1, x0, x2); @@ -156,7 +156,7 @@ constexpr auto CallWithArrayLikeDescriptor::registers() { // static constexpr auto ConstructVarargsDescriptor::registers() { - // x0 : number of arguments (on the stack, not including receiver) + // x0 : number of arguments (on the stack) // x1 : the target to call // x3 : the new target // x4 : arguments list length (untagged) @@ -175,7 +175,7 @@ constexpr auto ConstructForwardVarargsDescriptor::registers() { // static constexpr auto ConstructWithSpreadDescriptor::registers() { - // x0 : number of arguments (on the stack, not including receiver) + // x0 : number of arguments (on the stack) // x1 : the target to call // x3 : the new target // x2 : the object to spread @@ -249,7 +249,7 @@ constexpr auto InterpreterDispatchDescriptor::registers() { // static constexpr auto InterpreterPushArgsThenCallDescriptor::registers() { - return RegisterArray(x0, // argument count (not including receiver) + return RegisterArray(x0, // argument count x2, // address of first argument x1); // the target callable to be call } @@ -257,7 +257,7 @@ constexpr auto InterpreterPushArgsThenCallDescriptor::registers() { // static constexpr auto InterpreterPushArgsThenConstructDescriptor::registers() { return RegisterArray( - x0, // argument count (not including receiver) + x0, // argument count x4, // address of the first argument x1, // constructor to call x3, // new target diff --git a/deps/v8/src/codegen/arm64/macro-assembler-arm64.cc b/deps/v8/src/codegen/arm64/macro-assembler-arm64.cc index 91d972ea0004a1..bcf2e4574ab030 100644 --- a/deps/v8/src/codegen/arm64/macro-assembler-arm64.cc +++ b/deps/v8/src/codegen/arm64/macro-assembler-arm64.cc @@ -1551,6 +1551,19 @@ void MacroAssembler::AssertFunction(Register object) { Check(ls, AbortReason::kOperandIsNotAFunction); } +void MacroAssembler::AssertCallableFunction(Register object) { + if (!FLAG_debug_code) return; + ASM_CODE_COMMENT(this); + AssertNotSmi(object, AbortReason::kOperandIsASmiAndNotAFunction); + + UseScratchRegisterScope temps(this); + Register temp = temps.AcquireX(); + LoadMap(temp, object); + CompareInstanceTypeRange(temp, temp, FIRST_CALLABLE_JS_FUNCTION_TYPE, + LAST_CALLABLE_JS_FUNCTION_TYPE); + Check(ls, AbortReason::kOperandIsNotACallableFunction); +} + void MacroAssembler::AssertBoundFunction(Register object) { if (!FLAG_debug_code) return; ASM_CODE_COMMENT(this); @@ -1843,10 +1856,6 @@ int64_t TurboAssembler::CalculateTargetOffset(Address target, void TurboAssembler::Jump(Address target, RelocInfo::Mode rmode, Condition cond) { int64_t offset = CalculateTargetOffset(target, rmode, pc_); - if (RelocInfo::IsRuntimeEntry(rmode) && IsOnHeap()) { - saved_offsets_for_runtime_entries_.emplace_back(pc_offset(), offset); - offset = CalculateTargetOffset(target, RelocInfo::NONE, pc_); - } JumpHelper(offset, rmode, cond); } @@ -1891,10 +1900,6 @@ void TurboAssembler::Call(Address target, RelocInfo::Mode rmode) { BlockPoolsScope scope(this); if (CanUseNearCallOrJump(rmode)) { int64_t offset = CalculateTargetOffset(target, rmode, pc_); - if (IsOnHeap() && RelocInfo::IsRuntimeEntry(rmode)) { - saved_offsets_for_runtime_entries_.emplace_back(pc_offset(), offset); - offset = CalculateTargetOffset(target, RelocInfo::NONE, pc_); - } DCHECK(IsNearCallOffset(offset)); near_call(static_cast(offset), rmode); } else { @@ -2099,9 +2104,13 @@ void TurboAssembler::LoadCodeDataContainerEntry( void TurboAssembler::LoadCodeDataContainerCodeNonBuiltin( Register destination, Register code_data_container_object) { ASM_CODE_COMMENT(this); - LoadTaggedPointerField(destination, - FieldMemOperand(code_data_container_object, - CodeDataContainer::kCodeOffset)); + CHECK(V8_EXTERNAL_CODE_SPACE_BOOL); + // Given the fields layout we can read the Code reference as a full word. + STATIC_ASSERT(!V8_EXTERNAL_CODE_SPACE_BOOL || + (CodeDataContainer::kCodeCageBaseUpper32BitsOffset == + CodeDataContainer::kCodeOffset + kTaggedSize)); + Ldr(destination, FieldMemOperand(code_data_container_object, + CodeDataContainer::kCodeOffset)); } void TurboAssembler::CallCodeDataContainerObject( @@ -3063,6 +3072,43 @@ void MacroAssembler::RecordWriteField(Register object, int offset, Bind(&done); } +void TurboAssembler::EncodeCagedPointer(const Register& value) { + ASM_CODE_COMMENT(this); +#ifdef V8_CAGED_POINTERS + Sub(value, value, kPtrComprCageBaseRegister); + Mov(value, Operand(value, LSL, kCagedPointerShift)); +#else + UNREACHABLE(); +#endif +} + +void TurboAssembler::DecodeCagedPointer(const Register& value) { + ASM_CODE_COMMENT(this); +#ifdef V8_CAGED_POINTERS + Add(value, kPtrComprCageBaseRegister, + Operand(value, LSR, kCagedPointerShift)); +#else + UNREACHABLE(); +#endif +} + +void TurboAssembler::LoadCagedPointerField(const Register& destination, + const MemOperand& field_operand) { + ASM_CODE_COMMENT(this); + Ldr(destination, field_operand); + DecodeCagedPointer(destination); +} + +void TurboAssembler::StoreCagedPointerField( + const Register& value, const MemOperand& dst_field_operand) { + ASM_CODE_COMMENT(this); + UseScratchRegisterScope temps(this); + Register scratch = temps.AcquireX(); + Mov(scratch, value); + EncodeCagedPointer(scratch); + Str(scratch, dst_field_operand); +} + void TurboAssembler::LoadExternalPointerField(Register destination, MemOperand field_operand, ExternalPointerTag tag, diff --git a/deps/v8/src/codegen/arm64/macro-assembler-arm64.h b/deps/v8/src/codegen/arm64/macro-assembler-arm64.h index 8f60217d9e92c8..165d702c31e9a0 100644 --- a/deps/v8/src/codegen/arm64/macro-assembler-arm64.h +++ b/deps/v8/src/codegen/arm64/macro-assembler-arm64.h @@ -1343,6 +1343,10 @@ class V8_EXPORT_PRIVATE TurboAssembler : public TurboAssemblerBase { DCHECK(allow_macro_instructions()); cmlt(vd, vn, imm); } + void Cmle(const VRegister& vd, const VRegister& vn, int imm) { + DCHECK(allow_macro_instructions()); + cmle(vd, vn, imm); + } inline void Neg(const Register& rd, const Operand& operand); inline void Negs(const Register& rd, const Operand& operand); @@ -1437,6 +1441,19 @@ class V8_EXPORT_PRIVATE TurboAssembler : public TurboAssemblerBase { // --------------------------------------------------------------------------- // V8 Heap sandbox support + // Transform a CagedPointer from/to its encoded form, which is used when the + // pointer is stored on the heap and ensures that the pointer will always + // point into the virtual memory cage. + void EncodeCagedPointer(const Register& value); + void DecodeCagedPointer(const Register& value); + + // Load and decode a CagedPointer from the heap. + void LoadCagedPointerField(const Register& destination, + const MemOperand& field_operand); + // Encode and store a CagedPointer to the heap. + void StoreCagedPointerField(const Register& value, + const MemOperand& dst_field_operand); + // Loads a field containing off-heap pointer and does necessary decoding // if V8 heap sandbox is enabled. void LoadExternalPointerField(Register destination, MemOperand field_operand, @@ -1618,11 +1635,6 @@ class V8_EXPORT_PRIVATE MacroAssembler : public TurboAssembler { inline void Umsubl(const Register& rd, const Register& rn, const Register& rm, const Register& ra); - void Cmle(const VRegister& vd, const VRegister& vn, int imm) { - DCHECK(allow_macro_instructions()); - cmle(vd, vn, imm); - } - void Ld1(const VRegister& vt, const MemOperand& src) { DCHECK(allow_macro_instructions()); ld1(vt, src); @@ -1858,6 +1870,10 @@ class V8_EXPORT_PRIVATE MacroAssembler : public TurboAssembler { // Abort execution if argument is not a JSFunction, enabled via --debug-code. void AssertFunction(Register object); + // Abort execution if argument is not a callable JSFunction, enabled via + // --debug-code. + void AssertCallableFunction(Register object); + // Abort execution if argument is not a JSGeneratorObject (or subclass), // enabled via --debug-code. void AssertGeneratorObject(Register object); diff --git a/deps/v8/src/codegen/arm64/register-arm64.h b/deps/v8/src/codegen/arm64/register-arm64.h index ae6c4c920037c0..29a4212aacfb76 100644 --- a/deps/v8/src/codegen/arm64/register-arm64.h +++ b/deps/v8/src/codegen/arm64/register-arm64.h @@ -547,8 +547,6 @@ using Simd128Register = VRegister; // Lists of registers. class V8_EXPORT_PRIVATE CPURegList { public: - CPURegList() = default; - template explicit CPURegList(CPURegister reg0, CPURegisters... regs) : list_(CPURegister::ListOf(reg0, regs...)), diff --git a/deps/v8/src/codegen/assembler.cc b/deps/v8/src/codegen/assembler.cc index cacbfbd679fa36..dd5c8b2d9aa338 100644 --- a/deps/v8/src/codegen/assembler.cc +++ b/deps/v8/src/codegen/assembler.cc @@ -140,48 +140,6 @@ class ExternalAssemblerBufferImpl : public AssemblerBuffer { const int size_; }; -class OnHeapAssemblerBuffer : public AssemblerBuffer { - public: - OnHeapAssemblerBuffer(Isolate* isolate, Handle code, int size, - int gc_count) - : isolate_(isolate), code_(code), size_(size), gc_count_(gc_count) {} - - byte* start() const override { - return reinterpret_cast(code_->raw_instruction_start()); - } - - int size() const override { return size_; } - - std::unique_ptr Grow(int new_size) override { - DCHECK_LT(size(), new_size); - Heap* heap = isolate_->heap(); - if (Code::SizeFor(new_size) < - heap->MaxRegularHeapObjectSize(AllocationType::kCode)) { - MaybeHandle code = - isolate_->factory()->NewEmptyCode(CodeKind::BASELINE, new_size); - if (!code.is_null()) { - return std::make_unique( - isolate_, code.ToHandleChecked(), new_size, heap->gc_count()); - } - } - // We fall back to the slow path using the default assembler buffer and - // compile the code off the GC heap. - return std::make_unique(new_size); - } - - bool IsOnHeap() const override { return true; } - - int OnHeapGCCount() const override { return gc_count_; } - - MaybeHandle code() const override { return code_; } - - private: - Isolate* isolate_; - Handle code_; - const int size_; - const int gc_count_; -}; - static thread_local std::aligned_storage_t tls_singleton_storage; @@ -218,16 +176,6 @@ std::unique_ptr NewAssemblerBuffer(int size) { return std::make_unique(size); } -std::unique_ptr NewOnHeapAssemblerBuffer(Isolate* isolate, - int estimated) { - int size = std::max(AssemblerBase::kMinimalBufferSize, estimated); - MaybeHandle code = - isolate->factory()->NewEmptyCode(CodeKind::BASELINE, size); - if (code.is_null()) return {}; - return std::make_unique( - isolate, code.ToHandleChecked(), size, isolate->heap()->gc_count()); -} - // ----------------------------------------------------------------------------- // Implementation of AssemblerBase @@ -248,12 +196,6 @@ AssemblerBase::AssemblerBase(const AssemblerOptions& options, if (!buffer_) buffer_ = NewAssemblerBuffer(kDefaultBufferSize); buffer_start_ = buffer_->start(); pc_ = buffer_start_; - if (IsOnHeap()) { - saved_handles_for_raw_object_ptr_.reserve( - kSavedHandleForRawObjectsInitialSize); - saved_offsets_for_runtime_entries_.reserve( - kSavedOffsetForRuntimeEntriesInitialSize); - } } AssemblerBase::~AssemblerBase() = default; diff --git a/deps/v8/src/codegen/assembler.h b/deps/v8/src/codegen/assembler.h index f1e5b85f1f6798..50711046e6b1f4 100644 --- a/deps/v8/src/codegen/assembler.h +++ b/deps/v8/src/codegen/assembler.h @@ -202,11 +202,6 @@ class AssemblerBuffer { // destructed), but not written. virtual std::unique_ptr Grow(int new_size) V8_WARN_UNUSED_RESULT = 0; - virtual bool IsOnHeap() const { return false; } - virtual MaybeHandle code() const { return MaybeHandle(); } - // Return the GC count when the buffer was allocated (only if the buffer is on - // the GC heap). - virtual int OnHeapGCCount() const { return 0; } }; // Allocate an AssemblerBuffer which uses an existing buffer. This buffer cannot @@ -219,10 +214,6 @@ std::unique_ptr ExternalAssemblerBuffer(void* buffer, V8_EXPORT_PRIVATE std::unique_ptr NewAssemblerBuffer(int size); -V8_EXPORT_PRIVATE -std::unique_ptr NewOnHeapAssemblerBuffer(Isolate* isolate, - int size); - class V8_EXPORT_PRIVATE AssemblerBase : public Malloced { public: AssemblerBase(const AssemblerOptions& options, @@ -286,15 +277,6 @@ class V8_EXPORT_PRIVATE AssemblerBase : public Malloced { #endif } - bool IsOnHeap() const { return buffer_->IsOnHeap(); } - - int OnHeapGCCount() const { return buffer_->OnHeapGCCount(); } - - MaybeHandle code() const { - DCHECK(IsOnHeap()); - return buffer_->code(); - } - byte* buffer_start() const { return buffer_->start(); } int buffer_size() const { return buffer_->size(); } int instruction_size() const { return pc_offset(); } @@ -419,14 +401,6 @@ class V8_EXPORT_PRIVATE AssemblerBase : public Malloced { CodeCommentsWriter code_comments_writer_; - // Relocation information when code allocated directly on heap. - // These constants correspond to the 99% percentile of a selected number of JS - // frameworks and benchmarks, including jquery, lodash, d3 and speedometer3. - const int kSavedHandleForRawObjectsInitialSize = 60; - const int kSavedOffsetForRuntimeEntriesInitialSize = 100; - std::vector> saved_handles_for_raw_object_ptr_; - std::vector> saved_offsets_for_runtime_entries_; - private: // Before we copy code into the code space, we sometimes cannot encode // call/jump code targets as we normally would, as the difference between the diff --git a/deps/v8/src/codegen/bailout-reason.h b/deps/v8/src/codegen/bailout-reason.h index 128858a47fa11a..c2374536f72777 100644 --- a/deps/v8/src/codegen/bailout-reason.h +++ b/deps/v8/src/codegen/bailout-reason.h @@ -48,6 +48,7 @@ namespace internal { V(kOperandIsNotAConstructor, "Operand is not a constructor") \ V(kOperandIsNotAFixedArray, "Operand is not a fixed array") \ V(kOperandIsNotAFunction, "Operand is not a function") \ + V(kOperandIsNotACallableFunction, "Operand is not a callable function") \ V(kOperandIsNotAGeneratorObject, "Operand is not a generator object") \ V(kOperandIsNotACodeT, "Operand is not a CodeT") \ V(kOperandIsNotASmi, "Operand is not a smi") \ diff --git a/deps/v8/src/codegen/code-factory.cc b/deps/v8/src/codegen/code-factory.cc index dcf19a0ad51a51..494f23de76ef0d 100644 --- a/deps/v8/src/codegen/code-factory.cc +++ b/deps/v8/src/codegen/code-factory.cc @@ -96,15 +96,11 @@ Callable CodeFactory::LoadGlobalICInOptimizedCode(Isolate* isolate, } Callable CodeFactory::StoreOwnIC(Isolate* isolate) { - // TODO(ishell): Currently we use StoreOwnIC only for storing properties that - // already exist in the boilerplate therefore we can use StoreIC. - return Builtins::CallableFor(isolate, Builtin::kStoreICTrampoline); + return Builtins::CallableFor(isolate, Builtin::kStoreOwnICTrampoline); } Callable CodeFactory::StoreOwnICInOptimizedCode(Isolate* isolate) { - // TODO(ishell): Currently we use StoreOwnIC only for storing properties that - // already exist in the boilerplate therefore we can use StoreIC. - return Builtins::CallableFor(isolate, Builtin::kStoreIC); + return Builtins::CallableFor(isolate, Builtin::kStoreOwnIC); } // static diff --git a/deps/v8/src/codegen/code-stub-assembler.cc b/deps/v8/src/codegen/code-stub-assembler.cc index e61933b05ac387..4a9c06bdd89d40 100644 --- a/deps/v8/src/codegen/code-stub-assembler.cc +++ b/deps/v8/src/codegen/code-stub-assembler.cc @@ -1539,6 +1539,32 @@ void CodeStubAssembler::BranchIfToBooleanIsTrue(TNode value, } } +#ifdef V8_CAGED_POINTERS + +TNode CodeStubAssembler::LoadCagedPointerFromObject( + TNode object, TNode field_offset) { + return LoadObjectField(object, field_offset); +} + +void CodeStubAssembler::StoreCagedPointerToObject(TNode object, + TNode offset, + TNode pointer) { +#ifdef DEBUG + // Verify pointer points into the cage. + TNode cage_base_address = + ExternalConstant(ExternalReference::virtual_memory_cage_base_address()); + TNode cage_end_address = + ExternalConstant(ExternalReference::virtual_memory_cage_end_address()); + TNode cage_base = Load(cage_base_address); + TNode cage_end = Load(cage_end_address); + CSA_CHECK(this, UintPtrGreaterThanOrEqual(pointer, cage_base)); + CSA_CHECK(this, UintPtrLessThan(pointer, cage_end)); +#endif + StoreObjectFieldNoWriteBarrier(object, offset, pointer); +} + +#endif // V8_CAGED_POINTERS + TNode CodeStubAssembler::ChangeUint32ToExternalPointer( TNode value) { STATIC_ASSERT(kExternalPointerSize == kSystemPointerSize); @@ -14440,6 +14466,19 @@ TNode CodeStubAssembler::GetSharedFunctionInfoCode( return sfi_code.value(); } +TNode CodeStubAssembler::GetCodeEntry(TNode code) { +#ifdef V8_EXTERNAL_CODE_SPACE + TNode cdc = CodeDataContainerFromCodeT(code); + return LoadExternalPointerFromObject( + cdc, IntPtrConstant(CodeDataContainer::kCodeEntryPointOffset), + kCodeEntryPointTag); +#else + TNode object = BitcastTaggedToWord(code); + return ReinterpretCast( + IntPtrAdd(object, IntPtrConstant(Code::kHeaderSize - kHeapObjectTag))); +#endif +} + TNode CodeStubAssembler::AllocateFunctionWithMapAndContext( TNode map, TNode shared_info, TNode context) { @@ -14713,42 +14752,8 @@ TNode CodeStubAssembler::ArrayCreate(TNode context, void CodeStubAssembler::SetPropertyLength(TNode context, TNode array, TNode length) { - Label fast(this), runtime(this), done(this); - // There's no need to set the length, if - // 1) the array is a fast JS array and - // 2) the new length is equal to the old length. - // as the set is not observable. Otherwise fall back to the run-time. - - // 1) Check that the array has fast elements. - // TODO(delphick): Consider changing this since it does an an unnecessary - // check for SMIs. - // TODO(delphick): Also we could hoist this to after the array construction - // and copy the args into array in the same way as the Array constructor. - BranchIfFastJSArray(array, context, &fast, &runtime); - - BIND(&fast); - { - TNode fast_array = CAST(array); - - TNode length_smi = CAST(length); - TNode old_length = LoadFastJSArrayLength(fast_array); - CSA_DCHECK(this, TaggedIsPositiveSmi(old_length)); - - // 2) If the created array's length matches the required length, then - // there's nothing else to do. Otherwise use the runtime to set the - // property as that will insert holes into excess elements or shrink - // the backing store as appropriate. - Branch(SmiNotEqual(length_smi, old_length), &runtime, &done); - } - - BIND(&runtime); - { - SetPropertyStrict(context, array, CodeStubAssembler::LengthStringConstant(), - length); - Goto(&done); - } - - BIND(&done); + SetPropertyStrict(context, array, CodeStubAssembler::LengthStringConstant(), + length); } TNode CodeStubAssembler::RefillMathRandom( diff --git a/deps/v8/src/codegen/code-stub-assembler.h b/deps/v8/src/codegen/code-stub-assembler.h index 1cb0b4cf6e1740..4d16af8a3d63e9 100644 --- a/deps/v8/src/codegen/code-stub-assembler.h +++ b/deps/v8/src/codegen/code-stub-assembler.h @@ -9,7 +9,6 @@ #include "src/base/macros.h" #include "src/codegen/bailout-reason.h" -#include "src/common/external-pointer.h" #include "src/common/globals.h" #include "src/common/message-template.h" #include "src/compiler/code-assembler.h" @@ -27,6 +26,7 @@ #include "src/objects/swiss-name-dictionary.h" #include "src/objects/tagged-index.h" #include "src/roots/roots.h" +#include "src/security/external-pointer.h" #include "torque-generated/exported-macros-assembler.h" namespace v8 { @@ -804,7 +804,15 @@ class V8_EXPORT_PRIVATE CodeStubAssembler TNode FromCodeT(TNode code) { #ifdef V8_EXTERNAL_CODE_SPACE - return LoadObjectField(code, CodeDataContainer::kCodeOffset); +#if V8_TARGET_BIG_ENDIAN +#error "This code requires updating for big-endian architectures" +#endif + // Given the fields layout we can read the Code reference as a full word. + STATIC_ASSERT(CodeDataContainer::kCodeCageBaseUpper32BitsOffset == + CodeDataContainer::kCodeOffset + kTaggedSize); + TNode o = BitcastWordToTagged(Load( + code, IntPtrConstant(CodeDataContainer::kCodeOffset - kHeapObjectTag))); + return CAST(o); #else return code; #endif @@ -837,6 +845,8 @@ class V8_EXPORT_PRIVATE CodeStubAssembler #endif } + TNode GetCodeEntry(TNode code); + // The following Call wrappers call an object according to the semantics that // one finds in the EcmaScript spec, operating on an Callable (e.g. a // JSFunction or proxy) rather than a Code object. @@ -1032,6 +1042,33 @@ class V8_EXPORT_PRIVATE CodeStubAssembler // Works only with V8_ENABLE_FORCE_SLOW_PATH compile time flag. Nop otherwise. void GotoIfForceSlowPath(Label* if_true); +#ifdef V8_CAGED_POINTERS + + // + // Caged pointer related functionality. + // + + // Load a caged pointer value from an object. + TNode LoadCagedPointerFromObject(TNode object, + int offset) { + return LoadCagedPointerFromObject(object, IntPtrConstant(offset)); + } + + TNode LoadCagedPointerFromObject(TNode object, + TNode offset); + + // Stored a caged pointer value to an object. + void StoreCagedPointerToObject(TNode object, int offset, + TNode pointer) { + StoreCagedPointerToObject(object, IntPtrConstant(offset), pointer); + } + + void StoreCagedPointerToObject(TNode object, + TNode offset, + TNode pointer); + +#endif // V8_CAGED_POINTERS + // // ExternalPointerT-related functionality. // diff --git a/deps/v8/src/codegen/compiler.cc b/deps/v8/src/codegen/compiler.cc index 9fab1cd40f2917..b7eafaf0d984aa 100644 --- a/deps/v8/src/codegen/compiler.cc +++ b/deps/v8/src/codegen/compiler.cc @@ -60,6 +60,7 @@ #include "src/parsing/scanner-character-streams.h" #include "src/snapshot/code-serializer.h" #include "src/utils/ostreams.h" +#include "src/web-snapshot/web-snapshot.h" #include "src/zone/zone-list-inl.h" // crbug.com/v8/8816 namespace v8 { @@ -208,8 +209,9 @@ struct ScopedTimer { // static void Compiler::LogFunctionCompilation(Isolate* isolate, CodeEventListener::LogEventsAndTags tag, - Handle shared, Handle