diff --git a/.github/label-pr-config.yml b/.github/label-pr-config.yml index e76fa3e4e694a77..702cabfc7e1e657 100644 --- a/.github/label-pr-config.yml +++ b/.github/label-pr-config.yml @@ -21,7 +21,7 @@ subSystemLabels: /^src\/tty_/: c++, tty /^src\/node_url/: c++, whatwg-url /^src\/node_util/: c++, util - /^src\/(?:node_v8|v8abbr)/: c++, v8 engine + /^src\/node_v8/: c++, v8 engine /^src\/node_contextify/: c++, vm /^src\/.*win32.*/: c++, windows /^src\/node_zlib/: c++, zlib @@ -101,6 +101,7 @@ subSystemLabels: /^lib\/worker_threads.js$/: worker /^lib\/internal\/url\.js$/: whatwg-url /^lib\/internal\/modules\/esm/: esm + /^lib\/internal\/webstreams/: web streams # All other lib/ files map directly /^lib\/_(\w+)_\w+\.js?$/: $1 # e.g. _(stream)_wrap @@ -123,6 +124,7 @@ exlusiveLabels: /^test\/report\//: test, report /^test\/fixtures\/es-module/: test, esm /^test\/es-module\//: test, esm + /^test\/fixtures\/wpt\/streams//: test, web streams /^test\//: test diff --git a/.mailmap b/.mailmap index d17efa8d5beaa7e..b361dff7388c0ba 100644 --- a/.mailmap +++ b/.mailmap @@ -200,6 +200,7 @@ Hannes Magnusson Hassaan Pasha Hendrik Schwalm Henry Chin +Nick Sia <31839263+nicksia-vgw@users.noreply.github.com> Herbert Vojčík Hitesh Kanwathirtha Icer Liang diff --git a/AUTHORS b/AUTHORS index db098b8d61e5162..963908417c5d2c7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3503,5 +3503,16 @@ NicoNekoru <66227158+NicoNekoru@users.noreply.github.com> SADIK KUZU flakey5 <73616808+flakey5@users.noreply.github.com> Saurabh Daware +BuShe +Nick Sia +Basit Chonka +Jeremiah Gowdy +Matthew Peveler +Wing +Hana +Jeff Dickey <216188+jdxcode@users.noreply.github.com> +Matías Zúñiga +metonym +Brian Evans <53117772+mrbrianevans@users.noreply.github.com> # Generated by tools/update-authors.mjs diff --git a/CHANGELOG.md b/CHANGELOG.md index 62fd61fba7f38f5..a107bc9c748cf50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,7 +35,8 @@ release. -18.7.0
+18.8.0
+18.7.0
18.6.0
18.5.0
18.4.0
@@ -62,7 +63,8 @@ release. 17.0.0
-16.16.0
+16.17.0
+16.16.0
16.15.1
16.15.0
16.14.2
diff --git a/LICENSE b/LICENSE index 31e1becd2b92153..a2a5437f5d007f5 100644 --- a/LICENSE +++ b/LICENSE @@ -55,7 +55,7 @@ The externally maintained libraries used by Node.js are: """ MIT License - Copyright (C) 2012-2020 by various contributors (see AUTHORS) + Copyright (C) 2012-2022 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index e0d756fea3ac356..9c01f8f244ee190 100644 --- a/Makefile +++ b/Makefile @@ -115,6 +115,7 @@ $(NODE_EXE) $(NODE_G_EXE): config.gypi out/Makefile ln -fs out/${build_type}/$(NODE_EXE) $@; fi else ifeq ($(BUILD_WITH), ninja) +NINJA ?= ninja ifeq ($(V),1) NINJA_ARGS := $(NINJA_ARGS) -v endif @@ -124,11 +125,11 @@ else NINJA_ARGS := $(NINJA_ARGS) $(filter -j%,$(MAKEFLAGS)) endif $(NODE_EXE): config.gypi out/Release/build.ninja - ninja -C out/Release $(NINJA_ARGS) + $(NINJA) -C out/Release $(NINJA_ARGS) if [ ! -r $@ ] || [ ! -L $@ ]; then ln -fs out/Release/$(NODE_EXE) $@; fi $(NODE_G_EXE): config.gypi out/Debug/build.ninja - ninja -C out/Debug $(NINJA_ARGS) + $(NINJA) -C out/Debug $(NINJA_ARGS) if [ ! -r $@ ] || [ ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi else $(NODE_EXE) $(NODE_G_EXE): diff --git a/README.md b/README.md index f79cc099707f520..ed5c65935d2a548 100644 --- a/README.md +++ b/README.md @@ -296,6 +296,10 @@ For information about the governance of the Node.js project, see **Colin Ihrig** <> (he/him) * [codebytere](https://github.com/codebytere) - **Shelley Vohr** <> (she/her) +* [cola119](https://github.com/cola119) - + **Kohei Ueno** <> (he/him) +* [daeyeon](https://github.com/daeyeon) - + **Daeyeon Jeong** <> (he/him) * [danbev](https://github.com/danbev) - **Daniel Bevenius** <> (he/him) * [danielleadams](https://github.com/danielleadams) - @@ -382,6 +386,8 @@ For information about the governance of the Node.js project, see **Milad Fa** <> (he/him) * [mildsunrise](https://github.com/mildsunrise) - **Alba Mendez** <> (she/her) +* [MoLow](https://github.com/MoLow) - + **Moshe Atlow** <> (he/him) * [mscdex](https://github.com/mscdex) - **Brian White** <> * [MylesBorins](https://github.com/MylesBorins) - diff --git a/benchmark/fs/readfile-partitioned.js b/benchmark/fs/readfile-partitioned.js index fac331ec38ba82c..e0ca7a2c1bbdbe0 100644 --- a/benchmark/fs/readfile-partitioned.js +++ b/benchmark/fs/readfile-partitioned.js @@ -17,12 +17,13 @@ const zlib = require('zlib'); const assert = require('assert'); const bench = common.createBenchmark(main, { - dur: [5], + duration: [5], + encoding: ['', 'utf-8'], len: [1024, 16 * 1024 * 1024], concurrent: [1, 10] }); -function main({ len, dur, concurrent }) { +function main({ len, duration, concurrent, encoding }) { try { fs.unlinkSync(filename); } catch { @@ -47,10 +48,10 @@ function main({ len, dur, concurrent }) { } catch { // Continue regardless of error. } - }, dur * 1000); + }, duration * 1000); function read() { - fs.readFile(filename, afterRead); + fs.readFile(filename, encoding, afterRead); } function afterRead(er, data) { diff --git a/benchmark/fs/readfile-promises.js b/benchmark/fs/readfile-promises.js index 5cfa5b4cc024651..0fa92fdffad78d3 100644 --- a/benchmark/fs/readfile-promises.js +++ b/benchmark/fs/readfile-promises.js @@ -15,11 +15,12 @@ const filename = path.resolve(tmpdir.path, const bench = common.createBenchmark(main, { duration: [5], + encoding: ['', 'utf-8'], len: [1024, 16 * 1024 * 1024], concurrent: [1, 10] }); -function main({ len, duration, concurrent }) { +function main({ len, duration, concurrent, encoding }) { try { fs.unlinkSync(filename); } catch { @@ -44,7 +45,7 @@ function main({ len, duration, concurrent }) { }, duration * 1000); function read() { - fs.promises.readFile(filename) + fs.promises.readFile(filename, encoding) .then((res) => afterRead(undefined, res)) .catch((err) => afterRead(err)); } diff --git a/benchmark/fs/readfile.js b/benchmark/fs/readfile.js index e27fe08f43ca868..575ceff34eb2940 100644 --- a/benchmark/fs/readfile.js +++ b/benchmark/fs/readfile.js @@ -15,11 +15,12 @@ const filename = path.resolve(tmpdir.path, const bench = common.createBenchmark(main, { duration: [5], + encoding: ['', 'utf-8'], len: [1024, 16 * 1024 * 1024], concurrent: [1, 10] }); -function main({ len, duration, concurrent }) { +function main({ len, duration, concurrent, encoding }) { try { fs.unlinkSync(filename); } catch { @@ -44,7 +45,7 @@ function main({ len, duration, concurrent }) { }, duration * 1000); function read() { - fs.readFile(filename, afterRead); + fs.readFile(filename, encoding, afterRead); } function afterRead(er, data) { diff --git a/common.gypi b/common.gypi index aa9f641cb198cb0..2a8beb34c1c7c2a 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.11', + 'v8_embedder_string': '-node.12', ##### V8 defaults for Node.js ##### @@ -204,6 +204,7 @@ ], }], ['OS=="solaris"', { + 'cflags': [ '-fno-omit-frame-pointer' ], # pull in V8's postmortem metadata 'ldflags': [ '-Wl,-z,allextract' ] }], @@ -211,9 +212,6 @@ # increase performance, number from experimentation 'cflags': [ '-qINLINE=::150:100000' ] }], - ['OS!="mac" and OS!="win" and OS!="zos"', { - 'cflags': [ '-fno-omit-frame-pointer' ], - }], ['OS=="linux"', { 'conditions': [ ['enable_pgo_generate=="true"', { diff --git a/configure.py b/configure.py index 5b4f950e2be2cc4..fe2e868170c9abc 100755 --- a/configure.py +++ b/configure.py @@ -706,6 +706,14 @@ help='compile shared library for embedding node in another project. ' + '(This mode is not officially supported for regular applications)') +parser.add_argument('--libdir', + action='store', + dest='libdir', + default='lib', + help='a directory to install the shared library into relative to the ' + 'prefix. This is a no-op if --shared is not specified. ' + + '(This mode is not officially supported for regular applications)') + parser.add_argument('--without-v8-platform', action='store_true', dest='without_v8_platform', @@ -1208,6 +1216,10 @@ def configure_node(o): o['variables']['want_separate_host_toolset'] = int(cross_compiling) + # Enable branch protection for arm64 + if target_arch == 'arm64': + o['cflags']+=['-msign-return-address=all'] + if options.node_snapshot_main is not None: if options.shared: # This should be possible to fix, but we will need to refactor the @@ -1319,6 +1331,7 @@ def configure_node(o): o['variables']['node_no_browser_globals'] = b(options.no_browser_globals) o['variables']['node_shared'] = b(options.shared) + o['variables']['libdir'] = options.libdir node_module_version = getmoduleversion.get_version() if options.dest_os == 'android': diff --git a/deps/acorn/acorn/CHANGELOG.md b/deps/acorn/acorn/CHANGELOG.md index d19b5f1bad0b931..ea8d6c04dbad5be 100644 --- a/deps/acorn/acorn/CHANGELOG.md +++ b/deps/acorn/acorn/CHANGELOG.md @@ -1,3 +1,25 @@ +## 8.8.0 (2022-07-21) + +### Bug fixes + +Allow parentheses around spread args in destructuring object assignment. + +Fix an issue where the tree contained `directive` properties in when parsing with a language version that doesn't support them. + +### New features + +Support hashbang comments by default in ECMAScript 2023 and later. + +## 8.7.1 (2021-04-26) + +### Bug fixes + +Stop handling `"use strict"` directives in ECMAScript versions before 5. + +Fix an issue where duplicate quoted export names in `export *` syntax were incorrectly checked. + +Add missing type for `tokTypes`. + ## 8.7.0 (2021-12-27) ### New features diff --git a/deps/acorn/acorn/LICENSE b/deps/acorn/acorn/LICENSE index d6be6db2cfff576..9d71cc63a35e7d8 100644 --- a/deps/acorn/acorn/LICENSE +++ b/deps/acorn/acorn/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (C) 2012-2020 by various contributors (see AUTHORS) +Copyright (C) 2012-2022 by various contributors (see AUTHORS) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/deps/acorn/acorn/README.md b/deps/acorn/acorn/README.md index 601e86c8fddfdb1..61e7dd35edf1644 100644 --- a/deps/acorn/acorn/README.md +++ b/deps/acorn/acorn/README.md @@ -54,10 +54,10 @@ required): - **ecmaVersion**: Indicates the ECMAScript version to parse. Must be either 3, 5, 6 (or 2015), 7 (2016), 8 (2017), 9 (2018), 10 (2019), - 11 (2020), 12 (2021), 13 (2022, partial support) - or `"latest"` (the latest the library supports). This influences - support for strict mode, the set of reserved words, and support - for new syntax features. + 11 (2020), 12 (2021), 13 (2022), 14 (2023), or `"latest"` (the + latest the library supports). This influences support for strict + mode, the set of reserved words, and support for new syntax + features. **NOTE**: Only 'stage 4' (finalized) ECMAScript features are being implemented by Acorn. Other proposed new features must be @@ -104,9 +104,9 @@ required): - **allowSuperOutsideMethod**: By default, `super` outside a method raises an error. Set this to `true` to accept such code. -- **allowHashBang**: When this is enabled (off by default), if the - code starts with the characters `#!` (as in a shellscript), the - first line will be treated as a comment. +- **allowHashBang**: When this is enabled, if the code starts with the + characters `#!` (as in a shellscript), the first line will be + treated as a comment. Defaults to true when `ecmaVersion` >= 2023. - **locations**: When `true`, each node has a `loc` object attached with `start` and `end` subobjects, each of which contains the @@ -271,10 +271,3 @@ The utility spits out the syntax tree as JSON data. ## Existing plugins - [`acorn-jsx`](https://github.com/RReverser/acorn-jsx): Parse [Facebook JSX syntax extensions](https://github.com/facebook/jsx) - -Plugins for ECMAScript proposals: - - - [`acorn-stage3`](https://github.com/acornjs/acorn-stage3): Parse most stage 3 proposals, bundling: - - [`acorn-class-fields`](https://github.com/acornjs/acorn-class-fields): Parse [class fields proposal](https://github.com/tc39/proposal-class-fields) - - [`acorn-import-meta`](https://github.com/acornjs/acorn-import-meta): Parse [import.meta proposal](https://github.com/tc39/proposal-import-meta) - - [`acorn-private-methods`](https://github.com/acornjs/acorn-private-methods): parse [private methods, getters and setters proposal](https://github.com/tc39/proposal-private-methods)n diff --git a/deps/acorn/acorn/bin/acorn b/deps/acorn/acorn/bin/acorn index cf7df46890fdd48..3ef3c124b08bd4f 100755 --- a/deps/acorn/acorn/bin/acorn +++ b/deps/acorn/acorn/bin/acorn @@ -1,4 +1,4 @@ #!/usr/bin/env node -'use strict'; +"use strict" -require('../dist/bin.js'); +require("../dist/bin.js") diff --git a/deps/acorn/acorn/dist/acorn.d.ts b/deps/acorn/acorn/dist/acorn.d.ts index 861b357fea3a641..140f6ed12855beb 100644 --- a/deps/acorn/acorn/dist/acorn.d.ts +++ b/deps/acorn/acorn/dist/acorn.d.ts @@ -11,8 +11,10 @@ declare namespace acorn { [Symbol.iterator](): Iterator } + type ecmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 'latest' + interface Options { - ecmaVersion: 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 'latest' + ecmaVersion: ecmaVersion sourceType?: 'script' | 'module' onInsertedSemicolon?: (lastTokEnd: number, lastTokEndLoc?: Position) => void onTrailingComma?: (lastTokEnd: number, lastTokEndLoc?: Position) => void @@ -36,8 +38,41 @@ declare namespace acorn { } class Parser { + // state.js + lineStart: number; + options: Options; + curLine: number; + start: number; + end: number; + input: string; + type: TokenType; + + // state.js constructor(options: Options, input: string, startPos?: number) parse(this: Parser): Node + + // tokenize.js + next(): void; + nextToken(): void; + + // statement.js + parseTopLevel(node: Node): Node; + + // node.js + finishNode(node: Node, type: string): Node; + finishNodeAt(node: Node, type: string, pos: number, loc: Position): Node; + + // location.js + raise(pos: number, message: string) : void; + raiseRecoverable?(pos: number, message: string) : void; + + // parseutils.js + unexpected(pos: number) : void; + + // index.js + static acorn: typeof acorn; + + // state.js static parse(this: typeof Parser, input: string, options: Options): Node static parseExpressionAt(this: typeof Parser, input: string, pos: number, options: Options): Node static tokenizer(this: typeof Parser, input: string, options: Options): { @@ -102,8 +137,10 @@ declare namespace acorn { colon: TokenType dot: TokenType question: TokenType + questionDot: TokenType arrow: TokenType template: TokenType + invalidTemplate: TokenType ellipsis: TokenType backQuote: TokenType dollarBraceL: TokenType @@ -124,6 +161,7 @@ declare namespace acorn { star: TokenType slash: TokenType starstar: TokenType + coalesce: TokenType _break: TokenType _case: TokenType _catch: TokenType diff --git a/deps/acorn/acorn/dist/acorn.js b/deps/acorn/acorn/dist/acorn.js index 2d279e9fa8417d6..8e8b225b0b3c8e8 100644 --- a/deps/acorn/acorn/dist/acorn.js +++ b/deps/acorn/acorn/dist/acorn.js @@ -4,6 +4,20 @@ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.acorn = {})); })(this, (function (exports) { 'use strict'; + // This file was generated. Do not modify manually! + var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 357, 0, 62, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; + + // This file was generated. Do not modify manually! + var astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 68, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1070, 4050, 582, 8634, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8936, 3, 2, 6, 2, 1, 2, 290, 46, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 482, 44, 11, 6, 17, 0, 322, 29, 19, 43, 1269, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4152, 8, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; + + // This file was generated. Do not modify manually! + var nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; + + // This file was generated. Do not modify manually! + var nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; + + // These are a run-length and offset encoded representation of the + // Reserved word lists for various dialects of the language var reservedWords = { @@ -28,31 +42,9 @@ // ## Character categories - // Big ugly regular expressions that match characters in the - // whitespace, identifier, and identifier-start categories. These - // are only applied when a character is found to actually have a - // code point above 128. - // Generated by `bin/generate-identifier-regex.js`. - var nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; - var nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; - var nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]"); - nonASCIIidentifierStartChars = nonASCIIidentifierChars = null; - - // These are a run-length and offset encoded representation of the - // >0xffff code points that are a valid part of identifiers. The - // offset starts at 0x10000, and each pair of numbers represents an - // offset to the next range, and then a size of the range. They were - // generated by bin/generate-identifier-regex.js - - // eslint-disable-next-line comma-spacing - var astralIdentifierStartCodes = [0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,13,10,2,14,2,6,2,1,2,10,2,14,2,6,2,1,68,310,10,21,11,7,25,5,2,41,2,8,70,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,349,41,7,1,79,28,11,0,9,21,43,17,47,20,28,22,13,52,58,1,3,0,14,44,33,24,27,35,30,0,3,0,9,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,85,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,159,52,19,3,21,2,31,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,38,6,186,43,117,63,32,7,3,0,3,7,2,1,2,23,16,0,2,0,95,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,19,72,264,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,190,0,80,921,103,110,18,195,2637,96,16,1070,4050,582,8634,568,8,30,18,78,18,29,19,47,17,3,32,20,6,18,689,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,1237,43,8,8936,3,2,6,2,1,2,290,46,2,18,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,1845,30,482,44,11,6,17,0,322,29,19,43,1269,6,2,3,2,1,2,14,2,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42719,33,4152,8,221,3,5761,15,7472,3104,541,1507,4938]; - - // eslint-disable-next-line comma-spacing - var astralIdentifierCodes = [509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,370,1,154,10,50,3,123,2,54,14,32,10,3,1,11,3,46,10,8,0,46,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,2,11,83,11,7,0,161,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,193,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,84,14,5,9,243,14,166,9,71,5,2,1,3,3,2,0,2,1,13,9,120,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,406,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,19306,9,87,9,39,4,60,6,26,9,1014,0,2,54,8,3,82,0,12,1,19628,1,4706,45,3,22,543,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,262,6,10,9,357,0,62,13,1495,6,110,6,6,9,4759,9,787719,239]; - // This has a complexity linear to the value of the code. The // assumption is that looking up astral identifier characters is // rare. @@ -287,6 +279,13 @@ return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") } + function codePointToString(code) { + // UTF-16 Decoding + if (code <= 0xFFFF) { return String.fromCharCode(code) } + code -= 0x10000; + return String.fromCharCode((code >> 10) + 0xD800, (code & 1023) + 0xDC00) + } + var loneSurrogate = /(?:[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/; // These are used when `options.locations` is on, for the @@ -328,10 +327,10 @@ var defaultOptions = { // `ecmaVersion` indicates the ECMAScript version to parse. Must be // either 3, 5, 6 (or 2015), 7 (2016), 8 (2017), 9 (2018), 10 - // (2019), 11 (2020), 12 (2021), 13 (2022), or `"latest"` (the - // latest version the library supports). This influences support - // for strict mode, the set of reserved words, and support for - // new syntax features. + // (2019), 11 (2020), 12 (2021), 13 (2022), 14 (2023), or `"latest"` + // (the latest version the library supports). This influences + // support for strict mode, the set of reserved words, and support + // for new syntax features. ecmaVersion: null, // `sourceType` indicates the mode the code should be parsed in. // Can be either `"script"` or `"module"`. This influences global @@ -365,8 +364,9 @@ // When enabled, super identifiers are not constrained to // appearing in methods and do not raise an error when they appear elsewhere. allowSuperOutsideMethod: null, - // When enabled, hashbang directive in the beginning of file - // is allowed and treated as a line comment. + // When enabled, hashbang directive in the beginning of file is + // allowed and treated as a line comment. Enabled by default when + // `ecmaVersion` >= 2023. allowHashBang: false, // When `locations` is on, `loc` properties holding objects with // `start` and `end` properties in `{line, column}` form (with @@ -441,6 +441,9 @@ if (options.allowReserved == null) { options.allowReserved = options.ecmaVersion < 5; } + if (opts.allowHashBang == null) + { options.allowHashBang = options.ecmaVersion >= 14; } + if (isArray(options.onToken)) { var tokens = options.onToken; options.onToken = function (token) { return tokens.push(token); }; @@ -654,6 +657,7 @@ var literal = /^(?:'((?:\\.|[^'\\])*?)'|"((?:\\.|[^"\\])*?)")/; pp$9.strictDirective = function(start) { + if (this.options.ecmaVersion < 5) { return false } for (;;) { // Try to find string literal. skipWhiteSpace.lastIndex = start; @@ -756,21 +760,21 @@ this.raise(pos != null ? pos : this.start, "Unexpected token"); }; - function DestructuringErrors() { + var DestructuringErrors = function DestructuringErrors() { this.shorthandAssign = this.trailingComma = this.parenthesizedAssign = this.parenthesizedBind = this.doubleProto = -1; - } + }; pp$9.checkPatternErrors = function(refDestructuringErrors, isAssign) { if (!refDestructuringErrors) { return } if (refDestructuringErrors.trailingComma > -1) { this.raiseRecoverable(refDestructuringErrors.trailingComma, "Comma is not permitted after the rest element"); } var parens = isAssign ? refDestructuringErrors.parenthesizedAssign : refDestructuringErrors.parenthesizedBind; - if (parens > -1) { this.raiseRecoverable(parens, "Parenthesized pattern"); } + if (parens > -1) { this.raiseRecoverable(parens, isAssign ? "Assigning to rvalue" : "Parenthesized pattern"); } }; pp$9.checkExpressionErrors = function(refDestructuringErrors, andThrow) { @@ -1644,7 +1648,7 @@ if (this.options.ecmaVersion >= 11) { if (this.eatContextual("as")) { node.exported = this.parseModuleExportName(); - this.checkExport(exports, node.exported.name, this.lastTokStart); + this.checkExport(exports, node.exported, this.lastTokStart); } else { node.exported = null; } @@ -1678,7 +1682,7 @@ if (node.declaration.type === "VariableDeclaration") { this.checkVariableExport(exports, node.declaration.declarations); } else - { this.checkExport(exports, node.declaration.id.name, node.declaration.id.start); } + { this.checkExport(exports, node.declaration.id, node.declaration.id.start); } node.specifiers = []; node.source = null; } else { // export { x, y as z } [from '...'] @@ -1710,6 +1714,8 @@ pp$8.checkExport = function(exports, name, pos) { if (!exports) { return } + if (typeof name !== "string") + { name = name.type === "Identifier" ? name.name : name.value; } if (hasOwn(exports, name)) { this.raiseRecoverable(pos, "Duplicate export '" + name + "'"); } exports[name] = true; @@ -1718,7 +1724,7 @@ pp$8.checkPatternExport = function(exports, pat) { var type = pat.type; if (type === "Identifier") - { this.checkExport(exports, pat.name, pat.start); } + { this.checkExport(exports, pat, pat.start); } else if (type === "ObjectPattern") { for (var i = 0, list = pat.properties; i < list.length; i += 1) { @@ -1778,7 +1784,7 @@ node.exported = this.eatContextual("as") ? this.parseModuleExportName() : node.local; this.checkExport( exports, - node.exported[node.exported.type === "Identifier" ? "name" : "value"], + node.exported, node.exported.start ); nodes.push(this.finishNode(node, "ExportSpecifier")); @@ -1864,6 +1870,7 @@ }; pp$8.isDirectiveCandidate = function(statement) { return ( + this.options.ecmaVersion >= 5 && statement.type === "ExpressionStatement" && statement.expression.type === "Literal" && typeof statement.expression.value === "string" && @@ -2274,7 +2281,8 @@ { this.exprAllowed = type.beforeExpr; } }; - // Used to handle egde case when token context could not be inferred correctly in tokenize phase + // Used to handle egde cases when token context could not be inferred correctly during tokenization phase + pp$6.overrideContext = function(tokenCtx) { if (this.curContext() !== tokenCtx) { this.context[this.context.length - 1] = tokenCtx; @@ -3090,15 +3098,6 @@ } return this.finishNode(prop, "RestElement") } - // To disallow parenthesized identifier via `this.toAssignable()`. - if (this.type === types$1.parenL && refDestructuringErrors) { - if (refDestructuringErrors.parenthesizedAssign < 0) { - refDestructuringErrors.parenthesizedAssign = this.start; - } - if (refDestructuringErrors.parenthesizedBind < 0) { - refDestructuringErrors.parenthesizedBind = this.start; - } - } // Parse argument. prop.argument = this.parseMaybeAssign(false, refDestructuringErrors); // To disallow trailing comma via `this.toAssignable()`. @@ -3768,12 +3767,6 @@ return false }; - function codePointToString$1(ch) { - if (ch <= 0xFFFF) { return String.fromCharCode(ch) } - ch -= 0x10000; - return String.fromCharCode((ch >> 10) + 0xD800, (ch & 0x03FF) + 0xDC00) - } - /** * Validate the flags part of a given RegExpLiteral. * @@ -4138,9 +4131,9 @@ pp$1.regexp_eatRegExpIdentifierName = function(state) { state.lastStringValue = ""; if (this.regexp_eatRegExpIdentifierStart(state)) { - state.lastStringValue += codePointToString$1(state.lastIntValue); + state.lastStringValue += codePointToString(state.lastIntValue); while (this.regexp_eatRegExpIdentifierPart(state)) { - state.lastStringValue += codePointToString$1(state.lastIntValue); + state.lastStringValue += codePointToString(state.lastIntValue); } return true } @@ -4492,7 +4485,7 @@ var ch = 0; state.lastStringValue = ""; while (isUnicodePropertyNameCharacter(ch = state.current())) { - state.lastStringValue += codePointToString$1(ch); + state.lastStringValue += codePointToString(ch); state.advance(); } return state.lastStringValue !== "" @@ -4507,7 +4500,7 @@ var ch = 0; state.lastStringValue = ""; while (isUnicodePropertyValueCharacter(ch = state.current())) { - state.lastStringValue += codePointToString$1(ch); + state.lastStringValue += codePointToString(ch); state.advance(); } return state.lastStringValue !== "" @@ -5290,13 +5283,6 @@ return code }; - function codePointToString(code) { - // UTF-16 Decoding - if (code <= 0xFFFF) { return String.fromCharCode(code) } - code -= 0x10000; - return String.fromCharCode((code >> 10) + 0xD800, (code & 1023) + 0xDC00) - } - pp.readString = function(quote) { var out = "", chunkStart = ++this.pos; for (;;) { @@ -5541,7 +5527,7 @@ // Acorn is a tiny, fast JavaScript parser written in JavaScript. - var version = "8.7.0"; + var version = "8.8.0"; Parser.acorn = { Parser: Parser, diff --git a/deps/acorn/acorn/dist/acorn.mjs b/deps/acorn/acorn/dist/acorn.mjs index e99e9b30e1b6358..5ae045a7f2a7dee 100644 --- a/deps/acorn/acorn/dist/acorn.mjs +++ b/deps/acorn/acorn/dist/acorn.mjs @@ -1,3 +1,17 @@ +// This file was generated. Do not modify manually! +var astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 357, 0, 62, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; + +// This file was generated. Do not modify manually! +var astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 68, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1070, 4050, 582, 8634, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8936, 3, 2, 6, 2, 1, 2, 290, 46, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 482, 44, 11, 6, 17, 0, 322, 29, 19, 43, 1269, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4152, 8, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; + +// This file was generated. Do not modify manually! +var nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; + +// This file was generated. Do not modify manually! +var nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; + +// These are a run-length and offset encoded representation of the + // Reserved word lists for various dialects of the language var reservedWords = { @@ -22,31 +36,9 @@ var keywordRelationalOperator = /^in(stanceof)?$/; // ## Character categories -// Big ugly regular expressions that match characters in the -// whitespace, identifier, and identifier-start categories. These -// are only applied when a character is found to actually have a -// code point above 128. -// Generated by `bin/generate-identifier-regex.js`. -var nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; -var nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; - var nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); var nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]"); -nonASCIIidentifierStartChars = nonASCIIidentifierChars = null; - -// These are a run-length and offset encoded representation of the -// >0xffff code points that are a valid part of identifiers. The -// offset starts at 0x10000, and each pair of numbers represents an -// offset to the next range, and then a size of the range. They were -// generated by bin/generate-identifier-regex.js - -// eslint-disable-next-line comma-spacing -var astralIdentifierStartCodes = [0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,13,10,2,14,2,6,2,1,2,10,2,14,2,6,2,1,68,310,10,21,11,7,25,5,2,41,2,8,70,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,349,41,7,1,79,28,11,0,9,21,43,17,47,20,28,22,13,52,58,1,3,0,14,44,33,24,27,35,30,0,3,0,9,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,85,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,159,52,19,3,21,2,31,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,38,6,186,43,117,63,32,7,3,0,3,7,2,1,2,23,16,0,2,0,95,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,19,72,264,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,190,0,80,921,103,110,18,195,2637,96,16,1070,4050,582,8634,568,8,30,18,78,18,29,19,47,17,3,32,20,6,18,689,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,1237,43,8,8936,3,2,6,2,1,2,290,46,2,18,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,1845,30,482,44,11,6,17,0,322,29,19,43,1269,6,2,3,2,1,2,14,2,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42719,33,4152,8,221,3,5761,15,7472,3104,541,1507,4938]; - -// eslint-disable-next-line comma-spacing -var astralIdentifierCodes = [509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,370,1,154,10,50,3,123,2,54,14,32,10,3,1,11,3,46,10,8,0,46,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,2,11,83,11,7,0,161,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,193,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,84,14,5,9,243,14,166,9,71,5,2,1,3,3,2,0,2,1,13,9,120,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,406,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,19306,9,87,9,39,4,60,6,26,9,1014,0,2,54,8,3,82,0,12,1,19628,1,4706,45,3,22,543,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,262,6,10,9,357,0,62,13,1495,6,110,6,6,9,4759,9,787719,239]; - // This has a complexity linear to the value of the code. The // assumption is that looking up astral identifier characters is // rare. @@ -281,6 +273,13 @@ function wordsRegexp(words) { return new RegExp("^(?:" + words.replace(/ /g, "|") + ")$") } +function codePointToString(code) { + // UTF-16 Decoding + if (code <= 0xFFFF) { return String.fromCharCode(code) } + code -= 0x10000; + return String.fromCharCode((code >> 10) + 0xD800, (code & 1023) + 0xDC00) +} + var loneSurrogate = /(?:[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])/; // These are used when `options.locations` is on, for the @@ -322,10 +321,10 @@ function getLineInfo(input, offset) { var defaultOptions = { // `ecmaVersion` indicates the ECMAScript version to parse. Must be // either 3, 5, 6 (or 2015), 7 (2016), 8 (2017), 9 (2018), 10 - // (2019), 11 (2020), 12 (2021), 13 (2022), or `"latest"` (the - // latest version the library supports). This influences support - // for strict mode, the set of reserved words, and support for - // new syntax features. + // (2019), 11 (2020), 12 (2021), 13 (2022), 14 (2023), or `"latest"` + // (the latest version the library supports). This influences + // support for strict mode, the set of reserved words, and support + // for new syntax features. ecmaVersion: null, // `sourceType` indicates the mode the code should be parsed in. // Can be either `"script"` or `"module"`. This influences global @@ -359,8 +358,9 @@ var defaultOptions = { // When enabled, super identifiers are not constrained to // appearing in methods and do not raise an error when they appear elsewhere. allowSuperOutsideMethod: null, - // When enabled, hashbang directive in the beginning of file - // is allowed and treated as a line comment. + // When enabled, hashbang directive in the beginning of file is + // allowed and treated as a line comment. Enabled by default when + // `ecmaVersion` >= 2023. allowHashBang: false, // When `locations` is on, `loc` properties holding objects with // `start` and `end` properties in `{line, column}` form (with @@ -435,6 +435,9 @@ function getOptions(opts) { if (options.allowReserved == null) { options.allowReserved = options.ecmaVersion < 5; } + if (opts.allowHashBang == null) + { options.allowHashBang = options.ecmaVersion >= 14; } + if (isArray(options.onToken)) { var tokens = options.onToken; options.onToken = function (token) { return tokens.push(token); }; @@ -648,6 +651,7 @@ var pp$9 = Parser.prototype; var literal = /^(?:'((?:\\.|[^'\\])*?)'|"((?:\\.|[^"\\])*?)")/; pp$9.strictDirective = function(start) { + if (this.options.ecmaVersion < 5) { return false } for (;;) { // Try to find string literal. skipWhiteSpace.lastIndex = start; @@ -750,21 +754,21 @@ pp$9.unexpected = function(pos) { this.raise(pos != null ? pos : this.start, "Unexpected token"); }; -function DestructuringErrors() { +var DestructuringErrors = function DestructuringErrors() { this.shorthandAssign = this.trailingComma = this.parenthesizedAssign = this.parenthesizedBind = this.doubleProto = -1; -} +}; pp$9.checkPatternErrors = function(refDestructuringErrors, isAssign) { if (!refDestructuringErrors) { return } if (refDestructuringErrors.trailingComma > -1) { this.raiseRecoverable(refDestructuringErrors.trailingComma, "Comma is not permitted after the rest element"); } var parens = isAssign ? refDestructuringErrors.parenthesizedAssign : refDestructuringErrors.parenthesizedBind; - if (parens > -1) { this.raiseRecoverable(parens, "Parenthesized pattern"); } + if (parens > -1) { this.raiseRecoverable(parens, isAssign ? "Assigning to rvalue" : "Parenthesized pattern"); } }; pp$9.checkExpressionErrors = function(refDestructuringErrors, andThrow) { @@ -1638,7 +1642,7 @@ pp$8.parseExport = function(node, exports) { if (this.options.ecmaVersion >= 11) { if (this.eatContextual("as")) { node.exported = this.parseModuleExportName(); - this.checkExport(exports, node.exported.name, this.lastTokStart); + this.checkExport(exports, node.exported, this.lastTokStart); } else { node.exported = null; } @@ -1672,7 +1676,7 @@ pp$8.parseExport = function(node, exports) { if (node.declaration.type === "VariableDeclaration") { this.checkVariableExport(exports, node.declaration.declarations); } else - { this.checkExport(exports, node.declaration.id.name, node.declaration.id.start); } + { this.checkExport(exports, node.declaration.id, node.declaration.id.start); } node.specifiers = []; node.source = null; } else { // export { x, y as z } [from '...'] @@ -1704,6 +1708,8 @@ pp$8.parseExport = function(node, exports) { pp$8.checkExport = function(exports, name, pos) { if (!exports) { return } + if (typeof name !== "string") + { name = name.type === "Identifier" ? name.name : name.value; } if (hasOwn(exports, name)) { this.raiseRecoverable(pos, "Duplicate export '" + name + "'"); } exports[name] = true; @@ -1712,7 +1718,7 @@ pp$8.checkExport = function(exports, name, pos) { pp$8.checkPatternExport = function(exports, pat) { var type = pat.type; if (type === "Identifier") - { this.checkExport(exports, pat.name, pat.start); } + { this.checkExport(exports, pat, pat.start); } else if (type === "ObjectPattern") { for (var i = 0, list = pat.properties; i < list.length; i += 1) { @@ -1772,7 +1778,7 @@ pp$8.parseExportSpecifiers = function(exports) { node.exported = this.eatContextual("as") ? this.parseModuleExportName() : node.local; this.checkExport( exports, - node.exported[node.exported.type === "Identifier" ? "name" : "value"], + node.exported, node.exported.start ); nodes.push(this.finishNode(node, "ExportSpecifier")); @@ -1858,6 +1864,7 @@ pp$8.adaptDirectivePrologue = function(statements) { }; pp$8.isDirectiveCandidate = function(statement) { return ( + this.options.ecmaVersion >= 5 && statement.type === "ExpressionStatement" && statement.expression.type === "Literal" && typeof statement.expression.value === "string" && @@ -2268,7 +2275,8 @@ pp$6.updateContext = function(prevType) { { this.exprAllowed = type.beforeExpr; } }; -// Used to handle egde case when token context could not be inferred correctly in tokenize phase +// Used to handle egde cases when token context could not be inferred correctly during tokenization phase + pp$6.overrideContext = function(tokenCtx) { if (this.curContext() !== tokenCtx) { this.context[this.context.length - 1] = tokenCtx; @@ -3084,15 +3092,6 @@ pp$5.parseProperty = function(isPattern, refDestructuringErrors) { } return this.finishNode(prop, "RestElement") } - // To disallow parenthesized identifier via `this.toAssignable()`. - if (this.type === types$1.parenL && refDestructuringErrors) { - if (refDestructuringErrors.parenthesizedAssign < 0) { - refDestructuringErrors.parenthesizedAssign = this.start; - } - if (refDestructuringErrors.parenthesizedBind < 0) { - refDestructuringErrors.parenthesizedBind = this.start; - } - } // Parse argument. prop.argument = this.parseMaybeAssign(false, refDestructuringErrors); // To disallow trailing comma via `this.toAssignable()`. @@ -3762,12 +3761,6 @@ RegExpValidationState.prototype.eat = function eat (ch, forceU) { return false }; -function codePointToString$1(ch) { - if (ch <= 0xFFFF) { return String.fromCharCode(ch) } - ch -= 0x10000; - return String.fromCharCode((ch >> 10) + 0xD800, (ch & 0x03FF) + 0xDC00) -} - /** * Validate the flags part of a given RegExpLiteral. * @@ -4132,9 +4125,9 @@ pp$1.regexp_eatGroupName = function(state) { pp$1.regexp_eatRegExpIdentifierName = function(state) { state.lastStringValue = ""; if (this.regexp_eatRegExpIdentifierStart(state)) { - state.lastStringValue += codePointToString$1(state.lastIntValue); + state.lastStringValue += codePointToString(state.lastIntValue); while (this.regexp_eatRegExpIdentifierPart(state)) { - state.lastStringValue += codePointToString$1(state.lastIntValue); + state.lastStringValue += codePointToString(state.lastIntValue); } return true } @@ -4486,7 +4479,7 @@ pp$1.regexp_eatUnicodePropertyName = function(state) { var ch = 0; state.lastStringValue = ""; while (isUnicodePropertyNameCharacter(ch = state.current())) { - state.lastStringValue += codePointToString$1(ch); + state.lastStringValue += codePointToString(ch); state.advance(); } return state.lastStringValue !== "" @@ -4501,7 +4494,7 @@ pp$1.regexp_eatUnicodePropertyValue = function(state) { var ch = 0; state.lastStringValue = ""; while (isUnicodePropertyValueCharacter(ch = state.current())) { - state.lastStringValue += codePointToString$1(ch); + state.lastStringValue += codePointToString(ch); state.advance(); } return state.lastStringValue !== "" @@ -5284,13 +5277,6 @@ pp.readCodePoint = function() { return code }; -function codePointToString(code) { - // UTF-16 Decoding - if (code <= 0xFFFF) { return String.fromCharCode(code) } - code -= 0x10000; - return String.fromCharCode((code >> 10) + 0xD800, (code & 1023) + 0xDC00) -} - pp.readString = function(quote) { var out = "", chunkStart = ++this.pos; for (;;) { @@ -5535,7 +5521,7 @@ pp.readWord = function() { // Acorn is a tiny, fast JavaScript parser written in JavaScript. -var version = "8.7.0"; +var version = "8.8.0"; Parser.acorn = { Parser: Parser, diff --git a/deps/acorn/acorn/package.json b/deps/acorn/acorn/package.json index 8e2edc65cff81c9..896061c412f5498 100644 --- a/deps/acorn/acorn/package.json +++ b/deps/acorn/acorn/package.json @@ -16,8 +16,10 @@ ], "./package.json": "./package.json" }, - "version": "8.7.0", - "engines": {"node": ">=0.4.0"}, + "version": "8.8.0", + "engines": { + "node": ">=0.4.0" + }, "maintainers": [ { "name": "Marijn Haverbeke", @@ -42,5 +44,7 @@ "scripts": { "prepare": "cd ..; npm run build:main" }, - "bin": {"acorn": "./bin/acorn"} + "bin": { + "acorn": "./bin/acorn" + } } diff --git a/deps/corepack/CHANGELOG.md b/deps/corepack/CHANGELOG.md index 7b7058c213ccfb4..97cc62b425f025a 100644 --- a/deps/corepack/CHANGELOG.md +++ b/deps/corepack/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [0.14.0](https://github.com/nodejs/corepack/compare/v0.13.0...v0.14.0) (2022-09-02) + + +### Features + +* add `COREPACK_ENABLE_STRICT` env variable ([#167](https://github.com/nodejs/corepack/issues/167)) ([92b52f6](https://github.com/nodejs/corepack/commit/92b52f6b4918aff968c0942b89fc722ebf57bce2)) +* update package manager versions ([#170](https://github.com/nodejs/corepack/issues/170)) ([6f70bfc](https://github.com/nodejs/corepack/commit/6f70bfc4b6a8a57cccb1ff9cbf2f49240648f1ed)) + + +### Bug Fixes + +* handle tags including numbers in `prepare` command ([#165](https://github.com/nodejs/corepack/issues/165)) ([5a0727b](https://github.com/nodejs/corepack/commit/5a0727b43976e0dc299151876c0dde2c4a85174d)) + +## [0.13.0](https://github.com/nodejs/corepack/compare/v0.12.3...v0.13.0) (2022-08-19) + + +### Features + +* do not use `~/.node` as default value for `COREPACK_HOME` ([#152](https://github.com/nodejs/corepack/issues/152)) ([09e24cf](https://github.com/nodejs/corepack/commit/09e24cf497de27fe92668cf0a8e555f2c7e2530d)) +* download the latest version instead of a pinned one ([#134](https://github.com/nodejs/corepack/issues/134)) ([055b928](https://github.com/nodejs/corepack/commit/055b92807f711b5c8c8be6e62b8d3ce83e1ff002)) +* update package manager versions ([#163](https://github.com/nodejs/corepack/issues/163)) ([af38d5a](https://github.com/nodejs/corepack/commit/af38d5afbbc10d61265b2f4687c5cc498b059b41)) + +## [0.12.3](https://github.com/nodejs/corepack/compare/v0.12.2...v0.12.3) (2022-08-12) + + +### Features + +* update package manager versions ([#160](https://github.com/nodejs/corepack/issues/160)) ([ad092a7](https://github.com/nodejs/corepack/commit/ad092a7fb4296143fa5224c04dbd628451b3c158)) + ## [0.12.2](https://github.com/nodejs/corepack/compare/v0.12.1...v0.12.2) (2022-08-05) ### Features diff --git a/deps/corepack/README.md b/deps/corepack/README.md index 6fc940814cdd4ec..8ba03a760f29068 100644 --- a/deps/corepack/README.md +++ b/deps/corepack/README.md @@ -46,9 +46,16 @@ Just use your package managers as you usually would. Run `yarn install` in Yarn ## Known Good Releases -When running Yarn or pnpm within projects that don't list a supported package manager, Corepack will default to a set of Known Good Releases. In a way, you can compare this to Node.js, where each version ships with a specific version of npm. +When running Corepack within projects that don't list a supported package +manager, it will default to a set of Known Good Releases. In a way, you can +compare this to Node.js, where each version ships with a specific version of npm. -The Known Good Releases can be updated system-wide using the `--activate` flag from the `corepack prepare` and `corepack hydrate` commands. +If there is no Known Good Release for the requested package manager, Corepack +looks up the npm registry for the latest available version and cache it for +future use. + +The Known Good Releases can be updated system-wide using the `--activate` flag +from the `corepack prepare` and `corepack hydrate` commands. ## Offline Workflow @@ -104,9 +111,21 @@ This command will retrieve the given package manager from the specified archive ## Environment Variables -- `COREPACK_ENABLE_NETWORK` can be set to `0` to prevent Corepack from accessing the network (in which case you'll be responsible for hydrating the package manager versions that will be required for the projects you'll run, using `corepack hydrate`). +- `COREPACK_DEFAULT_TO_LATEST` can be set to `0` in order to instruct Corepack + not to lookup on the remote registry for the latest version of the selected + package manager. + +- `COREPACK_ENABLE_NETWORK` can be set to `0` to prevent Corepack from accessing + the network (in which case you'll be responsible for hydrating the package + manager versions that will be required for the projects you'll run, using + `corepack hydrate`). + +- `COREPACK_ENABLE_STRICT` can be set to `0` to prevent Corepack from checking + if the package manager corresponds to the one defined for the current project. -- `COREPACK_HOME` can be set in order to define where Corepack should install the package managers. By default it is set to `$HOME/.node/corepack`. +- `COREPACK_HOME` can be set in order to define where Corepack should install + the package managers. By default it is set to `%LOCALAPPDATA%\node\corepack` + on Windows, and to `$HOME/.cache/node/corepack` everywhere else. - `COREPACK_ROOT` has no functional impact on Corepack itself; it's automatically being set in your environment by Corepack when it shells out to the underlying package managers, so that they can feature-detect its presence (useful for commands like `yarn init`). diff --git a/deps/corepack/dist/corepack.js b/deps/corepack/dist/corepack.js index ea30cc8dc9459cd..8dd76226976b10f 100755 --- a/deps/corepack/dist/corepack.js +++ b/deps/corepack/dist/corepack.js @@ -3,9 +3,9 @@ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ -/***/ "../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.0-8f73631a81-9.zip/node_modules/@zkochan/cmd-shim/index.js": +/***/ "../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.1-32f000bcac-9.zip/node_modules/@zkochan/cmd-shim/index.js": /*!***********************************************************************************************************************!*\ - !*** ../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.0-8f73631a81-9.zip/node_modules/@zkochan/cmd-shim/index.js ***! + !*** ../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.1-32f000bcac-9.zip/node_modules/@zkochan/cmd-shim/index.js ***! \***********************************************************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { @@ -40,12 +40,12 @@ function ingestOptions(opts) { const opts_ = { ...DEFAULT_OPTIONS, ...opts }; const fs = opts_.fs; opts_.fs_ = { - chmod: fs.chmod ? util_1.promisify(fs.chmod) : (async () => { }), - mkdir: util_1.promisify(fs.mkdir), - readFile: util_1.promisify(fs.readFile), - stat: util_1.promisify(fs.stat), - unlink: util_1.promisify(fs.unlink), - writeFile: util_1.promisify(fs.writeFile) + chmod: fs.chmod ? (0, util_1.promisify)(fs.chmod) : (async () => { }), + mkdir: (0, util_1.promisify)(fs.mkdir), + readFile: (0, util_1.promisify)(fs.readFile), + stat: (0, util_1.promisify)(fs.stat), + unlink: (0, util_1.promisify)(fs.unlink), + writeFile: (0, util_1.promisify)(fs.writeFile) }; return opts_; } @@ -60,7 +60,6 @@ function ingestOptions(opts) { */ async function cmdShim(src, to, opts) { const opts_ = ingestOptions(opts); - await opts_.fs_.stat(src); await cmdShim_(src, to, opts_); } /** @@ -158,25 +157,47 @@ function writeShimPost(target, opts) { * @return Promise of infomation of runtime of `target`. */ async function searchScriptRuntime(target, opts) { - const data = await opts.fs_.readFile(target, 'utf8'); - // First, check if the bin is a #! of some sort. - const firstLine = data.trim().split(/\r*\n/)[0]; - const shebang = firstLine.match(shebangExpr); - if (!shebang) { - // If not, infer script type from its extension. - // If the inference fails, it's something that'll be compiled, or some other - // sort of script, and just call it directly. - const targetExtension = path.extname(target).toLowerCase(); + try { + const data = await opts.fs_.readFile(target, 'utf8'); + // First, check if the bin is a #! of some sort. + const firstLine = data.trim().split(/\r*\n/)[0]; + const shebang = firstLine.match(shebangExpr); + if (!shebang) { + // If not, infer script type from its extension. + // If the inference fails, it's something that'll be compiled, or some other + // sort of script, and just call it directly. + const targetExtension = path.extname(target).toLowerCase(); + return { + // undefined if extension is unknown but it's converted to null. + program: extensionToProgramMap.get(targetExtension) || null, + additionalArgs: '' + }; + } return { - // undefined if extension is unknown but it's converted to null. - program: extensionToProgramMap.get(targetExtension) || null, - additionalArgs: '' + program: shebang[1], + additionalArgs: shebang[2] }; } - return { - program: shebang[1], - additionalArgs: shebang[2] - }; + catch (err) { + if (!isWindows() || err.code !== 'ENOENT') + throw err; + if (await opts.fs_.stat(`${target}${getExeExtension()}`)) { + return { + program: null, + additionalArgs: '', + }; + } + throw err; + } +} +function getExeExtension() { + let cmdExtension; + if (process.env.PATHEXT) { + cmdExtension = process.env.PATHEXT + .split(path.delimiter) + .find(ext => ext.toLowerCase() === '.exe'); + } + return cmdExtension || '.exe'; } /** * Write shim to the file system while executing the pre- and post-processes @@ -741,7 +762,7 @@ module.exports = cmdExtension || '.cmd' "use strict"; -const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js") +const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js") const EE = (__webpack_require__(/*! events */ "events").EventEmitter) const fs = __webpack_require__(/*! fs */ "fs") @@ -1713,9 +1734,9 @@ module.exports = LRUCache /***/ }), -/***/ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js": +/***/ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js": /*!*****************************************************************************************************!*\ - !*** ../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js ***! + !*** ../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js ***! \*****************************************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { @@ -2512,7 +2533,7 @@ const Buffer = (__webpack_require__(/*! buffer */ "buffer").Buffer) const realZlib = __webpack_require__(/*! zlib */ "zlib") const constants = exports.constants = __webpack_require__(/*! ./constants.js */ "../../../.yarn/berry/cache/minizlib-npm-2.1.2-ea89cd0cfb-9.zip/node_modules/minizlib/constants.js") -const Minipass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js") +const Minipass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js") const OriginalBufferConcat = Buffer.concat @@ -6980,7 +7001,7 @@ class PackJob { } } -const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js") +const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js") const zlib = __webpack_require__(/*! minizlib */ "../../../.yarn/berry/cache/minizlib-npm-2.1.2-ea89cd0cfb-9.zip/node_modules/minizlib/index.js") const ReadEntry = __webpack_require__(/*! ./read-entry.js */ "../../../.yarn/berry/cache/tar-npm-6.1.11-e6ac3cba9c-9.zip/node_modules/tar/lib/read-entry.js") const WriteEntry = __webpack_require__(/*! ./write-entry.js */ "../../../.yarn/berry/cache/tar-npm-6.1.11-e6ac3cba9c-9.zip/node_modules/tar/lib/write-entry.js") @@ -8169,7 +8190,7 @@ module.exports = Pax "use strict"; -const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js") +const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js") const normPath = __webpack_require__(/*! ./normalize-windows-path.js */ "../../../.yarn/berry/cache/tar-npm-6.1.11-e6ac3cba9c-9.zip/node_modules/tar/lib/normalize-windows-path.js") const SLURP = Symbol('slurp') @@ -9627,7 +9648,7 @@ module.exports = { "use strict"; -const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.4-6cf48a6c5e-9.zip/node_modules/minipass/index.js") +const MiniPass = __webpack_require__(/*! minipass */ "../../../.yarn/berry/cache/minipass-npm-3.3.5-a555b091e7-9.zip/node_modules/minipass/index.js") const Pax = __webpack_require__(/*! ./pax.js */ "../../../.yarn/berry/cache/tar-npm-6.1.11-e6ac3cba9c-9.zip/node_modules/tar/lib/pax.js") const Header = __webpack_require__(/*! ./header.js */ "../../../.yarn/berry/cache/tar-npm-6.1.11-e6ac3cba9c-9.zip/node_modules/tar/lib/header.js") const fs = __webpack_require__(/*! fs */ "fs") @@ -15073,18 +15094,21 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "Engine": () => (/* binding */ Engine) /* harmony export */ }); -/* harmony import */ var clipanion__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! clipanion */ "./.yarn/__virtual__/clipanion-virtual-72ec1bc418/4/.yarn/berry/cache/clipanion-npm-3.1.0-ced87dbbea-9.zip/node_modules/clipanion/lib/advanced/index.js"); +/* harmony import */ var clipanion__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! clipanion */ "./.yarn/__virtual__/clipanion-virtual-72ec1bc418/4/.yarn/berry/cache/clipanion-npm-3.1.0-ced87dbbea-9.zip/node_modules/clipanion/lib/advanced/index.js"); /* harmony import */ var fs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fs */ "fs"); /* harmony import */ var fs__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fs__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var path__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! path */ "path"); /* harmony import */ var path__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(path__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var semver__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! semver */ "../../../.yarn/berry/cache/semver-npm-7.3.7-3bfe704194-9.zip/node_modules/semver/index.js"); -/* harmony import */ var semver__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(semver__WEBPACK_IMPORTED_MODULE_2__); -/* harmony import */ var _config_json__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../config.json */ "./config.json"); -/* harmony import */ var _corepackUtils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./corepackUtils */ "./sources/corepackUtils.ts"); -/* harmony import */ var _folderUtils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./folderUtils */ "./sources/folderUtils.ts"); -/* harmony import */ var _semverUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./semverUtils */ "./sources/semverUtils.ts"); -/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./types */ "./sources/types.ts"); +/* harmony import */ var process__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! process */ "process"); +/* harmony import */ var process__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(process__WEBPACK_IMPORTED_MODULE_2__); +/* harmony import */ var semver__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! semver */ "../../../.yarn/berry/cache/semver-npm-7.3.7-3bfe704194-9.zip/node_modules/semver/index.js"); +/* harmony import */ var semver__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(semver__WEBPACK_IMPORTED_MODULE_3__); +/* harmony import */ var _config_json__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../config.json */ "./config.json"); +/* harmony import */ var _corepackUtils__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./corepackUtils */ "./sources/corepackUtils.ts"); +/* harmony import */ var _folderUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./folderUtils */ "./sources/folderUtils.ts"); +/* harmony import */ var _semverUtils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./semverUtils */ "./sources/semverUtils.ts"); +/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./types */ "./sources/types.ts"); + @@ -15095,11 +15119,11 @@ __webpack_require__.r(__webpack_exports__); class Engine { - constructor(config = _config_json__WEBPACK_IMPORTED_MODULE_3__) { + constructor(config = _config_json__WEBPACK_IMPORTED_MODULE_4__) { this.config = config; } getPackageManagerFor(binaryName) { - for (const packageManager of _types__WEBPACK_IMPORTED_MODULE_7__.SupportedPackageManagerSet) { + for (const packageManager of _types__WEBPACK_IMPORTED_MODULE_8__.SupportedPackageManagerSet) { for (const rangeDefinition of Object.values(this.config.definitions[packageManager].ranges)) { const bins = Array.isArray(rangeDefinition.bin) ? rangeDefinition.bin @@ -15125,14 +15149,14 @@ class Engine { } async getDefaultDescriptors() { const locators = []; - for (const name of _types__WEBPACK_IMPORTED_MODULE_7__.SupportedPackageManagerSet) + for (const name of _types__WEBPACK_IMPORTED_MODULE_8__.SupportedPackageManagerSet) locators.push({ name, range: await this.getDefaultVersion(name) }); return locators; } async getDefaultVersion(packageManager) { const definition = this.config.definitions[packageManager]; if (typeof definition === `undefined`) - throw new clipanion__WEBPACK_IMPORTED_MODULE_8__.UsageError(`This package manager (${packageManager}) isn't supported by this corepack build`); + throw new clipanion__WEBPACK_IMPORTED_MODULE_9__.UsageError(`This package manager (${packageManager}) isn't supported by this corepack build`); let lastKnownGood; try { lastKnownGood = JSON.parse(await fs__WEBPACK_IMPORTED_MODULE_0___default().promises.readFile(this.getLastKnownGoodFile(), `utf8`)); @@ -15140,14 +15164,21 @@ class Engine { catch (_a) { // Ignore errors; too bad } - if (typeof lastKnownGood !== `object` || lastKnownGood === null) - return definition.default; - if (!Object.prototype.hasOwnProperty.call(lastKnownGood, packageManager)) - return definition.default; - const override = lastKnownGood[packageManager]; - if (typeof override !== `string`) + if (typeof lastKnownGood === `object` && lastKnownGood !== null && + Object.prototype.hasOwnProperty.call(lastKnownGood, packageManager)) { + const override = lastKnownGood[packageManager]; + if (typeof override === `string`) { + return override; + } + } + if ((process__WEBPACK_IMPORTED_MODULE_2___default().env.COREPACK_DEFAULT_TO_LATEST) === `0`) return definition.default; - return override; + const reference = await _corepackUtils__WEBPACK_IMPORTED_MODULE_5__.fetchLatestStableVersion(definition.fetchLatestFrom); + await this.activatePackageManager({ + name: packageManager, + reference, + }); + return reference; } async activatePackageManager(locator) { const lastKnownGoodFile = this.getLastKnownGoodFile(); @@ -15167,12 +15198,12 @@ class Engine { async ensurePackageManager(locator) { const definition = this.config.definitions[locator.name]; if (typeof definition === `undefined`) - throw new clipanion__WEBPACK_IMPORTED_MODULE_8__.UsageError(`This package manager (${locator.name}) isn't supported by this corepack build`); + throw new clipanion__WEBPACK_IMPORTED_MODULE_9__.UsageError(`This package manager (${locator.name}) isn't supported by this corepack build`); const ranges = Object.keys(definition.ranges).reverse(); - const range = ranges.find(range => _semverUtils__WEBPACK_IMPORTED_MODULE_6__.satisfiesWithPrereleases(locator.reference, range)); + const range = ranges.find(range => _semverUtils__WEBPACK_IMPORTED_MODULE_7__.satisfiesWithPrereleases(locator.reference, range)); if (typeof range === `undefined`) throw new Error(`Assertion failed: Specified resolution (${locator.reference}) isn't supported by any of ${ranges.join(`, `)}`); - const installedLocation = await _corepackUtils__WEBPACK_IMPORTED_MODULE_4__.installVersion(_folderUtils__WEBPACK_IMPORTED_MODULE_5__.getInstallFolder(), locator, { + const installedLocation = await _corepackUtils__WEBPACK_IMPORTED_MODULE_5__.installVersion(_folderUtils__WEBPACK_IMPORTED_MODULE_6__.getInstallFolder(), locator, { spec: definition.ranges[range], }); return { @@ -15183,17 +15214,17 @@ class Engine { async resolveDescriptor(descriptor, { allowTags = false, useCache = true } = {}) { const definition = this.config.definitions[descriptor.name]; if (typeof definition === `undefined`) - throw new clipanion__WEBPACK_IMPORTED_MODULE_8__.UsageError(`This package manager (${descriptor.name}) isn't supported by this corepack build`); + throw new clipanion__WEBPACK_IMPORTED_MODULE_9__.UsageError(`This package manager (${descriptor.name}) isn't supported by this corepack build`); let finalDescriptor = descriptor; - if (/^[a-z-]+$/.test(descriptor.range)) { + if (!semver__WEBPACK_IMPORTED_MODULE_3___default().valid(descriptor.range) && !semver__WEBPACK_IMPORTED_MODULE_3___default().validRange(descriptor.range)) { if (!allowTags) - throw new clipanion__WEBPACK_IMPORTED_MODULE_8__.UsageError(`Packages managers can't be referended via tags in this context`); + throw new clipanion__WEBPACK_IMPORTED_MODULE_9__.UsageError(`Packages managers can't be referended via tags in this context`); // We only resolve tags from the latest registry entry const ranges = Object.keys(definition.ranges); const tagRange = ranges[ranges.length - 1]; - const tags = await _corepackUtils__WEBPACK_IMPORTED_MODULE_4__.fetchAvailableTags(definition.ranges[tagRange].registry); + const tags = await _corepackUtils__WEBPACK_IMPORTED_MODULE_5__.fetchAvailableTags(definition.ranges[tagRange].registry); if (!Object.prototype.hasOwnProperty.call(tags, descriptor.range)) - throw new clipanion__WEBPACK_IMPORTED_MODULE_8__.UsageError(`Tag not found (${descriptor.range})`); + throw new clipanion__WEBPACK_IMPORTED_MODULE_9__.UsageError(`Tag not found (${descriptor.range})`); finalDescriptor = { name: descriptor.name, range: tags[descriptor.range], @@ -15201,18 +15232,18 @@ class Engine { } // If a compatible version is already installed, no need to query one // from the remote listings - const cachedVersion = await _corepackUtils__WEBPACK_IMPORTED_MODULE_4__.findInstalledVersion(_folderUtils__WEBPACK_IMPORTED_MODULE_5__.getInstallFolder(), finalDescriptor); + const cachedVersion = await _corepackUtils__WEBPACK_IMPORTED_MODULE_5__.findInstalledVersion(_folderUtils__WEBPACK_IMPORTED_MODULE_6__.getInstallFolder(), finalDescriptor); if (cachedVersion !== null && useCache) return { name: finalDescriptor.name, reference: cachedVersion }; // If the user asked for a specific version, no need to request the list of // available versions from the registry. - if (semver__WEBPACK_IMPORTED_MODULE_2___default().valid(finalDescriptor.range)) + if (semver__WEBPACK_IMPORTED_MODULE_3___default().valid(finalDescriptor.range)) return { name: finalDescriptor.name, reference: finalDescriptor.range }; const candidateRangeDefinitions = Object.keys(definition.ranges).filter(range => { - return _semverUtils__WEBPACK_IMPORTED_MODULE_6__.satisfiesWithPrereleases(finalDescriptor.range, range); + return _semverUtils__WEBPACK_IMPORTED_MODULE_7__.satisfiesWithPrereleases(finalDescriptor.range, range); }); const tagResolutions = await Promise.all(candidateRangeDefinitions.map(async (range) => { - return [range, await _corepackUtils__WEBPACK_IMPORTED_MODULE_4__.fetchAvailableVersions(definition.ranges[range].registry)]; + return [range, await _corepackUtils__WEBPACK_IMPORTED_MODULE_5__.fetchAvailableVersions(definition.ranges[range].registry)]; })); // If a version is available under multiple strategies (for example if // Yarn is published to both the v1 package and git), we only care @@ -15222,13 +15253,13 @@ class Engine { for (const entry of resolutions) resolutionMap.set(entry, range); const candidates = [...resolutionMap.keys()]; - const maxSatisfying = semver__WEBPACK_IMPORTED_MODULE_2___default().maxSatisfying(candidates, finalDescriptor.range); + const maxSatisfying = semver__WEBPACK_IMPORTED_MODULE_3___default().maxSatisfying(candidates, finalDescriptor.range); if (maxSatisfying === null) return null; return { name: finalDescriptor.name, reference: maxSatisfying }; } getLastKnownGoodFile() { - return path__WEBPACK_IMPORTED_MODULE_1___default().join(_folderUtils__WEBPACK_IMPORTED_MODULE_5__.getInstallFolder(), `lastKnownGood.json`); + return path__WEBPACK_IMPORTED_MODULE_1___default().join(_folderUtils__WEBPACK_IMPORTED_MODULE_6__.getInstallFolder(), `lastKnownGood.json`); } } @@ -15351,7 +15382,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "EnableCommand": () => (/* binding */ EnableCommand) /* harmony export */ }); -/* harmony import */ var _zkochan_cmd_shim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @zkochan/cmd-shim */ "../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.0-8f73631a81-9.zip/node_modules/@zkochan/cmd-shim/index.js"); +/* harmony import */ var _zkochan_cmd_shim__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @zkochan/cmd-shim */ "../../../.yarn/berry/cache/@zkochan-cmd-shim-npm-5.3.1-32f000bcac-9.zip/node_modules/@zkochan/cmd-shim/index.js"); /* harmony import */ var _zkochan_cmd_shim__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_zkochan_cmd_shim__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var clipanion__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! clipanion */ "./.yarn/__virtual__/clipanion-virtual-72ec1bc418/4/.yarn/berry/cache/clipanion-npm-3.1.0-ced87dbbea-9.zip/node_modules/clipanion/lib/advanced/index.js"); /* harmony import */ var fs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fs */ "fs"); @@ -15677,6 +15708,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "fetchAvailableTags": () => (/* binding */ fetchAvailableTags), /* harmony export */ "fetchAvailableVersions": () => (/* binding */ fetchAvailableVersions), +/* harmony export */ "fetchLatestStableVersion": () => (/* binding */ fetchLatestStableVersion), /* harmony export */ "findInstalledVersion": () => (/* binding */ findInstalledVersion), /* harmony export */ "installVersion": () => (/* binding */ installVersion), /* harmony export */ "runVersion": () => (/* binding */ runVersion) @@ -15713,6 +15745,21 @@ var __asyncValues = (undefined && undefined.__asyncValues) || function (o) { +async function fetchLatestStableVersion(spec) { + switch (spec.type) { + case `npm`: { + const { [`dist-tags`]: { latest }, versions: { [latest]: { dist: { shasum } } } } = await _httpUtils__WEBPACK_IMPORTED_MODULE_8__.fetchAsJson(`https://registry.npmjs.org/${spec.package}`); + return `${latest}+sha1.${shasum}`; + } + case `url`: { + const data = await _httpUtils__WEBPACK_IMPORTED_MODULE_8__.fetchAsJson(spec.url); + return data[spec.fields.tags].stable; + } + default: { + throw new Error(`Unsupported specification ${JSON.stringify(spec)}`); + } + } +} async function fetchAvailableTags(spec) { switch (spec.type) { case `npm`: { @@ -15918,19 +15965,33 @@ __webpack_require__.r(__webpack_exports__); /* harmony import */ var os__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(os__WEBPACK_IMPORTED_MODULE_1__); /* harmony import */ var path__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! path */ "path"); /* harmony import */ var path__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(path__WEBPACK_IMPORTED_MODULE_2__); +/* harmony import */ var process__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! process */ "process"); +/* harmony import */ var process__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(process__WEBPACK_IMPORTED_MODULE_3__); + function getInstallFolder() { - var _a; - return (_a = process.env.COREPACK_HOME) !== null && _a !== void 0 ? _a : (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((0,os__WEBPACK_IMPORTED_MODULE_1__.homedir)(), `.node/corepack`); + var _a, _b, _c, _d, _e; + if ((process__WEBPACK_IMPORTED_MODULE_3___default().env.COREPACK_HOME) == null) { + // TODO: remove this block on the next major. + const oldCorepackDefaultHome = (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((0,os__WEBPACK_IMPORTED_MODULE_1__.homedir)(), `.node`, `corepack`); + const newCorepackDefaultHome = (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((_b = (_a = (process__WEBPACK_IMPORTED_MODULE_3___default().env.XDG_CACHE_HOME)) !== null && _a !== void 0 ? _a : (process__WEBPACK_IMPORTED_MODULE_3___default().env.LOCALAPPDATA)) !== null && _b !== void 0 ? _b : (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((0,os__WEBPACK_IMPORTED_MODULE_1__.homedir)(), (process__WEBPACK_IMPORTED_MODULE_3___default().platform) === `win32` ? `AppData/Local` : `.cache`), `node/corepack`); + if ((0,fs__WEBPACK_IMPORTED_MODULE_0__.existsSync)(oldCorepackDefaultHome) && + !(0,fs__WEBPACK_IMPORTED_MODULE_0__.existsSync)(newCorepackDefaultHome)) { + (0,fs__WEBPACK_IMPORTED_MODULE_0__.mkdirSync)(newCorepackDefaultHome, { recursive: true }); + (0,fs__WEBPACK_IMPORTED_MODULE_0__.renameSync)(oldCorepackDefaultHome, newCorepackDefaultHome); + } + return newCorepackDefaultHome; + } + return ((_c = (process__WEBPACK_IMPORTED_MODULE_3___default().env.COREPACK_HOME)) !== null && _c !== void 0 ? _c : (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((_e = (_d = (process__WEBPACK_IMPORTED_MODULE_3___default().env.XDG_CACHE_HOME)) !== null && _d !== void 0 ? _d : (process__WEBPACK_IMPORTED_MODULE_3___default().env.LOCALAPPDATA)) !== null && _e !== void 0 ? _e : (0,path__WEBPACK_IMPORTED_MODULE_2__.join)((0,os__WEBPACK_IMPORTED_MODULE_1__.homedir)(), (process__WEBPACK_IMPORTED_MODULE_3___default().platform) === `win32` ? `AppData/Local` : `.cache`), `node/corepack`)); } function getTemporaryFolder(target = (0,os__WEBPACK_IMPORTED_MODULE_1__.tmpdir)()) { (0,fs__WEBPACK_IMPORTED_MODULE_0__.mkdirSync)(target, { recursive: true }); while (true) { const rnd = Math.random() * 0x100000000; const hex = rnd.toString(16).padStart(8, `0`); - const path = (0,path__WEBPACK_IMPORTED_MODULE_2__.join)(target, `corepack-${process.pid}-${hex}`); + const path = (0,path__WEBPACK_IMPORTED_MODULE_2__.join)(target, `corepack-${(process__WEBPACK_IMPORTED_MODULE_3___default().pid)}-${hex}`); try { (0,fs__WEBPACK_IMPORTED_MODULE_0__.mkdirSync)(path); return path; @@ -16371,6 +16432,8 @@ function parseSpec(raw, source, { enforceExactVersion = true } = {}) { async function findProjectSpec(initialCwd, locator, { transparent = false } = {}) { // A locator is a valid descriptor (but not the other way around) const fallbackLocator = { name: locator.name, range: locator.reference }; + if (process.env.COREPACK_ENABLE_STRICT === `0`) + return fallbackLocator; while (true) { const result = await loadSpec(initialCwd); switch (result.type) { @@ -16681,6 +16744,17 @@ module.exports = require("path"); /***/ }), +/***/ "process": +/*!**************************!*\ + !*** external "process" ***! + \**************************/ +/***/ ((module) => { + +"use strict"; +module.exports = require("process"); + +/***/ }), + /***/ "stream": /*!*************************!*\ !*** external "stream" ***! @@ -16953,7 +17027,7 @@ const supportsColor = { /***/ ((module) => { "use strict"; -module.exports = JSON.parse('{"definitions":{"npm":{"default":"8.16.0+sha1.d385060093f3af10fabe6d8205d41bbf2a34ff9d","transparent":{"commands":[["npm","init"],["npx"]]},"ranges":{"*":{"url":"https://registry.npmjs.org/npm/-/npm-{}.tgz","bin":{"npm":"./bin/npm-cli.js","npx":"./bin/npx-cli.js"},"registry":{"type":"npm","package":"npm"}}}},"pnpm":{"default":"7.8.0+sha1.420c53c7089c0ed6ad659e3b4fce73228f5638ab","transparent":{"commands":[["pnpm","init"],["pnpx"],["pnpm","dlx"]]},"ranges":{"<6.0.0":{"url":"https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz","bin":{"pnpm":"./bin/pnpm.js","pnpx":"./bin/pnpx.js"},"registry":{"type":"npm","package":"pnpm"}},">=6.0.0":{"url":"https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz","bin":{"pnpm":"./bin/pnpm.cjs","pnpx":"./bin/pnpx.cjs"},"registry":{"type":"npm","package":"pnpm"}}}},"yarn":{"default":"1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447","transparent":{"default":"3.2.2+sha224.634d0331703700cabfa9d9389835bd8f7426b0207ed6b74d8d34c81e","commands":[["yarn","dlx"]]},"ranges":{"<2.0.0":{"url":"https://registry.yarnpkg.com/yarn/-/yarn-{}.tgz","bin":{"yarn":"./bin/yarn.js","yarnpkg":"./bin/yarn.js"},"registry":{"type":"npm","package":"yarn"}},">=2.0.0":{"name":"yarn","url":"https://repo.yarnpkg.com/{}/packages/yarnpkg-cli/bin/yarn.js","bin":["yarn","yarnpkg"],"registry":{"type":"url","url":"https://repo.yarnpkg.com/tags","fields":{"tags":"latest","versions":"tags"}}}}}}}'); +module.exports = JSON.parse('{"definitions":{"npm":{"default":"8.19.1+sha1.78bfc5fc1b7bc36881a2d9d1f2c93ad0246f31e5","fetchLatestFrom":{"type":"npm","package":"npm"},"transparent":{"commands":[["npm","init"],["npx"]]},"ranges":{"*":{"url":"https://registry.npmjs.org/npm/-/npm-{}.tgz","bin":{"npm":"./bin/npm-cli.js","npx":"./bin/npx-cli.js"},"registry":{"type":"npm","package":"npm"}}}},"pnpm":{"default":"7.9.5+sha1.8d28e3270689e2afd345777fec9d9535f427b532","fetchLatestFrom":{"type":"npm","package":"pnpm"},"transparent":{"commands":[["pnpm","init"],["pnpx"],["pnpm","dlx"]]},"ranges":{"<6.0.0":{"url":"https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz","bin":{"pnpm":"./bin/pnpm.js","pnpx":"./bin/pnpx.js"},"registry":{"type":"npm","package":"pnpm"}},">=6.0.0":{"url":"https://registry.npmjs.org/pnpm/-/pnpm-{}.tgz","bin":{"pnpm":"./bin/pnpm.cjs","pnpx":"./bin/pnpx.cjs"},"registry":{"type":"npm","package":"pnpm"}}}},"yarn":{"default":"1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447","fetchLatestFrom":{"type":"npm","package":"yarn"},"transparent":{"default":"3.2.3+sha224.953c8233f7a92884eee2de69a1b92d1f2ec1655e66d08071ba9a02fa","commands":[["yarn","dlx"]]},"ranges":{"<2.0.0":{"url":"https://registry.yarnpkg.com/yarn/-/yarn-{}.tgz","bin":{"yarn":"./bin/yarn.js","yarnpkg":"./bin/yarn.js"},"registry":{"type":"npm","package":"yarn"}},">=2.0.0":{"name":"yarn","url":"https://repo.yarnpkg.com/{}/packages/yarnpkg-cli/bin/yarn.js","bin":["yarn","yarnpkg"],"registry":{"type":"url","url":"https://repo.yarnpkg.com/tags","fields":{"tags":"latest","versions":"tags"}}}}}}}'); /***/ }), @@ -16964,7 +17038,7 @@ module.exports = JSON.parse('{"definitions":{"npm":{"default":"8.16.0+sha1.d3850 /***/ ((module) => { "use strict"; -module.exports = JSON.parse('{"name":"corepack","version":"0.12.2","homepage":"https://github.com/nodejs/corepack#readme","bugs":{"url":"https://github.com/nodejs/corepack/issues"},"repository":{"type":"git","url":"https://github.com/nodejs/corepack.git"},"license":"MIT","packageManager":"yarn@4.0.0-rc.14+sha224.d3bee29dce07417588d640327d44f1e0b8182c240bc2beb0b81ccf6e","devDependencies":{"@babel/core":"^7.14.3","@babel/plugin-transform-modules-commonjs":"^7.14.0","@babel/preset-typescript":"^7.13.0","@types/debug":"^4.1.5","@types/jest":"^28.0.0","@types/node":"^18.0.0","@types/semver":"^7.1.0","@types/tar":"^6.0.0","@types/which":"^2.0.0","@typescript-eslint/eslint-plugin":"^5.0.0","@typescript-eslint/parser":"^5.0.0","@yarnpkg/eslint-config":"^1.0.0-rc.5","@yarnpkg/fslib":"^2.1.0","@zkochan/cmd-shim":"^5.0.0","babel-plugin-dynamic-import-node":"^2.3.3","clipanion":"^3.0.1","debug":"^4.1.1","eslint":"^8.0.0","eslint-plugin-arca":"^0.15.0","jest":"^28.0.0","nock":"^13.0.4","proxy-agent":"^5.0.0","semver":"^7.1.3","supports-color":"^9.0.0","tar":"^6.0.1","terser-webpack-plugin":"^5.1.2","ts-loader":"^9.0.0","ts-node":"^10.0.0","typescript":"^4.3.2","v8-compile-cache":"^2.3.0","webpack":"^5.38.1","webpack-cli":"^4.0.0","which":"^2.0.2"},"scripts":{"build":"rm -rf dist shims && webpack && ts-node ./mkshims.ts","corepack":"ts-node ./sources/_entryPoint.ts","lint":"yarn eslint","prepack":"yarn build","postpack":"rm -rf dist shims","typecheck":"tsc --noEmit","test":"yarn jest"},"files":["dist","shims","LICENSE.md"],"publishConfig":{"bin":{"corepack":"./dist/corepack.js","pnpm":"./dist/pnpm.js","pnpx":"./dist/pnpx.js","yarn":"./dist/yarn.js","yarnpkg":"./dist/yarnpkg.js"},"executableFiles":["./dist/npm.js","./dist/npx.js","./dist/pnpm.js","./dist/pnpx.js","./dist/yarn.js","./dist/yarnpkg.js","./dist/corepack.js","./shims/npm","./shims/npm.ps1","./shims/npx","./shims/npx.ps1","./shims/pnpm","./shims/pnpm.ps1","./shims/pnpx","./shims/pnpx.ps1","./shims/yarn","./shims/yarn.ps1","./shims/yarnpkg","./shims/yarnpkg.ps1"]},"resolutions":{"vm2":"patch:vm2@npm:3.9.9#.yarn/patches/vm2-npm-3.9.9-03fd1f4dc5.patch"}}'); +module.exports = JSON.parse('{"name":"corepack","version":"0.14.0","homepage":"https://github.com/nodejs/corepack#readme","bugs":{"url":"https://github.com/nodejs/corepack/issues"},"repository":{"type":"git","url":"https://github.com/nodejs/corepack.git"},"license":"MIT","packageManager":"yarn@4.0.0-rc.15+sha224.7fa5c1d1875b041cea8fcbf9a364667e398825364bf5c5c8cd5f6601","devDependencies":{"@babel/core":"^7.14.3","@babel/plugin-transform-modules-commonjs":"^7.14.0","@babel/preset-typescript":"^7.13.0","@types/debug":"^4.1.5","@types/jest":"^29.0.0","@types/node":"^18.0.0","@types/semver":"^7.1.0","@types/tar":"^6.0.0","@types/which":"^2.0.0","@typescript-eslint/eslint-plugin":"^5.0.0","@typescript-eslint/parser":"^5.0.0","@yarnpkg/eslint-config":"^1.0.0-rc.5","@yarnpkg/fslib":"^2.1.0","@zkochan/cmd-shim":"^5.0.0","babel-plugin-dynamic-import-node":"^2.3.3","clipanion":"^3.0.1","debug":"^4.1.1","eslint":"^8.0.0","eslint-plugin-arca":"^0.15.0","jest":"^29.0.0","nock":"^13.0.4","proxy-agent":"^5.0.0","semver":"^7.1.3","supports-color":"^9.0.0","tar":"^6.0.1","terser-webpack-plugin":"^5.1.2","ts-loader":"^9.0.0","ts-node":"^10.0.0","typescript":"^4.3.2","v8-compile-cache":"^2.3.0","webpack":"^5.38.1","webpack-cli":"^4.0.0","which":"^2.0.2"},"scripts":{"build":"rm -rf dist shims && webpack && ts-node ./mkshims.ts","corepack":"ts-node ./sources/_entryPoint.ts","lint":"yarn eslint","prepack":"yarn build","postpack":"rm -rf dist shims","typecheck":"tsc --noEmit","test":"yarn jest"},"files":["dist","shims","LICENSE.md"],"publishConfig":{"bin":{"corepack":"./dist/corepack.js","pnpm":"./dist/pnpm.js","pnpx":"./dist/pnpx.js","yarn":"./dist/yarn.js","yarnpkg":"./dist/yarnpkg.js"},"executableFiles":["./dist/npm.js","./dist/npx.js","./dist/pnpm.js","./dist/pnpx.js","./dist/yarn.js","./dist/yarnpkg.js","./dist/corepack.js","./shims/npm","./shims/npm.ps1","./shims/npx","./shims/npx.ps1","./shims/pnpm","./shims/pnpm.ps1","./shims/pnpx","./shims/pnpx.ps1","./shims/yarn","./shims/yarn.ps1","./shims/yarnpkg","./shims/yarnpkg.ps1"]},"resolutions":{"vm2":"patch:vm2@npm:3.9.9#.yarn/patches/vm2-npm-3.9.9-03fd1f4dc5.patch"}}'); /***/ }) diff --git a/deps/corepack/dist/vendors-_yarn_berry_cache_proxy-agent-npm-5_0_0-41772f4b01-9_zip_node_modules_proxy-agent_index_js.js b/deps/corepack/dist/vendors-_yarn_berry_cache_proxy-agent-npm-5_0_0-41772f4b01-9_zip_node_modules_proxy-agent_index_js.js index afb6a9b2b75a517..b2c2dd247a4e8c3 100644 --- a/deps/corepack/dist/vendors-_yarn_berry_cache_proxy-agent-npm-5_0_0-41772f4b01-9_zip_node_modules_proxy-agent_index_js.js +++ b/deps/corepack/dist/vendors-_yarn_berry_cache_proxy-agent-npm-5_0_0-41772f4b01-9_zip_node_modules_proxy-agent_index_js.js @@ -63,7 +63,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; const events_1 = __webpack_require__(/*! events */ "events"); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const promisify_1 = __importDefault(__webpack_require__(/*! ./promisify */ "../../../.yarn/berry/cache/agent-base-npm-6.0.2-428f325a93-9.zip/node_modules/agent-base/dist/src/promisify.js")); const debug = debug_1.default('agent-base'); function isAgent(v) { @@ -20107,7 +20107,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const stream_1 = __webpack_require__(/*! stream */ "stream"); const crypto_1 = __webpack_require__(/*! crypto */ "crypto"); const data_uri_to_buffer_1 = __importDefault(__webpack_require__(/*! data-uri-to-buffer */ "../../../.yarn/berry/cache/data-uri-to-buffer-npm-3.0.1-830646f9ee-9.zip/node_modules/data-uri-to-buffer/dist/src/index.js")); @@ -20170,7 +20170,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const fs_1 = __webpack_require__(/*! fs */ "fs"); const fs_extra_1 = __webpack_require__(/*! fs-extra */ "../../../.yarn/berry/cache/fs-extra-npm-8.1.0-197473387f-9.zip/node_modules/fs-extra/lib/index.js"); const file_uri_to_path_1 = __importDefault(__webpack_require__(/*! file-uri-to-path */ "../../../.yarn/berry/cache/file-uri-to-path-npm-2.0.0-667f38da3a-9.zip/node_modules/file-uri-to-path/dist/src/index.js")); @@ -20246,7 +20246,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); const once_1 = __importDefault(__webpack_require__(/*! @tootallnate/once */ "../../../.yarn/berry/cache/@tootallnate-once-npm-1.1.2-0517220057-9.zip/node_modules/@tootallnate/once/dist/index.js")); const ftp_1 = __importDefault(__webpack_require__(/*! ftp */ "../../../.yarn/berry/cache/ftp-npm-0.3.10-348fb9ac23-9.zip/node_modules/ftp/lib/connection.js")); const path_1 = __webpack_require__(/*! path */ "path"); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const notfound_1 = __importDefault(__webpack_require__(/*! ./notfound */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/notfound.js")); const notmodified_1 = __importDefault(__webpack_require__(/*! ./notmodified */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/notmodified.js")); const debug = debug_1.default('get-uri:ftp'); @@ -20402,7 +20402,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); const http_1 = __importDefault(__webpack_require__(/*! http */ "http")); const https_1 = __importDefault(__webpack_require__(/*! https */ "https")); const once_1 = __importDefault(__webpack_require__(/*! @tootallnate/once */ "../../../.yarn/berry/cache/@tootallnate-once-npm-1.1.2-0517220057-9.zip/node_modules/@tootallnate/once/dist/index.js")); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const url_1 = __webpack_require__(/*! url */ "url"); const http_error_1 = __importDefault(__webpack_require__(/*! ./http-error */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/http-error.js")); const notfound_1 = __importDefault(__webpack_require__(/*! ./notfound */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/notfound.js")); @@ -20626,7 +20626,7 @@ exports["default"] = get; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const url_1 = __webpack_require__(/*! url */ "url"); // Built-in protocols const data_1 = __importDefault(__webpack_require__(/*! ./data */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/data.js")); @@ -22044,7 +22044,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); const net_1 = __importDefault(__webpack_require__(/*! net */ "net")); const tls_1 = __importDefault(__webpack_require__(/*! tls */ "tls")); const url_1 = __importDefault(__webpack_require__(/*! url */ "url")); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const once_1 = __importDefault(__webpack_require__(/*! @tootallnate/once */ "../../../.yarn/berry/cache/@tootallnate-once-npm-1.1.2-0517220057-9.zip/node_modules/@tootallnate/once/dist/index.js")); const agent_base_1 = __webpack_require__(/*! agent-base */ "../../../.yarn/berry/cache/agent-base-npm-6.0.2-428f325a93-9.zip/node_modules/agent-base/dist/src/index.js"); const debug = debug_1.default('http-proxy-agent'); @@ -22224,7 +22224,7 @@ const net_1 = __importDefault(__webpack_require__(/*! net */ "net")); const tls_1 = __importDefault(__webpack_require__(/*! tls */ "tls")); const url_1 = __importDefault(__webpack_require__(/*! url */ "url")); const assert_1 = __importDefault(__webpack_require__(/*! assert */ "assert")); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const agent_base_1 = __webpack_require__(/*! agent-base */ "../../../.yarn/berry/cache/agent-base-npm-6.0.2-428f325a93-9.zip/node_modules/agent-base/dist/src/index.js"); const parse_proxy_response_1 = __importDefault(__webpack_require__(/*! ./parse-proxy-response */ "../../../.yarn/berry/cache/https-proxy-agent-npm-5.0.1-42d65f358e-9.zip/node_modules/https-proxy-agent/dist/parse-proxy-response.js")); const debug = debug_1.default('https-proxy-agent:agent'); @@ -22422,7 +22422,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", ({ value: true })); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const debug = debug_1.default('https-proxy-agent:parse-proxy-response'); function parseProxyResponse(socket) { return new Promise((resolve, reject) => { @@ -26945,7 +26945,7 @@ const tls_1 = __importDefault(__webpack_require__(/*! tls */ "tls")); const once_1 = __importDefault(__webpack_require__(/*! @tootallnate/once */ "../../../.yarn/berry/cache/@tootallnate-once-npm-1.1.2-0517220057-9.zip/node_modules/@tootallnate/once/dist/index.js")); const crypto_1 = __importDefault(__webpack_require__(/*! crypto */ "crypto")); const get_uri_1 = __importDefault(__webpack_require__(/*! get-uri */ "../../../.yarn/berry/cache/get-uri-npm-3.0.2-53176650ff-9.zip/node_modules/get-uri/dist/index.js")); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const raw_body_1 = __importDefault(__webpack_require__(/*! raw-body */ "../../../.yarn/berry/cache/raw-body-npm-2.5.1-9dd1d9fff9-9.zip/node_modules/raw-body/index.js")); const url_1 = __webpack_require__(/*! url */ "url"); const http_proxy_agent_1 = __webpack_require__(/*! http-proxy-agent */ "../../../.yarn/berry/cache/http-proxy-agent-npm-4.0.1-ce9ef61788-9.zip/node_modules/http-proxy-agent/dist/index.js"); @@ -28087,7 +28087,7 @@ var url = __webpack_require__(/*! url */ "url"); var LRU = __webpack_require__(/*! lru-cache */ "../../../.yarn/berry/cache/lru-cache-npm-5.1.1-f475882a51-9.zip/node_modules/lru-cache/index.js"); var Agent = __webpack_require__(/*! agent-base */ "../../../.yarn/berry/cache/agent-base-npm-6.0.2-428f325a93-9.zip/node_modules/agent-base/dist/src/index.js"); var inherits = (__webpack_require__(/*! util */ "util").inherits); -var debug = __webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")('proxy-agent'); +var debug = __webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")('proxy-agent'); var getProxyForUrl = (__webpack_require__(/*! proxy-from-env */ "../../../.yarn/berry/cache/proxy-from-env-npm-1.1.0-c13d07f26b-9.zip/node_modules/proxy-from-env/index.js").getProxyForUrl); var http = __webpack_require__(/*! http */ "http"); @@ -33266,7 +33266,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true })); const dns_1 = __importDefault(__webpack_require__(/*! dns */ "dns")); const tls_1 = __importDefault(__webpack_require__(/*! tls */ "tls")); const url_1 = __importDefault(__webpack_require__(/*! url */ "url")); -const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); +const debug_1 = __importDefault(__webpack_require__(/*! debug */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js")); const agent_base_1 = __webpack_require__(/*! agent-base */ "../../../.yarn/berry/cache/agent-base-npm-6.0.2-428f325a93-9.zip/node_modules/agent-base/dist/src/index.js"); const socks_1 = __webpack_require__(/*! socks */ "../../../.yarn/berry/cache/socks-npm-2.7.0-cc1cb019db-9.zip/node_modules/socks/build/index.js"); const debug = debug_1.default('socks-proxy-agent'); @@ -40301,9 +40301,9 @@ try { /***/ }), -/***/ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js": +/***/ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js": /*!*******************************************************************************************************************************************!*\ - !*** ./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js ***! + !*** ./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js ***! \*******************************************************************************************************************************************/ /***/ ((module, exports, __webpack_require__) => { @@ -40561,7 +40561,7 @@ function localstorage() { } } -module.exports = __webpack_require__(/*! ./common */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js")(exports); +module.exports = __webpack_require__(/*! ./common */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js")(exports); const {formatters} = module.exports; @@ -40580,9 +40580,9 @@ formatters.j = function (v) { /***/ }), -/***/ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js": +/***/ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js": /*!******************************************************************************************************************************************!*\ - !*** ./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js ***! + !*** ./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js ***! \******************************************************************************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { @@ -40864,9 +40864,9 @@ module.exports = setup; /***/ }), -/***/ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js": +/***/ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js": /*!*****************************************************************************************************************************************!*\ - !*** ./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js ***! + !*** ./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/index.js ***! \*****************************************************************************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { @@ -40876,17 +40876,17 @@ module.exports = setup; */ if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { - module.exports = __webpack_require__(/*! ./browser.js */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js"); + module.exports = __webpack_require__(/*! ./browser.js */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/browser.js"); } else { - module.exports = __webpack_require__(/*! ./node.js */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js"); + module.exports = __webpack_require__(/*! ./node.js */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js"); } /***/ }), -/***/ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js": +/***/ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js": /*!****************************************************************************************************************************************!*\ - !*** ./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js ***! + !*** ./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/node.js ***! \****************************************************************************************************************************************/ /***/ ((module, exports, __webpack_require__) => { @@ -41129,7 +41129,7 @@ function init(debug) { } } -module.exports = __webpack_require__(/*! ./common */ "./.yarn/__virtual__/debug-virtual-3720c848e9/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js")(exports); +module.exports = __webpack_require__(/*! ./common */ "./.yarn/__virtual__/debug-virtual-450dae1bfe/4/.yarn/berry/cache/debug-npm-4.3.4-4513954577-9.zip/node_modules/debug/src/common.js")(exports); const {formatters} = module.exports; diff --git a/deps/corepack/package.json b/deps/corepack/package.json index 0068518ffb348fe..bf8806ae9374f66 100644 --- a/deps/corepack/package.json +++ b/deps/corepack/package.json @@ -1,6 +1,6 @@ { "name": "corepack", - "version": "0.12.2", + "version": "0.14.0", "homepage": "https://github.com/nodejs/corepack#readme", "bugs": { "url": "https://github.com/nodejs/corepack/issues" @@ -10,13 +10,13 @@ "url": "https://github.com/nodejs/corepack.git" }, "license": "MIT", - "packageManager": "yarn@4.0.0-rc.14+sha224.d3bee29dce07417588d640327d44f1e0b8182c240bc2beb0b81ccf6e", + "packageManager": "yarn@4.0.0-rc.15+sha224.7fa5c1d1875b041cea8fcbf9a364667e398825364bf5c5c8cd5f6601", "devDependencies": { "@babel/core": "^7.14.3", "@babel/plugin-transform-modules-commonjs": "^7.14.0", "@babel/preset-typescript": "^7.13.0", "@types/debug": "^4.1.5", - "@types/jest": "^28.0.0", + "@types/jest": "^29.0.0", "@types/node": "^18.0.0", "@types/semver": "^7.1.0", "@types/tar": "^6.0.0", @@ -31,7 +31,7 @@ "debug": "^4.1.1", "eslint": "^8.0.0", "eslint-plugin-arca": "^0.15.0", - "jest": "^28.0.0", + "jest": "^29.0.0", "nock": "^13.0.4", "proxy-agent": "^5.0.0", "semver": "^7.1.3", diff --git a/deps/icu-small/source/data/in/icudt71l.dat.bz2 b/deps/icu-small/source/data/in/icudt71l.dat.bz2 index 60dd19dc5d43425..b08a91229ae4a04 100644 Binary files a/deps/icu-small/source/data/in/icudt71l.dat.bz2 and b/deps/icu-small/source/data/in/icudt71l.dat.bz2 differ diff --git a/deps/llhttp/CMakeLists.txt b/deps/llhttp/CMakeLists.txt index c2342223de7b89c..da0ce17b0cb3c9e 100644 --- a/deps/llhttp/CMakeLists.txt +++ b/deps/llhttp/CMakeLists.txt @@ -1,21 +1,21 @@ cmake_minimum_required(VERSION 3.5.1) cmake_policy(SET CMP0069 NEW) -project(llhttp VERSION 6.0.5) +project(llhttp VERSION ) include(GNUInstallDirs) set(CMAKE_C_STANDARD 99) # By default build in relwithdebinfo type, supports both lowercase and uppercase if(NOT CMAKE_CONFIGURATION_TYPES) - set(allowableBuileTypes DEBUG RELEASE RELWITHDEBINFO MINSIZEREL) - set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "${allowableBuileTypes}") + set(allowableBuildTypes DEBUG RELEASE RELWITHDEBINFO MINSIZEREL) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "${allowableBuildTypes}") if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE RELWITHDEBINFO CACHE STRING "" FORCE) else() string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE) - if(NOT CMAKE_BUILD_TYPE IN_LIST allowableBuileTypes) - message(FATEL_ERROR "Invalid build type: ${CMAKE_BUILD_TYPE}") + if(NOT CMAKE_BUILD_TYPE IN_LIST allowableBuildTypes) + message(FATAL_ERROR "Invalid build type: ${CMAKE_BUILD_TYPE}") endif() endif() endif() diff --git a/deps/llhttp/README.md b/deps/llhttp/README.md index fb31ce2cfc610e4..05c2aa681ff5158 100644 --- a/deps/llhttp/README.md +++ b/deps/llhttp/README.md @@ -107,6 +107,7 @@ make * Python: [pallas/pyllhttp][8] * Ruby: [metabahn/llhttp][9] +* Rust: [JackLiar/rust-llhttp][10] ### Using with CMake @@ -114,7 +115,7 @@ If you want to use this library in a CMake project you can use the snippet below ``` FetchContent_Declare(llhttp - URL "https://github.com/nodejs/llhttp/releases/download/v6.0.5/llhttp-release-v6.0.5.tar.gz") # Using version 6.0.5 + URL "https://github.com/nodejs/llhttp/archive/refs/tags/v6.0.5.tar.gz") # Using version 6.0.5 FetchContent_MakeAvailable(llhttp) @@ -178,3 +179,4 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. [7]: https://github.com/nodejs/node [8]: https://github.com/pallas/pyllhttp [9]: https://github.com/metabahn/llhttp +[10]: https://github.com/JackLiar/rust-llhttp diff --git a/deps/llhttp/include/llhttp.h b/deps/llhttp/include/llhttp.h index c9f1251ca4da0e7..4d5312e7aafb425 100644 --- a/deps/llhttp/include/llhttp.h +++ b/deps/llhttp/include/llhttp.h @@ -3,7 +3,7 @@ #define LLHTTP_VERSION_MAJOR 6 #define LLHTTP_VERSION_MINOR 0 -#define LLHTTP_VERSION_PATCH 7 +#define LLHTTP_VERSION_PATCH 9 #ifndef LLHTTP_STRICT_MODE # define LLHTTP_STRICT_MODE 0 @@ -102,7 +102,8 @@ enum llhttp_lenient_flags { LENIENT_HEADERS = 0x1, LENIENT_CHUNKED_LENGTH = 0x2, LENIENT_KEEP_ALIVE = 0x4, - LENIENT_TRANSFER_ENCODING = 0x8 + LENIENT_TRANSFER_ENCODING = 0x8, + LENIENT_VERSION = 0x10 }; typedef enum llhttp_lenient_flags llhttp_lenient_flags_t; diff --git a/deps/llhttp/src/llhttp.c b/deps/llhttp/src/llhttp.c index 296a1a75ac11120..9a0a35bd33dad03 100644 --- a/deps/llhttp/src/llhttp.c +++ b/deps/llhttp/src/llhttp.c @@ -958,6 +958,27 @@ int llhttp__internal__c_store_http_minor( return 0; } +int llhttp__internal__c_test_lenient_flags_6( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return (state->lenient_flags & 16) == 16; +} + +int llhttp__internal__c_load_http_major( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return state->http_major; +} + +int llhttp__internal__c_load_http_minor( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return state->http_minor; +} + int llhttp__internal__c_update_status_code( llhttp__internal_t* state, const unsigned char* p, @@ -2713,13 +2734,13 @@ static llparse_state_t llhttp__internal__run( switch (match_seq.status) { case kMatchComplete: { p++; - goto s_n_llhttp__internal__n_error_34; + goto s_n_llhttp__internal__n_error_36; } case kMatchPause: { return s_n_llhttp__internal__n_req_pri_upgrade; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_37; } } /* UNREACHABLE */; @@ -2736,7 +2757,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_header_field_start; } default: { - goto s_n_llhttp__internal__n_error_33; + goto s_n_llhttp__internal__n_error_35; } } /* UNREACHABLE */; @@ -2757,7 +2778,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_complete_1; } default: { - goto s_n_llhttp__internal__n_error_33; + goto s_n_llhttp__internal__n_error_35; } } /* UNREACHABLE */; @@ -2820,7 +2841,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_minor; } default: { - goto s_n_llhttp__internal__n_error_36; + goto s_n_llhttp__internal__n_error_40; } } /* UNREACHABLE */; @@ -2837,7 +2858,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_minor; } default: { - goto s_n_llhttp__internal__n_error_37; + goto s_n_llhttp__internal__n_error_41; } } /* UNREACHABLE */; @@ -2900,7 +2921,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_major; } default: { - goto s_n_llhttp__internal__n_error_38; + goto s_n_llhttp__internal__n_error_42; } } /* UNREACHABLE */; @@ -2924,7 +2945,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_1; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_45; } } /* UNREACHABLE */; @@ -2948,7 +2969,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_2; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_45; } } /* UNREACHABLE */; @@ -2972,7 +2993,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_45; } } /* UNREACHABLE */; @@ -3001,7 +3022,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_start_3; } default: { - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_45; } } /* UNREACHABLE */; @@ -3092,7 +3113,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_fragment; } default: { - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } } /* UNREACHABLE */; @@ -3153,7 +3174,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_span_end_stub_query_3; } default: { - goto s_n_llhttp__internal__n_error_43; + goto s_n_llhttp__internal__n_error_47; } } /* UNREACHABLE */; @@ -3191,7 +3212,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_query; } default: { - goto s_n_llhttp__internal__n_error_44; + goto s_n_llhttp__internal__n_error_48; } } /* UNREACHABLE */; @@ -3316,10 +3337,10 @@ static llparse_state_t llhttp__internal__run( } case 8: { p++; - goto s_n_llhttp__internal__n_error_45; + goto s_n_llhttp__internal__n_error_49; } default: { - goto s_n_llhttp__internal__n_error_46; + goto s_n_llhttp__internal__n_error_50; } } /* UNREACHABLE */; @@ -3378,7 +3399,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_server_with_at; } default: { - goto s_n_llhttp__internal__n_error_47; + goto s_n_llhttp__internal__n_error_51; } } /* UNREACHABLE */; @@ -3395,7 +3416,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_server; } default: { - goto s_n_llhttp__internal__n_error_49; + goto s_n_llhttp__internal__n_error_53; } } /* UNREACHABLE */; @@ -3413,7 +3434,7 @@ static llparse_state_t llhttp__internal__run( } case 10: { p++; - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_52; } case 12: { p++; @@ -3421,18 +3442,18 @@ static llparse_state_t llhttp__internal__run( } case 13: { p++; - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_52; } case ' ': { p++; - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_52; } case '/': { p++; goto s_n_llhttp__internal__n_url_schema_delim_1; } default: { - goto s_n_llhttp__internal__n_error_49; + goto s_n_llhttp__internal__n_error_53; } } /* UNREACHABLE */; @@ -3478,7 +3499,7 @@ static llparse_state_t llhttp__internal__run( } case 2: { p++; - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_52; } case 3: { goto s_n_llhttp__internal__n_span_end_stub_schema; @@ -3488,7 +3509,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_50; + goto s_n_llhttp__internal__n_error_54; } } /* UNREACHABLE */; @@ -3524,7 +3545,7 @@ static llparse_state_t llhttp__internal__run( } case 2: { p++; - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_52; } case 3: { goto s_n_llhttp__internal__n_span_start_stub_path_2; @@ -3533,7 +3554,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_51; + goto s_n_llhttp__internal__n_error_55; } } /* UNREACHABLE */; @@ -3631,7 +3652,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_spaces_before_url; } default: { - goto s_n_llhttp__internal__n_error_52; + goto s_n_llhttp__internal__n_error_56; } } /* UNREACHABLE */; @@ -3649,7 +3670,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3674,7 +3695,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3695,7 +3716,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_3; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3720,7 +3741,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_4; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3745,7 +3766,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_6; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3770,7 +3791,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_8; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3788,7 +3809,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3809,7 +3830,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_9; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3830,7 +3851,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_7; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3855,7 +3876,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_12; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3880,7 +3901,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_13; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3901,7 +3922,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_13; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3918,7 +3939,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_11; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3943,7 +3964,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_14; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -3968,7 +3989,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_17; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4010,7 +4031,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_15; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4035,7 +4056,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_18; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4060,7 +4081,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_20; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4085,7 +4106,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_21; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4106,7 +4127,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_21; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4131,7 +4152,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_23; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4156,7 +4177,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_24; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4181,7 +4202,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_26; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4206,7 +4227,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_28; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4224,7 +4245,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4245,7 +4266,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_29; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4266,7 +4287,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_27; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4291,7 +4312,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_30; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4320,7 +4341,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_30; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4345,7 +4366,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_31; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4370,7 +4391,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_32; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4395,7 +4416,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_35; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4420,7 +4441,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_36; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4441,7 +4462,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_36; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4466,7 +4487,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_37; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4491,7 +4512,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_38; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4516,7 +4537,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_42; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4541,7 +4562,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_43; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4562,7 +4583,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_43; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4579,7 +4600,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_41; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4601,7 +4622,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_40; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4626,7 +4647,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_45; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4648,7 +4669,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4681,7 +4702,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_44; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4706,7 +4727,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_48; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4731,7 +4752,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_49; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4756,7 +4777,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_50; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4781,7 +4802,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_51; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4810,7 +4831,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_51; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4827,7 +4848,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_47; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4852,7 +4873,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_54; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4870,7 +4891,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4895,7 +4916,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_57; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4916,7 +4937,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_57; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4937,7 +4958,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_55; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4962,7 +4983,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_58; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -4987,7 +5008,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_59; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5012,7 +5033,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_59; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5037,7 +5058,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_61; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5062,7 +5083,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_62; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5083,7 +5104,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_62; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5108,7 +5129,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_65; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5133,7 +5154,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_67; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5158,7 +5179,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_68; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5179,7 +5200,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_68; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5204,7 +5225,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_69; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5229,7 +5250,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_69; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5246,7 +5267,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_64; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5323,7 +5344,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_63; } default: { - goto s_n_llhttp__internal__n_error_61; + goto s_n_llhttp__internal__n_error_69; } } /* UNREACHABLE */; @@ -5349,7 +5370,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_llhttp__on_status_complete; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_60; } } /* UNREACHABLE */; @@ -5424,7 +5445,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_res_status_start; } default: { - goto s_n_llhttp__internal__n_error_55; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -5504,7 +5525,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_update_status_code; } default: { - goto s_n_llhttp__internal__n_error_56; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -5567,7 +5588,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_minor_1; } default: { - goto s_n_llhttp__internal__n_error_57; + goto s_n_llhttp__internal__n_error_65; } } /* UNREACHABLE */; @@ -5584,7 +5605,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_res_http_minor; } default: { - goto s_n_llhttp__internal__n_error_58; + goto s_n_llhttp__internal__n_error_66; } } /* UNREACHABLE */; @@ -5647,7 +5668,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_major_1; } default: { - goto s_n_llhttp__internal__n_error_59; + goto s_n_llhttp__internal__n_error_67; } } /* UNREACHABLE */; @@ -5671,7 +5692,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_res; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_62; + goto s_n_llhttp__internal__n_error_70; } } /* UNREACHABLE */; @@ -5696,7 +5717,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_or_res_method_2; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_68; } } /* UNREACHABLE */; @@ -5720,7 +5741,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_or_res_method_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_68; } } /* UNREACHABLE */; @@ -5741,7 +5762,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_or_res_method_3; } default: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_68; } } /* UNREACHABLE */; @@ -5758,7 +5779,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_or_res_method_1; } default: { - goto s_n_llhttp__internal__n_error_60; + goto s_n_llhttp__internal__n_error_68; } } /* UNREACHABLE */; @@ -5827,7 +5848,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_48: { + s_n_llhttp__internal__n_error_52: { state->error = 0x7; state->reason = "Invalid characters in url"; state->error_pos = (const char*) p; @@ -7005,7 +7026,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_34: { + s_n_llhttp__internal__n_error_36: { state->error = 0x17; state->reason = "Pause on PRI/Upgrade"; state->error_pos = (const char*) p; @@ -7014,7 +7035,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_35: { + s_n_llhttp__internal__n_error_37: { state->error = 0x9; state->reason = "Expected HTTP/2 Connection Preface"; state->error_pos = (const char*) p; @@ -7023,7 +7044,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_33: { + s_n_llhttp__internal__n_error_35: { state->error = 0x9; state->reason = "Expected CRLF after version"; state->error_pos = (const char*) p; @@ -7042,15 +7063,107 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } + s_n_llhttp__internal__n_error_34: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 9: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_34; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_38: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_1: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_method_1; + case 1: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_38; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_39: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_2: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_39; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_33: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_major: { + switch (llhttp__internal__c_load_http_major(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_http_minor; + case 1: + goto s_n_llhttp__internal__n_invoke_load_http_minor_1; + case 2: + goto s_n_llhttp__internal__n_invoke_load_http_minor_2; + default: + goto s_n_llhttp__internal__n_error_33; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_test_lenient_flags_6: { + switch (llhttp__internal__c_test_lenient_flags_6(state, p, endp)) { + case 1: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_invoke_load_http_major; + } + /* UNREACHABLE */; + abort(); + } s_n_llhttp__internal__n_invoke_store_http_minor: { switch (llhttp__internal__c_store_http_minor(state, p, endp, match)) { default: - goto s_n_llhttp__internal__n_invoke_load_method_1; + goto s_n_llhttp__internal__n_invoke_test_lenient_flags_6; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_36: { + s_n_llhttp__internal__n_error_40: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -7059,7 +7172,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_37: { + s_n_llhttp__internal__n_error_41: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -7076,7 +7189,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_38: { + s_n_llhttp__internal__n_error_42: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -7172,7 +7285,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_41: { + s_n_llhttp__internal__n_error_45: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -7181,7 +7294,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_39: { + s_n_llhttp__internal__n_error_43: { state->error = 0x8; state->reason = "Expected SOURCE method for ICE/x.x request"; state->error_pos = (const char*) p; @@ -7195,12 +7308,12 @@ static llparse_state_t llhttp__internal__run( case 33: goto s_n_llhttp__internal__n_req_http_major; default: - goto s_n_llhttp__internal__n_error_39; + goto s_n_llhttp__internal__n_error_43; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_40: { + s_n_llhttp__internal__n_error_44: { state->error = 0x8; state->reason = "Invalid method for RTSP/x.x request"; state->error_pos = (const char*) p; @@ -7240,7 +7353,7 @@ static llparse_state_t llhttp__internal__run( case 45: goto s_n_llhttp__internal__n_req_http_major; default: - goto s_n_llhttp__internal__n_error_40; + goto s_n_llhttp__internal__n_error_44; } /* UNREACHABLE */; abort(); @@ -7321,7 +7434,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_42: { + s_n_llhttp__internal__n_error_46: { state->error = 0x7; state->reason = "Invalid char in url fragment start"; state->error_pos = (const char*) p; @@ -7381,7 +7494,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_43: { + s_n_llhttp__internal__n_error_47: { state->error = 0x7; state->reason = "Invalid char in url query"; state->error_pos = (const char*) p; @@ -7390,7 +7503,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_44: { + s_n_llhttp__internal__n_error_48: { state->error = 0x7; state->reason = "Invalid char in url path"; state->error_pos = (const char*) p; @@ -7501,7 +7614,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_45: { + s_n_llhttp__internal__n_error_49: { state->error = 0x7; state->reason = "Double @ in url"; state->error_pos = (const char*) p; @@ -7510,7 +7623,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_46: { + s_n_llhttp__internal__n_error_50: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -7519,7 +7632,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_47: { + s_n_llhttp__internal__n_error_51: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -7528,7 +7641,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_49: { + s_n_llhttp__internal__n_error_53: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -7537,7 +7650,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_50: { + s_n_llhttp__internal__n_error_54: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -7546,7 +7659,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_51: { + s_n_llhttp__internal__n_error_55: { state->error = 0x7; state->reason = "Unexpected start char in url"; state->error_pos = (const char*) p; @@ -7565,7 +7678,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_52: { + s_n_llhttp__internal__n_error_56: { state->error = 0x6; state->reason = "Expected space after method"; state->error_pos = (const char*) p; @@ -7582,7 +7695,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_61: { + s_n_llhttp__internal__n_error_69: { state->error = 0x6; state->reason = "Invalid method encountered"; state->error_pos = (const char*) p; @@ -7591,7 +7704,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_53: { + s_n_llhttp__internal__n_error_59: { state->error = 0xd; state->reason = "Response overflow"; state->error_pos = (const char*) p; @@ -7603,14 +7716,14 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_mul_add_status_code: { switch (llhttp__internal__c_mul_add_status_code(state, p, endp, match)) { case 1: - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_59; default: goto s_n_llhttp__internal__n_res_status_code; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_54: { + s_n_llhttp__internal__n_error_60: { state->error = 0x2; state->reason = "Expected LF after CR"; state->error_pos = (const char*) p; @@ -7655,7 +7768,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_55: { + s_n_llhttp__internal__n_error_61: { state->error = 0xd; state->reason = "Invalid response status"; state->error_pos = (const char*) p; @@ -7672,7 +7785,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_56: { + s_n_llhttp__internal__n_error_62: { state->error = 0x9; state->reason = "Expected space after version"; state->error_pos = (const char*) p; @@ -7681,15 +7794,107 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_invoke_store_http_minor_1: { - switch (llhttp__internal__c_store_http_minor(state, p, endp, match)) { + s_n_llhttp__internal__n_error_58: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_3: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 9: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_error_58; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_63: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_4: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_res_http_end; + case 1: + goto s_n_llhttp__internal__n_res_http_end; default: + goto s_n_llhttp__internal__n_error_63; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_64: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_5: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_error_64; } /* UNREACHABLE */; abort(); } s_n_llhttp__internal__n_error_57: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_major_1: { + switch (llhttp__internal__c_load_http_major(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_http_minor_3; + case 1: + goto s_n_llhttp__internal__n_invoke_load_http_minor_4; + case 2: + goto s_n_llhttp__internal__n_invoke_load_http_minor_5; + default: + goto s_n_llhttp__internal__n_error_57; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_test_lenient_flags_7: { + switch (llhttp__internal__c_test_lenient_flags_6(state, p, endp)) { + case 1: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_invoke_load_http_major_1; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_store_http_minor_1: { + switch (llhttp__internal__c_store_http_minor(state, p, endp, match)) { + default: + goto s_n_llhttp__internal__n_invoke_test_lenient_flags_7; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_65: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -7698,7 +7903,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_58: { + s_n_llhttp__internal__n_error_66: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -7715,7 +7920,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_59: { + s_n_llhttp__internal__n_error_67: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -7724,7 +7929,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_62: { + s_n_llhttp__internal__n_error_70: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -7749,7 +7954,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_60: { + s_n_llhttp__internal__n_error_68: { state->error = 0x8; state->reason = "Invalid word encountered"; state->error_pos = (const char*) p; @@ -8810,6 +9015,27 @@ int llhttp__internal__c_store_http_minor( return 0; } +int llhttp__internal__c_test_lenient_flags_6( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return (state->lenient_flags & 16) == 16; +} + +int llhttp__internal__c_load_http_major( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return state->http_major; +} + +int llhttp__internal__c_load_http_minor( + llhttp__internal_t* state, + const unsigned char* p, + const unsigned char* endp) { + return state->http_minor; +} + int llhttp__internal__c_update_status_code( llhttp__internal_t* state, const unsigned char* p, @@ -10477,13 +10703,13 @@ static llparse_state_t llhttp__internal__run( switch (match_seq.status) { case kMatchComplete: { p++; - goto s_n_llhttp__internal__n_error_28; + goto s_n_llhttp__internal__n_error_30; } case kMatchPause: { return s_n_llhttp__internal__n_req_pri_upgrade; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_29; + goto s_n_llhttp__internal__n_error_31; } } /* UNREACHABLE */; @@ -10500,7 +10726,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_header_field_start; } default: { - goto s_n_llhttp__internal__n_error_27; + goto s_n_llhttp__internal__n_error_29; } } /* UNREACHABLE */; @@ -10521,7 +10747,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_complete_1; } default: { - goto s_n_llhttp__internal__n_error_27; + goto s_n_llhttp__internal__n_error_29; } } /* UNREACHABLE */; @@ -10584,7 +10810,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_minor; } default: { - goto s_n_llhttp__internal__n_error_30; + goto s_n_llhttp__internal__n_error_34; } } /* UNREACHABLE */; @@ -10601,7 +10827,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_minor; } default: { - goto s_n_llhttp__internal__n_error_31; + goto s_n_llhttp__internal__n_error_35; } } /* UNREACHABLE */; @@ -10664,7 +10890,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_major; } default: { - goto s_n_llhttp__internal__n_error_32; + goto s_n_llhttp__internal__n_error_36; } } /* UNREACHABLE */; @@ -10688,7 +10914,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_1; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_39; } } /* UNREACHABLE */; @@ -10712,7 +10938,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_2; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_39; } } /* UNREACHABLE */; @@ -10736,7 +10962,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_http_start_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_39; } } /* UNREACHABLE */; @@ -10765,7 +10991,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_http_start_3; } default: { - goto s_n_llhttp__internal__n_error_35; + goto s_n_llhttp__internal__n_error_39; } } /* UNREACHABLE */; @@ -10819,7 +11045,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_span_end_llhttp__on_url_8; } default: { - goto s_n_llhttp__internal__n_error_36; + goto s_n_llhttp__internal__n_error_40; } } /* UNREACHABLE */; @@ -10876,7 +11102,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_span_end_stub_query_3; } default: { - goto s_n_llhttp__internal__n_error_37; + goto s_n_llhttp__internal__n_error_41; } } /* UNREACHABLE */; @@ -10906,7 +11132,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_query; } default: { - goto s_n_llhttp__internal__n_error_38; + goto s_n_llhttp__internal__n_error_42; } } /* UNREACHABLE */; @@ -11047,10 +11273,10 @@ static llparse_state_t llhttp__internal__run( } case 7: { p++; - goto s_n_llhttp__internal__n_error_39; + goto s_n_llhttp__internal__n_error_43; } default: { - goto s_n_llhttp__internal__n_error_40; + goto s_n_llhttp__internal__n_error_44; } } /* UNREACHABLE */; @@ -11105,7 +11331,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_server_with_at; } default: { - goto s_n_llhttp__internal__n_error_41; + goto s_n_llhttp__internal__n_error_45; } } /* UNREACHABLE */; @@ -11122,7 +11348,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_server; } default: { - goto s_n_llhttp__internal__n_error_43; + goto s_n_llhttp__internal__n_error_47; } } /* UNREACHABLE */; @@ -11136,22 +11362,22 @@ static llparse_state_t llhttp__internal__run( switch (*p) { case 10: { p++; - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } case 13: { p++; - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } case ' ': { p++; - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } case '/': { p++; goto s_n_llhttp__internal__n_url_schema_delim_1; } default: { - goto s_n_llhttp__internal__n_error_43; + goto s_n_llhttp__internal__n_error_47; } } /* UNREACHABLE */; @@ -11193,7 +11419,7 @@ static llparse_state_t llhttp__internal__run( switch (lookup_table[(uint8_t) *p]) { case 1: { p++; - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } case 2: { goto s_n_llhttp__internal__n_span_end_stub_schema; @@ -11203,7 +11429,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_44; + goto s_n_llhttp__internal__n_error_48; } } /* UNREACHABLE */; @@ -11235,7 +11461,7 @@ static llparse_state_t llhttp__internal__run( switch (lookup_table[(uint8_t) *p]) { case 1: { p++; - goto s_n_llhttp__internal__n_error_42; + goto s_n_llhttp__internal__n_error_46; } case 2: { goto s_n_llhttp__internal__n_span_start_stub_path_2; @@ -11244,7 +11470,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_url_schema; } default: { - goto s_n_llhttp__internal__n_error_45; + goto s_n_llhttp__internal__n_error_49; } } /* UNREACHABLE */; @@ -11300,7 +11526,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_spaces_before_url; } default: { - goto s_n_llhttp__internal__n_error_46; + goto s_n_llhttp__internal__n_error_50; } } /* UNREACHABLE */; @@ -11318,7 +11544,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11343,7 +11569,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11364,7 +11590,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_3; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11389,7 +11615,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_4; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11414,7 +11640,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_6; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11439,7 +11665,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_8; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11457,7 +11683,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11478,7 +11704,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_9; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11499,7 +11725,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_7; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11524,7 +11750,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_12; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11549,7 +11775,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_13; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11570,7 +11796,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_13; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11587,7 +11813,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_11; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11612,7 +11838,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_14; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11637,7 +11863,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_17; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11679,7 +11905,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_15; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11704,7 +11930,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_18; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11729,7 +11955,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_20; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11754,7 +11980,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_21; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11775,7 +12001,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_21; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11800,7 +12026,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_23; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11825,7 +12051,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_24; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11850,7 +12076,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_26; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11875,7 +12101,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_28; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11893,7 +12119,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11914,7 +12140,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_29; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11935,7 +12161,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_27; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11960,7 +12186,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_30; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -11989,7 +12215,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_30; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12014,7 +12240,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_31; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12039,7 +12265,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_32; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12064,7 +12290,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_35; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12089,7 +12315,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_36; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12110,7 +12336,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_36; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12135,7 +12361,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_37; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12160,7 +12386,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_38; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12185,7 +12411,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_42; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12210,7 +12436,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_43; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12231,7 +12457,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_43; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12248,7 +12474,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_41; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12270,7 +12496,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_40; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12295,7 +12521,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_45; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12317,7 +12543,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12350,7 +12576,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_44; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12375,7 +12601,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_48; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12400,7 +12626,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_49; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12425,7 +12651,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_50; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12450,7 +12676,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_51; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12479,7 +12705,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_51; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12496,7 +12722,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_47; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12521,7 +12747,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_54; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12539,7 +12765,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_method_1; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12564,7 +12790,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_57; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12585,7 +12811,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_57; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12606,7 +12832,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_55; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12631,7 +12857,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_58; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12656,7 +12882,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_59; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12681,7 +12907,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_59; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12706,7 +12932,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_61; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12731,7 +12957,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_62; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12752,7 +12978,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_62; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12777,7 +13003,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_65; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12802,7 +13028,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_67; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12827,7 +13053,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_68; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12848,7 +13074,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_68; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12873,7 +13099,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_req_69; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12898,7 +13124,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_69; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12915,7 +13141,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_64; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -12992,7 +13218,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_start_req_63; } default: { - goto s_n_llhttp__internal__n_error_54; + goto s_n_llhttp__internal__n_error_62; } } /* UNREACHABLE */; @@ -13086,7 +13312,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_res_status_start; } default: { - goto s_n_llhttp__internal__n_error_48; + goto s_n_llhttp__internal__n_error_54; } } /* UNREACHABLE */; @@ -13166,7 +13392,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_update_status_code; } default: { - goto s_n_llhttp__internal__n_error_49; + goto s_n_llhttp__internal__n_error_55; } } /* UNREACHABLE */; @@ -13229,7 +13455,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_minor_1; } default: { - goto s_n_llhttp__internal__n_error_50; + goto s_n_llhttp__internal__n_error_58; } } /* UNREACHABLE */; @@ -13246,7 +13472,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_res_http_minor; } default: { - goto s_n_llhttp__internal__n_error_51; + goto s_n_llhttp__internal__n_error_59; } } /* UNREACHABLE */; @@ -13309,7 +13535,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_invoke_store_http_major_1; } default: { - goto s_n_llhttp__internal__n_error_52; + goto s_n_llhttp__internal__n_error_60; } } /* UNREACHABLE */; @@ -13333,7 +13559,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_start_res; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_55; + goto s_n_llhttp__internal__n_error_63; } } /* UNREACHABLE */; @@ -13358,7 +13584,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_or_res_method_2; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -13382,7 +13608,7 @@ static llparse_state_t llhttp__internal__run( return s_n_llhttp__internal__n_req_or_res_method_3; } case kMatchMismatch: { - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -13403,7 +13629,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_or_res_method_3; } default: { - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -13420,7 +13646,7 @@ static llparse_state_t llhttp__internal__run( goto s_n_llhttp__internal__n_req_or_res_method_1; } default: { - goto s_n_llhttp__internal__n_error_53; + goto s_n_llhttp__internal__n_error_61; } } /* UNREACHABLE */; @@ -13480,7 +13706,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */ abort(); } - s_n_llhttp__internal__n_error_42: { + s_n_llhttp__internal__n_error_46: { state->error = 0x7; state->reason = "Invalid characters in url"; state->error_pos = (const char*) p; @@ -14613,7 +14839,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_28: { + s_n_llhttp__internal__n_error_30: { state->error = 0x17; state->reason = "Pause on PRI/Upgrade"; state->error_pos = (const char*) p; @@ -14622,7 +14848,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_29: { + s_n_llhttp__internal__n_error_31: { state->error = 0x9; state->reason = "Expected HTTP/2 Connection Preface"; state->error_pos = (const char*) p; @@ -14631,7 +14857,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_27: { + s_n_llhttp__internal__n_error_29: { state->error = 0x9; state->reason = "Expected CRLF after version"; state->error_pos = (const char*) p; @@ -14650,15 +14876,107 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } + s_n_llhttp__internal__n_error_28: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 9: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_28; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_32: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_1: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_method_1; + case 1: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_32; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_33: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_2: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_error_33; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_27: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_major: { + switch (llhttp__internal__c_load_http_major(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_http_minor; + case 1: + goto s_n_llhttp__internal__n_invoke_load_http_minor_1; + case 2: + goto s_n_llhttp__internal__n_invoke_load_http_minor_2; + default: + goto s_n_llhttp__internal__n_error_27; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_test_lenient_flags_6: { + switch (llhttp__internal__c_test_lenient_flags_6(state, p, endp)) { + case 1: + goto s_n_llhttp__internal__n_invoke_load_method_1; + default: + goto s_n_llhttp__internal__n_invoke_load_http_major; + } + /* UNREACHABLE */; + abort(); + } s_n_llhttp__internal__n_invoke_store_http_minor: { switch (llhttp__internal__c_store_http_minor(state, p, endp, match)) { default: - goto s_n_llhttp__internal__n_invoke_load_method_1; + goto s_n_llhttp__internal__n_invoke_test_lenient_flags_6; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_30: { + s_n_llhttp__internal__n_error_34: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -14667,7 +14985,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_31: { + s_n_llhttp__internal__n_error_35: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -14684,7 +15002,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_32: { + s_n_llhttp__internal__n_error_36: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -14780,7 +15098,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_35: { + s_n_llhttp__internal__n_error_39: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -14789,7 +15107,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_33: { + s_n_llhttp__internal__n_error_37: { state->error = 0x8; state->reason = "Expected SOURCE method for ICE/x.x request"; state->error_pos = (const char*) p; @@ -14803,12 +15121,12 @@ static llparse_state_t llhttp__internal__run( case 33: goto s_n_llhttp__internal__n_req_http_major; default: - goto s_n_llhttp__internal__n_error_33; + goto s_n_llhttp__internal__n_error_37; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_34: { + s_n_llhttp__internal__n_error_38: { state->error = 0x8; state->reason = "Invalid method for RTSP/x.x request"; state->error_pos = (const char*) p; @@ -14848,7 +15166,7 @@ static llparse_state_t llhttp__internal__run( case 45: goto s_n_llhttp__internal__n_req_http_major; default: - goto s_n_llhttp__internal__n_error_34; + goto s_n_llhttp__internal__n_error_38; } /* UNREACHABLE */; abort(); @@ -14929,7 +15247,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_36: { + s_n_llhttp__internal__n_error_40: { state->error = 0x7; state->reason = "Invalid char in url fragment start"; state->error_pos = (const char*) p; @@ -14989,7 +15307,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_37: { + s_n_llhttp__internal__n_error_41: { state->error = 0x7; state->reason = "Invalid char in url query"; state->error_pos = (const char*) p; @@ -14998,7 +15316,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_38: { + s_n_llhttp__internal__n_error_42: { state->error = 0x7; state->reason = "Invalid char in url path"; state->error_pos = (const char*) p; @@ -15109,7 +15427,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_39: { + s_n_llhttp__internal__n_error_43: { state->error = 0x7; state->reason = "Double @ in url"; state->error_pos = (const char*) p; @@ -15118,7 +15436,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_40: { + s_n_llhttp__internal__n_error_44: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -15127,7 +15445,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_41: { + s_n_llhttp__internal__n_error_45: { state->error = 0x7; state->reason = "Unexpected char in url server"; state->error_pos = (const char*) p; @@ -15136,7 +15454,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_43: { + s_n_llhttp__internal__n_error_47: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -15145,7 +15463,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_44: { + s_n_llhttp__internal__n_error_48: { state->error = 0x7; state->reason = "Unexpected char in url schema"; state->error_pos = (const char*) p; @@ -15154,7 +15472,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_45: { + s_n_llhttp__internal__n_error_49: { state->error = 0x7; state->reason = "Unexpected start char in url"; state->error_pos = (const char*) p; @@ -15173,7 +15491,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_46: { + s_n_llhttp__internal__n_error_50: { state->error = 0x6; state->reason = "Expected space after method"; state->error_pos = (const char*) p; @@ -15190,7 +15508,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_54: { + s_n_llhttp__internal__n_error_62: { state->error = 0x6; state->reason = "Invalid method encountered"; state->error_pos = (const char*) p; @@ -15199,7 +15517,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_47: { + s_n_llhttp__internal__n_error_53: { state->error = 0xd; state->reason = "Response overflow"; state->error_pos = (const char*) p; @@ -15211,7 +15529,7 @@ static llparse_state_t llhttp__internal__run( s_n_llhttp__internal__n_invoke_mul_add_status_code: { switch (llhttp__internal__c_mul_add_status_code(state, p, endp, match)) { case 1: - goto s_n_llhttp__internal__n_error_47; + goto s_n_llhttp__internal__n_error_53; default: goto s_n_llhttp__internal__n_res_status_code; } @@ -15254,7 +15572,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_48: { + s_n_llhttp__internal__n_error_54: { state->error = 0xd; state->reason = "Invalid response status"; state->error_pos = (const char*) p; @@ -15271,7 +15589,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_49: { + s_n_llhttp__internal__n_error_55: { state->error = 0x9; state->reason = "Expected space after version"; state->error_pos = (const char*) p; @@ -15280,15 +15598,107 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } + s_n_llhttp__internal__n_error_52: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_3: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 9: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_error_52; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_56: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_4: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_res_http_end; + case 1: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_error_56; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_57: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_minor_5: { + switch (llhttp__internal__c_load_http_minor(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_error_57; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_error_51: { + state->error = 0x9; + state->reason = "Invalid HTTP version"; + state->error_pos = (const char*) p; + state->_current = (void*) (intptr_t) s_error; + return s_error; + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_load_http_major_1: { + switch (llhttp__internal__c_load_http_major(state, p, endp)) { + case 0: + goto s_n_llhttp__internal__n_invoke_load_http_minor_3; + case 1: + goto s_n_llhttp__internal__n_invoke_load_http_minor_4; + case 2: + goto s_n_llhttp__internal__n_invoke_load_http_minor_5; + default: + goto s_n_llhttp__internal__n_error_51; + } + /* UNREACHABLE */; + abort(); + } + s_n_llhttp__internal__n_invoke_test_lenient_flags_7: { + switch (llhttp__internal__c_test_lenient_flags_6(state, p, endp)) { + case 1: + goto s_n_llhttp__internal__n_res_http_end; + default: + goto s_n_llhttp__internal__n_invoke_load_http_major_1; + } + /* UNREACHABLE */; + abort(); + } s_n_llhttp__internal__n_invoke_store_http_minor_1: { switch (llhttp__internal__c_store_http_minor(state, p, endp, match)) { default: - goto s_n_llhttp__internal__n_res_http_end; + goto s_n_llhttp__internal__n_invoke_test_lenient_flags_7; } /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_50: { + s_n_llhttp__internal__n_error_58: { state->error = 0x9; state->reason = "Invalid minor version"; state->error_pos = (const char*) p; @@ -15297,7 +15707,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_51: { + s_n_llhttp__internal__n_error_59: { state->error = 0x9; state->reason = "Expected dot"; state->error_pos = (const char*) p; @@ -15314,7 +15724,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_52: { + s_n_llhttp__internal__n_error_60: { state->error = 0x9; state->reason = "Invalid major version"; state->error_pos = (const char*) p; @@ -15323,7 +15733,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_55: { + s_n_llhttp__internal__n_error_63: { state->error = 0x8; state->reason = "Expected HTTP/"; state->error_pos = (const char*) p; @@ -15348,7 +15758,7 @@ static llparse_state_t llhttp__internal__run( /* UNREACHABLE */; abort(); } - s_n_llhttp__internal__n_error_53: { + s_n_llhttp__internal__n_error_61: { state->error = 0x8; state->reason = "Invalid word encountered"; state->error_pos = (const char*) p; diff --git a/deps/npm/docs/content/commands/npm-access.md b/deps/npm/docs/content/commands/npm-access.md index 162e94f1fec029e..f7a98af65471421 100644 --- a/deps/npm/docs/content/commands/npm-access.md +++ b/deps/npm/docs/content/commands/npm-access.md @@ -35,29 +35,28 @@ For all of the subcommands, `npm access` will perform actions on the packages in the current working directory if no package name is passed to the subcommand. -* public / restricted: +* public / restricted (deprecated): Set a package to be either publicly accessible or restricted. -* grant / revoke: +* grant / revoke (deprecated): Add or remove the ability of users and teams to have read-only or read-write access to a package. -* 2fa-required / 2fa-not-required: +* 2fa-required / 2fa-not-required (deprecated): Configure whether a package requires that anyone publishing it have two-factor authentication enabled on their account. -* ls-packages: +* ls-packages (deprecated): Show all of the packages a user or a team is able to access, along with the access level, except for read-only public packages (it won't print the whole registry listing) -* ls-collaborators: +* ls-collaborators (deprecated): Show all of the access privileges for a package. Will only show permissions for packages to which you have at least read access. If `` is passed in, the list is filtered only to teams _that_ user happens to belong to. -* edit: - Set the access privileges for a package at once using `$EDITOR`. +* edit (not implemented) ### Details diff --git a/deps/npm/docs/content/commands/npm-query.md b/deps/npm/docs/content/commands/npm-query.md index 6166d5c0e716652..3c35e9ab4271cf9 100644 --- a/deps/npm/docs/content/commands/npm-query.md +++ b/deps/npm/docs/content/commands/npm-query.md @@ -232,4 +232,4 @@ This value is not exported to the environment for child processes. ## See Also -* [dependency selector](/using-npm/dependency-selector) +* [dependency selectors](/using-npm/dependency-selectors) diff --git a/deps/npm/docs/content/configuring-npm/npmrc.md b/deps/npm/docs/content/configuring-npm/npmrc.md index 83310ffa9c7f219..d252f09b81a680e 100644 --- a/deps/npm/docs/content/configuring-npm/npmrc.md +++ b/deps/npm/docs/content/configuring-npm/npmrc.md @@ -91,6 +91,34 @@ consistent across updates. Set fields in here using the `./configure` script that comes with npm. This is primarily for distribution maintainers to override default configs in a standard and consistent manner. +### Auth related configuration + +The settings `_auth`, `_authToken`, `username` and `_password` must all be +scoped to a specific registry. This ensures that `npm` will never send +credentials to the wrong host. + +In order to scope these values, they must be prefixed by a URI fragment. +If the credential is meant for any request to a registry on a single host, +the scope may look like `//registry.npmjs.org/:`. If it must be scoped to a +specific path on the host that path may also be provided, such as +`//my-custom-registry.org/unique/path:`. + +``` +; bad config +_authToken=MYTOKEN + +; good config +@myorg:registry=https://somewhere-else.com/myorg +@another:registry=https://somewhere-else.com/another +//registry.npmjs.org/:_authToken=MYTOKEN +; would apply to both @myorg and @another +; //somewhere-else.com/:_authToken=MYTOKEN +; would apply only to @myorg +//somewhere-else.com/myorg/:_authToken=MYTOKEN1 +; would apply only to @another +//somewhere-else.com/another/:_authToken=MYTOKEN2 +``` + ### See also * [npm folders](/configuring-npm/folders) diff --git a/deps/npm/docs/content/configuring-npm/package-json.md b/deps/npm/docs/content/configuring-npm/package-json.md index b0231662f693094..5b4acf187f7772c 100644 --- a/deps/npm/docs/content/configuring-npm/package-json.md +++ b/deps/npm/docs/content/configuring-npm/package-json.md @@ -873,7 +873,7 @@ be found or fails to install, then you may put it in the `optionalDependencies` object. This is a map of package name to version or url, just like the `dependencies` object. The difference is that build failures do not cause installation to fail. Running `npm install ---no-optional` will prevent these dependencies from being installed. +--omit=optional` will prevent these dependencies from being installed. It is still your program's responsibility to handle the lack of the dependency. For example, something like this: diff --git a/deps/npm/docs/content/using-npm/dependency-selectors.md b/deps/npm/docs/content/using-npm/dependency-selectors.md index 9d65baf631a7ef8..a9433a537f985ce 100644 --- a/deps/npm/docs/content/using-npm/dependency-selectors.md +++ b/deps/npm/docs/content/using-npm/dependency-selectors.md @@ -54,7 +54,7 @@ The [`npm query`](/commands/npm-query) commmand exposes a new dependency selecto - [`:private`](https://docs.npmjs.com/cli/v8/configuring-npm/package-json#private) when a dependency is private - `:link` when a dependency is linked (for instance, workspaces or packages manually [`linked`](https://docs.npmjs.com/cli/v8/commands/npm-link) - `:deduped` when a dependency has been deduped (note that this does *not* always mean the dependency has been hoisted to the root of node_modules) -- `:override` when a dependency is an override (not implemented yet) +- `:overridden` when a dependency has been overridden - `:extraneous` when a dependency exists but is not defined as a dependency of any node - `:invalid` when a dependency version is out of its ancestors specified range - `:missing` when a dependency is not found on disk @@ -144,7 +144,7 @@ const arb = new Arborist({}) ```js // root-level -arb.loadActual((tree) => { +arb.loadActual().then(async (tree) => { // query all production dependencies const results = await tree.querySelectorAll('.prod') console.log(results) @@ -153,7 +153,7 @@ arb.loadActual((tree) => { ```js // iterative -arb.loadActual((tree) => { +arb.loadActual().then(async (tree) => { // query for the deduped version of react const results = await tree.querySelectorAll('#react:not(:deduped)') // query the deduped react for git deps @@ -165,4 +165,4 @@ arb.loadActual((tree) => { ## See Also * [npm query](/commands/npm-query) -* [@npmcli/arborist](https://npm.im/@npmcli/arborist] +* [@npmcli/arborist](https://npm.im/@npmcli/arborist) diff --git a/deps/npm/docs/output/commands/npm-access.html b/deps/npm/docs/output/commands/npm-access.html index 71eed719dbb9716..57d17abbd8f0fce 100644 --- a/deps/npm/docs/output/commands/npm-access.html +++ b/deps/npm/docs/output/commands/npm-access.html @@ -169,34 +169,33 @@

Description

subcommand.

  • -

    public / restricted: +

    public / restricted (deprecated): Set a package to be either publicly accessible or restricted.

  • -

    grant / revoke: +

    grant / revoke (deprecated): Add or remove the ability of users and teams to have read-only or read-write access to a package.

  • -

    2fa-required / 2fa-not-required: +

    2fa-required / 2fa-not-required (deprecated): Configure whether a package requires that anyone publishing it have two-factor authentication enabled on their account.

  • -

    ls-packages: +

    ls-packages (deprecated): Show all of the packages a user or a team is able to access, along with the access level, except for read-only public packages (it won't print the whole registry listing)

  • -

    ls-collaborators: +

    ls-collaborators (deprecated): Show all of the access privileges for a 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.

  • -

    edit: -Set the access privileges for a package at once using $EDITOR.

    +

    edit (not implemented)

Details

diff --git a/deps/npm/docs/output/commands/npm-ls.html b/deps/npm/docs/output/commands/npm-ls.html index 5641195679cffd3..ffe3861d165a9b3 100644 --- a/deps/npm/docs/output/commands/npm-ls.html +++ b/deps/npm/docs/output/commands/npm-ls.html @@ -166,7 +166,7 @@

Description

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

-
npm@8.16.0 /path/to/npm
+
npm@8.19.1 /path/to/npm
 └─┬ init-package-json@0.0.4
   └── promzard@0.1.5
 
diff --git a/deps/npm/docs/output/commands/npm-query.html b/deps/npm/docs/output/commands/npm-query.html index 1a11fb9e8cd8b3b..d567d2b87314391 100644 --- a/deps/npm/docs/output/commands/npm-query.html +++ b/deps/npm/docs/output/commands/npm-query.html @@ -344,7 +344,7 @@

include-workspace-root

See Also

diff --git a/deps/npm/docs/output/commands/npm.html b/deps/npm/docs/output/commands/npm.html index 8573a6d65caf3c7..0abece728a13da9 100644 --- a/deps/npm/docs/output/commands/npm.html +++ b/deps/npm/docs/output/commands/npm.html @@ -149,7 +149,7 @@

Table of contents

Version

-

8.16.0

+

8.19.1

Description

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

npmrc

Table of contents

- +

Description

@@ -204,6 +204,29 @@

Built-in config file

consistent across updates. Set fields in here using the ./configure script that comes with npm. This is primarily for distribution maintainers to override default configs in a standard and consistent manner.

+ +

The settings _auth, _authToken, username and _password must all be +scoped to a specific registry. This ensures that npm will never send +credentials to the wrong host.

+

In order to scope these values, they must be prefixed by a URI fragment. +If the credential is meant for any request to a registry on a single host, +the scope may look like //registry.npmjs.org/:. If it must be scoped to a +specific path on the host that path may also be provided, such as +//my-custom-registry.org/unique/path:.

+
; bad config
+_authToken=MYTOKEN
+
+; good config
+@myorg:registry=https://somewhere-else.com/myorg
+@another:registry=https://somewhere-else.com/another
+//registry.npmjs.org/:_authToken=MYTOKEN
+; would apply to both @myorg and @another
+; //somewhere-else.com/:_authToken=MYTOKEN
+; would apply only to @myorg
+//somewhere-else.com/myorg/:_authToken=MYTOKEN1
+; would apply only to @another
+//somewhere-else.com/another/:_authToken=MYTOKEN2
+

See also

  • npm folders
  • diff --git a/deps/npm/docs/output/configuring-npm/package-json.html b/deps/npm/docs/output/configuring-npm/package-json.html index 2b1240ebee91242..7fdc03e3eaf5aab 100644 --- a/deps/npm/docs/output/configuring-npm/package-json.html +++ b/deps/npm/docs/output/configuring-npm/package-json.html @@ -803,7 +803,7 @@

    optionalDependencies

    be found or fails to install, then you may put it in the optionalDependencies object. This is a map of package name to version or url, just like the dependencies object. The difference is that build -failures do not cause installation to fail. Running npm install --no-optional will prevent these dependencies from being installed.

    +failures do not cause installation to fail. Running npm install --omit=optional will prevent these dependencies from being installed.

    It is still your program's responsibility to handle the lack of the dependency. For example, something like this:

    try {
    diff --git a/deps/npm/docs/output/using-npm/dependency-selectors.html b/deps/npm/docs/output/using-npm/dependency-selectors.html
    index 7f691cc1df77e25..31ab2bb5b7c326a 100644
    --- a/deps/npm/docs/output/using-npm/dependency-selectors.html
    +++ b/deps/npm/docs/output/using-npm/dependency-selectors.html
    @@ -194,7 +194,7 @@ 

    Pseudo Selectors

  • :private when a dependency is private
  • :link when a dependency is linked (for instance, workspaces or packages manually linked
  • :deduped when a dependency has been deduped (note that this does not always mean the dependency has been hoisted to the root of node_modules)
  • -
  • :override when a dependency is an override (not implemented yet)
  • +
  • :overridden when a dependency has been overridden
  • :extraneous when a dependency exists but is not defined as a dependency of any node
  • :invalid when a dependency version is out of its ancestors specified range
  • :missing when a dependency is not found on disk
  • @@ -264,14 +264,14 @@

    Programmatic Usage

    const arb = new Arborist({})
    // root-level
    -arb.loadActual((tree) => {
    +arb.loadActual().then(async (tree) => {
       // query all production dependencies
       const results = await tree.querySelectorAll('.prod')
       console.log(results)
     })
     
    // iterative
    -arb.loadActual((tree) => {
    +arb.loadActual().then(async (tree) => {
       // query for the deduped version of react
       const results = await tree.querySelectorAll('#react:not(:deduped)')
       // query the deduped react for git deps
    @@ -282,7 +282,7 @@ 

    Programmatic Usage

    See Also

diff --git a/deps/npm/lib/commands/access.js b/deps/npm/lib/commands/access.js index 0a80da8ddd00664..36218615371717c 100644 --- a/deps/npm/lib/commands/access.js +++ b/deps/npm/lib/commands/access.js @@ -5,6 +5,7 @@ const readPackageJson = require('read-package-json-fast') const otplease = require('../utils/otplease.js') const getIdentity = require('../utils/get-identity.js') +const log = require('../utils/log-shim.js') const BaseCommand = require('../base-command.js') const subcommands = [ @@ -19,6 +20,15 @@ const subcommands = [ '2fa-not-required', ] +const deprecated = [ + '2fa-not-required', + '2fa-required', + 'ls-collaborators', + 'ls-packages', + 'public', + 'restricted', +] + class Access extends BaseCommand { static description = 'Set access level on published packages' static name = 'access' @@ -78,6 +88,10 @@ class Access extends BaseCommand { throw this.usageError(`${cmd} is not a recognized subcommand.`) } + if (deprecated.includes(cmd)) { + log.warn('access', `${cmd} subcommand will be removed in the next version of npm`) + } + return this[cmd](args, { ...this.npm.flatOptions, }) @@ -175,7 +189,7 @@ class Access extends BaseCommand { } async edit () { - throw new Error('edit subcommand is not implemented yet') + throw new Error('edit subcommand is not implemented') } modifyPackage (pkg, opts, fn, requireScope = true) { diff --git a/deps/npm/lib/commands/audit.js b/deps/npm/lib/commands/audit.js index 779bc22fc6aaf7d..6ec870f03a8a5cd 100644 --- a/deps/npm/lib/commands/audit.js +++ b/deps/npm/lib/commands/audit.js @@ -178,11 +178,12 @@ class VerifySignatures { let name = edge.name try { name = npa(edge.spec).subSpec.name - } catch (_) { + } catch { + // leave it as edge.name } try { return npa(`${name}@${edge.spec}`) - } catch (_) { + } catch { // Skip packages with invalid spec } } diff --git a/deps/npm/lib/commands/edit.js b/deps/npm/lib/commands/edit.js index 0256f4f3a6f0100..67ac32e01718436 100644 --- a/deps/npm/lib/commands/edit.js +++ b/deps/npm/lib/commands/edit.js @@ -58,11 +58,16 @@ class Edit extends BaseCommand { } const [bin, ...args] = this.npm.config.get('editor').split(/\s+/) const editor = cp.spawn(bin, [...args, dir], { stdio: 'inherit' }) - editor.on('exit', (code) => { + editor.on('exit', async (code) => { if (code) { return reject(new Error(`editor process exited with code: ${code}`)) } - this.npm.exec('rebuild', [dir]).catch(reject).then(resolve) + try { + await this.npm.exec('rebuild', [dir]) + } catch (err) { + reject(err) + } + resolve() }) }) }) diff --git a/deps/npm/lib/commands/exec.js b/deps/npm/lib/commands/exec.js index ddbb5f7cf9d79c2..a77a6326c00f280 100644 --- a/deps/npm/lib/commands/exec.js +++ b/deps/npm/lib/commands/exec.js @@ -34,6 +34,7 @@ class Exec extends BaseCommand { const args = [..._args] const call = this.npm.config.get('call') + let globalPath const { flatOptions, localBin, @@ -44,6 +45,12 @@ class Exec extends BaseCommand { const scriptShell = this.npm.config.get('script-shell') || undefined const packages = this.npm.config.get('package') const yes = this.npm.config.get('yes') + // --prefix sets both of these to the same thing, meaning the global prefix + // is invalid (i.e. no lib/node_modules). This is not a trivial thing to + // untangle and fix so we work around it here. + if (this.npm.localPrefix !== this.npm.globalPrefix) { + globalPath = path.resolve(globalDir, '..') + } if (call && _args.length) { throw this.usageError() @@ -59,7 +66,7 @@ class Exec extends BaseCommand { localBin, locationMsg, globalBin, - globalPath: path.resolve(globalDir, '..'), + globalPath, output, packages, path: localPrefix, diff --git a/deps/npm/lib/commands/explain.js b/deps/npm/lib/commands/explain.js index c0ef04548a4ed3f..a06ad24152a1e41 100644 --- a/deps/npm/lib/commands/explain.js +++ b/deps/npm/lib/commands/explain.js @@ -59,7 +59,7 @@ class Explain extends ArboristWorkspaceCmd { const expls = [] for (const node of nodes) { - const { extraneous, dev, optional, devOptional, peer, inBundle } = node + const { extraneous, dev, optional, devOptional, peer, inBundle, overridden } = node const expl = node.explain() if (extraneous) { expl.extraneous = true @@ -69,6 +69,7 @@ class Explain extends ArboristWorkspaceCmd { expl.devOptional = devOptional expl.peer = peer expl.bundled = inBundle + expl.overridden = overridden } expls.push(expl) } diff --git a/deps/npm/lib/commands/ls.js b/deps/npm/lib/commands/ls.js index 073ca0c6992e834..6812c3923787e2b 100644 --- a/deps/npm/lib/commands/ls.js +++ b/deps/npm/lib/commands/ls.js @@ -329,6 +329,11 @@ const getHumanOutputItem = (node, { args, color, global, long }) => { ? ' ' + (color ? chalk.green.bgBlack('extraneous') : 'extraneous') : '' ) + + ( + node.overridden + ? ' ' + (color ? chalk.gray('overridden') : 'overridden') + : '' + ) + (isGitNode(node) ? ` (${node.resolved})` : '') + (node.isLink ? ` -> ${relativePrefix}${targetLocation}` : '') + (long ? `${EOL}${node.package.description || ''}` : '') @@ -347,6 +352,13 @@ const getJsonOutputItem = (node, { global, long }) => { item.resolved = node.resolved } + // if the node is the project root, do not add the overridden flag. the project root can't be + // overridden anyway, and if we add the flag it causes undesirable behavior when `npm ls --json` + // is ran in an empty directory since we end up printing an object with only an overridden prop + if (!node.isProjectRoot) { + item.overridden = node.overridden + } + item[_name] = node.name // special formatting for top-level package name @@ -555,6 +567,7 @@ const parseableOutput = ({ global, long, seenNodes }) => { out += node.path !== node.realpath ? `:${node.realpath}` : '' out += isExtraneous(node, { global }) ? ':EXTRANEOUS' : '' out += node[_invalid] ? ':INVALID' : '' + out += node.overridden ? ':OVERRIDDEN' : '' } out += EOL } diff --git a/deps/npm/lib/commands/org.js b/deps/npm/lib/commands/org.js index 599b4b9c8758a3b..f49556c8d6a195b 100644 --- a/deps/npm/lib/commands/org.js +++ b/deps/npm/lib/commands/org.js @@ -50,7 +50,7 @@ class Org extends BaseCommand { }) } - set (org, user, role, opts) { + async set (org, user, role, opts) { role = role || 'developer' if (!org) { throw new Error('First argument `orgname` is required.') @@ -67,27 +67,26 @@ class Org extends BaseCommand { ) } - return liborg.set(org, user, role, opts).then(memDeets => { - if (opts.json) { - this.npm.output(JSON.stringify(memDeets, null, 2)) - } else if (opts.parseable) { - this.npm.output(['org', 'orgsize', 'user', 'role'].join('\t')) - this.npm.output( - [memDeets.org.name, memDeets.org.size, memDeets.user, memDeets.role].join('\t') - ) - } else if (!this.npm.silent) { - this.npm.output( - `Added ${memDeets.user} as ${memDeets.role} to ${memDeets.org.name}. You now have ${ + const memDeets = await liborg.set(org, user, role, opts) + if (opts.json) { + this.npm.output(JSON.stringify(memDeets, null, 2)) + } else if (opts.parseable) { + this.npm.output(['org', 'orgsize', 'user', 'role'].join('\t')) + this.npm.output( + [memDeets.org.name, memDeets.org.size, memDeets.user, memDeets.role].join('\t') + ) + } else if (!this.npm.silent) { + this.npm.output( + `Added ${memDeets.user} as ${memDeets.role} to ${memDeets.org.name}. You now have ${ memDeets.org.size } member${memDeets.org.size === 1 ? '' : 's'} in this org.` - ) - } + ) + } - return memDeets - }) + return memDeets } - rm (org, user, opts) { + async rm (org, user, opts) { if (!org) { throw new Error('First argument `orgname` is required.') } @@ -96,68 +95,62 @@ class Org extends BaseCommand { throw new Error('Second argument `username` is required.') } - return liborg - .rm(org, user, opts) - .then(() => { - return liborg.ls(org, opts) - }) - .then(roster => { - user = user.replace(/^[~@]?/, '') - org = org.replace(/^[~@]?/, '') - const userCount = Object.keys(roster).length - if (opts.json) { - this.npm.output( - JSON.stringify({ - user, - org, - userCount, - deleted: true, - }) - ) - } else if (opts.parseable) { - this.npm.output(['user', 'org', 'userCount', 'deleted'].join('\t')) - this.npm.output([user, org, userCount, true].join('\t')) - } else if (!this.npm.silent) { - this.npm.output( - `Successfully removed ${user} from ${org}. You now have ${userCount} member${ - userCount === 1 ? '' : 's' - } in this org.` - ) - } - }) + await liborg.rm(org, user, opts) + const roster = await liborg.ls(org, opts) + user = user.replace(/^[~@]?/, '') + org = org.replace(/^[~@]?/, '') + const userCount = Object.keys(roster).length + if (opts.json) { + this.npm.output( + JSON.stringify({ + user, + org, + userCount, + deleted: true, + }) + ) + } else if (opts.parseable) { + this.npm.output(['user', 'org', 'userCount', 'deleted'].join('\t')) + this.npm.output([user, org, userCount, true].join('\t')) + } else if (!this.npm.silent) { + this.npm.output( + `Successfully removed ${user} from ${org}. You now have ${userCount} member${ + userCount === 1 ? '' : 's' + } in this org.` + ) + } } - ls (org, user, opts) { + async ls (org, user, opts) { if (!org) { throw new Error('First argument `orgname` is required.') } - return liborg.ls(org, opts).then(roster => { - if (user) { - const newRoster = {} - if (roster[user]) { - newRoster[user] = roster[user] - } - - roster = newRoster + let roster = await liborg.ls(org, opts) + if (user) { + const newRoster = {} + if (roster[user]) { + newRoster[user] = roster[user] } - if (opts.json) { - this.npm.output(JSON.stringify(roster, null, 2)) - } else if (opts.parseable) { - this.npm.output(['user', 'role'].join('\t')) - Object.keys(roster).forEach(user => { - this.npm.output([user, roster[user]].join('\t')) + + roster = newRoster + } + if (opts.json) { + this.npm.output(JSON.stringify(roster, null, 2)) + } else if (opts.parseable) { + this.npm.output(['user', 'role'].join('\t')) + Object.keys(roster).forEach(user => { + this.npm.output([user, roster[user]].join('\t')) + }) + } else if (!this.npm.silent) { + const table = new Table({ head: ['user', 'role'] }) + Object.keys(roster) + .sort() + .forEach(user => { + table.push([user, roster[user]]) }) - } else if (!this.npm.silent) { - const table = new Table({ head: ['user', 'role'] }) - Object.keys(roster) - .sort() - .forEach(user => { - table.push([user, roster[user]]) - }) - this.npm.output(table.toString()) - } - }) + this.npm.output(table.toString()) + } } } module.exports = Org diff --git a/deps/npm/lib/commands/outdated.js b/deps/npm/lib/commands/outdated.js index 042b776f71e0d86..9e2060658ed72da 100644 --- a/deps/npm/lib/commands/outdated.js +++ b/deps/npm/lib/commands/outdated.js @@ -196,6 +196,7 @@ class Outdated extends ArboristWorkspaceCmd { try { alias = npa(edge.spec).subSpec } catch (err) { + // ignore errors, no alias } const spec = npa(alias ? alias.name : edge.name) const node = edge.to || edge diff --git a/deps/npm/lib/commands/query.js b/deps/npm/lib/commands/query.js index 371fddef9b44087..231329b19b5c837 100644 --- a/deps/npm/lib/commands/query.js +++ b/deps/npm/lib/commands/query.js @@ -20,6 +20,7 @@ class QuerySelectorItem { this.dev = node.target.dev this.inBundle = node.target.inBundle this.deduped = this.from.length > 1 + this.overridden = node.overridden for (const edge of node.target.edgesIn) { this.from.push(edge.from.location) } @@ -58,6 +59,7 @@ class Query extends BaseCommand { const opts = { ...this.npm.flatOptions, path: where, + forceActual: true, } const arb = new Arborist(opts) const tree = await arb.loadActual(opts) diff --git a/deps/npm/lib/commands/token.js b/deps/npm/lib/commands/token.js index cf3b8cbee53a4c2..de8e61101d8acde 100644 --- a/deps/npm/lib/commands/token.js +++ b/deps/npm/lib/commands/token.js @@ -140,32 +140,27 @@ class Token extends BaseCommand { const cidr = conf.cidr const readonly = conf.readOnly - return readUserInfo - .password() - .then(password => { - const validCIDR = this.validateCIDRList(cidr) - log.info('token', 'creating') - return pulseTillDone.withPromise( - otplease(this.npm, conf, conf => { - return profile.createToken(password, readonly, validCIDR, conf) - }) - ) - }) - .then(result => { - delete result.key - delete result.updated - if (conf.json) { - this.npm.output(JSON.stringify(result)) - } else if (conf.parseable) { - Object.keys(result).forEach(k => this.npm.output(k + '\t' + result[k])) - } else { - const table = new Table() - for (const k of Object.keys(result)) { - table.push({ [chalk.bold(k)]: String(result[k]) }) - } - this.npm.output(table.toString()) - } + const password = await readUserInfo.password() + const validCIDR = this.validateCIDRList(cidr) + log.info('token', 'creating') + const result = await pulseTillDone.withPromise( + otplease(this.npm, conf, conf => { + return profile.createToken(password, readonly, validCIDR, conf) }) + ) + delete result.key + delete result.updated + if (conf.json) { + this.npm.output(JSON.stringify(result)) + } else if (conf.parseable) { + Object.keys(result).forEach(k => this.npm.output(k + '\t' + result[k])) + } else { + const table = new Table() + for (const k of Object.keys(result)) { + table.push({ [chalk.bold(k)]: String(result[k]) }) + } + this.npm.output(table.toString()) + } } config () { diff --git a/deps/npm/lib/npm.js b/deps/npm/lib/npm.js index 66111cab89a844b..b116ec5cc68a497 100644 --- a/deps/npm/lib/npm.js +++ b/deps/npm/lib/npm.js @@ -112,6 +112,7 @@ class Npm extends EventEmitter { // this is async but we dont await it, since its ok if it doesnt // finish before the command finishes running. it uses command and argv // so it must be initiated here, after the command name is set + // eslint-disable-next-line promise/catch-or-return updateNotifier(this).then((msg) => (this.updateNotification = msg)) // Options are prefixed by a hyphen-minus (-, \u2d). @@ -173,16 +174,15 @@ class Npm extends EventEmitter { async load () { if (!this.#loadPromise) { - this.#loadPromise = this.time('npm:load', () => this[_load]().catch(er => er).then((er) => { - this.loadErr = er - if (!er) { - if (this.config.get('force')) { - log.warn('using --force', 'Recommended protections disabled.') - } - } else { + this.#loadPromise = this.time('npm:load', async () => { + await this[_load]().catch((er) => { + this.loadErr = er throw er + }) + if (this.config.get('force')) { + log.warn('using --force', 'Recommended protections disabled.') } - })) + }) } return this.#loadPromise } @@ -229,7 +229,9 @@ class Npm extends EventEmitter { const node = this.time('npm:load:whichnode', () => { try { return which.sync(process.argv[0]) - } catch {} // TODO should we throw here? + } catch { + // TODO should we throw here? + } }) if (node && node.toUpperCase() !== process.execPath.toUpperCase()) { diff --git a/deps/npm/lib/utils/explain-dep.js b/deps/npm/lib/utils/explain-dep.js index 107f68549ef1dbc..cd53a2269640e65 100644 --- a/deps/npm/lib/utils/explain-dep.js +++ b/deps/npm/lib/utils/explain-dep.js @@ -8,6 +8,7 @@ const nocolor = { magenta: s => s, blue: s => s, green: s => s, + gray: s => s, } const { relative } = require('path') @@ -18,13 +19,14 @@ const explainNode = (node, depth, color) => explainLinksIn(node, depth, color) const colorType = (type, color) => { - const { red, yellow, cyan, magenta, blue, green } = color ? chalk : nocolor + const { red, yellow, cyan, magenta, blue, green, gray } = color ? chalk : nocolor const style = type === 'extraneous' ? red : type === 'dev' ? yellow : type === 'optional' ? cyan : type === 'peer' ? magenta : type === 'bundled' ? blue : type === 'workspace' ? green + : type === 'overridden' ? gray : /* istanbul ignore next */ s => s return style(type) } @@ -40,6 +42,7 @@ const printNode = (node, color) => { peer, bundled, isWorkspace, + overridden, } = node const { bold, dim, green } = color ? chalk : nocolor const extra = [] @@ -63,6 +66,10 @@ const printNode = (node, color) => { extra.push(' ' + bold(colorType('bundled', color))) } + if (overridden) { + extra.push(' ' + bold(colorType('overridden', color))) + } + const pkgid = isWorkspace ? green(`${name}@${version}`) : `${bold(name)}@${bold(version)}` @@ -112,11 +119,15 @@ const explainDependents = ({ name, dependents }, depth, color) => { return str.split('\n').join('\n ') } -const explainEdge = ({ name, type, bundled, from, spec }, depth, color) => { +const explainEdge = ({ name, type, bundled, from, spec, rawSpec, overridden }, depth, color) => { const { bold } = color ? chalk : nocolor - const dep = type === 'workspace' + let dep = type === 'workspace' ? bold(relative(from.location, spec.slice('file:'.length))) : `${bold(name)}@"${bold(spec)}"` + if (overridden) { + dep = `${colorType('overridden', color)} ${dep} (was "${rawSpec}")` + } + const fromMsg = ` from ${explainFrom(from, depth, color)}` return (type === 'prod' ? '' : `${colorType(type, color)} `) + diff --git a/deps/npm/lib/utils/otplease.js b/deps/npm/lib/utils/otplease.js index 0e20e7a797ae045..e40ef57730c305c 100644 --- a/deps/npm/lib/utils/otplease.js +++ b/deps/npm/lib/utils/otplease.js @@ -1,3 +1,4 @@ +const log = require('./log-shim') async function otplease (npm, opts, fn) { try { return await fn(opts) @@ -7,6 +8,7 @@ async function otplease (npm, opts, fn) { } if (isWebOTP(err)) { + log.disableProgress() const webAuth = require('./web-auth') const openUrlPrompt = require('./open-url-prompt') diff --git a/deps/npm/lib/utils/queryable.js b/deps/npm/lib/utils/queryable.js index ceb06bdccd103ac..7c5bb7fe87baffd 100644 --- a/deps/npm/lib/utils/queryable.js +++ b/deps/npm/lib/utils/queryable.js @@ -148,7 +148,9 @@ const setter = ({ data, key, value, force }) => { let maybeIndex = Number.NaN try { maybeIndex = Number(_key) - } catch (err) {} + } catch { + // leave it NaN + } if (!Number.isNaN(maybeIndex)) { _key = maybeIndex } diff --git a/deps/npm/man/man1/npm-access.1 b/deps/npm/man/man1/npm-access.1 index 703268cab4d8799..50adeee1fc37122 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" "August 2022" "" "" +.TH "NPM\-ACCESS" "1" "September 2022" "" "" .SH "NAME" \fBnpm-access\fR \- Set access level on published packages .SS Synopsis @@ -25,29 +25,28 @@ in the current working directory if no package name is passed to the subcommand\. .RS 0 .IP \(bu 2 -public / restricted: +public / restricted (deprecated): Set a package to be either publicly accessible or restricted\. .IP \(bu 2 -grant / revoke: +grant / revoke (deprecated): Add or remove the ability of users and teams to have read\-only or read\-write access to a package\. .IP \(bu 2 -2fa\-required / 2fa\-not\-required: +2fa\-required / 2fa\-not\-required (deprecated): Configure whether a package requires that anyone publishing it have two\-factor authentication enabled on their account\. .IP \(bu 2 -ls\-packages: +ls\-packages (deprecated): Show all of the packages a user or a team is able to access, along with the access level, except for read\-only public packages (it won't print the whole registry listing) .IP \(bu 2 -ls\-collaborators: +ls\-collaborators (deprecated): Show all of the access privileges for a package\. Will only show permissions for packages to which you have at least read access\. If \fB\fP is passed in, the list is filtered only to teams \fIthat\fR user happens to belong to\. .IP \(bu 2 -edit: -Set the access privileges for a package at once using \fB$EDITOR\fP\|\. +edit (not implemented) .RE .SS Details diff --git a/deps/npm/man/man1/npm-adduser.1 b/deps/npm/man/man1/npm-adduser.1 index 5e46279d09d22ad..226c1a6b23bf8c8 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" "August 2022" "" "" +.TH "NPM\-ADDUSER" "1" "September 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 41b431b401d2423..c0ed532ba6273a7 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" "August 2022" "" "" +.TH "NPM\-AUDIT" "1" "September 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 a9c32cbf3e61c57..5fc1cc4349898d5 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" "August 2022" "" "" +.TH "NPM\-BIN" "1" "September 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 ded7cba677ce4a7..dd51458e91a26f4 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" "August 2022" "" "" +.TH "NPM\-BUGS" "1" "September 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 1825e026f1811c5..4660d58f102e497 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" "August 2022" "" "" +.TH "NPM\-CACHE" "1" "September 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 da444f6f45ef82b..552de373d664a89 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" "August 2022" "" "" +.TH "NPM\-CI" "1" "September 2022" "" "" .SH "NAME" \fBnpm-ci\fR \- Clean install a project .SS Synopsis diff --git a/deps/npm/man/man1/npm-completion.1 b/deps/npm/man/man1/npm-completion.1 index 167ea44f368d9d8..6ab45028511a1a8 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" "August 2022" "" "" +.TH "NPM\-COMPLETION" "1" "September 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 87719ca60f7b88c..d56ec9302dca7ac 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" "August 2022" "" "" +.TH "NPM\-CONFIG" "1" "September 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 6ea6dd169d279b5..1859358de5fdcbc 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" "August 2022" "" "" +.TH "NPM\-DEDUPE" "1" "September 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 3ed0d4e4fa7546c..d107056761266af 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" "August 2022" "" "" +.TH "NPM\-DEPRECATE" "1" "September 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 1776fbc23b09e5d..5de26a9a5a40f33 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" "August 2022" "" "" +.TH "NPM\-DIFF" "1" "September 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 f176336ebecff62..70c85755154e0a1 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" "August 2022" "" "" +.TH "NPM\-DIST\-TAG" "1" "September 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 f79dc835da073cc..784a9bc10d2f7a1 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" "August 2022" "" "" +.TH "NPM\-DOCS" "1" "September 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 14651e098d31db6..69f2b63e1a17d10 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" "August 2022" "" "" +.TH "NPM\-DOCTOR" "1" "September 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 d9c2c132439ab93..aed77df0561323f 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" "August 2022" "" "" +.TH "NPM\-EDIT" "1" "September 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 d2467f0c98f0dcd..7159ac87581bb7f 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" "August 2022" "" "" +.TH "NPM\-EXEC" "1" "September 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 7ff603fc1b3a0e5..0b24ea75e50e95b 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" "August 2022" "" "" +.TH "NPM\-EXPLAIN" "1" "September 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 6bd60c93fcc03db..eea781b3b12bccf 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" "August 2022" "" "" +.TH "NPM\-EXPLORE" "1" "September 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 e433180e7a6f094..b1dcc2c2e386970 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" "August 2022" "" "" +.TH "NPM\-FIND\-DUPES" "1" "September 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 77631d7d7e9f5e3..810508174cdef18 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" "August 2022" "" "" +.TH "NPM\-FUND" "1" "September 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 5cd66df0e33e550..8976b14f69536d0 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" "August 2022" "" "" +.TH "NPM\-HELP\-SEARCH" "1" "September 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 3ff6c4452cd82ae..20853a54e5f73bf 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" "August 2022" "" "" +.TH "NPM\-HELP" "1" "September 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 abecdbfc279ff3f..9e9a30fa47bbeb6 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" "August 2022" "" "" +.TH "NPM\-HOOK" "1" "September 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 1098fa467d03eef..55ed8c4623a8d28 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" "August 2022" "" "" +.TH "NPM\-INIT" "1" "September 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 6a55a8fd978a673..1f01f5237dd936f 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" "August 2022" "" "" +.TH "NPM\-INSTALL\-CI\-TEST" "1" "September 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 55360a9f7dc19e9..22d08372ced7d5c 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" "August 2022" "" "" +.TH "NPM\-INSTALL\-TEST" "1" "September 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 4b350b83c586c0c..a1a6366bbec7b36 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" "August 2022" "" "" +.TH "NPM\-INSTALL" "1" "September 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 a577656a249ea34..5b730b4fb5b5460 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" "August 2022" "" "" +.TH "NPM\-LINK" "1" "September 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 6481d8e9840f5c0..a93c8d134d1de8a 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" "August 2022" "" "" +.TH "NPM\-LOGOUT" "1" "September 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 f0852befaace423..c09aabc06eae3e8 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" "August 2022" "" "" +.TH "NPM\-LS" "1" "September 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\.16\.0 /path/to/npm +npm@8\.19\.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 09d1bedfc2b1719..9c69a27b9d2213c 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" "August 2022" "" "" +.TH "NPM\-ORG" "1" "September 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 ab0bd8520b81b89..4019804d6ceb3d6 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" "August 2022" "" "" +.TH "NPM\-OUTDATED" "1" "September 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 6df79588f5f24f7..1b5a5f36676449d 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" "August 2022" "" "" +.TH "NPM\-OWNER" "1" "September 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 9b8ebd69a9e592a..7065a546383e0bd 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" "August 2022" "" "" +.TH "NPM\-PACK" "1" "September 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 7972db6b7b0beac..79d8b4c81d9579b 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" "August 2022" "" "" +.TH "NPM\-PING" "1" "September 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 9bf1c007dfe7ef4..be5e622d94e3ffc 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" "August 2022" "" "" +.TH "NPM\-PKG" "1" "September 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 906021bf21de2e6..89a334cfdabc13b 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" "August 2022" "" "" +.TH "NPM\-PREFIX" "1" "September 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 f0b19a614bb7589..e55b6d771552d62 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" "August 2022" "" "" +.TH "NPM\-PROFILE" "1" "September 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 c2209502fc578dd..73198a7ff6eaa96 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" "August 2022" "" "" +.TH "NPM\-PRUNE" "1" "September 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 e45c52a88e9d436..20133a4dfef0b46 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" "August 2022" "" "" +.TH "NPM\-PUBLISH" "1" "September 2022" "" "" .SH "NAME" \fBnpm-publish\fR \- Publish a package .SS Synopsis diff --git a/deps/npm/man/man1/npm-query.1 b/deps/npm/man/man1/npm-query.1 index a6b4d040304d74f..e405fe426845433 100644 --- a/deps/npm/man/man1/npm-query.1 +++ b/deps/npm/man/man1/npm-query.1 @@ -1,4 +1,4 @@ -.TH "NPM\-QUERY" "1" "August 2022" "" "" +.TH "NPM\-QUERY" "1" "September 2022" "" "" .SH "NAME" \fBnpm-query\fR \- Dependency selector query .SS Synopsis @@ -235,6 +235,6 @@ This value is not exported to the environment for child processes\. .SH See Also .RS 0 .IP \(bu 2 -npm help dependency selector +npm help dependency selectors .RE diff --git a/deps/npm/man/man1/npm-rebuild.1 b/deps/npm/man/man1/npm-rebuild.1 index 96461f98494f03e..612d30ff66a1c66 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" "August 2022" "" "" +.TH "NPM\-REBUILD" "1" "September 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 f473b406cb7c52b..b2a8f6b877bc3df 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" "August 2022" "" "" +.TH "NPM\-REPO" "1" "September 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 1dde3f5538ff2e2..21c9de73ed1ef4b 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" "August 2022" "" "" +.TH "NPM\-RESTART" "1" "September 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 1ef2690ea51651c..540e09708c64026 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" "August 2022" "" "" +.TH "NPM\-ROOT" "1" "September 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 8034b90bc295bb8..94a1ae1a39e15a1 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" "August 2022" "" "" +.TH "NPM\-RUN\-SCRIPT" "1" "September 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 2bc4a90cd589e4d..5d04d8a2d74045c 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" "August 2022" "" "" +.TH "NPM\-SEARCH" "1" "September 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 10e80ceebb06432..6f7919351835756 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" "August 2022" "" "" +.TH "NPM\-SET\-SCRIPT" "1" "September 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 125f961da14381d..e33a2e3d1054907 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" "August 2022" "" "" +.TH "NPM\-SHRINKWRAP" "1" "September 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 a588e020971096f..9b68d6c8975acfb 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" "August 2022" "" "" +.TH "NPM\-STAR" "1" "September 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 d0c9be4e69db53a..5c2b1b7972d5e2f 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" "August 2022" "" "" +.TH "NPM\-STARS" "1" "September 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 634514c030691ee..e1a5ad83a9b8901 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" "August 2022" "" "" +.TH "NPM\-START" "1" "September 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 9d5fb0d332a3820..4330f82069d6225 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" "August 2022" "" "" +.TH "NPM\-STOP" "1" "September 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 63fa957a491d09c..e07c8ace5637b53 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" "August 2022" "" "" +.TH "NPM\-TEAM" "1" "September 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 5467d706eeb862e..7181ae36a76da1f 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" "August 2022" "" "" +.TH "NPM\-TEST" "1" "September 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 38c8a5b2f5a5f20..1e15b78056b6eff 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" "August 2022" "" "" +.TH "NPM\-TOKEN" "1" "September 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 eefb3e79fa170ba..a7bfd2491dead21 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" "August 2022" "" "" +.TH "NPM\-UNINSTALL" "1" "September 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 3ecc3d6868ccce7..9b4d4ecdd4f47c5 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" "August 2022" "" "" +.TH "NPM\-UNPUBLISH" "1" "September 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 327aed2290f107b..f9496ecf37dc1a6 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" "August 2022" "" "" +.TH "NPM\-UNSTAR" "1" "September 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 0c60874939aae89..d961640fd2d7610 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" "August 2022" "" "" +.TH "NPM\-UPDATE" "1" "September 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 40685823b70da26..5645597ffccaf1c 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" "August 2022" "" "" +.TH "NPM\-VERSION" "1" "September 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 91df44561d09572..9218ec60e733ca2 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" "August 2022" "" "" +.TH "NPM\-VIEW" "1" "September 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 e44429ac4147dca..55a79e5c7a43403 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" "August 2022" "" "" +.TH "NPM\-WHOAMI" "1" "September 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 2d92f18f6fc8ac7..693ff495fbb5f30 100644 --- a/deps/npm/man/man1/npm.1 +++ b/deps/npm/man/man1/npm.1 @@ -1,10 +1,10 @@ -.TH "NPM" "1" "August 2022" "" "" +.TH "NPM" "1" "September 2022" "" "" .SH "NAME" \fBnpm\fR \- javascript package manager .SS Synopsis .SS Version .P -8\.16\.0 +8\.19\.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 4af0ed99356eb86..7d19a5096fa23cd 100644 --- a/deps/npm/man/man1/npx.1 +++ b/deps/npm/man/man1/npx.1 @@ -1,4 +1,4 @@ -.TH "NPX" "1" "August 2022" "" "" +.TH "NPX" "1" "September 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 b6efd3c880333d7..8fdeb6599617f88 100644 --- a/deps/npm/man/man5/folders.5 +++ b/deps/npm/man/man5/folders.5 @@ -1,4 +1,4 @@ -.TH "FOLDERS" "5" "August 2022" "" "" +.TH "FOLDERS" "5" "September 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 b006ed81d89f49b..abf9436c8e236d4 100644 --- a/deps/npm/man/man5/install.5 +++ b/deps/npm/man/man5/install.5 @@ -1,4 +1,4 @@ -.TH "INSTALL" "5" "August 2022" "" "" +.TH "INSTALL" "5" "September 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 fa88d6a447b82cb..f81b9058dfb9aa5 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" "August 2022" "" "" +.TH "NPM\-SHRINKWRAP\.JSON" "5" "September 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 7f506bf225839fd..98e0ebfe4c386dd 100644 --- a/deps/npm/man/man5/npmrc.5 +++ b/deps/npm/man/man5/npmrc.5 @@ -1,4 +1,4 @@ -.TH "NPMRC" "5" "August 2022" "" "" +.TH "NPMRC" "5" "September 2022" "" "" .SH "NAME" \fBnpmrc\fR \- The npm config files .SS Description @@ -93,6 +93,35 @@ This is an unchangeable "builtin" configuration file that npm keeps consistent across updates\. Set fields in here using the \fB\|\./configure\fP script that comes with npm\. This is primarily for distribution maintainers to override default configs in a standard and consistent manner\. +.SS Auth related configuration +.P +The settings \fB_auth\fP, \fB_authToken\fP, \fBusername\fP and \fB_password\fP must all be +scoped to a specific registry\. This ensures that \fBnpm\fP will never send +credentials to the wrong host\. +.P +In order to scope these values, they must be prefixed by a URI fragment\. +If the credential is meant for any request to a registry on a single host, +the scope may look like \fB//registry\.npmjs\.org/:\fP\|\. If it must be scoped to a +specific path on the host that path may also be provided, such as +\fB//my\-custom\-registry\.org/unique/path:\fP\|\. +.P +.RS 2 +.nf +; bad config +_authToken=MYTOKEN + +; good config +@myorg:registry=https://somewhere\-else\.com/myorg +@another:registry=https://somewhere\-else\.com/another +//registry\.npmjs\.org/:_authToken=MYTOKEN +; would apply to both @myorg and @another +; //somewhere\-else\.com/:_authToken=MYTOKEN +; would apply only to @myorg +//somewhere\-else\.com/myorg/:_authToken=MYTOKEN1 +; would apply only to @another +//somewhere\-else\.com/another/:_authToken=MYTOKEN2 +.fi +.RE .SS See also .RS 0 .IP \(bu 2 diff --git a/deps/npm/man/man5/package-json.5 b/deps/npm/man/man5/package-json.5 index d4f9723112b166a..84a388a184f37af 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" "August 2022" "" "" +.TH "PACKAGE\.JSON" "5" "September 2022" "" "" .SH "NAME" \fBpackage.json\fR \- Specifics of npm's package\.json handling .SS Description @@ -969,7 +969,7 @@ be found or fails to install, then you may put it in the \fBoptionalDependencies\fP object\. This is a map of package name to version or url, just like the \fBdependencies\fP object\. The difference is that build failures do not cause installation to fail\. Running \fBnpm install -\-\-no\-optional\fP will prevent these dependencies from being installed\. +\-\-omit=optional\fP will prevent these dependencies from being installed\. .P It is still your program's responsibility to handle the lack of the dependency\. For example, something like this: diff --git a/deps/npm/man/man5/package-lock-json.5 b/deps/npm/man/man5/package-lock-json.5 index 5dc67f04d60f811..ed86cf0f7ad21cd 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" "August 2022" "" "" +.TH "PACKAGE\-LOCK\.JSON" "5" "September 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 ba185464ed05bee..12f48953f9cd2b2 100644 --- a/deps/npm/man/man7/config.7 +++ b/deps/npm/man/man7/config.7 @@ -1,4 +1,4 @@ -.TH "CONFIG" "7" "August 2022" "" "" +.TH "CONFIG" "7" "September 2022" "" "" .SH "NAME" \fBconfig\fR \- More than you probably want to know about npm configuration .SS Description diff --git a/deps/npm/man/man7/dependency-selectors.7 b/deps/npm/man/man7/dependency-selectors.7 index ae6f58bd1b30fe4..45716e009b298c6 100644 --- a/deps/npm/man/man7/dependency-selectors.7 +++ b/deps/npm/man/man7/dependency-selectors.7 @@ -1,4 +1,4 @@ -.TH "DEPENDENCY" "" "August 2022" "" "" +.TH "DEPENDENCY" "" "September 2022" "" "" .SH "NAME" \fBDependency\fR .SS Description @@ -87,7 +87,7 @@ the term "dependencies" is in reference to any \fBNode\fP found in a \fBtree\fP .IP \(bu 2 \fB:deduped\fP when a dependency has been deduped (note that this does \fInot\fR always mean the dependency has been hoisted to the root of node_modules) .IP \(bu 2 -\fB:override\fP when a dependency is an override (not implemented yet) +\fB:overridden\fP when a dependency has been overridden .IP \(bu 2 \fB:extraneous\fP when a dependency exists but is not defined as a dependency of any node .IP \(bu 2 @@ -215,7 +215,7 @@ const arb = new Arborist({}) .RS 2 .nf // root\-level -arb\.loadActual((tree) => { +arb\.loadActual()\.then(async (tree) => { // query all production dependencies const results = await tree\.querySelectorAll('\.prod') console\.log(results) @@ -226,7 +226,7 @@ arb\.loadActual((tree) => { .RS 2 .nf // iterative -arb\.loadActual((tree) => { +arb\.loadActual()\.then(async (tree) => { // query for the deduped version of react const results = await tree\.querySelectorAll('#react:not(:deduped)') // query the deduped react for git deps @@ -240,6 +240,6 @@ arb\.loadActual((tree) => { .IP \(bu 2 npm help query .IP \(bu 2 -[@npmcli/arborist](https://npm\.im/@npmcli/arborist] +@npmcli/arborist \fIhttps://npm\.im/@npmcli/arborist\fR .RE diff --git a/deps/npm/man/man7/developers.7 b/deps/npm/man/man7/developers.7 index 171decac45d67f5..4870ad66888e3ae 100644 --- a/deps/npm/man/man7/developers.7 +++ b/deps/npm/man/man7/developers.7 @@ -1,4 +1,4 @@ -.TH "DEVELOPERS" "7" "August 2022" "" "" +.TH "DEVELOPERS" "7" "September 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 b2aa408db5e6824..74dc9c367daf9de 100644 --- a/deps/npm/man/man7/logging.7 +++ b/deps/npm/man/man7/logging.7 @@ -1,4 +1,4 @@ -.TH "LOGGING" "7" "August 2022" "" "" +.TH "LOGGING" "7" "September 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 a5e2f41a07d8c72..71f9bf806e50b73 100644 --- a/deps/npm/man/man7/orgs.7 +++ b/deps/npm/man/man7/orgs.7 @@ -1,4 +1,4 @@ -.TH "ORGS" "7" "August 2022" "" "" +.TH "ORGS" "7" "September 2022" "" "" .SH "NAME" \fBorgs\fR \- Working with Teams & Orgs .SS Description diff --git a/deps/npm/man/man7/package-spec.7 b/deps/npm/man/man7/package-spec.7 index c728cc523b2fa26..4163e82ee70b399 100644 --- a/deps/npm/man/man7/package-spec.7 +++ b/deps/npm/man/man7/package-spec.7 @@ -1,4 +1,4 @@ -.TH "PACKAGE\-SPEC" "7" "August 2022" "" "" +.TH "PACKAGE\-SPEC" "7" "September 2022" "" "" .SH "NAME" \fBpackage-spec\fR \- Package name specifier .SS Description diff --git a/deps/npm/man/man7/registry.7 b/deps/npm/man/man7/registry.7 index 6afd6295c665b16..c1d31783f045f8f 100644 --- a/deps/npm/man/man7/registry.7 +++ b/deps/npm/man/man7/registry.7 @@ -1,4 +1,4 @@ -.TH "REGISTRY" "7" "August 2022" "" "" +.TH "REGISTRY" "7" "September 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 8493d9b82b199bd..5e06ec38eaaebec 100644 --- a/deps/npm/man/man7/removal.7 +++ b/deps/npm/man/man7/removal.7 @@ -1,4 +1,4 @@ -.TH "REMOVAL" "7" "August 2022" "" "" +.TH "REMOVAL" "7" "September 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 cd4690e240ba1a2..9e499cbb638070e 100644 --- a/deps/npm/man/man7/scope.7 +++ b/deps/npm/man/man7/scope.7 @@ -1,4 +1,4 @@ -.TH "SCOPE" "7" "August 2022" "" "" +.TH "SCOPE" "7" "September 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 e5e3acaeff872af..f6d404748abddcb 100644 --- a/deps/npm/man/man7/scripts.7 +++ b/deps/npm/man/man7/scripts.7 @@ -1,4 +1,4 @@ -.TH "SCRIPTS" "7" "August 2022" "" "" +.TH "SCRIPTS" "7" "September 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 d567ef197877c46..952199c5a13a489 100644 --- a/deps/npm/man/man7/workspaces.7 +++ b/deps/npm/man/man7/workspaces.7 @@ -1,4 +1,4 @@ -.TH "WORKSPACES" "7" "August 2022" "" "" +.TH "WORKSPACES" "7" "September 2022" "" "" .SH "NAME" \fBworkspaces\fR \- Working with workspaces .SS Description diff --git a/deps/npm/node_modules/@npmcli/arborist/bin/index.js b/deps/npm/node_modules/@npmcli/arborist/bin/index.js index 0c1e98445341fe3..ff356fafab7c348 100755 --- a/deps/npm/node_modules/@npmcli/arborist/bin/index.js +++ b/deps/npm/node_modules/@npmcli/arborist/bin/index.js @@ -99,6 +99,7 @@ for (const file of commandFiles) { if (bin.loglevel !== 'silent') { console[process.exitCode ? 'error' : 'log'](r) } + return r }) } } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js b/deps/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js index f59df359e945669..7b43c38e2492b24 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js @@ -4,8 +4,67 @@ const log = require('proc-log') const localeCompare = require('@isaacs/string-locale-compare')('en') const add = ({ pkg, add, saveBundle, saveType }) => { - for (const spec of add) { - addSingle({ pkg, spec, saveBundle, saveType }) + for (const { name, rawSpec } of add) { + // if the user does not give us a type, we infer which type(s) + // to keep based on the same order of priority we do when + // building the tree as defined in the _loadDeps method of + // the node class. + if (!saveType) { + saveType = inferSaveType(pkg, name) + } + + if (saveType === 'prod') { + // a production dependency can only exist as production (rpj ensures it + // doesn't coexist w/ optional) + deleteSubKey(pkg, 'devDependencies', name, 'dependencies') + deleteSubKey(pkg, 'peerDependencies', name, 'dependencies') + } else if (saveType === 'dev') { + // a dev dependency may co-exist as peer, or optional, but not production + deleteSubKey(pkg, 'dependencies', name, 'devDependencies') + } else if (saveType === 'optional') { + // an optional dependency may co-exist as dev (rpj ensures it doesn't + // coexist w/ prod) + deleteSubKey(pkg, 'peerDependencies', name, 'optionalDependencies') + } else { // peer or peerOptional is all that's left + // a peer dependency may coexist as dev + deleteSubKey(pkg, 'dependencies', name, 'peerDependencies') + deleteSubKey(pkg, 'optionalDependencies', name, 'peerDependencies') + } + + const depType = saveTypeMap.get(saveType) + + pkg[depType] = pkg[depType] || {} + if (rawSpec !== '' || pkg[depType][name] === undefined) { + pkg[depType][name] = rawSpec || '*' + } + if (saveType === 'optional') { + // Affordance for previous npm versions that require this behaviour + pkg.dependencies = pkg.dependencies || {} + pkg.dependencies[name] = pkg.optionalDependencies[name] + } + + if (saveType === 'peer' || saveType === 'peerOptional') { + const pdm = pkg.peerDependenciesMeta || {} + if (saveType === 'peer' && pdm[name] && pdm[name].optional) { + pdm[name].optional = false + } else if (saveType === 'peerOptional') { + pdm[name] = pdm[name] || {} + pdm[name].optional = true + pkg.peerDependenciesMeta = pdm + } + // peerDeps are often also a devDep, so that they can be tested when + // using package managers that don't auto-install peer deps + if (pkg.devDependencies && pkg.devDependencies[name] !== undefined) { + pkg.devDependencies[name] = pkg.peerDependencies[name] + } + } + + if (saveBundle && saveType !== 'peer' && saveType !== 'peerOptional') { + // keep it sorted, keep it unique + const bd = new Set(pkg.bundleDependencies || []) + bd.add(name) + pkg.bundleDependencies = [...bd].sort(localeCompare) + } } return pkg @@ -21,71 +80,6 @@ const saveTypeMap = new Map([ ['peer', 'peerDependencies'], ]) -const addSingle = ({ pkg, spec, saveBundle, saveType }) => { - const { name, rawSpec } = spec - - // if the user does not give us a type, we infer which type(s) - // to keep based on the same order of priority we do when - // building the tree as defined in the _loadDeps method of - // the node class. - if (!saveType) { - saveType = inferSaveType(pkg, spec.name) - } - - if (saveType === 'prod') { - // a production dependency can only exist as production (rpj ensures it - // doesn't coexist w/ optional) - deleteSubKey(pkg, 'devDependencies', name, 'dependencies') - deleteSubKey(pkg, 'peerDependencies', name, 'dependencies') - } else if (saveType === 'dev') { - // a dev dependency may co-exist as peer, or optional, but not production - deleteSubKey(pkg, 'dependencies', name, 'devDependencies') - } else if (saveType === 'optional') { - // an optional dependency may co-exist as dev (rpj ensures it doesn't - // coexist w/ prod) - deleteSubKey(pkg, 'peerDependencies', name, 'optionalDependencies') - } else { // peer or peerOptional is all that's left - // a peer dependency may coexist as dev - deleteSubKey(pkg, 'dependencies', name, 'peerDependencies') - deleteSubKey(pkg, 'optionalDependencies', name, 'peerDependencies') - } - - const depType = saveTypeMap.get(saveType) - - pkg[depType] = pkg[depType] || {} - if (rawSpec !== '' || pkg[depType][name] === undefined) { - pkg[depType][name] = rawSpec || '*' - } - if (saveType === 'optional') { - // Affordance for previous npm versions that require this behaviour - pkg.dependencies = pkg.dependencies || {} - pkg.dependencies[name] = pkg.optionalDependencies[name] - } - - if (saveType === 'peer' || saveType === 'peerOptional') { - const pdm = pkg.peerDependenciesMeta || {} - if (saveType === 'peer' && pdm[name] && pdm[name].optional) { - pdm[name].optional = false - } else if (saveType === 'peerOptional') { - pdm[name] = pdm[name] || {} - pdm[name].optional = true - pkg.peerDependenciesMeta = pdm - } - // peerDeps are often also a devDep, so that they can be tested when - // using package managers that don't auto-install peer deps - if (pkg.devDependencies && pkg.devDependencies[name] !== undefined) { - pkg.devDependencies[name] = pkg.peerDependencies[name] - } - } - - if (saveBundle && saveType !== 'peer' && saveType !== 'peerOptional') { - // keep it sorted, keep it unique - const bd = new Set(pkg.bundleDependencies || []) - bd.add(spec.name) - pkg.bundleDependencies = [...bd].sort(localeCompare) - } -} - // Finds where the package is already in the spec and infers saveType from that const inferSaveType = (pkg, name) => { for (const saveType of saveTypeMap.keys()) { @@ -103,9 +97,8 @@ const inferSaveType = (pkg, name) => { return 'prod' } -const { hasOwnProperty } = Object.prototype const hasSubKey = (pkg, depType, name) => { - return pkg[depType] && hasOwnProperty.call(pkg[depType], name) + return pkg[depType] && Object.prototype.hasOwnProperty.call(pkg[depType], name) } // Removes a subkey and warns about it if it's being replaced diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js index 945bae56b63de45..e9a8720d7322db7 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js @@ -81,18 +81,11 @@ const _linkNodes = Symbol('linkNodes') const _follow = Symbol('follow') const _globalStyle = Symbol('globalStyle') const _globalRootNode = Symbol('globalRootNode') -const _isVulnerable = Symbol.for('isVulnerable') const _usePackageLock = Symbol.for('usePackageLock') const _rpcache = Symbol.for('realpathCache') const _stcache = Symbol.for('statCache') -const _updateFilePath = Symbol('updateFilePath') -const _followSymlinkPath = Symbol('followSymlinkPath') -const _getRelpathSpec = Symbol('getRelpathSpec') -const _retrieveSpecName = Symbol('retrieveSpecName') const _strictPeerDeps = Symbol('strictPeerDeps') const _checkEngineAndPlatform = Symbol('checkEngineAndPlatform') -const _checkEngine = Symbol('checkEngine') -const _checkPlatform = Symbol('checkPlatform') const _virtualRoots = Symbol('virtualRoots') const _virtualRoot = Symbol('virtualRoot') const _includeWorkspaceRoot = Symbol.for('includeWorkspaceRoot') @@ -228,34 +221,22 @@ module.exports = cls => class IdealTreeBuilder extends cls { } async [_checkEngineAndPlatform] () { + const { engineStrict, npmVersion, nodeVersion } = this.options for (const node of this.idealTree.inventory.values()) { if (!node.optional) { - this[_checkEngine](node) - this[_checkPlatform](node) - } - } - } - - [_checkPlatform] (node) { - checkPlatform(node.package, this[_force]) - } - - [_checkEngine] (node) { - const { engineStrict, npmVersion, nodeVersion } = this.options - const c = () => - checkEngine(node.package, npmVersion, nodeVersion, this[_force]) - - if (engineStrict) { - c() - } else { - try { - c() - } catch (er) { - log.warn(er.code, er.message, { - package: er.pkgid, - required: er.required, - current: er.current, - }) + try { + checkEngine(node.package, npmVersion, nodeVersion, this[_force]) + } catch (err) { + if (engineStrict) { + throw err + } + log.warn(err.code, err.message, { + package: err.pkgid, + required: err.required, + current: err.current, + }) + } + checkPlatform(node.package, this[_force]) } } } @@ -378,6 +359,7 @@ Try using the package name instead, e.g: this.idealTree = tree this.virtualTree = null process.emit('timeEnd', 'idealTree:init') + return tree }) } @@ -529,84 +511,59 @@ Try using the package name instead, e.g: this[_depsQueue].push(tree) } - // This returns a promise because we might not have the name yet, - // and need to call pacote.manifest to find the name. - [_add] (tree, { add, saveType = null, saveBundle = false }) { - // get the name for each of the specs in the list. - // ie, doing `foo@bar` we just return foo - // but if it's a url or git, we don't know the name until we - // fetch it and look in its manifest. - return Promise.all(add.map(async rawSpec => { - // We do NOT provide the path to npa here, because user-additions - // need to be resolved relative to the CWD the user is in. - const spec = await this[_retrieveSpecName](npa(rawSpec)) - .then(spec => this[_updateFilePath](spec)) - .then(spec => this[_followSymlinkPath](spec)) - spec.tree = tree - return spec - })).then(add => { - this[_resolvedAdd].push(...add) - // now add is a list of spec objects with names. - // find a home for each of them! - addRmPkgDeps.add({ - pkg: tree.package, - add, - saveBundle, - saveType, - path: this.path, - }) - }) - } - - async [_retrieveSpecName] (spec) { - // if it's just @'' then we reload whatever's there, or get latest - // if it's an explicit tag, we need to install that specific tag version - const isTag = spec.rawSpec && spec.type === 'tag' - - if (spec.name && !isTag) { - return spec - } - - const mani = await pacote.manifest(spec, { ...this.options }) - // if it's a tag type, then we need to run it down to an actual version - if (isTag) { - return npa(`${mani.name}@${mani.version}`) - } - - spec.name = mani.name - return spec - } - - async [_updateFilePath] (spec) { - if (spec.type === 'file') { - return this[_getRelpathSpec](spec, spec.fetchSpec) - } - - return spec - } - - async [_followSymlinkPath] (spec) { - if (spec.type === 'directory') { - const real = await ( - realpath(spec.fetchSpec, this[_rpcache], this[_stcache]) - // TODO: create synthetic test case to simulate realpath failure - .catch(/* istanbul ignore next */() => null) - ) + // This returns a promise because we might not have the name yet, and need to + // call pacote.manifest to find the name. + async [_add] (tree, { add, saveType = null, saveBundle = false }) { + // If we have a link it will need to be added relative to the target's path + const path = tree.target.path - return this[_getRelpathSpec](spec, real) - } - return spec - } + // get the name for each of the specs in the list. + // ie, doing `foo@bar` we just return foo but if it's a url or git, we + // don't know the name until we fetch it and look in its manifest. + await Promise.all(add.map(async rawSpec => { + // We do NOT provide the path to npa here, because user-additions need to + // be resolved relative to the tree being added to. + let spec = npa(rawSpec) + + // if it's just @'' then we reload whatever's there, or get latest + // if it's an explicit tag, we need to install that specific tag version + const isTag = spec.rawSpec && spec.type === 'tag' + + // look up the names of file/directory/git specs + if (!spec.name || isTag) { + const mani = await pacote.manifest(spec, { ...this.options }) + if (isTag) { + // translate tag to a version + spec = npa(`${mani.name}@${mani.version}`) + } + spec.name = mani.name + } - [_getRelpathSpec] (spec, filepath) { - /* istanbul ignore else - should also be covered by realpath failure */ - if (filepath) { const { name } = spec - const tree = this.idealTree.target - spec = npa(`file:${relpath(tree.path, filepath).replace(/#/g, '%23')}`, tree.path) - spec.name = name - } - return spec + if (spec.type === 'file') { + spec = npa(`file:${relpath(path, spec.fetchSpec).replace(/#/g, '%23')}`, path) + spec.name = name + } else if (spec.type === 'directory') { + try { + const real = await realpath(spec.fetchSpec, this[_rpcache], this[_stcache]) + spec = npa(`file:${relpath(path, real).replace(/#/g, '%23')}`, path) + spec.name = name + } catch { + // TODO: create synthetic test case to simulate realpath failure + } + } + spec.tree = tree + this[_resolvedAdd].push(spec) + })) + + // now this._resolvedAdd is a list of spec objects with names. + // find a home for each of them! + addRmPkgDeps.add({ + pkg: tree.package, + add: this[_resolvedAdd], + saveBundle, + saveType, + }) } // TODO: provide a way to fix bundled deps by exposing metadata about @@ -686,10 +643,6 @@ Try using the package name instead, e.g: } } - [_isVulnerable] (node) { - return this.auditReport && this.auditReport.isVulnerable(node) - } - [_avoidRange] (name) { if (!this.auditReport) { return null @@ -781,17 +734,18 @@ This is a one-time fix-up, please be patient... const spec = npa.resolve(name, id, dirname(path)) const t = `idealTree:inflate:${location}` this.addTracker(t) - await pacote.manifest(spec, { - ...this.options, - resolved: resolved, - integrity: integrity, - fullMetadata: false, - }).then(mani => { + try { + const mani = await pacote.manifest(spec, { + ...this.options, + resolved: resolved, + integrity: integrity, + fullMetadata: false, + }) node.package = { ...mani, _id: `${mani.name}@${mani.version}` } - }).catch((er) => { + } catch (er) { const warning = `Could not fetch metadata for ${name}@${id}` log.warn(heading, warning, er) - }) + } this.finishTracker(t) }) } @@ -1233,7 +1187,7 @@ This is a one-time fix-up, please be patient... } // fixing a security vulnerability with this package, problem - if (this[_isVulnerable](edge.to)) { + if (this.auditReport && this.auditReport.isVulnerable(edge.to)) { return true } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/index.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/index.js index 9564f7648f92cf0..6bffd843186ea2e 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/index.js @@ -134,7 +134,7 @@ class Arborist extends Base { return wsDepSet } - // returns a set of root dependencies, excluding depdencies that are + // returns a set of root dependencies, excluding dependencies that are // exclusively workspace dependencies excludeWorkspacesDependencySet (tree) { const rootDepSet = new Set() diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js index d4eabe8c0fdfd7b..7ab65f5b00d8bed 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js @@ -115,6 +115,7 @@ module.exports = cls => class ActualLoader extends cls { root = null, transplantFilter = () => true, ignoreMissing = false, + forceActual = false, } = options this[_filter] = filter this[_transplantFilter] = transplantFilter @@ -141,26 +142,30 @@ module.exports = cls => class ActualLoader extends cls { this[_actualTree].assertRootOverrides() - // Note: hidden lockfile will be rejected if it's not the latest thing - // in the folder, or if any of the entries in the hidden lockfile are - // missing. - const meta = await Shrinkwrap.load({ - path: this[_actualTree].path, - hiddenLockfile: true, - resolveOptions: this.options, - }) - if (meta.loadedFromDisk) { - this[_actualTree].meta = meta - return this[_loadActualVirtually]({ root }) - } else { + // if forceActual is set, don't even try the hidden lockfile + if (!forceActual) { + // Note: hidden lockfile will be rejected if it's not the latest thing + // in the folder, or if any of the entries in the hidden lockfile are + // missing. const meta = await Shrinkwrap.load({ path: this[_actualTree].path, - lockfileVersion: this.options.lockfileVersion, + hiddenLockfile: true, resolveOptions: this.options, }) - this[_actualTree].meta = meta - return this[_loadActualActually]({ root, ignoreMissing }) + + if (meta.loadedFromDisk) { + this[_actualTree].meta = meta + return this[_loadActualVirtually]({ root }) + } } + + const meta = await Shrinkwrap.load({ + path: this[_actualTree].path, + lockfileVersion: this.options.lockfileVersion, + resolveOptions: this.options, + }) + this[_actualTree].meta = meta + return this[_loadActualActually]({ root, ignoreMissing }) } async [_loadActualVirtually] ({ root }) { @@ -342,6 +347,7 @@ module.exports = cls => class ActualLoader extends cls { // node_modules hierarchy, then load that node as well. return this[_loadFSTree](link.target).then(() => link) } else if (target.then) { + // eslint-disable-next-line promise/catch-or-return target.then(node => link.target = node) } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js index e9b79031ef427bf..7e97984c06aa7df 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js @@ -359,6 +359,9 @@ module.exports = cls => class Builder extends cls { pkg, path, event, + // I do not know why this needs to be on THIS line but refactoring + // this function would be quite a process + // eslint-disable-next-line promise/always-return cmd: args && args[args.length - 1], env, code, diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js index 7663a3a342cc6d2..0c9026f5e4d1ea7 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js @@ -69,7 +69,6 @@ const _symlink = Symbol('symlink') const _warnDeprecated = Symbol('warnDeprecated') const _loadBundlesAndUpdateTrees = Symbol.for('loadBundlesAndUpdateTrees') const _submitQuickAudit = Symbol('submitQuickAudit') -const _awaitQuickAudit = Symbol('awaitQuickAudit') const _unpackNewModules = Symbol.for('unpackNewModules') const _moveContents = Symbol.for('moveContents') const _moveBackRetiredUnchanged = Symbol.for('moveBackRetiredUnchanged') @@ -156,7 +155,8 @@ module.exports = cls => class Reifier extends cls { await this[_reifyPackages]() await this[_saveIdealTree](options) await this[_copyIdealToActual]() - await this[_awaitQuickAudit]() + // This is a very bad pattern and I can't wait to stop doing it + this.auditReport = await this.auditReport this.finishTracker('reify') process.emit('timeEnd', 'reify') @@ -531,12 +531,12 @@ module.exports = cls => class Reifier extends cls { const targets = [...roots, ...Object.keys(this[_retiredPaths])] const unlinks = targets .map(path => rimraf(path).catch(er => failures.push([path, er]))) - return promiseAllRejectLate(unlinks) - .then(() => { - if (failures.length) { - log.warn('cleanup', 'Failed to remove some directories', failures) - } - }) + return promiseAllRejectLate(unlinks).then(() => { + // eslint-disable-next-line promise/always-return + if (failures.length) { + log.warn('cleanup', 'Failed to remove some directories', failures) + } + }) .then(() => process.emit('timeEnd', 'reify:rollback:createSparse')) .then(() => this[_rollbackRetireShallowNodes](er)) } @@ -592,21 +592,21 @@ module.exports = cls => class Reifier extends cls { this.addTracker('reify', node.name, node.location) const { npmVersion, nodeVersion } = this.options - const p = Promise.resolve() - .then(async () => { - // when we reify an optional node, check the engine and platform - // first. be sure to ignore the --force and --engine-strict flags, - // since we always want to skip any optional packages we can't install. - // these checks throwing will result in a rollback and removal - // of the mismatches - if (node.optional) { - checkEngine(node.package, npmVersion, nodeVersion, false) - checkPlatform(node.package, false) - } - await this[_checkBins](node) - await this[_extractOrLink](node) - await this[_warnDeprecated](node) - }) + const p = Promise.resolve().then(async () => { + // when we reify an optional node, check the engine and platform + // first. be sure to ignore the --force and --engine-strict flags, + // since we always want to skip any optional packages we can't install. + // these checks throwing will result in a rollback and removal + // of the mismatches + // eslint-disable-next-line promise/always-return + if (node.optional) { + checkEngine(node.package, npmVersion, nodeVersion, false) + checkPlatform(node.package, false) + } + await this[_checkBins](node) + await this[_extractOrLink](node) + await this[_warnDeprecated](node) + }) return this[_handleOptionalFailure](node, p) .then(() => { @@ -916,9 +916,10 @@ module.exports = cls => class Reifier extends cls { } } - [_submitQuickAudit] () { + async [_submitQuickAudit] () { if (this.options.audit === false) { - return this.auditReport = null + this.auditReport = null + return } // we submit the quick audit at this point in the process, as soon as @@ -940,16 +941,10 @@ module.exports = cls => class Reifier extends cls { ) } - this.auditReport = AuditReport.load(tree, options) - .then(res => { - process.emit('timeEnd', 'reify:audit') - this.auditReport = res - }) - } - - // return the promise if we're waiting for it, or the replaced result - [_awaitQuickAudit] () { - return this.auditReport + this.auditReport = AuditReport.load(tree, options).then(res => { + process.emit('timeEnd', 'reify:audit') + return res + }) } // ok! actually unpack stuff into their target locations! @@ -1126,7 +1121,7 @@ module.exports = cls => class Reifier extends cls { // remove the retired folders, and any deleted nodes // If this fails, there isn't much we can do but tell the user about it. // Thankfully, it's pretty unlikely that it'll fail, since rimraf is a tank. - [_removeTrash] () { + async [_removeTrash] () { process.emit('time', 'reify:trash') const promises = [] const failures = [] @@ -1136,12 +1131,11 @@ module.exports = cls => class Reifier extends cls { promises.push(rm(path)) } - return promiseAllRejectLate(promises).then(() => { - if (failures.length) { - log.warn('cleanup', 'Failed to remove some directories', failures) - } - }) - .then(() => process.emit('timeEnd', 'reify:trash')) + await promiseAllRejectLate(promises) + if (failures.length) { + log.warn('cleanup', 'Failed to remove some directories', failures) + } + process.emit('timeEnd', 'reify:trash') } // last but not least, we save the ideal tree metadata to the package-lock @@ -1302,7 +1296,9 @@ module.exports = cls => class Reifier extends cls { if (semver.subset(edge.spec, node.version)) { return false } - } catch {} + } catch { + // ignore errors + } } return true } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/audit-report.js b/deps/npm/node_modules/@npmcli/arborist/lib/audit-report.js index 9bef84686f4b417..387919f610829e8 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/audit-report.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/audit-report.js @@ -175,7 +175,9 @@ class AuditReport extends Map { } else { // calculate a metavuln, if necessary const calc = this.calculator.calculate(dep.packageName, advisory) + // eslint-disable-next-line promise/always-return p.push(calc.then(meta => { + // eslint-disable-next-line promise/always-return if (meta.testVersion(dep.version, spec)) { advisories.add(meta) } diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/link.js b/deps/npm/node_modules/@npmcli/arborist/lib/link.js index 6fed063772b6a8c..d58c6e23750992f 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/link.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/link.js @@ -66,6 +66,7 @@ class Link extends Node { // can set to a promise during an async tree build operation // wait until then to assign it. this[_target] = target + // eslint-disable-next-line promise/always-return, promise/catch-or-return target.then(node => { this[_target] = null this.target = node diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/node.js b/deps/npm/node_modules/@npmcli/arborist/lib/node.js index be973565750a1df..60ce3eda0eb4276 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/node.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/node.js @@ -334,6 +334,10 @@ class Node { return `${myname}@${alias}${version}` } + get overridden () { + return !!(this.overrides && this.overrides.value && this.overrides.name === this.name) + } + get package () { return this[_package] } @@ -560,7 +564,8 @@ class Node { // this allows us to do new Node({...}) and then set the root later. // just make the assignment so we don't lose it, and move on. if (!this.path || !root.realpath || !root.path) { - return this[_root] = root + this[_root] = root + return } // temporarily become a root node diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js b/deps/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js index 6c540dea3c872e3..a3eac5ddc123890 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js @@ -262,6 +262,10 @@ class Results { !internalSelector.has(node)) } + overriddenPseudo () { + return this.initialItems.filter(node => node.overridden) + } + pathPseudo () { return this.initialItems.filter(node => { if (!this.currentAstNode.pathValue) { diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js b/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js index e2180fd4c8076e8..d5448bbcba9278d 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js @@ -184,34 +184,32 @@ const assertNoNewer = async (path, data, lockTime, dir = path, seen = null) => { ? Promise.resolve([{ name: 'node_modules', isDirectory: () => true }]) : readdir(parent, { withFileTypes: true }) - return children.catch(() => []) - .then(ents => Promise.all(ents.map(async ent => { - const child = resolve(parent, ent.name) - if (ent.isDirectory() && !/^\./.test(ent.name)) { - await assertNoNewer(path, data, lockTime, child, seen) - } else if (ent.isSymbolicLink()) { - const target = resolve(parent, await readlink(child)) - const tstat = await stat(target).catch( - /* istanbul ignore next - windows */ () => null) - seen.add(relpath(path, child)) - /* istanbul ignore next - windows cannot do this */ - if (tstat && tstat.isDirectory() && !seen.has(relpath(path, target))) { - await assertNoNewer(path, data, lockTime, target, seen) - } - } - }))) - .then(() => { - if (dir !== path) { - return + const ents = await children.catch(() => []) + await Promise.all(ents.map(async ent => { + const child = resolve(parent, ent.name) + if (ent.isDirectory() && !/^\./.test(ent.name)) { + await assertNoNewer(path, data, lockTime, child, seen) + } else if (ent.isSymbolicLink()) { + const target = resolve(parent, await readlink(child)) + const tstat = await stat(target).catch( + /* istanbul ignore next - windows */ () => null) + seen.add(relpath(path, child)) + /* istanbul ignore next - windows cannot do this */ + if (tstat && tstat.isDirectory() && !seen.has(relpath(path, target))) { + await assertNoNewer(path, data, lockTime, target, seen) } + } + })) + if (dir !== path) { + return + } - // assert that all the entries in the lockfile were seen - for (const loc of new Set(Object.keys(data.packages))) { - if (!seen.has(loc)) { - throw 'missing from node_modules: ' + loc - } - } - }) + // assert that all the entries in the lockfile were seen + for (const loc of new Set(Object.keys(data.packages))) { + if (!seen.has(loc)) { + throw 'missing from node_modules: ' + loc + } + } } const _awaitingUpdate = Symbol('_awaitingUpdate') @@ -261,7 +259,9 @@ class Shrinkwrap { s.lockfileVersion = json.lockfileVersion } } - } catch (e) {} + } catch { + // ignore errors + } return s } @@ -442,7 +442,7 @@ class Shrinkwrap { this.newline = newline !== undefined ? newline : this.newline } - load () { + async load () { // we don't need to load package-lock.json except for top of tree nodes, // only npm-shrinkwrap.json. return this[_maybeRead]().then(([sw, lock, yarn]) => { @@ -464,7 +464,9 @@ class Shrinkwrap { // ignore invalid yarn data. we'll likely clobber it later anyway. try { this.yarnLock.parse(yarn) - } catch (_) {} + } catch { + // ignore errors + } } return data ? parseJSON(data) : {} @@ -515,8 +517,10 @@ class Shrinkwrap { !(lock.lockfileVersion >= 2) && !lock.requires // load old lockfile deps into the packages listing + // eslint-disable-next-line promise/always-return if (lock.dependencies && !lock.packages) { return rpj(this.path + '/package.json').then(pkg => pkg, er => ({})) + // eslint-disable-next-line promise/always-return .then(pkg => { this[_loadAll]('', null, this.data) this[_fixDependencies](pkg) diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/signal-handling.js b/deps/npm/node_modules/@npmcli/arborist/lib/signal-handling.js index 0afbb05dcfc641e..18841d944ffe782 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/signal-handling.js @@ -19,7 +19,9 @@ const setup = fn => { for (const sig of signals) { try { process.removeListener(sig, sigListeners[sig]) - } catch (er) {} + } catch { + // ignore errors + } } process.removeListener('beforeExit', onBeforeExit) sigListeners.loaded = false @@ -62,7 +64,9 @@ const setup = fn => { process.setMaxListeners(length + 1) } process.on(sig, sigListeners[sig]) - } catch (er) {} + } catch { + // ignore errors + } } sigListeners.loaded = true diff --git a/deps/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js b/deps/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js index 789741976269d32..49b53c8f6aaca51 100644 --- a/deps/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +++ b/deps/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js @@ -21,10 +21,12 @@ const specFromLock = (name, lock, where) => { if (lock.resolved) { return npa.resolve(name, lock.resolved, where) } - } catch (_) { } + } catch { + // ignore errors + } try { return npa.resolve(name, lock.version, where) - } catch (_) { + } catch { return {} } } diff --git a/deps/npm/node_modules/@npmcli/arborist/package.json b/deps/npm/node_modules/@npmcli/arborist/package.json index 7bfb90a079da446..b7cd92ba4cb11ce 100644 --- a/deps/npm/node_modules/@npmcli/arborist/package.json +++ b/deps/npm/node_modules/@npmcli/arborist/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/arborist", - "version": "5.4.0", + "version": "5.6.1", "description": "Manage node_modules trees", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", @@ -11,20 +11,20 @@ "@npmcli/name-from-folder": "^1.0.1", "@npmcli/node-gyp": "^2.0.0", "@npmcli/package-json": "^2.0.0", - "@npmcli/query": "^1.1.1", + "@npmcli/query": "^1.2.0", "@npmcli/run-script": "^4.1.3", - "bin-links": "^3.0.0", - "cacache": "^16.0.6", + "bin-links": "^3.0.3", + "cacache": "^16.1.3", "common-ancestor-path": "^1.0.1", "json-parse-even-better-errors": "^2.3.1", "json-stringify-nice": "^1.1.4", "minimatch": "^5.1.0", "mkdirp": "^1.0.4", "mkdirp-infer-owner": "^2.0.0", - "nopt": "^5.0.0", + "nopt": "^6.0.0", "npm-install-checks": "^5.0.0", "npm-package-arg": "^9.0.0", - "npm-pick-manifest": "^7.0.0", + "npm-pick-manifest": "^7.0.2", "npm-registry-fetch": "^13.0.0", "npmlog": "^6.0.2", "pacote": "^13.6.1", @@ -41,8 +41,8 @@ "walk-up-path": "^1.0.0" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "benchmark": "^2.1.4", "chalk": "^4.1.0", "minify-registry-metadata": "^2.1.0", @@ -56,9 +56,6 @@ "snap": "tap", "postsnap": "npm run lintfix", "test-proxy": "ARBORIST_TEST_PROXY=1 tap --snapshot", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "eslint": "eslint", "lint": "eslint \"**/*.js\"", "lintfix": "npm run lint -- --fix", @@ -103,6 +100,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/@npmcli/config/lib/index.js b/deps/npm/node_modules/@npmcli/config/lib/index.js index 8c2b181ca9c6188..fe5cfd2aa9ed521 100644 --- a/deps/npm/node_modules/@npmcli/config/lib/index.js +++ b/deps/npm/node_modules/@npmcli/config/lib/index.js @@ -296,6 +296,7 @@ class Config { // might be a security hazard, which was the intention. try { this.setCredentialsByURI(reg, creds) + // eslint-disable-next-line no-empty } catch (_) {} process.emit('timeEnd', 'config:load:credentials') @@ -366,9 +367,11 @@ class Config { if (!/^npm_config_/i.test(envKey) || envVal === '') { continue } - const key = envKey.slice('npm_config_'.length) - .replace(/(?!^)_/g, '-') // don't replace _ at the start of the key - .toLowerCase() + let key = envKey.slice('npm_config_'.length) + if (!key.startsWith('//')) { // don't normalize nerf-darted keys + key = key.replace(/(?!^)_/g, '-') // don't replace _ at the start of the key + .toLowerCase() + } conf[key] = envVal } this[_loadObject](conf, 'env', 'environment') @@ -654,6 +657,7 @@ class Config { // saved back to the .npmrc file, so we're good. try { this.setCredentialsByURI(reg, creds) + // eslint-disable-next-line no-empty } catch (_) {} } @@ -691,8 +695,6 @@ class Config { this.delete(`_password`, 'user') this.delete(`username`, 'user') } - this.delete(`${nerfed}:-authtoken`, 'user') - this.delete(`${nerfed}:_authtoken`, 'user') this.delete(`${nerfed}:_authToken`, 'user') this.delete(`${nerfed}:_auth`, 'user') this.delete(`${nerfed}:_password`, 'user') @@ -732,8 +734,6 @@ class Config { // send auth if we have it, only to the URIs under the nerf dart. this.delete(`${nerfed}:always-auth`, 'user') - this.delete(`${nerfed}:-authtoken`, 'user') - this.delete(`${nerfed}:_authtoken`, 'user') this.delete(`${nerfed}:email`, 'user') if (certfile && keyfile) { this.set(`${nerfed}:certfile`, certfile, 'user') @@ -767,6 +767,11 @@ class Config { const nerfed = nerfDart(uri) const creds = {} + const deprecatedAuthWarning = [ + '`_auth`, `_authToken`, `username` and `_password` must be scoped to a registry.', + 'see `npm help npmrc` for more information.', + ].join(' ') + const email = this.get(`${nerfed}:email`) || this.get('email') if (email) { creds.email = email @@ -780,12 +785,13 @@ class Config { // cert/key may be used in conjunction with other credentials, thus no `return` } - const tokenReg = this.get(`${nerfed}:_authToken`) || - this.get(`${nerfed}:_authtoken`) || - this.get(`${nerfed}:-authtoken`) || - nerfed === nerfDart(this.get('registry')) && this.get('_authToken') + const defaultToken = nerfDart(this.get('registry')) && this.get('_authToken') + const tokenReg = this.get(`${nerfed}:_authToken`) || defaultToken if (tokenReg) { + if (tokenReg === defaultToken) { + log.warn('config', deprecatedAuthWarning) + } creds.token = tokenReg return creds } @@ -820,6 +826,7 @@ class Config { const userDef = this.get('username') const passDef = this.get('_password') if (userDef && passDef) { + log.warn('config', deprecatedAuthWarning) creds.username = userDef creds.password = Buffer.from(passDef, 'base64').toString('utf8') const auth = `${creds.username}:${creds.password}` @@ -834,6 +841,7 @@ class Config { return creds } + log.warn('config', deprecatedAuthWarning) const authDecode = Buffer.from(auth, 'base64').toString('utf8') const authSplit = authDecode.split(':') creds.username = authSplit.shift() diff --git a/deps/npm/node_modules/@npmcli/config/package.json b/deps/npm/node_modules/@npmcli/config/package.json index 2f561c12233dc30..81c36228c6b4a90 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": "4.2.0", + "version": "4.2.2", "files": [ "bin/", "lib/" @@ -31,14 +31,14 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/template-oss": "3.6.0", "tap": "^16.0.1" }, "dependencies": { "@npmcli/map-workspaces": "^2.0.2", "ini": "^3.0.0", "mkdirp-infer-owner": "^2.0.0", - "nopt": "^5.0.0", + "nopt": "^6.0.0", "proc-log": "^2.0.0", "read-package-json-fast": "^2.0.3", "semver": "^7.3.5", @@ -49,6 +49,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.6.0" } } diff --git a/deps/npm/node_modules/@npmcli/fs/lib/common/owner-sync.js b/deps/npm/node_modules/@npmcli/fs/lib/common/owner-sync.js index 8fa18d5121effbf..3704aa6d18e1e14 100644 --- a/deps/npm/node_modules/@npmcli/fs/lib/common/owner-sync.js +++ b/deps/npm/node_modules/@npmcli/fs/lib/common/owner-sync.js @@ -50,11 +50,15 @@ const update = (path, uid, gid) => { if (uid === stat.uid && gid === stat.gid) { return } - } catch (err) {} + } catch { + // ignore errors + } try { fs.chownSync(path, uid, gid) - } catch (err) {} + } catch { + // ignore errors + } } // accepts a `path` and the `owner` property of an options object and normalizes diff --git a/deps/npm/node_modules/@npmcli/fs/lib/common/owner.js b/deps/npm/node_modules/@npmcli/fs/lib/common/owner.js index 3fe167cfc30aa29..9f02d41a5e4b312 100644 --- a/deps/npm/node_modules/@npmcli/fs/lib/common/owner.js +++ b/deps/npm/node_modules/@npmcli/fs/lib/common/owner.js @@ -50,11 +50,15 @@ const update = async (path, uid, gid) => { if (uid === stat.uid && gid === stat.gid) { return } - } catch (err) {} + } catch { + // ignore errors + } try { await fs.chown(path, uid, gid) - } catch (err) {} + } catch { + // ignore errors + } } // accepts a `path` and the `owner` property of an options object and normalizes diff --git a/deps/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js b/deps/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js index ad08e6ee6e6d627..81db59dd054b422 100644 --- a/deps/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +++ b/deps/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js @@ -27,7 +27,9 @@ const withTempDir = async (root, fn, opts) => { try { await rm(target, { force: true, recursive: true }) - } catch {} + } catch { + // ignore errors + } if (err) { throw err diff --git a/deps/npm/node_modules/@npmcli/fs/package.json b/deps/npm/node_modules/@npmcli/fs/package.json index 9e18028218d1a28..1512fd6e4b0acb0 100644 --- a/deps/npm/node_modules/@npmcli/fs/package.json +++ b/deps/npm/node_modules/@npmcli/fs/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/fs", - "version": "2.1.1", + "version": "2.1.2", "description": "filesystem utilities for the npm cli", "main": "lib/index.js", "files": [ diff --git a/deps/npm/node_modules/@npmcli/git/lib/which.js b/deps/npm/node_modules/@npmcli/git/lib/which.js index a2f690e1bce80c0..dc2a1ad21216631 100644 --- a/deps/npm/node_modules/@npmcli/git/lib/which.js +++ b/deps/npm/node_modules/@npmcli/git/lib/which.js @@ -3,7 +3,9 @@ const which = require('which') let gitPath try { gitPath = which.sync('git') -} catch (e) {} +} catch { + // ignore errors +} module.exports = (opts = {}) => { if (opts.git) { diff --git a/deps/npm/node_modules/@npmcli/git/package.json b/deps/npm/node_modules/@npmcli/git/package.json index 08525ae99e8ec39..86b8e8539926655 100644 --- a/deps/npm/node_modules/@npmcli/git/package.json +++ b/deps/npm/node_modules/@npmcli/git/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/git", - "version": "3.0.1", + "version": "3.0.2", "main": "lib/index.js", "files": [ "bin/", @@ -31,7 +31,9 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.2", + "@npmcli/template-oss": "3.5.0", + "npm-package-arg": "^9.1.0", + "rimraf": "^3.0.2", "slash": "^3.0.0", "tap": "^16.0.1" }, @@ -52,6 +54,6 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "3.2.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/LICENSE b/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/LICENSE new file mode 100644 index 000000000000000..20a476254092375 --- /dev/null +++ b/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/npm-bundled/index.js b/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/index.js similarity index 100% rename from deps/npm/node_modules/npm-bundled/index.js rename to deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/index.js diff --git a/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/package.json b/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/package.json new file mode 100644 index 000000000000000..cf20e297b0b639b --- /dev/null +++ b/deps/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled/package.json @@ -0,0 +1,30 @@ +{ + "name": "npm-bundled", + "version": "1.1.2", + "description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/npm/npm-bundled.git" + }, + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "license": "ISC", + "devDependencies": { + "mkdirp": "^0.5.1", + "mutate-fs": "^1.1.0", + "rimraf": "^2.6.1", + "tap": "^12.0.1" + }, + "scripts": { + "test": "tap test/*.js -J --100", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --all; git push origin --tags" + }, + "files": [ + "index.js" + ], + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } +} diff --git a/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js b/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js index 3ac545e9c15c4e2..f93bc2911e89fde 100644 --- a/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js +++ b/deps/npm/node_modules/@npmcli/map-workspaces/lib/index.js @@ -12,7 +12,7 @@ function appendNegatedPatterns (patterns) { for (let pattern of patterns) { const excl = pattern.match(/^!+/) if (excl) { - pattern = pattern.substr(excl[0].length) + pattern = pattern.slice(excl[0].length) } // strip off any / from the start of the pattern. /foo => foo diff --git a/deps/npm/node_modules/@npmcli/map-workspaces/package.json b/deps/npm/node_modules/@npmcli/map-workspaces/package.json index 3025081e5529b27..a71a1d2805efae1 100644 --- a/deps/npm/node_modules/@npmcli/map-workspaces/package.json +++ b/deps/npm/node_modules/@npmcli/map-workspaces/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/map-workspaces", - "version": "2.0.3", + "version": "2.0.4", "main": "lib/index.js", "files": [ "bin/", @@ -42,7 +42,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.4.1", + "@npmcli/template-oss": "3.5.0", "tap": "^16.0.1" }, "dependencies": { @@ -53,6 +53,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.4.1" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/@npmcli/move-file/lib/index.js b/deps/npm/node_modules/@npmcli/move-file/lib/index.js index ecc55f0171da5f5..5789bb127e0966e 100644 --- a/deps/npm/node_modules/@npmcli/move-file/lib/index.js +++ b/deps/npm/node_modules/@npmcli/move-file/lib/index.js @@ -97,14 +97,19 @@ const moveFile = async (source, destination, options = {}, root = true, symlinks } // try to determine what the actual file is so we can create the correct // type of symlink in windows - let targetStat + let targetStat = 'file' try { targetStat = await stat(resolve(dirname(symSource), target)) - } catch (err) {} + if (targetStat.isDirectory()) { + targetStat = 'junction' + } + } catch { + // targetStat remains 'file' + } await symlink( target, symDestination, - targetStat && targetStat.isDirectory() ? 'junction' : 'file' + targetStat ) })) await rimraf(source) @@ -157,14 +162,19 @@ const moveFileSync = (source, destination, options = {}, root = true, symlinks = } // try to determine what the actual file is so we can create the correct // type of symlink in windows - let targetStat + let targetStat = 'file' try { targetStat = statSync(resolve(dirname(symSource), target)) - } catch (err) {} + if (targetStat.isDirectory()) { + targetStat = 'junction' + } + } catch { + // targetStat remains 'file' + } symlinkSync( target, symDestination, - targetStat && targetStat.isDirectory() ? 'junction' : 'file' + targetStat ) } rimrafSync(source) diff --git a/deps/npm/node_modules/@npmcli/move-file/package.json b/deps/npm/node_modules/@npmcli/move-file/package.json index 1b1d377b0c7b2b9..58793b93a9ca0f8 100644 --- a/deps/npm/node_modules/@npmcli/move-file/package.json +++ b/deps/npm/node_modules/@npmcli/move-file/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/move-file", - "version": "2.0.0", + "version": "2.0.1", "files": [ "bin/", "lib/" @@ -13,7 +13,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.2", + "@npmcli/template-oss": "3.5.0", "tap": "^16.0.1" }, "scripts": { @@ -42,6 +42,6 @@ "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.2.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/@npmcli/query/lib/index.js b/deps/npm/node_modules/@npmcli/query/lib/index.js index 36a8c700caae12a..44f539ee0a1254d 100644 --- a/deps/npm/node_modules/@npmcli/query/lib/index.js +++ b/deps/npm/node_modules/@npmcli/query/lib/index.js @@ -118,10 +118,40 @@ const fixupNestedPseudo = astNode => { transformAst(newRootNode) } +// :semver(, [selector], [function]) const fixupSemverSpecs = astNode => { - const children = astNode.nodes[0].nodes + // the first child node contains the version or range, most likely as a tag and a series of + // classes. we combine them into a single string here. this is the only required input. + const children = astNode.nodes.shift().nodes const value = children.reduce((res, i) => `${res}${String(i)}`, '') + // next, if we have 2 nodes left then the user called us with a total of 3. that means the + // last one tells us what specific semver function the user is requesting, so we pull that out + let semverFunc + if (astNode.nodes.length === 2) { + const funcNode = astNode.nodes.pop().nodes[0] + if (funcNode.type === 'tag') { + semverFunc = funcNode.value + } + } + + // now if there's a node left, that node is our selector. since that is the last remaining + // child node, we call fixupAttr on ourselves so that the attribute selectors get parsed + if (astNode.nodes.length === 1) { + fixupAttr(astNode) + } else { + // we weren't provided a selector, so we default to `[version]`. note, there's no default + // operator here. that's because we don't know yet if the user has provided us a version + // or range to assert against + astNode.attributeMatcher = { + insensitive: false, + attribute: 'version', + qualifiedAttribute: 'version', + } + astNode.lookupProperties = [] + } + + astNode.semverFunc = semverFunc astNode.semverValue = value astNode.nodes.length = 0 } diff --git a/deps/npm/node_modules/@npmcli/query/package.json b/deps/npm/node_modules/@npmcli/query/package.json index 0c9247e0bb23bc3..610d0b71891825e 100644 --- a/deps/npm/node_modules/@npmcli/query/package.json +++ b/deps/npm/node_modules/@npmcli/query/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/query", - "version": "1.1.1", + "version": "1.2.0", "description": "npm query parser and tools", "main": "lib/index.js", "scripts": { diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/escape.js b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js index 303100d337eb7f4..9aca8bde70a6e9e 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/escape.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/escape.js @@ -36,14 +36,11 @@ const cmd = (input, doubleEscape) => { } // and finally, prefix shell meta chars with a ^ - result = result.replace(/[ !^&()<>|"]/g, '^$&') + result = result.replace(/[ !%^&()<>|"]/g, '^$&') if (doubleEscape) { - result = result.replace(/[ !^&()<>|"]/g, '^$&') + result = result.replace(/[ !%^&()<>|"]/g, '^$&') } - // except for % which is escaped with another %, and only once - result = result.replace(/%/g, '%%') - return result } @@ -65,13 +62,7 @@ const sh = (input) => { return result } -// disabling the no-control-regex rule for this line as we very specifically _do_ want to -// replace those characters if they somehow exist at this point, which is highly unlikely -// eslint-disable-next-line no-control-regex -const filename = (input) => input.replace(/[<>:"/\\|?*\x00-\x1F]/g, '') - module.exports = { cmd, sh, - filename, } diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js index 7725fd976c893d2..5b06db3c16eac5f 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js @@ -1,19 +1,10 @@ /* eslint camelcase: "off" */ const isWindows = require('./is-windows.js') const setPATH = require('./set-path.js') -const { unlinkSync: unlink, writeFileSync: writeFile } = require('fs') -const { tmpdir } = require('os') const { resolve } = require('path') const which = require('which') const npm_config_node_gyp = require.resolve('node-gyp/bin/node-gyp.js') const escape = require('./escape.js') -const { randomBytes } = require('crypto') - -const translateWinPathToPosix = (path) => { - return path - .replace(/^([A-z]):/, '/$1') - .replace(/\\/g, '/') -} const makeSpawnArgs = options => { const { @@ -38,10 +29,7 @@ const makeSpawnArgs = options => { npm_config_node_gyp, }) - const fileName = escape.filename(`${event}-${randomBytes(4).toString('hex')}`) - let scriptFile - let script = '' - + let doubleEscape = false const isCmd = /(?:^|\\)cmd(?:\.exe)?$/i.test(scriptShell) if (isCmd) { let initialCmd = '' @@ -68,26 +56,18 @@ const makeSpawnArgs = options => { pathToInitial = initialCmd.toLowerCase() } - const doubleEscape = pathToInitial.endsWith('.cmd') || pathToInitial.endsWith('.bat') - - scriptFile = resolve(tmpdir(), `${fileName}.cmd`) - script += '@echo off\n' - script += cmd - if (args.length) { - script += ` ${args.map((arg) => escape.cmd(arg, doubleEscape)).join(' ')}` - } - } else { - scriptFile = resolve(tmpdir(), `${fileName}.sh`) - script = cmd - if (args.length) { - script += ` ${args.map((arg) => escape.sh(arg)).join(' ')}` - } + doubleEscape = pathToInitial.endsWith('.cmd') || pathToInitial.endsWith('.bat') } - writeFile(scriptFile, script) + let script = cmd + for (const arg of args) { + script += isCmd + ? ` ${escape.cmd(arg, doubleEscape)}` + : ` ${escape.sh(arg)}` + } const spawnArgs = isCmd - ? ['/d', '/s', '/c', escape.cmd(scriptFile)] - : [isWindows ? translateWinPathToPosix(scriptFile) : scriptFile] + ? ['/d', '/s', '/c', script] + : ['-c', '--', script] const spawnOpts = { env: spawnEnv, @@ -97,16 +77,7 @@ const makeSpawnArgs = options => { ...(isCmd ? { windowsVerbatimArguments: true } : {}), } - const cleanup = () => { - // delete the script, this is just a best effort - try { - unlink(scriptFile) - } catch (err) { - // ignore errors - } - } - - return [scriptShell, spawnArgs, spawnOpts, cleanup] + return [scriptShell, spawnArgs, spawnOpts] } module.exports = makeSpawnArgs diff --git a/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js b/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js index ec6ef31e50ab0e3..c10d20bb7348066 100644 --- a/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +++ b/deps/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js @@ -6,8 +6,17 @@ const signalManager = require('./signal-manager.js') const isServerPackage = require('./is-server-package.js') // you wouldn't like me when I'm angry... -const bruce = (id, event, cmd) => - `\n> ${id ? id + ' ' : ''}${event}\n> ${cmd.trim().replace(/\n/g, '\n> ')}\n` +const bruce = (id, event, cmd, args) => { + let banner = id + ? `\n> ${id} ${event}\n` + : `\n> ${event}\n` + banner += `> ${cmd.trim().replace(/\n/g, '\n> ')}` + if (args.length) { + banner += ` ${args.join(' ')}` + } + banner += '\n' + return banner +} const runScriptPkg = async options => { const { @@ -52,10 +61,10 @@ const runScriptPkg = async options => { if (stdio === 'inherit' && banner !== false) { // we're dumping to the parent's stdout, so print the banner - console.log(bruce(pkg._id, event, cmd)) + console.log(bruce(pkg._id, event, cmd, args)) } - const [spawnShell, spawnArgs, spawnOpts, cleanup] = makeSpawnArgs({ + const [spawnShell, spawnArgs, spawnOpts] = makeSpawnArgs({ event, path, scriptShell, @@ -93,7 +102,7 @@ const runScriptPkg = async options => { } else { throw er } - }).finally(cleanup) + }) } module.exports = runScriptPkg diff --git a/deps/npm/node_modules/@npmcli/run-script/package.json b/deps/npm/node_modules/@npmcli/run-script/package.json index a6629826d29c2cb..551dc610f491475 100644 --- a/deps/npm/node_modules/@npmcli/run-script/package.json +++ b/deps/npm/node_modules/@npmcli/run-script/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/run-script", - "version": "4.2.0", + "version": "4.2.1", "description": "Run a lifecycle script for a package (descendant of npm-lifecycle)", "author": "GitHub Inc.", "license": "ISC", diff --git a/deps/npm/node_modules/are-we-there-yet/lib/tracker-group.js b/deps/npm/node_modules/are-we-there-yet/lib/tracker-group.js index 9da13f8a7e116af..a3c7af804c4d3b0 100644 --- a/deps/npm/node_modules/are-we-there-yet/lib/tracker-group.js +++ b/deps/npm/node_modules/are-we-there-yet/lib/tracker-group.js @@ -103,7 +103,7 @@ TrackerGroup.prototype.finish = function () { var buffer = ' ' TrackerGroup.prototype.debug = function (depth) { depth = depth || 0 - var indent = depth ? buffer.substr(0, depth) : '' + var indent = depth ? buffer.slice(0, depth) : '' var output = indent + (this.name || 'top') + ': ' + this.completed() + '\n' this.trackers.forEach(function (tracker) { if (tracker instanceof TrackerGroup) { diff --git a/deps/npm/node_modules/are-we-there-yet/package.json b/deps/npm/node_modules/are-we-there-yet/package.json index 67c01e9cbc8e4f8..cc3d7504299fa2c 100644 --- a/deps/npm/node_modules/are-we-there-yet/package.json +++ b/deps/npm/node_modules/are-we-there-yet/package.json @@ -1,12 +1,12 @@ { "name": "are-we-there-yet", - "version": "3.0.0", + "version": "3.0.1", "description": "Keep track of the overall completion of many disparate processes", "main": "lib/index.js", "scripts": { "test": "tap", "npmclilint": "npmcli-lint", - "lint": "eslint '**/*.js'", + "lint": "eslint \"**/*.js\"", "lintfix": "npm run lint -- --fix", "posttest": "npm run lint", "postsnap": "npm run lintfix --", @@ -14,8 +14,8 @@ "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", "snap": "tap", - "postlint": "npm-template-check", - "template-copy": "npm-template-copy --force" + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force" }, "repository": { "type": "git", @@ -28,22 +28,20 @@ }, "homepage": "https://github.com/npm/are-we-there-yet", "devDependencies": { - "@npmcli/eslint-config": "^2.0.0", - "@npmcli/template-oss": "^2.7.1", - "eslint": "^8.8.0", - "eslint-plugin-node": "^11.1.0", - "tap": "^15.0.9" + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.0.1" }, "dependencies": { "delegates": "^1.0.0", "readable-stream": "^3.6.0" }, "files": [ - "bin", - "lib" + "bin/", + "lib/" ], "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "tap": { "branches": 68, @@ -52,6 +50,7 @@ "lines": 92 }, "templateOSS": { - "version": "2.7.1" + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/bin-links/lib/link-gently.js b/deps/npm/node_modules/bin-links/lib/link-gently.js index 671ce38a586e7df..d9ef25e7c5b0b9a 100644 --- a/deps/npm/node_modules/bin-links/lib/link-gently.js +++ b/deps/npm/node_modules/bin-links/lib/link-gently.js @@ -64,6 +64,8 @@ const linkGently = async ({ path, to, from, absFrom, force }) => { if (target.indexOf(path) === 0 || force) { return rm(to).then(() => CLOBBER) } + // neither skip nor clobber + return false }) } else { // doesn't exist, dir might not either diff --git a/deps/npm/node_modules/bin-links/lib/shim-bin.js b/deps/npm/node_modules/bin-links/lib/shim-bin.js index 70259a49e5b0c08..bde328e510c53a0 100644 --- a/deps/npm/node_modules/bin-links/lib/shim-bin.js +++ b/deps/npm/node_modules/bin-links/lib/shim-bin.js @@ -56,12 +56,12 @@ const shimBin = ({ path, to, from, absFrom, force }) => { } if (force) { - return + return false } return Promise.all(shims.map((s, i) => [s, stats[i]]).map(([s, st]) => { if (!st) { - return + return false } return readCmdShim(s) .then(target => { @@ -69,6 +69,7 @@ const shimBin = ({ path, to, from, absFrom, force }) => { if (target.indexOf(resolve(path)) !== 0) { return failEEXIST({ from, to, path }) } + return false }, er => handleReadCmdShimError({ er, from, to })) })) }) diff --git a/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/LICENSE b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/LICENSE new file mode 100644 index 000000000000000..19cec97b1846830 --- /dev/null +++ b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/lib/index.js b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/lib/index.js new file mode 100644 index 000000000000000..d6f0a581b9e6615 --- /dev/null +++ b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/lib/index.js @@ -0,0 +1,64 @@ +// pass in a manifest with a 'bin' field here, and it'll turn it +// into a properly santized bin object +const { join, basename } = require('path') + +const normalize = pkg => + !pkg.bin ? removeBin(pkg) + : typeof pkg.bin === 'string' ? normalizeString(pkg) + : Array.isArray(pkg.bin) ? normalizeArray(pkg) + : typeof pkg.bin === 'object' ? normalizeObject(pkg) + : removeBin(pkg) + +const normalizeString = pkg => { + if (!pkg.name) { + return removeBin(pkg) + } + pkg.bin = { [pkg.name]: pkg.bin } + return normalizeObject(pkg) +} + +const normalizeArray = pkg => { + pkg.bin = pkg.bin.reduce((acc, k) => { + acc[basename(k)] = k + return acc + }, {}) + return normalizeObject(pkg) +} + +const removeBin = pkg => { + delete pkg.bin + return pkg +} + +const normalizeObject = pkg => { + const orig = pkg.bin + const clean = {} + let hasBins = false + Object.keys(orig).forEach(binKey => { + const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1) + + if (typeof orig[binKey] !== 'string' || !base) { + return + } + + const binTarget = join('/', orig[binKey]) + .replace(/\\/g, '/').slice(1) + + if (!binTarget) { + return + } + + clean[base] = binTarget + hasBins = true + }) + + if (hasBins) { + pkg.bin = clean + } else { + delete pkg.bin + } + + return pkg +} + +module.exports = normalize diff --git a/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/package.json b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/package.json new file mode 100644 index 000000000000000..02de808d9b70255 --- /dev/null +++ b/deps/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin/package.json @@ -0,0 +1,41 @@ +{ + "name": "npm-normalize-package-bin", + "version": "2.0.0", + "description": "Turn any flavor of allowable package.json bin into a normalized object", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/npm-normalize-package-bin.git" + }, + "author": "GitHub Inc.", + "license": "ISC", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "posttest": "npm run lint" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" + } +} diff --git a/deps/npm/node_modules/bin-links/package.json b/deps/npm/node_modules/bin-links/package.json index a86948de153c5ca..ff240c227622d81 100644 --- a/deps/npm/node_modules/bin-links/package.json +++ b/deps/npm/node_modules/bin-links/package.json @@ -1,6 +1,6 @@ { "name": "bin-links", - "version": "3.0.1", + "version": "3.0.3", "description": "JavaScript package binary linker", "main": "./lib/index.js", "scripts": { @@ -28,17 +28,17 @@ "dependencies": { "cmd-shim": "^5.0.0", "mkdirp-infer-owner": "^2.0.0", - "npm-normalize-package-bin": "^1.0.0", + "npm-normalize-package-bin": "^2.0.0", "read-cmd-shim": "^3.0.0", "rimraf": "^3.0.0", "write-file-atomic": "^4.0.0" }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.2", + "@npmcli/template-oss": "3.5.0", "mkdirp": "^1.0.3", "require-inject": "^1.4.4", - "tap": "^15.0.10" + "tap": "^16.0.1" }, "tap": { "check-coverage": true, @@ -55,6 +55,6 @@ "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "3.2.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/cacache/lib/content/read.js b/deps/npm/node_modules/cacache/lib/content/read.js index 8367ccb205d0b00..7c20c75257b4f4b 100644 --- a/deps/npm/node_modules/cacache/lib/content/read.js +++ b/deps/npm/node_modules/cacache/lib/content/read.js @@ -81,7 +81,7 @@ function readStream (cache, integrity, opts = {}) { return stream.emit('error', sizeError(size, stat.size)) } - readPipeline(cpath, stat.size, sri, stream) + return readPipeline(cpath, stat.size, sri, stream) }).catch(err => stream.emit('error', err)) return stream diff --git a/deps/npm/node_modules/cacache/lib/content/write.js b/deps/npm/node_modules/cacache/lib/content/write.js index 62388dc81d0fdd4..0e8c0f49360648f 100644 --- a/deps/npm/node_modules/cacache/lib/content/write.js +++ b/deps/npm/node_modules/cacache/lib/content/write.js @@ -80,9 +80,11 @@ class CacacheWriteStream extends Flush { // defer this one tick by rejecting a promise on it. return Promise.reject(e).catch(cb) } + // eslint-disable-next-line promise/catch-or-return this.handleContentP.then( (res) => { res.integrity && this.emit('integrity', res.integrity) + // eslint-disable-next-line promise/always-return res.size !== null && this.emit('size', res.size) cb() }, diff --git a/deps/npm/node_modules/cacache/lib/entry-index.js b/deps/npm/node_modules/cacache/lib/entry-index.js index cbfa619099f906d..1dc73a93f6b29e7 100644 --- a/deps/npm/node_modules/cacache/lib/entry-index.js +++ b/deps/npm/node_modules/cacache/lib/entry-index.js @@ -285,6 +285,7 @@ function lsStream (cache) { })) })) stream.end() + return stream }).catch(err => stream.emit('error', err)) return stream diff --git a/deps/npm/node_modules/cacache/lib/get.js b/deps/npm/node_modules/cacache/lib/get.js index cc9d8f6796647ac..254b4ecc38b57e5 100644 --- a/deps/npm/node_modules/cacache/lib/get.js +++ b/deps/npm/node_modules/cacache/lib/get.js @@ -155,6 +155,7 @@ function getStream (cache, key, opts = {}) { stream.unshift(memoStream) } stream.unshift(src) + return stream }).catch((err) => stream.emit('error', err)) return stream diff --git a/deps/npm/node_modules/cacache/package.json b/deps/npm/node_modules/cacache/package.json index bb5674dafca81b3..7dbd407d8fccf30 100644 --- a/deps/npm/node_modules/cacache/package.json +++ b/deps/npm/node_modules/cacache/package.json @@ -1,6 +1,6 @@ { "name": "cacache", - "version": "16.1.1", + "version": "16.1.3", "cache-version": { "content": "2", "index": "5" @@ -65,7 +65,7 @@ "rimraf": "^3.0.2", "ssri": "^9.0.0", "tar": "^6.1.11", - "unique-filename": "^1.1.1" + "unique-filename": "^2.0.0" }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", diff --git a/deps/npm/node_modules/diff/dist/diff.js b/deps/npm/node_modules/diff/dist/diff.js index bba91954f4b23ba..7fa3a556c420007 100644 --- a/deps/npm/node_modules/diff/dist/diff.js +++ b/deps/npm/node_modules/diff/dist/diff.js @@ -1,3 +1,40 @@ +/*! + + diff v5.1.0 + +Software License Agreement (BSD License) + +Copyright (c) 2009-2015, Kevin Decker + +All rights reserved. + +Redistribution and use of this software in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + +* Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + +* Neither the name of Kevin Decker nor the names of its + contributors may be used to endorse or promote products + derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +@license +*/ (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : @@ -38,6 +75,11 @@ oldLen = oldString.length; var editLength = 1; var maxEditLength = newLen + oldLen; + + if (options.maxEditLength) { + maxEditLength = Math.min(maxEditLength, options.maxEditLength); + } + var bestPath = [{ newPos: -1, components: [] @@ -102,15 +144,13 @@ editLength++; } // Performs the length of edit iteration. Is a bit fugly as this has to support the // sync and async mode which is never fun. Loops over execEditLength until a value - // is produced. + // is produced, or until the edit length exceeds options.maxEditLength (if given), + // in which case it will return undefined. if (callback) { (function exec() { setTimeout(function () { - // This should not happen, but we want to be safe. - - /* istanbul ignore next */ if (editLength > maxEditLength) { return callback(); } @@ -928,6 +968,11 @@ } var diff = diffLines(oldStr, newStr, options); + + if (!diff) { + return; + } + diff.push({ value: '', lines: [] diff --git a/deps/npm/node_modules/diff/dist/diff.min.js b/deps/npm/node_modules/diff/dist/diff.min.js new file mode 100644 index 000000000000000..80c20de5b757df6 --- /dev/null +++ b/deps/npm/node_modules/diff/dist/diff.min.js @@ -0,0 +1,38 @@ +/*! + + diff v5.1.0 + +Software License Agreement (BSD License) + +Copyright (c) 2009-2015, Kevin Decker + +All rights reserved. + +Redistribution and use of this software in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + +* Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + +* Neither the name of Kevin Decker nor the names of its + contributors may be used to endorse or promote products + derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER +IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +@license +*/ +!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((e=e||self).Diff={})}(this,function(e){"use strict";function t(){}t.prototype={diff:function(u,a,e){var n=2=c&&h<=i+1)return d([{value:this.join(a),count:a.length}]);function o(){for(var e,n=-1*p;n<=p;n+=2){var t=void 0,r=v[n-1],i=v[n+1],o=(i?i.newPos:0)-n;r&&(v[n-1]=void 0);var l=r&&r.newPos+1=c&&h<=o+1)return d(function(e,n,t,r,i){for(var o=0,l=n.length,s=0,u=0;oe.length?t:e}),d.value=e.join(f)):d.value=e.join(t.slice(s,s+d.count)),s+=d.count,d.added||(u+=d.count))}var c=n[l-1];1e.length)&&(n=e.length);for(var t=0,r=new Array(n);t=c.length-2&&u.length<=d.context&&(i=/\n$/.test(a),o=/\n$/.test(f),l=0==u.length&&g.length>r.oldLines,!i&&l&&0e.length)return!1;for(var t=0;t"):i.removed&&t.push(""),t.push((n=i.value,n.replace(/&/g,"&").replace(//g,">").replace(/"/g,"""))),i.added?t.push(""):i.removed&&t.push("")}return t.join("")},e.createPatch=function(e,n,t,r,i,o){return y(e,e,n,t,r,i,o)},e.createTwoFilesPatch=y,e.diffArrays=function(e,n,t){return g.diff(e,n,t)},e.diffChars=function(e,n,t){return r.diff(e,n,t)},e.diffCss=function(e,n,t){return f.diff(e,n,t)},e.diffJson=function(e,n,t){return p.diff(e,n,t)},e.diffLines=L,e.diffSentences=function(e,n,t){return a.diff(e,n,t)},e.diffTrimmedLines=function(e,n,t){var r=i(t,{ignoreWhitespace:!0});return u.diff(e,n,r)},e.diffWords=function(e,n,t){return t=i(t,{ignoreWhitespace:!0}),s.diff(e,n,t)},e.diffWordsWithSpace=function(e,n,t){return s.diff(e,n,t)},e.merge=function(e,n,t){e=b(e,t),n=b(n,t);var r={};(e.index||n.index)&&(r.index=e.index||n.index),(e.newFileName||n.newFileName)&&(F(e)?F(n)?(r.oldFileName=N(r,e.oldFileName,n.oldFileName),r.newFileName=N(r,e.newFileName,n.newFileName),r.oldHeader=N(r,e.oldHeader,n.oldHeader),r.newHeader=N(r,e.newHeader,n.newHeader)):(r.oldFileName=e.oldFileName,r.newFileName=e.newFileName,r.oldHeader=e.oldHeader,r.newHeader=e.newHeader):(r.oldFileName=n.oldFileName||e.oldFileName,r.newFileName=n.newFileName||e.newFileName,r.oldHeader=n.oldHeader||e.oldHeader,r.newHeader=n.newHeader||e.newHeader)),r.hunks=[];for(var i=0,o=0,l=0,s=0;i maxEditLength) { return callback(); } @@ -301,4 +304,4 @@ function clonePath(path) { components: path.components.slice(0) }; } -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaWZmL2Jhc2UuanMiXSwibmFtZXMiOlsiRGlmZiIsInByb3RvdHlwZSIsImRpZmYiLCJvbGRTdHJpbmciLCJuZXdTdHJpbmciLCJvcHRpb25zIiwiY2FsbGJhY2siLCJzZWxmIiwiZG9uZSIsInZhbHVlIiwic2V0VGltZW91dCIsInVuZGVmaW5lZCIsImNhc3RJbnB1dCIsInJlbW92ZUVtcHR5IiwidG9rZW5pemUiLCJuZXdMZW4iLCJsZW5ndGgiLCJvbGRMZW4iLCJlZGl0TGVuZ3RoIiwibWF4RWRpdExlbmd0aCIsImJlc3RQYXRoIiwibmV3UG9zIiwiY29tcG9uZW50cyIsIm9sZFBvcyIsImV4dHJhY3RDb21tb24iLCJqb2luIiwiY291bnQiLCJleGVjRWRpdExlbmd0aCIsImRpYWdvbmFsUGF0aCIsImJhc2VQYXRoIiwiYWRkUGF0aCIsInJlbW92ZVBhdGgiLCJjYW5BZGQiLCJjYW5SZW1vdmUiLCJjbG9uZVBhdGgiLCJwdXNoQ29tcG9uZW50IiwiYnVpbGRWYWx1ZXMiLCJ1c2VMb25nZXN0VG9rZW4iLCJleGVjIiwicmV0IiwiYWRkZWQiLCJyZW1vdmVkIiwibGFzdCIsInB1c2giLCJjb21tb25Db3VudCIsImVxdWFscyIsImxlZnQiLCJyaWdodCIsImNvbXBhcmF0b3IiLCJpZ25vcmVDYXNlIiwidG9Mb3dlckNhc2UiLCJhcnJheSIsImkiLCJzcGxpdCIsImNoYXJzIiwiY29tcG9uZW50UG9zIiwiY29tcG9uZW50TGVuIiwiY29tcG9uZW50Iiwic2xpY2UiLCJtYXAiLCJvbGRWYWx1ZSIsInRtcCIsImxhc3RDb21wb25lbnQiLCJwb3AiLCJwYXRoIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBZSxTQUFTQSxJQUFULEdBQWdCLENBQUU7O0FBRWpDQSxJQUFJLENBQUNDLFNBQUwsR0FBaUI7QUFBQTs7QUFBQTtBQUNmQyxFQUFBQSxJQURlLGdCQUNWQyxTQURVLEVBQ0NDLFNBREQsRUFDMEI7QUFBQTtBQUFBO0FBQUE7QUFBZEMsSUFBQUEsT0FBYyx1RUFBSixFQUFJO0FBQ3ZDLFFBQUlDLFFBQVEsR0FBR0QsT0FBTyxDQUFDQyxRQUF2Qjs7QUFDQSxRQUFJLE9BQU9ELE9BQVAsS0FBbUIsVUFBdkIsRUFBbUM7QUFDakNDLE1BQUFBLFFBQVEsR0FBR0QsT0FBWDtBQUNBQSxNQUFBQSxPQUFPLEdBQUcsRUFBVjtBQUNEOztBQUNELFNBQUtBLE9BQUwsR0FBZUEsT0FBZjtBQUVBLFFBQUlFLElBQUksR0FBRyxJQUFYOztBQUVBLGFBQVNDLElBQVQsQ0FBY0MsS0FBZCxFQUFxQjtBQUNuQixVQUFJSCxRQUFKLEVBQWM7QUFDWkksUUFBQUEsVUFBVSxDQUFDLFlBQVc7QUFBRUosVUFBQUEsUUFBUSxDQUFDSyxTQUFELEVBQVlGLEtBQVosQ0FBUjtBQUE2QixTQUEzQyxFQUE2QyxDQUE3QyxDQUFWO0FBQ0EsZUFBTyxJQUFQO0FBQ0QsT0FIRCxNQUdPO0FBQ0wsZUFBT0EsS0FBUDtBQUNEO0FBQ0YsS0FqQnNDLENBbUJ2Qzs7O0FBQ0FOLElBQUFBLFNBQVMsR0FBRyxLQUFLUyxTQUFMLENBQWVULFNBQWYsQ0FBWjtBQUNBQyxJQUFBQSxTQUFTLEdBQUcsS0FBS1EsU0FBTCxDQUFlUixTQUFmLENBQVo7QUFFQUQsSUFBQUEsU0FBUyxHQUFHLEtBQUtVLFdBQUwsQ0FBaUIsS0FBS0MsUUFBTCxDQUFjWCxTQUFkLENBQWpCLENBQVo7QUFDQUMsSUFBQUEsU0FBUyxHQUFHLEtBQUtTLFdBQUwsQ0FBaUIsS0FBS0MsUUFBTCxDQUFjVixTQUFkLENBQWpCLENBQVo7QUFFQSxRQUFJVyxNQUFNLEdBQUdYLFNBQVMsQ0FBQ1ksTUFBdkI7QUFBQSxRQUErQkMsTUFBTSxHQUFHZCxTQUFTLENBQUNhLE1BQWxEO0FBQ0EsUUFBSUUsVUFBVSxHQUFHLENBQWpCO0FBQ0EsUUFBSUMsYUFBYSxHQUFHSixNQUFNLEdBQUdFLE1BQTdCO0FBQ0EsUUFBSUcsUUFBUSxHQUFHLENBQUM7QUFBRUMsTUFBQUEsTUFBTSxFQUFFLENBQUMsQ0FBWDtBQUFjQyxNQUFBQSxVQUFVLEVBQUU7QUFBMUIsS0FBRCxDQUFmLENBN0J1QyxDQStCdkM7O0FBQ0EsUUFBSUMsTUFBTSxHQUFHLEtBQUtDLGFBQUwsQ0FBbUJKLFFBQVEsQ0FBQyxDQUFELENBQTNCLEVBQWdDaEIsU0FBaEMsRUFBMkNELFNBQTNDLEVBQXNELENBQXRELENBQWI7O0FBQ0EsUUFBSWlCLFFBQVEsQ0FBQyxDQUFELENBQVIsQ0FBWUMsTUFBWixHQUFxQixDQUFyQixJQUEwQk4sTUFBMUIsSUFBb0NRLE1BQU0sR0FBRyxDQUFULElBQWNOLE1BQXRELEVBQThEO0FBQzVEO0FBQ0EsYUFBT1QsSUFBSSxDQUFDLENBQUM7QUFBQ0MsUUFBQUEsS0FBSyxFQUFFLEtBQUtnQixJQUFMLENBQVVyQixTQUFWLENBQVI7QUFBOEJzQixRQUFBQSxLQUFLLEVBQUV0QixTQUFTLENBQUNZO0FBQS9DLE9BQUQsQ0FBRCxDQUFYO0FBQ0QsS0FwQ3NDLENBc0N2Qzs7O0FBQ0EsYUFBU1csY0FBVCxHQUEwQjtBQUN4QixXQUFLLElBQUlDLFlBQVksR0FBRyxDQUFDLENBQUQsR0FBS1YsVUFBN0IsRUFBeUNVLFlBQVksSUFBSVYsVUFBekQsRUFBcUVVLFlBQVksSUFBSSxDQUFyRixFQUF3RjtBQUN0RixZQUFJQyxRQUFRO0FBQUE7QUFBQTtBQUFaO0FBQUE7O0FBQ0EsWUFBSUMsT0FBTyxHQUFHVixRQUFRLENBQUNRLFlBQVksR0FBRyxDQUFoQixDQUF0QjtBQUFBLFlBQ0lHLFVBQVUsR0FBR1gsUUFBUSxDQUFDUSxZQUFZLEdBQUcsQ0FBaEIsQ0FEekI7QUFBQSxZQUVJTCxPQUFNLEdBQUcsQ0FBQ1EsVUFBVSxHQUFHQSxVQUFVLENBQUNWLE1BQWQsR0FBdUIsQ0FBbEMsSUFBdUNPLFlBRnBEOztBQUdBLFlBQUlFLE9BQUosRUFBYTtBQUNYO0FBQ0FWLFVBQUFBLFFBQVEsQ0FBQ1EsWUFBWSxHQUFHLENBQWhCLENBQVIsR0FBNkJqQixTQUE3QjtBQUNEOztBQUVELFlBQUlxQixNQUFNLEdBQUdGLE9BQU8sSUFBSUEsT0FBTyxDQUFDVCxNQUFSLEdBQWlCLENBQWpCLEdBQXFCTixNQUE3QztBQUFBLFlBQ0lrQixTQUFTLEdBQUdGLFVBQVUsSUFBSSxLQUFLUixPQUFuQixJQUE2QkEsT0FBTSxHQUFHTixNQUR0RDs7QUFFQSxZQUFJLENBQUNlLE1BQUQsSUFBVyxDQUFDQyxTQUFoQixFQUEyQjtBQUN6QjtBQUNBYixVQUFBQSxRQUFRLENBQUNRLFlBQUQsQ0FBUixHQUF5QmpCLFNBQXpCO0FBQ0E7QUFDRCxTQWhCcUYsQ0FrQnRGO0FBQ0E7QUFDQTs7O0FBQ0EsWUFBSSxDQUFDcUIsTUFBRCxJQUFZQyxTQUFTLElBQUlILE9BQU8sQ0FBQ1QsTUFBUixHQUFpQlUsVUFBVSxDQUFDVixNQUF6RCxFQUFrRTtBQUNoRVEsVUFBQUEsUUFBUSxHQUFHSyxTQUFTLENBQUNILFVBQUQsQ0FBcEI7QUFDQXhCLFVBQUFBLElBQUksQ0FBQzRCLGFBQUwsQ0FBbUJOLFFBQVEsQ0FBQ1AsVUFBNUIsRUFBd0NYLFNBQXhDLEVBQW1ELElBQW5EO0FBQ0QsU0FIRCxNQUdPO0FBQ0xrQixVQUFBQSxRQUFRLEdBQUdDLE9BQVgsQ0FESyxDQUNlOztBQUNwQkQsVUFBQUEsUUFBUSxDQUFDUixNQUFUO0FBQ0FkLFVBQUFBLElBQUksQ0FBQzRCLGFBQUwsQ0FBbUJOLFFBQVEsQ0FBQ1AsVUFBNUIsRUFBd0MsSUFBeEMsRUFBOENYLFNBQTlDO0FBQ0Q7O0FBRURZLFFBQUFBLE9BQU0sR0FBR2hCLElBQUksQ0FBQ2lCLGFBQUwsQ0FBbUJLLFFBQW5CLEVBQTZCekIsU0FBN0IsRUFBd0NELFNBQXhDLEVBQW1EeUIsWUFBbkQsQ0FBVCxDQTlCc0YsQ0FnQ3RGOztBQUNBLFlBQUlDLFFBQVEsQ0FBQ1IsTUFBVCxHQUFrQixDQUFsQixJQUF1Qk4sTUFBdkIsSUFBaUNRLE9BQU0sR0FBRyxDQUFULElBQWNOLE1BQW5ELEVBQTJEO0FBQ3pELGlCQUFPVCxJQUFJLENBQUM0QixXQUFXLENBQUM3QixJQUFELEVBQU9zQixRQUFRLENBQUNQLFVBQWhCLEVBQTRCbEIsU0FBNUIsRUFBdUNELFNBQXZDLEVBQWtESSxJQUFJLENBQUM4QixlQUF2RCxDQUFaLENBQVg7QUFDRCxTQUZELE1BRU87QUFDTDtBQUNBakIsVUFBQUEsUUFBUSxDQUFDUSxZQUFELENBQVIsR0FBeUJDLFFBQXpCO0FBQ0Q7QUFDRjs7QUFFRFgsTUFBQUEsVUFBVTtBQUNYLEtBbEZzQyxDQW9GdkM7QUFDQTtBQUNBOzs7QUFDQSxRQUFJWixRQUFKLEVBQWM7QUFDWCxnQkFBU2dDLElBQVQsR0FBZ0I7QUFDZjVCLFFBQUFBLFVBQVUsQ0FBQyxZQUFXO0FBQ3BCOztBQUNBO0FBQ0EsY0FBSVEsVUFBVSxHQUFHQyxhQUFqQixFQUFnQztBQUM5QixtQkFBT2IsUUFBUSxFQUFmO0FBQ0Q7O0FBRUQsY0FBSSxDQUFDcUIsY0FBYyxFQUFuQixFQUF1QjtBQUNyQlcsWUFBQUEsSUFBSTtBQUNMO0FBQ0YsU0FWUyxFQVVQLENBVk8sQ0FBVjtBQVdELE9BWkEsR0FBRDtBQWFELEtBZEQsTUFjTztBQUNMLGFBQU9wQixVQUFVLElBQUlDLGFBQXJCLEVBQW9DO0FBQ2xDLFlBQUlvQixHQUFHLEdBQUdaLGNBQWMsRUFBeEI7O0FBQ0EsWUFBSVksR0FBSixFQUFTO0FBQ1AsaUJBQU9BLEdBQVA7QUFDRDtBQUNGO0FBQ0Y7QUFDRixHQTlHYzs7QUFBQTs7QUFBQTtBQWdIZkosRUFBQUEsYUFoSGUseUJBZ0hEYixVQWhIQyxFQWdIV2tCLEtBaEhYLEVBZ0hrQkMsT0FoSGxCLEVBZ0gyQjtBQUN4QyxRQUFJQyxJQUFJLEdBQUdwQixVQUFVLENBQUNBLFVBQVUsQ0FBQ04sTUFBWCxHQUFvQixDQUFyQixDQUFyQjs7QUFDQSxRQUFJMEIsSUFBSSxJQUFJQSxJQUFJLENBQUNGLEtBQUwsS0FBZUEsS0FBdkIsSUFBZ0NFLElBQUksQ0FBQ0QsT0FBTCxLQUFpQkEsT0FBckQsRUFBOEQ7QUFDNUQ7QUFDQTtBQUNBbkIsTUFBQUEsVUFBVSxDQUFDQSxVQUFVLENBQUNOLE1BQVgsR0FBb0IsQ0FBckIsQ0FBVixHQUFvQztBQUFDVSxRQUFBQSxLQUFLLEVBQUVnQixJQUFJLENBQUNoQixLQUFMLEdBQWEsQ0FBckI7QUFBd0JjLFFBQUFBLEtBQUssRUFBRUEsS0FBL0I7QUFBc0NDLFFBQUFBLE9BQU8sRUFBRUE7QUFBL0MsT0FBcEM7QUFDRCxLQUpELE1BSU87QUFDTG5CLE1BQUFBLFVBQVUsQ0FBQ3FCLElBQVgsQ0FBZ0I7QUFBQ2pCLFFBQUFBLEtBQUssRUFBRSxDQUFSO0FBQVdjLFFBQUFBLEtBQUssRUFBRUEsS0FBbEI7QUFBeUJDLFFBQUFBLE9BQU8sRUFBRUE7QUFBbEMsT0FBaEI7QUFDRDtBQUNGLEdBekhjOztBQUFBOztBQUFBO0FBMEhmakIsRUFBQUEsYUExSGUseUJBMEhESyxRQTFIQyxFQTBIU3pCLFNBMUhULEVBMEhvQkQsU0ExSHBCLEVBMEgrQnlCLFlBMUgvQixFQTBINkM7QUFDMUQsUUFBSWIsTUFBTSxHQUFHWCxTQUFTLENBQUNZLE1BQXZCO0FBQUEsUUFDSUMsTUFBTSxHQUFHZCxTQUFTLENBQUNhLE1BRHZCO0FBQUEsUUFFSUssTUFBTSxHQUFHUSxRQUFRLENBQUNSLE1BRnRCO0FBQUEsUUFHSUUsTUFBTSxHQUFHRixNQUFNLEdBQUdPLFlBSHRCO0FBQUEsUUFLSWdCLFdBQVcsR0FBRyxDQUxsQjs7QUFNQSxXQUFPdkIsTUFBTSxHQUFHLENBQVQsR0FBYU4sTUFBYixJQUF1QlEsTUFBTSxHQUFHLENBQVQsR0FBYU4sTUFBcEMsSUFBOEMsS0FBSzRCLE1BQUwsQ0FBWXpDLFNBQVMsQ0FBQ2lCLE1BQU0sR0FBRyxDQUFWLENBQXJCLEVBQW1DbEIsU0FBUyxDQUFDb0IsTUFBTSxHQUFHLENBQVYsQ0FBNUMsQ0FBckQsRUFBZ0g7QUFDOUdGLE1BQUFBLE1BQU07QUFDTkUsTUFBQUEsTUFBTTtBQUNOcUIsTUFBQUEsV0FBVztBQUNaOztBQUVELFFBQUlBLFdBQUosRUFBaUI7QUFDZmYsTUFBQUEsUUFBUSxDQUFDUCxVQUFULENBQW9CcUIsSUFBcEIsQ0FBeUI7QUFBQ2pCLFFBQUFBLEtBQUssRUFBRWtCO0FBQVIsT0FBekI7QUFDRDs7QUFFRGYsSUFBQUEsUUFBUSxDQUFDUixNQUFULEdBQWtCQSxNQUFsQjtBQUNBLFdBQU9FLE1BQVA7QUFDRCxHQTdJYzs7QUFBQTs7QUFBQTtBQStJZnNCLEVBQUFBLE1BL0llLGtCQStJUkMsSUEvSVEsRUErSUZDLEtBL0lFLEVBK0lLO0FBQ2xCLFFBQUksS0FBSzFDLE9BQUwsQ0FBYTJDLFVBQWpCLEVBQTZCO0FBQzNCLGFBQU8sS0FBSzNDLE9BQUwsQ0FBYTJDLFVBQWIsQ0FBd0JGLElBQXhCLEVBQThCQyxLQUE5QixDQUFQO0FBQ0QsS0FGRCxNQUVPO0FBQ0wsYUFBT0QsSUFBSSxLQUFLQyxLQUFULElBQ0QsS0FBSzFDLE9BQUwsQ0FBYTRDLFVBQWIsSUFBMkJILElBQUksQ0FBQ0ksV0FBTCxPQUF1QkgsS0FBSyxDQUFDRyxXQUFOLEVBRHhEO0FBRUQ7QUFDRixHQXRKYzs7QUFBQTs7QUFBQTtBQXVKZnJDLEVBQUFBLFdBdkplLHVCQXVKSHNDLEtBdkpHLEVBdUpJO0FBQ2pCLFFBQUlaLEdBQUcsR0FBRyxFQUFWOztBQUNBLFNBQUssSUFBSWEsQ0FBQyxHQUFHLENBQWIsRUFBZ0JBLENBQUMsR0FBR0QsS0FBSyxDQUFDbkMsTUFBMUIsRUFBa0NvQyxDQUFDLEVBQW5DLEVBQXVDO0FBQ3JDLFVBQUlELEtBQUssQ0FBQ0MsQ0FBRCxDQUFULEVBQWM7QUFDWmIsUUFBQUEsR0FBRyxDQUFDSSxJQUFKLENBQVNRLEtBQUssQ0FBQ0MsQ0FBRCxDQUFkO0FBQ0Q7QUFDRjs7QUFDRCxXQUFPYixHQUFQO0FBQ0QsR0EvSmM7O0FBQUE7O0FBQUE7QUFnS2YzQixFQUFBQSxTQWhLZSxxQkFnS0xILEtBaEtLLEVBZ0tFO0FBQ2YsV0FBT0EsS0FBUDtBQUNELEdBbEtjOztBQUFBOztBQUFBO0FBbUtmSyxFQUFBQSxRQW5LZSxvQkFtS05MLEtBbktNLEVBbUtDO0FBQ2QsV0FBT0EsS0FBSyxDQUFDNEMsS0FBTixDQUFZLEVBQVosQ0FBUDtBQUNELEdBcktjOztBQUFBOztBQUFBO0FBc0tmNUIsRUFBQUEsSUF0S2UsZ0JBc0tWNkIsS0F0S1UsRUFzS0g7QUFDVixXQUFPQSxLQUFLLENBQUM3QixJQUFOLENBQVcsRUFBWCxDQUFQO0FBQ0Q7QUF4S2MsQ0FBakI7O0FBMktBLFNBQVNXLFdBQVQsQ0FBcUJsQyxJQUFyQixFQUEyQm9CLFVBQTNCLEVBQXVDbEIsU0FBdkMsRUFBa0RELFNBQWxELEVBQTZEa0MsZUFBN0QsRUFBOEU7QUFDNUUsTUFBSWtCLFlBQVksR0FBRyxDQUFuQjtBQUFBLE1BQ0lDLFlBQVksR0FBR2xDLFVBQVUsQ0FBQ04sTUFEOUI7QUFBQSxNQUVJSyxNQUFNLEdBQUcsQ0FGYjtBQUFBLE1BR0lFLE1BQU0sR0FBRyxDQUhiOztBQUtBLFNBQU9nQyxZQUFZLEdBQUdDLFlBQXRCLEVBQW9DRCxZQUFZLEVBQWhELEVBQW9EO0FBQ2xELFFBQUlFLFNBQVMsR0FBR25DLFVBQVUsQ0FBQ2lDLFlBQUQsQ0FBMUI7O0FBQ0EsUUFBSSxDQUFDRSxTQUFTLENBQUNoQixPQUFmLEVBQXdCO0FBQ3RCLFVBQUksQ0FBQ2dCLFNBQVMsQ0FBQ2pCLEtBQVgsSUFBb0JILGVBQXhCLEVBQXlDO0FBQ3ZDLFlBQUk1QixLQUFLLEdBQUdMLFNBQVMsQ0FBQ3NELEtBQVYsQ0FBZ0JyQyxNQUFoQixFQUF3QkEsTUFBTSxHQUFHb0MsU0FBUyxDQUFDL0IsS0FBM0MsQ0FBWjtBQUNBakIsUUFBQUEsS0FBSyxHQUFHQSxLQUFLLENBQUNrRCxHQUFOLENBQVUsVUFBU2xELEtBQVQsRUFBZ0IyQyxDQUFoQixFQUFtQjtBQUNuQyxjQUFJUSxRQUFRLEdBQUd6RCxTQUFTLENBQUNvQixNQUFNLEdBQUc2QixDQUFWLENBQXhCO0FBQ0EsaUJBQU9RLFFBQVEsQ0FBQzVDLE1BQVQsR0FBa0JQLEtBQUssQ0FBQ08sTUFBeEIsR0FBaUM0QyxRQUFqQyxHQUE0Q25ELEtBQW5EO0FBQ0QsU0FITyxDQUFSO0FBS0FnRCxRQUFBQSxTQUFTLENBQUNoRCxLQUFWLEdBQWtCUCxJQUFJLENBQUN1QixJQUFMLENBQVVoQixLQUFWLENBQWxCO0FBQ0QsT0FSRCxNQVFPO0FBQ0xnRCxRQUFBQSxTQUFTLENBQUNoRCxLQUFWLEdBQWtCUCxJQUFJLENBQUN1QixJQUFMLENBQVVyQixTQUFTLENBQUNzRCxLQUFWLENBQWdCckMsTUFBaEIsRUFBd0JBLE1BQU0sR0FBR29DLFNBQVMsQ0FBQy9CLEtBQTNDLENBQVYsQ0FBbEI7QUFDRDs7QUFDREwsTUFBQUEsTUFBTSxJQUFJb0MsU0FBUyxDQUFDL0IsS0FBcEIsQ0Fac0IsQ0FjdEI7O0FBQ0EsVUFBSSxDQUFDK0IsU0FBUyxDQUFDakIsS0FBZixFQUFzQjtBQUNwQmpCLFFBQUFBLE1BQU0sSUFBSWtDLFNBQVMsQ0FBQy9CLEtBQXBCO0FBQ0Q7QUFDRixLQWxCRCxNQWtCTztBQUNMK0IsTUFBQUEsU0FBUyxDQUFDaEQsS0FBVixHQUFrQlAsSUFBSSxDQUFDdUIsSUFBTCxDQUFVdEIsU0FBUyxDQUFDdUQsS0FBVixDQUFnQm5DLE1BQWhCLEVBQXdCQSxNQUFNLEdBQUdrQyxTQUFTLENBQUMvQixLQUEzQyxDQUFWLENBQWxCO0FBQ0FILE1BQUFBLE1BQU0sSUFBSWtDLFNBQVMsQ0FBQy9CLEtBQXBCLENBRkssQ0FJTDtBQUNBO0FBQ0E7O0FBQ0EsVUFBSTZCLFlBQVksSUFBSWpDLFVBQVUsQ0FBQ2lDLFlBQVksR0FBRyxDQUFoQixDQUFWLENBQTZCZixLQUFqRCxFQUF3RDtBQUN0RCxZQUFJcUIsR0FBRyxHQUFHdkMsVUFBVSxDQUFDaUMsWUFBWSxHQUFHLENBQWhCLENBQXBCO0FBQ0FqQyxRQUFBQSxVQUFVLENBQUNpQyxZQUFZLEdBQUcsQ0FBaEIsQ0FBVixHQUErQmpDLFVBQVUsQ0FBQ2lDLFlBQUQsQ0FBekM7QUFDQWpDLFFBQUFBLFVBQVUsQ0FBQ2lDLFlBQUQsQ0FBVixHQUEyQk0sR0FBM0I7QUFDRDtBQUNGO0FBQ0YsR0F2QzJFLENBeUM1RTtBQUNBO0FBQ0E7OztBQUNBLE1BQUlDLGFBQWEsR0FBR3hDLFVBQVUsQ0FBQ2tDLFlBQVksR0FBRyxDQUFoQixDQUE5Qjs7QUFDQSxNQUFJQSxZQUFZLEdBQUcsQ0FBZixJQUNHLE9BQU9NLGFBQWEsQ0FBQ3JELEtBQXJCLEtBQStCLFFBRGxDLEtBRUlxRCxhQUFhLENBQUN0QixLQUFkLElBQXVCc0IsYUFBYSxDQUFDckIsT0FGekMsS0FHR3ZDLElBQUksQ0FBQzJDLE1BQUwsQ0FBWSxFQUFaLEVBQWdCaUIsYUFBYSxDQUFDckQsS0FBOUIsQ0FIUCxFQUc2QztBQUMzQ2EsSUFBQUEsVUFBVSxDQUFDa0MsWUFBWSxHQUFHLENBQWhCLENBQVYsQ0FBNkIvQyxLQUE3QixJQUFzQ3FELGFBQWEsQ0FBQ3JELEtBQXBEO0FBQ0FhLElBQUFBLFVBQVUsQ0FBQ3lDLEdBQVg7QUFDRDs7QUFFRCxTQUFPekMsVUFBUDtBQUNEOztBQUVELFNBQVNZLFNBQVQsQ0FBbUI4QixJQUFuQixFQUF5QjtBQUN2QixTQUFPO0FBQUUzQyxJQUFBQSxNQUFNLEVBQUUyQyxJQUFJLENBQUMzQyxNQUFmO0FBQXVCQyxJQUFBQSxVQUFVLEVBQUUwQyxJQUFJLENBQUMxQyxVQUFMLENBQWdCb0MsS0FBaEIsQ0FBc0IsQ0FBdEI7QUFBbkMsR0FBUDtBQUNEIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGRlZmF1bHQgZnVuY3Rpb24gRGlmZigpIHt9XG5cbkRpZmYucHJvdG90eXBlID0ge1xuICBkaWZmKG9sZFN0cmluZywgbmV3U3RyaW5nLCBvcHRpb25zID0ge30pIHtcbiAgICBsZXQgY2FsbGJhY2sgPSBvcHRpb25zLmNhbGxiYWNrO1xuICAgIGlmICh0eXBlb2Ygb3B0aW9ucyA9PT0gJ2Z1bmN0aW9uJykge1xuICAgICAgY2FsbGJhY2sgPSBvcHRpb25zO1xuICAgICAgb3B0aW9ucyA9IHt9O1xuICAgIH1cbiAgICB0aGlzLm9wdGlvbnMgPSBvcHRpb25zO1xuXG4gICAgbGV0IHNlbGYgPSB0aGlzO1xuXG4gICAgZnVuY3Rpb24gZG9uZSh2YWx1ZSkge1xuICAgICAgaWYgKGNhbGxiYWNrKSB7XG4gICAgICAgIHNldFRpbWVvdXQoZnVuY3Rpb24oKSB7IGNhbGxiYWNrKHVuZGVmaW5lZCwgdmFsdWUpOyB9LCAwKTtcbiAgICAgICAgcmV0dXJuIHRydWU7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICByZXR1cm4gdmFsdWU7XG4gICAgICB9XG4gICAgfVxuXG4gICAgLy8gQWxsb3cgc3ViY2xhc3NlcyB0byBtYXNzYWdlIHRoZSBpbnB1dCBwcmlvciB0byBydW5uaW5nXG4gICAgb2xkU3RyaW5nID0gdGhpcy5jYXN0SW5wdXQob2xkU3RyaW5nKTtcbiAgICBuZXdTdHJpbmcgPSB0aGlzLmNhc3RJbnB1dChuZXdTdHJpbmcpO1xuXG4gICAgb2xkU3RyaW5nID0gdGhpcy5yZW1vdmVFbXB0eSh0aGlzLnRva2VuaXplKG9sZFN0cmluZykpO1xuICAgIG5ld1N0cmluZyA9IHRoaXMucmVtb3ZlRW1wdHkodGhpcy50b2tlbml6ZShuZXdTdHJpbmcpKTtcblxuICAgIGxldCBuZXdMZW4gPSBuZXdTdHJpbmcubGVuZ3RoLCBvbGRMZW4gPSBvbGRTdHJpbmcubGVuZ3RoO1xuICAgIGxldCBlZGl0TGVuZ3RoID0gMTtcbiAgICBsZXQgbWF4RWRpdExlbmd0aCA9IG5ld0xlbiArIG9sZExlbjtcbiAgICBsZXQgYmVzdFBhdGggPSBbeyBuZXdQb3M6IC0xLCBjb21wb25lbnRzOiBbXSB9XTtcblxuICAgIC8vIFNlZWQgZWRpdExlbmd0aCA9IDAsIGkuZS4gdGhlIGNvbnRlbnQgc3RhcnRzIHdpdGggdGhlIHNhbWUgdmFsdWVzXG4gICAgbGV0IG9sZFBvcyA9IHRoaXMuZXh0cmFjdENvbW1vbihiZXN0UGF0aFswXSwgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIDApO1xuICAgIGlmIChiZXN0UGF0aFswXS5uZXdQb3MgKyAxID49IG5ld0xlbiAmJiBvbGRQb3MgKyAxID49IG9sZExlbikge1xuICAgICAgLy8gSWRlbnRpdHkgcGVyIHRoZSBlcXVhbGl0eSBhbmQgdG9rZW5pemVyXG4gICAgICByZXR1cm4gZG9uZShbe3ZhbHVlOiB0aGlzLmpvaW4obmV3U3RyaW5nKSwgY291bnQ6IG5ld1N0cmluZy5sZW5ndGh9XSk7XG4gICAgfVxuXG4gICAgLy8gTWFpbiB3b3JrZXIgbWV0aG9kLiBjaGVja3MgYWxsIHBlcm11dGF0aW9ucyBvZiBhIGdpdmVuIGVkaXQgbGVuZ3RoIGZvciBhY2NlcHRhbmNlLlxuICAgIGZ1bmN0aW9uIGV4ZWNFZGl0TGVuZ3RoKCkge1xuICAgICAgZm9yIChsZXQgZGlhZ29uYWxQYXRoID0gLTEgKiBlZGl0TGVuZ3RoOyBkaWFnb25hbFBhdGggPD0gZWRpdExlbmd0aDsgZGlhZ29uYWxQYXRoICs9IDIpIHtcbiAgICAgICAgbGV0IGJhc2VQYXRoO1xuICAgICAgICBsZXQgYWRkUGF0aCA9IGJlc3RQYXRoW2RpYWdvbmFsUGF0aCAtIDFdLFxuICAgICAgICAgICAgcmVtb3ZlUGF0aCA9IGJlc3RQYXRoW2RpYWdvbmFsUGF0aCArIDFdLFxuICAgICAgICAgICAgb2xkUG9zID0gKHJlbW92ZVBhdGggPyByZW1vdmVQYXRoLm5ld1BvcyA6IDApIC0gZGlhZ29uYWxQYXRoO1xuICAgICAgICBpZiAoYWRkUGF0aCkge1xuICAgICAgICAgIC8vIE5vIG9uZSBlbHNlIGlzIGdvaW5nIHRvIGF0dGVtcHQgdG8gdXNlIHRoaXMgdmFsdWUsIGNsZWFyIGl0XG4gICAgICAgICAgYmVzdFBhdGhbZGlhZ29uYWxQYXRoIC0gMV0gPSB1bmRlZmluZWQ7XG4gICAgICAgIH1cblxuICAgICAgICBsZXQgY2FuQWRkID0gYWRkUGF0aCAmJiBhZGRQYXRoLm5ld1BvcyArIDEgPCBuZXdMZW4sXG4gICAgICAgICAgICBjYW5SZW1vdmUgPSByZW1vdmVQYXRoICYmIDAgPD0gb2xkUG9zICYmIG9sZFBvcyA8IG9sZExlbjtcbiAgICAgICAgaWYgKCFjYW5BZGQgJiYgIWNhblJlbW92ZSkge1xuICAgICAgICAgIC8vIElmIHRoaXMgcGF0aCBpcyBhIHRlcm1pbmFsIHRoZW4gcHJ1bmVcbiAgICAgICAgICBiZXN0UGF0aFtkaWFnb25hbFBhdGhdID0gdW5kZWZpbmVkO1xuICAgICAgICAgIGNvbnRpbnVlO1xuICAgICAgICB9XG5cbiAgICAgICAgLy8gU2VsZWN0IHRoZSBkaWFnb25hbCB0aGF0IHdlIHdhbnQgdG8gYnJhbmNoIGZyb20uIFdlIHNlbGVjdCB0aGUgcHJpb3JcbiAgICAgICAgLy8gcGF0aCB3aG9zZSBwb3NpdGlvbiBpbiB0aGUgbmV3IHN0cmluZyBpcyB0aGUgZmFydGhlc3QgZnJvbSB0aGUgb3JpZ2luXG4gICAgICAgIC8vIGFuZCBkb2VzIG5vdCBwYXNzIHRoZSBib3VuZHMgb2YgdGhlIGRpZmYgZ3JhcGhcbiAgICAgICAgaWYgKCFjYW5BZGQgfHwgKGNhblJlbW92ZSAmJiBhZGRQYXRoLm5ld1BvcyA8IHJlbW92ZVBhdGgubmV3UG9zKSkge1xuICAgICAgICAgIGJhc2VQYXRoID0gY2xvbmVQYXRoKHJlbW92ZVBhdGgpO1xuICAgICAgICAgIHNlbGYucHVzaENvbXBvbmVudChiYXNlUGF0aC5jb21wb25lbnRzLCB1bmRlZmluZWQsIHRydWUpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGJhc2VQYXRoID0gYWRkUGF0aDsgLy8gTm8gbmVlZCB0byBjbG9uZSwgd2UndmUgcHVsbGVkIGl0IGZyb20gdGhlIGxpc3RcbiAgICAgICAgICBiYXNlUGF0aC5uZXdQb3MrKztcbiAgICAgICAgICBzZWxmLnB1c2hDb21wb25lbnQoYmFzZVBhdGguY29tcG9uZW50cywgdHJ1ZSwgdW5kZWZpbmVkKTtcbiAgICAgICAgfVxuXG4gICAgICAgIG9sZFBvcyA9IHNlbGYuZXh0cmFjdENvbW1vbihiYXNlUGF0aCwgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIGRpYWdvbmFsUGF0aCk7XG5cbiAgICAgICAgLy8gSWYgd2UgaGF2ZSBoaXQgdGhlIGVuZCBvZiBib3RoIHN0cmluZ3MsIHRoZW4gd2UgYXJlIGRvbmVcbiAgICAgICAgaWYgKGJhc2VQYXRoLm5ld1BvcyArIDEgPj0gbmV3TGVuICYmIG9sZFBvcyArIDEgPj0gb2xkTGVuKSB7XG4gICAgICAgICAgcmV0dXJuIGRvbmUoYnVpbGRWYWx1ZXMoc2VsZiwgYmFzZVBhdGguY29tcG9uZW50cywgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIHNlbGYudXNlTG9uZ2VzdFRva2VuKSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgLy8gT3RoZXJ3aXNlIHRyYWNrIHRoaXMgcGF0aCBhcyBhIHBvdGVudGlhbCBjYW5kaWRhdGUgYW5kIGNvbnRpbnVlLlxuICAgICAgICAgIGJlc3RQYXRoW2RpYWdvbmFsUGF0aF0gPSBiYXNlUGF0aDtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICBlZGl0TGVuZ3RoKys7XG4gICAgfVxuXG4gICAgLy8gUGVyZm9ybXMgdGhlIGxlbmd0aCBvZiBlZGl0IGl0ZXJhdGlvbi4gSXMgYSBiaXQgZnVnbHkgYXMgdGhpcyBoYXMgdG8gc3VwcG9ydCB0aGVcbiAgICAvLyBzeW5jIGFuZCBhc3luYyBtb2RlIHdoaWNoIGlzIG5ldmVyIGZ1bi4gTG9vcHMgb3ZlciBleGVjRWRpdExlbmd0aCB1bnRpbCBhIHZhbHVlXG4gICAgLy8gaXMgcHJvZHVjZWQuXG4gICAgaWYgKGNhbGxiYWNrKSB7XG4gICAgICAoZnVuY3Rpb24gZXhlYygpIHtcbiAgICAgICAgc2V0VGltZW91dChmdW5jdGlvbigpIHtcbiAgICAgICAgICAvLyBUaGlzIHNob3VsZCBub3QgaGFwcGVuLCBidXQgd2Ugd2FudCB0byBiZSBzYWZlLlxuICAgICAgICAgIC8qIGlzdGFuYnVsIGlnbm9yZSBuZXh0ICovXG4gICAgICAgICAgaWYgKGVkaXRMZW5ndGggPiBtYXhFZGl0TGVuZ3RoKSB7XG4gICAgICAgICAgICByZXR1cm4gY2FsbGJhY2soKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICBpZiAoIWV4ZWNFZGl0TGVuZ3RoKCkpIHtcbiAgICAgICAgICAgIGV4ZWMoKTtcbiAgICAgICAgICB9XG4gICAgICAgIH0sIDApO1xuICAgICAgfSgpKTtcbiAgICB9IGVsc2Uge1xuICAgICAgd2hpbGUgKGVkaXRMZW5ndGggPD0gbWF4RWRpdExlbmd0aCkge1xuICAgICAgICBsZXQgcmV0ID0gZXhlY0VkaXRMZW5ndGgoKTtcbiAgICAgICAgaWYgKHJldCkge1xuICAgICAgICAgIHJldHVybiByZXQ7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH0sXG5cbiAgcHVzaENvbXBvbmVudChjb21wb25lbnRzLCBhZGRlZCwgcmVtb3ZlZCkge1xuICAgIGxldCBsYXN0ID0gY29tcG9uZW50c1tjb21wb25lbnRzLmxlbmd0aCAtIDFdO1xuICAgIGlmIChsYXN0ICYmIGxhc3QuYWRkZWQgPT09IGFkZGVkICYmIGxhc3QucmVtb3ZlZCA9PT0gcmVtb3ZlZCkge1xuICAgICAgLy8gV2UgbmVlZCB0byBjbG9uZSBoZXJlIGFzIHRoZSBjb21wb25lbnQgY2xvbmUgb3BlcmF0aW9uIGlzIGp1c3RcbiAgICAgIC8vIGFzIHNoYWxsb3cgYXJyYXkgY2xvbmVcbiAgICAgIGNvbXBvbmVudHNbY29tcG9uZW50cy5sZW5ndGggLSAxXSA9IHtjb3VudDogbGFzdC5jb3VudCArIDEsIGFkZGVkOiBhZGRlZCwgcmVtb3ZlZDogcmVtb3ZlZCB9O1xuICAgIH0gZWxzZSB7XG4gICAgICBjb21wb25lbnRzLnB1c2goe2NvdW50OiAxLCBhZGRlZDogYWRkZWQsIHJlbW92ZWQ6IHJlbW92ZWQgfSk7XG4gICAgfVxuICB9LFxuICBleHRyYWN0Q29tbW9uKGJhc2VQYXRoLCBuZXdTdHJpbmcsIG9sZFN0cmluZywgZGlhZ29uYWxQYXRoKSB7XG4gICAgbGV0IG5ld0xlbiA9IG5ld1N0cmluZy5sZW5ndGgsXG4gICAgICAgIG9sZExlbiA9IG9sZFN0cmluZy5sZW5ndGgsXG4gICAgICAgIG5ld1BvcyA9IGJhc2VQYXRoLm5ld1BvcyxcbiAgICAgICAgb2xkUG9zID0gbmV3UG9zIC0gZGlhZ29uYWxQYXRoLFxuXG4gICAgICAgIGNvbW1vbkNvdW50ID0gMDtcbiAgICB3aGlsZSAobmV3UG9zICsgMSA8IG5ld0xlbiAmJiBvbGRQb3MgKyAxIDwgb2xkTGVuICYmIHRoaXMuZXF1YWxzKG5ld1N0cmluZ1tuZXdQb3MgKyAxXSwgb2xkU3RyaW5nW29sZFBvcyArIDFdKSkge1xuICAgICAgbmV3UG9zKys7XG4gICAgICBvbGRQb3MrKztcbiAgICAgIGNvbW1vbkNvdW50Kys7XG4gICAgfVxuXG4gICAgaWYgKGNvbW1vbkNvdW50KSB7XG4gICAgICBiYXNlUGF0aC5jb21wb25lbnRzLnB1c2goe2NvdW50OiBjb21tb25Db3VudH0pO1xuICAgIH1cblxuICAgIGJhc2VQYXRoLm5ld1BvcyA9IG5ld1BvcztcbiAgICByZXR1cm4gb2xkUG9zO1xuICB9LFxuXG4gIGVxdWFscyhsZWZ0LCByaWdodCkge1xuICAgIGlmICh0aGlzLm9wdGlvbnMuY29tcGFyYXRvcikge1xuICAgICAgcmV0dXJuIHRoaXMub3B0aW9ucy5jb21wYXJhdG9yKGxlZnQsIHJpZ2h0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIGxlZnQgPT09IHJpZ2h0XG4gICAgICAgIHx8ICh0aGlzLm9wdGlvbnMuaWdub3JlQ2FzZSAmJiBsZWZ0LnRvTG93ZXJDYXNlKCkgPT09IHJpZ2h0LnRvTG93ZXJDYXNlKCkpO1xuICAgIH1cbiAgfSxcbiAgcmVtb3ZlRW1wdHkoYXJyYXkpIHtcbiAgICBsZXQgcmV0ID0gW107XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCBhcnJheS5sZW5ndGg7IGkrKykge1xuICAgICAgaWYgKGFycmF5W2ldKSB7XG4gICAgICAgIHJldC5wdXNoKGFycmF5W2ldKTtcbiAgICAgIH1cbiAgICB9XG4gICAgcmV0dXJuIHJldDtcbiAgfSxcbiAgY2FzdElucHV0KHZhbHVlKSB7XG4gICAgcmV0dXJuIHZhbHVlO1xuICB9LFxuICB0b2tlbml6ZSh2YWx1ZSkge1xuICAgIHJldHVybiB2YWx1ZS5zcGxpdCgnJyk7XG4gIH0sXG4gIGpvaW4oY2hhcnMpIHtcbiAgICByZXR1cm4gY2hhcnMuam9pbignJyk7XG4gIH1cbn07XG5cbmZ1bmN0aW9uIGJ1aWxkVmFsdWVzKGRpZmYsIGNvbXBvbmVudHMsIG5ld1N0cmluZywgb2xkU3RyaW5nLCB1c2VMb25nZXN0VG9rZW4pIHtcbiAgbGV0IGNvbXBvbmVudFBvcyA9IDAsXG4gICAgICBjb21wb25lbnRMZW4gPSBjb21wb25lbnRzLmxlbmd0aCxcbiAgICAgIG5ld1BvcyA9IDAsXG4gICAgICBvbGRQb3MgPSAwO1xuXG4gIGZvciAoOyBjb21wb25lbnRQb3MgPCBjb21wb25lbnRMZW47IGNvbXBvbmVudFBvcysrKSB7XG4gICAgbGV0IGNvbXBvbmVudCA9IGNvbXBvbmVudHNbY29tcG9uZW50UG9zXTtcbiAgICBpZiAoIWNvbXBvbmVudC5yZW1vdmVkKSB7XG4gICAgICBpZiAoIWNvbXBvbmVudC5hZGRlZCAmJiB1c2VMb25nZXN0VG9rZW4pIHtcbiAgICAgICAgbGV0IHZhbHVlID0gbmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KTtcbiAgICAgICAgdmFsdWUgPSB2YWx1ZS5tYXAoZnVuY3Rpb24odmFsdWUsIGkpIHtcbiAgICAgICAgICBsZXQgb2xkVmFsdWUgPSBvbGRTdHJpbmdbb2xkUG9zICsgaV07XG4gICAgICAgICAgcmV0dXJuIG9sZFZhbHVlLmxlbmd0aCA+IHZhbHVlLmxlbmd0aCA/IG9sZFZhbHVlIDogdmFsdWU7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIGNvbXBvbmVudC52YWx1ZSA9IGRpZmYuam9pbih2YWx1ZSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBjb21wb25lbnQudmFsdWUgPSBkaWZmLmpvaW4obmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KSk7XG4gICAgICB9XG4gICAgICBuZXdQb3MgKz0gY29tcG9uZW50LmNvdW50O1xuXG4gICAgICAvLyBDb21tb24gY2FzZVxuICAgICAgaWYgKCFjb21wb25lbnQuYWRkZWQpIHtcbiAgICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgY29tcG9uZW50LnZhbHVlID0gZGlmZi5qb2luKG9sZFN0cmluZy5zbGljZShvbGRQb3MsIG9sZFBvcyArIGNvbXBvbmVudC5jb3VudCkpO1xuICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcblxuICAgICAgLy8gUmV2ZXJzZSBhZGQgYW5kIHJlbW92ZSBzbyByZW1vdmVzIGFyZSBvdXRwdXQgZmlyc3QgdG8gbWF0Y2ggY29tbW9uIGNvbnZlbnRpb25cbiAgICAgIC8vIFRoZSBkaWZmaW5nIGFsZ29yaXRobSBpcyB0aWVkIHRvIGFkZCB0aGVuIHJlbW92ZSBvdXRwdXQgYW5kIHRoaXMgaXMgdGhlIHNpbXBsZXN0XG4gICAgICAvLyByb3V0ZSB0byBnZXQgdGhlIGRlc2lyZWQgb3V0cHV0IHdpdGggbWluaW1hbCBvdmVyaGVhZC5cbiAgICAgIGlmIChjb21wb25lbnRQb3MgJiYgY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXS5hZGRlZCkge1xuICAgICAgICBsZXQgdG1wID0gY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXTtcbiAgICAgICAgY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXSA9IGNvbXBvbmVudHNbY29tcG9uZW50UG9zXTtcbiAgICAgICAgY29tcG9uZW50c1tjb21wb25lbnRQb3NdID0gdG1wO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIC8vIFNwZWNpYWwgY2FzZSBoYW5kbGUgZm9yIHdoZW4gb25lIHRlcm1pbmFsIGlzIGlnbm9yZWQgKGkuZS4gd2hpdGVzcGFjZSkuXG4gIC8vIEZvciB0aGlzIGNhc2Ugd2UgbWVyZ2UgdGhlIHRlcm1pbmFsIGludG8gdGhlIHByaW9yIHN0cmluZyBhbmQgZHJvcCB0aGUgY2hhbmdlLlxuICAvLyBUaGlzIGlzIG9ubHkgYXZhaWxhYmxlIGZvciBzdHJpbmcgbW9kZS5cbiAgbGV0IGxhc3RDb21wb25lbnQgPSBjb21wb25lbnRzW2NvbXBvbmVudExlbiAtIDFdO1xuICBpZiAoY29tcG9uZW50TGVuID4gMVxuICAgICAgJiYgdHlwZW9mIGxhc3RDb21wb25lbnQudmFsdWUgPT09ICdzdHJpbmcnXG4gICAgICAmJiAobGFzdENvbXBvbmVudC5hZGRlZCB8fCBsYXN0Q29tcG9uZW50LnJlbW92ZWQpXG4gICAgICAmJiBkaWZmLmVxdWFscygnJywgbGFzdENvbXBvbmVudC52YWx1ZSkpIHtcbiAgICBjb21wb25lbnRzW2NvbXBvbmVudExlbiAtIDJdLnZhbHVlICs9IGxhc3RDb21wb25lbnQudmFsdWU7XG4gICAgY29tcG9uZW50cy5wb3AoKTtcbiAgfVxuXG4gIHJldHVybiBjb21wb25lbnRzO1xufVxuXG5mdW5jdGlvbiBjbG9uZVBhdGgocGF0aCkge1xuICByZXR1cm4geyBuZXdQb3M6IHBhdGgubmV3UG9zLCBjb21wb25lbnRzOiBwYXRoLmNvbXBvbmVudHMuc2xpY2UoMCkgfTtcbn1cbiJdfQ== +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9kaWZmL2Jhc2UuanMiXSwibmFtZXMiOlsiRGlmZiIsInByb3RvdHlwZSIsImRpZmYiLCJvbGRTdHJpbmciLCJuZXdTdHJpbmciLCJvcHRpb25zIiwiY2FsbGJhY2siLCJzZWxmIiwiZG9uZSIsInZhbHVlIiwic2V0VGltZW91dCIsInVuZGVmaW5lZCIsImNhc3RJbnB1dCIsInJlbW92ZUVtcHR5IiwidG9rZW5pemUiLCJuZXdMZW4iLCJsZW5ndGgiLCJvbGRMZW4iLCJlZGl0TGVuZ3RoIiwibWF4RWRpdExlbmd0aCIsIk1hdGgiLCJtaW4iLCJiZXN0UGF0aCIsIm5ld1BvcyIsImNvbXBvbmVudHMiLCJvbGRQb3MiLCJleHRyYWN0Q29tbW9uIiwiam9pbiIsImNvdW50IiwiZXhlY0VkaXRMZW5ndGgiLCJkaWFnb25hbFBhdGgiLCJiYXNlUGF0aCIsImFkZFBhdGgiLCJyZW1vdmVQYXRoIiwiY2FuQWRkIiwiY2FuUmVtb3ZlIiwiY2xvbmVQYXRoIiwicHVzaENvbXBvbmVudCIsImJ1aWxkVmFsdWVzIiwidXNlTG9uZ2VzdFRva2VuIiwiZXhlYyIsInJldCIsImFkZGVkIiwicmVtb3ZlZCIsImxhc3QiLCJwdXNoIiwiY29tbW9uQ291bnQiLCJlcXVhbHMiLCJsZWZ0IiwicmlnaHQiLCJjb21wYXJhdG9yIiwiaWdub3JlQ2FzZSIsInRvTG93ZXJDYXNlIiwiYXJyYXkiLCJpIiwic3BsaXQiLCJjaGFycyIsImNvbXBvbmVudFBvcyIsImNvbXBvbmVudExlbiIsImNvbXBvbmVudCIsInNsaWNlIiwibWFwIiwib2xkVmFsdWUiLCJ0bXAiLCJsYXN0Q29tcG9uZW50IiwicG9wIiwicGF0aCJdLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQWUsU0FBU0EsSUFBVCxHQUFnQixDQUFFOztBQUVqQ0EsSUFBSSxDQUFDQyxTQUFMLEdBQWlCO0FBQUE7O0FBQUE7QUFDZkMsRUFBQUEsSUFEZSxnQkFDVkMsU0FEVSxFQUNDQyxTQURELEVBQzBCO0FBQUE7QUFBQTtBQUFBO0FBQWRDLElBQUFBLE9BQWMsdUVBQUosRUFBSTtBQUN2QyxRQUFJQyxRQUFRLEdBQUdELE9BQU8sQ0FBQ0MsUUFBdkI7O0FBQ0EsUUFBSSxPQUFPRCxPQUFQLEtBQW1CLFVBQXZCLEVBQW1DO0FBQ2pDQyxNQUFBQSxRQUFRLEdBQUdELE9BQVg7QUFDQUEsTUFBQUEsT0FBTyxHQUFHLEVBQVY7QUFDRDs7QUFDRCxTQUFLQSxPQUFMLEdBQWVBLE9BQWY7QUFFQSxRQUFJRSxJQUFJLEdBQUcsSUFBWDs7QUFFQSxhQUFTQyxJQUFULENBQWNDLEtBQWQsRUFBcUI7QUFDbkIsVUFBSUgsUUFBSixFQUFjO0FBQ1pJLFFBQUFBLFVBQVUsQ0FBQyxZQUFXO0FBQUVKLFVBQUFBLFFBQVEsQ0FBQ0ssU0FBRCxFQUFZRixLQUFaLENBQVI7QUFBNkIsU0FBM0MsRUFBNkMsQ0FBN0MsQ0FBVjtBQUNBLGVBQU8sSUFBUDtBQUNELE9BSEQsTUFHTztBQUNMLGVBQU9BLEtBQVA7QUFDRDtBQUNGLEtBakJzQyxDQW1CdkM7OztBQUNBTixJQUFBQSxTQUFTLEdBQUcsS0FBS1MsU0FBTCxDQUFlVCxTQUFmLENBQVo7QUFDQUMsSUFBQUEsU0FBUyxHQUFHLEtBQUtRLFNBQUwsQ0FBZVIsU0FBZixDQUFaO0FBRUFELElBQUFBLFNBQVMsR0FBRyxLQUFLVSxXQUFMLENBQWlCLEtBQUtDLFFBQUwsQ0FBY1gsU0FBZCxDQUFqQixDQUFaO0FBQ0FDLElBQUFBLFNBQVMsR0FBRyxLQUFLUyxXQUFMLENBQWlCLEtBQUtDLFFBQUwsQ0FBY1YsU0FBZCxDQUFqQixDQUFaO0FBRUEsUUFBSVcsTUFBTSxHQUFHWCxTQUFTLENBQUNZLE1BQXZCO0FBQUEsUUFBK0JDLE1BQU0sR0FBR2QsU0FBUyxDQUFDYSxNQUFsRDtBQUNBLFFBQUlFLFVBQVUsR0FBRyxDQUFqQjtBQUNBLFFBQUlDLGFBQWEsR0FBR0osTUFBTSxHQUFHRSxNQUE3Qjs7QUFDQSxRQUFHWixPQUFPLENBQUNjLGFBQVgsRUFBMEI7QUFDeEJBLE1BQUFBLGFBQWEsR0FBR0MsSUFBSSxDQUFDQyxHQUFMLENBQVNGLGFBQVQsRUFBd0JkLE9BQU8sQ0FBQ2MsYUFBaEMsQ0FBaEI7QUFDRDs7QUFFRCxRQUFJRyxRQUFRLEdBQUcsQ0FBQztBQUFFQyxNQUFBQSxNQUFNLEVBQUUsQ0FBQyxDQUFYO0FBQWNDLE1BQUFBLFVBQVUsRUFBRTtBQUExQixLQUFELENBQWYsQ0FqQ3VDLENBbUN2Qzs7QUFDQSxRQUFJQyxNQUFNLEdBQUcsS0FBS0MsYUFBTCxDQUFtQkosUUFBUSxDQUFDLENBQUQsQ0FBM0IsRUFBZ0NsQixTQUFoQyxFQUEyQ0QsU0FBM0MsRUFBc0QsQ0FBdEQsQ0FBYjs7QUFDQSxRQUFJbUIsUUFBUSxDQUFDLENBQUQsQ0FBUixDQUFZQyxNQUFaLEdBQXFCLENBQXJCLElBQTBCUixNQUExQixJQUFvQ1UsTUFBTSxHQUFHLENBQVQsSUFBY1IsTUFBdEQsRUFBOEQ7QUFDNUQ7QUFDQSxhQUFPVCxJQUFJLENBQUMsQ0FBQztBQUFDQyxRQUFBQSxLQUFLLEVBQUUsS0FBS2tCLElBQUwsQ0FBVXZCLFNBQVYsQ0FBUjtBQUE4QndCLFFBQUFBLEtBQUssRUFBRXhCLFNBQVMsQ0FBQ1k7QUFBL0MsT0FBRCxDQUFELENBQVg7QUFDRCxLQXhDc0MsQ0EwQ3ZDOzs7QUFDQSxhQUFTYSxjQUFULEdBQTBCO0FBQ3hCLFdBQUssSUFBSUMsWUFBWSxHQUFHLENBQUMsQ0FBRCxHQUFLWixVQUE3QixFQUF5Q1ksWUFBWSxJQUFJWixVQUF6RCxFQUFxRVksWUFBWSxJQUFJLENBQXJGLEVBQXdGO0FBQ3RGLFlBQUlDLFFBQVE7QUFBQTtBQUFBO0FBQVo7QUFBQTs7QUFDQSxZQUFJQyxPQUFPLEdBQUdWLFFBQVEsQ0FBQ1EsWUFBWSxHQUFHLENBQWhCLENBQXRCO0FBQUEsWUFDSUcsVUFBVSxHQUFHWCxRQUFRLENBQUNRLFlBQVksR0FBRyxDQUFoQixDQUR6QjtBQUFBLFlBRUlMLE9BQU0sR0FBRyxDQUFDUSxVQUFVLEdBQUdBLFVBQVUsQ0FBQ1YsTUFBZCxHQUF1QixDQUFsQyxJQUF1Q08sWUFGcEQ7O0FBR0EsWUFBSUUsT0FBSixFQUFhO0FBQ1g7QUFDQVYsVUFBQUEsUUFBUSxDQUFDUSxZQUFZLEdBQUcsQ0FBaEIsQ0FBUixHQUE2Qm5CLFNBQTdCO0FBQ0Q7O0FBRUQsWUFBSXVCLE1BQU0sR0FBR0YsT0FBTyxJQUFJQSxPQUFPLENBQUNULE1BQVIsR0FBaUIsQ0FBakIsR0FBcUJSLE1BQTdDO0FBQUEsWUFDSW9CLFNBQVMsR0FBR0YsVUFBVSxJQUFJLEtBQUtSLE9BQW5CLElBQTZCQSxPQUFNLEdBQUdSLE1BRHREOztBQUVBLFlBQUksQ0FBQ2lCLE1BQUQsSUFBVyxDQUFDQyxTQUFoQixFQUEyQjtBQUN6QjtBQUNBYixVQUFBQSxRQUFRLENBQUNRLFlBQUQsQ0FBUixHQUF5Qm5CLFNBQXpCO0FBQ0E7QUFDRCxTQWhCcUYsQ0FrQnRGO0FBQ0E7QUFDQTs7O0FBQ0EsWUFBSSxDQUFDdUIsTUFBRCxJQUFZQyxTQUFTLElBQUlILE9BQU8sQ0FBQ1QsTUFBUixHQUFpQlUsVUFBVSxDQUFDVixNQUF6RCxFQUFrRTtBQUNoRVEsVUFBQUEsUUFBUSxHQUFHSyxTQUFTLENBQUNILFVBQUQsQ0FBcEI7QUFDQTFCLFVBQUFBLElBQUksQ0FBQzhCLGFBQUwsQ0FBbUJOLFFBQVEsQ0FBQ1AsVUFBNUIsRUFBd0NiLFNBQXhDLEVBQW1ELElBQW5EO0FBQ0QsU0FIRCxNQUdPO0FBQ0xvQixVQUFBQSxRQUFRLEdBQUdDLE9BQVgsQ0FESyxDQUNlOztBQUNwQkQsVUFBQUEsUUFBUSxDQUFDUixNQUFUO0FBQ0FoQixVQUFBQSxJQUFJLENBQUM4QixhQUFMLENBQW1CTixRQUFRLENBQUNQLFVBQTVCLEVBQXdDLElBQXhDLEVBQThDYixTQUE5QztBQUNEOztBQUVEYyxRQUFBQSxPQUFNLEdBQUdsQixJQUFJLENBQUNtQixhQUFMLENBQW1CSyxRQUFuQixFQUE2QjNCLFNBQTdCLEVBQXdDRCxTQUF4QyxFQUFtRDJCLFlBQW5ELENBQVQsQ0E5QnNGLENBZ0N0Rjs7QUFDQSxZQUFJQyxRQUFRLENBQUNSLE1BQVQsR0FBa0IsQ0FBbEIsSUFBdUJSLE1BQXZCLElBQWlDVSxPQUFNLEdBQUcsQ0FBVCxJQUFjUixNQUFuRCxFQUEyRDtBQUN6RCxpQkFBT1QsSUFBSSxDQUFDOEIsV0FBVyxDQUFDL0IsSUFBRCxFQUFPd0IsUUFBUSxDQUFDUCxVQUFoQixFQUE0QnBCLFNBQTVCLEVBQXVDRCxTQUF2QyxFQUFrREksSUFBSSxDQUFDZ0MsZUFBdkQsQ0FBWixDQUFYO0FBQ0QsU0FGRCxNQUVPO0FBQ0w7QUFDQWpCLFVBQUFBLFFBQVEsQ0FBQ1EsWUFBRCxDQUFSLEdBQXlCQyxRQUF6QjtBQUNEO0FBQ0Y7O0FBRURiLE1BQUFBLFVBQVU7QUFDWCxLQXRGc0MsQ0F3RnZDO0FBQ0E7QUFDQTtBQUNBOzs7QUFDQSxRQUFJWixRQUFKLEVBQWM7QUFDWCxnQkFBU2tDLElBQVQsR0FBZ0I7QUFDZjlCLFFBQUFBLFVBQVUsQ0FBQyxZQUFXO0FBQ3BCLGNBQUlRLFVBQVUsR0FBR0MsYUFBakIsRUFBZ0M7QUFDOUIsbUJBQU9iLFFBQVEsRUFBZjtBQUNEOztBQUVELGNBQUksQ0FBQ3VCLGNBQWMsRUFBbkIsRUFBdUI7QUFDckJXLFlBQUFBLElBQUk7QUFDTDtBQUNGLFNBUlMsRUFRUCxDQVJPLENBQVY7QUFTRCxPQVZBLEdBQUQ7QUFXRCxLQVpELE1BWU87QUFDTCxhQUFPdEIsVUFBVSxJQUFJQyxhQUFyQixFQUFvQztBQUNsQyxZQUFJc0IsR0FBRyxHQUFHWixjQUFjLEVBQXhCOztBQUNBLFlBQUlZLEdBQUosRUFBUztBQUNQLGlCQUFPQSxHQUFQO0FBQ0Q7QUFDRjtBQUNGO0FBQ0YsR0FqSGM7O0FBQUE7O0FBQUE7QUFtSGZKLEVBQUFBLGFBbkhlLHlCQW1IRGIsVUFuSEMsRUFtSFdrQixLQW5IWCxFQW1Ia0JDLE9BbkhsQixFQW1IMkI7QUFDeEMsUUFBSUMsSUFBSSxHQUFHcEIsVUFBVSxDQUFDQSxVQUFVLENBQUNSLE1BQVgsR0FBb0IsQ0FBckIsQ0FBckI7O0FBQ0EsUUFBSTRCLElBQUksSUFBSUEsSUFBSSxDQUFDRixLQUFMLEtBQWVBLEtBQXZCLElBQWdDRSxJQUFJLENBQUNELE9BQUwsS0FBaUJBLE9BQXJELEVBQThEO0FBQzVEO0FBQ0E7QUFDQW5CLE1BQUFBLFVBQVUsQ0FBQ0EsVUFBVSxDQUFDUixNQUFYLEdBQW9CLENBQXJCLENBQVYsR0FBb0M7QUFBQ1ksUUFBQUEsS0FBSyxFQUFFZ0IsSUFBSSxDQUFDaEIsS0FBTCxHQUFhLENBQXJCO0FBQXdCYyxRQUFBQSxLQUFLLEVBQUVBLEtBQS9CO0FBQXNDQyxRQUFBQSxPQUFPLEVBQUVBO0FBQS9DLE9BQXBDO0FBQ0QsS0FKRCxNQUlPO0FBQ0xuQixNQUFBQSxVQUFVLENBQUNxQixJQUFYLENBQWdCO0FBQUNqQixRQUFBQSxLQUFLLEVBQUUsQ0FBUjtBQUFXYyxRQUFBQSxLQUFLLEVBQUVBLEtBQWxCO0FBQXlCQyxRQUFBQSxPQUFPLEVBQUVBO0FBQWxDLE9BQWhCO0FBQ0Q7QUFDRixHQTVIYzs7QUFBQTs7QUFBQTtBQTZIZmpCLEVBQUFBLGFBN0hlLHlCQTZIREssUUE3SEMsRUE2SFMzQixTQTdIVCxFQTZIb0JELFNBN0hwQixFQTZIK0IyQixZQTdIL0IsRUE2SDZDO0FBQzFELFFBQUlmLE1BQU0sR0FBR1gsU0FBUyxDQUFDWSxNQUF2QjtBQUFBLFFBQ0lDLE1BQU0sR0FBR2QsU0FBUyxDQUFDYSxNQUR2QjtBQUFBLFFBRUlPLE1BQU0sR0FBR1EsUUFBUSxDQUFDUixNQUZ0QjtBQUFBLFFBR0lFLE1BQU0sR0FBR0YsTUFBTSxHQUFHTyxZQUh0QjtBQUFBLFFBS0lnQixXQUFXLEdBQUcsQ0FMbEI7O0FBTUEsV0FBT3ZCLE1BQU0sR0FBRyxDQUFULEdBQWFSLE1BQWIsSUFBdUJVLE1BQU0sR0FBRyxDQUFULEdBQWFSLE1BQXBDLElBQThDLEtBQUs4QixNQUFMLENBQVkzQyxTQUFTLENBQUNtQixNQUFNLEdBQUcsQ0FBVixDQUFyQixFQUFtQ3BCLFNBQVMsQ0FBQ3NCLE1BQU0sR0FBRyxDQUFWLENBQTVDLENBQXJELEVBQWdIO0FBQzlHRixNQUFBQSxNQUFNO0FBQ05FLE1BQUFBLE1BQU07QUFDTnFCLE1BQUFBLFdBQVc7QUFDWjs7QUFFRCxRQUFJQSxXQUFKLEVBQWlCO0FBQ2ZmLE1BQUFBLFFBQVEsQ0FBQ1AsVUFBVCxDQUFvQnFCLElBQXBCLENBQXlCO0FBQUNqQixRQUFBQSxLQUFLLEVBQUVrQjtBQUFSLE9BQXpCO0FBQ0Q7O0FBRURmLElBQUFBLFFBQVEsQ0FBQ1IsTUFBVCxHQUFrQkEsTUFBbEI7QUFDQSxXQUFPRSxNQUFQO0FBQ0QsR0FoSmM7O0FBQUE7O0FBQUE7QUFrSmZzQixFQUFBQSxNQWxKZSxrQkFrSlJDLElBbEpRLEVBa0pGQyxLQWxKRSxFQWtKSztBQUNsQixRQUFJLEtBQUs1QyxPQUFMLENBQWE2QyxVQUFqQixFQUE2QjtBQUMzQixhQUFPLEtBQUs3QyxPQUFMLENBQWE2QyxVQUFiLENBQXdCRixJQUF4QixFQUE4QkMsS0FBOUIsQ0FBUDtBQUNELEtBRkQsTUFFTztBQUNMLGFBQU9ELElBQUksS0FBS0MsS0FBVCxJQUNELEtBQUs1QyxPQUFMLENBQWE4QyxVQUFiLElBQTJCSCxJQUFJLENBQUNJLFdBQUwsT0FBdUJILEtBQUssQ0FBQ0csV0FBTixFQUR4RDtBQUVEO0FBQ0YsR0F6SmM7O0FBQUE7O0FBQUE7QUEwSmZ2QyxFQUFBQSxXQTFKZSx1QkEwSkh3QyxLQTFKRyxFQTBKSTtBQUNqQixRQUFJWixHQUFHLEdBQUcsRUFBVjs7QUFDQSxTQUFLLElBQUlhLENBQUMsR0FBRyxDQUFiLEVBQWdCQSxDQUFDLEdBQUdELEtBQUssQ0FBQ3JDLE1BQTFCLEVBQWtDc0MsQ0FBQyxFQUFuQyxFQUF1QztBQUNyQyxVQUFJRCxLQUFLLENBQUNDLENBQUQsQ0FBVCxFQUFjO0FBQ1piLFFBQUFBLEdBQUcsQ0FBQ0ksSUFBSixDQUFTUSxLQUFLLENBQUNDLENBQUQsQ0FBZDtBQUNEO0FBQ0Y7O0FBQ0QsV0FBT2IsR0FBUDtBQUNELEdBbEtjOztBQUFBOztBQUFBO0FBbUtmN0IsRUFBQUEsU0FuS2UscUJBbUtMSCxLQW5LSyxFQW1LRTtBQUNmLFdBQU9BLEtBQVA7QUFDRCxHQXJLYzs7QUFBQTs7QUFBQTtBQXNLZkssRUFBQUEsUUF0S2Usb0JBc0tOTCxLQXRLTSxFQXNLQztBQUNkLFdBQU9BLEtBQUssQ0FBQzhDLEtBQU4sQ0FBWSxFQUFaLENBQVA7QUFDRCxHQXhLYzs7QUFBQTs7QUFBQTtBQXlLZjVCLEVBQUFBLElBektlLGdCQXlLVjZCLEtBektVLEVBeUtIO0FBQ1YsV0FBT0EsS0FBSyxDQUFDN0IsSUFBTixDQUFXLEVBQVgsQ0FBUDtBQUNEO0FBM0tjLENBQWpCOztBQThLQSxTQUFTVyxXQUFULENBQXFCcEMsSUFBckIsRUFBMkJzQixVQUEzQixFQUF1Q3BCLFNBQXZDLEVBQWtERCxTQUFsRCxFQUE2RG9DLGVBQTdELEVBQThFO0FBQzVFLE1BQUlrQixZQUFZLEdBQUcsQ0FBbkI7QUFBQSxNQUNJQyxZQUFZLEdBQUdsQyxVQUFVLENBQUNSLE1BRDlCO0FBQUEsTUFFSU8sTUFBTSxHQUFHLENBRmI7QUFBQSxNQUdJRSxNQUFNLEdBQUcsQ0FIYjs7QUFLQSxTQUFPZ0MsWUFBWSxHQUFHQyxZQUF0QixFQUFvQ0QsWUFBWSxFQUFoRCxFQUFvRDtBQUNsRCxRQUFJRSxTQUFTLEdBQUduQyxVQUFVLENBQUNpQyxZQUFELENBQTFCOztBQUNBLFFBQUksQ0FBQ0UsU0FBUyxDQUFDaEIsT0FBZixFQUF3QjtBQUN0QixVQUFJLENBQUNnQixTQUFTLENBQUNqQixLQUFYLElBQW9CSCxlQUF4QixFQUF5QztBQUN2QyxZQUFJOUIsS0FBSyxHQUFHTCxTQUFTLENBQUN3RCxLQUFWLENBQWdCckMsTUFBaEIsRUFBd0JBLE1BQU0sR0FBR29DLFNBQVMsQ0FBQy9CLEtBQTNDLENBQVo7QUFDQW5CLFFBQUFBLEtBQUssR0FBR0EsS0FBSyxDQUFDb0QsR0FBTixDQUFVLFVBQVNwRCxLQUFULEVBQWdCNkMsQ0FBaEIsRUFBbUI7QUFDbkMsY0FBSVEsUUFBUSxHQUFHM0QsU0FBUyxDQUFDc0IsTUFBTSxHQUFHNkIsQ0FBVixDQUF4QjtBQUNBLGlCQUFPUSxRQUFRLENBQUM5QyxNQUFULEdBQWtCUCxLQUFLLENBQUNPLE1BQXhCLEdBQWlDOEMsUUFBakMsR0FBNENyRCxLQUFuRDtBQUNELFNBSE8sQ0FBUjtBQUtBa0QsUUFBQUEsU0FBUyxDQUFDbEQsS0FBVixHQUFrQlAsSUFBSSxDQUFDeUIsSUFBTCxDQUFVbEIsS0FBVixDQUFsQjtBQUNELE9BUkQsTUFRTztBQUNMa0QsUUFBQUEsU0FBUyxDQUFDbEQsS0FBVixHQUFrQlAsSUFBSSxDQUFDeUIsSUFBTCxDQUFVdkIsU0FBUyxDQUFDd0QsS0FBVixDQUFnQnJDLE1BQWhCLEVBQXdCQSxNQUFNLEdBQUdvQyxTQUFTLENBQUMvQixLQUEzQyxDQUFWLENBQWxCO0FBQ0Q7O0FBQ0RMLE1BQUFBLE1BQU0sSUFBSW9DLFNBQVMsQ0FBQy9CLEtBQXBCLENBWnNCLENBY3RCOztBQUNBLFVBQUksQ0FBQytCLFNBQVMsQ0FBQ2pCLEtBQWYsRUFBc0I7QUFDcEJqQixRQUFBQSxNQUFNLElBQUlrQyxTQUFTLENBQUMvQixLQUFwQjtBQUNEO0FBQ0YsS0FsQkQsTUFrQk87QUFDTCtCLE1BQUFBLFNBQVMsQ0FBQ2xELEtBQVYsR0FBa0JQLElBQUksQ0FBQ3lCLElBQUwsQ0FBVXhCLFNBQVMsQ0FBQ3lELEtBQVYsQ0FBZ0JuQyxNQUFoQixFQUF3QkEsTUFBTSxHQUFHa0MsU0FBUyxDQUFDL0IsS0FBM0MsQ0FBVixDQUFsQjtBQUNBSCxNQUFBQSxNQUFNLElBQUlrQyxTQUFTLENBQUMvQixLQUFwQixDQUZLLENBSUw7QUFDQTtBQUNBOztBQUNBLFVBQUk2QixZQUFZLElBQUlqQyxVQUFVLENBQUNpQyxZQUFZLEdBQUcsQ0FBaEIsQ0FBVixDQUE2QmYsS0FBakQsRUFBd0Q7QUFDdEQsWUFBSXFCLEdBQUcsR0FBR3ZDLFVBQVUsQ0FBQ2lDLFlBQVksR0FBRyxDQUFoQixDQUFwQjtBQUNBakMsUUFBQUEsVUFBVSxDQUFDaUMsWUFBWSxHQUFHLENBQWhCLENBQVYsR0FBK0JqQyxVQUFVLENBQUNpQyxZQUFELENBQXpDO0FBQ0FqQyxRQUFBQSxVQUFVLENBQUNpQyxZQUFELENBQVYsR0FBMkJNLEdBQTNCO0FBQ0Q7QUFDRjtBQUNGLEdBdkMyRSxDQXlDNUU7QUFDQTtBQUNBOzs7QUFDQSxNQUFJQyxhQUFhLEdBQUd4QyxVQUFVLENBQUNrQyxZQUFZLEdBQUcsQ0FBaEIsQ0FBOUI7O0FBQ0EsTUFBSUEsWUFBWSxHQUFHLENBQWYsSUFDRyxPQUFPTSxhQUFhLENBQUN2RCxLQUFyQixLQUErQixRQURsQyxLQUVJdUQsYUFBYSxDQUFDdEIsS0FBZCxJQUF1QnNCLGFBQWEsQ0FBQ3JCLE9BRnpDLEtBR0d6QyxJQUFJLENBQUM2QyxNQUFMLENBQVksRUFBWixFQUFnQmlCLGFBQWEsQ0FBQ3ZELEtBQTlCLENBSFAsRUFHNkM7QUFDM0NlLElBQUFBLFVBQVUsQ0FBQ2tDLFlBQVksR0FBRyxDQUFoQixDQUFWLENBQTZCakQsS0FBN0IsSUFBc0N1RCxhQUFhLENBQUN2RCxLQUFwRDtBQUNBZSxJQUFBQSxVQUFVLENBQUN5QyxHQUFYO0FBQ0Q7O0FBRUQsU0FBT3pDLFVBQVA7QUFDRDs7QUFFRCxTQUFTWSxTQUFULENBQW1COEIsSUFBbkIsRUFBeUI7QUFDdkIsU0FBTztBQUFFM0MsSUFBQUEsTUFBTSxFQUFFMkMsSUFBSSxDQUFDM0MsTUFBZjtBQUF1QkMsSUFBQUEsVUFBVSxFQUFFMEMsSUFBSSxDQUFDMUMsVUFBTCxDQUFnQm9DLEtBQWhCLENBQXNCLENBQXRCO0FBQW5DLEdBQVA7QUFDRCIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBkZWZhdWx0IGZ1bmN0aW9uIERpZmYoKSB7fVxuXG5EaWZmLnByb3RvdHlwZSA9IHtcbiAgZGlmZihvbGRTdHJpbmcsIG5ld1N0cmluZywgb3B0aW9ucyA9IHt9KSB7XG4gICAgbGV0IGNhbGxiYWNrID0gb3B0aW9ucy5jYWxsYmFjaztcbiAgICBpZiAodHlwZW9mIG9wdGlvbnMgPT09ICdmdW5jdGlvbicpIHtcbiAgICAgIGNhbGxiYWNrID0gb3B0aW9ucztcbiAgICAgIG9wdGlvbnMgPSB7fTtcbiAgICB9XG4gICAgdGhpcy5vcHRpb25zID0gb3B0aW9ucztcblxuICAgIGxldCBzZWxmID0gdGhpcztcblxuICAgIGZ1bmN0aW9uIGRvbmUodmFsdWUpIHtcbiAgICAgIGlmIChjYWxsYmFjaykge1xuICAgICAgICBzZXRUaW1lb3V0KGZ1bmN0aW9uKCkgeyBjYWxsYmFjayh1bmRlZmluZWQsIHZhbHVlKTsgfSwgMCk7XG4gICAgICAgIHJldHVybiB0cnVlO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIHZhbHVlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC8vIEFsbG93IHN1YmNsYXNzZXMgdG8gbWFzc2FnZSB0aGUgaW5wdXQgcHJpb3IgdG8gcnVubmluZ1xuICAgIG9sZFN0cmluZyA9IHRoaXMuY2FzdElucHV0KG9sZFN0cmluZyk7XG4gICAgbmV3U3RyaW5nID0gdGhpcy5jYXN0SW5wdXQobmV3U3RyaW5nKTtcblxuICAgIG9sZFN0cmluZyA9IHRoaXMucmVtb3ZlRW1wdHkodGhpcy50b2tlbml6ZShvbGRTdHJpbmcpKTtcbiAgICBuZXdTdHJpbmcgPSB0aGlzLnJlbW92ZUVtcHR5KHRoaXMudG9rZW5pemUobmV3U3RyaW5nKSk7XG5cbiAgICBsZXQgbmV3TGVuID0gbmV3U3RyaW5nLmxlbmd0aCwgb2xkTGVuID0gb2xkU3RyaW5nLmxlbmd0aDtcbiAgICBsZXQgZWRpdExlbmd0aCA9IDE7XG4gICAgbGV0IG1heEVkaXRMZW5ndGggPSBuZXdMZW4gKyBvbGRMZW47XG4gICAgaWYob3B0aW9ucy5tYXhFZGl0TGVuZ3RoKSB7XG4gICAgICBtYXhFZGl0TGVuZ3RoID0gTWF0aC5taW4obWF4RWRpdExlbmd0aCwgb3B0aW9ucy5tYXhFZGl0TGVuZ3RoKTtcbiAgICB9XG5cbiAgICBsZXQgYmVzdFBhdGggPSBbeyBuZXdQb3M6IC0xLCBjb21wb25lbnRzOiBbXSB9XTtcblxuICAgIC8vIFNlZWQgZWRpdExlbmd0aCA9IDAsIGkuZS4gdGhlIGNvbnRlbnQgc3RhcnRzIHdpdGggdGhlIHNhbWUgdmFsdWVzXG4gICAgbGV0IG9sZFBvcyA9IHRoaXMuZXh0cmFjdENvbW1vbihiZXN0UGF0aFswXSwgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIDApO1xuICAgIGlmIChiZXN0UGF0aFswXS5uZXdQb3MgKyAxID49IG5ld0xlbiAmJiBvbGRQb3MgKyAxID49IG9sZExlbikge1xuICAgICAgLy8gSWRlbnRpdHkgcGVyIHRoZSBlcXVhbGl0eSBhbmQgdG9rZW5pemVyXG4gICAgICByZXR1cm4gZG9uZShbe3ZhbHVlOiB0aGlzLmpvaW4obmV3U3RyaW5nKSwgY291bnQ6IG5ld1N0cmluZy5sZW5ndGh9XSk7XG4gICAgfVxuXG4gICAgLy8gTWFpbiB3b3JrZXIgbWV0aG9kLiBjaGVja3MgYWxsIHBlcm11dGF0aW9ucyBvZiBhIGdpdmVuIGVkaXQgbGVuZ3RoIGZvciBhY2NlcHRhbmNlLlxuICAgIGZ1bmN0aW9uIGV4ZWNFZGl0TGVuZ3RoKCkge1xuICAgICAgZm9yIChsZXQgZGlhZ29uYWxQYXRoID0gLTEgKiBlZGl0TGVuZ3RoOyBkaWFnb25hbFBhdGggPD0gZWRpdExlbmd0aDsgZGlhZ29uYWxQYXRoICs9IDIpIHtcbiAgICAgICAgbGV0IGJhc2VQYXRoO1xuICAgICAgICBsZXQgYWRkUGF0aCA9IGJlc3RQYXRoW2RpYWdvbmFsUGF0aCAtIDFdLFxuICAgICAgICAgICAgcmVtb3ZlUGF0aCA9IGJlc3RQYXRoW2RpYWdvbmFsUGF0aCArIDFdLFxuICAgICAgICAgICAgb2xkUG9zID0gKHJlbW92ZVBhdGggPyByZW1vdmVQYXRoLm5ld1BvcyA6IDApIC0gZGlhZ29uYWxQYXRoO1xuICAgICAgICBpZiAoYWRkUGF0aCkge1xuICAgICAgICAgIC8vIE5vIG9uZSBlbHNlIGlzIGdvaW5nIHRvIGF0dGVtcHQgdG8gdXNlIHRoaXMgdmFsdWUsIGNsZWFyIGl0XG4gICAgICAgICAgYmVzdFBhdGhbZGlhZ29uYWxQYXRoIC0gMV0gPSB1bmRlZmluZWQ7XG4gICAgICAgIH1cblxuICAgICAgICBsZXQgY2FuQWRkID0gYWRkUGF0aCAmJiBhZGRQYXRoLm5ld1BvcyArIDEgPCBuZXdMZW4sXG4gICAgICAgICAgICBjYW5SZW1vdmUgPSByZW1vdmVQYXRoICYmIDAgPD0gb2xkUG9zICYmIG9sZFBvcyA8IG9sZExlbjtcbiAgICAgICAgaWYgKCFjYW5BZGQgJiYgIWNhblJlbW92ZSkge1xuICAgICAgICAgIC8vIElmIHRoaXMgcGF0aCBpcyBhIHRlcm1pbmFsIHRoZW4gcHJ1bmVcbiAgICAgICAgICBiZXN0UGF0aFtkaWFnb25hbFBhdGhdID0gdW5kZWZpbmVkO1xuICAgICAgICAgIGNvbnRpbnVlO1xuICAgICAgICB9XG5cbiAgICAgICAgLy8gU2VsZWN0IHRoZSBkaWFnb25hbCB0aGF0IHdlIHdhbnQgdG8gYnJhbmNoIGZyb20uIFdlIHNlbGVjdCB0aGUgcHJpb3JcbiAgICAgICAgLy8gcGF0aCB3aG9zZSBwb3NpdGlvbiBpbiB0aGUgbmV3IHN0cmluZyBpcyB0aGUgZmFydGhlc3QgZnJvbSB0aGUgb3JpZ2luXG4gICAgICAgIC8vIGFuZCBkb2VzIG5vdCBwYXNzIHRoZSBib3VuZHMgb2YgdGhlIGRpZmYgZ3JhcGhcbiAgICAgICAgaWYgKCFjYW5BZGQgfHwgKGNhblJlbW92ZSAmJiBhZGRQYXRoLm5ld1BvcyA8IHJlbW92ZVBhdGgubmV3UG9zKSkge1xuICAgICAgICAgIGJhc2VQYXRoID0gY2xvbmVQYXRoKHJlbW92ZVBhdGgpO1xuICAgICAgICAgIHNlbGYucHVzaENvbXBvbmVudChiYXNlUGF0aC5jb21wb25lbnRzLCB1bmRlZmluZWQsIHRydWUpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIGJhc2VQYXRoID0gYWRkUGF0aDsgLy8gTm8gbmVlZCB0byBjbG9uZSwgd2UndmUgcHVsbGVkIGl0IGZyb20gdGhlIGxpc3RcbiAgICAgICAgICBiYXNlUGF0aC5uZXdQb3MrKztcbiAgICAgICAgICBzZWxmLnB1c2hDb21wb25lbnQoYmFzZVBhdGguY29tcG9uZW50cywgdHJ1ZSwgdW5kZWZpbmVkKTtcbiAgICAgICAgfVxuXG4gICAgICAgIG9sZFBvcyA9IHNlbGYuZXh0cmFjdENvbW1vbihiYXNlUGF0aCwgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIGRpYWdvbmFsUGF0aCk7XG5cbiAgICAgICAgLy8gSWYgd2UgaGF2ZSBoaXQgdGhlIGVuZCBvZiBib3RoIHN0cmluZ3MsIHRoZW4gd2UgYXJlIGRvbmVcbiAgICAgICAgaWYgKGJhc2VQYXRoLm5ld1BvcyArIDEgPj0gbmV3TGVuICYmIG9sZFBvcyArIDEgPj0gb2xkTGVuKSB7XG4gICAgICAgICAgcmV0dXJuIGRvbmUoYnVpbGRWYWx1ZXMoc2VsZiwgYmFzZVBhdGguY29tcG9uZW50cywgbmV3U3RyaW5nLCBvbGRTdHJpbmcsIHNlbGYudXNlTG9uZ2VzdFRva2VuKSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgLy8gT3RoZXJ3aXNlIHRyYWNrIHRoaXMgcGF0aCBhcyBhIHBvdGVudGlhbCBjYW5kaWRhdGUgYW5kIGNvbnRpbnVlLlxuICAgICAgICAgIGJlc3RQYXRoW2RpYWdvbmFsUGF0aF0gPSBiYXNlUGF0aDtcbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICBlZGl0TGVuZ3RoKys7XG4gICAgfVxuXG4gICAgLy8gUGVyZm9ybXMgdGhlIGxlbmd0aCBvZiBlZGl0IGl0ZXJhdGlvbi4gSXMgYSBiaXQgZnVnbHkgYXMgdGhpcyBoYXMgdG8gc3VwcG9ydCB0aGVcbiAgICAvLyBzeW5jIGFuZCBhc3luYyBtb2RlIHdoaWNoIGlzIG5ldmVyIGZ1bi4gTG9vcHMgb3ZlciBleGVjRWRpdExlbmd0aCB1bnRpbCBhIHZhbHVlXG4gICAgLy8gaXMgcHJvZHVjZWQsIG9yIHVudGlsIHRoZSBlZGl0IGxlbmd0aCBleGNlZWRzIG9wdGlvbnMubWF4RWRpdExlbmd0aCAoaWYgZ2l2ZW4pLFxuICAgIC8vIGluIHdoaWNoIGNhc2UgaXQgd2lsbCByZXR1cm4gdW5kZWZpbmVkLlxuICAgIGlmIChjYWxsYmFjaykge1xuICAgICAgKGZ1bmN0aW9uIGV4ZWMoKSB7XG4gICAgICAgIHNldFRpbWVvdXQoZnVuY3Rpb24oKSB7XG4gICAgICAgICAgaWYgKGVkaXRMZW5ndGggPiBtYXhFZGl0TGVuZ3RoKSB7XG4gICAgICAgICAgICByZXR1cm4gY2FsbGJhY2soKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICBpZiAoIWV4ZWNFZGl0TGVuZ3RoKCkpIHtcbiAgICAgICAgICAgIGV4ZWMoKTtcbiAgICAgICAgICB9XG4gICAgICAgIH0sIDApO1xuICAgICAgfSgpKTtcbiAgICB9IGVsc2Uge1xuICAgICAgd2hpbGUgKGVkaXRMZW5ndGggPD0gbWF4RWRpdExlbmd0aCkge1xuICAgICAgICBsZXQgcmV0ID0gZXhlY0VkaXRMZW5ndGgoKTtcbiAgICAgICAgaWYgKHJldCkge1xuICAgICAgICAgIHJldHVybiByZXQ7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gIH0sXG5cbiAgcHVzaENvbXBvbmVudChjb21wb25lbnRzLCBhZGRlZCwgcmVtb3ZlZCkge1xuICAgIGxldCBsYXN0ID0gY29tcG9uZW50c1tjb21wb25lbnRzLmxlbmd0aCAtIDFdO1xuICAgIGlmIChsYXN0ICYmIGxhc3QuYWRkZWQgPT09IGFkZGVkICYmIGxhc3QucmVtb3ZlZCA9PT0gcmVtb3ZlZCkge1xuICAgICAgLy8gV2UgbmVlZCB0byBjbG9uZSBoZXJlIGFzIHRoZSBjb21wb25lbnQgY2xvbmUgb3BlcmF0aW9uIGlzIGp1c3RcbiAgICAgIC8vIGFzIHNoYWxsb3cgYXJyYXkgY2xvbmVcbiAgICAgIGNvbXBvbmVudHNbY29tcG9uZW50cy5sZW5ndGggLSAxXSA9IHtjb3VudDogbGFzdC5jb3VudCArIDEsIGFkZGVkOiBhZGRlZCwgcmVtb3ZlZDogcmVtb3ZlZCB9O1xuICAgIH0gZWxzZSB7XG4gICAgICBjb21wb25lbnRzLnB1c2goe2NvdW50OiAxLCBhZGRlZDogYWRkZWQsIHJlbW92ZWQ6IHJlbW92ZWQgfSk7XG4gICAgfVxuICB9LFxuICBleHRyYWN0Q29tbW9uKGJhc2VQYXRoLCBuZXdTdHJpbmcsIG9sZFN0cmluZywgZGlhZ29uYWxQYXRoKSB7XG4gICAgbGV0IG5ld0xlbiA9IG5ld1N0cmluZy5sZW5ndGgsXG4gICAgICAgIG9sZExlbiA9IG9sZFN0cmluZy5sZW5ndGgsXG4gICAgICAgIG5ld1BvcyA9IGJhc2VQYXRoLm5ld1BvcyxcbiAgICAgICAgb2xkUG9zID0gbmV3UG9zIC0gZGlhZ29uYWxQYXRoLFxuXG4gICAgICAgIGNvbW1vbkNvdW50ID0gMDtcbiAgICB3aGlsZSAobmV3UG9zICsgMSA8IG5ld0xlbiAmJiBvbGRQb3MgKyAxIDwgb2xkTGVuICYmIHRoaXMuZXF1YWxzKG5ld1N0cmluZ1tuZXdQb3MgKyAxXSwgb2xkU3RyaW5nW29sZFBvcyArIDFdKSkge1xuICAgICAgbmV3UG9zKys7XG4gICAgICBvbGRQb3MrKztcbiAgICAgIGNvbW1vbkNvdW50Kys7XG4gICAgfVxuXG4gICAgaWYgKGNvbW1vbkNvdW50KSB7XG4gICAgICBiYXNlUGF0aC5jb21wb25lbnRzLnB1c2goe2NvdW50OiBjb21tb25Db3VudH0pO1xuICAgIH1cblxuICAgIGJhc2VQYXRoLm5ld1BvcyA9IG5ld1BvcztcbiAgICByZXR1cm4gb2xkUG9zO1xuICB9LFxuXG4gIGVxdWFscyhsZWZ0LCByaWdodCkge1xuICAgIGlmICh0aGlzLm9wdGlvbnMuY29tcGFyYXRvcikge1xuICAgICAgcmV0dXJuIHRoaXMub3B0aW9ucy5jb21wYXJhdG9yKGxlZnQsIHJpZ2h0KTtcbiAgICB9IGVsc2Uge1xuICAgICAgcmV0dXJuIGxlZnQgPT09IHJpZ2h0XG4gICAgICAgIHx8ICh0aGlzLm9wdGlvbnMuaWdub3JlQ2FzZSAmJiBsZWZ0LnRvTG93ZXJDYXNlKCkgPT09IHJpZ2h0LnRvTG93ZXJDYXNlKCkpO1xuICAgIH1cbiAgfSxcbiAgcmVtb3ZlRW1wdHkoYXJyYXkpIHtcbiAgICBsZXQgcmV0ID0gW107XG4gICAgZm9yIChsZXQgaSA9IDA7IGkgPCBhcnJheS5sZW5ndGg7IGkrKykge1xuICAgICAgaWYgKGFycmF5W2ldKSB7XG4gICAgICAgIHJldC5wdXNoKGFycmF5W2ldKTtcbiAgICAgIH1cbiAgICB9XG4gICAgcmV0dXJuIHJldDtcbiAgfSxcbiAgY2FzdElucHV0KHZhbHVlKSB7XG4gICAgcmV0dXJuIHZhbHVlO1xuICB9LFxuICB0b2tlbml6ZSh2YWx1ZSkge1xuICAgIHJldHVybiB2YWx1ZS5zcGxpdCgnJyk7XG4gIH0sXG4gIGpvaW4oY2hhcnMpIHtcbiAgICByZXR1cm4gY2hhcnMuam9pbignJyk7XG4gIH1cbn07XG5cbmZ1bmN0aW9uIGJ1aWxkVmFsdWVzKGRpZmYsIGNvbXBvbmVudHMsIG5ld1N0cmluZywgb2xkU3RyaW5nLCB1c2VMb25nZXN0VG9rZW4pIHtcbiAgbGV0IGNvbXBvbmVudFBvcyA9IDAsXG4gICAgICBjb21wb25lbnRMZW4gPSBjb21wb25lbnRzLmxlbmd0aCxcbiAgICAgIG5ld1BvcyA9IDAsXG4gICAgICBvbGRQb3MgPSAwO1xuXG4gIGZvciAoOyBjb21wb25lbnRQb3MgPCBjb21wb25lbnRMZW47IGNvbXBvbmVudFBvcysrKSB7XG4gICAgbGV0IGNvbXBvbmVudCA9IGNvbXBvbmVudHNbY29tcG9uZW50UG9zXTtcbiAgICBpZiAoIWNvbXBvbmVudC5yZW1vdmVkKSB7XG4gICAgICBpZiAoIWNvbXBvbmVudC5hZGRlZCAmJiB1c2VMb25nZXN0VG9rZW4pIHtcbiAgICAgICAgbGV0IHZhbHVlID0gbmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KTtcbiAgICAgICAgdmFsdWUgPSB2YWx1ZS5tYXAoZnVuY3Rpb24odmFsdWUsIGkpIHtcbiAgICAgICAgICBsZXQgb2xkVmFsdWUgPSBvbGRTdHJpbmdbb2xkUG9zICsgaV07XG4gICAgICAgICAgcmV0dXJuIG9sZFZhbHVlLmxlbmd0aCA+IHZhbHVlLmxlbmd0aCA/IG9sZFZhbHVlIDogdmFsdWU7XG4gICAgICAgIH0pO1xuXG4gICAgICAgIGNvbXBvbmVudC52YWx1ZSA9IGRpZmYuam9pbih2YWx1ZSk7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBjb21wb25lbnQudmFsdWUgPSBkaWZmLmpvaW4obmV3U3RyaW5nLnNsaWNlKG5ld1BvcywgbmV3UG9zICsgY29tcG9uZW50LmNvdW50KSk7XG4gICAgICB9XG4gICAgICBuZXdQb3MgKz0gY29tcG9uZW50LmNvdW50O1xuXG4gICAgICAvLyBDb21tb24gY2FzZVxuICAgICAgaWYgKCFjb21wb25lbnQuYWRkZWQpIHtcbiAgICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgY29tcG9uZW50LnZhbHVlID0gZGlmZi5qb2luKG9sZFN0cmluZy5zbGljZShvbGRQb3MsIG9sZFBvcyArIGNvbXBvbmVudC5jb3VudCkpO1xuICAgICAgb2xkUG9zICs9IGNvbXBvbmVudC5jb3VudDtcblxuICAgICAgLy8gUmV2ZXJzZSBhZGQgYW5kIHJlbW92ZSBzbyByZW1vdmVzIGFyZSBvdXRwdXQgZmlyc3QgdG8gbWF0Y2ggY29tbW9uIGNvbnZlbnRpb25cbiAgICAgIC8vIFRoZSBkaWZmaW5nIGFsZ29yaXRobSBpcyB0aWVkIHRvIGFkZCB0aGVuIHJlbW92ZSBvdXRwdXQgYW5kIHRoaXMgaXMgdGhlIHNpbXBsZXN0XG4gICAgICAvLyByb3V0ZSB0byBnZXQgdGhlIGRlc2lyZWQgb3V0cHV0IHdpdGggbWluaW1hbCBvdmVyaGVhZC5cbiAgICAgIGlmIChjb21wb25lbnRQb3MgJiYgY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXS5hZGRlZCkge1xuICAgICAgICBsZXQgdG1wID0gY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXTtcbiAgICAgICAgY29tcG9uZW50c1tjb21wb25lbnRQb3MgLSAxXSA9IGNvbXBvbmVudHNbY29tcG9uZW50UG9zXTtcbiAgICAgICAgY29tcG9uZW50c1tjb21wb25lbnRQb3NdID0gdG1wO1xuICAgICAgfVxuICAgIH1cbiAgfVxuXG4gIC8vIFNwZWNpYWwgY2FzZSBoYW5kbGUgZm9yIHdoZW4gb25lIHRlcm1pbmFsIGlzIGlnbm9yZWQgKGkuZS4gd2hpdGVzcGFjZSkuXG4gIC8vIEZvciB0aGlzIGNhc2Ugd2UgbWVyZ2UgdGhlIHRlcm1pbmFsIGludG8gdGhlIHByaW9yIHN0cmluZyBhbmQgZHJvcCB0aGUgY2hhbmdlLlxuICAvLyBUaGlzIGlzIG9ubHkgYXZhaWxhYmxlIGZvciBzdHJpbmcgbW9kZS5cbiAgbGV0IGxhc3RDb21wb25lbnQgPSBjb21wb25lbnRzW2NvbXBvbmVudExlbiAtIDFdO1xuICBpZiAoY29tcG9uZW50TGVuID4gMVxuICAgICAgJiYgdHlwZW9mIGxhc3RDb21wb25lbnQudmFsdWUgPT09ICdzdHJpbmcnXG4gICAgICAmJiAobGFzdENvbXBvbmVudC5hZGRlZCB8fCBsYXN0Q29tcG9uZW50LnJlbW92ZWQpXG4gICAgICAmJiBkaWZmLmVxdWFscygnJywgbGFzdENvbXBvbmVudC52YWx1ZSkpIHtcbiAgICBjb21wb25lbnRzW2NvbXBvbmVudExlbiAtIDJdLnZhbHVlICs9IGxhc3RDb21wb25lbnQudmFsdWU7XG4gICAgY29tcG9uZW50cy5wb3AoKTtcbiAgfVxuXG4gIHJldHVybiBjb21wb25lbnRzO1xufVxuXG5mdW5jdGlvbiBjbG9uZVBhdGgocGF0aCkge1xuICByZXR1cm4geyBuZXdQb3M6IHBhdGgubmV3UG9zLCBjb21wb25lbnRzOiBwYXRoLmNvbXBvbmVudHMuc2xpY2UoMCkgfTtcbn1cbiJdfQ== diff --git a/deps/npm/node_modules/diff/lib/index.es6.js b/deps/npm/node_modules/diff/lib/index.es6.js index ca0e5917c44a4bf..c2a00135a4e2426 100644 --- a/deps/npm/node_modules/diff/lib/index.es6.js +++ b/deps/npm/node_modules/diff/lib/index.es6.js @@ -32,6 +32,11 @@ Diff.prototype = { oldLen = oldString.length; var editLength = 1; var maxEditLength = newLen + oldLen; + + if (options.maxEditLength) { + maxEditLength = Math.min(maxEditLength, options.maxEditLength); + } + var bestPath = [{ newPos: -1, components: [] @@ -96,15 +101,13 @@ Diff.prototype = { editLength++; } // Performs the length of edit iteration. Is a bit fugly as this has to support the // sync and async mode which is never fun. Loops over execEditLength until a value - // is produced. + // is produced, or until the edit length exceeds options.maxEditLength (if given), + // in which case it will return undefined. if (callback) { (function exec() { setTimeout(function () { - // This should not happen, but we want to be safe. - - /* istanbul ignore next */ if (editLength > maxEditLength) { return callback(); } @@ -922,6 +925,11 @@ function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, ne } var diff = diffLines(oldStr, newStr, options); + + if (!diff) { + return; + } + diff.push({ value: '', lines: [] diff --git a/deps/npm/node_modules/diff/lib/index.mjs b/deps/npm/node_modules/diff/lib/index.mjs index ca0e5917c44a4bf..c2a00135a4e2426 100644 --- a/deps/npm/node_modules/diff/lib/index.mjs +++ b/deps/npm/node_modules/diff/lib/index.mjs @@ -32,6 +32,11 @@ Diff.prototype = { oldLen = oldString.length; var editLength = 1; var maxEditLength = newLen + oldLen; + + if (options.maxEditLength) { + maxEditLength = Math.min(maxEditLength, options.maxEditLength); + } + var bestPath = [{ newPos: -1, components: [] @@ -96,15 +101,13 @@ Diff.prototype = { editLength++; } // Performs the length of edit iteration. Is a bit fugly as this has to support the // sync and async mode which is never fun. Loops over execEditLength until a value - // is produced. + // is produced, or until the edit length exceeds options.maxEditLength (if given), + // in which case it will return undefined. if (callback) { (function exec() { setTimeout(function () { - // This should not happen, but we want to be safe. - - /* istanbul ignore next */ if (editLength > maxEditLength) { return callback(); } @@ -922,6 +925,11 @@ function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, ne } var diff = diffLines(oldStr, newStr, options); + + if (!diff) { + return; + } + diff.push({ value: '', lines: [] diff --git a/deps/npm/node_modules/diff/lib/patch/create.js b/deps/npm/node_modules/diff/lib/patch/create.js index 48bb4668442a989..1d3b4c303ce4bce 100644 --- a/deps/npm/node_modules/diff/lib/patch/create.js +++ b/deps/npm/node_modules/diff/lib/patch/create.js @@ -51,6 +51,11 @@ function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHeader, ne diffLines) /*istanbul ignore end*/ (oldStr, newStr, options); + + if (!diff) { + return; + } + diff.push({ value: '', lines: [] @@ -264,4 +269,4 @@ function createTwoFilesPatch(oldFileName, newFileName, oldStr, newStr, oldHeader function createPatch(fileName, oldStr, newStr, oldHeader, newHeader, options) { return createTwoFilesPatch(fileName, fileName, oldStr, newStr, oldHeader, newHeader, options); } -//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wYXRjaC9jcmVhdGUuanMiXSwibmFtZXMiOlsic3RydWN0dXJlZFBhdGNoIiwib2xkRmlsZU5hbWUiLCJuZXdGaWxlTmFtZSIsIm9sZFN0ciIsIm5ld1N0ciIsIm9sZEhlYWRlciIsIm5ld0hlYWRlciIsIm9wdGlvbnMiLCJjb250ZXh0IiwiZGlmZiIsImRpZmZMaW5lcyIsInB1c2giLCJ2YWx1ZSIsImxpbmVzIiwiY29udGV4dExpbmVzIiwibWFwIiwiZW50cnkiLCJodW5rcyIsIm9sZFJhbmdlU3RhcnQiLCJuZXdSYW5nZVN0YXJ0IiwiY3VyUmFuZ2UiLCJvbGRMaW5lIiwibmV3TGluZSIsImkiLCJjdXJyZW50IiwicmVwbGFjZSIsInNwbGl0IiwiYWRkZWQiLCJyZW1vdmVkIiwicHJldiIsInNsaWNlIiwibGVuZ3RoIiwiY29udGV4dFNpemUiLCJNYXRoIiwibWluIiwiaHVuayIsIm9sZFN0YXJ0Iiwib2xkTGluZXMiLCJuZXdTdGFydCIsIm5ld0xpbmVzIiwib2xkRU9GTmV3bGluZSIsInRlc3QiLCJuZXdFT0ZOZXdsaW5lIiwibm9ObEJlZm9yZUFkZHMiLCJzcGxpY2UiLCJmb3JtYXRQYXRjaCIsInJldCIsImFwcGx5Iiwiam9pbiIsImNyZWF0ZVR3b0ZpbGVzUGF0Y2giLCJjcmVhdGVQYXRjaCIsImZpbGVOYW1lIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOzs7Ozs7Ozs7Ozs7Ozs7QUFFTyxTQUFTQSxlQUFULENBQXlCQyxXQUF6QixFQUFzQ0MsV0FBdEMsRUFBbURDLE1BQW5ELEVBQTJEQyxNQUEzRCxFQUFtRUMsU0FBbkUsRUFBOEVDLFNBQTlFLEVBQXlGQyxPQUF6RixFQUFrRztBQUN2RyxNQUFJLENBQUNBLE9BQUwsRUFBYztBQUNaQSxJQUFBQSxPQUFPLEdBQUcsRUFBVjtBQUNEOztBQUNELE1BQUksT0FBT0EsT0FBTyxDQUFDQyxPQUFmLEtBQTJCLFdBQS9CLEVBQTRDO0FBQzFDRCxJQUFBQSxPQUFPLENBQUNDLE9BQVIsR0FBa0IsQ0FBbEI7QUFDRDs7QUFFRCxNQUFNQyxJQUFJO0FBQUc7QUFBQTtBQUFBOztBQUFBQztBQUFBQTtBQUFBQTtBQUFBQTtBQUFBQTtBQUFBQTtBQUFBO0FBQUEsR0FBVVAsTUFBVixFQUFrQkMsTUFBbEIsRUFBMEJHLE9BQTFCLENBQWI7QUFDQUUsRUFBQUEsSUFBSSxDQUFDRSxJQUFMLENBQVU7QUFBQ0MsSUFBQUEsS0FBSyxFQUFFLEVBQVI7QUFBWUMsSUFBQUEsS0FBSyxFQUFFO0FBQW5CLEdBQVYsRUFUdUcsQ0FTcEU7O0FBRW5DLFdBQVNDLFlBQVQsQ0FBc0JELEtBQXRCLEVBQTZCO0FBQzNCLFdBQU9BLEtBQUssQ0FBQ0UsR0FBTixDQUFVLFVBQVNDLEtBQVQsRUFBZ0I7QUFBRSxhQUFPLE1BQU1BLEtBQWI7QUFBcUIsS0FBakQsQ0FBUDtBQUNEOztBQUVELE1BQUlDLEtBQUssR0FBRyxFQUFaO0FBQ0EsTUFBSUMsYUFBYSxHQUFHLENBQXBCO0FBQUEsTUFBdUJDLGFBQWEsR0FBRyxDQUF2QztBQUFBLE1BQTBDQyxRQUFRLEdBQUcsRUFBckQ7QUFBQSxNQUNJQyxPQUFPLEdBQUcsQ0FEZDtBQUFBLE1BQ2lCQyxPQUFPLEdBQUcsQ0FEM0I7O0FBaEJ1RztBQUFBO0FBQUE7QUFrQjlGQyxFQUFBQSxDQWxCOEY7QUFtQnJHLFFBQU1DLE9BQU8sR0FBR2YsSUFBSSxDQUFDYyxDQUFELENBQXBCO0FBQUEsUUFDTVYsS0FBSyxHQUFHVyxPQUFPLENBQUNYLEtBQVIsSUFBaUJXLE9BQU8sQ0FBQ1osS0FBUixDQUFjYSxPQUFkLENBQXNCLEtBQXRCLEVBQTZCLEVBQTdCLEVBQWlDQyxLQUFqQyxDQUF1QyxJQUF2QyxDQUQvQjtBQUVBRixJQUFBQSxPQUFPLENBQUNYLEtBQVIsR0FBZ0JBLEtBQWhCOztBQUVBLFFBQUlXLE9BQU8sQ0FBQ0csS0FBUixJQUFpQkgsT0FBTyxDQUFDSSxPQUE3QixFQUFzQztBQUFBO0FBQUE7O0FBQUE7QUFDcEM7QUFDQSxVQUFJLENBQUNWLGFBQUwsRUFBb0I7QUFDbEIsWUFBTVcsSUFBSSxHQUFHcEIsSUFBSSxDQUFDYyxDQUFDLEdBQUcsQ0FBTCxDQUFqQjtBQUNBTCxRQUFBQSxhQUFhLEdBQUdHLE9BQWhCO0FBQ0FGLFFBQUFBLGFBQWEsR0FBR0csT0FBaEI7O0FBRUEsWUFBSU8sSUFBSixFQUFVO0FBQ1JULFVBQUFBLFFBQVEsR0FBR2IsT0FBTyxDQUFDQyxPQUFSLEdBQWtCLENBQWxCLEdBQXNCTSxZQUFZLENBQUNlLElBQUksQ0FBQ2hCLEtBQUwsQ0FBV2lCLEtBQVgsQ0FBaUIsQ0FBQ3ZCLE9BQU8sQ0FBQ0MsT0FBMUIsQ0FBRCxDQUFsQyxHQUF5RSxFQUFwRjtBQUNBVSxVQUFBQSxhQUFhLElBQUlFLFFBQVEsQ0FBQ1csTUFBMUI7QUFDQVosVUFBQUEsYUFBYSxJQUFJQyxRQUFRLENBQUNXLE1BQTFCO0FBQ0Q7QUFDRixPQVptQyxDQWNwQzs7O0FBQ0E7O0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUFYLE1BQUFBLFFBQVEsRUFBQ1QsSUFBVDtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQWtCRSxNQUFBQSxLQUFLLENBQUNFLEdBQU4sQ0FBVSxVQUFTQyxLQUFULEVBQWdCO0FBQzFDLGVBQU8sQ0FBQ1EsT0FBTyxDQUFDRyxLQUFSLEdBQWdCLEdBQWhCLEdBQXNCLEdBQXZCLElBQThCWCxLQUFyQztBQUNELE9BRmlCLENBQWxCLEdBZm9DLENBbUJwQzs7O0FBQ0EsVUFBSVEsT0FBTyxDQUFDRyxLQUFaLEVBQW1CO0FBQ2pCTCxRQUFBQSxPQUFPLElBQUlULEtBQUssQ0FBQ2tCLE1BQWpCO0FBQ0QsT0FGRCxNQUVPO0FBQ0xWLFFBQUFBLE9BQU8sSUFBSVIsS0FBSyxDQUFDa0IsTUFBakI7QUFDRDtBQUNGLEtBekJELE1BeUJPO0FBQ0w7QUFDQSxVQUFJYixhQUFKLEVBQW1CO0FBQ2pCO0FBQ0EsWUFBSUwsS0FBSyxDQUFDa0IsTUFBTixJQUFnQnhCLE9BQU8sQ0FBQ0MsT0FBUixHQUFrQixDQUFsQyxJQUF1Q2UsQ0FBQyxHQUFHZCxJQUFJLENBQUNzQixNQUFMLEdBQWMsQ0FBN0QsRUFBZ0U7QUFBQTtBQUFBOztBQUFBO0FBQzlEOztBQUNBOztBQUFBOztBQUFBO0FBQUE7QUFBQTtBQUFBWCxVQUFBQSxRQUFRLEVBQUNULElBQVQ7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFrQkcsVUFBQUEsWUFBWSxDQUFDRCxLQUFELENBQTlCO0FBQ0QsU0FIRCxNQUdPO0FBQUE7QUFBQTs7QUFBQTtBQUNMO0FBQ0EsY0FBSW1CLFdBQVcsR0FBR0MsSUFBSSxDQUFDQyxHQUFMLENBQVNyQixLQUFLLENBQUNrQixNQUFmLEVBQXVCeEIsT0FBTyxDQUFDQyxPQUEvQixDQUFsQjs7QUFDQTs7QUFBQTs7QUFBQTtBQUFBO0FBQUE7QUFBQVksVUFBQUEsUUFBUSxFQUFDVCxJQUFUO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBa0JHLFVBQUFBLFlBQVksQ0FBQ0QsS0FBSyxDQUFDaUIsS0FBTixDQUFZLENBQVosRUFBZUUsV0FBZixDQUFELENBQTlCOztBQUVBLGNBQUlHLElBQUksR0FBRztBQUNUQyxZQUFBQSxRQUFRLEVBQUVsQixhQUREO0FBRVRtQixZQUFBQSxRQUFRLEVBQUdoQixPQUFPLEdBQUdILGFBQVYsR0FBMEJjLFdBRjVCO0FBR1RNLFlBQUFBLFFBQVEsRUFBRW5CLGFBSEQ7QUFJVG9CLFlBQUFBLFFBQVEsRUFBR2pCLE9BQU8sR0FBR0gsYUFBVixHQUEwQmEsV0FKNUI7QUFLVG5CLFlBQUFBLEtBQUssRUFBRU87QUFMRSxXQUFYOztBQU9BLGNBQUlHLENBQUMsSUFBSWQsSUFBSSxDQUFDc0IsTUFBTCxHQUFjLENBQW5CLElBQXdCbEIsS0FBSyxDQUFDa0IsTUFBTixJQUFnQnhCLE9BQU8sQ0FBQ0MsT0FBcEQsRUFBNkQ7QUFDM0Q7QUFDQSxnQkFBSWdDLGFBQWEsR0FBSyxLQUFELENBQVFDLElBQVIsQ0FBYXRDLE1BQWIsQ0FBckI7QUFDQSxnQkFBSXVDLGFBQWEsR0FBSyxLQUFELENBQVFELElBQVIsQ0FBYXJDLE1BQWIsQ0FBckI7QUFDQSxnQkFBSXVDLGNBQWMsR0FBRzlCLEtBQUssQ0FBQ2tCLE1BQU4sSUFBZ0IsQ0FBaEIsSUFBcUJYLFFBQVEsQ0FBQ1csTUFBVCxHQUFrQkksSUFBSSxDQUFDRSxRQUFqRTs7QUFDQSxnQkFBSSxDQUFDRyxhQUFELElBQWtCRyxjQUFsQixJQUFvQ3hDLE1BQU0sQ0FBQzRCLE1BQVAsR0FBZ0IsQ0FBeEQsRUFBMkQ7QUFDekQ7QUFDQTtBQUNBWCxjQUFBQSxRQUFRLENBQUN3QixNQUFULENBQWdCVCxJQUFJLENBQUNFLFFBQXJCLEVBQStCLENBQS9CLEVBQWtDLDhCQUFsQztBQUNEOztBQUNELGdCQUFLLENBQUNHLGFBQUQsSUFBa0IsQ0FBQ0csY0FBcEIsSUFBdUMsQ0FBQ0QsYUFBNUMsRUFBMkQ7QUFDekR0QixjQUFBQSxRQUFRLENBQUNULElBQVQsQ0FBYyw4QkFBZDtBQUNEO0FBQ0Y7O0FBQ0RNLFVBQUFBLEtBQUssQ0FBQ04sSUFBTixDQUFXd0IsSUFBWDtBQUVBakIsVUFBQUEsYUFBYSxHQUFHLENBQWhCO0FBQ0FDLFVBQUFBLGFBQWEsR0FBRyxDQUFoQjtBQUNBQyxVQUFBQSxRQUFRLEdBQUcsRUFBWDtBQUNEO0FBQ0Y7O0FBQ0RDLE1BQUFBLE9BQU8sSUFBSVIsS0FBSyxDQUFDa0IsTUFBakI7QUFDQVQsTUFBQUEsT0FBTyxJQUFJVCxLQUFLLENBQUNrQixNQUFqQjtBQUNEO0FBMUZvRzs7QUFrQnZHLE9BQUssSUFBSVIsQ0FBQyxHQUFHLENBQWIsRUFBZ0JBLENBQUMsR0FBR2QsSUFBSSxDQUFDc0IsTUFBekIsRUFBaUNSLENBQUMsRUFBbEMsRUFBc0M7QUFBQTtBQUFBO0FBQUE7QUFBN0JBLElBQUFBLENBQTZCO0FBeUVyQzs7QUFFRCxTQUFPO0FBQ0x0QixJQUFBQSxXQUFXLEVBQUVBLFdBRFI7QUFDcUJDLElBQUFBLFdBQVcsRUFBRUEsV0FEbEM7QUFFTEcsSUFBQUEsU0FBUyxFQUFFQSxTQUZOO0FBRWlCQyxJQUFBQSxTQUFTLEVBQUVBLFNBRjVCO0FBR0xXLElBQUFBLEtBQUssRUFBRUE7QUFIRixHQUFQO0FBS0Q7O0FBRU0sU0FBUzRCLFdBQVQsQ0FBcUJwQyxJQUFyQixFQUEyQjtBQUNoQyxNQUFNcUMsR0FBRyxHQUFHLEVBQVo7O0FBQ0EsTUFBSXJDLElBQUksQ0FBQ1IsV0FBTCxJQUFvQlEsSUFBSSxDQUFDUCxXQUE3QixFQUEwQztBQUN4QzRDLElBQUFBLEdBQUcsQ0FBQ25DLElBQUosQ0FBUyxZQUFZRixJQUFJLENBQUNSLFdBQTFCO0FBQ0Q7O0FBQ0Q2QyxFQUFBQSxHQUFHLENBQUNuQyxJQUFKLENBQVMscUVBQVQ7QUFDQW1DLEVBQUFBLEdBQUcsQ0FBQ25DLElBQUosQ0FBUyxTQUFTRixJQUFJLENBQUNSLFdBQWQsSUFBNkIsT0FBT1EsSUFBSSxDQUFDSixTQUFaLEtBQTBCLFdBQTFCLEdBQXdDLEVBQXhDLEdBQTZDLE9BQU9JLElBQUksQ0FBQ0osU0FBdEYsQ0FBVDtBQUNBeUMsRUFBQUEsR0FBRyxDQUFDbkMsSUFBSixDQUFTLFNBQVNGLElBQUksQ0FBQ1AsV0FBZCxJQUE2QixPQUFPTyxJQUFJLENBQUNILFNBQVosS0FBMEIsV0FBMUIsR0FBd0MsRUFBeEMsR0FBNkMsT0FBT0csSUFBSSxDQUFDSCxTQUF0RixDQUFUOztBQUVBLE9BQUssSUFBSWlCLENBQUMsR0FBRyxDQUFiLEVBQWdCQSxDQUFDLEdBQUdkLElBQUksQ0FBQ1EsS0FBTCxDQUFXYyxNQUEvQixFQUF1Q1IsQ0FBQyxFQUF4QyxFQUE0QztBQUMxQyxRQUFNWSxJQUFJLEdBQUcxQixJQUFJLENBQUNRLEtBQUwsQ0FBV00sQ0FBWCxDQUFiLENBRDBDLENBRTFDO0FBQ0E7QUFDQTs7QUFDQSxRQUFJWSxJQUFJLENBQUNFLFFBQUwsS0FBa0IsQ0FBdEIsRUFBeUI7QUFDdkJGLE1BQUFBLElBQUksQ0FBQ0MsUUFBTCxJQUFpQixDQUFqQjtBQUNEOztBQUNELFFBQUlELElBQUksQ0FBQ0ksUUFBTCxLQUFrQixDQUF0QixFQUF5QjtBQUN2QkosTUFBQUEsSUFBSSxDQUFDRyxRQUFMLElBQWlCLENBQWpCO0FBQ0Q7O0FBQ0RRLElBQUFBLEdBQUcsQ0FBQ25DLElBQUosQ0FDRSxTQUFTd0IsSUFBSSxDQUFDQyxRQUFkLEdBQXlCLEdBQXpCLEdBQStCRCxJQUFJLENBQUNFLFFBQXBDLEdBQ0UsSUFERixHQUNTRixJQUFJLENBQUNHLFFBRGQsR0FDeUIsR0FEekIsR0FDK0JILElBQUksQ0FBQ0ksUUFEcEMsR0FFRSxLQUhKO0FBS0FPLElBQUFBLEdBQUcsQ0FBQ25DLElBQUosQ0FBU29DLEtBQVQsQ0FBZUQsR0FBZixFQUFvQlgsSUFBSSxDQUFDdEIsS0FBekI7QUFDRDs7QUFFRCxTQUFPaUMsR0FBRyxDQUFDRSxJQUFKLENBQVMsSUFBVCxJQUFpQixJQUF4QjtBQUNEOztBQUVNLFNBQVNDLG1CQUFULENBQTZCaEQsV0FBN0IsRUFBMENDLFdBQTFDLEVBQXVEQyxNQUF2RCxFQUErREMsTUFBL0QsRUFBdUVDLFNBQXZFLEVBQWtGQyxTQUFsRixFQUE2RkMsT0FBN0YsRUFBc0c7QUFDM0csU0FBT3NDLFdBQVcsQ0FBQzdDLGVBQWUsQ0FBQ0MsV0FBRCxFQUFjQyxXQUFkLEVBQTJCQyxNQUEzQixFQUFtQ0MsTUFBbkMsRUFBMkNDLFNBQTNDLEVBQXNEQyxTQUF0RCxFQUFpRUMsT0FBakUsQ0FBaEIsQ0FBbEI7QUFDRDs7QUFFTSxTQUFTMkMsV0FBVCxDQUFxQkMsUUFBckIsRUFBK0JoRCxNQUEvQixFQUF1Q0MsTUFBdkMsRUFBK0NDLFNBQS9DLEVBQTBEQyxTQUExRCxFQUFxRUMsT0FBckUsRUFBOEU7QUFDbkYsU0FBTzBDLG1CQUFtQixDQUFDRSxRQUFELEVBQVdBLFFBQVgsRUFBcUJoRCxNQUFyQixFQUE2QkMsTUFBN0IsRUFBcUNDLFNBQXJDLEVBQWdEQyxTQUFoRCxFQUEyREMsT0FBM0QsQ0FBMUI7QUFDRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7ZGlmZkxpbmVzfSBmcm9tICcuLi9kaWZmL2xpbmUnO1xuXG5leHBvcnQgZnVuY3Rpb24gc3RydWN0dXJlZFBhdGNoKG9sZEZpbGVOYW1lLCBuZXdGaWxlTmFtZSwgb2xkU3RyLCBuZXdTdHIsIG9sZEhlYWRlciwgbmV3SGVhZGVyLCBvcHRpb25zKSB7XG4gIGlmICghb3B0aW9ucykge1xuICAgIG9wdGlvbnMgPSB7fTtcbiAgfVxuICBpZiAodHlwZW9mIG9wdGlvbnMuY29udGV4dCA9PT0gJ3VuZGVmaW5lZCcpIHtcbiAgICBvcHRpb25zLmNvbnRleHQgPSA0O1xuICB9XG5cbiAgY29uc3QgZGlmZiA9IGRpZmZMaW5lcyhvbGRTdHIsIG5ld1N0ciwgb3B0aW9ucyk7XG4gIGRpZmYucHVzaCh7dmFsdWU6ICcnLCBsaW5lczogW119KTsgLy8gQXBwZW5kIGFuIGVtcHR5IHZhbHVlIHRvIG1ha2UgY2xlYW51cCBlYXNpZXJcblxuICBmdW5jdGlvbiBjb250ZXh0TGluZXMobGluZXMpIHtcbiAgICByZXR1cm4gbGluZXMubWFwKGZ1bmN0aW9uKGVudHJ5KSB7IHJldHVybiAnICcgKyBlbnRyeTsgfSk7XG4gIH1cblxuICBsZXQgaHVua3MgPSBbXTtcbiAgbGV0IG9sZFJhbmdlU3RhcnQgPSAwLCBuZXdSYW5nZVN0YXJ0ID0gMCwgY3VyUmFuZ2UgPSBbXSxcbiAgICAgIG9sZExpbmUgPSAxLCBuZXdMaW5lID0gMTtcbiAgZm9yIChsZXQgaSA9IDA7IGkgPCBkaWZmLmxlbmd0aDsgaSsrKSB7XG4gICAgY29uc3QgY3VycmVudCA9IGRpZmZbaV0sXG4gICAgICAgICAgbGluZXMgPSBjdXJyZW50LmxpbmVzIHx8IGN1cnJlbnQudmFsdWUucmVwbGFjZSgvXFxuJC8sICcnKS5zcGxpdCgnXFxuJyk7XG4gICAgY3VycmVudC5saW5lcyA9IGxpbmVzO1xuXG4gICAgaWYgKGN1cnJlbnQuYWRkZWQgfHwgY3VycmVudC5yZW1vdmVkKSB7XG4gICAgICAvLyBJZiB3ZSBoYXZlIHByZXZpb3VzIGNvbnRleHQsIHN0YXJ0IHdpdGggdGhhdFxuICAgICAgaWYgKCFvbGRSYW5nZVN0YXJ0KSB7XG4gICAgICAgIGNvbnN0IHByZXYgPSBkaWZmW2kgLSAxXTtcbiAgICAgICAgb2xkUmFuZ2VTdGFydCA9IG9sZExpbmU7XG4gICAgICAgIG5ld1JhbmdlU3RhcnQgPSBuZXdMaW5lO1xuXG4gICAgICAgIGlmIChwcmV2KSB7XG4gICAgICAgICAgY3VyUmFuZ2UgPSBvcHRpb25zLmNvbnRleHQgPiAwID8gY29udGV4dExpbmVzKHByZXYubGluZXMuc2xpY2UoLW9wdGlvbnMuY29udGV4dCkpIDogW107XG4gICAgICAgICAgb2xkUmFuZ2VTdGFydCAtPSBjdXJSYW5nZS5sZW5ndGg7XG4gICAgICAgICAgbmV3UmFuZ2VTdGFydCAtPSBjdXJSYW5nZS5sZW5ndGg7XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgLy8gT3V0cHV0IG91ciBjaGFuZ2VzXG4gICAgICBjdXJSYW5nZS5wdXNoKC4uLiBsaW5lcy5tYXAoZnVuY3Rpb24oZW50cnkpIHtcbiAgICAgICAgcmV0dXJuIChjdXJyZW50LmFkZGVkID8gJysnIDogJy0nKSArIGVudHJ5O1xuICAgICAgfSkpO1xuXG4gICAgICAvLyBUcmFjayB0aGUgdXBkYXRlZCBmaWxlIHBvc2l0aW9uXG4gICAgICBpZiAoY3VycmVudC5hZGRlZCkge1xuICAgICAgICBuZXdMaW5lICs9IGxpbmVzLmxlbmd0aDtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIG9sZExpbmUgKz0gbGluZXMubGVuZ3RoO1xuICAgICAgfVxuICAgIH0gZWxzZSB7XG4gICAgICAvLyBJZGVudGljYWwgY29udGV4dCBsaW5lcy4gVHJhY2sgbGluZSBjaGFuZ2VzXG4gICAgICBpZiAob2xkUmFuZ2VTdGFydCkge1xuICAgICAgICAvLyBDbG9zZSBvdXQgYW55IGNoYW5nZXMgdGhhdCBoYXZlIGJlZW4gb3V0cHV0IChvciBqb2luIG92ZXJsYXBwaW5nKVxuICAgICAgICBpZiAobGluZXMubGVuZ3RoIDw9IG9wdGlvbnMuY29udGV4dCAqIDIgJiYgaSA8IGRpZmYubGVuZ3RoIC0gMikge1xuICAgICAgICAgIC8vIE92ZXJsYXBwaW5nXG4gICAgICAgICAgY3VyUmFuZ2UucHVzaCguLi4gY29udGV4dExpbmVzKGxpbmVzKSk7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgLy8gZW5kIHRoZSByYW5nZSBhbmQgb3V0cHV0XG4gICAgICAgICAgbGV0IGNvbnRleHRTaXplID0gTWF0aC5taW4obGluZXMubGVuZ3RoLCBvcHRpb25zLmNvbnRleHQpO1xuICAgICAgICAgIGN1clJhbmdlLnB1c2goLi4uIGNvbnRleHRMaW5lcyhsaW5lcy5zbGljZSgwLCBjb250ZXh0U2l6ZSkpKTtcblxuICAgICAgICAgIGxldCBodW5rID0ge1xuICAgICAgICAgICAgb2xkU3RhcnQ6IG9sZFJhbmdlU3RhcnQsXG4gICAgICAgICAgICBvbGRMaW5lczogKG9sZExpbmUgLSBvbGRSYW5nZVN0YXJ0ICsgY29udGV4dFNpemUpLFxuICAgICAgICAgICAgbmV3U3RhcnQ6IG5ld1JhbmdlU3RhcnQsXG4gICAgICAgICAgICBuZXdMaW5lczogKG5ld0xpbmUgLSBuZXdSYW5nZVN0YXJ0ICsgY29udGV4dFNpemUpLFxuICAgICAgICAgICAgbGluZXM6IGN1clJhbmdlXG4gICAgICAgICAgfTtcbiAgICAgICAgICBpZiAoaSA+PSBkaWZmLmxlbmd0aCAtIDIgJiYgbGluZXMubGVuZ3RoIDw9IG9wdGlvbnMuY29udGV4dCkge1xuICAgICAgICAgICAgLy8gRU9GIGlzIGluc2lkZSB0aGlzIGh1bmtcbiAgICAgICAgICAgIGxldCBvbGRFT0ZOZXdsaW5lID0gKCgvXFxuJC8pLnRlc3Qob2xkU3RyKSk7XG4gICAgICAgICAgICBsZXQgbmV3RU9GTmV3bGluZSA9ICgoL1xcbiQvKS50ZXN0KG5ld1N0cikpO1xuICAgICAgICAgICAgbGV0IG5vTmxCZWZvcmVBZGRzID0gbGluZXMubGVuZ3RoID09IDAgJiYgY3VyUmFuZ2UubGVuZ3RoID4gaHVuay5vbGRMaW5lcztcbiAgICAgICAgICAgIGlmICghb2xkRU9GTmV3bGluZSAmJiBub05sQmVmb3JlQWRkcyAmJiBvbGRTdHIubGVuZ3RoID4gMCkge1xuICAgICAgICAgICAgICAvLyBzcGVjaWFsIGNhc2U6IG9sZCBoYXMgbm8gZW9sIGFuZCBubyB0cmFpbGluZyBjb250ZXh0OyBuby1ubCBjYW4gZW5kIHVwIGJlZm9yZSBhZGRzXG4gICAgICAgICAgICAgIC8vIGhvd2V2ZXIsIGlmIHRoZSBvbGQgZmlsZSBpcyBlbXB0eSwgZG8gbm90IG91dHB1dCB0aGUgbm8tbmwgbGluZVxuICAgICAgICAgICAgICBjdXJSYW5nZS5zcGxpY2UoaHVuay5vbGRMaW5lcywgMCwgJ1xcXFwgTm8gbmV3bGluZSBhdCBlbmQgb2YgZmlsZScpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgICAgaWYgKCghb2xkRU9GTmV3bGluZSAmJiAhbm9ObEJlZm9yZUFkZHMpIHx8ICFuZXdFT0ZOZXdsaW5lKSB7XG4gICAgICAgICAgICAgIGN1clJhbmdlLnB1c2goJ1xcXFwgTm8gbmV3bGluZSBhdCBlbmQgb2YgZmlsZScpO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgICBodW5rcy5wdXNoKGh1bmspO1xuXG4gICAgICAgICAgb2xkUmFuZ2VTdGFydCA9IDA7XG4gICAgICAgICAgbmV3UmFuZ2VTdGFydCA9IDA7XG4gICAgICAgICAgY3VyUmFuZ2UgPSBbXTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgb2xkTGluZSArPSBsaW5lcy5sZW5ndGg7XG4gICAgICBuZXdMaW5lICs9IGxpbmVzLmxlbmd0aDtcbiAgICB9XG4gIH1cblxuICByZXR1cm4ge1xuICAgIG9sZEZpbGVOYW1lOiBvbGRGaWxlTmFtZSwgbmV3RmlsZU5hbWU6IG5ld0ZpbGVOYW1lLFxuICAgIG9sZEhlYWRlcjogb2xkSGVhZGVyLCBuZXdIZWFkZXI6IG5ld0hlYWRlcixcbiAgICBodW5rczogaHVua3NcbiAgfTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIGZvcm1hdFBhdGNoKGRpZmYpIHtcbiAgY29uc3QgcmV0ID0gW107XG4gIGlmIChkaWZmLm9sZEZpbGVOYW1lID09IGRpZmYubmV3RmlsZU5hbWUpIHtcbiAgICByZXQucHVzaCgnSW5kZXg6ICcgKyBkaWZmLm9sZEZpbGVOYW1lKTtcbiAgfVxuICByZXQucHVzaCgnPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PScpO1xuICByZXQucHVzaCgnLS0tICcgKyBkaWZmLm9sZEZpbGVOYW1lICsgKHR5cGVvZiBkaWZmLm9sZEhlYWRlciA9PT0gJ3VuZGVmaW5lZCcgPyAnJyA6ICdcXHQnICsgZGlmZi5vbGRIZWFkZXIpKTtcbiAgcmV0LnB1c2goJysrKyAnICsgZGlmZi5uZXdGaWxlTmFtZSArICh0eXBlb2YgZGlmZi5uZXdIZWFkZXIgPT09ICd1bmRlZmluZWQnID8gJycgOiAnXFx0JyArIGRpZmYubmV3SGVhZGVyKSk7XG5cbiAgZm9yIChsZXQgaSA9IDA7IGkgPCBkaWZmLmh1bmtzLmxlbmd0aDsgaSsrKSB7XG4gICAgY29uc3QgaHVuayA9IGRpZmYuaHVua3NbaV07XG4gICAgLy8gVW5pZmllZCBEaWZmIEZvcm1hdCBxdWlyazogSWYgdGhlIGNodW5rIHNpemUgaXMgMCxcbiAgICAvLyB0aGUgZmlyc3QgbnVtYmVyIGlzIG9uZSBsb3dlciB0aGFuIG9uZSB3b3VsZCBleHBlY3QuXG4gICAgLy8gaHR0cHM6Ly93d3cuYXJ0aW1hLmNvbS93ZWJsb2dzL3ZpZXdwb3N0LmpzcD90aHJlYWQ9MTY0MjkzXG4gICAgaWYgKGh1bmsub2xkTGluZXMgPT09IDApIHtcbiAgICAgIGh1bmsub2xkU3RhcnQgLT0gMTtcbiAgICB9XG4gICAgaWYgKGh1bmsubmV3TGluZXMgPT09IDApIHtcbiAgICAgIGh1bmsubmV3U3RhcnQgLT0gMTtcbiAgICB9XG4gICAgcmV0LnB1c2goXG4gICAgICAnQEAgLScgKyBodW5rLm9sZFN0YXJ0ICsgJywnICsgaHVuay5vbGRMaW5lc1xuICAgICAgKyAnICsnICsgaHVuay5uZXdTdGFydCArICcsJyArIGh1bmsubmV3TGluZXNcbiAgICAgICsgJyBAQCdcbiAgICApO1xuICAgIHJldC5wdXNoLmFwcGx5KHJldCwgaHVuay5saW5lcyk7XG4gIH1cblxuICByZXR1cm4gcmV0LmpvaW4oJ1xcbicpICsgJ1xcbic7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBjcmVhdGVUd29GaWxlc1BhdGNoKG9sZEZpbGVOYW1lLCBuZXdGaWxlTmFtZSwgb2xkU3RyLCBuZXdTdHIsIG9sZEhlYWRlciwgbmV3SGVhZGVyLCBvcHRpb25zKSB7XG4gIHJldHVybiBmb3JtYXRQYXRjaChzdHJ1Y3R1cmVkUGF0Y2gob2xkRmlsZU5hbWUsIG5ld0ZpbGVOYW1lLCBvbGRTdHIsIG5ld1N0ciwgb2xkSGVhZGVyLCBuZXdIZWFkZXIsIG9wdGlvbnMpKTtcbn1cblxuZXhwb3J0IGZ1bmN0aW9uIGNyZWF0ZVBhdGNoKGZpbGVOYW1lLCBvbGRTdHIsIG5ld1N0ciwgb2xkSGVhZGVyLCBuZXdIZWFkZXIsIG9wdGlvbnMpIHtcbiAgcmV0dXJuIGNyZWF0ZVR3b0ZpbGVzUGF0Y2goZmlsZU5hbWUsIGZpbGVOYW1lLCBvbGRTdHIsIG5ld1N0ciwgb2xkSGVhZGVyLCBuZXdIZWFkZXIsIG9wdGlvbnMpO1xufVxuIl19 +//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wYXRjaC9jcmVhdGUuanMiXSwibmFtZXMiOlsic3RydWN0dXJlZFBhdGNoIiwib2xkRmlsZU5hbWUiLCJuZXdGaWxlTmFtZSIsIm9sZFN0ciIsIm5ld1N0ciIsIm9sZEhlYWRlciIsIm5ld0hlYWRlciIsIm9wdGlvbnMiLCJjb250ZXh0IiwiZGlmZiIsImRpZmZMaW5lcyIsInB1c2giLCJ2YWx1ZSIsImxpbmVzIiwiY29udGV4dExpbmVzIiwibWFwIiwiZW50cnkiLCJodW5rcyIsIm9sZFJhbmdlU3RhcnQiLCJuZXdSYW5nZVN0YXJ0IiwiY3VyUmFuZ2UiLCJvbGRMaW5lIiwibmV3TGluZSIsImkiLCJjdXJyZW50IiwicmVwbGFjZSIsInNwbGl0IiwiYWRkZWQiLCJyZW1vdmVkIiwicHJldiIsInNsaWNlIiwibGVuZ3RoIiwiY29udGV4dFNpemUiLCJNYXRoIiwibWluIiwiaHVuayIsIm9sZFN0YXJ0Iiwib2xkTGluZXMiLCJuZXdTdGFydCIsIm5ld0xpbmVzIiwib2xkRU9GTmV3bGluZSIsInRlc3QiLCJuZXdFT0ZOZXdsaW5lIiwibm9ObEJlZm9yZUFkZHMiLCJzcGxpY2UiLCJmb3JtYXRQYXRjaCIsInJldCIsImFwcGx5Iiwiam9pbiIsImNyZWF0ZVR3b0ZpbGVzUGF0Y2giLCJjcmVhdGVQYXRjaCIsImZpbGVOYW1lIl0sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBOzs7Ozs7Ozs7Ozs7Ozs7QUFFTyxTQUFTQSxlQUFULENBQXlCQyxXQUF6QixFQUFzQ0MsV0FBdEMsRUFBbURDLE1BQW5ELEVBQTJEQyxNQUEzRCxFQUFtRUMsU0FBbkUsRUFBOEVDLFNBQTlFLEVBQXlGQyxPQUF6RixFQUFrRztBQUN2RyxNQUFJLENBQUNBLE9BQUwsRUFBYztBQUNaQSxJQUFBQSxPQUFPLEdBQUcsRUFBVjtBQUNEOztBQUNELE1BQUksT0FBT0EsT0FBTyxDQUFDQyxPQUFmLEtBQTJCLFdBQS9CLEVBQTRDO0FBQzFDRCxJQUFBQSxPQUFPLENBQUNDLE9BQVIsR0FBa0IsQ0FBbEI7QUFDRDs7QUFFRCxNQUFNQyxJQUFJO0FBQUc7QUFBQTtBQUFBOztBQUFBQztBQUFBQTtBQUFBQTtBQUFBQTtBQUFBQTtBQUFBQTtBQUFBO0FBQUEsR0FBVVAsTUFBVixFQUFrQkMsTUFBbEIsRUFBMEJHLE9BQTFCLENBQWI7O0FBQ0EsTUFBRyxDQUFDRSxJQUFKLEVBQVU7QUFDUjtBQUNEOztBQUVEQSxFQUFBQSxJQUFJLENBQUNFLElBQUwsQ0FBVTtBQUFDQyxJQUFBQSxLQUFLLEVBQUUsRUFBUjtBQUFZQyxJQUFBQSxLQUFLLEVBQUU7QUFBbkIsR0FBVixFQWJ1RyxDQWFwRTs7QUFFbkMsV0FBU0MsWUFBVCxDQUFzQkQsS0FBdEIsRUFBNkI7QUFDM0IsV0FBT0EsS0FBSyxDQUFDRSxHQUFOLENBQVUsVUFBU0MsS0FBVCxFQUFnQjtBQUFFLGFBQU8sTUFBTUEsS0FBYjtBQUFxQixLQUFqRCxDQUFQO0FBQ0Q7O0FBRUQsTUFBSUMsS0FBSyxHQUFHLEVBQVo7QUFDQSxNQUFJQyxhQUFhLEdBQUcsQ0FBcEI7QUFBQSxNQUF1QkMsYUFBYSxHQUFHLENBQXZDO0FBQUEsTUFBMENDLFFBQVEsR0FBRyxFQUFyRDtBQUFBLE1BQ0lDLE9BQU8sR0FBRyxDQURkO0FBQUEsTUFDaUJDLE9BQU8sR0FBRyxDQUQzQjs7QUFwQnVHO0FBQUE7QUFBQTtBQXNCOUZDLEVBQUFBLENBdEI4RjtBQXVCckcsUUFBTUMsT0FBTyxHQUFHZixJQUFJLENBQUNjLENBQUQsQ0FBcEI7QUFBQSxRQUNNVixLQUFLLEdBQUdXLE9BQU8sQ0FBQ1gsS0FBUixJQUFpQlcsT0FBTyxDQUFDWixLQUFSLENBQWNhLE9BQWQsQ0FBc0IsS0FBdEIsRUFBNkIsRUFBN0IsRUFBaUNDLEtBQWpDLENBQXVDLElBQXZDLENBRC9CO0FBRUFGLElBQUFBLE9BQU8sQ0FBQ1gsS0FBUixHQUFnQkEsS0FBaEI7O0FBRUEsUUFBSVcsT0FBTyxDQUFDRyxLQUFSLElBQWlCSCxPQUFPLENBQUNJLE9BQTdCLEVBQXNDO0FBQUE7QUFBQTs7QUFBQTtBQUNwQztBQUNBLFVBQUksQ0FBQ1YsYUFBTCxFQUFvQjtBQUNsQixZQUFNVyxJQUFJLEdBQUdwQixJQUFJLENBQUNjLENBQUMsR0FBRyxDQUFMLENBQWpCO0FBQ0FMLFFBQUFBLGFBQWEsR0FBR0csT0FBaEI7QUFDQUYsUUFBQUEsYUFBYSxHQUFHRyxPQUFoQjs7QUFFQSxZQUFJTyxJQUFKLEVBQVU7QUFDUlQsVUFBQUEsUUFBUSxHQUFHYixPQUFPLENBQUNDLE9BQVIsR0FBa0IsQ0FBbEIsR0FBc0JNLFlBQVksQ0FBQ2UsSUFBSSxDQUFDaEIsS0FBTCxDQUFXaUIsS0FBWCxDQUFpQixDQUFDdkIsT0FBTyxDQUFDQyxPQUExQixDQUFELENBQWxDLEdBQXlFLEVBQXBGO0FBQ0FVLFVBQUFBLGFBQWEsSUFBSUUsUUFBUSxDQUFDVyxNQUExQjtBQUNBWixVQUFBQSxhQUFhLElBQUlDLFFBQVEsQ0FBQ1csTUFBMUI7QUFDRDtBQUNGLE9BWm1DLENBY3BDOzs7QUFDQTs7QUFBQTs7QUFBQTtBQUFBO0FBQUE7QUFBQVgsTUFBQUEsUUFBUSxFQUFDVCxJQUFUO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBa0JFLE1BQUFBLEtBQUssQ0FBQ0UsR0FBTixDQUFVLFVBQVNDLEtBQVQsRUFBZ0I7QUFDMUMsZUFBTyxDQUFDUSxPQUFPLENBQUNHLEtBQVIsR0FBZ0IsR0FBaEIsR0FBc0IsR0FBdkIsSUFBOEJYLEtBQXJDO0FBQ0QsT0FGaUIsQ0FBbEIsR0Fmb0MsQ0FtQnBDOzs7QUFDQSxVQUFJUSxPQUFPLENBQUNHLEtBQVosRUFBbUI7QUFDakJMLFFBQUFBLE9BQU8sSUFBSVQsS0FBSyxDQUFDa0IsTUFBakI7QUFDRCxPQUZELE1BRU87QUFDTFYsUUFBQUEsT0FBTyxJQUFJUixLQUFLLENBQUNrQixNQUFqQjtBQUNEO0FBQ0YsS0F6QkQsTUF5Qk87QUFDTDtBQUNBLFVBQUliLGFBQUosRUFBbUI7QUFDakI7QUFDQSxZQUFJTCxLQUFLLENBQUNrQixNQUFOLElBQWdCeEIsT0FBTyxDQUFDQyxPQUFSLEdBQWtCLENBQWxDLElBQXVDZSxDQUFDLEdBQUdkLElBQUksQ0FBQ3NCLE1BQUwsR0FBYyxDQUE3RCxFQUFnRTtBQUFBO0FBQUE7O0FBQUE7QUFDOUQ7O0FBQ0E7O0FBQUE7O0FBQUE7QUFBQTtBQUFBO0FBQUFYLFVBQUFBLFFBQVEsRUFBQ1QsSUFBVDtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQWtCRyxVQUFBQSxZQUFZLENBQUNELEtBQUQsQ0FBOUI7QUFDRCxTQUhELE1BR087QUFBQTtBQUFBOztBQUFBO0FBQ0w7QUFDQSxjQUFJbUIsV0FBVyxHQUFHQyxJQUFJLENBQUNDLEdBQUwsQ0FBU3JCLEtBQUssQ0FBQ2tCLE1BQWYsRUFBdUJ4QixPQUFPLENBQUNDLE9BQS9CLENBQWxCOztBQUNBOztBQUFBOztBQUFBO0FBQUE7QUFBQTtBQUFBWSxVQUFBQSxRQUFRLEVBQUNULElBQVQ7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFrQkcsVUFBQUEsWUFBWSxDQUFDRCxLQUFLLENBQUNpQixLQUFOLENBQVksQ0FBWixFQUFlRSxXQUFmLENBQUQsQ0FBOUI7O0FBRUEsY0FBSUcsSUFBSSxHQUFHO0FBQ1RDLFlBQUFBLFFBQVEsRUFBRWxCLGFBREQ7QUFFVG1CLFlBQUFBLFFBQVEsRUFBR2hCLE9BQU8sR0FBR0gsYUFBVixHQUEwQmMsV0FGNUI7QUFHVE0sWUFBQUEsUUFBUSxFQUFFbkIsYUFIRDtBQUlUb0IsWUFBQUEsUUFBUSxFQUFHakIsT0FBTyxHQUFHSCxhQUFWLEdBQTBCYSxXQUo1QjtBQUtUbkIsWUFBQUEsS0FBSyxFQUFFTztBQUxFLFdBQVg7O0FBT0EsY0FBSUcsQ0FBQyxJQUFJZCxJQUFJLENBQUNzQixNQUFMLEdBQWMsQ0FBbkIsSUFBd0JsQixLQUFLLENBQUNrQixNQUFOLElBQWdCeEIsT0FBTyxDQUFDQyxPQUFwRCxFQUE2RDtBQUMzRDtBQUNBLGdCQUFJZ0MsYUFBYSxHQUFLLEtBQUQsQ0FBUUMsSUFBUixDQUFhdEMsTUFBYixDQUFyQjtBQUNBLGdCQUFJdUMsYUFBYSxHQUFLLEtBQUQsQ0FBUUQsSUFBUixDQUFhckMsTUFBYixDQUFyQjtBQUNBLGdCQUFJdUMsY0FBYyxHQUFHOUIsS0FBSyxDQUFDa0IsTUFBTixJQUFnQixDQUFoQixJQUFxQlgsUUFBUSxDQUFDVyxNQUFULEdBQWtCSSxJQUFJLENBQUNFLFFBQWpFOztBQUNBLGdCQUFJLENBQUNHLGFBQUQsSUFBa0JHLGNBQWxCLElBQW9DeEMsTUFBTSxDQUFDNEIsTUFBUCxHQUFnQixDQUF4RCxFQUEyRDtBQUN6RDtBQUNBO0FBQ0FYLGNBQUFBLFFBQVEsQ0FBQ3dCLE1BQVQsQ0FBZ0JULElBQUksQ0FBQ0UsUUFBckIsRUFBK0IsQ0FBL0IsRUFBa0MsOEJBQWxDO0FBQ0Q7O0FBQ0QsZ0JBQUssQ0FBQ0csYUFBRCxJQUFrQixDQUFDRyxjQUFwQixJQUF1QyxDQUFDRCxhQUE1QyxFQUEyRDtBQUN6RHRCLGNBQUFBLFFBQVEsQ0FBQ1QsSUFBVCxDQUFjLDhCQUFkO0FBQ0Q7QUFDRjs7QUFDRE0sVUFBQUEsS0FBSyxDQUFDTixJQUFOLENBQVd3QixJQUFYO0FBRUFqQixVQUFBQSxhQUFhLEdBQUcsQ0FBaEI7QUFDQUMsVUFBQUEsYUFBYSxHQUFHLENBQWhCO0FBQ0FDLFVBQUFBLFFBQVEsR0FBRyxFQUFYO0FBQ0Q7QUFDRjs7QUFDREMsTUFBQUEsT0FBTyxJQUFJUixLQUFLLENBQUNrQixNQUFqQjtBQUNBVCxNQUFBQSxPQUFPLElBQUlULEtBQUssQ0FBQ2tCLE1BQWpCO0FBQ0Q7QUE5Rm9HOztBQXNCdkcsT0FBSyxJQUFJUixDQUFDLEdBQUcsQ0FBYixFQUFnQkEsQ0FBQyxHQUFHZCxJQUFJLENBQUNzQixNQUF6QixFQUFpQ1IsQ0FBQyxFQUFsQyxFQUFzQztBQUFBO0FBQUE7QUFBQTtBQUE3QkEsSUFBQUEsQ0FBNkI7QUF5RXJDOztBQUVELFNBQU87QUFDTHRCLElBQUFBLFdBQVcsRUFBRUEsV0FEUjtBQUNxQkMsSUFBQUEsV0FBVyxFQUFFQSxXQURsQztBQUVMRyxJQUFBQSxTQUFTLEVBQUVBLFNBRk47QUFFaUJDLElBQUFBLFNBQVMsRUFBRUEsU0FGNUI7QUFHTFcsSUFBQUEsS0FBSyxFQUFFQTtBQUhGLEdBQVA7QUFLRDs7QUFFTSxTQUFTNEIsV0FBVCxDQUFxQnBDLElBQXJCLEVBQTJCO0FBQ2hDLE1BQU1xQyxHQUFHLEdBQUcsRUFBWjs7QUFDQSxNQUFJckMsSUFBSSxDQUFDUixXQUFMLElBQW9CUSxJQUFJLENBQUNQLFdBQTdCLEVBQTBDO0FBQ3hDNEMsSUFBQUEsR0FBRyxDQUFDbkMsSUFBSixDQUFTLFlBQVlGLElBQUksQ0FBQ1IsV0FBMUI7QUFDRDs7QUFDRDZDLEVBQUFBLEdBQUcsQ0FBQ25DLElBQUosQ0FBUyxxRUFBVDtBQUNBbUMsRUFBQUEsR0FBRyxDQUFDbkMsSUFBSixDQUFTLFNBQVNGLElBQUksQ0FBQ1IsV0FBZCxJQUE2QixPQUFPUSxJQUFJLENBQUNKLFNBQVosS0FBMEIsV0FBMUIsR0FBd0MsRUFBeEMsR0FBNkMsT0FBT0ksSUFBSSxDQUFDSixTQUF0RixDQUFUO0FBQ0F5QyxFQUFBQSxHQUFHLENBQUNuQyxJQUFKLENBQVMsU0FBU0YsSUFBSSxDQUFDUCxXQUFkLElBQTZCLE9BQU9PLElBQUksQ0FBQ0gsU0FBWixLQUEwQixXQUExQixHQUF3QyxFQUF4QyxHQUE2QyxPQUFPRyxJQUFJLENBQUNILFNBQXRGLENBQVQ7O0FBRUEsT0FBSyxJQUFJaUIsQ0FBQyxHQUFHLENBQWIsRUFBZ0JBLENBQUMsR0FBR2QsSUFBSSxDQUFDUSxLQUFMLENBQVdjLE1BQS9CLEVBQXVDUixDQUFDLEVBQXhDLEVBQTRDO0FBQzFDLFFBQU1ZLElBQUksR0FBRzFCLElBQUksQ0FBQ1EsS0FBTCxDQUFXTSxDQUFYLENBQWIsQ0FEMEMsQ0FFMUM7QUFDQTtBQUNBOztBQUNBLFFBQUlZLElBQUksQ0FBQ0UsUUFBTCxLQUFrQixDQUF0QixFQUF5QjtBQUN2QkYsTUFBQUEsSUFBSSxDQUFDQyxRQUFMLElBQWlCLENBQWpCO0FBQ0Q7O0FBQ0QsUUFBSUQsSUFBSSxDQUFDSSxRQUFMLEtBQWtCLENBQXRCLEVBQXlCO0FBQ3ZCSixNQUFBQSxJQUFJLENBQUNHLFFBQUwsSUFBaUIsQ0FBakI7QUFDRDs7QUFDRFEsSUFBQUEsR0FBRyxDQUFDbkMsSUFBSixDQUNFLFNBQVN3QixJQUFJLENBQUNDLFFBQWQsR0FBeUIsR0FBekIsR0FBK0JELElBQUksQ0FBQ0UsUUFBcEMsR0FDRSxJQURGLEdBQ1NGLElBQUksQ0FBQ0csUUFEZCxHQUN5QixHQUR6QixHQUMrQkgsSUFBSSxDQUFDSSxRQURwQyxHQUVFLEtBSEo7QUFLQU8sSUFBQUEsR0FBRyxDQUFDbkMsSUFBSixDQUFTb0MsS0FBVCxDQUFlRCxHQUFmLEVBQW9CWCxJQUFJLENBQUN0QixLQUF6QjtBQUNEOztBQUVELFNBQU9pQyxHQUFHLENBQUNFLElBQUosQ0FBUyxJQUFULElBQWlCLElBQXhCO0FBQ0Q7O0FBRU0sU0FBU0MsbUJBQVQsQ0FBNkJoRCxXQUE3QixFQUEwQ0MsV0FBMUMsRUFBdURDLE1BQXZELEVBQStEQyxNQUEvRCxFQUF1RUMsU0FBdkUsRUFBa0ZDLFNBQWxGLEVBQTZGQyxPQUE3RixFQUFzRztBQUMzRyxTQUFPc0MsV0FBVyxDQUFDN0MsZUFBZSxDQUFDQyxXQUFELEVBQWNDLFdBQWQsRUFBMkJDLE1BQTNCLEVBQW1DQyxNQUFuQyxFQUEyQ0MsU0FBM0MsRUFBc0RDLFNBQXRELEVBQWlFQyxPQUFqRSxDQUFoQixDQUFsQjtBQUNEOztBQUVNLFNBQVMyQyxXQUFULENBQXFCQyxRQUFyQixFQUErQmhELE1BQS9CLEVBQXVDQyxNQUF2QyxFQUErQ0MsU0FBL0MsRUFBMERDLFNBQTFELEVBQXFFQyxPQUFyRSxFQUE4RTtBQUNuRixTQUFPMEMsbUJBQW1CLENBQUNFLFFBQUQsRUFBV0EsUUFBWCxFQUFxQmhELE1BQXJCLEVBQTZCQyxNQUE3QixFQUFxQ0MsU0FBckMsRUFBZ0RDLFNBQWhELEVBQTJEQyxPQUEzRCxDQUExQjtBQUNEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtkaWZmTGluZXN9IGZyb20gJy4uL2RpZmYvbGluZSc7XG5cbmV4cG9ydCBmdW5jdGlvbiBzdHJ1Y3R1cmVkUGF0Y2gob2xkRmlsZU5hbWUsIG5ld0ZpbGVOYW1lLCBvbGRTdHIsIG5ld1N0ciwgb2xkSGVhZGVyLCBuZXdIZWFkZXIsIG9wdGlvbnMpIHtcbiAgaWYgKCFvcHRpb25zKSB7XG4gICAgb3B0aW9ucyA9IHt9O1xuICB9XG4gIGlmICh0eXBlb2Ygb3B0aW9ucy5jb250ZXh0ID09PSAndW5kZWZpbmVkJykge1xuICAgIG9wdGlvbnMuY29udGV4dCA9IDQ7XG4gIH1cblxuICBjb25zdCBkaWZmID0gZGlmZkxpbmVzKG9sZFN0ciwgbmV3U3RyLCBvcHRpb25zKTtcbiAgaWYoIWRpZmYpIHtcbiAgICByZXR1cm47XG4gIH1cblxuICBkaWZmLnB1c2goe3ZhbHVlOiAnJywgbGluZXM6IFtdfSk7IC8vIEFwcGVuZCBhbiBlbXB0eSB2YWx1ZSB0byBtYWtlIGNsZWFudXAgZWFzaWVyXG5cbiAgZnVuY3Rpb24gY29udGV4dExpbmVzKGxpbmVzKSB7XG4gICAgcmV0dXJuIGxpbmVzLm1hcChmdW5jdGlvbihlbnRyeSkgeyByZXR1cm4gJyAnICsgZW50cnk7IH0pO1xuICB9XG5cbiAgbGV0IGh1bmtzID0gW107XG4gIGxldCBvbGRSYW5nZVN0YXJ0ID0gMCwgbmV3UmFuZ2VTdGFydCA9IDAsIGN1clJhbmdlID0gW10sXG4gICAgICBvbGRMaW5lID0gMSwgbmV3TGluZSA9IDE7XG4gIGZvciAobGV0IGkgPSAwOyBpIDwgZGlmZi5sZW5ndGg7IGkrKykge1xuICAgIGNvbnN0IGN1cnJlbnQgPSBkaWZmW2ldLFxuICAgICAgICAgIGxpbmVzID0gY3VycmVudC5saW5lcyB8fCBjdXJyZW50LnZhbHVlLnJlcGxhY2UoL1xcbiQvLCAnJykuc3BsaXQoJ1xcbicpO1xuICAgIGN1cnJlbnQubGluZXMgPSBsaW5lcztcblxuICAgIGlmIChjdXJyZW50LmFkZGVkIHx8IGN1cnJlbnQucmVtb3ZlZCkge1xuICAgICAgLy8gSWYgd2UgaGF2ZSBwcmV2aW91cyBjb250ZXh0LCBzdGFydCB3aXRoIHRoYXRcbiAgICAgIGlmICghb2xkUmFuZ2VTdGFydCkge1xuICAgICAgICBjb25zdCBwcmV2ID0gZGlmZltpIC0gMV07XG4gICAgICAgIG9sZFJhbmdlU3RhcnQgPSBvbGRMaW5lO1xuICAgICAgICBuZXdSYW5nZVN0YXJ0ID0gbmV3TGluZTtcblxuICAgICAgICBpZiAocHJldikge1xuICAgICAgICAgIGN1clJhbmdlID0gb3B0aW9ucy5jb250ZXh0ID4gMCA/IGNvbnRleHRMaW5lcyhwcmV2LmxpbmVzLnNsaWNlKC1vcHRpb25zLmNvbnRleHQpKSA6IFtdO1xuICAgICAgICAgIG9sZFJhbmdlU3RhcnQgLT0gY3VyUmFuZ2UubGVuZ3RoO1xuICAgICAgICAgIG5ld1JhbmdlU3RhcnQgLT0gY3VyUmFuZ2UubGVuZ3RoO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIC8vIE91dHB1dCBvdXIgY2hhbmdlc1xuICAgICAgY3VyUmFuZ2UucHVzaCguLi4gbGluZXMubWFwKGZ1bmN0aW9uKGVudHJ5KSB7XG4gICAgICAgIHJldHVybiAoY3VycmVudC5hZGRlZCA/ICcrJyA6ICctJykgKyBlbnRyeTtcbiAgICAgIH0pKTtcblxuICAgICAgLy8gVHJhY2sgdGhlIHVwZGF0ZWQgZmlsZSBwb3NpdGlvblxuICAgICAgaWYgKGN1cnJlbnQuYWRkZWQpIHtcbiAgICAgICAgbmV3TGluZSArPSBsaW5lcy5sZW5ndGg7XG4gICAgICB9IGVsc2Uge1xuICAgICAgICBvbGRMaW5lICs9IGxpbmVzLmxlbmd0aDtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgLy8gSWRlbnRpY2FsIGNvbnRleHQgbGluZXMuIFRyYWNrIGxpbmUgY2hhbmdlc1xuICAgICAgaWYgKG9sZFJhbmdlU3RhcnQpIHtcbiAgICAgICAgLy8gQ2xvc2Ugb3V0IGFueSBjaGFuZ2VzIHRoYXQgaGF2ZSBiZWVuIG91dHB1dCAob3Igam9pbiBvdmVybGFwcGluZylcbiAgICAgICAgaWYgKGxpbmVzLmxlbmd0aCA8PSBvcHRpb25zLmNvbnRleHQgKiAyICYmIGkgPCBkaWZmLmxlbmd0aCAtIDIpIHtcbiAgICAgICAgICAvLyBPdmVybGFwcGluZ1xuICAgICAgICAgIGN1clJhbmdlLnB1c2goLi4uIGNvbnRleHRMaW5lcyhsaW5lcykpO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIC8vIGVuZCB0aGUgcmFuZ2UgYW5kIG91dHB1dFxuICAgICAgICAgIGxldCBjb250ZXh0U2l6ZSA9IE1hdGgubWluKGxpbmVzLmxlbmd0aCwgb3B0aW9ucy5jb250ZXh0KTtcbiAgICAgICAgICBjdXJSYW5nZS5wdXNoKC4uLiBjb250ZXh0TGluZXMobGluZXMuc2xpY2UoMCwgY29udGV4dFNpemUpKSk7XG5cbiAgICAgICAgICBsZXQgaHVuayA9IHtcbiAgICAgICAgICAgIG9sZFN0YXJ0OiBvbGRSYW5nZVN0YXJ0LFxuICAgICAgICAgICAgb2xkTGluZXM6IChvbGRMaW5lIC0gb2xkUmFuZ2VTdGFydCArIGNvbnRleHRTaXplKSxcbiAgICAgICAgICAgIG5ld1N0YXJ0OiBuZXdSYW5nZVN0YXJ0LFxuICAgICAgICAgICAgbmV3TGluZXM6IChuZXdMaW5lIC0gbmV3UmFuZ2VTdGFydCArIGNvbnRleHRTaXplKSxcbiAgICAgICAgICAgIGxpbmVzOiBjdXJSYW5nZVxuICAgICAgICAgIH07XG4gICAgICAgICAgaWYgKGkgPj0gZGlmZi5sZW5ndGggLSAyICYmIGxpbmVzLmxlbmd0aCA8PSBvcHRpb25zLmNvbnRleHQpIHtcbiAgICAgICAgICAgIC8vIEVPRiBpcyBpbnNpZGUgdGhpcyBodW5rXG4gICAgICAgICAgICBsZXQgb2xkRU9GTmV3bGluZSA9ICgoL1xcbiQvKS50ZXN0KG9sZFN0cikpO1xuICAgICAgICAgICAgbGV0IG5ld0VPRk5ld2xpbmUgPSAoKC9cXG4kLykudGVzdChuZXdTdHIpKTtcbiAgICAgICAgICAgIGxldCBub05sQmVmb3JlQWRkcyA9IGxpbmVzLmxlbmd0aCA9PSAwICYmIGN1clJhbmdlLmxlbmd0aCA+IGh1bmsub2xkTGluZXM7XG4gICAgICAgICAgICBpZiAoIW9sZEVPRk5ld2xpbmUgJiYgbm9ObEJlZm9yZUFkZHMgJiYgb2xkU3RyLmxlbmd0aCA+IDApIHtcbiAgICAgICAgICAgICAgLy8gc3BlY2lhbCBjYXNlOiBvbGQgaGFzIG5vIGVvbCBhbmQgbm8gdHJhaWxpbmcgY29udGV4dDsgbm8tbmwgY2FuIGVuZCB1cCBiZWZvcmUgYWRkc1xuICAgICAgICAgICAgICAvLyBob3dldmVyLCBpZiB0aGUgb2xkIGZpbGUgaXMgZW1wdHksIGRvIG5vdCBvdXRwdXQgdGhlIG5vLW5sIGxpbmVcbiAgICAgICAgICAgICAgY3VyUmFuZ2Uuc3BsaWNlKGh1bmsub2xkTGluZXMsIDAsICdcXFxcIE5vIG5ld2xpbmUgYXQgZW5kIG9mIGZpbGUnKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICAgIGlmICgoIW9sZEVPRk5ld2xpbmUgJiYgIW5vTmxCZWZvcmVBZGRzKSB8fCAhbmV3RU9GTmV3bGluZSkge1xuICAgICAgICAgICAgICBjdXJSYW5nZS5wdXNoKCdcXFxcIE5vIG5ld2xpbmUgYXQgZW5kIG9mIGZpbGUnKTtcbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgICAgaHVua3MucHVzaChodW5rKTtcblxuICAgICAgICAgIG9sZFJhbmdlU3RhcnQgPSAwO1xuICAgICAgICAgIG5ld1JhbmdlU3RhcnQgPSAwO1xuICAgICAgICAgIGN1clJhbmdlID0gW107XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIG9sZExpbmUgKz0gbGluZXMubGVuZ3RoO1xuICAgICAgbmV3TGluZSArPSBsaW5lcy5sZW5ndGg7XG4gICAgfVxuICB9XG5cbiAgcmV0dXJuIHtcbiAgICBvbGRGaWxlTmFtZTogb2xkRmlsZU5hbWUsIG5ld0ZpbGVOYW1lOiBuZXdGaWxlTmFtZSxcbiAgICBvbGRIZWFkZXI6IG9sZEhlYWRlciwgbmV3SGVhZGVyOiBuZXdIZWFkZXIsXG4gICAgaHVua3M6IGh1bmtzXG4gIH07XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBmb3JtYXRQYXRjaChkaWZmKSB7XG4gIGNvbnN0IHJldCA9IFtdO1xuICBpZiAoZGlmZi5vbGRGaWxlTmFtZSA9PSBkaWZmLm5ld0ZpbGVOYW1lKSB7XG4gICAgcmV0LnB1c2goJ0luZGV4OiAnICsgZGlmZi5vbGRGaWxlTmFtZSk7XG4gIH1cbiAgcmV0LnB1c2goJz09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0nKTtcbiAgcmV0LnB1c2goJy0tLSAnICsgZGlmZi5vbGRGaWxlTmFtZSArICh0eXBlb2YgZGlmZi5vbGRIZWFkZXIgPT09ICd1bmRlZmluZWQnID8gJycgOiAnXFx0JyArIGRpZmYub2xkSGVhZGVyKSk7XG4gIHJldC5wdXNoKCcrKysgJyArIGRpZmYubmV3RmlsZU5hbWUgKyAodHlwZW9mIGRpZmYubmV3SGVhZGVyID09PSAndW5kZWZpbmVkJyA/ICcnIDogJ1xcdCcgKyBkaWZmLm5ld0hlYWRlcikpO1xuXG4gIGZvciAobGV0IGkgPSAwOyBpIDwgZGlmZi5odW5rcy5sZW5ndGg7IGkrKykge1xuICAgIGNvbnN0IGh1bmsgPSBkaWZmLmh1bmtzW2ldO1xuICAgIC8vIFVuaWZpZWQgRGlmZiBGb3JtYXQgcXVpcms6IElmIHRoZSBjaHVuayBzaXplIGlzIDAsXG4gICAgLy8gdGhlIGZpcnN0IG51bWJlciBpcyBvbmUgbG93ZXIgdGhhbiBvbmUgd291bGQgZXhwZWN0LlxuICAgIC8vIGh0dHBzOi8vd3d3LmFydGltYS5jb20vd2VibG9ncy92aWV3cG9zdC5qc3A/dGhyZWFkPTE2NDI5M1xuICAgIGlmIChodW5rLm9sZExpbmVzID09PSAwKSB7XG4gICAgICBodW5rLm9sZFN0YXJ0IC09IDE7XG4gICAgfVxuICAgIGlmIChodW5rLm5ld0xpbmVzID09PSAwKSB7XG4gICAgICBodW5rLm5ld1N0YXJ0IC09IDE7XG4gICAgfVxuICAgIHJldC5wdXNoKFxuICAgICAgJ0BAIC0nICsgaHVuay5vbGRTdGFydCArICcsJyArIGh1bmsub2xkTGluZXNcbiAgICAgICsgJyArJyArIGh1bmsubmV3U3RhcnQgKyAnLCcgKyBodW5rLm5ld0xpbmVzXG4gICAgICArICcgQEAnXG4gICAgKTtcbiAgICByZXQucHVzaC5hcHBseShyZXQsIGh1bmsubGluZXMpO1xuICB9XG5cbiAgcmV0dXJuIHJldC5qb2luKCdcXG4nKSArICdcXG4nO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gY3JlYXRlVHdvRmlsZXNQYXRjaChvbGRGaWxlTmFtZSwgbmV3RmlsZU5hbWUsIG9sZFN0ciwgbmV3U3RyLCBvbGRIZWFkZXIsIG5ld0hlYWRlciwgb3B0aW9ucykge1xuICByZXR1cm4gZm9ybWF0UGF0Y2goc3RydWN0dXJlZFBhdGNoKG9sZEZpbGVOYW1lLCBuZXdGaWxlTmFtZSwgb2xkU3RyLCBuZXdTdHIsIG9sZEhlYWRlciwgbmV3SGVhZGVyLCBvcHRpb25zKSk7XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBjcmVhdGVQYXRjaChmaWxlTmFtZSwgb2xkU3RyLCBuZXdTdHIsIG9sZEhlYWRlciwgbmV3SGVhZGVyLCBvcHRpb25zKSB7XG4gIHJldHVybiBjcmVhdGVUd29GaWxlc1BhdGNoKGZpbGVOYW1lLCBmaWxlTmFtZSwgb2xkU3RyLCBuZXdTdHIsIG9sZEhlYWRlciwgbmV3SGVhZGVyLCBvcHRpb25zKTtcbn1cbiJdfQ== diff --git a/deps/npm/node_modules/diff/package.json b/deps/npm/node_modules/diff/package.json index 2b6eea7f1cbff37..a2fc30c581218fe 100644 --- a/deps/npm/node_modules/diff/package.json +++ b/deps/npm/node_modules/diff/package.json @@ -1,6 +1,6 @@ { "name": "diff", - "version": "5.0.0", + "version": "5.1.0", "description": "A javascript text diff implementation.", "keywords": [ "diff", diff --git a/deps/npm/node_modules/diff/release-notes.md b/deps/npm/node_modules/diff/release-notes.md index acc75aa83d88e40..b7bc9c803b9022f 100644 --- a/deps/npm/node_modules/diff/release-notes.md +++ b/deps/npm/node_modules/diff/release-notes.md @@ -4,6 +4,12 @@ [Commits](https://github.com/kpdecker/jsdiff/compare/v5.0.0...master) +## v5.1.0 + +- [#365](https://github.com/kpdecker/jsdiff/issues/365) Allow early termination to limit execution time with degenerate cases + +[Commits](https://github.com/kpdecker/jsdiff/compare/v5.0.0...v5.0.1) + ## v5.0.0 - Breaking: UMD export renamed from `JsDiff` to `Diff`. diff --git a/deps/npm/node_modules/hosted-git-info/lib/git-host-info.js b/deps/npm/node_modules/hosted-git-info/lib/git-host-info.js index 9a9720fa3c33948..cdc1e4601acff52 100644 --- a/deps/npm/node_modules/hosted-git-info/lib/git-host-info.js +++ b/deps/npm/node_modules/hosted-git-info/lib/git-host-info.js @@ -6,6 +6,7 @@ const maybeEncode = (arg) => arg ? encodeURIComponent(arg) : '' const defaults = { sshtemplate: ({ domain, user, project, committish }) => `git@${domain}:${user}/${project}.git${maybeJoin('#', committish)}`, sshurltemplate: ({ domain, user, project, committish }) => `git+ssh://git@${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, + edittemplate: ({ domain, user, project, committish, editpath, path }) => `https://${domain}/${user}/${project}${maybeJoin('/', editpath, '/', maybeEncode(committish || 'master'), '/', path)}`, browsetemplate: ({ domain, user, project, committish, treepath }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}`, browsefiletemplate: ({ domain, user, project, committish, treepath, path, fragment, hashformat }) => `https://${domain}/${user}/${project}/${treepath}/${maybeEncode(committish || 'master')}/${path}${maybeJoin('#', hashformat(fragment || ''))}`, docstemplate: ({ domain, user, project, treepath, committish }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish))}#readme`, @@ -24,6 +25,7 @@ gitHosts.github = Object.assign({}, defaults, { protocols: ['git:', 'http:', 'git+ssh:', 'git+https:', 'ssh:', 'https:'], domain: 'github.com', treepath: 'tree', + editpath: 'edit', filetemplate: ({ auth, user, project, committish, path }) => `https://${maybeJoin(auth, '@')}raw.githubusercontent.com/${user}/${project}/${maybeEncode(committish) || 'master'}/${path}`, gittemplate: ({ auth, domain, user, project, committish }) => `git://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, tarballtemplate: ({ domain, user, project, committish }) => `https://codeload.${domain}/${user}/${project}/tar.gz/${maybeEncode(committish) || 'master'}`, @@ -53,6 +55,8 @@ gitHosts.bitbucket = Object.assign({}, defaults, { protocols: ['git+ssh:', 'git+https:', 'ssh:', 'https:'], domain: 'bitbucket.org', treepath: 'src', + editpath: '?mode=edit', + edittemplate: ({ domain, user, project, committish, treepath, path, editpath }) => `https://${domain}/${user}/${project}${maybeJoin('/', treepath, '/', maybeEncode(committish || 'master'), '/', path, editpath)}`, tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/get/${maybeEncode(committish) || 'master'}.tar.gz`, extract: (url) => { let [, user, project, aux] = url.pathname.split('/', 4) @@ -76,6 +80,7 @@ gitHosts.gitlab = Object.assign({}, defaults, { protocols: ['git+ssh:', 'git+https:', 'ssh:', 'https:'], domain: 'gitlab.com', treepath: 'tree', + editpath: '-/edit', httpstemplate: ({ auth, domain, user, project, committish }) => `git+https://${maybeJoin(auth, '@')}${domain}/${user}/${project}.git${maybeJoin('#', committish)}`, tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/repository/archive.tar.gz?ref=${maybeEncode(committish) || 'master'}`, extract: (url) => { @@ -102,8 +107,10 @@ gitHosts.gitlab = Object.assign({}, defaults, { gitHosts.gist = Object.assign({}, defaults, { protocols: ['git:', 'git+ssh:', 'git+https:', 'ssh:', 'https:'], domain: 'gist.github.com', + editpath: 'edit', sshtemplate: ({ domain, project, committish }) => `git@${domain}:${project}.git${maybeJoin('#', committish)}`, sshurltemplate: ({ domain, project, committish }) => `git+ssh://git@${domain}/${project}.git${maybeJoin('#', committish)}`, + edittemplate: ({ domain, user, project, committish, editpath }) => `https://${domain}/${user}/${project}${maybeJoin('/', maybeEncode(committish))}/${editpath}`, browsetemplate: ({ domain, project, committish }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}`, browsefiletemplate: ({ domain, project, committish, path, hashformat }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}${maybeJoin('#', hashformat(path))}`, docstemplate: ({ domain, project, committish }) => `https://${domain}/${project}${maybeJoin('/', maybeEncode(committish))}`, diff --git a/deps/npm/node_modules/hosted-git-info/lib/git-host.js b/deps/npm/node_modules/hosted-git-info/lib/git-host.js index 8a975e92e58bb7a..bb65d4d992aa7d9 100644 --- a/deps/npm/node_modules/hosted-git-info/lib/git-host.js +++ b/deps/npm/node_modules/hosted-git-info/lib/git-host.js @@ -95,6 +95,10 @@ class GitHost { return this._fill(this.filetemplate, { ...opts, path }) } + edit (path, opts) { + return this._fill(this.edittemplate, { ...opts, path }) + } + getDefaultRepresentation () { return this.default } diff --git a/deps/npm/node_modules/hosted-git-info/lib/index.js b/deps/npm/node_modules/hosted-git-info/lib/index.js index 8bce6b3c28d516f..d5d63c66839b018 100644 --- a/deps/npm/node_modules/hosted-git-info/lib/index.js +++ b/deps/npm/node_modules/hosted-git-info/lib/index.js @@ -46,8 +46,8 @@ function fromUrl (giturl, opts) { return } - const url = isGitHubShorthand(giturl) ? 'github:' + giturl : correctProtocol(giturl) - const parsed = parseGitUrl(url) + const correctedUrl = isGitHubShorthand(giturl) ? 'github:' + giturl : correctProtocol(giturl) + const parsed = parseGitUrl(correctedUrl) if (!parsed) { return parsed } @@ -229,7 +229,9 @@ const parseGitUrl = (giturl) => { let result try { result = new url.URL(giturl) - } catch (err) {} + } catch { + // this fn should never throw + } if (result) { return result @@ -238,7 +240,9 @@ const parseGitUrl = (giturl) => { const correctedUrl = correctUrl(giturl) try { result = new url.URL(correctedUrl) - } catch (err) {} + } catch { + // this fn should never throw + } return result } diff --git a/deps/npm/node_modules/hosted-git-info/package.json b/deps/npm/node_modules/hosted-git-info/package.json index 0153b0852cbf439..07a5587ca76ef6f 100644 --- a/deps/npm/node_modules/hosted-git-info/package.json +++ b/deps/npm/node_modules/hosted-git-info/package.json @@ -1,11 +1,11 @@ { "name": "hosted-git-info", - "version": "5.0.0", + "version": "5.1.0", "description": "Provides metadata and conversions from repository urls for GitHub, Bitbucket and GitLab", "main": "./lib/index.js", "repository": { "type": "git", - "url": "git+https://github.com/npm/hosted-git-info.git" + "url": "https://github.com/npm/hosted-git-info.git" }, "keywords": [ "git", @@ -27,30 +27,32 @@ "snap": "tap", "test": "tap", "test:coverage": "tap --coverage-report=html", - "lint": "eslint '**/*.js'", - "postlint": "npm-template-check", - "template-copy": "npm-template-copy --force", - "lintfix": "npm run lint -- --fix" + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "lintfix": "npm run lint -- --fix", + "template-oss-apply": "template-oss-apply --force" }, "dependencies": { "lru-cache": "^7.5.1" }, "devDependencies": { - "@npmcli/template-oss": "^2.9.2", - "tap": "^15.1.6" + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.0.1" }, "files": [ - "bin", - "lib" + "bin/", + "lib/" ], "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "tap": { "color": 1, "coverage": true }, "templateOSS": { - "version": "2.9.2" + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/ini/lib/ini.js b/deps/npm/node_modules/ini/lib/ini.js index 965e702493b1ded..d05682b606bc24c 100644 --- a/deps/npm/node_modules/ini/lib/ini.js +++ b/deps/npm/node_modules/ini/lib/ini.js @@ -186,7 +186,9 @@ const unsafe = (val, doUnesc) => { } try { val = JSON.parse(val) - } catch (_) {} + } catch { + // ignore errors + } } else { // walk the val to find the first not-escaped ; character let esc = false diff --git a/deps/npm/node_modules/ini/package.json b/deps/npm/node_modules/ini/package.json index 1fe32c8f162a36d..e41c0f0f3dcc5fe 100644 --- a/deps/npm/node_modules/ini/package.json +++ b/deps/npm/node_modules/ini/package.json @@ -2,7 +2,7 @@ "author": "GitHub Inc.", "name": "ini", "description": "An ini encoder/decoder for node", - "version": "3.0.0", + "version": "3.0.1", "repository": { "type": "git", "url": "https://github.com/npm/ini.git" @@ -23,7 +23,7 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.2.2", + "@npmcli/template-oss": "3.5.0", "tap": "^16.0.1" }, "license": "ISC", @@ -36,6 +36,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.2.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/ip/lib/ip.js b/deps/npm/node_modules/ip/lib/ip.js index 5b5ccc246a4ab65..4b2adb5addd96b2 100644 --- a/deps/npm/node_modules/ip/lib/ip.js +++ b/deps/npm/node_modules/ip/lib/ip.js @@ -1,24 +1,24 @@ -var ip = exports; -var { Buffer } = require('buffer'); -var os = require('os'); +const ip = exports; +const { Buffer } = require('buffer'); +const os = require('os'); ip.toBuffer = function (ip, buff, offset) { offset = ~~offset; - var result; + let result; if (this.isV4Format(ip)) { - result = buff || new Buffer(offset + 4); + result = buff || Buffer.alloc(offset + 4); ip.split(/\./g).map((byte) => { result[offset++] = parseInt(byte, 10) & 0xff; }); } else if (this.isV6Format(ip)) { - var sections = ip.split(':', 8); + const sections = ip.split(':', 8); - var i; + let i; for (i = 0; i < sections.length; i++) { - var isv4 = this.isV4Format(sections[i]); - var v4Buffer; + const isv4 = this.isV4Format(sections[i]); + let v4Buffer; if (isv4) { v4Buffer = this.toBuffer(sections[i]); @@ -36,16 +36,16 @@ ip.toBuffer = function (ip, buff, offset) { while (sections.length < 8) sections.push('0'); } else if (sections.length < 8) { for (i = 0; i < sections.length && sections[i] !== ''; i++); - var argv = [i, 1]; + const argv = [i, 1]; for (i = 9 - sections.length; i > 0; i--) { argv.push('0'); } - sections.splice.apply(sections, argv); + sections.splice(...argv); } - result = buff || new Buffer(offset + 16); + result = buff || Buffer.alloc(offset + 16); for (i = 0; i < sections.length; i++) { - var word = parseInt(sections[i], 16); + const word = parseInt(sections[i], 16); result[offset++] = (word >> 8) & 0xff; result[offset++] = word & 0xff; } @@ -62,17 +62,16 @@ ip.toString = function (buff, offset, length) { offset = ~~offset; length = length || (buff.length - offset); - var result = []; - var i; + let result = []; if (length === 4) { // IPv4 - for (i = 0; i < length; i++) { + for (let i = 0; i < length; i++) { result.push(buff[offset + i]); } result = result.join('.'); } else if (length === 16) { // IPv6 - for (i = 0; i < length; i += 2) { + for (let i = 0; i < length; i += 2) { result.push(buff.readUInt16BE(offset + i).toString(16)); } result = result.join(':'); @@ -83,8 +82,8 @@ ip.toString = function (buff, offset, length) { return result; }; -var ipv4Regex = /^(\d{1,3}\.){3,3}\d{1,3}$/; -var ipv6Regex = /^(::)?(((\d{1,3}\.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/i; +const ipv4Regex = /^(\d{1,3}\.){3,3}\d{1,3}$/; +const ipv6Regex = /^(::)?(((\d{1,3}\.){3}(\d{1,3}){1})?([0-9a-f]){0,4}:{0,2}){1,8}(::)?$/i; ip.isV4Format = function (ip) { return ipv4Regex.test(ip); @@ -111,14 +110,14 @@ ip.fromPrefixLen = function (prefixlen, family) { family = _normalizeFamily(family); } - var len = 4; + let len = 4; if (family === 'ipv6') { len = 16; } - var buff = new Buffer(len); + const buff = Buffer.alloc(len); - for (var i = 0, n = buff.length; i < n; ++i) { - var bits = 8; + for (let i = 0, n = buff.length; i < n; ++i) { + let bits = 8; if (prefixlen < 8) { bits = prefixlen; } @@ -134,10 +133,10 @@ ip.mask = function (addr, mask) { addr = ip.toBuffer(addr); mask = ip.toBuffer(mask); - var result = new Buffer(Math.max(addr.length, mask.length)); + const result = Buffer.alloc(Math.max(addr.length, mask.length)); // Same protocol - do bitwise and - var i; + let i; if (addr.length === mask.length) { for (i = 0; i < addr.length; i++) { result[i] = addr[i] & mask[i]; @@ -170,30 +169,30 @@ ip.mask = function (addr, mask) { }; ip.cidr = function (cidrString) { - var cidrParts = cidrString.split('/'); + const cidrParts = cidrString.split('/'); - var addr = cidrParts[0]; + const addr = cidrParts[0]; if (cidrParts.length !== 2) { throw new Error(`invalid CIDR subnet: ${addr}`); } - var mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); + const mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); return ip.mask(addr, mask); }; ip.subnet = function (addr, mask) { - var networkAddress = ip.toLong(ip.mask(addr, mask)); + const networkAddress = ip.toLong(ip.mask(addr, mask)); // Calculate the mask's length. - var maskBuffer = ip.toBuffer(mask); - var maskLength = 0; + const maskBuffer = ip.toBuffer(mask); + let maskLength = 0; - for (var i = 0; i < maskBuffer.length; i++) { + for (let i = 0; i < maskBuffer.length; i++) { if (maskBuffer[i] === 0xff) { maskLength += 8; } else { - var octet = maskBuffer[i] & 0xff; + let octet = maskBuffer[i] & 0xff; while (octet) { octet = (octet << 1) & 0xff; maskLength++; @@ -201,7 +200,7 @@ ip.subnet = function (addr, mask) { } } - var numberOfAddresses = Math.pow(2, 32 - maskLength); + const numberOfAddresses = 2 ** (32 - maskLength); return { networkAddress: ip.fromLong(networkAddress), @@ -224,50 +223,48 @@ ip.subnet = function (addr, mask) { }; ip.cidrSubnet = function (cidrString) { - var cidrParts = cidrString.split('/'); + const cidrParts = cidrString.split('/'); - var addr = cidrParts[0]; + const addr = cidrParts[0]; if (cidrParts.length !== 2) { throw new Error(`invalid CIDR subnet: ${addr}`); } - var mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); + const mask = ip.fromPrefixLen(parseInt(cidrParts[1], 10)); return ip.subnet(addr, mask); }; ip.not = function (addr) { - var buff = ip.toBuffer(addr); - for (var i = 0; i < buff.length; i++) { + const buff = ip.toBuffer(addr); + for (let i = 0; i < buff.length; i++) { buff[i] = 0xff ^ buff[i]; } return ip.toString(buff); }; ip.or = function (a, b) { - var i; - a = ip.toBuffer(a); b = ip.toBuffer(b); // same protocol if (a.length === b.length) { - for (i = 0; i < a.length; ++i) { + for (let i = 0; i < a.length; ++i) { a[i] |= b[i]; } return ip.toString(a); // mixed protocols } - var buff = a; - var other = b; + let buff = a; + let other = b; if (b.length > a.length) { buff = b; other = a; } - var offset = buff.length - other.length; - for (i = offset; i < buff.length; ++i) { + const offset = buff.length - other.length; + for (let i = offset; i < buff.length; ++i) { buff[i] |= other[i - offset]; } @@ -275,14 +272,12 @@ ip.or = function (a, b) { }; ip.isEqual = function (a, b) { - var i; - a = ip.toBuffer(a); b = ip.toBuffer(b); // Same protocol if (a.length === b.length) { - for (i = 0; i < a.length; i++) { + for (let i = 0; i < a.length; i++) { if (a[i] !== b[i]) return false; } return true; @@ -290,20 +285,20 @@ ip.isEqual = function (a, b) { // Swap if (b.length === 4) { - var t = b; + const t = b; b = a; a = t; } // a - IPv4, b - IPv6 - for (i = 0; i < 10; i++) { + for (let i = 0; i < 10; i++) { if (b[i] !== 0) return false; } - var word = b.readUInt16BE(10); + const word = b.readUInt16BE(10); if (word !== 0 && word !== 0xffff) return false; - for (i = 0; i < 4; i++) { + for (let i = 0; i < 4; i++) { if (a[i] !== b[i + 12]) return false; } @@ -365,7 +360,7 @@ ip.loopback = function (family) { // * undefined: First address with `ipv4` or loopback address `127.0.0.1`. // ip.address = function (name, family) { - var interfaces = os.networkInterfaces(); + const interfaces = os.networkInterfaces(); // // Default to `ipv4` @@ -377,8 +372,8 @@ ip.address = function (name, family) { // return the address. // if (name && name !== 'private' && name !== 'public') { - var res = interfaces[name].filter((details) => { - var itemFamily = _normalizeFamily(details.family); + const res = interfaces[name].filter((details) => { + const itemFamily = _normalizeFamily(details.family); return itemFamily === family; }); if (res.length === 0) { @@ -387,12 +382,12 @@ ip.address = function (name, family) { return res[0].address; } - var all = Object.keys(interfaces).map((nic) => { + const all = Object.keys(interfaces).map((nic) => { // // Note: name will only be `public` or `private` // when this is called. // - var addresses = interfaces[nic].filter((details) => { + const addresses = interfaces[nic].filter((details) => { details.family = _normalizeFamily(details.family); if (details.family !== family || ip.isLoopback(details.address)) { return false; @@ -411,7 +406,7 @@ ip.address = function (name, family) { }; ip.toLong = function (ip) { - var ipl = 0; + let ipl = 0; ip.split('.').forEach((octet) => { ipl <<= 8; ipl += parseInt(octet); diff --git a/deps/npm/node_modules/ip/package.json b/deps/npm/node_modules/ip/package.json index 70e1a4f02aeb7ff..f0d95e9b789a6d8 100644 --- a/deps/npm/node_modules/ip/package.json +++ b/deps/npm/node_modules/ip/package.json @@ -1,6 +1,6 @@ { "name": "ip", - "version": "1.1.8", + "version": "2.0.0", "author": "Fedor Indutny ", "homepage": "https://github.com/indutny/node-ip", "repository": { diff --git a/deps/npm/node_modules/is-core-module/core.json b/deps/npm/node_modules/is-core-module/core.json index 058584b78998a00..b1d7e46606b77e6 100644 --- a/deps/npm/node_modules/is-core-module/core.json +++ b/deps/npm/node_modules/is-core-module/core.json @@ -112,7 +112,7 @@ "node:string_decoder": [">= 14.18 && < 15", ">= 16"], "sys": [">= 0.4 && < 0.7", ">= 0.8"], "node:sys": [">= 14.18 && < 15", ">= 16"], - "node:test": ">= 18", + "node:test": [">= 16.17 && < 17", ">= 18"], "timers": true, "node:timers": [">= 14.18 && < 15", ">= 16"], "timers/promises": ">= 15", diff --git a/deps/npm/node_modules/is-core-module/package.json b/deps/npm/node_modules/is-core-module/package.json index 80ce9f5bb1797c4..c2830d63202a9e8 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.9.0", + "version": "2.10.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 4385b20ea14891f..912808b9d0000f2 100644 --- a/deps/npm/node_modules/is-core-module/test/index.js +++ b/deps/npm/node_modules/is-core-module/test/index.js @@ -44,7 +44,7 @@ test('core modules', function (t) { t.test('core via repl module', { skip: !data.repl }, function (st) { var libs = require('repl')._builtinLibs; // eslint-disable-line no-underscore-dangle if (!libs) { - st.skip('module.builtinModules does not exist'); + st.skip('repl._builtinLibs does not exist'); } else { for (var i = 0; i < libs.length; ++i) { var mod = libs[i]; diff --git a/deps/npm/node_modules/just-diff-apply/package.json b/deps/npm/node_modules/just-diff-apply/package.json index b2f80b73a19c6f2..5317303a8bd1b69 100644 --- a/deps/npm/node_modules/just-diff-apply/package.json +++ b/deps/npm/node_modules/just-diff-apply/package.json @@ -1,14 +1,16 @@ { "name": "just-diff-apply", - "version": "5.3.1", + "version": "5.4.1", "description": "Apply a diff to an object. Optionally supports jsonPatch protocol", "main": "index.js", "module": "index.mjs", "exports": { ".": { "require": "./index.js", + "types": "./index.d.ts", "default": "./index.mjs" - } + }, + "./package.json": "./package.json" }, "types": "index.d.ts", "scripts": { @@ -29,4 +31,4 @@ "bugs": { "url": "https://github.com/angus-c/just/issues" } -} +} \ No newline at end of file diff --git a/deps/npm/node_modules/just-diff/package.json b/deps/npm/node_modules/just-diff/package.json index 9c6a8bbe2f94b3e..035daf034fcc9e2 100644 --- a/deps/npm/node_modules/just-diff/package.json +++ b/deps/npm/node_modules/just-diff/package.json @@ -1,14 +1,16 @@ { "name": "just-diff", - "version": "5.0.3", + "version": "5.1.1", "description": "Return an object representing the diffs between two objects. Supports jsonPatch protocol", "main": "index.js", "module": "index.mjs", "exports": { ".": { "require": "./index.js", + "types": "./index.d.ts", "default": "./index.mjs" - } + }, + "./package.json": "./package.json" }, "types": "index.d.ts", "scripts": { @@ -28,4 +30,4 @@ "bugs": { "url": "https://github.com/angus-c/just/issues" } -} +} \ No newline at end of file diff --git a/deps/npm/node_modules/libnpmaccess/package.json b/deps/npm/node_modules/libnpmaccess/package.json index 55ad695b29d1cc6..94c688e07e58ef0 100644 --- a/deps/npm/node_modules/libnpmaccess/package.json +++ b/deps/npm/node_modules/libnpmaccess/package.json @@ -1,26 +1,23 @@ { "name": "libnpmaccess", - "version": "6.0.3", + "version": "6.0.4", "description": "programmatic library for `npm access` commands", "author": "GitHub Inc.", "license": "ISC", "main": "lib/index.js", "scripts": { - "preversion": "npm test", - "postversion": "npm publish", "postpublish": "git push origin --follow-tags", "lint": "eslint \"**/*.js\"", "test": "tap", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", - "prepublishOnly": "git push origin --follow-tags", "snap": "tap", "posttest": "npm run lint", "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "nock": "^13.2.4", "tap": "^16.0.1" }, @@ -46,6 +43,6 @@ ], "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmdiff/package.json b/deps/npm/node_modules/libnpmdiff/package.json index 814629dd2e2957c..9f61ee8f55cc6c0 100644 --- a/deps/npm/node_modules/libnpmdiff/package.json +++ b/deps/npm/node_modules/libnpmdiff/package.json @@ -1,6 +1,6 @@ { "name": "libnpmdiff", - "version": "4.0.4", + "version": "4.0.5", "description": "The registry diff", "repository": { "type": "git", @@ -38,22 +38,19 @@ "test": "tap", "posttest": "npm run lint", "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "postlint": "template-oss-check", "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "tap": "^16.0.1" }, "dependencies": { "@npmcli/disparity-colors": "^2.0.0", "@npmcli/installed-package-contents": "^1.0.7", "binary-extensions": "^2.2.0", - "diff": "^5.0.0", + "diff": "^5.1.0", "minimatch": "^5.0.1", "npm-package-arg": "^9.0.1", "pacote": "^13.6.1", @@ -61,6 +58,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmexec/lib/index.js b/deps/npm/node_modules/libnpmexec/lib/index.js index fcc596d31377842..45c75d471567457 100644 --- a/deps/npm/node_modules/libnpmexec/lib/index.js +++ b/deps/npm/node_modules/libnpmexec/lib/index.js @@ -28,7 +28,7 @@ const binPaths = [] const manifests = new Map() const getManifest = async (spec, flatOptions) => { - if (!manifests.get(spec.raw)) { + if (!manifests.has(spec.raw)) { const manifest = await pacote.manifest(spec, { ...flatOptions, preferOnline: true }) manifests.set(spec.raw, manifest) } @@ -36,6 +36,7 @@ const getManifest = async (spec, flatOptions) => { } // Returns the required manifest if the spec is missing from the tree +// Returns the found node if it is in the tree const missingFromTree = async ({ spec, tree, flatOptions }) => { if (spec.registry && (spec.rawSpec === '' || spec.type !== 'tag')) { // registry spec that is not a specific tag. @@ -43,32 +44,36 @@ const missingFromTree = async ({ spec, tree, flatOptions }) => { for (const node of nodesBySpec) { if (spec.type === 'tag') { // package requested by name only - return + return { node } } else if (spec.type === 'version') { // package requested by specific version if (node.pkgid === spec.raw) { - return + return { node } } } else { // package requested by version range, only remaining registry type if (semver.satisfies(node.package.version, spec.rawSpec)) { - return + return { node } } } } - return await getManifest(spec, flatOptions) + const manifest = await getManifest(spec, flatOptions) + return { manifest } } else { // non-registry spec, or a specific tag. Look up manifest and check // resolved to see if it's in the tree. const manifest = await getManifest(spec, flatOptions) + if (spec.type === 'directory') { + return { manifest } + } const nodesByManifest = tree.inventory.query('packageName', manifest.name) for (const node of nodesByManifest) { if (node.package.resolved === manifest._resolved) { // we have a package by the same name and the same resolved destination, nothing to add. - return + return { node } } } - return manifest + return { manifest } } } @@ -80,17 +85,17 @@ const exec = async (opts) => { localBin = resolve('./node_modules/.bin'), locationMsg = undefined, globalBin = '', - globalPath = '', + globalPath, output, // dereference values because we manipulate it later packages: [...packages] = [], path = '.', runPath = '.', scriptShell = isWindows ? process.env.ComSpec || 'cmd' : 'sh', - yes = undefined, ...flatOptions } = opts + let yes = opts.yes const run = () => runScript({ args, call, @@ -118,7 +123,7 @@ const exec = async (opts) => { if (localBinPath) { binPaths.push(localBinPath) return await run() - } else if (await fileExists(`${globalBin}/${args[0]}`)) { + } else if (globalPath && await fileExists(`${globalBin}/${args[0]}`)) { binPaths.push(globalBin) return await run() } @@ -127,40 +132,56 @@ const exec = async (opts) => { packages.push(args[0]) } + // Resolve any directory specs so that the npx directory is unique to the + // resolved directory, not the potentially relative one (i.e. "npx .") + for (const i in packages) { + const pkg = packages[i] + const spec = npa(pkg) + if (spec.type === 'directory') { + packages[i] = spec.fetchSpec + } + } + const localArb = new Arborist({ ...flatOptions, path }) const localTree = await localArb.loadActual() // Find anything that isn't installed locally const needInstall = [] - await Promise.all(packages.map(async pkg => { + let commandManifest + await Promise.all(packages.map(async (pkg, i) => { const spec = npa(pkg, path) - const manifest = await missingFromTree({ spec, tree: localTree, flatOptions }) + const { manifest, node } = await missingFromTree({ spec, tree: localTree, flatOptions }) if (manifest) { // Package does not exist in the local tree needInstall.push({ spec, manifest }) + if (i === 0) { + commandManifest = manifest + } + } else if (i === 0) { + // The node.package has enough to look up the bin + commandManifest = node.package } })) if (needPackageCommandSwap) { - // Either we have a scoped package or the bin of our package we inferred - // from arg[0] might not be identical to the package name const spec = npa(args[0]) - let commandManifest - if (needInstall.length === 0) { - commandManifest = await getManifest(spec, flatOptions) - } else { - commandManifest = needInstall[0].manifest + + if (spec.type === 'directory') { + yes = true } args[0] = getBinFromManifest(commandManifest) - // See if the package is installed globally, and run the translated bin - const globalArb = new Arborist({ ...flatOptions, path: globalPath, global: true }) - const globalTree = await globalArb.loadActual() - const globalManifest = await missingFromTree({ spec, tree: globalTree, flatOptions }) - if (!globalManifest) { - binPaths.push(globalBin) - return await run() + if (needInstall.length > 0 && globalPath) { + // See if the package is installed globally, and run the translated bin + const globalArb = new Arborist({ ...flatOptions, path: globalPath, global: true }) + const globalTree = await globalArb.loadActual() + const { manifest: globalManifest } = + await missingFromTree({ spec, tree: globalTree, flatOptions }) + if (!globalManifest && await fileExists(`${globalBin}/${args[0]}`)) { + binPaths.push(globalBin) + return await run() + } } } @@ -172,7 +193,15 @@ const exec = async (opts) => { throw new Error('Must provide a valid npxCache path') } const hash = crypto.createHash('sha512') - .update(packages.sort((a, b) => a.localeCompare(b, 'en')).join('\n')) + .update(packages.map(p => { + // Keeps the npx directory unique to the resolved directory, not the + // potentially relative one (i.e. "npx .") + const spec = npa(p) + if (spec.type === 'directory') { + return spec.fetchSpec + } + return p + }).sort((a, b) => a.localeCompare(b, 'en')).join('\n')) .digest('hex') .slice(0, 16) const installDir = resolve(npxCache, hash) @@ -183,7 +212,7 @@ const exec = async (opts) => { }) const npxTree = await npxArb.loadActual() await Promise.all(needInstall.map(async ({ spec }) => { - const manifest = await missingFromTree({ spec, tree: npxTree, flatOptions }) + const { manifest } = await missingFromTree({ spec, tree: npxTree, flatOptions }) if (manifest) { // Manifest is not in npxCache, we need to install it there if (!spec.registry) { diff --git a/deps/npm/node_modules/libnpmexec/lib/run-script.js b/deps/npm/node_modules/libnpmexec/lib/run-script.js index 18dcf7d8356c599..cee8ba45ae8e93f 100644 --- a/deps/npm/node_modules/libnpmexec/lib/run-script.js +++ b/deps/npm/node_modules/libnpmexec/lib/run-script.js @@ -73,6 +73,7 @@ const run = async ({ event: 'npx', args, stdio: 'inherit', + scriptShell, }) } finally { npmlog.enableProgress() diff --git a/deps/npm/node_modules/libnpmexec/package.json b/deps/npm/node_modules/libnpmexec/package.json index 9fcb0b201678474..7f7b8eac456b996 100644 --- a/deps/npm/node_modules/libnpmexec/package.json +++ b/deps/npm/node_modules/libnpmexec/package.json @@ -1,6 +1,6 @@ { "name": "libnpmexec", - "version": "4.0.9", + "version": "4.0.12", "files": [ "bin/", "lib/" @@ -37,9 +37,6 @@ "posttest": "npm run lint", "test": "tap", "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", "template-oss-apply": "template-oss-apply --force" @@ -49,13 +46,15 @@ "files": "test/*.js" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", - "bin-links": "^3.0.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", + "bin-links": "^3.0.3", + "minify-registry-metadata": "^2.2.0", + "mkdirp": "^1.0.4", "tap": "^16.0.1" }, "dependencies": { - "@npmcli/arborist": "^5.0.0", + "@npmcli/arborist": "^5.6.1", "@npmcli/ci-detect": "^2.0.0", "@npmcli/fs": "^2.1.1", "@npmcli/run-script": "^4.2.0", @@ -72,6 +71,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmfund/package.json b/deps/npm/node_modules/libnpmfund/package.json index 7dd3e1b64847400..68db1d647326a28 100644 --- a/deps/npm/node_modules/libnpmfund/package.json +++ b/deps/npm/node_modules/libnpmfund/package.json @@ -1,6 +1,6 @@ { "name": "libnpmfund", - "version": "3.0.2", + "version": "3.0.3", "main": "lib/index.js", "files": [ "bin/", @@ -37,25 +37,22 @@ "posttest": "npm run lint", "test": "tap", "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "postlint": "template-oss-check", "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "tap": "^16.0.1" }, "dependencies": { - "@npmcli/arborist": "^5.0.0" + "@npmcli/arborist": "^5.6.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmhook/package.json b/deps/npm/node_modules/libnpmhook/package.json index 2f76b52f8e1be7e..446170777ff2605 100644 --- a/deps/npm/node_modules/libnpmhook/package.json +++ b/deps/npm/node_modules/libnpmhook/package.json @@ -1,6 +1,6 @@ { "name": "libnpmhook", - "version": "8.0.3", + "version": "8.0.4", "description": "programmatic API for managing npm registry hooks", "main": "lib/index.js", "files": [ @@ -14,9 +14,6 @@ "lint": "eslint \"**/*.js\"", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "snap": "tap", "posttest": "npm run lint", "template-oss-apply": "template-oss-apply --force" @@ -39,8 +36,8 @@ "npm-registry-fetch": "^13.0.0" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "nock": "^13.2.4", "tap": "^16.0.1" }, @@ -49,6 +46,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmorg/package.json b/deps/npm/node_modules/libnpmorg/package.json index 280fa5339ca53ee..b5ecf40cbf37880 100644 --- a/deps/npm/node_modules/libnpmorg/package.json +++ b/deps/npm/node_modules/libnpmorg/package.json @@ -1,6 +1,6 @@ { "name": "libnpmorg", - "version": "4.0.3", + "version": "4.0.4", "description": "Programmatic api for `npm org` commands", "author": "GitHub Inc.", "main": "lib/index.js", @@ -14,9 +14,6 @@ ], "license": "ISC", "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "lint": "eslint \"**/*.js\"", "test": "tap", "posttest": "npm run lint", @@ -30,8 +27,8 @@ "lib/" ], "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "minipass": "^3.1.1", "nock": "^13.2.4", "tap": "^16.0.1" @@ -52,6 +49,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmpack/package.json b/deps/npm/node_modules/libnpmpack/package.json index 86bec9ff1d618d9..e808c7b8e3b6bb4 100644 --- a/deps/npm/node_modules/libnpmpack/package.json +++ b/deps/npm/node_modules/libnpmpack/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpack", - "version": "4.1.2", + "version": "4.1.3", "description": "Programmatic API for the bits behind npm pack", "author": "GitHub Inc.", "main": "lib/index.js", @@ -13,9 +13,6 @@ ], "license": "ISC", "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "lint": "eslint \"**/*.js\"", "test": "tap", "posttest": "npm run lint", @@ -25,8 +22,8 @@ "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "nock": "^13.0.7", "tap": "^16.0.1" }, @@ -47,6 +44,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmpublish/package.json b/deps/npm/node_modules/libnpmpublish/package.json index 9d1f9de5c5e208a..dd88dd5460dbe5c 100644 --- a/deps/npm/node_modules/libnpmpublish/package.json +++ b/deps/npm/node_modules/libnpmpublish/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpublish", - "version": "6.0.4", + "version": "6.0.5", "description": "Programmatic API for the bits behind npm publish and unpublish", "author": "GitHub Inc.", "main": "lib/index.js", @@ -17,9 +17,6 @@ "eslint": "eslint", "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", "postlint": "template-oss-check", @@ -27,9 +24,9 @@ "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", - "libnpmpack": "^4.0.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", + "libnpmpack": "^4.1.3", "lodash.clonedeep": "^4.5.0", "nock": "^13.2.4", "tap": "^16.0.1" @@ -53,6 +50,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmsearch/package.json b/deps/npm/node_modules/libnpmsearch/package.json index dc28a374b21ecd9..f9b8cdded0c104c 100644 --- a/deps/npm/node_modules/libnpmsearch/package.json +++ b/deps/npm/node_modules/libnpmsearch/package.json @@ -1,6 +1,6 @@ { "name": "libnpmsearch", - "version": "5.0.3", + "version": "5.0.4", "description": "Programmatic API for searching in npm and compatible registries.", "author": "GitHub Inc.", "main": "lib/index.js", @@ -16,9 +16,6 @@ ], "license": "ISC", "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "posttest": "npm run lint", "test": "tap", "lint": "eslint \"**/*.js\"", @@ -28,8 +25,8 @@ "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "nock": "^13.2.4", "tap": "^16.0.1" }, @@ -48,6 +45,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmteam/package.json b/deps/npm/node_modules/libnpmteam/package.json index 569678b5d864a68..2d5a91b5e57c7e5 100644 --- a/deps/npm/node_modules/libnpmteam/package.json +++ b/deps/npm/node_modules/libnpmteam/package.json @@ -1,14 +1,11 @@ { "name": "libnpmteam", "description": "npm Team management APIs", - "version": "4.0.3", + "version": "4.0.4", "author": "GitHub Inc.", "license": "ISC", "main": "lib/index.js", "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "lint": "eslint \"**/*.js\"", "test": "tap", "posttest": "npm run lint", @@ -18,8 +15,8 @@ "template-oss-apply": "template-oss-apply --force" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "nock": "^13.2.4", "tap": "^16.0.1" }, @@ -42,6 +39,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/libnpmversion/lib/version.js b/deps/npm/node_modules/libnpmversion/lib/version.js index 12be89b040df749..f14b95e3233f064 100644 --- a/deps/npm/node_modules/libnpmversion/lib/version.js +++ b/deps/npm/node_modules/libnpmversion/lib/version.js @@ -90,7 +90,9 @@ module.exports = async (newversion, opts) => { } await writeJson(lock, sw) haveLocks.push(lock) - } catch (er) {} + } catch { + // ignore errors + } } if (!ignoreScripts) { diff --git a/deps/npm/node_modules/libnpmversion/package.json b/deps/npm/node_modules/libnpmversion/package.json index c5c1a0398bb169e..ff6415afc862bcf 100644 --- a/deps/npm/node_modules/libnpmversion/package.json +++ b/deps/npm/node_modules/libnpmversion/package.json @@ -1,6 +1,6 @@ { "name": "libnpmversion", - "version": "3.0.6", + "version": "3.0.7", "main": "lib/index.js", "files": [ "bin/", @@ -19,9 +19,6 @@ "test": "tap", "posttest": "npm run lint", "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags", "postlint": "template-oss-check", "lintfix": "npm run lint -- --fix", "template-oss-apply": "template-oss-apply --force" @@ -30,8 +27,8 @@ "coverage-map": "map.js" }, "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.8.1", "require-inject": "^1.4.4", "tap": "^16.0.1" }, @@ -47,6 +44,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.8.1" } } diff --git a/deps/npm/node_modules/lru-cache/index.d.ts b/deps/npm/node_modules/lru-cache/index.d.ts index b9375a8b96a7166..e5481b3f9263760 100644 --- a/deps/npm/node_modules/lru-cache/index.d.ts +++ b/deps/npm/node_modules/lru-cache/index.d.ts @@ -1,4 +1,3 @@ -// Type definitions for lru-cache 7.10.0 // Project: https://github.com/isaacs/node-lru-cache // Based initially on @types/lru-cache // https://github.com/DefinitelyTyped/DefinitelyTyped @@ -32,7 +31,6 @@ // Changes by Isaac Z. Schlueter released under the terms found in the // LICENSE file within this project. -/// //tslint:disable:member-access declare class LRUCache implements Iterable<[K, V]> { constructor(options: LRUCache.Options) @@ -569,10 +567,11 @@ declare namespace LRUCache { /** * options which override the options set in the LRUCache constructor * when making `cache.fetch()` calls. - * This is the union of GetOptions and SetOptions, plus the - * `noDeleteOnFetchRejection` and `fetchContext` fields. + * This is the union of GetOptions and SetOptions, plus + * `noDeleteOnFetchRejection`, `forceRefresh`, and `fetchContext` */ interface FetchOptions extends FetcherFetchOptions { + forceRefresh?: boolean fetchContext?: any } diff --git a/deps/npm/node_modules/lru-cache/index.js b/deps/npm/node_modules/lru-cache/index.js index 479ffc8656b7033..0a551c9d1d6f2cb 100644 --- a/deps/npm/node_modules/lru-cache/index.js +++ b/deps/npm/node_modules/lru-cache/index.js @@ -364,8 +364,10 @@ class LRUCache { initializeSizeTracking() { this.calculatedSize = 0 this.sizes = new ZeroArray(this.max) - this.removeItemSize = index => - (this.calculatedSize -= this.sizes[index]) + this.removeItemSize = index => { + this.calculatedSize -= this.sizes[index] + this.sizes[index] = 0 + } this.requireSize = (k, v, size, sizeCalculation) => { if (!isPosInt(size)) { if (sizeCalculation) { @@ -386,7 +388,7 @@ class LRUCache { } return size } - this.addItemSize = (index, v, k, size) => { + this.addItemSize = (index, size) => { this.sizes[index] = size const maxSize = this.maxSize - this.sizes[index] while (this.calculatedSize > maxSize) { @@ -396,7 +398,7 @@ class LRUCache { } } removeItemSize(index) {} - addItemSize(index, v, k, size) {} + addItemSize(index, size) {} requireSize(k, v, size, sizeCalculation) { if (size || sizeCalculation) { throw new TypeError( @@ -523,7 +525,9 @@ class LRUCache { for (const i of this.indexes({ allowStale: true })) { const key = this.keyList[i] const v = this.valList[i] - const value = this.isBackgroundFetch(v) ? v.__staleWhileFetching : v + const value = this.isBackgroundFetch(v) + ? v.__staleWhileFetching + : v const entry = { value } if (this.ttls) { entry.ttl = this.ttls[i] @@ -569,6 +573,10 @@ class LRUCache { } = {} ) { size = this.requireSize(k, v, size, sizeCalculation) + // if the item doesn't fit, don't do anything + if (this.maxSize && size > this.maxSize) { + return this + } let index = this.size === 0 ? undefined : this.keyMap.get(k) if (index === undefined) { // addition @@ -580,7 +588,7 @@ class LRUCache { this.prev[index] = this.tail this.tail = index this.size++ - this.addItemSize(index, v, k, size) + this.addItemSize(index, size) noUpdateTTL = false } else { // update @@ -598,7 +606,7 @@ class LRUCache { } this.removeItemSize(index) this.valList[index] = v - this.addItemSize(index, v, k, size) + this.addItemSize(index, size) } this.moveToTail(index) } @@ -680,7 +688,9 @@ class LRUCache { peek(k, { allowStale = this.allowStale } = {}) { const index = this.keyMap.get(k) if (index !== undefined && (allowStale || !this.isStale(index))) { - return this.valList[index] + const v = this.valList[index] + // either stale and allowed, or forcing a refresh of non-stale value + return this.isBackgroundFetch(v) ? v.__staleWhileFetching : v } } @@ -763,10 +773,15 @@ class LRUCache { // fetch exclusive options noDeleteOnFetchRejection = this.noDeleteOnFetchRejection, fetchContext = this.fetchContext, + forceRefresh = false, } = {} ) { if (!this.fetchMethod) { - return this.get(k, { allowStale, updateAgeOnGet, noDeleteOnStaleGet }) + return this.get(k, { + allowStale, + updateAgeOnGet, + noDeleteOnStaleGet, + }) } const options = { @@ -794,7 +809,9 @@ class LRUCache { : (v.__returned = v) } - if (!this.isStale(index)) { + // if we force a refresh, that means do NOT serve the cached value, + // unless we are already in the process of refreshing the cache. + if (!forceRefresh && !this.isStale(index)) { this.moveToTail(index) if (updateAgeOnGet) { this.updateItemAge(index) @@ -802,7 +819,7 @@ class LRUCache { return v } - // ok, it is stale, and not already fetching + // ok, it is stale or a forced refresh, and not already fetching. // refresh the cache. const p = this.backgroundFetch(k, index, options, fetchContext) return allowStale && p.__staleWhileFetching !== undefined diff --git a/deps/npm/node_modules/lru-cache/package.json b/deps/npm/node_modules/lru-cache/package.json index c023ce6c49aca20..c3c62e0a3254e00 100644 --- a/deps/npm/node_modules/lru-cache/package.json +++ b/deps/npm/node_modules/lru-cache/package.json @@ -1,13 +1,14 @@ { "name": "lru-cache", "description": "A cache object that deletes the least-recently-used items.", - "version": "7.12.0", + "version": "7.13.2", "author": "Isaac Z. Schlueter ", "keywords": [ "mru", "lru", "cache" ], + "sideEffects": false, "scripts": { "build": "", "size": "size-limit", @@ -26,7 +27,7 @@ "@types/tap": "^15.0.6", "benchmark": "^2.1.4", "c8": "^7.11.2", - "clock-mock": "^1.0.4", + "clock-mock": "^1.0.6", "eslint-config-prettier": "^8.5.0", "prettier": "^2.6.2", "size-limit": "^7.0.8", diff --git a/deps/npm/node_modules/make-fetch-happen/lib/cache/entry.js b/deps/npm/node_modules/make-fetch-happen/lib/cache/entry.js index 4307962b889d0ec..dba89d715d8a51e 100644 --- a/deps/npm/node_modules/make-fetch-happen/lib/cache/entry.js +++ b/deps/npm/node_modules/make-fetch-happen/lib/cache/entry.js @@ -288,6 +288,7 @@ class CacheEntry { // stick a flag on here so downstream users will know if they can expect integrity events tee.pipe(cacheStream) // TODO if the cache write fails, log a warning but return the response anyway + // eslint-disable-next-line promise/catch-or-return cacheStream.promise().then(cacheWriteResolve, cacheWriteReject) body.unshift(tee) body.unshift(this.response.body) diff --git a/deps/npm/node_modules/make-fetch-happen/package.json b/deps/npm/node_modules/make-fetch-happen/package.json index 8b21901f34fc125..fc491d1152e1535 100644 --- a/deps/npm/node_modules/make-fetch-happen/package.json +++ b/deps/npm/node_modules/make-fetch-happen/package.json @@ -1,6 +1,6 @@ { "name": "make-fetch-happen", - "version": "10.2.0", + "version": "10.2.1", "description": "Opinionated, caching, retrying fetch client", "main": "lib/index.js", "files": [ diff --git a/deps/npm/node_modules/minipass-fetch/lib/body.js b/deps/npm/node_modules/minipass-fetch/lib/body.js index c7ffa5babcbc602..58893309e63f9fe 100644 --- a/deps/npm/node_modules/minipass-fetch/lib/body.js +++ b/deps/npm/node_modules/minipass-fetch/lib/body.js @@ -10,7 +10,9 @@ const FetchError = require('./fetch-error.js') let convert try { convert = require('encoding').convert -} catch (e) {} +} catch (e) { + // defer error until textConverted is called +} const INTERNALS = Symbol('Body internals') const CONSUME_BODY = Symbol('consumeBody') @@ -69,16 +71,16 @@ class Body { )) } - json () { - return this[CONSUME_BODY]().then(buf => { - try { - return JSON.parse(buf.toString()) - } catch (er) { - return Promise.reject(new FetchError( - `invalid json response body at ${ - this.url} reason: ${er.message}`, 'invalid-json')) - } - }) + async json () { + try { + const buf = await this[CONSUME_BODY]() + return JSON.parse(buf.toString()) + } catch (er) { + throw new FetchError( + `invalid json response body at ${this.url} reason: ${er.message}`, + 'invalid-json' + ) + } } text () { diff --git a/deps/npm/node_modules/minipass-fetch/package.json b/deps/npm/node_modules/minipass-fetch/package.json index 1f663b9245dea0e..b47077adc111aad 100644 --- a/deps/npm/node_modules/minipass-fetch/package.json +++ b/deps/npm/node_modules/minipass-fetch/package.json @@ -1,6 +1,6 @@ { "name": "minipass-fetch", - "version": "2.1.0", + "version": "2.1.1", "description": "An implementation of window.fetch in Node.js using Minipass streams", "license": "MIT", "main": "lib/index.js", @@ -23,10 +23,11 @@ }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.1.2", + "@npmcli/template-oss": "3.5.0", "@ungap/url-search-params": "^0.2.2", "abort-controller": "^3.0.0", "abortcontroller-polyfill": "~1.7.3", + "encoding": "^0.1.13", "form-data": "^4.0.0", "nock": "^13.2.4", "parted": "^0.1.1", @@ -61,6 +62,6 @@ "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.1.2" + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/node-gyp/.github/workflows/release-please.yml b/deps/npm/node_modules/node-gyp/.github/workflows/release-please.yml index 7d3cf9dd450b013..c3057c3a3159aee 100644 --- a/deps/npm/node_modules/node-gyp/.github/workflows/release-please.yml +++ b/deps/npm/node_modules/node-gyp/.github/workflows/release-please.yml @@ -3,7 +3,7 @@ name: release-please on: push: branches: - - master + - main jobs: release-please: diff --git a/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml b/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml index f7c9b979e3a8aca..a3b68bdd5d387d6 100644 --- a/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml +++ b/deps/npm/node_modules/node-gyp/.github/workflows/tests.yml @@ -1,45 +1,52 @@ -# TODO: Line 43, enable pytest --doctest-modules +# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources +# TODO: Line 48, enable pytest --doctest-modules name: Tests -on: [push, pull_request] +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] jobs: Tests: strategy: fail-fast: false max-parallel: 15 matrix: - node: [12.x, 14.x, 16.x] + node: [14.x, 16.x, 18.x] python: ["3.6", "3.8", "3.10"] os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} env: - PYTHON_VERSION: ${{ matrix.python }} + PYTHON_VERSION: ${{ matrix.python }} # Why do this? - name: Install Dependencies run: | npm install --no-progress pip install flake8 pytest - name: Set Windows environment - if: matrix.os == 'windows-latest' + if: startsWith(matrix.os, 'windows') run: | echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV - name: Lint Python - if: matrix.os == 'ubuntu-latest' + if: startsWith(matrix.os, 'ubuntu') run: flake8 . --ignore=E203,W503 --max-complexity=101 --max-line-length=88 --show-source --statistics - name: Run Python tests run: python -m pytest # - name: Run doctests with pytest # run: python -m pytest --doctest-modules + - name: Environment Information + run: npx envinfo - name: Run Node tests run: npm test diff --git a/deps/npm/node_modules/node-gyp/.github/workflows/visual-studio.yml b/deps/npm/node_modules/node-gyp/.github/workflows/visual-studio.yml index 6bb4574d63f7d07..12125e54479b87d 100644 --- a/deps/npm/node_modules/node-gyp/.github/workflows/visual-studio.yml +++ b/deps/npm/node_modules/node-gyp/.github/workflows/visual-studio.yml @@ -1,23 +1,31 @@ -name: Tests on Windows -on: [push, pull_request] +# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources + +name: visual-studio +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] jobs: - Tests: + visual-studio: strategy: fail-fast: false - max-parallel: 15 + max-parallel: 8 matrix: - os: [windows-2022] + os: [windows-latest] + msvs-version: [2016, 2019, 2022] # https://github.com/actions/virtual-environments/tree/main/images/win runs-on: ${{ matrix.os }} steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Dependencies run: | npm install --no-progress + # npm audit fix --force - name: Set Windows environment - if: matrix.os == 'windows-latest' + if: startsWith(matrix.os, 'windows') run: | - echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV + echo 'GYP_MSVS_VERSION=${{ matrix.msvs-version }}' >> $Env:GITHUB_ENV echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV - name: Environment Information run: npx envinfo diff --git a/deps/npm/node_modules/node-gyp/CHANGELOG.md b/deps/npm/node_modules/node-gyp/CHANGELOG.md index 7a474ed93f191ad..694823fa32e8f54 100644 --- a/deps/npm/node_modules/node-gyp/CHANGELOG.md +++ b/deps/npm/node_modules/node-gyp/CHANGELOG.md @@ -1,5 +1,37 @@ # Changelog +## [9.1.0](https://www.github.com/nodejs/node-gyp/compare/v9.0.0...v9.1.0) (2022-07-13) + + +### Features + +* Update function getSDK() to support Windows 11 SDK ([#2565](https://www.github.com/nodejs/node-gyp/issues/2565)) ([ea8520e](https://www.github.com/nodejs/node-gyp/commit/ea8520e3855374bd15b6d001fe112d58a8d7d737)) + + +### Bug Fixes + +* extend tap timeout length to allow for slow CI ([6f74c76](https://www.github.com/nodejs/node-gyp/commit/6f74c762fe3c19bdd20245cb5c02e2dfa65d9451)) +* new ca & server certs, bundle in .js file and unpack for testing ([147e3d3](https://www.github.com/nodejs/node-gyp/commit/147e3d34f44a97deb7aa507207680cf0f4e662a2)) +* re-label ([#2689](https://www.github.com/nodejs/node-gyp/issues/2689)) ([f0b7863](https://www.github.com/nodejs/node-gyp/commit/f0b7863dadfa365afc173025ae95351aec79abd9)) +* typo on readme ([bf81cd4](https://www.github.com/nodejs/node-gyp/commit/bf81cd452b931dd4dfa82762c23dd530a075d992)) + + +### Doc + +* update docs/README.md with latest version number ([62d2815](https://www.github.com/nodejs/node-gyp/commit/62d28151bf8266a34e1bcceeb25b4e6e2ae5ca5d)) + + +### Core + +* update due to rename of primary branch ([ca1f068](https://www.github.com/nodejs/node-gyp/commit/ca1f0681a5567ca8cd51acebccd37a633f19bc6a)) + + +### Tests + +* Try msvs-version: [2016, 2019, 2022] ([#2700](https://www.github.com/nodejs/node-gyp/issues/2700)) ([68b5b5b](https://www.github.com/nodejs/node-gyp/commit/68b5b5be9c94ac20c55e88654ff6f55234d7130a)) +* Upgrade GitHub Actions ([#2623](https://www.github.com/nodejs/node-gyp/issues/2623)) ([245cd5b](https://www.github.com/nodejs/node-gyp/commit/245cd5bbe4441d4f05e88f2fa20a86425419b6af)) +* Upgrade GitHub Actions ([#2701](https://www.github.com/nodejs/node-gyp/issues/2701)) ([1c64ca7](https://www.github.com/nodejs/node-gyp/commit/1c64ca7f4702c6eb43ecd16fbd67b5d939041621)) + ## [9.0.0](https://www.github.com/nodejs/node-gyp/compare/v8.4.1...v9.0.0) (2022-02-24) diff --git a/deps/npm/node_modules/node-gyp/README.md b/deps/npm/node_modules/node-gyp/README.md index d28a0cc9ef8df71..7636ad54820593a 100644 --- a/deps/npm/node_modules/node-gyp/README.md +++ b/deps/npm/node_modules/node-gyp/README.md @@ -37,7 +37,7 @@ Depending on your operating system, you will need to install: ### On macOS -**ATTENTION**: If your Mac has been _upgraded_ to macOS Catalina (10.15), please read [macOS_Catalina.md](macOS_Catalina.md). +**ATTENTION**: If your Mac has been _upgraded_ to macOS Catalina (10.15) or higher, please read [macOS_Catalina.md](macOS_Catalina.md). * Python v3.7, v3.8, v3.9, or v3.10 * `XCode Command Line Tools` which will install `clang`, `clang++`, and `make`. @@ -89,7 +89,7 @@ searching will be done. ### Build for Third Party Node.js Runtimes -When building modules for thid party Node.js runtimes like Electron, which have +When building modules for third party Node.js runtimes like Electron, which have different build configurations from the official Node.js distribution, you should use `--dist-url` or `--nodedir` flags to specify the headers of the runtime to build for. diff --git a/deps/npm/node_modules/node-gyp/docs/README.md b/deps/npm/node_modules/node-gyp/docs/README.md index 1bec1f0d5739df1..7027960909352ba 100644 --- a/deps/npm/node_modules/node-gyp/docs/README.md +++ b/deps/npm/node_modules/node-gyp/docs/README.md @@ -1,4 +1,4 @@ -## Versions of `node-gyp` that are earlier than v8.x.x +## Versions of `node-gyp` that are earlier than v9.x.x Please look thru your error log for the string `gyp info using node-gyp@` and if that version number is less than the [current release of node-gyp](https://github.com/nodejs/node-gyp/releases) then __please upgrade__ using [these instructions](https://github.com/nodejs/node-gyp/blob/master/docs/Updating-npm-bundled-node-gyp.md) and then try your command again. diff --git a/deps/npm/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md b/deps/npm/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md index 1d91af6bb26d54d..5759add3fee5728 100644 --- a/deps/npm/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md +++ b/deps/npm/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md @@ -4,7 +4,7 @@ **Note: These instructions will be undone if you reinstall or upgrade npm or node! For a more permanent (and simpler) solution, see [Force-npm-to-use-global-node-gyp.md](Force-npm-to-use-global-node-gyp.md). (npm 6 or older only!)** -[Many issues](https://github.com/nodejs/node-gyp/labels/ERR%21%20node-gyp%20-v%20%3C%3D%20v5.1.0) are opened by users who are +[Many issues](https://github.com/nodejs/node-gyp/issues?q=label%3A"ERR!+node-gyp+-v+<%3D+v9.x.x") are opened by users who are not running a [current version of node-gyp](https://github.com/nodejs/node-gyp/releases). `npm` bundles its own, internal, copy of `node-gyp`. This internal copy is independent of any globally installed copy of node-gyp that diff --git a/deps/npm/node_modules/node-gyp/lib/build.js b/deps/npm/node_modules/node-gyp/lib/build.js index c2388fb348cc551..3baba4140c9cb4c 100644 --- a/deps/npm/node_modules/node-gyp/lib/build.js +++ b/deps/npm/node_modules/node-gyp/lib/build.js @@ -185,6 +185,13 @@ function build (gyp, argv, callback) { } } + if (!win) { + // Add build-time dependency symlinks (such as Python) to PATH + const buildBinsDir = path.resolve('build', 'node_gyp_bins') + process.env.PATH = `${buildBinsDir}:${process.env.PATH}` + log.verbose('bin symlinks', `adding symlinks (such as Python), at "${buildBinsDir}", to PATH`) + } + var proc = gyp.spawn(command, argv) proc.on('exit', onExit) } diff --git a/deps/npm/node_modules/node-gyp/lib/configure.js b/deps/npm/node_modules/node-gyp/lib/configure.js index 17a6487fa9cafb7..c7010385b5e0d28 100644 --- a/deps/npm/node_modules/node-gyp/lib/configure.js +++ b/deps/npm/node_modules/node-gyp/lib/configure.js @@ -17,6 +17,7 @@ if (win) { function configure (gyp, argv, callback) { var python var buildDir = path.resolve('build') + var buildBinsDir = path.join(buildDir, 'node_gyp_bins') var configNames = ['config.gypi', 'common.gypi'] var configs = [] var nodeDir @@ -73,7 +74,9 @@ function configure (gyp, argv, callback) { function createBuildDir () { log.verbose('build dir', 'attempting to create "build" dir: %s', buildDir) - fs.mkdir(buildDir, { recursive: true }, function (err, isNew) { + + const deepestBuildDirSubdirectory = win ? buildDir : buildBinsDir + fs.mkdir(deepestBuildDirSubdirectory, { recursive: true }, function (err, isNew) { if (err) { return callback(err) } @@ -84,11 +87,31 @@ function configure (gyp, argv, callback) { findVisualStudio(release.semver, gyp.opts.msvs_version, createConfigFile) } else { + createPythonSymlink() createConfigFile() } }) } + function createPythonSymlink () { + const symlinkDestination = path.join(buildBinsDir, 'python3') + + log.verbose('python symlink', `creating symlink to "${python}" at "${symlinkDestination}"`) + + fs.unlink(symlinkDestination, function (err) { + if (err && err.code !== 'ENOENT') { + log.verbose('python symlink', 'error when attempting to remove existing symlink') + log.verbose('python symlink', err.stack, 'errno: ' + err.errno) + } + fs.symlink(python, symlinkDestination, function (err) { + if (err) { + log.verbose('python symlink', 'error when attempting to create Python symlink') + log.verbose('python symlink', err.stack, 'errno: ' + err.errno) + } + }) + }) + } + function createConfigFile (err, vsInfo) { if (err) { return callback(err) diff --git a/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js b/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js index 64af7be3460ef73..8a5cfc1ea9b93ba 100644 --- a/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js +++ b/deps/npm/node_modules/node-gyp/lib/find-visualstudio.js @@ -314,29 +314,30 @@ VisualStudioFinder.prototype = { getSDK: function getSDK (info) { const win8SDK = 'Microsoft.VisualStudio.Component.Windows81SDK' const win10SDKPrefix = 'Microsoft.VisualStudio.Component.Windows10SDK.' + const win11SDKPrefix = 'Microsoft.VisualStudio.Component.Windows11SDK.' - var Win10SDKVer = 0 + var Win10or11SDKVer = 0 info.packages.forEach((pkg) => { - if (!pkg.startsWith(win10SDKPrefix)) { + if (!pkg.startsWith(win10SDKPrefix) && !pkg.startsWith(win11SDKPrefix)) { return } const parts = pkg.split('.') if (parts.length > 5 && parts[5] !== 'Desktop') { - this.log.silly('- ignoring non-Desktop Win10SDK:', pkg) + this.log.silly('- ignoring non-Desktop Win10/11SDK:', pkg) return } const foundSdkVer = parseInt(parts[4], 10) if (isNaN(foundSdkVer)) { // Microsoft.VisualStudio.Component.Windows10SDK.IpOverUsb - this.log.silly('- failed to parse Win10SDK number:', pkg) + this.log.silly('- failed to parse Win10/11SDK number:', pkg) return } - this.log.silly('- found Win10SDK:', foundSdkVer) - Win10SDKVer = Math.max(Win10SDKVer, foundSdkVer) + this.log.silly('- found Win10/11SDK:', foundSdkVer) + Win10or11SDKVer = Math.max(Win10or11SDKVer, foundSdkVer) }) - if (Win10SDKVer !== 0) { - return `10.0.${Win10SDKVer}.0` + if (Win10or11SDKVer !== 0) { + return `10.0.${Win10or11SDKVer}.0` } else if (info.packages.indexOf(win8SDK) !== -1) { this.log.silly('- found Win8SDK') return '8.1' diff --git a/deps/npm/node_modules/node-gyp/macOS_Catalina.md b/deps/npm/node_modules/node-gyp/macOS_Catalina.md index 4fe0f29b21eb527..dde5fe3f7d4fbf2 100644 --- a/deps/npm/node_modules/node-gyp/macOS_Catalina.md +++ b/deps/npm/node_modules/node-gyp/macOS_Catalina.md @@ -37,7 +37,7 @@ If `ProductVersion` is less then `10.15` then this document is not for you. Norm ### The acid test To see if `Xcode Command Line Tools` is installed in a way that will work with `node-gyp`, run: ``` -curl -sL https://github.com/nodejs/node-gyp/raw/master/macOS_Catalina_acid_test.sh | bash +curl -sL https://github.com/nodejs/node-gyp/raw/main/macOS_Catalina_acid_test.sh | bash ``` If test succeeded, _you are done_! You should be ready to [install](https://github.com/nodejs/node-gyp#installation) `node-gyp`. diff --git a/deps/npm/node_modules/nopt/CHANGELOG.md b/deps/npm/node_modules/node-gyp/node_modules/nopt/CHANGELOG.md similarity index 100% rename from deps/npm/node_modules/nopt/CHANGELOG.md rename to deps/npm/node_modules/node-gyp/node_modules/nopt/CHANGELOG.md diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE b/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE new file mode 100644 index 000000000000000..19129e315fe5939 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/node_modules/nopt/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) Isaac Z. Schlueter and Contributors + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md b/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md new file mode 100644 index 000000000000000..a99531c04655fe6 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/node_modules/nopt/README.md @@ -0,0 +1,213 @@ +If you want to write an option parser, and have it be good, there are +two ways to do it. The Right Way, and the Wrong Way. + +The Wrong Way is to sit down and write an option parser. We've all done +that. + +The Right Way is to write some complex configurable program with so many +options that you hit the limit of your frustration just trying to +manage them all, and defer it with duct-tape solutions until you see +exactly to the core of the problem, and finally snap and write an +awesome option parser. + +If you want to write an option parser, don't write an option parser. +Write a package manager, or a source control system, or a service +restarter, or an operating system. You probably won't end up with a +good one of those, but if you don't give up, and you are relentless and +diligent enough in your procrastination, you may just end up with a very +nice option parser. + +## USAGE + +```javascript +// my-program.js +var nopt = require("nopt") + , Stream = require("stream").Stream + , path = require("path") + , knownOpts = { "foo" : [String, null] + , "bar" : [Stream, Number] + , "baz" : path + , "bloo" : [ "big", "medium", "small" ] + , "flag" : Boolean + , "pick" : Boolean + , "many1" : [String, Array] + , "many2" : [path, Array] + } + , shortHands = { "foofoo" : ["--foo", "Mr. Foo"] + , "b7" : ["--bar", "7"] + , "m" : ["--bloo", "medium"] + , "p" : ["--pick"] + , "f" : ["--flag"] + } + // everything is optional. + // knownOpts and shorthands default to {} + // arg list defaults to process.argv + // slice defaults to 2 + , parsed = nopt(knownOpts, shortHands, process.argv, 2) +console.log(parsed) +``` + +This would give you support for any of the following: + +```console +$ node my-program.js --foo "blerp" --no-flag +{ "foo" : "blerp", "flag" : false } + +$ node my-program.js ---bar 7 --foo "Mr. Hand" --flag +{ bar: 7, foo: "Mr. Hand", flag: true } + +$ node my-program.js --foo "blerp" -f -----p +{ foo: "blerp", flag: true, pick: true } + +$ node my-program.js -fp --foofoo +{ foo: "Mr. Foo", flag: true, pick: true } + +$ node my-program.js --foofoo -- -fp # -- stops the flag parsing. +{ foo: "Mr. Foo", argv: { remain: ["-fp"] } } + +$ node my-program.js --blatzk -fp # unknown opts are ok. +{ blatzk: true, flag: true, pick: true } + +$ node my-program.js --blatzk=1000 -fp # but you need to use = if they have a value +{ blatzk: 1000, flag: true, pick: true } + +$ node my-program.js --no-blatzk -fp # unless they start with "no-" +{ blatzk: false, flag: true, pick: true } + +$ node my-program.js --baz b/a/z # known paths are resolved. +{ baz: "/Users/isaacs/b/a/z" } + +# if Array is one of the types, then it can take many +# values, and will always be an array. The other types provided +# specify what types are allowed in the list. + +$ node my-program.js --many1 5 --many1 null --many1 foo +{ many1: ["5", "null", "foo"] } + +$ node my-program.js --many2 foo --many2 bar +{ many2: ["/path/to/foo", "path/to/bar"] } +``` + +Read the tests at the bottom of `lib/nopt.js` for more examples of +what this puppy can do. + +## Types + +The following types are supported, and defined on `nopt.typeDefs` + +* String: A normal string. No parsing is done. +* path: A file system path. Gets resolved against cwd if not absolute. +* url: A url. If it doesn't parse, it isn't accepted. +* Number: Must be numeric. +* Date: Must parse as a date. If it does, and `Date` is one of the options, + then it will return a Date object, not a string. +* Boolean: Must be either `true` or `false`. If an option is a boolean, + then it does not need a value, and its presence will imply `true` as + the value. To negate boolean flags, do `--no-whatever` or `--whatever + false` +* NaN: Means that the option is strictly not allowed. Any value will + fail. +* Stream: An object matching the "Stream" class in node. Valuable + for use when validating programmatically. (npm uses this to let you + supply any WriteStream on the `outfd` and `logfd` config options.) +* Array: If `Array` is specified as one of the types, then the value + will be parsed as a list of options. This means that multiple values + can be specified, and that the value will always be an array. + +If a type is an array of values not on this list, then those are +considered valid values. For instance, in the example above, the +`--bloo` option can only be one of `"big"`, `"medium"`, or `"small"`, +and any other value will be rejected. + +When parsing unknown fields, `"true"`, `"false"`, and `"null"` will be +interpreted as their JavaScript equivalents. + +You can also mix types and values, or multiple types, in a list. For +instance `{ blah: [Number, null] }` would allow a value to be set to +either a Number or null. When types are ordered, this implies a +preference, and the first type that can be used to properly interpret +the value will be used. + +To define a new type, add it to `nopt.typeDefs`. Each item in that +hash is an object with a `type` member and a `validate` method. The +`type` member is an object that matches what goes in the type list. The +`validate` method is a function that gets called with `validate(data, +key, val)`. Validate methods should assign `data[key]` to the valid +value of `val` if it can be handled properly, or return boolean +`false` if it cannot. + +You can also call `nopt.clean(data, types, typeDefs)` to clean up a +config object and remove its invalid properties. + +## Error Handling + +By default, nopt outputs a warning to standard error when invalid values for +known options are found. You can change this behavior by assigning a method +to `nopt.invalidHandler`. This method will be called with +the offending `nopt.invalidHandler(key, val, types)`. + +If no `nopt.invalidHandler` is assigned, then it will console.error +its whining. If it is assigned to boolean `false` then the warning is +suppressed. + +## Abbreviations + +Yes, they are supported. If you define options like this: + +```javascript +{ "foolhardyelephants" : Boolean +, "pileofmonkeys" : Boolean } +``` + +Then this will work: + +```bash +node program.js --foolhar --pil +node program.js --no-f --pileofmon +# etc. +``` + +## Shorthands + +Shorthands are a hash of shorter option names to a snippet of args that +they expand to. + +If multiple one-character shorthands are all combined, and the +combination does not unambiguously match any other option or shorthand, +then they will be broken up into their constituent parts. For example: + +```json +{ "s" : ["--loglevel", "silent"] +, "g" : "--global" +, "f" : "--force" +, "p" : "--parseable" +, "l" : "--long" +} +``` + +```bash +npm ls -sgflp +# just like doing this: +npm ls --loglevel silent --global --force --long --parseable +``` + +## The Rest of the args + +The config object returned by nopt is given a special member called +`argv`, which is an object with the following fields: + +* `remain`: The remaining args after all the parsing has occurred. +* `original`: The args as they originally appeared. +* `cooked`: The args after flags and shorthands are expanded. + +## Slicing + +Node programs are called with more or less the exact argv as it appears +in C land, after the v8 and node-specific options have been plucked off. +As such, `argv[0]` is always `node` and `argv[1]` is always the +JavaScript program being run. + +That's usually not very useful to you. So they're sliced off by +default. If you want them, then you can pass in `0` as the last +argument, or any other number that you'd like to slice off the start of +the list. diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/bin/nopt.js b/deps/npm/node_modules/node-gyp/node_modules/nopt/bin/nopt.js new file mode 100755 index 000000000000000..3232d4c570fdcbc --- /dev/null +++ b/deps/npm/node_modules/node-gyp/node_modules/nopt/bin/nopt.js @@ -0,0 +1,54 @@ +#!/usr/bin/env node +var nopt = require("../lib/nopt") + , path = require("path") + , types = { num: Number + , bool: Boolean + , help: Boolean + , list: Array + , "num-list": [Number, Array] + , "str-list": [String, Array] + , "bool-list": [Boolean, Array] + , str: String + , clear: Boolean + , config: Boolean + , length: Number + , file: path + } + , shorthands = { s: [ "--str", "astring" ] + , b: [ "--bool" ] + , nb: [ "--no-bool" ] + , tft: [ "--bool-list", "--no-bool-list", "--bool-list", "true" ] + , "?": ["--help"] + , h: ["--help"] + , H: ["--help"] + , n: [ "--num", "125" ] + , c: ["--config"] + , l: ["--length"] + , f: ["--file"] + } + , parsed = nopt( types + , shorthands + , process.argv + , 2 ) + +console.log("parsed", parsed) + +if (parsed.help) { + console.log("") + console.log("nopt cli tester") + console.log("") + console.log("types") + console.log(Object.keys(types).map(function M (t) { + var type = types[t] + if (Array.isArray(type)) { + return [t, type.map(function (type) { return type.name })] + } + return [t, type && type.name] + }).reduce(function (s, i) { + s[i[0]] = i[1] + return s + }, {})) + console.log("") + console.log("shorthands") + console.log(shorthands) +} diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/lib/nopt.js b/deps/npm/node_modules/node-gyp/node_modules/nopt/lib/nopt.js new file mode 100644 index 000000000000000..ecfa5da93368331 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/node_modules/nopt/lib/nopt.js @@ -0,0 +1,441 @@ +// info about each config option. + +var debug = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG + ? function () { console.error.apply(console, arguments) } + : function () {} + +var url = require("url") + , path = require("path") + , Stream = require("stream").Stream + , abbrev = require("abbrev") + , os = require("os") + +module.exports = exports = nopt +exports.clean = clean + +exports.typeDefs = + { String : { type: String, validate: validateString } + , Boolean : { type: Boolean, validate: validateBoolean } + , url : { type: url, validate: validateUrl } + , Number : { type: Number, validate: validateNumber } + , path : { type: path, validate: validatePath } + , Stream : { type: Stream, validate: validateStream } + , Date : { type: Date, validate: validateDate } + } + +function nopt (types, shorthands, args, slice) { + args = args || process.argv + types = types || {} + shorthands = shorthands || {} + if (typeof slice !== "number") slice = 2 + + debug(types, shorthands, args, slice) + + args = args.slice(slice) + var data = {} + , key + , argv = { + remain: [], + cooked: args, + original: args.slice(0) + } + + parse(args, data, argv.remain, types, shorthands) + // now data is full + clean(data, types, exports.typeDefs) + data.argv = argv + Object.defineProperty(data.argv, 'toString', { value: function () { + return this.original.map(JSON.stringify).join(" ") + }, enumerable: false }) + return data +} + +function clean (data, types, typeDefs) { + typeDefs = typeDefs || exports.typeDefs + var remove = {} + , typeDefault = [false, true, null, String, Array] + + Object.keys(data).forEach(function (k) { + if (k === "argv") return + var val = data[k] + , isArray = Array.isArray(val) + , type = types[k] + if (!isArray) val = [val] + if (!type) type = typeDefault + if (type === Array) type = typeDefault.concat(Array) + if (!Array.isArray(type)) type = [type] + + debug("val=%j", val) + debug("types=", type) + val = val.map(function (val) { + // if it's an unknown value, then parse false/true/null/numbers/dates + if (typeof val === "string") { + debug("string %j", val) + val = val.trim() + if ((val === "null" && ~type.indexOf(null)) + || (val === "true" && + (~type.indexOf(true) || ~type.indexOf(Boolean))) + || (val === "false" && + (~type.indexOf(false) || ~type.indexOf(Boolean)))) { + val = JSON.parse(val) + debug("jsonable %j", val) + } else if (~type.indexOf(Number) && !isNaN(val)) { + debug("convert to number", val) + val = +val + } else if (~type.indexOf(Date) && !isNaN(Date.parse(val))) { + debug("convert to date", val) + val = new Date(val) + } + } + + if (!types.hasOwnProperty(k)) { + return val + } + + // allow `--no-blah` to set 'blah' to null if null is allowed + if (val === false && ~type.indexOf(null) && + !(~type.indexOf(false) || ~type.indexOf(Boolean))) { + val = null + } + + var d = {} + d[k] = val + debug("prevalidated val", d, val, types[k]) + if (!validate(d, k, val, types[k], typeDefs)) { + if (exports.invalidHandler) { + exports.invalidHandler(k, val, types[k], data) + } else if (exports.invalidHandler !== false) { + debug("invalid: "+k+"="+val, types[k]) + } + return remove + } + debug("validated val", d, val, types[k]) + return d[k] + }).filter(function (val) { return val !== remove }) + + // if we allow Array specifically, then an empty array is how we + // express 'no value here', not null. Allow it. + if (!val.length && type.indexOf(Array) === -1) { + debug('VAL HAS NO LENGTH, DELETE IT', val, k, type.indexOf(Array)) + delete data[k] + } + else if (isArray) { + debug(isArray, data[k], val) + data[k] = val + } else data[k] = val[0] + + debug("k=%s val=%j", k, val, data[k]) + }) +} + +function validateString (data, k, val) { + data[k] = String(val) +} + +function validatePath (data, k, val) { + if (val === true) return false + if (val === null) return true + + val = String(val) + + var isWin = process.platform === 'win32' + , homePattern = isWin ? /^~(\/|\\)/ : /^~\// + , home = os.homedir() + + if (home && val.match(homePattern)) { + data[k] = path.resolve(home, val.substr(2)) + } else { + data[k] = path.resolve(val) + } + return true +} + +function validateNumber (data, k, val) { + debug("validate Number %j %j %j", k, val, isNaN(val)) + if (isNaN(val)) return false + data[k] = +val +} + +function validateDate (data, k, val) { + var s = Date.parse(val) + debug("validate Date %j %j %j", k, val, s) + if (isNaN(s)) return false + data[k] = new Date(val) +} + +function validateBoolean (data, k, val) { + if (val instanceof Boolean) val = val.valueOf() + else if (typeof val === "string") { + if (!isNaN(val)) val = !!(+val) + else if (val === "null" || val === "false") val = false + else val = true + } else val = !!val + data[k] = val +} + +function validateUrl (data, k, val) { + val = url.parse(String(val)) + if (!val.host) return false + data[k] = val.href +} + +function validateStream (data, k, val) { + if (!(val instanceof Stream)) return false + data[k] = val +} + +function validate (data, k, val, type, typeDefs) { + // arrays are lists of types. + if (Array.isArray(type)) { + for (var i = 0, l = type.length; i < l; i ++) { + if (type[i] === Array) continue + if (validate(data, k, val, type[i], typeDefs)) return true + } + delete data[k] + return false + } + + // an array of anything? + if (type === Array) return true + + // NaN is poisonous. Means that something is not allowed. + if (type !== type) { + debug("Poison NaN", k, val, type) + delete data[k] + return false + } + + // explicit list of values + if (val === type) { + debug("Explicitly allowed %j", val) + // if (isArray) (data[k] = data[k] || []).push(val) + // else data[k] = val + data[k] = val + return true + } + + // now go through the list of typeDefs, validate against each one. + var ok = false + , types = Object.keys(typeDefs) + for (var i = 0, l = types.length; i < l; i ++) { + debug("test type %j %j %j", k, val, types[i]) + var t = typeDefs[types[i]] + if (t && + ((type && type.name && t.type && t.type.name) ? (type.name === t.type.name) : (type === t.type))) { + var d = {} + ok = false !== t.validate(d, k, val) + val = d[k] + if (ok) { + // if (isArray) (data[k] = data[k] || []).push(val) + // else data[k] = val + data[k] = val + break + } + } + } + debug("OK? %j (%j %j %j)", ok, k, val, types[i]) + + if (!ok) delete data[k] + return ok +} + +function parse (args, data, remain, types, shorthands) { + debug("parse", args, data, remain) + + var key = null + , abbrevs = abbrev(Object.keys(types)) + , shortAbbr = abbrev(Object.keys(shorthands)) + + for (var i = 0; i < args.length; i ++) { + var arg = args[i] + debug("arg", arg) + + if (arg.match(/^-{2,}$/)) { + // done with keys. + // the rest are args. + remain.push.apply(remain, args.slice(i + 1)) + args[i] = "--" + break + } + var hadEq = false + if (arg.charAt(0) === "-" && arg.length > 1) { + var at = arg.indexOf('=') + if (at > -1) { + hadEq = true + var v = arg.substr(at + 1) + arg = arg.substr(0, at) + args.splice(i, 1, arg, v) + } + + // see if it's a shorthand + // if so, splice and back up to re-parse it. + var shRes = resolveShort(arg, shorthands, shortAbbr, abbrevs) + debug("arg=%j shRes=%j", arg, shRes) + if (shRes) { + debug(arg, shRes) + args.splice.apply(args, [i, 1].concat(shRes)) + if (arg !== shRes[0]) { + i -- + continue + } + } + arg = arg.replace(/^-+/, "") + var no = null + while (arg.toLowerCase().indexOf("no-") === 0) { + no = !no + arg = arg.substr(3) + } + + if (abbrevs[arg]) arg = abbrevs[arg] + + var argType = types[arg] + var isTypeArray = Array.isArray(argType) + if (isTypeArray && argType.length === 1) { + isTypeArray = false + argType = argType[0] + } + + var isArray = argType === Array || + isTypeArray && argType.indexOf(Array) !== -1 + + // allow unknown things to be arrays if specified multiple times. + if (!types.hasOwnProperty(arg) && data.hasOwnProperty(arg)) { + if (!Array.isArray(data[arg])) + data[arg] = [data[arg]] + isArray = true + } + + var val + , la = args[i + 1] + + var isBool = typeof no === 'boolean' || + argType === Boolean || + isTypeArray && argType.indexOf(Boolean) !== -1 || + (typeof argType === 'undefined' && !hadEq) || + (la === "false" && + (argType === null || + isTypeArray && ~argType.indexOf(null))) + + if (isBool) { + // just set and move along + val = !no + // however, also support --bool true or --bool false + if (la === "true" || la === "false") { + val = JSON.parse(la) + la = null + if (no) val = !val + i ++ + } + + // also support "foo":[Boolean, "bar"] and "--foo bar" + if (isTypeArray && la) { + if (~argType.indexOf(la)) { + // an explicit type + val = la + i ++ + } else if ( la === "null" && ~argType.indexOf(null) ) { + // null allowed + val = null + i ++ + } else if ( !la.match(/^-{2,}[^-]/) && + !isNaN(la) && + ~argType.indexOf(Number) ) { + // number + val = +la + i ++ + } else if ( !la.match(/^-[^-]/) && ~argType.indexOf(String) ) { + // string + val = la + i ++ + } + } + + if (isArray) (data[arg] = data[arg] || []).push(val) + else data[arg] = val + + continue + } + + if (argType === String) { + if (la === undefined) { + la = "" + } else if (la.match(/^-{1,2}[^-]+/)) { + la = "" + i -- + } + } + + if (la && la.match(/^-{2,}$/)) { + la = undefined + i -- + } + + val = la === undefined ? true : la + if (isArray) (data[arg] = data[arg] || []).push(val) + else data[arg] = val + + i ++ + continue + } + remain.push(arg) + } +} + +function resolveShort (arg, shorthands, shortAbbr, abbrevs) { + // handle single-char shorthands glommed together, like + // npm ls -glp, but only if there is one dash, and only if + // all of the chars are single-char shorthands, and it's + // not a match to some other abbrev. + arg = arg.replace(/^-+/, '') + + // if it's an exact known option, then don't go any further + if (abbrevs[arg] === arg) + return null + + // if it's an exact known shortopt, same deal + if (shorthands[arg]) { + // make it an array, if it's a list of words + if (shorthands[arg] && !Array.isArray(shorthands[arg])) + shorthands[arg] = shorthands[arg].split(/\s+/) + + return shorthands[arg] + } + + // first check to see if this arg is a set of single-char shorthands + var singles = shorthands.___singles + if (!singles) { + singles = Object.keys(shorthands).filter(function (s) { + return s.length === 1 + }).reduce(function (l,r) { + l[r] = true + return l + }, {}) + shorthands.___singles = singles + debug('shorthand singles', singles) + } + + var chrs = arg.split("").filter(function (c) { + return singles[c] + }) + + if (chrs.join("") === arg) return chrs.map(function (c) { + return shorthands[c] + }).reduce(function (l, r) { + return l.concat(r) + }, []) + + + // if it's an arg abbrev, and not a literal shorthand, then prefer the arg + if (abbrevs[arg] && !shorthands[arg]) + return null + + // if it's an abbr for a shorthand, then use that + if (shortAbbr[arg]) + arg = shortAbbr[arg] + + // make it an array, if it's a list of words + if (shorthands[arg] && !Array.isArray(shorthands[arg])) + shorthands[arg] = shorthands[arg].split(/\s+/) + + return shorthands[arg] +} diff --git a/deps/npm/node_modules/node-gyp/node_modules/nopt/package.json b/deps/npm/node_modules/node-gyp/node_modules/nopt/package.json new file mode 100644 index 000000000000000..12ed02da5a832de --- /dev/null +++ b/deps/npm/node_modules/node-gyp/node_modules/nopt/package.json @@ -0,0 +1,34 @@ +{ + "name": "nopt", + "version": "5.0.0", + "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", + "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "main": "lib/nopt.js", + "scripts": { + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "test": "tap test/*.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/npm/nopt.git" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "devDependencies": { + "tap": "^14.10.6" + }, + "files": [ + "bin", + "lib" + ], + "engines": { + "node": ">=6" + } +} diff --git a/deps/npm/node_modules/node-gyp/package.json b/deps/npm/node_modules/node-gyp/package.json index e795db18345386a..ecf4d8ae893d8e6 100644 --- a/deps/npm/node_modules/node-gyp/package.json +++ b/deps/npm/node_modules/node-gyp/package.json @@ -11,7 +11,7 @@ "bindings", "gyp" ], - "version": "9.0.0", + "version": "9.1.0", "installVersion": 9, "author": "Nathan Rajlich (http://tootallnate.net)", "repository": { @@ -45,6 +45,6 @@ }, "scripts": { "lint": "standard */*.js test/**/*.js", - "test": "npm run lint && tap --timeout=120 test/test-*" + "test": "npm run lint && tap --timeout=600 test/test-*" } } diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/ca-bundle.crt b/deps/npm/node_modules/node-gyp/test/fixtures/ca-bundle.crt deleted file mode 100644 index fb1dea98a78c84b..000000000000000 --- a/deps/npm/node_modules/node-gyp/test/fixtures/ca-bundle.crt +++ /dev/null @@ -1,40 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDJjCCAg4CAhnOMA0GCSqGSIb3DQEBBQUAMH0xCzAJBgNVBAYTAlVTMQswCQYD -VQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZMBcGA1UECgwQU3Ryb25n -TG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRowGAYDVQQDDBFjYS5zdHJv -bmdsb29wLmNvbTAeFw0xNTEyMDgyMzM1MzNaFw00MzA0MjQyMzM1MzNaMBkxFzAV -BgNVBAMMDnN0cm9uZ2xvb3AuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB -CgKCAQEAwOYI7OZ2FX/YjRgLZoDQlbPc5UZXU/j0e1wwiJNPtPEax9Y5Uoza0Pnt -Ikzkc2SfvQ+IJrhXo385tI0W5juuqbHnE7UrjUuPjUX6NHevkxcs/flmjan5wnZM -cPsGhH71WDuUEEflvZihf2Se2x+xgZtMhc5XGmVmRuZFYKvkgUhA2/w8/QrK+jPT -n9QRJxZjWNh2RBdC1B7u4jffSmOSUljYFH1I2eTeY+Rdi6YUIYSU9gEoZxsv3Tia -SomfMF5jt2Mouo6MzA+IhLvvFjcrcph1Qxgi9RkfdCMMd+Ipm9YWELkyG1bDRpQy -0iyHD4gvVsAqz1Y2KdRSdc3Kt+nTqwIDAQABoxkwFzAVBgNVHREEDjAMhwQAAAAA -hwR/AAABMA0GCSqGSIb3DQEBBQUAA4IBAQAhy4J0hML3NgmDRHdL5/iTucBe22Mf -jJjg2aifD1S187dHm+Il4qZNO2plWwAhN0h704f+8wpsaALxUvBIu6nvlvcMP5PH -jGN5JLe2Km3UaPvYOQU2SgacLilu+uBcIo2JSHLV6O7ziqUj5Gior6YxDLCtEZie -Ea8aX5/YjuACtEMJ1JjRqjgkM66XAoUe0E8onOK3FgTIO3tGoTJwRp0zS50pFuP0 -PsZtT04ck6mmXEXXknNoAyBCvPypfms9OHqcUIW9fiQnrGbS/Ri4QSQYj0DtFk/1 -na4fY1gf3zTHxH8259b/TOOaPfTnCEsOQtjUrWNR4xhmVZ+HJy4yytUW ------END CERTIFICATE----- ------BEGIN CERTIFICATE----- -MIIDbzCCAlcCAmm6MA0GCSqGSIb3DQEBCwUAMH0xCzAJBgNVBAYTAlVTMQswCQYD -VQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZMBcGA1UECgwQU3Ryb25n -TG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRowGAYDVQQDDBFjYS5zdHJv -bmdsb29wLmNvbTAeFw0xNTEyMDgyMzM1MzNaFw00MzA0MjQyMzM1MzNaMH0xCzAJ -BgNVBAYTAlVTMQswCQYDVQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZ -MBcGA1UECgwQU3Ryb25nTG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRow -GAYDVQQDDBFjYS5zdHJvbmdsb29wLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBANfj86jkvvYDjHBgiqWhk9Cj+bqiMq3MqnV0CBO4iuK33Fo6XssE -H+yVdXlIBFbFe6t655MdBVOR2Sfj7WqNh96vhu6PyDHiwcQlTaiLU6nhIed1J4Wv -lvnJHFmp8Wbtx5AgLT4UYu03ftvXEl2DLi3vhSL2tRM1ebXHB/KPbRWkb25DPX0P -foOHot3f2dgNe2x6kponf7E/QDmAu3s7Nlkfh+ryDhgGU7wocXEhXbprNqRqOGNo -xbXgUI+/9XDxYT/7Gn5LF/fPjtN+aB0SKMnTsDhprVlZie83mlqJ46fOOrR+vrsQ -mi/1m/TadrARtZoIExC/cQRdVM05EK4tUa8CAwEAATANBgkqhkiG9w0BAQsFAAOC -AQEAQ7k5WhyhDTIGYCNzRnrMHWSzGqa1y4tJMW06wafJNRqTm1cthq1ibc6Hfq5a -K10K0qMcgauRTfQ1MWrVCTW/KnJ1vkhiTOH+RvxapGn84gSaRmV6KZen0+gMsgae -KEGe/3Hn+PmDVV+PTamHgPACfpTww38WHIe/7Ce9gHfG7MZ8cKHNZhDy0IAYPln+ -YRwMLd7JNQffHAbWb2CE1mcea4H/12U8JZW5tHCF6y9V+7IuDzqwIrLKcW3lG17n -VUG6ODF/Ryqn3V5X+TL91YyXi6c34y34IpC7MQDV/67U7+5Bp5CfeDPWW2wVSrW+ -uGZtfEvhbNm6m2i4UNmpCXxUZQ== ------END CERTIFICATE----- diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/ca.crt b/deps/npm/node_modules/node-gyp/test/fixtures/ca.crt deleted file mode 100644 index aaf97575b18b4c8..000000000000000 --- a/deps/npm/node_modules/node-gyp/test/fixtures/ca.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDZDCCAkwCCQCAzfCLqrJvuTANBgkqhkiG9w0BAQsFADB0MQswCQYDVQQGEwJV -UzELMAkGA1UECAwCQ0ExEDAOBgNVBAoMB05vZGUuanMxETAPBgNVBAsMCG5vZGUt -Z3lwMRIwEAYDVQQDDAlsb2NhbGhvc3QxHzAdBgkqhkiG9w0BCQEWEGJ1aWxkQG5v -ZGVqcy5vcmcwHhcNMTkwNjIyMDYyMjMzWhcNMjIwNDExMDYyMjMzWjB0MQswCQYD -VQQGEwJVUzELMAkGA1UECAwCQ0ExEDAOBgNVBAoMB05vZGUuanMxETAPBgNVBAsM -CG5vZGUtZ3lwMRIwEAYDVQQDDAlsb2NhbGhvc3QxHzAdBgkqhkiG9w0BCQEWEGJ1 -aWxkQG5vZGVqcy5vcmcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDS -CHjvtVW4HdbbUwZ/ZV9s6U4x0KSoyNQrsCZjB8kRpFPe50DS5mfmu2SNBGYKRgzk -4QEEwFB9N2o8YTWsCefSRl6ti4ToPZqulU4hhRKYrEGtMJcRzi3IN7s200JaO3UH -01Su8ruO0NESb5zEU1Ykfh8Lub8TGEAINmgI61d/5d5Aq3kDjUHQJt1Ekw03Ylnu -juQyCGZxLxnngu0mIvwzyL/UeeUgsfQLzvppUk6In7tC1zzMjSPWo0c8qu6KvrW4 -bKYnkZkzdQifzbpO5ERMEsh5HWq0uHa6+dgcVHFvlhdqF4Uat87ygNplVf0txsZB -MNVqbz1k6xkZYMnzDoydAgMBAAEwDQYJKoZIhvcNAQELBQADggEBADspZGtKpWxy -J1W3FA1aeQhMvequQTcMRz4avkm4K4HfTdV1iVD4CbvdezBphouBlyLVLDFJP7RZ -m7dBJVgBwnxufoFLne8cR2MGqDRoySbFT1AtDJdxabE6Fg+QGUpgOQfeBJ6ANlSB -+qJ+HG4QA+Ouh5hxz9mgYwkIsMUABHiwENdZ/kT8Edw4xKgd3uH0YP4iiePMD66c -rzW3uXH5J1jnKgBlpxtog4P6dHCcoq+PZJ17W5bdXNyqC1LPzQqniZ2BNcEZ4ix3 -slAZAOWD1zLLGJhBPMV1fa0sHNBWc6oicr3YK/IDb0cp9kiLvnUu1pHy+LWQGqtC -rceJuGsnJEQ= ------END CERTIFICATE----- diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/certs.js b/deps/npm/node_modules/node-gyp/test/fixtures/certs.js new file mode 100644 index 000000000000000..766e54b5ed39001 --- /dev/null +++ b/deps/npm/node_modules/node-gyp/test/fixtures/certs.js @@ -0,0 +1,150 @@ +module.exports['ca.key'] = ` +-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAtTbG0k2UFUyCdZuip0TTEtXRHh57qosegrpHPBreSNTxt7OT +KfOUZp2rToTHeN9w0ZbV2eKRI5AuFx8Cmlm73/KIHKzSNTBATGMeeHnGaxvL/W/s +KJdTDRNf7/qCXHQ+gsuEWWCFzOZuHmmAQa2IBX2HAQTqXJI8+2iJ9gytFfJLxjqy +6O4u9ugZVHSyQJWs49tGRcWMlNm7EMStADFvJn3S11xe/kwIA2mSI/eddDnzL0Mx +AkR9dQBL66xOABLL5v3QQdhipfHluX6HLbDd/1YsFTuOpgvLRlr72rTAFrQZCokV +hXPiqstn5zJFW5arHakvMR0+OPaICF5feh/4qQIDAQABAoIBAHWg6exnWUF+GY0Y +CrwDS/QFASpI5UNt7M809bqJQlMKjyEMmvF3YJQ/soxUWlsWx1f1TjmR/V6VX6W4 +hmsE5pRXDY13jTfja0lqacQQYAD02TRY63XpzIpHUlYnSWmUN2OVkgKmShQYW9C3 +8P4xE4Nk2TaLJ0oRzy3uzOb/kXcVaJfknBRUnOhuaTSs+w4l4pPXueYA7xuHgVsL +Qq0S4kK+PmdwCMB7gzlAAQhCM3vQ1U4cjC9JIIKSmPy7BcvD0kBfVPIFQ2byGpA1 +VkWBLSyeig0YxA5oIshK5cLiDIfBIiCSEzm4AMhVhGf0tbGEwiPljxKjbarYUUIi +ATMk83UCgYEA7kKeOveuPbMqxmT42swfa9OU5jLUjH+VExU0Kv3BbEjv/OGt0fac +/cs1Ze3vnrtCHudVajocFjydb8B4c62DbA4/T+LcUw/HaMaORbOoICQidi/zZ1Lj +gjg8Ip2WKXEhSAwqUpaFd6w16NZOxiTh+NDaRKywwbe8j57eDH4uR6MCgYEAwrTS +q5ra6+WDGUFMs0y3GMbL8j14PGhxBQBYSTM//NysI+EM6eeKn1cV3BbphEw//jgE +0pVokkjvLAQWWEG2dZyRxRE3YAMgOAIPx5zbJCim3iBVuoqY9ckLg2jF8Fqqubsb +3Rf2/Xzn/rFqsXdhsjGcJpdN66T9aEjwEkAnc0MCgYA5cOYk4UGormFJo147oaqR +nFjxhp+nn7qY9yu0kajoKk1xchct337J0Qv2nv5+DjdKrArzqT7MPaDXKFfhy5s7 +mdO5tr/XZp50rCnws/d8iDmmtLjB2EHxSw10avmg1B1p+UTa1F8pEuOMVt529r1j +9zYoCFo02c8j8PEnoeQWcQKBgQCVBCuQZu5SSM/zTkTTnU0sy0lf1qflI9IMD92B ++JVqg8HDnAR0KF+x38a9MVP7ixgXCuy19t+XxfY269HmLjTlArWV671D4GCSPRGy +plwZ6nr72ieCo3y57+q94jxL3jh3+bozlpnUG/q6tTKBLGs7JDjsWDSsuxOu8tO6 +RBttXQKBgB6LQFOTjDMfsFHKsnQXFUZId3GG/iLg3WCWxEo88T5Rq3JIR0zDpW8H +cKhl/sPY+JVHsxizNCMPtp7Hn7GrB6D/v9LbO0jpG2U0BFiJ6zhiDopbP9B0EAW4 +5JJ+JGKRKoCxs3DmSVyns0gU4j4rVte97UWyVy5TZ8Acr/qrgOA1 +-----END RSA PRIVATE KEY----- +` + +module.exports['ca.crt'] = ` +-----BEGIN CERTIFICATE----- +MIIDmzCCAoOgAwIBAgIUDA0GrvcnG41XT6LYFeNwvq8YV1UwDQYJKoZIhvcNAQEL +BQAwXTELMAkGA1UEBhMCVVMxCzAJBgNVBAgMAkNBMRAwDgYDVQQKDAdOb2RlLmpz +MREwDwYDVQQLDAhub2RlLWd5cDEcMBoGA1UEAwwTbm9kZS1neXAubm9kZWpzLm9y +ZzAeFw0yMjA1MTEwNDIyMjRaFw00OTA5MjUwNDIyMjRaMF0xCzAJBgNVBAYTAlVT +MQswCQYDVQQIDAJDQTEQMA4GA1UECgwHTm9kZS5qczERMA8GA1UECwwIbm9kZS1n +eXAxHDAaBgNVBAMME25vZGUtZ3lwLm5vZGVqcy5vcmcwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQC1NsbSTZQVTIJ1m6KnRNMS1dEeHnuqix6Cukc8Gt5I +1PG3s5Mp85RmnatOhMd433DRltXZ4pEjkC4XHwKaWbvf8ogcrNI1MEBMYx54ecZr +G8v9b+wol1MNE1/v+oJcdD6Cy4RZYIXM5m4eaYBBrYgFfYcBBOpckjz7aIn2DK0V +8kvGOrLo7i726BlUdLJAlazj20ZFxYyU2bsQxK0AMW8mfdLXXF7+TAgDaZIj9510 +OfMvQzECRH11AEvrrE4AEsvm/dBB2GKl8eW5foctsN3/ViwVO46mC8tGWvvatMAW +tBkKiRWFc+Kqy2fnMkVblqsdqS8xHT449ogIXl96H/ipAgMBAAGjUzBRMB0GA1Ud +DgQWBBT6LcYYABEOAMv4hI/5bC82rGlD/DAfBgNVHSMEGDAWgBT6LcYYABEOAMv4 +hI/5bC82rGlD/DAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQA9 +D+qoKw0njub+NaFRS2DFbSiKb5JKTxVjU5aNusFONFLSXBuRpnYyjjkXpJy8JMWz +g8GFDEPP6kiSb8xaPNrFcUzb4PFzJabNTuaLJpBpd2gNBj5AeYwwpRa2DPv/b4yw +y2mfULuCWS09ZAguI2OcaARlAsFxYN0IuQ6pN1AvGFGee67ve9l2VF/hhwEi4lCk +MM0CWlP6COJ8TX7X0MTtexVOgo9m3hBuTSYEZClYFIdSOk10xkPl8Y3Iz/x6mzfK +Uu2l2ZtYvSdAX1CQMds3ZWt0ChNNEjOKPv4g2QSDhGkiqrmi4wUS81g68wKqOpqn +GbN8uKxIfyMjqZKaujPR +-----END CERTIFICATE----- +` + +module.exports['server.key'] = ` +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAvPM99BkYrBcTM355dhz4XzhSDRGxa9qttUlBSgEsbu2UjsRm +XjDS+60XXd66tWpPwLeUd2uvlC/ltv5ekv+EBu35j1KfA1+K1rtFzb1i40kMCsns +OoXjgpsN2wvkxMdFkT2bkqKCS6X0xzlWea1t4poKh9iG7n3otk4RzPNawfwQ9W5n +o9/8i6AUwDbuK4dhAId/Inw2aKrMyQ+AiSvsDM2wUMq+pV7nP46f7MhR4xiGz14z +ATFdjM3Oo/1NKrr0WgVM6i0eNAtuIDqIs8YE7SfODe/SzpJySxewutfYi62OaLh/ +hmWByj/pF5SoNMLyJHxn4GyKK+Qle9NJAThLiwIDAQABAoIBAQCZs4h/Cvct7etZ +pRUqxnAoDQl5xh28LXvGj1uD1qaNacfBxvO6xR6rSedLHcZlkqBjlTI5XqjJ85h6 +njrSevWsKWMrejsNpGetO1OSA+/wEVixYgY+qPEkKftAZ1Fl3O+zMRlfU8CHxuzy +Lqsweap8fW/5h2JjmJp3ydPjE0aNqpQ+0LtYBBawKDIe2zPNOmTPwz3D8qJNQJKU +Qdj08dO/vPZncllPagGvpqhfv4hMyNChr71eBbEFsi3O5VJxfZyj+fQG0DGocr/y +sV54HtYk5j06wMxZFLQtaJn+1pOXquZMNwodSPnbrR/+CI1SZeB8N6VyqqOdmrDz +5NbfGJiRAoGBAPrCuQxJwgc2MzpEtrXA4+1uuV8QWGy3+wNKxKw4lgyC7peXXrVK +l9FkOOAPr8puPRABgDS9t6vo59BAP3Wrx0oJ9PA/Qn03WYLfJMepWqlK7ni9kS04 +5owRTduK7P190sp0m6iicsnchGSSOchECwB5UmtHysEFiuY0T+0pdNbjAoGBAMDl +57lwZDfNTGGDxLQYVzbrXgKcD60DW9MhvH3uso6cw5NYs3tmENCh9D6YrCNN4PmL +zdp4dKbOFoGJdy22TK31nrezUuNKSK+QKH2gsmNVI+a5QokNO1Cfk+PMLoOR5du2 +nwyVvzdaBwuXU4fhmwvLv/SCFNEJ0EgUILeMETE5AoGBAIwLXf9v3e3bJkb/gy8E +mAbNVLez0D5/ja9r/WTVgW9hXFDLF/iVvS4TE/SGrj2WzYF35RsPbVmUDIrwpsBX +/EfsQaA/JCn8VIBTkR31Bg4QLBjAfijMY22MaHgZIXv83lF1SE2o1ATKpCHqzFx9 +K8vK9e22PZUJPGaOhqjEA13TAoGAEPipSJFw38/6NmInfkjd84EFxmkAoBI5k/vV +36aOoyl7s40MTYEPXavCF3fLPVfuwUXhmKUcbkiXhlIX4De3y15e1n66fjDc8EVY +qqTmzQKCpBwMlI5Ld65yjoo6VW0SsiABIlRSfIY5NHXd7YiV4ZXNj6+aMUIRxyWu +Mzfpk1ECgYBZw8lML+F8XbcmCLGYuicf0V/wgFaJr8nnPeW7AiQrv13Ju1ItEaC8 +Tz8F7OfC+FoUb0MGjXHKquDVBDs4xSuS+Ol+rlZEK68ALpm8sUgp6YjARYiXlprs +6o4kN0P5F+DVU2SP6fo9zKLCxaTH9VAQ9C3VUViGAFLBt4DVDmj77g== +-----END RSA PRIVATE KEY----- +` + +module.exports['server.crt'] = ` +-----BEGIN CERTIFICATE----- +MIIDNzCCAh8CFBg1Ph5t5rBlAbCrEn/PexNy9WunMA0GCSqGSIb3DQEBCwUAMF0x +CzAJBgNVBAYTAlVTMQswCQYDVQQIDAJDQTEQMA4GA1UECgwHTm9kZS5qczERMA8G +A1UECwwIbm9kZS1neXAxHDAaBgNVBAMME25vZGUtZ3lwLm5vZGVqcy5vcmcwHhcN +MjIwNTExMDQyMjI0WhcNMjMwOTIzMDQyMjI0WjBTMQswCQYDVQQGEwJVUzELMAkG +A1UECAwCQ0ExEDAOBgNVBAoMB05vZGUuanMxETAPBgNVBAsMCG5vZGUtZ3lwMRIw +EAYDVQQDDAlsb2NhbGhvc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQC88z30GRisFxMzfnl2HPhfOFINEbFr2q21SUFKASxu7ZSOxGZeMNL7rRdd3rq1 +ak/At5R3a6+UL+W2/l6S/4QG7fmPUp8DX4rWu0XNvWLjSQwKyew6heOCmw3bC+TE +x0WRPZuSooJLpfTHOVZ5rW3imgqH2Ibufei2ThHM81rB/BD1bmej3/yLoBTANu4r +h2EAh38ifDZoqszJD4CJK+wMzbBQyr6lXuc/jp/syFHjGIbPXjMBMV2Mzc6j/U0q +uvRaBUzqLR40C24gOoizxgTtJ84N79LOknJLF7C619iLrY5ouH+GZYHKP+kXlKg0 +wvIkfGfgbIor5CV700kBOEuLAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAEhaNEye +JsE4eG1xaGmHq7w9eV0neOaZ58XCuF1sSEMIy9uMnl3aOdctxh/1SYkqJyMct79q +Ra2UZ6mauRlOeqdHb+HZKrFYYUOtd1HOWWJ44Gaya2EQMiTbd/Ns9Th2KTbTOCbL +CHFNska9Ty2ioT7VcrVuIEXFPMua5T4lnCkNJQla800pHHOak2baN/c66Io+8XI2 +xiqaVrLT3qvpzdiiEjo4POeRnWMIgJJshy77Am5JlhaJiAqP1AHfh/tYpliGkjXF +8DSgSoLHSQfalJ4VQvP4XLc/XnmF5Zt6bvwUxCllEBFRneU74bW7/euYX/TpYobr +Y+YM7fGiCqwHdUs= +-----END CERTIFICATE----- +` + +module.exports['ca-bundle.crt'] = ` +-----BEGIN CERTIFICATE----- +MIIDJjCCAg4CAhnOMA0GCSqGSIb3DQEBBQUAMH0xCzAJBgNVBAYTAlVTMQswCQYD +VQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZMBcGA1UECgwQU3Ryb25n +TG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRowGAYDVQQDDBFjYS5zdHJv +bmdsb29wLmNvbTAeFw0xNTEyMDgyMzM1MzNaFw00MzA0MjQyMzM1MzNaMBkxFzAV +BgNVBAMMDnN0cm9uZ2xvb3AuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAwOYI7OZ2FX/YjRgLZoDQlbPc5UZXU/j0e1wwiJNPtPEax9Y5Uoza0Pnt +Ikzkc2SfvQ+IJrhXo385tI0W5juuqbHnE7UrjUuPjUX6NHevkxcs/flmjan5wnZM +cPsGhH71WDuUEEflvZihf2Se2x+xgZtMhc5XGmVmRuZFYKvkgUhA2/w8/QrK+jPT +n9QRJxZjWNh2RBdC1B7u4jffSmOSUljYFH1I2eTeY+Rdi6YUIYSU9gEoZxsv3Tia +SomfMF5jt2Mouo6MzA+IhLvvFjcrcph1Qxgi9RkfdCMMd+Ipm9YWELkyG1bDRpQy +0iyHD4gvVsAqz1Y2KdRSdc3Kt+nTqwIDAQABoxkwFzAVBgNVHREEDjAMhwQAAAAA +hwR/AAABMA0GCSqGSIb3DQEBBQUAA4IBAQAhy4J0hML3NgmDRHdL5/iTucBe22Mf +jJjg2aifD1S187dHm+Il4qZNO2plWwAhN0h704f+8wpsaALxUvBIu6nvlvcMP5PH +jGN5JLe2Km3UaPvYOQU2SgacLilu+uBcIo2JSHLV6O7ziqUj5Gior6YxDLCtEZie +Ea8aX5/YjuACtEMJ1JjRqjgkM66XAoUe0E8onOK3FgTIO3tGoTJwRp0zS50pFuP0 +PsZtT04ck6mmXEXXknNoAyBCvPypfms9OHqcUIW9fiQnrGbS/Ri4QSQYj0DtFk/1 +na4fY1gf3zTHxH8259b/TOOaPfTnCEsOQtjUrWNR4xhmVZ+HJy4yytUW +-----END CERTIFICATE----- +-----BEGIN CERTIFICATE----- +MIIDbzCCAlcCAmm6MA0GCSqGSIb3DQEBCwUAMH0xCzAJBgNVBAYTAlVTMQswCQYD +VQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZMBcGA1UECgwQU3Ryb25n +TG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRowGAYDVQQDDBFjYS5zdHJv +bmdsb29wLmNvbTAeFw0xNTEyMDgyMzM1MzNaFw00MzA0MjQyMzM1MzNaMH0xCzAJ +BgNVBAYTAlVTMQswCQYDVQQIDAJDQTEWMBQGA1UEBwwNU2FuIEZyYW5jaXNjbzEZ +MBcGA1UECgwQU3Ryb25nTG9vcCwgSW5jLjESMBAGA1UECwwJU3Ryb25nT3BzMRow +GAYDVQQDDBFjYS5zdHJvbmdsb29wLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBANfj86jkvvYDjHBgiqWhk9Cj+bqiMq3MqnV0CBO4iuK33Fo6XssE +H+yVdXlIBFbFe6t655MdBVOR2Sfj7WqNh96vhu6PyDHiwcQlTaiLU6nhIed1J4Wv +lvnJHFmp8Wbtx5AgLT4UYu03ftvXEl2DLi3vhSL2tRM1ebXHB/KPbRWkb25DPX0P +foOHot3f2dgNe2x6kponf7E/QDmAu3s7Nlkfh+ryDhgGU7wocXEhXbprNqRqOGNo +xbXgUI+/9XDxYT/7Gn5LF/fPjtN+aB0SKMnTsDhprVlZie83mlqJ46fOOrR+vrsQ +mi/1m/TadrARtZoIExC/cQRdVM05EK4tUa8CAwEAATANBgkqhkiG9w0BAQsFAAOC +AQEAQ7k5WhyhDTIGYCNzRnrMHWSzGqa1y4tJMW06wafJNRqTm1cthq1ibc6Hfq5a +K10K0qMcgauRTfQ1MWrVCTW/KnJ1vkhiTOH+RvxapGn84gSaRmV6KZen0+gMsgae +KEGe/3Hn+PmDVV+PTamHgPACfpTww38WHIe/7Ce9gHfG7MZ8cKHNZhDy0IAYPln+ +YRwMLd7JNQffHAbWb2CE1mcea4H/12U8JZW5tHCF6y9V+7IuDzqwIrLKcW3lG17n +VUG6ODF/Ryqn3V5X+TL91YyXi6c34y34IpC7MQDV/67U7+5Bp5CfeDPWW2wVSrW+ +uGZtfEvhbNm6m2i4UNmpCXxUZQ== +-----END CERTIFICATE----- +` diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/server.crt b/deps/npm/node_modules/node-gyp/test/fixtures/server.crt deleted file mode 100644 index 5d0c440e0788ac8..000000000000000 --- a/deps/npm/node_modules/node-gyp/test/fixtures/server.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDYjCCAkoCCQCSlmGR7KzZGTANBgkqhkiG9w0BAQsFADB0MQswCQYDVQQGEwJV -UzELMAkGA1UECAwCQ0ExEDAOBgNVBAoMB05vZGUuanMxETAPBgNVBAsMCG5vZGUt -Z3lwMRIwEAYDVQQDDAlsb2NhbGhvc3QxHzAdBgkqhkiG9w0BCQEWEGJ1aWxkQG5v -ZGVqcy5vcmcwHhcNMTkwNjIyMDYyNTU1WhcNMjkwNjE5MDYyNTU1WjByMQswCQYD -VQQGEwJVUzELMAkGA1UECAwCQ0ExEDAOBgNVBAoMB05vZGUuanMxETAPBgNVBAsM -CG5vZGUtZ3lwMRIwEAYDVQQDDAlsb2NhbGhvc3QxHTAbBgkqhkiG9w0BCQEWDmJ1 -aWxkQGlvanMub3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6S1E -2WchgmbJYqCnpN7310ZgHjIOqeJe6MpSue2u6z6mTNd5izgvQNaANmn3xLFCS5zs -uZaTvdPYPkcmSQzb1YcZSUYnAxZifjYARc6kb5GSBl3q+O70ELyFrimXfZ4JI+bd -IG9KiHY17DlvZZZj/csGYVWWg0mkeH3O5LPX6/DXQVh/9+gZ02/cdIBCAtZHQwqx -7tF/qZA/kD4GZNFpU1DYHzf9H6g9htoCqmNHQWrV2T9yFybt6mbZp9kglBmyKYCc -7hmQnb7N/mHn1yIuwhBsirCJTfKH86gN81u8M3+SVHA2VUHDllcNhpDWlmInXA+I -tHdGZHCp95ohqpCPgQIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQCdvYj6CD0ZLwT2 -3t1r+deC3TJuHlNVSeKeT7wIfFnh2FW5riGV0q/w6eXPLTHjuiS6YmpAAbdNUgX/ -sq64FqI2RLpX6pgY5yB0SKopMcJxMLKqmF4zHpIHxtYN5EmN3PR0vehneBR/nZ2T -3ikvWD5JeXlm7Dfw+tjijdxM/sEoDWErGup4mMKMd1s5s830p+ITJUa50d0DLFdH -mqPSbUZF8mMPwGJd+nu1Ht3gTLtK7+gYJgGtXMJmGC0Qg77EJHDB2NbotgDGNmSU -1H9BpAeFHHIcbh2Rr7kkTvnh/c03vFe+CsDZmezcmRpRzW1fKj3YbfqBxU4XwJrL -a5T/N9xU ------END CERTIFICATE----- diff --git a/deps/npm/node_modules/node-gyp/test/fixtures/server.key b/deps/npm/node_modules/node-gyp/test/fixtures/server.key deleted file mode 100644 index a8447391e02e2f6..000000000000000 --- a/deps/npm/node_modules/node-gyp/test/fixtures/server.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA6S1E2WchgmbJYqCnpN7310ZgHjIOqeJe6MpSue2u6z6mTNd5 -izgvQNaANmn3xLFCS5zsuZaTvdPYPkcmSQzb1YcZSUYnAxZifjYARc6kb5GSBl3q -+O70ELyFrimXfZ4JI+bdIG9KiHY17DlvZZZj/csGYVWWg0mkeH3O5LPX6/DXQVh/ -9+gZ02/cdIBCAtZHQwqx7tF/qZA/kD4GZNFpU1DYHzf9H6g9htoCqmNHQWrV2T9y -Fybt6mbZp9kglBmyKYCc7hmQnb7N/mHn1yIuwhBsirCJTfKH86gN81u8M3+SVHA2 -VUHDllcNhpDWlmInXA+ItHdGZHCp95ohqpCPgQIDAQABAoIBABW8R4ewalo6dJlB -+n6O3jFt+PW3mtBRLqGqgm2cb0q0a1IMX+MPWLBFjmwEErl+AH0F4rcmBx2Ryr17 -amEy1qcf0caXyHksNAApznqzWXag7iizxnxv4cZRnHBwphNqkNWM5p3oYd04j6w2 -amDg1O9KZozaKo6QZclpiMiezwjKG+PVZLT8p7afswjv+yDWPDByhlcGiye9QD1T -VuZ0QCoXp6N/8JxW0gdkLp9NqFvGeGFzJ5h6L+d7A6BWw8akXrBRHHcKkyvVYBfd -myhSzSK4FPFMaxaEY/65FlVSyAO6ezGm3Umx4g7mkFjLdwKWaIOjkBkPeFgl3Pp4 -7Lo5X3UCgYEA/FrrIwmEU5ayulBVScEMKeavu5eNY4r0Sqbpov2oyTdYe8G49Pzy -ryMXfunY43moLKpajGwgTKRGvdqFtK08AAkaCssiAPkP3rZuZvMTF4sLo/vlWrjP -3er+tUqj22BzXi5XV0BAvH8Y3TL8KQ3he/8JxDvkC811/DQ9Y/Da3U8CgYEA7Itw -UM37URma08Bj9VTMoL9ZCyURewX+ZLDb2+O8sXGXJs28i1RkE6PTBlnRmedn+Jjk -byzQ5Cs5wA5uMbhYTA7kgXOs1bvgQqmlLmyL6FfHkucoMhr2Di7VeGf4OxE26JZ8 -JdY4+1MOyI3A2rR8WU+GmHxy0ay4K2xe6W0vsi8CgYBoGLEKIPDe8jkDtgOYivOT -jT9MaLXALB+dc8DIpU4swpHTaxP6qyUIrbcReTEolJSU6Ci16BxiwRkVU8D3yMYJ -VbfSX/zE3fh37FUaToa/nXHN0SjJBZdpeXhcHE//PIgaf48zxKNvnhYJmPB/luQ+ -m/PRaMsnOzfCM2JniYEe7QKBgGwjnxhB4tgDtaWCue/pcZc3gzS2IJS2e8N6mzie -l6Ajhu+FdOHZldrotUuc+la61OxwsVYmDeWR4VftAPGYDj3PPSX1RRl9R5wSRGLB -2wBASQvew6CMdNqtDIh8N56BUzHnwh/mHKzBHuwO6hDSHFsUITtLAY7bwGKRq55Z -fUmfAoGBANOYFyoJoDLcl+Jd750lyqfCifcGtkRdmZMtrPXaYnD8ZGme9vz1vsK/ -4iUkV3mi7Z9s1LXMa/tPPfKdVhCM1PXost3/si0+u1Bz5yKqEPXlyy2ltpIVyGu8 -yiy7y75asp8Iii/1cgtwyp9+VeSif8wJ+MHQoGdGxvAQP80R3EjF ------END RSA PRIVATE KEY----- diff --git a/deps/npm/node_modules/node-gyp/test/test-configure-python.js b/deps/npm/node_modules/node-gyp/test/test-configure-python.js index 4290e7af1bb1c8e..aacd75f7c729449 100644 --- a/deps/npm/node_modules/node-gyp/test/test-configure-python.js +++ b/deps/npm/node_modules/node-gyp/test/test-configure-python.js @@ -14,7 +14,9 @@ const configure = requireInject('../lib/configure', { mkdir: function (dir, options, cb) { cb() }, promises: { writeFile: function (file, data) { return Promise.resolve(null) } - } + }, + unlink: function (path, cb) { cb() }, + symlink: function (target, path, cb) { cb() } } }) diff --git a/deps/npm/node_modules/node-gyp/test/test-download.js b/deps/npm/node_modules/node-gyp/test/test-download.js index 71a3c0d092dfe4b..c4caad9e8346d3d 100644 --- a/deps/npm/node_modules/node-gyp/test/test-download.js +++ b/deps/npm/node_modules/node-gyp/test/test-download.js @@ -12,6 +12,7 @@ const devDir = require('./common').devDir() const rimraf = require('rimraf') const gyp = require('../lib/node-gyp') const log = require('npmlog') +const certs = require('./fixtures/certs') log.level = 'warn' @@ -40,12 +41,12 @@ test('download over http', async (t) => { test('download over https with custom ca', async (t) => { t.plan(3) - const cafile = path.join(__dirname, '/fixtures/ca.crt') - const [cert, key, ca] = await Promise.all([ - fs.promises.readFile(path.join(__dirname, 'fixtures/server.crt'), 'utf8'), - fs.promises.readFile(path.join(__dirname, 'fixtures/server.key'), 'utf8'), - install.test.readCAFile(cafile) - ]) + const cafile = path.join(__dirname, 'fixtures/ca.crt') + const cacontents = certs['ca.crt'] + const cert = certs['server.crt'] + const key = certs['server.key'] + await fs.promises.writeFile(cafile, cacontents, 'utf8') + const ca = await install.test.readCAFile(cafile) t.strictEqual(ca.length, 1) @@ -55,7 +56,10 @@ test('download over https with custom ca', async (t) => { res.end('ok') }) - t.tearDown(() => new Promise((resolve) => server.close(resolve))) + t.tearDown(async () => { + await new Promise((resolve) => server.close(resolve)) + await fs.promises.unlink(cafile) + }) server.on('clientError', (err) => { throw err }) @@ -150,6 +154,12 @@ test('download with missing cafile', async (t) => { }) test('check certificate splitting', async (t) => { + const cafile = path.join(__dirname, 'fixtures/ca-bundle.crt') + const cacontents = certs['ca-bundle.crt'] + await fs.promises.writeFile(cafile, cacontents, 'utf8') + t.tearDown(async () => { + await fs.promises.unlink(cafile) + }) const cas = await install.test.readCAFile(path.join(__dirname, 'fixtures/ca-bundle.crt')) t.plan(2) t.strictEqual(cas.length, 2) diff --git a/deps/npm/node_modules/nopt/bin/nopt.js b/deps/npm/node_modules/nopt/bin/nopt.js index 3232d4c570fdcbc..bb04291c607acfd 100755 --- a/deps/npm/node_modules/nopt/bin/nopt.js +++ b/deps/npm/node_modules/nopt/bin/nopt.js @@ -1,54 +1,56 @@ #!/usr/bin/env node -var nopt = require("../lib/nopt") - , path = require("path") - , types = { num: Number - , bool: Boolean - , help: Boolean - , list: Array - , "num-list": [Number, Array] - , "str-list": [String, Array] - , "bool-list": [Boolean, Array] - , str: String - , clear: Boolean - , config: Boolean - , length: Number - , file: path - } - , shorthands = { s: [ "--str", "astring" ] - , b: [ "--bool" ] - , nb: [ "--no-bool" ] - , tft: [ "--bool-list", "--no-bool-list", "--bool-list", "true" ] - , "?": ["--help"] - , h: ["--help"] - , H: ["--help"] - , n: [ "--num", "125" ] - , c: ["--config"] - , l: ["--length"] - , f: ["--file"] - } - , parsed = nopt( types - , shorthands - , process.argv - , 2 ) +var nopt = require('../lib/nopt') +var path = require('path') +var types = { num: Number, + bool: Boolean, + help: Boolean, + list: Array, + 'num-list': [Number, Array], + 'str-list': [String, Array], + 'bool-list': [Boolean, Array], + str: String, + clear: Boolean, + config: Boolean, + length: Number, + file: path, +} +var shorthands = { s: ['--str', 'astring'], + b: ['--bool'], + nb: ['--no-bool'], + tft: ['--bool-list', '--no-bool-list', '--bool-list', 'true'], + '?': ['--help'], + h: ['--help'], + H: ['--help'], + n: ['--num', '125'], + c: ['--config'], + l: ['--length'], + f: ['--file'], +} +var parsed = nopt(types + , shorthands + , process.argv + , 2) -console.log("parsed", parsed) +console.log('parsed', parsed) if (parsed.help) { - console.log("") - console.log("nopt cli tester") - console.log("") - console.log("types") + console.log('') + console.log('nopt cli tester') + console.log('') + console.log('types') console.log(Object.keys(types).map(function M (t) { var type = types[t] if (Array.isArray(type)) { - return [t, type.map(function (type) { return type.name })] + return [t, type.map(function (mappedType) { + return mappedType.name + })] } return [t, type && type.name] }).reduce(function (s, i) { s[i[0]] = i[1] return s }, {})) - console.log("") - console.log("shorthands") + console.log('') + console.log('shorthands') console.log(shorthands) } diff --git a/deps/npm/node_modules/nopt/lib/nopt.js b/deps/npm/node_modules/nopt/lib/nopt.js index ecfa5da93368331..5829c2fe0f63793 100644 --- a/deps/npm/node_modules/nopt/lib/nopt.js +++ b/deps/npm/node_modules/nopt/lib/nopt.js @@ -1,130 +1,147 @@ // info about each config option. var debug = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG - ? function () { console.error.apply(console, arguments) } + ? function () { + console.error.apply(console, arguments) + } : function () {} -var url = require("url") - , path = require("path") - , Stream = require("stream").Stream - , abbrev = require("abbrev") - , os = require("os") +var url = require('url') +var path = require('path') +var Stream = require('stream').Stream +var abbrev = require('abbrev') +var os = require('os') module.exports = exports = nopt exports.clean = clean exports.typeDefs = - { String : { type: String, validate: validateString } - , Boolean : { type: Boolean, validate: validateBoolean } - , url : { type: url, validate: validateUrl } - , Number : { type: Number, validate: validateNumber } - , path : { type: path, validate: validatePath } - , Stream : { type: Stream, validate: validateStream } - , Date : { type: Date, validate: validateDate } + { String: { type: String, validate: validateString }, + Boolean: { type: Boolean, validate: validateBoolean }, + url: { type: url, validate: validateUrl }, + Number: { type: Number, validate: validateNumber }, + path: { type: path, validate: validatePath }, + Stream: { type: Stream, validate: validateStream }, + Date: { type: Date, validate: validateDate }, } function nopt (types, shorthands, args, slice) { args = args || process.argv types = types || {} shorthands = shorthands || {} - if (typeof slice !== "number") slice = 2 + if (typeof slice !== 'number') { + slice = 2 + } debug(types, shorthands, args, slice) args = args.slice(slice) var data = {} - , key - , argv = { - remain: [], - cooked: args, - original: args.slice(0) - } + var argv = { + remain: [], + cooked: args, + original: args.slice(0), + } parse(args, data, argv.remain, types, shorthands) // now data is full clean(data, types, exports.typeDefs) data.argv = argv Object.defineProperty(data.argv, 'toString', { value: function () { - return this.original.map(JSON.stringify).join(" ") - }, enumerable: false }) + return this.original.map(JSON.stringify).join(' ') + }, + enumerable: false }) return data } function clean (data, types, typeDefs) { typeDefs = typeDefs || exports.typeDefs var remove = {} - , typeDefault = [false, true, null, String, Array] + var typeDefault = [false, true, null, String, Array] Object.keys(data).forEach(function (k) { - if (k === "argv") return + if (k === 'argv') { + return + } var val = data[k] - , isArray = Array.isArray(val) - , type = types[k] - if (!isArray) val = [val] - if (!type) type = typeDefault - if (type === Array) type = typeDefault.concat(Array) - if (!Array.isArray(type)) type = [type] - - debug("val=%j", val) - debug("types=", type) - val = val.map(function (val) { + var isArray = Array.isArray(val) + var type = types[k] + if (!isArray) { + val = [val] + } + if (!type) { + type = typeDefault + } + if (type === Array) { + type = typeDefault.concat(Array) + } + if (!Array.isArray(type)) { + type = [type] + } + + debug('val=%j', val) + debug('types=', type) + val = val.map(function (v) { // if it's an unknown value, then parse false/true/null/numbers/dates - if (typeof val === "string") { - debug("string %j", val) - val = val.trim() - if ((val === "null" && ~type.indexOf(null)) - || (val === "true" && + if (typeof v === 'string') { + debug('string %j', v) + v = v.trim() + if ((v === 'null' && ~type.indexOf(null)) + || (v === 'true' && (~type.indexOf(true) || ~type.indexOf(Boolean))) - || (val === "false" && + || (v === 'false' && (~type.indexOf(false) || ~type.indexOf(Boolean)))) { - val = JSON.parse(val) - debug("jsonable %j", val) - } else if (~type.indexOf(Number) && !isNaN(val)) { - debug("convert to number", val) - val = +val - } else if (~type.indexOf(Date) && !isNaN(Date.parse(val))) { - debug("convert to date", val) - val = new Date(val) + v = JSON.parse(v) + debug('jsonable %j', v) + } else if (~type.indexOf(Number) && !isNaN(v)) { + debug('convert to number', v) + v = +v + } else if (~type.indexOf(Date) && !isNaN(Date.parse(v))) { + debug('convert to date', v) + v = new Date(v) } } - if (!types.hasOwnProperty(k)) { - return val + if (!Object.prototype.hasOwnProperty.call(types, k)) { + return v } // allow `--no-blah` to set 'blah' to null if null is allowed - if (val === false && ~type.indexOf(null) && + if (v === false && ~type.indexOf(null) && !(~type.indexOf(false) || ~type.indexOf(Boolean))) { - val = null + v = null } var d = {} - d[k] = val - debug("prevalidated val", d, val, types[k]) - if (!validate(d, k, val, types[k], typeDefs)) { + d[k] = v + debug('prevalidated val', d, v, types[k]) + if (!validate(d, k, v, types[k], typeDefs)) { if (exports.invalidHandler) { - exports.invalidHandler(k, val, types[k], data) + exports.invalidHandler(k, v, types[k], data) } else if (exports.invalidHandler !== false) { - debug("invalid: "+k+"="+val, types[k]) + debug('invalid: ' + k + '=' + v, types[k]) } return remove } - debug("validated val", d, val, types[k]) + debug('validated v', d, v, types[k]) return d[k] - }).filter(function (val) { return val !== remove }) + }).filter(function (v) { + return v !== remove + }) // if we allow Array specifically, then an empty array is how we // express 'no value here', not null. Allow it. if (!val.length && type.indexOf(Array) === -1) { debug('VAL HAS NO LENGTH, DELETE IT', val, k, type.indexOf(Array)) delete data[k] - } - else if (isArray) { + } else if (isArray) { debug(isArray, data[k], val) data[k] = val - } else data[k] = val[0] + } else { + data[k] = val[0] + } - debug("k=%s val=%j", k, val, data[k]) + debug('k=%s val=%j', k, val, data[k]) }) } @@ -133,17 +150,21 @@ function validateString (data, k, val) { } function validatePath (data, k, val) { - if (val === true) return false - if (val === null) return true + if (val === true) { + return false + } + if (val === null) { + return true + } val = String(val) - var isWin = process.platform === 'win32' - , homePattern = isWin ? /^~(\/|\\)/ : /^~\// - , home = os.homedir() + var isWin = process.platform === 'win32' + var homePattern = isWin ? /^~(\/|\\)/ : /^~\// + var home = os.homedir() if (home && val.match(homePattern)) { - data[k] = path.resolve(home, val.substr(2)) + data[k] = path.resolve(home, val.slice(2)) } else { data[k] = path.resolve(val) } @@ -151,63 +172,92 @@ function validatePath (data, k, val) { } function validateNumber (data, k, val) { - debug("validate Number %j %j %j", k, val, isNaN(val)) - if (isNaN(val)) return false + debug('validate Number %j %j %j', k, val, isNaN(val)) + if (isNaN(val)) { + return false + } data[k] = +val } function validateDate (data, k, val) { var s = Date.parse(val) - debug("validate Date %j %j %j", k, val, s) - if (isNaN(s)) return false + debug('validate Date %j %j %j', k, val, s) + if (isNaN(s)) { + return false + } data[k] = new Date(val) } function validateBoolean (data, k, val) { - if (val instanceof Boolean) val = val.valueOf() - else if (typeof val === "string") { - if (!isNaN(val)) val = !!(+val) - else if (val === "null" || val === "false") val = false - else val = true - } else val = !!val + if (val instanceof Boolean) { + val = val.valueOf() + } else if (typeof val === 'string') { + if (!isNaN(val)) { + val = !!(+val) + } else if (val === 'null' || val === 'false') { + val = false + } else { + val = true + } + } else { + val = !!val + } data[k] = val } function validateUrl (data, k, val) { + // Changing this would be a breaking change in the npm cli + /* eslint-disable-next-line node/no-deprecated-api */ val = url.parse(String(val)) - if (!val.host) return false + if (!val.host) { + return false + } data[k] = val.href } function validateStream (data, k, val) { - if (!(val instanceof Stream)) return false + if (!(val instanceof Stream)) { + return false + } data[k] = val } function validate (data, k, val, type, typeDefs) { // arrays are lists of types. if (Array.isArray(type)) { - for (var i = 0, l = type.length; i < l; i ++) { - if (type[i] === Array) continue - if (validate(data, k, val, type[i], typeDefs)) return true + for (let i = 0, l = type.length; i < l; i++) { + if (type[i] === Array) { + continue + } + if (validate(data, k, val, type[i], typeDefs)) { + return true + } } delete data[k] return false } // an array of anything? - if (type === Array) return true + if (type === Array) { + return true + } + // Original comment: // NaN is poisonous. Means that something is not allowed. + // New comment: Changing this to an isNaN check breaks a lot of tests. + // Something is being assumed here that is not actually what happens in + // practice. Fixing it is outside the scope of getting linting to pass in + // this repo. Leaving as-is for now. + /* eslint-disable-next-line no-self-compare */ if (type !== type) { - debug("Poison NaN", k, val, type) + debug('Poison NaN', k, val, type) delete data[k] return false } // explicit list of values if (val === type) { - debug("Explicitly allowed %j", val) + debug('Explicitly allowed %j', val) // if (isArray) (data[k] = data[k] || []).push(val) // else data[k] = val data[k] = val @@ -216,14 +266,17 @@ function validate (data, k, val, type, typeDefs) { // now go through the list of typeDefs, validate against each one. var ok = false - , types = Object.keys(typeDefs) - for (var i = 0, l = types.length; i < l; i ++) { - debug("test type %j %j %j", k, val, types[i]) + var types = Object.keys(typeDefs) + for (let i = 0, l = types.length; i < l; i++) { + debug('test type %j %j %j', k, val, types[i]) var t = typeDefs[types[i]] - if (t && - ((type && type.name && t.type && t.type.name) ? (type.name === t.type.name) : (type === t.type))) { + if (t && ( + (type && type.name && t.type && t.type.name) ? + (type.name === t.type.name) : + (type === t.type) + )) { var d = {} - ok = false !== t.validate(d, k, val) + ok = t.validate(d, k, val) !== false val = d[k] if (ok) { // if (isArray) (data[k] = data[k] || []).push(val) @@ -233,60 +286,63 @@ function validate (data, k, val, type, typeDefs) { } } } - debug("OK? %j (%j %j %j)", ok, k, val, types[i]) + debug('OK? %j (%j %j %j)', ok, k, val, types[types.length - 1]) - if (!ok) delete data[k] + if (!ok) { + delete data[k] + } return ok } function parse (args, data, remain, types, shorthands) { - debug("parse", args, data, remain) + debug('parse', args, data, remain) - var key = null - , abbrevs = abbrev(Object.keys(types)) - , shortAbbr = abbrev(Object.keys(shorthands)) + var abbrevs = abbrev(Object.keys(types)) + var shortAbbr = abbrev(Object.keys(shorthands)) - for (var i = 0; i < args.length; i ++) { + for (var i = 0; i < args.length; i++) { var arg = args[i] - debug("arg", arg) + debug('arg', arg) if (arg.match(/^-{2,}$/)) { // done with keys. // the rest are args. remain.push.apply(remain, args.slice(i + 1)) - args[i] = "--" + args[i] = '--' break } var hadEq = false - if (arg.charAt(0) === "-" && arg.length > 1) { + if (arg.charAt(0) === '-' && arg.length > 1) { var at = arg.indexOf('=') if (at > -1) { hadEq = true - var v = arg.substr(at + 1) - arg = arg.substr(0, at) + var v = arg.slice(at + 1) + arg = arg.slice(0, at) args.splice(i, 1, arg, v) } // see if it's a shorthand // if so, splice and back up to re-parse it. var shRes = resolveShort(arg, shorthands, shortAbbr, abbrevs) - debug("arg=%j shRes=%j", arg, shRes) + debug('arg=%j shRes=%j', arg, shRes) if (shRes) { debug(arg, shRes) args.splice.apply(args, [i, 1].concat(shRes)) if (arg !== shRes[0]) { - i -- + i-- continue } } - arg = arg.replace(/^-+/, "") + arg = arg.replace(/^-+/, '') var no = null - while (arg.toLowerCase().indexOf("no-") === 0) { + while (arg.toLowerCase().indexOf('no-') === 0) { no = !no - arg = arg.substr(3) + arg = arg.slice(3) } - if (abbrevs[arg]) arg = abbrevs[arg] + if (abbrevs[arg]) { + arg = abbrevs[arg] + } var argType = types[arg] var isTypeArray = Array.isArray(argType) @@ -299,20 +355,24 @@ function parse (args, data, remain, types, shorthands) { isTypeArray && argType.indexOf(Array) !== -1 // allow unknown things to be arrays if specified multiple times. - if (!types.hasOwnProperty(arg) && data.hasOwnProperty(arg)) { - if (!Array.isArray(data[arg])) + if ( + !Object.prototype.hasOwnProperty.call(types, arg) && + Object.prototype.hasOwnProperty.call(data, arg) + ) { + if (!Array.isArray(data[arg])) { data[arg] = [data[arg]] + } isArray = true } var val - , la = args[i + 1] + var la = args[i + 1] var isBool = typeof no === 'boolean' || argType === Boolean || isTypeArray && argType.indexOf(Boolean) !== -1 || (typeof argType === 'undefined' && !hadEq) || - (la === "false" && + (la === 'false' && (argType === null || isTypeArray && ~argType.indexOf(null))) @@ -320,11 +380,13 @@ function parse (args, data, remain, types, shorthands) { // just set and move along val = !no // however, also support --bool true or --bool false - if (la === "true" || la === "false") { + if (la === 'true' || la === 'false') { val = JSON.parse(la) la = null - if (no) val = !val - i ++ + if (no) { + val = !val + } + i++ } // also support "foo":[Boolean, "bar"] and "--foo bar" @@ -332,49 +394,55 @@ function parse (args, data, remain, types, shorthands) { if (~argType.indexOf(la)) { // an explicit type val = la - i ++ - } else if ( la === "null" && ~argType.indexOf(null) ) { + i++ + } else if (la === 'null' && ~argType.indexOf(null)) { // null allowed val = null - i ++ - } else if ( !la.match(/^-{2,}[^-]/) && + i++ + } else if (!la.match(/^-{2,}[^-]/) && !isNaN(la) && - ~argType.indexOf(Number) ) { + ~argType.indexOf(Number)) { // number val = +la - i ++ - } else if ( !la.match(/^-[^-]/) && ~argType.indexOf(String) ) { + i++ + } else if (!la.match(/^-[^-]/) && ~argType.indexOf(String)) { // string val = la - i ++ + i++ } } - if (isArray) (data[arg] = data[arg] || []).push(val) - else data[arg] = val + if (isArray) { + (data[arg] = data[arg] || []).push(val) + } else { + data[arg] = val + } continue } if (argType === String) { if (la === undefined) { - la = "" + la = '' } else if (la.match(/^-{1,2}[^-]+/)) { - la = "" - i -- + la = '' + i-- } } if (la && la.match(/^-{2,}$/)) { la = undefined - i -- + i-- } val = la === undefined ? true : la - if (isArray) (data[arg] = data[arg] || []).push(val) - else data[arg] = val + if (isArray) { + (data[arg] = data[arg] || []).push(val) + } else { + data[arg] = val + } - i ++ + i++ continue } remain.push(arg) @@ -389,14 +457,16 @@ function resolveShort (arg, shorthands, shortAbbr, abbrevs) { arg = arg.replace(/^-+/, '') // if it's an exact known option, then don't go any further - if (abbrevs[arg] === arg) + if (abbrevs[arg] === arg) { return null + } // if it's an exact known shortopt, same deal if (shorthands[arg]) { // make it an array, if it's a list of words - if (shorthands[arg] && !Array.isArray(shorthands[arg])) + if (shorthands[arg] && !Array.isArray(shorthands[arg])) { shorthands[arg] = shorthands[arg].split(/\s+/) + } return shorthands[arg] } @@ -406,7 +476,7 @@ function resolveShort (arg, shorthands, shortAbbr, abbrevs) { if (!singles) { singles = Object.keys(shorthands).filter(function (s) { return s.length === 1 - }).reduce(function (l,r) { + }).reduce(function (l, r) { l[r] = true return l }, {}) @@ -414,28 +484,32 @@ function resolveShort (arg, shorthands, shortAbbr, abbrevs) { debug('shorthand singles', singles) } - var chrs = arg.split("").filter(function (c) { + var chrs = arg.split('').filter(function (c) { return singles[c] }) - if (chrs.join("") === arg) return chrs.map(function (c) { - return shorthands[c] - }).reduce(function (l, r) { - return l.concat(r) - }, []) - + if (chrs.join('') === arg) { + return chrs.map(function (c) { + return shorthands[c] + }).reduce(function (l, r) { + return l.concat(r) + }, []) + } // if it's an arg abbrev, and not a literal shorthand, then prefer the arg - if (abbrevs[arg] && !shorthands[arg]) + if (abbrevs[arg] && !shorthands[arg]) { return null + } // if it's an abbr for a shorthand, then use that - if (shortAbbr[arg]) + if (shortAbbr[arg]) { arg = shortAbbr[arg] + } // make it an array, if it's a list of words - if (shorthands[arg] && !Array.isArray(shorthands[arg])) + if (shorthands[arg] && !Array.isArray(shorthands[arg])) { shorthands[arg] = shorthands[arg].split(/\s+/) + } return shorthands[arg] } diff --git a/deps/npm/node_modules/nopt/package.json b/deps/npm/node_modules/nopt/package.json index 12ed02da5a832de..a3cd13d8c714bd8 100644 --- a/deps/npm/node_modules/nopt/package.json +++ b/deps/npm/node_modules/nopt/package.json @@ -1,14 +1,20 @@ { "name": "nopt", - "version": "5.0.0", + "version": "6.0.0", "description": "Option parsing for Node, supporting types, shorthands, etc. Used by npm.", - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "author": "GitHub Inc.", "main": "lib/nopt.js", "scripts": { "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", - "test": "tap test/*.js" + "test": "tap", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "snap": "tap", + "posttest": "npm run lint" }, "repository": { "type": "git", @@ -19,16 +25,29 @@ }, "license": "ISC", "dependencies": { - "abbrev": "1" + "abbrev": "^1.0.0" }, "devDependencies": { - "tap": "^14.10.6" + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "tap": { + "lines": 87, + "functions": 91, + "branches": 81, + "statements": 87 }, "files": [ - "bin", - "lib" + "bin/", + "lib/" ], "engines": { - "node": ">=6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "windowsCI": false, + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/normalize-package-data/lib/extract_description.js b/deps/npm/node_modules/normalize-package-data/lib/extract_description.js index bf9896812e5f543..631966b5f29af55 100644 --- a/deps/npm/node_modules/normalize-package-data/lib/extract_description.js +++ b/deps/npm/node_modules/normalize-package-data/lib/extract_description.js @@ -11,12 +11,14 @@ function extractDescription (d) { // the first block of text before the first heading // that isn't the first line heading d = d.trim().split('\n') - for (var s = 0; d[s] && d[s].trim().match(/^(#|$)/); s++) { - ; + let s = 0 + while (d[s] && d[s].trim().match(/^(#|$)/)) { + s++ } - var l = d.length - for (var e = s + 1; e < l && d[e].trim(); e++) { - ; + const l = d.length + let e = s + 1 + while (e < l && d[e].trim()) { + e++ } return d.slice(s, e).join(' ').trim() } diff --git a/deps/npm/node_modules/normalize-package-data/lib/fixer.js b/deps/npm/node_modules/normalize-package-data/lib/fixer.js index 0846f2c045a6e56..bb78231d83ca9ff 100644 --- a/deps/npm/node_modules/normalize-package-data/lib/fixer.js +++ b/deps/npm/node_modules/normalize-package-data/lib/fixer.js @@ -121,17 +121,17 @@ module.exports = { this.warn('nonArrayBundleDependencies') delete data[bd] } else if (data[bd]) { - data[bd] = data[bd].filter(function (bd) { - if (!bd || typeof bd !== 'string') { - this.warn('nonStringBundleDependency', bd) + data[bd] = data[bd].filter(function (filtered) { + if (!filtered || typeof filtered !== 'string') { + this.warn('nonStringBundleDependency', filtered) return false } else { if (!data.dependencies) { data.dependencies = {} } - if (!Object.prototype.hasOwnProperty.call(data.dependencies, bd)) { - this.warn('nonDependencyBundleDependency', bd) - data.dependencies[bd] = '*' + if (!Object.prototype.hasOwnProperty.call(data.dependencies, filtered)) { + this.warn('nonDependencyBundleDependency', filtered) + data.dependencies[filtered] = '*' } return true } @@ -389,28 +389,28 @@ function unParsePerson (person) { } var name = person.name || '' var u = person.url || person.web - var url = u ? (' (' + u + ')') : '' + var wrappedUrl = u ? (' (' + u + ')') : '' var e = person.email || person.mail - var email = e ? (' <' + e + '>') : '' - return name + email + url + var wrappedEmail = e ? (' <' + e + '>') : '' + return name + wrappedEmail + wrappedUrl } function parsePerson (person) { if (typeof person !== 'string') { return person } - var name = person.match(/^([^(<]+)/) - var url = person.match(/\(([^()]+)\)/) - var email = person.match(/<([^<>]+)>/) + var matchedName = person.match(/^([^(<]+)/) + var matchedUrl = person.match(/\(([^()]+)\)/) + var matchedEmail = person.match(/<([^<>]+)>/) var obj = {} - if (name && name[0].trim()) { - obj.name = name[0].trim() + if (matchedName && matchedName[0].trim()) { + obj.name = matchedName[0].trim() } - if (email) { - obj.email = email[1] + if (matchedEmail) { + obj.email = matchedEmail[1] } - if (url) { - obj.url = url[1] + if (matchedUrl) { + obj.url = matchedUrl[1] } return obj } diff --git a/deps/npm/node_modules/normalize-package-data/package.json b/deps/npm/node_modules/normalize-package-data/package.json index a6f1244eb5a256f..1bec9bb8645e7f6 100644 --- a/deps/npm/node_modules/normalize-package-data/package.json +++ b/deps/npm/node_modules/normalize-package-data/package.json @@ -1,12 +1,12 @@ { "name": "normalize-package-data", - "version": "4.0.0", + "version": "4.0.1", "author": "GitHub Inc.", "description": "Normalizes data that can be found in package.json files.", "license": "BSD-2-Clause", "repository": { "type": "git", - "url": "git://github.com/npm/normalize-package-data.git" + "url": "https://github.com/npm/normalize-package-data.git" }, "main": "lib/normalize.js", "scripts": { @@ -15,13 +15,13 @@ "preversion": "npm test", "test": "tap", "npmclilint": "npmcli-lint", - "lint": "eslint '**/*.js'", + "lint": "eslint \"**/*.js\"", "lintfix": "npm run lint -- --fix", "posttest": "npm run lint", "postsnap": "npm run lintfix --", - "postlint": "npm-template-check", - "template-copy": "npm-template-copy --force", - "snap": "tap" + "postlint": "template-oss-check", + "snap": "tap", + "template-oss-apply": "template-oss-apply --force" }, "dependencies": { "hosted-git-info": "^5.0.0", @@ -30,18 +30,20 @@ "validate-npm-package-license": "^3.0.4" }, "devDependencies": { - "@npmcli/template-oss": "^2.9.2", - "tap": "^15.0.9" + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.0.1" }, "files": [ - "bin", - "lib" + "bin/", + "lib/" ], "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "templateOSS": { - "version": "2.9.2" + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" }, "tap": { "branches": 86, diff --git a/deps/npm/node_modules/npm-bundled/lib/index.js b/deps/npm/node_modules/npm-bundled/lib/index.js new file mode 100644 index 000000000000000..4f54ca647c087d4 --- /dev/null +++ b/deps/npm/node_modules/npm-bundled/lib/index.js @@ -0,0 +1,254 @@ +'use strict' + +// walk the tree of deps starting from the top level list of bundled deps +// Any deps at the top level that are depended on by a bundled dep that +// does not have that dep in its own node_modules folder are considered +// bundled deps as well. This list of names can be passed to npm-packlist +// as the "bundled" argument. Additionally, packageJsonCache is shared so +// packlist doesn't have to re-read files already consumed in this pass + +const fs = require('fs') +const path = require('path') +const EE = require('events').EventEmitter +// we don't care about the package bins, but we share a pj cache +// with other modules that DO care about it, so keep it nice. +const normalizePackageBin = require('npm-normalize-package-bin') + +class BundleWalker extends EE { + constructor (opt) { + opt = opt || {} + super(opt) + this.path = path.resolve(opt.path || process.cwd()) + + this.parent = opt.parent || null + if (this.parent) { + this.result = this.parent.result + // only collect results in node_modules folders at the top level + // since the node_modules in a bundled dep is included always + if (!this.parent.parent) { + const base = path.basename(this.path) + const scope = path.basename(path.dirname(this.path)) + this.result.add(/^@/.test(scope) ? scope + '/' + base : base) + } + this.root = this.parent.root + this.packageJsonCache = this.parent.packageJsonCache + } else { + this.result = new Set() + this.root = this.path + this.packageJsonCache = opt.packageJsonCache || new Map() + } + + this.seen = new Set() + this.didDone = false + this.children = 0 + this.node_modules = [] + this.package = null + this.bundle = null + } + + addListener (ev, fn) { + return this.on(ev, fn) + } + + on (ev, fn) { + const ret = super.on(ev, fn) + if (ev === 'done' && this.didDone) { + this.emit('done', this.result) + } + return ret + } + + done () { + if (!this.didDone) { + this.didDone = true + if (!this.parent) { + const res = Array.from(this.result) + this.result = res + this.emit('done', res) + } else { + this.emit('done') + } + } + } + + start () { + const pj = path.resolve(this.path, 'package.json') + if (this.packageJsonCache.has(pj)) { + this.onPackage(this.packageJsonCache.get(pj)) + } else { + this.readPackageJson(pj) + } + return this + } + + readPackageJson (pj) { + fs.readFile(pj, (er, data) => + er ? this.done() : this.onPackageJson(pj, data)) + } + + onPackageJson (pj, data) { + try { + this.package = normalizePackageBin(JSON.parse(data + '')) + } catch (er) { + return this.done() + } + this.packageJsonCache.set(pj, this.package) + this.onPackage(this.package) + } + + allDepsBundled (pkg) { + return Object.keys(pkg.dependencies || {}).concat( + Object.keys(pkg.optionalDependencies || {})) + } + + onPackage (pkg) { + // all deps are bundled if we got here as a child. + // otherwise, only bundle bundledDeps + // Get a unique-ified array with a short-lived Set + const bdRaw = this.parent ? this.allDepsBundled(pkg) + : pkg.bundleDependencies || pkg.bundledDependencies || [] + + const bd = Array.from(new Set( + Array.isArray(bdRaw) ? bdRaw + : bdRaw === true ? this.allDepsBundled(pkg) + : Object.keys(bdRaw))) + + if (!bd.length) { + return this.done() + } + + this.bundle = bd + this.readModules() + } + + readModules () { + readdirNodeModules(this.path + '/node_modules', (er, nm) => + er ? this.onReaddir([]) : this.onReaddir(nm)) + } + + onReaddir (nm) { + // keep track of what we have, in case children need it + this.node_modules = nm + + this.bundle.forEach(dep => this.childDep(dep)) + if (this.children === 0) { + this.done() + } + } + + childDep (dep) { + if (this.node_modules.indexOf(dep) !== -1) { + if (!this.seen.has(dep)) { + this.seen.add(dep) + this.child(dep) + } + } else if (this.parent) { + this.parent.childDep(dep) + } + } + + child (dep) { + const p = this.path + '/node_modules/' + dep + this.children += 1 + const child = new BundleWalker({ + path: p, + parent: this, + }) + child.on('done', _ => { + if (--this.children === 0) { + this.done() + } + }) + child.start() + } +} + +class BundleWalkerSync extends BundleWalker { + start () { + super.start() + this.done() + return this + } + + readPackageJson (pj) { + try { + this.onPackageJson(pj, fs.readFileSync(pj)) + } catch { + // empty catch + } + return this + } + + readModules () { + try { + this.onReaddir(readdirNodeModulesSync(this.path + '/node_modules')) + } catch { + this.onReaddir([]) + } + } + + child (dep) { + new BundleWalkerSync({ + path: this.path + '/node_modules/' + dep, + parent: this, + }).start() + } +} + +const readdirNodeModules = (nm, cb) => { + fs.readdir(nm, (er, set) => { + if (er) { + cb(er) + } else { + const scopes = set.filter(f => /^@/.test(f)) + if (!scopes.length) { + cb(null, set) + } else { + const unscoped = set.filter(f => !/^@/.test(f)) + let count = scopes.length + scopes.forEach(scope => { + fs.readdir(nm + '/' + scope, (readdirEr, pkgs) => { + if (readdirEr || !pkgs.length) { + unscoped.push(scope) + } else { + unscoped.push.apply(unscoped, pkgs.map(p => scope + '/' + p)) + } + if (--count === 0) { + cb(null, unscoped) + } + }) + }) + } + } + }) +} + +const readdirNodeModulesSync = nm => { + const set = fs.readdirSync(nm) + const unscoped = set.filter(f => !/^@/.test(f)) + const scopes = set.filter(f => /^@/.test(f)).map(scope => { + try { + const pkgs = fs.readdirSync(nm + '/' + scope) + return pkgs.length ? pkgs.map(p => scope + '/' + p) : [scope] + } catch (er) { + return [scope] + } + }).reduce((a, b) => a.concat(b), []) + return unscoped.concat(scopes) +} + +const walk = (options, callback) => { + const p = new Promise((resolve, reject) => { + new BundleWalker(options).on('done', resolve).on('error', reject).start() + }) + return callback ? p.then(res => callback(null, res), callback) : p +} + +const walkSync = options => { + return new BundleWalkerSync(options).start().result +} + +module.exports = walk +walk.sync = walkSync +walk.BundleWalker = BundleWalker +walk.BundleWalkerSync = BundleWalkerSync diff --git a/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/LICENSE b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/LICENSE new file mode 100644 index 000000000000000..19cec97b1846830 --- /dev/null +++ b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/lib/index.js b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/lib/index.js new file mode 100644 index 000000000000000..d6f0a581b9e6615 --- /dev/null +++ b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/lib/index.js @@ -0,0 +1,64 @@ +// pass in a manifest with a 'bin' field here, and it'll turn it +// into a properly santized bin object +const { join, basename } = require('path') + +const normalize = pkg => + !pkg.bin ? removeBin(pkg) + : typeof pkg.bin === 'string' ? normalizeString(pkg) + : Array.isArray(pkg.bin) ? normalizeArray(pkg) + : typeof pkg.bin === 'object' ? normalizeObject(pkg) + : removeBin(pkg) + +const normalizeString = pkg => { + if (!pkg.name) { + return removeBin(pkg) + } + pkg.bin = { [pkg.name]: pkg.bin } + return normalizeObject(pkg) +} + +const normalizeArray = pkg => { + pkg.bin = pkg.bin.reduce((acc, k) => { + acc[basename(k)] = k + return acc + }, {}) + return normalizeObject(pkg) +} + +const removeBin = pkg => { + delete pkg.bin + return pkg +} + +const normalizeObject = pkg => { + const orig = pkg.bin + const clean = {} + let hasBins = false + Object.keys(orig).forEach(binKey => { + const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1) + + if (typeof orig[binKey] !== 'string' || !base) { + return + } + + const binTarget = join('/', orig[binKey]) + .replace(/\\/g, '/').slice(1) + + if (!binTarget) { + return + } + + clean[base] = binTarget + hasBins = true + }) + + if (hasBins) { + pkg.bin = clean + } else { + delete pkg.bin + } + + return pkg +} + +module.exports = normalize diff --git a/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/package.json b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/package.json new file mode 100644 index 000000000000000..02de808d9b70255 --- /dev/null +++ b/deps/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin/package.json @@ -0,0 +1,41 @@ +{ + "name": "npm-normalize-package-bin", + "version": "2.0.0", + "description": "Turn any flavor of allowable package.json bin into a normalized object", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/npm-normalize-package-bin.git" + }, + "author": "GitHub Inc.", + "license": "ISC", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "posttest": "npm run lint" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" + } +} diff --git a/deps/npm/node_modules/npm-bundled/package.json b/deps/npm/node_modules/npm-bundled/package.json index cf20e297b0b639b..e4c0106c2d504d4 100644 --- a/deps/npm/node_modules/npm-bundled/package.json +++ b/deps/npm/node_modules/npm-bundled/package.json @@ -1,30 +1,47 @@ { "name": "npm-bundled", - "version": "1.1.2", + "version": "2.0.1", "description": "list things in node_modules that are bundledDependencies, or transitive dependencies thereof", - "main": "index.js", + "main": "lib/index.js", "repository": { "type": "git", - "url": "git+https://github.com/npm/npm-bundled.git" + "url": "https://github.com/npm/npm-bundled.git" }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", + "author": "GitHub Inc.", "license": "ISC", "devDependencies": { - "mkdirp": "^0.5.1", - "mutate-fs": "^1.1.0", - "rimraf": "^2.6.1", - "tap": "^12.0.1" + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "mkdirp": "^1.0.4", + "mutate-fs": "^2.1.1", + "rimraf": "^3.0.2", + "tap": "^16.3.0" }, "scripts": { - "test": "tap test/*.js -J --100", + "test": "tap", "preversion": "npm test", "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" + "postpublish": "git push origin --all; git push origin --tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "snap": "tap", + "posttest": "npm run lint" }, "files": [ - "index.js" + "bin/", + "lib/" ], "dependencies": { - "npm-normalize-package-bin": "^1.0.1" + "npm-normalize-package-bin": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/LICENSE b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/LICENSE new file mode 100644 index 000000000000000..19cec97b1846830 --- /dev/null +++ b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/lib/index.js b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/lib/index.js new file mode 100644 index 000000000000000..d6f0a581b9e6615 --- /dev/null +++ b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/lib/index.js @@ -0,0 +1,64 @@ +// pass in a manifest with a 'bin' field here, and it'll turn it +// into a properly santized bin object +const { join, basename } = require('path') + +const normalize = pkg => + !pkg.bin ? removeBin(pkg) + : typeof pkg.bin === 'string' ? normalizeString(pkg) + : Array.isArray(pkg.bin) ? normalizeArray(pkg) + : typeof pkg.bin === 'object' ? normalizeObject(pkg) + : removeBin(pkg) + +const normalizeString = pkg => { + if (!pkg.name) { + return removeBin(pkg) + } + pkg.bin = { [pkg.name]: pkg.bin } + return normalizeObject(pkg) +} + +const normalizeArray = pkg => { + pkg.bin = pkg.bin.reduce((acc, k) => { + acc[basename(k)] = k + return acc + }, {}) + return normalizeObject(pkg) +} + +const removeBin = pkg => { + delete pkg.bin + return pkg +} + +const normalizeObject = pkg => { + const orig = pkg.bin + const clean = {} + let hasBins = false + Object.keys(orig).forEach(binKey => { + const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1) + + if (typeof orig[binKey] !== 'string' || !base) { + return + } + + const binTarget = join('/', orig[binKey]) + .replace(/\\/g, '/').slice(1) + + if (!binTarget) { + return + } + + clean[base] = binTarget + hasBins = true + }) + + if (hasBins) { + pkg.bin = clean + } else { + delete pkg.bin + } + + return pkg +} + +module.exports = normalize diff --git a/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/package.json b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/package.json new file mode 100644 index 000000000000000..02de808d9b70255 --- /dev/null +++ b/deps/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin/package.json @@ -0,0 +1,41 @@ +{ + "name": "npm-normalize-package-bin", + "version": "2.0.0", + "description": "Turn any flavor of allowable package.json bin into a normalized object", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/npm-normalize-package-bin.git" + }, + "author": "GitHub Inc.", + "license": "ISC", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "posttest": "npm run lint" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" + } +} diff --git a/deps/npm/node_modules/npm-packlist/package.json b/deps/npm/node_modules/npm-packlist/package.json index 4c63caf21e8107b..c3c8817202a3926 100644 --- a/deps/npm/node_modules/npm-packlist/package.json +++ b/deps/npm/node_modules/npm-packlist/package.json @@ -1,6 +1,6 @@ { "name": "npm-packlist", - "version": "5.1.1", + "version": "5.1.3", "description": "Get a list of the files to add from a folder into an npm package", "directories": { "test": "test" @@ -9,8 +9,8 @@ "dependencies": { "glob": "^8.0.1", "ignore-walk": "^5.0.1", - "npm-bundled": "^1.1.2", - "npm-normalize-package-bin": "^1.0.1" + "npm-bundled": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0" }, "author": "GitHub Inc.", "license": "ISC", @@ -20,7 +20,7 @@ ], "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/template-oss": "3.6.0", "mutate-fs": "^2.1.1", "tap": "^16.0.1" }, @@ -56,6 +56,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.5.0" + "version": "3.6.0" } } diff --git a/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/LICENSE b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/LICENSE new file mode 100644 index 000000000000000..19cec97b1846830 --- /dev/null +++ b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/lib/index.js b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/lib/index.js new file mode 100644 index 000000000000000..d6f0a581b9e6615 --- /dev/null +++ b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/lib/index.js @@ -0,0 +1,64 @@ +// pass in a manifest with a 'bin' field here, and it'll turn it +// into a properly santized bin object +const { join, basename } = require('path') + +const normalize = pkg => + !pkg.bin ? removeBin(pkg) + : typeof pkg.bin === 'string' ? normalizeString(pkg) + : Array.isArray(pkg.bin) ? normalizeArray(pkg) + : typeof pkg.bin === 'object' ? normalizeObject(pkg) + : removeBin(pkg) + +const normalizeString = pkg => { + if (!pkg.name) { + return removeBin(pkg) + } + pkg.bin = { [pkg.name]: pkg.bin } + return normalizeObject(pkg) +} + +const normalizeArray = pkg => { + pkg.bin = pkg.bin.reduce((acc, k) => { + acc[basename(k)] = k + return acc + }, {}) + return normalizeObject(pkg) +} + +const removeBin = pkg => { + delete pkg.bin + return pkg +} + +const normalizeObject = pkg => { + const orig = pkg.bin + const clean = {} + let hasBins = false + Object.keys(orig).forEach(binKey => { + const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1) + + if (typeof orig[binKey] !== 'string' || !base) { + return + } + + const binTarget = join('/', orig[binKey]) + .replace(/\\/g, '/').slice(1) + + if (!binTarget) { + return + } + + clean[base] = binTarget + hasBins = true + }) + + if (hasBins) { + pkg.bin = clean + } else { + delete pkg.bin + } + + return pkg +} + +module.exports = normalize diff --git a/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/package.json b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/package.json new file mode 100644 index 000000000000000..02de808d9b70255 --- /dev/null +++ b/deps/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin/package.json @@ -0,0 +1,41 @@ +{ + "name": "npm-normalize-package-bin", + "version": "2.0.0", + "description": "Turn any flavor of allowable package.json bin into a normalized object", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/npm-normalize-package-bin.git" + }, + "author": "GitHub Inc.", + "license": "ISC", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "posttest": "npm run lint" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" + } +} diff --git a/deps/npm/node_modules/npm-pick-manifest/package.json b/deps/npm/node_modules/npm-pick-manifest/package.json index 79867d9cebaf244..b3ebc9f8de62ec8 100644 --- a/deps/npm/node_modules/npm-pick-manifest/package.json +++ b/deps/npm/node_modules/npm-pick-manifest/package.json @@ -1,6 +1,6 @@ { "name": "npm-pick-manifest", - "version": "7.0.1", + "version": "7.0.2", "description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.", "main": "./lib", "files": [ @@ -33,7 +33,7 @@ "license": "ISC", "dependencies": { "npm-install-checks": "^5.0.0", - "npm-normalize-package-bin": "^1.0.1", + "npm-normalize-package-bin": "^2.0.0", "npm-package-arg": "^9.0.0", "semver": "^7.3.5" }, diff --git a/deps/npm/node_modules/npm-registry-fetch/lib/check-response.js b/deps/npm/node_modules/npm-registry-fetch/lib/check-response.js index 714513908df40c9..066ac3c32420f24 100644 --- a/deps/npm/node_modules/npm-registry-fetch/lib/check-response.js +++ b/deps/npm/node_modules/npm-registry-fetch/lib/check-response.js @@ -61,7 +61,9 @@ function checkErrors (method, res, startTime, opts) { let parsed = body try { parsed = JSON.parse(body.toString('utf8')) - } catch (e) {} + } catch { + // ignore errors + } if (res.status === 401 && res.headers.get('www-authenticate')) { const auth = res.headers.get('www-authenticate') .split(/,\s*/) diff --git a/deps/npm/node_modules/npm-registry-fetch/lib/clean-url.js b/deps/npm/node_modules/npm-registry-fetch/lib/clean-url.js index ba31dc462f3c5db..a419b47d6a339f5 100644 --- a/deps/npm/node_modules/npm-registry-fetch/lib/clean-url.js +++ b/deps/npm/node_modules/npm-registry-fetch/lib/clean-url.js @@ -14,7 +14,9 @@ const cleanUrl = (str) => { if (url.password) { str = str.replace(url.password, replace) } - } catch {} + } catch { + // ignore errors + } return str .replace(tokenRegex, `npm_${replace}`) diff --git a/deps/npm/node_modules/npm-registry-fetch/package.json b/deps/npm/node_modules/npm-registry-fetch/package.json index 8a0189a9ef74d5d..7a3885ae12e882b 100644 --- a/deps/npm/node_modules/npm-registry-fetch/package.json +++ b/deps/npm/node_modules/npm-registry-fetch/package.json @@ -1,6 +1,6 @@ { "name": "npm-registry-fetch", - "version": "13.3.0", + "version": "13.3.1", "description": "Fetch-based http client for use with npm registry APIs", "main": "lib", "files": [ @@ -46,8 +46,10 @@ "@npmcli/eslint-config": "^3.0.1", "@npmcli/template-oss": "3.5.0", "cacache": "^16.0.2", + "mkdirp": "^1.0.4", "nock": "^13.2.4", "require-inject": "^1.4.4", + "rimraf": "^3.0.2", "ssri": "^9.0.0", "tap": "^16.0.1" }, diff --git a/deps/npm/node_modules/pacote/lib/bin.js b/deps/npm/node_modules/pacote/lib/bin.js index 4a1f911e42bc523..f35b62ca71a5371 100755 --- a/deps/npm/node_modules/pacote/lib/bin.js +++ b/deps/npm/node_modules/pacote/lib/bin.js @@ -18,10 +18,15 @@ const run = conf => { case 'tarball': if (!conf._[2] || conf._[2] === '-') { return pacote.tarball.stream(conf._[1], stream => { - stream.pipe(conf.testStdout || - /* istanbul ignore next */ process.stdout) + stream.pipe( + conf.testStdout || + /* istanbul ignore next */ + process.stdout + ) // make sure it resolves something falsey - return stream.promise().then(() => {}) + return stream.promise().then(() => { + return false + }) }, conf) } else { return pacote.tarball.file(conf._[1], conf._[2], conf) diff --git a/deps/npm/node_modules/pacote/lib/fetcher.js b/deps/npm/node_modules/pacote/lib/fetcher.js index 5f93e703bca4b89..95b6d3ee432bb9c 100644 --- a/deps/npm/node_modules/pacote/lib/fetcher.js +++ b/deps/npm/node_modules/pacote/lib/fetcher.js @@ -254,6 +254,7 @@ class FetcherBase { cstream.on('error', err => stream.emit('error', err)) stream.pipe(cstream) + // eslint-disable-next-line promise/catch-or-return cstream.promise().catch(() => {}).then(() => middleStream.end()) return middleStream } @@ -269,7 +270,10 @@ class FetcherBase { } // override the types getter - get types () {} + get types () { + return false + } + [_assertType] () { if (this.types && !this.types.includes(this.spec.type)) { throw new TypeError(`Wrong spec type (${ diff --git a/deps/npm/node_modules/pacote/lib/git.js b/deps/npm/node_modules/pacote/lib/git.js index 9d84d95fa62ab44..c4819b4fdf49c4b 100644 --- a/deps/npm/node_modules/pacote/lib/git.js +++ b/deps/npm/node_modules/pacote/lib/git.js @@ -239,7 +239,7 @@ class GitFetcher extends Fetcher { tarballOk = tarballOk && h && resolved === repoUrl(h, { noCommittish: false }) && h.tarball - return cacache.tmp.withTmp(this.cache, o, tmp => { + return cacache.tmp.withTmp(this.cache, o, async tmp => { // if we're resolved, and have a tarball url, shell out to RemoteFetcher if (tarballOk) { const nameat = this.spec.name ? `${this.spec.name}@` : '' @@ -259,16 +259,15 @@ class GitFetcher extends Fetcher { }) } - return ( + const sha = await ( h ? this[_cloneHosted](ref, tmp) : this[_cloneRepo](this.spec.fetchSpec, ref, tmp) - ).then(sha => { - this.resolvedSha = sha - if (!this.resolved) { - this[_addGitSha](sha) - } - }) - .then(() => handler(tmp)) + ) + this.resolvedSha = sha + if (!this.resolved) { + await this[_addGitSha](sha) + } + return handler(tmp) }) } diff --git a/deps/npm/node_modules/pacote/lib/remote.js b/deps/npm/node_modules/pacote/lib/remote.js index 6759dbba3ed2f25..a361a9e89782e5a 100644 --- a/deps/npm/node_modules/pacote/lib/remote.js +++ b/deps/npm/node_modules/pacote/lib/remote.js @@ -41,6 +41,7 @@ class RemoteFetcher extends Fetcher { algorithms: [this.pickIntegrityAlgorithm()], } + // eslint-disable-next-line promise/always-return fetch(this.resolved, fetchOpts).then(res => { res.body.on('error', /* istanbul ignore next - exceedingly rare and hard to simulate */ diff --git a/deps/npm/node_modules/pacote/package.json b/deps/npm/node_modules/pacote/package.json index 696c925d3532087..960530ec0b33d96 100644 --- a/deps/npm/node_modules/pacote/package.json +++ b/deps/npm/node_modules/pacote/package.json @@ -1,6 +1,6 @@ { "name": "pacote", - "version": "13.6.1", + "version": "13.6.2", "description": "JavaScript package downloader", "author": "GitHub Inc.", "bin": { diff --git a/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/LICENSE b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/LICENSE new file mode 100644 index 000000000000000..19cec97b1846830 --- /dev/null +++ b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/LICENSE @@ -0,0 +1,15 @@ +The ISC License + +Copyright (c) npm, Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR +IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/lib/index.js b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/lib/index.js new file mode 100644 index 000000000000000..d6f0a581b9e6615 --- /dev/null +++ b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/lib/index.js @@ -0,0 +1,64 @@ +// pass in a manifest with a 'bin' field here, and it'll turn it +// into a properly santized bin object +const { join, basename } = require('path') + +const normalize = pkg => + !pkg.bin ? removeBin(pkg) + : typeof pkg.bin === 'string' ? normalizeString(pkg) + : Array.isArray(pkg.bin) ? normalizeArray(pkg) + : typeof pkg.bin === 'object' ? normalizeObject(pkg) + : removeBin(pkg) + +const normalizeString = pkg => { + if (!pkg.name) { + return removeBin(pkg) + } + pkg.bin = { [pkg.name]: pkg.bin } + return normalizeObject(pkg) +} + +const normalizeArray = pkg => { + pkg.bin = pkg.bin.reduce((acc, k) => { + acc[basename(k)] = k + return acc + }, {}) + return normalizeObject(pkg) +} + +const removeBin = pkg => { + delete pkg.bin + return pkg +} + +const normalizeObject = pkg => { + const orig = pkg.bin + const clean = {} + let hasBins = false + Object.keys(orig).forEach(binKey => { + const base = join('/', basename(binKey.replace(/\\|:/g, '/'))).slice(1) + + if (typeof orig[binKey] !== 'string' || !base) { + return + } + + const binTarget = join('/', orig[binKey]) + .replace(/\\/g, '/').slice(1) + + if (!binTarget) { + return + } + + clean[base] = binTarget + hasBins = true + }) + + if (hasBins) { + pkg.bin = clean + } else { + delete pkg.bin + } + + return pkg +} + +module.exports = normalize diff --git a/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/package.json b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/package.json new file mode 100644 index 000000000000000..02de808d9b70255 --- /dev/null +++ b/deps/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin/package.json @@ -0,0 +1,41 @@ +{ + "name": "npm-normalize-package-bin", + "version": "2.0.0", + "description": "Turn any flavor of allowable package.json bin into a normalized object", + "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/npm/npm-normalize-package-bin.git" + }, + "author": "GitHub Inc.", + "license": "ISC", + "scripts": { + "test": "tap", + "snap": "tap", + "preversion": "npm test", + "postversion": "npm publish", + "postpublish": "git push origin --follow-tags", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "prepublishOnly": "git push origin --follow-tags", + "posttest": "npm run lint" + }, + "devDependencies": { + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" + } +} diff --git a/deps/npm/node_modules/read-package-json/package.json b/deps/npm/node_modules/read-package-json/package.json index 8bb77ca01f65374..82d0b72965109b4 100644 --- a/deps/npm/node_modules/read-package-json/package.json +++ b/deps/npm/node_modules/read-package-json/package.json @@ -1,6 +1,6 @@ { "name": "read-package-json", - "version": "5.0.1", + "version": "5.0.2", "author": "GitHub Inc.", "description": "The thing npm uses to read package.json files with semantics and defaults and validation", "repository": { @@ -29,11 +29,11 @@ "glob": "^8.0.1", "json-parse-even-better-errors": "^2.3.1", "normalize-package-data": "^4.0.0", - "npm-normalize-package-bin": "^1.0.1" + "npm-normalize-package-bin": "^2.0.0" }, "devDependencies": { "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.4.1", + "@npmcli/template-oss": "3.6.0", "tap": "^16.0.1" }, "license": "ISC", @@ -52,6 +52,6 @@ }, "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "3.4.1" + "version": "3.6.0" } } diff --git a/deps/npm/node_modules/socks/build/client/socksclient.js b/deps/npm/node_modules/socks/build/client/socksclient.js index 40a82a53214a42b..05da4baa4b0e39c 100644 --- a/deps/npm/node_modules/socks/build/client/socksclient.js +++ b/deps/npm/node_modules/socks/build/client/socksclient.js @@ -45,6 +45,7 @@ class SocksClient extends events_1.EventEmitter { catch (err) { if (typeof callback === 'function') { callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any return resolve(err); // Resolves pending promise (prevents memory leaks). } else { @@ -68,6 +69,7 @@ class SocksClient extends events_1.EventEmitter { client.removeAllListeners(); if (typeof callback === 'function') { callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any resolve(err); // Resolves pending promise (prevents memory leaks). } else { @@ -86,6 +88,7 @@ class SocksClient extends events_1.EventEmitter { * @returns { Promise } */ static createConnectionChain(options, callback) { + // eslint-disable-next-line no-async-promise-executor return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { // Validate SocksClientChainOptions try { @@ -94,6 +97,7 @@ class SocksClient extends events_1.EventEmitter { catch (err) { if (typeof callback === 'function') { callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any return resolve(err); // Resolves pending promise (prevents memory leaks). } else { @@ -106,7 +110,6 @@ class SocksClient extends events_1.EventEmitter { (0, util_1.shuffleArray)(options.proxies); } try { - // tslint:disable-next-line:no-increment-decrement for (let i = 0; i < options.proxies.length; i++) { const nextProxy = options.proxies[i]; // If we've reached the last proxy in the chain, the destination is the actual destination, otherwise it's the next proxy. @@ -140,6 +143,7 @@ class SocksClient extends events_1.EventEmitter { catch (err) { if (typeof callback === 'function') { callback(err); + // eslint-disable-next-line @typescript-eslint/no-explicit-any resolve(err); // Resolves pending promise (prevents memory leaks). } else { diff --git a/deps/npm/node_modules/socks/build/client/socksclient.js.map b/deps/npm/node_modules/socks/build/client/socksclient.js.map index 15d0b565ac33fc1..b39f3add4cb597e 100644 --- a/deps/npm/node_modules/socks/build/client/socksclient.js.map +++ b/deps/npm/node_modules/socks/build/client/socksclient.js.map @@ -1 +1 @@ -{"version":3,"file":"socksclient.js","sourceRoot":"","sources":["../../src/client/socksclient.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAAoC;AACpC,2BAA2B;AAC3B,yBAAyB;AACzB,+CAAyC;AACzC,mDAkB6B;AAC7B,+CAG2B;AAC3B,2DAAsD;AACtD,yCAA8D;AAg7B5D,iGAh7BM,uBAAgB,OAg7BN;AAt5BlB,MAAM,WAAY,SAAQ,qBAAY;IAgBpC,YAAY,OAA2B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,OAAO,qBACP,OAAO,CACX,CAAC;QAEF,8BAA8B;QAC9B,IAAA,oCAA0B,EAAC,OAAO,CAAC,CAAC;QAEpC,gBAAgB;QAChB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,OAA2B,EAC3B,QAAmB;QAEnB,OAAO,IAAI,OAAO,CAA8B,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAClE,8BAA8B;YAC9B,IAAI;gBACF,IAAA,oCAA0B,EAAC,OAAO,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC;aAClD;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,IAAiC,EAAE,EAAE;gBAC/D,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,oDAAoD;iBACpE;qBAAM;oBACL,OAAO,CAAC,IAAI,CAAC,CAAC;iBACf;YACH,CAAC,CAAC,CAAC;YAEH,kDAAkD;YAClD,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAU,EAAE,EAAE;gBAClC,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;YACH,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CAAC,qBAAqB,CAC1B,OAAgC,EAChC,QAAmB;QAEnB,OAAO,IAAI,OAAO,CAA8B,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;YACxE,mCAAmC;YACnC,IAAI;gBACF,IAAA,yCAA+B,EAAC,OAAO,CAAC,CAAC;aAC1C;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,IAAI,IAAgB,CAAC;YAErB,kBAAkB;YAClB,IAAI,OAAO,CAAC,cAAc,EAAE;gBAC1B,IAAA,mBAAY,EAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aAC/B;YAED,IAAI;gBACF,kDAAkD;gBAClD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBAErC,0HAA0H;oBAC1H,MAAM,eAAe,GACnB,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;wBAC9B,CAAC,CAAC,OAAO,CAAC,WAAW;wBACrB,CAAC,CAAC;4BACE,IAAI,EACF,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;gCAC3B,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS;4BAClC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;yBAClC,CAAC;oBAER,4CAA4C;oBAC5C,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,gBAAgB,CAAC;wBAChD,OAAO,EAAE,SAAS;wBAClB,KAAK,EAAE,SAAS;wBAChB,WAAW,EAAE,eAAe;wBAC5B,8HAA8H;qBAC/H,CAAC,CAAC;oBAEH,wCAAwC;oBACxC,IAAI,CAAC,IAAI,EAAE;wBACT,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;qBACtB;iBACF;gBAED,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;oBAC/B,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC,oDAAoD;iBAC9E;qBAAM;oBACL,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;iBACzB;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;aACF;QACH,CAAC,CAAA,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,cAAc,CAAC,OAA6B;QACjD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,IAAI,CAAC,CAAC,CAAC;QAE1C,qBAAqB;QACrB,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACvC,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YAC9C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;YAC5D,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;SAC3C;QAED,OAAO;QACP,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAE5C,OAAO;QACP,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAE/B,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;IACzB,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,aAAa,CAAC,IAAY;QAC/B,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QAEpB,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;QACrC,MAAM,QAAQ,GAAmB,IAAI,CAAC,SAAS,EAAE,CAAC;QAClD,IAAI,UAAU,CAAC;QAEf,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YACpC,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;SAC/C;aAAM,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YAC3C,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;SAC/C;aAAM;YACL,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;SAChD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAEvC,OAAO;YACL,WAAW;YACX,UAAU,EAAE;gBACV,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,UAAU;aACjB;YACD,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE;SACxB,CAAC;IACJ,CAAC;IAED;;OAEG;IACK,QAAQ,CAAC,QAA0B;QACzC,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;SACvB;IACH,CAAC;IAED;;;OAGG;IACI,OAAO,CAAC,cAAuB;QACpC,IAAI,CAAC,cAAc,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACzE,IAAI,CAAC,OAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;QAC3C,IAAI,CAAC,OAAO,GAAG,CAAC,GAAU,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QACxD,IAAI,CAAC,SAAS,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;QAE/C,+CAA+C;QAC/C,MAAM,KAAK,GAAG,UAAU,CACtB,GAAG,EAAE,CAAC,IAAI,CAAC,oBAAoB,EAAE,EACjC,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,2BAAe,CACxC,CAAC;QAEF,8EAA8E;QAC9E,IAAI,KAAK,CAAC,KAAK,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU,EAAE;YACpD,KAAK,CAAC,KAAK,EAAE,CAAC;SACf;QAED,yGAAyG;QACzG,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,GAAG,cAAc,CAAC;SAC9B;aAAM;YACL,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;SAChC;QAED,gCAAgC;QAChC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAE5C,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,UAAU,CAAC,CAAC;QAC3C,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QAEzC,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC7B;aAAM;YACJ,IAAI,CAAC,MAAqB,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,CAAC;YAE7D,IACE,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,SAAS;gBAC1C,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,IAAI,EACrC;gBACC,IAAI,CAAC,MAAqB,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;aACxE;SACF;QAED,6FAA6F;QAC7F,IAAI,CAAC,mBAAmB,CAAC,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE;YAC/C,YAAY,CAAC,GAAG,EAAE;gBAChB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;oBACjC,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;oBAErE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;iBACtC;gBACD,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;YACvB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED,+EAA+E;IACvE,gBAAgB;QACtB,uCACK,IAAI,CAAC,OAAO,CAAC,cAAc,KAC9B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,EAC7D,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAC7B;IACJ,CAAC;IAED;;;OAGG;IACK,oBAAoB;QAC1B,IACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EACzD;YACA,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,uBAAuB,CAAC,CAAC;SAClD;IACH,CAAC;IAED;;OAEG;IACK,gBAAgB;QACtB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,SAAS,CAAC,CAAC;QAE1C,0BAA0B;QAC1B,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;YACjC,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;QAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,qBAAqB,CAAC,IAAY;QACxC;;;UAGE;QACF,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEhC,6BAA6B;QAC7B,IAAI,CAAC,WAAW,EAAE,CAAC;IACrB,CAAC;IAED;;OAEG;IACK,WAAW;QACjB,mFAAmF;QACnF,OACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK;YACrC,IAAI,CAAC,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,4BAA4B,EAC9D;YACA,gDAAgD;YAChD,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,oBAAoB,EAAE;gBACxD,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,4CAA4C;oBAC5C,IAAI,CAAC,kCAAkC,EAAE,CAAC;iBAC3C;qBAAM;oBACL,wDAAwD;oBACxD,IAAI,CAAC,oCAAoC,EAAE,CAAC;iBAC7C;gBACD,wDAAwD;aACzD;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kDAAkD,EAAE,CAAC;gBAC1D,6DAA6D;aAC9D;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kCAAkC,EAAE,CAAC;gBAC1C,mEAAmE;aACpE;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EAAE;gBACpE,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;qBAAM;oBACL,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;aACF;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,aAAa,CAAC,CAAC;gBACvC,MAAM;aACP;SACF;IACH,CAAC;IAED;;;OAGG;IACK,cAAc;QACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,YAAY,CAAC,CAAC;IACxC,CAAC;IAED;;;OAGG;IACK,cAAc,CAAC,GAAU;QAC/B,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAChC,CAAC;IAED;;OAEG;IACK,4BAA4B;QAClC,6FAA6F;QAC7F,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QACpB,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACxD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACxD,CAAC;IAED;;;OAGG;IACK,WAAW,CAAC,GAAW;QAC7B,2FAA2F;QAC3F,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,+BAA+B;YAC/B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,KAAK,CAAC,CAAC;YAEtC,iBAAiB;YACjB,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YAEtB,4BAA4B;YAC5B,IAAI,CAAC,4BAA4B,EAAE,CAAC;YAEpC,sBAAsB;YACtB,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,uBAAgB,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAE/C,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,iBAAiB;QACjB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,sBAAsB;SACvB;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACnD;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,cAAc,CAAC;QAC7C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,6BAA6B,OACrC,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,gBAAgB;YAChB,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBAC5D,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;gBAEpB,MAAM,UAAU,GAAoB;oBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;oBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;iBACvC,CAAC;gBAEF,yCAAyC;gBACzC,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBACD,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBAEtD,mBAAmB;aACpB;iBAAM;gBACL,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aACjD;SACF;IACH,CAAC;IAED;;;OAGG;IACK,sCAAsC;QAC5C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,OAClD,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;YAEpB,MAAM,UAAU,GAAoB;gBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;gBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;aACvC,CAAC;YAEF,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,wCAAwC;QACxC,MAAM,oBAAoB,GAAG,CAAC,sBAAU,CAAC,MAAM,CAAC,CAAC;QAEjD,6FAA6F;QAC7F,sHAAsH;QACtH,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,EAAE;YAC5D,oBAAoB,CAAC,IAAI,CAAC,sBAAU,CAAC,QAAQ,CAAC,CAAC;SAChD;QAED,sBAAsB;QACtB,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,KAAK,SAAS,EAAE;YACvD,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;SAClE;QAED,yBAAyB;QACzB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,KAAK,MAAM,UAAU,IAAI,oBAAoB,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;SAC7B;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,8BAA8B,CAAC;QAC7D,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,oCAAoC;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,yCAAyC,CAAC,CAAC;SACpE;aAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,qCAAyB,EAAE;YAChD,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,+CAA+C,CAAC,CAAC;SAC1E;aAAM;YACL,6EAA6E;YAC7E,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACjC,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,MAAM,CAAC;gBAC9C,IAAI,CAAC,wBAAwB,EAAE,CAAC;gBAChC,0EAA0E;aAC3E;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC1C,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,QAAQ,CAAC;gBAChD,IAAI,CAAC,gCAAgC,EAAE,CAAC;gBACxC,qFAAqF;aACtF;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EAAE;gBAC5D,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC;gBAClE,IAAI,CAAC,8BAA8B,EAAE,CAAC;aACvC;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,4CAA4C,CAAC,CAAC;aACvE;SACF;IACH,CAAC;IAED;;;;OAIG;IACK,gCAAgC;QACtC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,IAAI,EAAE,CAAC;QAEnD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC7C,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;QAE3B,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oCAAoC,CAAC;QACnE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAEa,8BAA8B;;YAC1C,IAAI,CAAC,4BAA4B;gBAC/B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC;YAC/C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,EAAE,CAAC,CAAC;YAC1E,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;QACrD,CAAC;KAAA;IAEa,uCAAuC,CAAC,IAAY;;YAChE,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACrE,CAAC;KAAA;IAEa,iDAAiD,CAC7D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAEa,mDAAmD,CAC/D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAED;;;OAGG;IACW,kDAAkD;;YAC9D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,8BAA8B,CAAC,CAAC;YAE/D,IAAI,UAAU,GAAY,KAAK,CAAC;YAEhC,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACnD,UAAU,GAAG,MAAM,IAAI,CAAC,iDAAiD,CACvE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACH;iBAAM,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC5D,UAAU;oBACR,MAAM,IAAI,CAAC,mDAAmD,CAC5D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACL;iBAAM,IACL,IAAI,CAAC,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EACnE;gBACA,UAAU,GAAG,MAAM,IAAI,CAAC,uCAAuC,CAC7D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC,CACrE,CAAC;aACH;YAED,IAAI,CAAC,UAAU,EAAE;gBACf,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,0BAA0B,CAAC,CAAC;aACrD;iBAAM;gBACL,IAAI,CAAC,wBAAwB,EAAE,CAAC;aACjC;QACH,CAAC;KAAA;IAED;;OAEG;IACK,wBAAwB;QAC9B,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAEtB,sBAAsB;QACtB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YACpD,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACtD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjD;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oBAAoB,CAAC;QACnD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,mCAAmC,MAC3C,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,qCAAqC;gBAEvG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,6BAA6B;YAC7B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,qBAAqB,CAAC,CAAC;YAEtD,gEAAgE;YAChE,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,OAAO,EAAE;gBAC/D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aAC7D;iBAAM,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBACnE;mHACmG;gBACnG,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,4BAA4B;oBAC/B,uCAA2B,CAAC,oBAAoB,CAAC;gBACnD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBACtD;;;kBAGE;aACH;iBAAM,IACL,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,SAAS,EAC7D;gBACA,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;oBACvB,UAAU;oBACV,MAAM,EAAE,IAAI,CAAC,MAAM;iBACpB,CAAC,CAAC;aACJ;SACF;IACH,CAAC;IAED;;OAEG;IACK,sCAAsC;QAC5C,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,MAClD,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,8BAA8B;gBAEhG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED,IAAI,kBAAkB;QACpB,yBACK,IAAI,CAAC,OAAO,EACf;IACJ,CAAC;CACF;AAGC,kCAAW"} \ No newline at end of file +{"version":3,"file":"socksclient.js","sourceRoot":"","sources":["../../src/client/socksclient.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,mCAAoC;AACpC,2BAA2B;AAC3B,yBAAyB;AACzB,+CAAyC;AACzC,mDAkB6B;AAC7B,+CAG2B;AAC3B,2DAAsD;AACtD,yCAA8D;AA07B5D,iGA17BM,uBAAgB,OA07BN;AAh6BlB,MAAM,WAAY,SAAQ,qBAAY;IAgBpC,YAAY,OAA2B;QACrC,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,OAAO,qBACP,OAAO,CACX,CAAC;QAEF,8BAA8B;QAC9B,IAAA,oCAA0B,EAAC,OAAO,CAAC,CAAC;QAEpC,gBAAgB;QAChB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,OAAO,CAAC,CAAC;IAC1C,CAAC;IAED;;;;;;;OAOG;IACH,MAAM,CAAC,gBAAgB,CACrB,OAA2B,EAC3B,QAGS;QAET,OAAO,IAAI,OAAO,CAA8B,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAClE,8BAA8B;YAC9B,IAAI;gBACF,IAAA,oCAA0B,EAAC,OAAO,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC;aAClD;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,OAAO,CAAC,CAAC;YACxC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC,aAAa,EAAE,CAAC,IAAiC,EAAE,EAAE;gBAC/D,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;oBACrB,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,oDAAoD;iBACpE;qBAAM;oBACL,OAAO,CAAC,IAAI,CAAC,CAAC;iBACf;YACH,CAAC,CAAC,CAAC;YAEH,kDAAkD;YAClD,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAU,EAAE,EAAE;gBAClC,MAAM,CAAC,kBAAkB,EAAE,CAAC;gBAC5B,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;YACH,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;OAQG;IACH,MAAM,CAAC,qBAAqB,CAC1B,OAAgC,EAChC,QAGS;QAET,qDAAqD;QACrD,OAAO,IAAI,OAAO,CAA8B,CAAO,OAAO,EAAE,MAAM,EAAE,EAAE;YACxE,mCAAmC;YACnC,IAAI;gBACF,IAAA,yCAA+B,EAAC,OAAO,CAAC,CAAC;aAC1C;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBACjF;qBAAM;oBACL,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;iBACpB;aACF;YAED,IAAI,IAAgB,CAAC;YAErB,kBAAkB;YAClB,IAAI,OAAO,CAAC,cAAc,EAAE;gBAC1B,IAAA,mBAAY,EAAC,OAAO,CAAC,OAAO,CAAC,CAAC;aAC/B;YAED,IAAI;gBACF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,OAAO,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC/C,MAAM,SAAS,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;oBAErC,0HAA0H;oBAC1H,MAAM,eAAe,GACnB,CAAC,KAAK,OAAO,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;wBAC9B,CAAC,CAAC,OAAO,CAAC,WAAW;wBACrB,CAAC,CAAC;4BACE,IAAI,EACF,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;gCAC3B,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,SAAS;4BAClC,IAAI,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI;yBAClC,CAAC;oBAER,4CAA4C;oBAC5C,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,gBAAgB,CAAC;wBAChD,OAAO,EAAE,SAAS;wBAClB,KAAK,EAAE,SAAS;wBAChB,WAAW,EAAE,eAAe;wBAC5B,8HAA8H;qBAC/H,CAAC,CAAC;oBAEH,wCAAwC;oBACxC,IAAI,CAAC,IAAI,EAAE;wBACT,IAAI,GAAG,MAAM,CAAC,MAAM,CAAC;qBACtB;iBACF;gBAED,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,IAAI,EAAE,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;oBAC/B,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC,CAAC,oDAAoD;iBAC9E;qBAAM;oBACL,OAAO,CAAC,EAAC,MAAM,EAAE,IAAI,EAAC,CAAC,CAAC;iBACzB;aACF;YAAC,OAAO,GAAG,EAAE;gBACZ,IAAI,OAAO,QAAQ,KAAK,UAAU,EAAE;oBAClC,QAAQ,CAAC,GAAG,CAAC,CAAC;oBACd,8DAA8D;oBAC9D,OAAO,CAAC,GAAU,CAAC,CAAC,CAAC,oDAAoD;iBAC1E;qBAAM;oBACL,MAAM,CAAC,GAAG,CAAC,CAAC;iBACb;aACF;QACH,CAAC,CAAA,CAAC,CAAC;IACL,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,cAAc,CAAC,OAA6B;QACjD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,IAAI,CAAC,CAAC,CAAC;QAE1C,qBAAqB;QACrB,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YACvC,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;YAC9C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;SACxD;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;YAC5D,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;SAC3C;QAED,OAAO;QACP,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAE5C,OAAO;QACP,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QAE/B,OAAO,IAAI,CAAC,QAAQ,EAAE,CAAC;IACzB,CAAC;IAED;;;OAGG;IACH,MAAM,CAAC,aAAa,CAAC,IAAY;QAC/B,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QAEpB,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,EAAE,CAAC;QACrC,MAAM,QAAQ,GAAmB,IAAI,CAAC,SAAS,EAAE,CAAC;QAClD,IAAI,UAAU,CAAC;QAEf,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YACpC,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;SAC/C;aAAM,IAAI,QAAQ,KAAK,0BAAc,CAAC,IAAI,EAAE;YAC3C,UAAU,GAAG,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC,CAAC;SAC/C;aAAM;YACL,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;SAChD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,YAAY,EAAE,CAAC;QAEvC,OAAO;YACL,WAAW;YACX,UAAU,EAAE;gBACV,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,UAAU;aACjB;YACD,IAAI,EAAE,IAAI,CAAC,UAAU,EAAE;SACxB,CAAC;IACJ,CAAC;IAED;;OAEG;IACK,QAAQ,CAAC,QAA0B;QACzC,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,IAAI,CAAC,KAAK,GAAG,QAAQ,CAAC;SACvB;IACH,CAAC;IAED;;;OAGG;IACI,OAAO,CAAC,cAAuB;QACpC,IAAI,CAAC,cAAc,GAAG,CAAC,IAAY,EAAE,EAAE,CAAC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,CAAC;QACzE,IAAI,CAAC,OAAO,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,cAAc,EAAE,CAAC;QAC3C,IAAI,CAAC,OAAO,GAAG,CAAC,GAAU,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC;QACxD,IAAI,CAAC,SAAS,GAAG,GAAG,EAAE,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC;QAE/C,+CAA+C;QAC/C,MAAM,KAAK,GAAG,UAAU,CACtB,GAAG,EAAE,CAAC,IAAI,CAAC,oBAAoB,EAAE,EACjC,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI,2BAAe,CACxC,CAAC;QAEF,8EAA8E;QAC9E,IAAI,KAAK,CAAC,KAAK,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU,EAAE;YACpD,KAAK,CAAC,KAAK,EAAE,CAAC;SACf;QAED,yGAAyG;QACzG,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,GAAG,cAAc,CAAC;SAC9B;aAAM;YACL,IAAI,CAAC,MAAM,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,CAAC;SAChC;QAED,gCAAgC;QAChC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QAE5C,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,UAAU,CAAC,CAAC;QAC3C,IAAI,CAAC,aAAa,GAAG,IAAI,6BAAa,EAAE,CAAC;QAEzC,IAAI,cAAc,EAAE;YAClB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;SAC7B;aAAM;YACJ,IAAI,CAAC,MAAqB,CAAC,OAAO,CAAC,IAAI,CAAC,gBAAgB,EAAE,CAAC,CAAC;YAE7D,IACE,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,SAAS;gBAC1C,IAAI,CAAC,OAAO,CAAC,eAAe,KAAK,IAAI,EACrC;gBACC,IAAI,CAAC,MAAqB,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;aACxE;SACF;QAED,6FAA6F;QAC7F,IAAI,CAAC,mBAAmB,CAAC,aAAa,EAAE,CAAC,IAAI,EAAE,EAAE;YAC/C,YAAY,CAAC,GAAG,EAAE;gBAChB,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,CAAC,EAAE;oBACjC,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;oBAErE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;iBACtC;gBACD,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;YACvB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;IAED,+EAA+E;IACvE,gBAAgB;QACtB,uCACK,IAAI,CAAC,OAAO,CAAC,cAAc,KAC9B,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,EAC7D,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,IAC7B;IACJ,CAAC;IAED;;;OAGG;IACK,oBAAoB;QAC1B,IACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EACzD;YACA,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,uBAAuB,CAAC,CAAC;SAClD;IACH,CAAC;IAED;;OAEG;IACK,gBAAgB;QACtB,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,SAAS,CAAC,CAAC;QAE1C,0BAA0B;QAC1B,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;YACjC,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;aAAM;YACL,IAAI,CAAC,0BAA0B,EAAE,CAAC;SACnC;QAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,qBAAqB,CAAC,IAAY;QACxC;;;UAGE;QACF,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QAEhC,6BAA6B;QAC7B,IAAI,CAAC,WAAW,EAAE,CAAC;IACrB,CAAC;IAED;;OAEG;IACK,WAAW;QACjB,mFAAmF;QACnF,OACE,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,WAAW;YAC3C,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK;YACrC,IAAI,CAAC,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,4BAA4B,EAC9D;YACA,gDAAgD;YAChD,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,oBAAoB,EAAE;gBACxD,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,4CAA4C;oBAC5C,IAAI,CAAC,kCAAkC,EAAE,CAAC;iBAC3C;qBAAM;oBACL,wDAAwD;oBACxD,IAAI,CAAC,oCAAoC,EAAE,CAAC;iBAC7C;gBACD,wDAAwD;aACzD;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kDAAkD,EAAE,CAAC;gBAC1D,6DAA6D;aAC9D;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,kBAAkB,EAAE;gBAC7D,IAAI,CAAC,kCAAkC,EAAE,CAAC;gBAC1C,mEAAmE;aACpE;iBAAM,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,yBAAyB,EAAE;gBACpE,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,IAAI,KAAK,CAAC,EAAE;oBACjC,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;qBAAM;oBACL,IAAI,CAAC,sCAAsC,EAAE,CAAC;iBAC/C;aACF;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,aAAa,CAAC,CAAC;gBACvC,MAAM;aACP;SACF;IACH,CAAC;IAED;;;OAGG;IACK,cAAc;QACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,YAAY,CAAC,CAAC;IACxC,CAAC;IAED;;;OAGG;IACK,cAAc,CAAC,GAAU;QAC/B,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;IAChC,CAAC;IAED;;OAEG;IACK,4BAA4B;QAClC,6FAA6F;QAC7F,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;QACpB,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;QACxD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;QAClD,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;IACxD,CAAC;IAED;;;OAGG;IACK,WAAW,CAAC,GAAW;QAC7B,2FAA2F;QAC3F,IAAI,IAAI,CAAC,KAAK,KAAK,4BAAgB,CAAC,KAAK,EAAE;YACzC,+BAA+B;YAC/B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,KAAK,CAAC,CAAC;YAEtC,iBAAiB;YACjB,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC;YAEtB,4BAA4B;YAC5B,IAAI,CAAC,4BAA4B,EAAE,CAAC;YAEpC,sBAAsB;YACtB,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,IAAI,uBAAgB,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAE/C,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,iBAAiB;QACjB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;YAC7D,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,sBAAsB;SACvB;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YACtB,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;YAC3B,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACnD;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,cAAc,CAAC;QAC7C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;IACrC,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,6BAA6B,OACrC,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,gBAAgB;YAChB,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBAC5D,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;gBAEpB,MAAM,UAAU,GAAoB;oBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;oBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;iBACvC,CAAC;gBAEF,yCAAyC;gBACzC,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBACD,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBAEtD,mBAAmB;aACpB;iBAAM;gBACL,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aACjD;SACF;IACH,CAAC;IAED;;;OAGG;IACK,sCAAsC;QAC5C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YACtC,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,OAClD,0BAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CACxB,GAAG,CACJ,CAAC;SACH;aAAM;YACL,MAAM,IAAI,GAAG,0BAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;YAC1C,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;YAEpB,MAAM,UAAU,GAAoB;gBAClC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;gBACzB,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;aACvC,CAAC;YAEF,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED;;OAEG;IACK,0BAA0B;QAChC,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,wCAAwC;QACxC,MAAM,oBAAoB,GAAG,CAAC,sBAAU,CAAC,MAAM,CAAC,CAAC;QAEjD,6FAA6F;QAC7F,sHAAsH;QACtH,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,EAAE;YAC5D,oBAAoB,CAAC,IAAI,CAAC,sBAAU,CAAC,QAAQ,CAAC,CAAC;SAChD;QAED,sBAAsB;QACtB,IAAI,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,KAAK,SAAS,EAAE;YACvD,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC;SAClE;QAED,yBAAyB;QACzB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QAC7C,KAAK,MAAM,UAAU,IAAI,oBAAoB,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;SAC7B;QAED,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,8BAA8B,CAAC;QAC7D,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,oBAAoB,CAAC,CAAC;IACvD,CAAC;IAED;;;OAGG;IACK,oCAAoC;QAC1C,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAEvC,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,EAAE;YACpB,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,yCAAyC,CAAC,CAAC;SACpE;aAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,qCAAyB,EAAE;YAChD,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,+CAA+C,CAAC,CAAC;SAC1E;aAAM;YACL,6EAA6E;YAC7E,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACjC,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,MAAM,CAAC;gBAC9C,IAAI,CAAC,wBAAwB,EAAE,CAAC;gBAChC,0EAA0E;aAC3E;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC1C,IAAI,CAAC,oBAAoB,GAAG,sBAAU,CAAC,QAAQ,CAAC;gBAChD,IAAI,CAAC,gCAAgC,EAAE,CAAC;gBACxC,qFAAqF;aACtF;iBAAM,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EAAE;gBAC5D,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,CAAC;gBAClE,IAAI,CAAC,8BAA8B,EAAE,CAAC;aACvC;iBAAM;gBACL,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,4CAA4C,CAAC,CAAC;aACvE;SACF;IACH,CAAC;IAED;;;;OAIG;IACK,gCAAgC;QACtC,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,EAAE,CAAC;QAC/C,MAAM,QAAQ,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,QAAQ,IAAI,EAAE,CAAC;QAEnD,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAC/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC;QAC3C,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC7C,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;QAE3B,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oCAAoC,CAAC;QACnE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAEa,8BAA8B;;YAC1C,IAAI,CAAC,4BAA4B;gBAC/B,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC;YAC/C,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,2BAA2B,EAAE,CAAC,CAAC;YAC1E,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;QACrD,CAAC;KAAA;IAEa,uCAAuC,CAAC,IAAY;;YAChE,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACrE,CAAC;KAAA;IAEa,iDAAiD,CAC7D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAEa,mDAAmD,CAC/D,IAAY;;YAEZ,OAAO,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,CAAC;QAC1B,CAAC;KAAA;IAED;;;OAGG;IACW,kDAAkD;;YAC9D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,8BAA8B,CAAC,CAAC;YAE/D,IAAI,UAAU,GAAG,KAAK,CAAC;YAEvB,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,MAAM,EAAE;gBACnD,UAAU,GAAG,MAAM,IAAI,CAAC,iDAAiD,CACvE,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACH;iBAAM,IAAI,IAAI,CAAC,oBAAoB,KAAK,sBAAU,CAAC,QAAQ,EAAE;gBAC5D,UAAU;oBACR,MAAM,IAAI,CAAC,mDAAmD,CAC5D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC,CAAC,CAC1B,CAAC;aACL;iBAAM,IACL,IAAI,CAAC,oBAAoB,KAAK,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,kBAAkB,EACnE;gBACA,UAAU,GAAG,MAAM,IAAI,CAAC,uCAAuC,CAC7D,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,yBAAyB,CAAC,CACrE,CAAC;aACH;YAED,IAAI,CAAC,UAAU,EAAE;gBACf,IAAI,CAAC,WAAW,CAAC,kBAAM,CAAC,0BAA0B,CAAC,CAAC;aACrD;iBAAM;gBACL,IAAI,CAAC,wBAAwB,EAAE,CAAC;aACjC;QACH,CAAC;KAAA;IAED;;OAEG;IACK,wBAAwB;QAC9B,MAAM,IAAI,GAAG,IAAI,0BAAW,EAAE,CAAC;QAE/B,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QACtB,IAAI,CAAC,UAAU,CAAC,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;QACpD,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;QAEtB,sBAAsB;QACtB,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YAC7C,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE;YACpD,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,IAAI,CAAC,CAAC;YACrC,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC;SAC9D;aAAM;YACL,IAAI,CAAC,UAAU,CAAC,0BAAc,CAAC,QAAQ,CAAC,CAAC;YACzC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACtD,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;SACjD;QACD,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QAElD,IAAI,CAAC,4BAA4B;YAC/B,uCAA2B,CAAC,oBAAoB,CAAC;QACnD,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC;QACnC,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,kBAAkB,CAAC,CAAC;IACrD,CAAC;IAED;;;OAGG;IACK,kCAAkC;QACxC,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,mCAAmC,MAC3C,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,qCAAqC;gBAEvG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,6BAA6B;YAC7B,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,qBAAqB,CAAC,CAAC;YAEtD,gEAAgE;YAChE,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,OAAO,EAAE;gBAC/D,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;aAC7D;iBAAM,IAAI,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,IAAI,EAAE;gBACnE;mHACmG;gBACnG,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,yBAAyB,CAAC,CAAC;gBAC1D,IAAI,CAAC,4BAA4B;oBAC/B,uCAA2B,CAAC,oBAAoB,CAAC;gBACnD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;gBACtD;;;kBAGE;aACH;iBAAM,IACL,wBAAY,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,KAAK,wBAAY,CAAC,SAAS,EAC7D;gBACA,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;gBAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;gBACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;oBACvB,UAAU;oBACV,MAAM,EAAE,IAAI,CAAC,MAAM;iBACpB,CAAC,CAAC;aACJ;SACF;IACH,CAAC;IAED;;OAEG;IACK,sCAAsC;QAC5C,+EAA+E;QAC/E,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAE1C,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,MAAM,CAAC,CAAC,CAAC,KAAK,0BAAc,CAAC,OAAO,EAAE;YAC9D,IAAI,CAAC,WAAW,CACd,GAAG,kBAAM,CAAC,0CAA0C,MAClD,0BAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAC1B,EAAE,CACH,CAAC;SACH;aAAM;YACL,oBAAoB;YACpB,MAAM,WAAW,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;YAE9B,IAAI,UAA2B,CAAC;YAChC,IAAI,IAAiB,CAAC;YAEtB,OAAO;YACP,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBACvC,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBAEF,4DAA4D;gBAC5D,IAAI,UAAU,CAAC,IAAI,KAAK,SAAS,EAAE;oBACjC,UAAU,CAAC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC;iBAChD;gBAED,WAAW;aACZ;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,QAAQ,EAAE;gBAClD,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;gBAC7B,MAAM,UAAU,GACd,uCAA2B,CAAC,sBAAsB,CAAC,UAAU,CAAC,CAAC,CAAC,8BAA8B;gBAEhG,8BAA8B;gBAC9B,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC;oBACjC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;gBACF,OAAO;aACR;iBAAM,IAAI,WAAW,KAAK,0BAAc,CAAC,IAAI,EAAE;gBAC9C,8BAA8B;gBAC9B,MAAM,UAAU,GAAG,uCAA2B,CAAC,kBAAkB,CAAC;gBAClE,IAAI,IAAI,CAAC,aAAa,CAAC,MAAM,GAAG,UAAU,EAAE;oBAC1C,IAAI,CAAC,4BAA4B,GAAG,UAAU,CAAC;oBAC/C,OAAO;iBACR;gBAED,IAAI,GAAG,0BAAW,CAAC,UAAU,CAC3B,IAAI,CAAC,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAC5C,CAAC;gBAEF,UAAU,GAAG;oBACX,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC,CAAC;oBACtC,IAAI,EAAE,IAAI,CAAC,YAAY,EAAE;iBAC1B,CAAC;aACH;YAED,IAAI,CAAC,QAAQ,CAAC,4BAAgB,CAAC,WAAW,CAAC,CAAC;YAC5C,IAAI,CAAC,4BAA4B,EAAE,CAAC;YACpC,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE,EAAC,UAAU,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAC,CAAC,CAAC;SAC7D;IACH,CAAC;IAED,IAAI,kBAAkB;QACpB,yBACK,IAAI,CAAC,OAAO,EACf;IACJ,CAAC;CACF;AAGC,kCAAW"} \ No newline at end of file diff --git a/deps/npm/node_modules/socks/build/common/receivebuffer.js.map b/deps/npm/node_modules/socks/build/common/receivebuffer.js.map index 144edb0b9b336c5..af5e22090169518 100644 --- a/deps/npm/node_modules/socks/build/common/receivebuffer.js.map +++ b/deps/npm/node_modules/socks/build/common/receivebuffer.js.map @@ -1 +1 @@ -{"version":3,"file":"receivebuffer.js","sourceRoot":"","sources":["../../src/common/receivebuffer.ts"],"names":[],"mappings":";;;AAAA,MAAM,aAAa;IAKjB,YAAY,OAAe,IAAI;QAC7B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED,MAAM,CAAC,IAAY;QACjB,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAC1B,MAAM,IAAI,KAAK,CACb,6DAA6D,CAC9D,CAAC;SACH;QAED,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;YACnD,MAAM,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAC9B,IAAI,CAAC,GAAG,CACN,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,EACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CACjC,CACF,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SACvB;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QACpC,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,IAAI,CAAC,MAAc;QACjB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QACD,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,GAAG,CAAC,MAAc;QAChB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACjE,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC;QAEtB,OAAO,KAAK,CAAC;IACf,CAAC;CACF;AAEO,sCAAa"} \ No newline at end of file +{"version":3,"file":"receivebuffer.js","sourceRoot":"","sources":["../../src/common/receivebuffer.ts"],"names":[],"mappings":";;;AAAA,MAAM,aAAa;IAKjB,YAAY,IAAI,GAAG,IAAI;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;QACvC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;QAChB,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC;IAC3B,CAAC;IAED,IAAI,MAAM;QACR,OAAO,IAAI,CAAC,MAAM,CAAC;IACrB,CAAC;IAED,MAAM,CAAC,IAAY;QACjB,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE;YAC1B,MAAM,IAAI,KAAK,CACb,6DAA6D,CAC9D,CAAC;SACH;QAED,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;YACnD,MAAM,GAAG,GAAG,IAAI,CAAC,MAAM,CAAC;YACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,WAAW,CAC9B,IAAI,CAAC,GAAG,CACN,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,EACtC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CACjC,CACF,CAAC;YACF,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;SACvB;QAED,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;QACpC,OAAO,CAAC,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,IAAI,CAAC,MAAc;QACjB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QACD,OAAO,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;IAED,GAAG,CAAC,MAAc;QAChB,IAAI,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE;YACxB,MAAM,IAAI,KAAK,CACb,mEAAmE,CACpE,CAAC;SACH;QAED,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACzC,IAAI,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;QACjE,IAAI,CAAC,MAAM,IAAI,MAAM,CAAC;QAEtB,OAAO,KAAK,CAAC;IACf,CAAC;CACF;AAEO,sCAAa"} \ No newline at end of file diff --git a/deps/npm/node_modules/socks/build/common/util.js b/deps/npm/node_modules/socks/build/common/util.js index 283314a0d4456e5..f66b72e43e3861c 100644 --- a/deps/npm/node_modules/socks/build/common/util.js +++ b/deps/npm/node_modules/socks/build/common/util.js @@ -16,7 +16,6 @@ exports.SocksClientError = SocksClientError; * @param array The array to shuffle. */ function shuffleArray(array) { - // tslint:disable-next-line:no-increment-decrement for (let i = array.length - 1; i > 0; i--) { const j = Math.floor(Math.random() * (i + 1)); [array[i], array[j]] = [array[j], array[i]]; diff --git a/deps/npm/node_modules/socks/build/common/util.js.map b/deps/npm/node_modules/socks/build/common/util.js.map index 8d94a2ace787af2..f1993233d693d9f 100644 --- a/deps/npm/node_modules/socks/build/common/util.js.map +++ b/deps/npm/node_modules/socks/build/common/util.js.map @@ -1 +1 @@ -{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":";;;AAEA;;GAEG;AACH,MAAM,gBAAiB,SAAQ,KAAK;IAClC,YACE,OAAe,EACR,OAAqD;QAE5D,KAAK,CAAC,OAAO,CAAC,CAAC;QAFR,YAAO,GAAP,OAAO,CAA8C;IAG9D,CAAC;CACF;AAwBuB,4CAAgB;AAtBxC;;;GAGG;AACH,SAAS,YAAY,CAAC,KAAY;IAChC,kDAAkD;IAClD,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QACzC,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;AACH,CAAC;AAYyC,oCAAY"} \ No newline at end of file +{"version":3,"file":"util.js","sourceRoot":"","sources":["../../src/common/util.ts"],"names":[],"mappings":";;;AAEA;;GAEG;AACH,MAAM,gBAAiB,SAAQ,KAAK;IAClC,YACE,OAAe,EACR,OAAqD;QAE5D,KAAK,CAAC,OAAO,CAAC,CAAC;QAFR,YAAO,GAAP,OAAO,CAA8C;IAG9D,CAAC;CACF;AAuBuB,4CAAgB;AArBxC;;;GAGG;AACH,SAAS,YAAY,CAAC,KAAgB;IACpC,KAAK,IAAI,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,EAAE;QACzC,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QAC9C,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;KAC7C;AACH,CAAC;AAYyC,oCAAY"} \ No newline at end of file diff --git a/deps/npm/node_modules/socks/build/index.js b/deps/npm/node_modules/socks/build/index.js index 17b6f42df8e5bb8..05fbb1d949b486e 100644 --- a/deps/npm/node_modules/socks/build/index.js +++ b/deps/npm/node_modules/socks/build/index.js @@ -1,7 +1,11 @@ "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; diff --git a/deps/npm/node_modules/socks/build/index.js.map b/deps/npm/node_modules/socks/build/index.js.map index ff654a08e01b32a..0e2bcb27b8ba124 100644 --- a/deps/npm/node_modules/socks/build/index.js.map +++ b/deps/npm/node_modules/socks/build/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uDAAqC"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"} \ No newline at end of file diff --git a/deps/npm/node_modules/socks/package.json b/deps/npm/node_modules/socks/package.json index 61c3f1dcf17fdd9..ac0b6d39fbdf702 100644 --- a/deps/npm/node_modules/socks/package.json +++ b/deps/npm/node_modules/socks/package.json @@ -1,7 +1,7 @@ { "name": "socks", "private": false, - "version": "2.6.2", + "version": "2.7.0", "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.", "main": "build/index.js", "typings": "typings/index.d.ts", @@ -34,50 +34,25 @@ "readmeFilename": "README.md", "devDependencies": { "@types/ip": "1.1.0", - "@types/mocha": "^9.1.0", - "@types/node": "^17.0.15", - "coveralls": "^3.1.1", - "mocha": "^9.2.0", - "nyc": "15.1.0", - "prettier": "^2.5.1", - "socks5-server": "^0.1.1", - "ts-node": "^10.4.0", - "typescript": "^4.5.5" + "@types/mocha": "^9.1.1", + "@types/node": "^18.0.6", + "@typescript-eslint/eslint-plugin": "^5.30.6", + "@typescript-eslint/parser": "^5.30.6", + "eslint": "^8.20.0", + "mocha": "^10.0.0", + "prettier": "^2.7.1", + "ts-node": "^10.9.1", + "typescript": "^4.7.4" }, "dependencies": { - "ip": "^1.1.5", + "ip": "^2.0.0", "smart-buffer": "^4.2.0" }, "scripts": { "prepublish": "npm install -g typescript && npm run build", "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts", "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml", - "coverage": "NODE_ENV=test nyc npm test", - "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls", - "lint": "tslint --project tsconfig.json 'src/**/*.ts'", + "lint": "eslint 'src/**/*.ts'", "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ." - }, - "nyc": { - "extension": [ - ".ts", - ".tsx" - ], - "include": [ - "src/*.ts", - "src/**/*.ts" - ], - "exclude": [ - "**.*.d.ts", - "node_modules", - "typings" - ], - "require": [ - "ts-node/register" - ], - "reporter": [ - "json", - "html" - ], - "all": true } } diff --git a/deps/npm/node_modules/socks/typings/client/socksclient.d.ts b/deps/npm/node_modules/socks/typings/client/socksclient.d.ts index d8ce1b965f0e0c7..b886d95710b31c2 100644 --- a/deps/npm/node_modules/socks/typings/client/socksclient.d.ts +++ b/deps/npm/node_modules/socks/typings/client/socksclient.d.ts @@ -1,4 +1,6 @@ /// +/// +/// import { EventEmitter } from 'events'; import { SocksClientOptions, SocksClientChainOptions, SocksRemoteHost, SocksProxy, SocksClientBoundEvent, SocksClientEstablishedEvent, SocksUDPFrameDetails } from '../common/constants'; import { SocksClientError } from '../common/util'; @@ -7,11 +9,11 @@ declare interface SocksClient { on(event: 'error', listener: (err: SocksClientError) => void): this; on(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this; on(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this; - once(event: string, listener: (...args: any[]) => void): this; + once(event: string, listener: (...args: unknown[]) => void): this; once(event: 'error', listener: (err: SocksClientError) => void): this; once(event: 'bound', listener: (info: SocksClientBoundEvent) => void): this; once(event: 'established', listener: (info: SocksClientEstablishedEvent) => void): this; - emit(event: string | symbol, ...args: any[]): boolean; + emit(event: string | symbol, ...args: unknown[]): boolean; emit(event: 'error', err: SocksClientError): boolean; emit(event: 'bound', info: SocksClientBoundEvent): boolean; emit(event: 'established', info: SocksClientEstablishedEvent): boolean; @@ -36,7 +38,7 @@ declare class SocksClient extends EventEmitter implements SocksClient { * @param callback { Function } An optional callback function. * @returns { Promise } */ - static createConnection(options: SocksClientOptions, callback?: Function): Promise; + static createConnection(options: SocksClientOptions, callback?: (error: Error | null, info?: SocksClientEstablishedEvent) => void): Promise; /** * Creates a new SOCKS connection chain to a destination host through 2 or more SOCKS proxies. * @@ -46,7 +48,7 @@ declare class SocksClient extends EventEmitter implements SocksClient { * @param callback { Function } An optional callback function. * @returns { Promise } */ - static createConnectionChain(options: SocksClientChainOptions, callback?: Function): Promise; + static createConnectionChain(options: SocksClientChainOptions, callback?: (error: Error | null, socket?: SocksClientEstablishedEvent) => void): Promise; /** * Creates a SOCKS UDP Frame. * @param options diff --git a/deps/npm/node_modules/socks/typings/common/constants.d.ts b/deps/npm/node_modules/socks/typings/common/constants.d.ts index 664795cb180fb90..32a570528350768 100644 --- a/deps/npm/node_modules/socks/typings/common/constants.d.ts +++ b/deps/npm/node_modules/socks/typings/common/constants.d.ts @@ -1,4 +1,6 @@ /// +/// +/// import { Duplex } from 'stream'; import { Socket, SocketConnectOpts } from 'net'; import { RequireOnlyOne } from './util'; diff --git a/deps/npm/node_modules/socks/typings/common/util.d.ts b/deps/npm/node_modules/socks/typings/common/util.d.ts index 29c539adaabc453..83f20e7b5978e86 100644 --- a/deps/npm/node_modules/socks/typings/common/util.d.ts +++ b/deps/npm/node_modules/socks/typings/common/util.d.ts @@ -10,7 +10,7 @@ declare class SocksClientError extends Error { * Shuffles a given array. * @param array The array to shuffle. */ -declare function shuffleArray(array: any[]): void; +declare function shuffleArray(array: unknown[]): void; declare type RequireOnlyOne = Pick> & { [K in Keys]?: Required> & Partial, undefined>>; }[Keys]; diff --git a/deps/npm/node_modules/unique-filename/coverage/__root__/index.html b/deps/npm/node_modules/unique-filename/coverage/__root__/index.html deleted file mode 100644 index cd55391a67a4cef..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/__root__/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - Code coverage report for __root__/ - - - - - - -
-

Code coverage report for __root__/

-

- Statements: 100% (4 / 4)      - Branches: 100% (2 / 2)      - Functions: 100% (1 / 1)      - Lines: 100% (4 / 4)      - Ignored: none      -

-
All files » __root__/
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
index.js100%(4 / 4)100%(2 / 2)100%(1 / 1)100%(4 / 4)
-
-
- - - - - - diff --git a/deps/npm/node_modules/unique-filename/coverage/__root__/index.js.html b/deps/npm/node_modules/unique-filename/coverage/__root__/index.js.html deleted file mode 100644 index 02e5768d3fb6472..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/__root__/index.js.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - Code coverage report for index.js - - - - - - -
-

Code coverage report for index.js

-

- Statements: 100% (4 / 4)      - Branches: 100% (2 / 2)      - Functions: 100% (1 / 1)      - Lines: 100% (4 / 4)      - Ignored: none      -

-
All files » __root__/ » index.js
-
-
-

-
-
1 -2 -3 -4 -5 -6 -7 -8 -9  -1 -  -1 -  -1 -6 -  - 
'use strict'
-var path = require('path')
- 
-var uniqueSlug = require('unique-slug')
- 
-module.exports = function (filepath, prefix, uniq) {
-  return path.join(filepath, (prefix ? prefix + '-' : '') + uniqueSlug(uniq))
-}
- 
- -
- - - - - - diff --git a/deps/npm/node_modules/unique-filename/coverage/base.css b/deps/npm/node_modules/unique-filename/coverage/base.css deleted file mode 100644 index a6a2f3284d0221e..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/base.css +++ /dev/null @@ -1,182 +0,0 @@ -body, html { - margin:0; padding: 0; -} -body { - font-family: Helvetica Neue, Helvetica,Arial; - font-size: 10pt; -} -div.header, div.footer { - background: #eee; - padding: 1em; -} -div.header { - z-index: 100; - position: fixed; - top: 0; - border-bottom: 1px solid #666; - width: 100%; -} -div.footer { - border-top: 1px solid #666; -} -div.body { - margin-top: 10em; -} -div.meta { - font-size: 90%; - text-align: center; -} -h1, h2, h3 { - font-weight: normal; -} -h1 { - font-size: 12pt; -} -h2 { - font-size: 10pt; -} -pre { - font-family: Consolas, Menlo, Monaco, monospace; - margin: 0; - padding: 0; - line-height: 1.3; - font-size: 14px; - -moz-tab-size: 2; - -o-tab-size: 2; - tab-size: 2; -} - -div.path { font-size: 110%; } -div.path a:link, div.path a:visited { color: #000; } -table.coverage { border-collapse: collapse; margin:0; padding: 0 } - -table.coverage td { - margin: 0; - padding: 0; - color: #111; - vertical-align: top; -} -table.coverage td.line-count { - width: 50px; - text-align: right; - padding-right: 5px; -} -table.coverage td.line-coverage { - color: #777 !important; - text-align: right; - border-left: 1px solid #666; - border-right: 1px solid #666; -} - -table.coverage td.text { -} - -table.coverage td span.cline-any { - display: inline-block; - padding: 0 5px; - width: 40px; -} -table.coverage td span.cline-neutral { - background: #eee; -} -table.coverage td span.cline-yes { - background: #b5d592; - color: #999; -} -table.coverage td span.cline-no { - background: #fc8c84; -} - -.cstat-yes { color: #111; } -.cstat-no { background: #fc8c84; color: #111; } -.fstat-no { background: #ffc520; color: #111 !important; } -.cbranch-no { background: yellow !important; color: #111; } - -.cstat-skip { background: #ddd; color: #111; } -.fstat-skip { background: #ddd; color: #111 !important; } -.cbranch-skip { background: #ddd !important; color: #111; } - -.missing-if-branch { - display: inline-block; - margin-right: 10px; - position: relative; - padding: 0 4px; - background: black; - color: yellow; -} - -.skip-if-branch { - display: none; - margin-right: 10px; - position: relative; - padding: 0 4px; - background: #ccc; - color: white; -} - -.missing-if-branch .typ, .skip-if-branch .typ { - color: inherit !important; -} - -.entity, .metric { font-weight: bold; } -.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; } -.metric small { font-size: 80%; font-weight: normal; color: #666; } - -div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; } -div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; } -div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; } -div.coverage-summary th.file { border-right: none !important; } -div.coverage-summary th.pic { border-left: none !important; text-align: right; } -div.coverage-summary th.pct { border-right: none !important; } -div.coverage-summary th.abs { border-left: none !important; text-align: right; } -div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; } -div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; } -div.coverage-summary td.file { border-left: 1px solid #666; white-space: nowrap; } -div.coverage-summary td.pic { min-width: 120px !important; } -div.coverage-summary a:link { text-decoration: none; color: #000; } -div.coverage-summary a:visited { text-decoration: none; color: #777; } -div.coverage-summary a:hover { text-decoration: underline; } -div.coverage-summary tfoot td { border-top: 1px solid #666; } - -div.coverage-summary .sorter { - height: 10px; - width: 7px; - display: inline-block; - margin-left: 0.5em; - background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent; -} -div.coverage-summary .sorted .sorter { - background-position: 0 -20px; -} -div.coverage-summary .sorted-desc .sorter { - background-position: 0 -10px; -} - -.high { background: #b5d592 !important; } -.medium { background: #ffe87c !important; } -.low { background: #fc8c84 !important; } - -span.cover-fill, span.cover-empty { - display:inline-block; - border:1px solid #444; - background: white; - height: 12px; -} -span.cover-fill { - background: #ccc; - border-right: 1px solid #444; -} -span.cover-empty { - background: white; - border-left: none; -} -span.cover-full { - border-right: none !important; -} -pre.prettyprint { - border: none !important; - padding: 0 !important; - margin: 0 !important; -} -.com { color: #999 !important; } -.ignore-none { color: #999; font-weight: normal; } diff --git a/deps/npm/node_modules/unique-filename/coverage/index.html b/deps/npm/node_modules/unique-filename/coverage/index.html deleted file mode 100644 index b10d186cc3978ef..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/index.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - Code coverage report for All files - - - - - - -
-

Code coverage report for All files

-

- Statements: 100% (4 / 4)      - Branches: 100% (2 / 2)      - Functions: 100% (1 / 1)      - Lines: 100% (4 / 4)      - Ignored: none      -

-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FileStatementsBranchesFunctionsLines
__root__/100%(4 / 4)100%(2 / 2)100%(1 / 1)100%(4 / 4)
-
-
- - - - - - diff --git a/deps/npm/node_modules/unique-filename/coverage/prettify.css b/deps/npm/node_modules/unique-filename/coverage/prettify.css deleted file mode 100644 index b317a7cda31a440..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/prettify.css +++ /dev/null @@ -1 +0,0 @@ -.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} diff --git a/deps/npm/node_modules/unique-filename/coverage/prettify.js b/deps/npm/node_modules/unique-filename/coverage/prettify.js deleted file mode 100644 index ef51e03866898f7..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/prettify.js +++ /dev/null @@ -1 +0,0 @@ -window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);c(g([[F,/^[\s]+/,null," \t\r\n"],[n,/^(?:\"[^\"]*\"?|\'[^\']*\'?)/,null,"\"'"]],[[m,/^^<\/?[a-z](?:[\w.:-]*\w)?|\/?>$/i],[P,/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^>\'\"\s]*(?:[^>\'\"\s\/]|\/(?=\s)))/],[L,/^[=<>\/]+/],["lang-js",/^on\w+\s*=\s*\"([^\"]+)\"/i],["lang-js",/^on\w+\s*=\s*\'([^\']+)\'/i],["lang-js",/^on\w+\s*=\s*([^\"\'>\s]+)/i],["lang-css",/^style\s*=\s*\"([^\"]+)\"/i],["lang-css",/^style\s*=\s*\'([^\']+)\'/i],["lang-css",/^style\s*=\s*([^\"\'>\s]+)/i]]),["in.tag"]);c(g([],[[n,/^[\s\S]+/]]),["uq.val"]);c(i({keywords:l,hashComments:true,cStyleComments:true,types:e}),["c","cc","cpp","cxx","cyc","m"]);c(i({keywords:"null,true,false"}),["json"]);c(i({keywords:R,hashComments:true,cStyleComments:true,verbatimStrings:true,types:e}),["cs"]);c(i({keywords:x,cStyleComments:true}),["java"]);c(i({keywords:H,hashComments:true,multiLineStrings:true}),["bsh","csh","sh"]);c(i({keywords:I,hashComments:true,multiLineStrings:true,tripleQuotedStrings:true}),["cv","py"]);c(i({keywords:s,hashComments:true,multiLineStrings:true,regexLiterals:true}),["perl","pl","pm"]);c(i({keywords:f,hashComments:true,multiLineStrings:true,regexLiterals:true}),["rb"]);c(i({keywords:w,cStyleComments:true,regexLiterals:true}),["js"]);c(i({keywords:r,hashComments:3,cStyleComments:true,multilineStrings:true,tripleQuotedStrings:true,regexLiterals:true}),["coffee"]);c(g([],[[C,/^[\s\S]+/]]),["regex"]);function d(V){var U=V.langExtension;try{var S=a(V.sourceNode);var T=S.sourceCode;V.sourceCode=T;V.spans=S.spans;V.basePos=0;q(U,T)(V);D(V)}catch(W){if("console" in window){console.log(W&&W.stack?W.stack:W)}}}function y(W,V,U){var S=document.createElement("PRE");S.innerHTML=W;if(U){Q(S,U)}var T={langExtension:V,numberLines:U,sourceNode:S};d(T);return S.innerHTML}function b(ad){function Y(af){return document.getElementsByTagName(af)}var ac=[Y("pre"),Y("code"),Y("xmp")];var T=[];for(var aa=0;aa=0){var ah=ai.match(ab);var am;if(!ah&&(am=o(aj))&&"CODE"===am.tagName){ah=am.className.match(ab)}if(ah){ah=ah[1]}var al=false;for(var ak=aj.parentNode;ak;ak=ak.parentNode){if((ak.tagName==="pre"||ak.tagName==="code"||ak.tagName==="xmp")&&ak.className&&ak.className.indexOf("prettyprint")>=0){al=true;break}}if(!al){var af=aj.className.match(/\blinenums\b(?::(\d+))?/);af=af?af[1]&&af[1].length?+af[1]:true:false;if(af){Q(aj,af)}S={langExtension:ah,sourceNode:aj,numberLines:af};d(S)}}}if(X]*(?:>|$)/],[PR.PR_COMMENT,/^<\!--[\s\S]*?(?:-\->|$)/],[PR.PR_PUNCTUATION,/^(?:<[%?]|[%?]>)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-handlebars",/^]*type\s*=\s*['"]?text\/x-handlebars-template['"]?\b[^>]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-js",/^]*>([\s\S]*?)(<\/script\b[^>]*>)/i],["lang-css",/^]*>([\s\S]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i],[PR.PR_DECLARATION,/^{{[#^>/]?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{&?\s*[\w.][^}]*}}/],[PR.PR_DECLARATION,/^{{{>?\s*[\w.][^}]*}}}/],[PR.PR_COMMENT,/^{{![^}]*}}/]]),["handlebars","hbs"]);PR.registerLangHandler(PR.createSimpleLexer([[PR.PR_PLAIN,/^[ \t\r\n\f]+/,null," \t\r\n\f"]],[[PR.PR_STRING,/^\"(?:[^\n\r\f\\\"]|\\(?:\r\n?|\n|\f)|\\[\s\S])*\"/,null],[PR.PR_STRING,/^\'(?:[^\n\r\f\\\']|\\(?:\r\n?|\n|\f)|\\[\s\S])*\'/,null],["lang-css-str",/^url\(([^\)\"\']*)\)/i],[PR.PR_KEYWORD,/^(?:url|rgb|\!important|@import|@page|@media|@charset|inherit)(?=[^\-\w]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|(?:\\[0-9a-f]+ ?))(?:[_a-z0-9\-]|\\(?:\\[0-9a-f]+ ?))*)\s*:/i],[PR.PR_COMMENT,/^\/\*[^*]*\*+(?:[^\/*][^*]*\*+)*\//],[PR.PR_COMMENT,/^(?:)/],[PR.PR_LITERAL,/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],[PR.PR_LITERAL,/^#(?:[0-9a-f]{3}){1,2}/i],[PR.PR_PLAIN,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i],[PR.PR_PUNCTUATION,/^[^\s\w\'\"]+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_KEYWORD,/^-?(?:[_a-z]|(?:\\[\da-f]+ ?))(?:[_a-z\d\-]|\\(?:\\[\da-f]+ ?))*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[[PR.PR_STRING,/^[^\)\"\']+/]]),["css-str"]); diff --git a/deps/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png b/deps/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png deleted file mode 100644 index 03f704a609c6fd0..000000000000000 Binary files a/deps/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png and /dev/null differ diff --git a/deps/npm/node_modules/unique-filename/coverage/sorter.js b/deps/npm/node_modules/unique-filename/coverage/sorter.js deleted file mode 100644 index 6afb736c39fb15d..000000000000000 --- a/deps/npm/node_modules/unique-filename/coverage/sorter.js +++ /dev/null @@ -1,156 +0,0 @@ -var addSorting = (function () { - "use strict"; - var cols, - currentSort = { - index: 0, - desc: false - }; - - // returns the summary table element - function getTable() { return document.querySelector('.coverage-summary table'); } - // returns the thead element of the summary table - function getTableHeader() { return getTable().querySelector('thead tr'); } - // returns the tbody element of the summary table - function getTableBody() { return getTable().querySelector('tbody'); } - // returns the th element for nth column - function getNthColumn(n) { return getTableHeader().querySelectorAll('th')[n]; } - - // loads all columns - function loadColumns() { - var colNodes = getTableHeader().querySelectorAll('th'), - colNode, - cols = [], - col, - i; - - for (i = 0; i < colNodes.length; i += 1) { - colNode = colNodes[i]; - col = { - key: colNode.getAttribute('data-col'), - sortable: !colNode.getAttribute('data-nosort'), - type: colNode.getAttribute('data-type') || 'string' - }; - cols.push(col); - if (col.sortable) { - col.defaultDescSort = col.type === 'number'; - colNode.innerHTML = colNode.innerHTML + ''; - } - } - return cols; - } - // attaches a data attribute to every tr element with an object - // of data values keyed by column name - function loadRowData(tableRow) { - var tableCols = tableRow.querySelectorAll('td'), - colNode, - col, - data = {}, - i, - val; - for (i = 0; i < tableCols.length; i += 1) { - colNode = tableCols[i]; - col = cols[i]; - val = colNode.getAttribute('data-value'); - if (col.type === 'number') { - val = Number(val); - } - data[col.key] = val; - } - return data; - } - // loads all row data - function loadData() { - var rows = getTableBody().querySelectorAll('tr'), - i; - - for (i = 0; i < rows.length; i += 1) { - rows[i].data = loadRowData(rows[i]); - } - } - // sorts the table using the data for the ith column - function sortByIndex(index, desc) { - var key = cols[index].key, - sorter = function (a, b) { - a = a.data[key]; - b = b.data[key]; - return a < b ? -1 : a > b ? 1 : 0; - }, - finalSorter = sorter, - tableBody = document.querySelector('.coverage-summary tbody'), - rowNodes = tableBody.querySelectorAll('tr'), - rows = [], - i; - - if (desc) { - finalSorter = function (a, b) { - return -1 * sorter(a, b); - }; - } - - for (i = 0; i < rowNodes.length; i += 1) { - rows.push(rowNodes[i]); - tableBody.removeChild(rowNodes[i]); - } - - rows.sort(finalSorter); - - for (i = 0; i < rows.length; i += 1) { - tableBody.appendChild(rows[i]); - } - } - // removes sort indicators for current column being sorted - function removeSortIndicators() { - var col = getNthColumn(currentSort.index), - cls = col.className; - - cls = cls.replace(/ sorted$/, '').replace(/ sorted-desc$/, ''); - col.className = cls; - } - // adds sort indicators for current column being sorted - function addSortIndicators() { - getNthColumn(currentSort.index).className += currentSort.desc ? ' sorted-desc' : ' sorted'; - } - // adds event listeners for all sorter widgets - function enableUI() { - var i, - el, - ithSorter = function ithSorter(i) { - var col = cols[i]; - - return function () { - var desc = col.defaultDescSort; - - if (currentSort.index === i) { - desc = !currentSort.desc; - } - sortByIndex(i, desc); - removeSortIndicators(); - currentSort.index = i; - currentSort.desc = desc; - addSortIndicators(); - }; - }; - for (i =0 ; i < cols.length; i += 1) { - if (cols[i].sortable) { - el = getNthColumn(i).querySelector('.sorter'); - if (el.addEventListener) { - el.addEventListener('click', ithSorter(i)); - } else { - el.attachEvent('onclick', ithSorter(i)); - } - } - } - } - // adds sorting functionality to the UI - return function () { - if (!getTable()) { - return; - } - cols = loadColumns(); - loadData(cols); - addSortIndicators(); - enableUI(); - }; -})(); - -window.addEventListener('load', addSorting); diff --git a/deps/npm/node_modules/unique-filename/index.js b/deps/npm/node_modules/unique-filename/lib/index.js similarity index 93% rename from deps/npm/node_modules/unique-filename/index.js rename to deps/npm/node_modules/unique-filename/lib/index.js index 02bf1e273143c1f..d067d2e709809ac 100644 --- a/deps/npm/node_modules/unique-filename/index.js +++ b/deps/npm/node_modules/unique-filename/lib/index.js @@ -1,4 +1,3 @@ -'use strict' var path = require('path') var uniqueSlug = require('unique-slug') diff --git a/deps/npm/node_modules/unique-filename/package.json b/deps/npm/node_modules/unique-filename/package.json index bc429aa44b079ac..bfdec2c3722a0ce 100644 --- a/deps/npm/node_modules/unique-filename/package.json +++ b/deps/npm/node_modules/unique-filename/package.json @@ -1,27 +1,48 @@ { "name": "unique-filename", - "version": "1.1.1", + "version": "2.0.1", "description": "Generate a unique filename for use in temporary directories or caches.", - "main": "index.js", + "main": "lib/index.js", "scripts": { - "test": "standard && tap test" + "test": "tap", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "snap": "tap", + "posttest": "npm run lint" }, "repository": { "type": "git", - "url": "https://github.com/iarna/unique-filename.git" + "url": "https://github.com/npm/unique-filename.git" }, "keywords": [], - "author": "Rebecca Turner (http://re-becca.org/)", + "author": "GitHub Inc.", "license": "ISC", "bugs": { "url": "https://github.com/iarna/unique-filename/issues" }, "homepage": "https://github.com/iarna/unique-filename", "devDependencies": { - "standard": "^5.4.1", - "tap": "^2.3.1" + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" }, "dependencies": { - "unique-slug": "^2.0.0" + "unique-slug": "^3.0.0" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/unique-filename/test/index.js b/deps/npm/node_modules/unique-filename/test/index.js deleted file mode 100644 index 105b4e52e8b407c..000000000000000 --- a/deps/npm/node_modules/unique-filename/test/index.js +++ /dev/null @@ -1,23 +0,0 @@ -'sue strict' -var t = require('tap') -var uniqueFilename = require('../index.js') - -t.plan(6) - -var randomTmpfile = uniqueFilename('tmp') -t.like(randomTmpfile, /^tmp.[a-f0-9]{8}$/, 'random tmp file') - -var randomAgain = uniqueFilename('tmp') -t.notEqual(randomAgain, randomTmpfile, 'random tmp files are not the same') - -var randomPrefixedTmpfile = uniqueFilename('tmp', 'my-test') -t.like(randomPrefixedTmpfile, /^tmp.my-test-[a-f0-9]{8}$/, 'random prefixed tmp file') - -var randomPrefixedAgain = uniqueFilename('tmp', 'my-test') -t.notEqual(randomPrefixedAgain, randomPrefixedTmpfile, 'random prefixed tmp files are not the same') - -var uniqueTmpfile = uniqueFilename('tmp', 'testing', '/my/thing/to/uniq/on') -t.like(uniqueTmpfile, /^tmp.testing-7ddd44c0$/, 'unique filename') - -var uniqueAgain = uniqueFilename('tmp', 'testing', '/my/thing/to/uniq/on') -t.is(uniqueTmpfile, uniqueAgain, 'same unique string component produces same filename') diff --git a/deps/npm/node_modules/unique-slug/index.js b/deps/npm/node_modules/unique-slug/lib/index.js similarity index 55% rename from deps/npm/node_modules/unique-slug/index.js rename to deps/npm/node_modules/unique-slug/lib/index.js index fa4761ad2e25899..1bac84d95d73070 100644 --- a/deps/npm/node_modules/unique-slug/index.js +++ b/deps/npm/node_modules/unique-slug/lib/index.js @@ -4,8 +4,8 @@ var MurmurHash3 = require('imurmurhash') module.exports = function (uniq) { if (uniq) { var hash = new MurmurHash3(uniq) - return ('00000000' + hash.result().toString(16)).substr(-8) + return ('00000000' + hash.result().toString(16)).slice(-8) } else { - return (Math.random().toString(16) + '0000000').substr(2, 8) + return (Math.random().toString(16) + '0000000').slice(2, 10) } } diff --git a/deps/npm/node_modules/unique-slug/package.json b/deps/npm/node_modules/unique-slug/package.json index 2142e68561f5d8f..3194408f27fdaab 100644 --- a/deps/npm/node_modules/unique-slug/package.json +++ b/deps/npm/node_modules/unique-slug/package.json @@ -1,23 +1,44 @@ { "name": "unique-slug", - "version": "2.0.2", + "version": "3.0.0", "description": "Generate a unique character string suitible for use in files and URLs.", - "main": "index.js", + "main": "lib/index.js", "scripts": { - "test": "standard && tap --coverage test" + "test": "tap", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", + "template-oss-apply": "template-oss-apply --force", + "lintfix": "npm run lint -- --fix", + "preversion": "npm test", + "postversion": "npm publish", + "prepublishOnly": "git push origin --follow-tags", + "snap": "tap", + "posttest": "npm run lint" }, "keywords": [], - "author": "Rebecca Turner (http://re-becca.org)", + "author": "GitHub Inc.", "license": "ISC", "devDependencies": { - "standard": "^12.0.1", - "tap": "^12.7.0" + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/template-oss": "3.5.0", + "tap": "^16.3.0" }, "repository": { "type": "git", - "url": "git://github.com/iarna/unique-slug.git" + "url": "https://github.com/npm/unique-slug.git" }, "dependencies": { "imurmurhash": "^0.1.4" + }, + "files": [ + "bin/", + "lib/" + ], + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", + "version": "3.5.0" } } diff --git a/deps/npm/node_modules/unique-slug/test/index.js b/deps/npm/node_modules/unique-slug/test/index.js deleted file mode 100644 index 0f4ccad04af6fd4..000000000000000 --- a/deps/npm/node_modules/unique-slug/test/index.js +++ /dev/null @@ -1,13 +0,0 @@ -'use strict' -var t = require('tap') -var uniqueSlug = require('../index.js') - -t.plan(5) -var slugA = uniqueSlug() -t.is(slugA.length, 8, 'random slugs are 8 chars') -t.notEqual(slugA, uniqueSlug(), "two slugs aren't the same") -var base = '/path/to/thingy' -var slugB = uniqueSlug(base) -t.is(slugB.length, 8, 'string based slugs are 8 chars') -t.is(slugB, uniqueSlug(base), 'two string based slugs, from the same string are the same') -t.notEqual(slugB, uniqueSlug(slugA), 'two string based slongs, from diff strings are different') diff --git a/deps/npm/node_modules/write-file-atomic/lib/index.js b/deps/npm/node_modules/write-file-atomic/lib/index.js index 118666d2ce6d824..9d79d797a553fe5 100644 --- a/deps/npm/node_modules/write-file-atomic/lib/index.js +++ b/deps/npm/node_modules/write-file-atomic/lib/index.js @@ -39,7 +39,9 @@ function cleanupOnExit (tmpfile) { return () => { try { fs.unlinkSync(typeof tmpfile === 'function' ? tmpfile() : tmpfile) - } catch (_) {} + } catch { + // ignore errors + } } } @@ -156,7 +158,7 @@ async function writeFileAsync (filename, data, options = {}) { } } -function writeFile (filename, data, options, callback) { +async function writeFile (filename, data, options, callback) { if (options instanceof Function) { callback = options options = {} @@ -164,7 +166,12 @@ function writeFile (filename, data, options, callback) { const promise = writeFileAsync(filename, data, options) if (callback) { - promise.then(callback, callback) + try { + const result = await promise + return callback(result) + } catch (err) { + return callback(err) + } } return promise diff --git a/deps/npm/node_modules/write-file-atomic/package.json b/deps/npm/node_modules/write-file-atomic/package.json index 7219f90b97be0bb..86e2a0fbadfeb67 100644 --- a/deps/npm/node_modules/write-file-atomic/package.json +++ b/deps/npm/node_modules/write-file-atomic/package.json @@ -1,23 +1,23 @@ { "name": "write-file-atomic", - "version": "4.0.1", + "version": "4.0.2", "description": "Write files in an atomic fashion w/configurable ownership", "main": "./lib/index.js", "scripts": { "test": "tap", "posttest": "npm run lint", - "lint": "eslint '**/*.js'", - "postlint": "npm-template-check", + "lint": "eslint \"**/*.js\"", + "postlint": "template-oss-check", "preversion": "npm test", "postversion": "npm publish", "prepublishOnly": "git push origin --follow-tags", "lintfix": "npm run lint -- --fix", "snap": "tap", - "template-copy": "npm-template-copy --force" + "template-oss-apply": "template-oss-apply --force" }, "repository": { "type": "git", - "url": "git://github.com/npm/write-file-atomic.git" + "url": "https://github.com/npm/write-file-atomic.git" }, "keywords": [ "writeFile", @@ -34,20 +34,22 @@ "signal-exit": "^3.0.7" }, "devDependencies": { - "@npmcli/template-oss": "^2.7.1", + "@npmcli/eslint-config": "^3.0.1", + "@npmcli/template-oss": "3.5.0", "mkdirp": "^1.0.4", "rimraf": "^3.0.2", - "tap": "^15.1.6" + "tap": "^16.0.1" }, "files": [ - "bin", - "lib" + "bin/", + "lib/" ], "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, "templateOSS": { + "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", "windowsCI": false, - "version": "2.7.1" + "version": "3.5.0" } } diff --git a/deps/npm/package.json b/deps/npm/package.json index 6efd43f49e96f47..458952142ff2b24 100644 --- a/deps/npm/package.json +++ b/deps/npm/package.json @@ -1,5 +1,5 @@ { - "version": "8.16.0", + "version": "8.19.1", "name": "npm", "description": "a package manager for JavaScript", "workspaces": [ @@ -56,16 +56,16 @@ }, "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^5.0.4", + "@npmcli/arborist": "^5.6.1", "@npmcli/ci-detect": "^2.0.0", - "@npmcli/config": "^4.2.0", + "@npmcli/config": "^4.2.1", "@npmcli/fs": "^2.1.0", "@npmcli/map-workspaces": "^2.0.3", "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^4.2.0", + "@npmcli/run-script": "^4.2.1", "abbrev": "~1.1.1", "archy": "~1.0.0", - "cacache": "^16.1.1", + "cacache": "^16.1.3", "chalk": "^4.1.2", "chownr": "^2.0.0", "cli-columns": "^4.0.0", @@ -74,46 +74,46 @@ "fastest-levenshtein": "^1.0.12", "glob": "^8.0.1", "graceful-fs": "^4.2.10", - "hosted-git-info": "^5.0.0", - "ini": "^3.0.0", + "hosted-git-info": "^5.1.0", + "ini": "^3.0.1", "init-package-json": "^3.0.2", "is-cidr": "^4.0.2", "json-parse-even-better-errors": "^2.3.1", - "libnpmaccess": "^6.0.2", - "libnpmdiff": "^4.0.2", - "libnpmexec": "^4.0.2", - "libnpmfund": "^3.0.1", - "libnpmhook": "^8.0.2", - "libnpmorg": "^4.0.2", - "libnpmpack": "^4.0.2", - "libnpmpublish": "^6.0.2", - "libnpmsearch": "^5.0.2", - "libnpmteam": "^4.0.2", - "libnpmversion": "^3.0.1", + "libnpmaccess": "^6.0.4", + "libnpmdiff": "^4.0.5", + "libnpmexec": "^4.0.12", + "libnpmfund": "^3.0.3", + "libnpmhook": "^8.0.4", + "libnpmorg": "^4.0.4", + "libnpmpack": "^4.1.3", + "libnpmpublish": "^6.0.5", + "libnpmsearch": "^5.0.4", + "libnpmteam": "^4.0.4", + "libnpmversion": "^3.0.7", "make-fetch-happen": "^10.2.0", "minipass": "^3.1.6", "minipass-pipeline": "^1.2.4", "mkdirp": "^1.0.4", "mkdirp-infer-owner": "^2.0.0", "ms": "^2.1.2", - "node-gyp": "^9.0.0", - "nopt": "^5.0.0", + "node-gyp": "^9.1.0", + "nopt": "^6.0.0", "npm-audit-report": "^3.0.0", "npm-install-checks": "^5.0.0", "npm-package-arg": "^9.1.0", - "npm-pick-manifest": "^7.0.1", + "npm-pick-manifest": "^7.0.2", "npm-profile": "^6.2.0", - "npm-registry-fetch": "^13.3.0", + "npm-registry-fetch": "^13.3.1", "npm-user-validate": "^1.0.1", "npmlog": "^6.0.2", "opener": "^1.5.2", "p-map": "^4.0.0", - "pacote": "^13.6.1", + "pacote": "^13.6.2", "parse-conflict-json": "^2.0.2", "proc-log": "^2.0.1", "qrcode-terminal": "^0.12.0", "read": "~1.0.7", - "read-package-json": "^5.0.1", + "read-package-json": "^5.0.2", "read-package-json-fast": "^2.0.3", "readdir-scoped-modules": "^1.1.0", "rimraf": "^3.0.2", @@ -135,6 +135,7 @@ "@npmcli/fs", "@npmcli/map-workspaces", "@npmcli/package-json", + "@npmcli/promise-spawn", "@npmcli/run-script", "abbrev", "archy", @@ -145,6 +146,7 @@ "cli-table3", "columnify", "fastest-levenshtein", + "fs-minipass", "glob", "graceful-fs", "hosted-git-info", @@ -164,6 +166,7 @@ "libnpmteam", "libnpmversion", "make-fetch-happen", + "minimatch", "minipass", "minipass-pipeline", "mkdirp", @@ -201,9 +204,12 @@ "write-file-atomic" ], "devDependencies": { - "@npmcli/eslint-config": "^3.0.1", - "@npmcli/template-oss": "3.5.0", + "@npmcli/eslint-config": "^3.1.0", + "@npmcli/promise-spawn": "^3.0.0", + "@npmcli/template-oss": "3.8.1", + "fs-minipass": "^2.1.0", "licensee": "^8.2.0", + "minimatch": "^5.1.0", "nock": "^13.2.4", "spawk": "^1.7.1", "tap": "^16.0.1" @@ -211,7 +217,7 @@ "scripts": { "dependencies": "node scripts/bundle-and-gitignore-deps.js && node scripts/dependency-graph.js", "dumpconf": "env | grep npm | sort | uniq", - "preversion": "bash scripts/update-authors.sh && git add AUTHORS && git commit -m \"chore: update AUTHORS\" || true", + "authors": "bash scripts/update-authors.sh", "licenses": "licensee --production --errors-only", "test": "tap", "test-all": "npm run test --if-present --workspaces --include-workspace-root", @@ -225,7 +231,8 @@ "lintfix": "npm run lint -- --fix", "lint-all": "npm run lint --if-present --workspaces --include-workspace-root", "prelint": "rimraf test/npm_cache*", - "resetdeps": "bash scripts/resetdeps.sh" + "resetdeps": "bash scripts/resetdeps.sh", + "rp-pull-request": "npm run resetdeps && npm run authors" }, "tap": { "test-env": [ @@ -244,7 +251,8 @@ "templateOSS": { "rootRepo": false, "rootModule": false, - "version": "3.5.0" + "version": "3.8.1", + "releaseTest": "release.yml" }, "license": "Artistic-2.0", "engines": { diff --git a/deps/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs b/deps/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs index c56f8b162dc7319..84bfed4c91500db 100644 --- a/deps/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/commands/ls.js.test.cjs @@ -255,6 +255,12 @@ exports[`test/lib/commands/ls.js TAP ls --parseable no args > should output pars {CWD}/tap-testdir-ls-ls---parseable-no-args/node_modules/dog ` +exports[`test/lib/commands/ls.js TAP ls --parseable overridden dep > should contain overridden outout 1`] = ` +{CWD}/tap-testdir-ls-ls---parseable-overridden-dep:test-overridden@1.0.0 +{CWD}/tap-testdir-ls-ls---parseable-overridden-dep/node_modules/foo:foo@1.0.0 +{CWD}/tap-testdir-ls-ls---parseable-overridden-dep/node_modules/bar:bar@1.0.0:OVERRIDDEN +` + exports[`test/lib/commands/ls.js TAP ls --parseable resolved points to git ref > should output tree containing git refs 1`] = ` {CWD}/tap-testdir-ls-ls---parseable-resolved-points-to-git-ref {CWD}/tap-testdir-ls-ls---parseable-resolved-points-to-git-ref/node_modules/abbrev @@ -567,6 +573,20 @@ test-npm-ls@1.0.0 {CWD}/tap-testdir-ls-ls-no-args ` +exports[`test/lib/commands/ls.js TAP ls overridden dep > should contain overridden outout 1`] = ` +test-overridden@1.0.0 {CWD}/tap-testdir-ls-ls-overridden-dep +\`-- foo@1.0.0 + \`-- bar@1.0.0 overridden + +` + +exports[`test/lib/commands/ls.js TAP ls overridden dep w/ color > should contain overridden outout 1`] = ` +test-overridden@1.0.0 {CWD}/tap-testdir-ls-ls-overridden-dep-w-color +\`-- foo@1.0.0 + \`-- bar@1.0.0 overridden + +` + exports[`test/lib/commands/ls.js TAP ls print deduped symlinks > should output tree containing linked deps 1`] = ` print-deduped-symlinks@1.0.0 {CWD}/tap-testdir-ls-ls-print-deduped-symlinks +-- a@1.0.0 diff --git a/deps/npm/tap-snapshots/test/lib/commands/query.js.test.cjs b/deps/npm/tap-snapshots/test/lib/commands/query.js.test.cjs index 0a2aa769ee6380e..d827b62eef74002 100644 --- a/deps/npm/tap-snapshots/test/lib/commands/query.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/commands/query.js.test.cjs @@ -22,7 +22,8 @@ exports[`test/lib/commands/query.js TAP global > should return global package 1` "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` @@ -51,7 +52,8 @@ exports[`test/lib/commands/query.js TAP include-workspace-root > should return w ], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false }, { "name": "c", @@ -66,7 +68,8 @@ exports[`test/lib/commands/query.js TAP include-workspace-root > should return w "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` @@ -86,7 +89,8 @@ exports[`test/lib/commands/query.js TAP linked node > should return linked node "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` @@ -111,7 +115,8 @@ exports[`test/lib/commands/query.js TAP recursive tree > should return everythin ], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false }, { "pkgid": "a@", @@ -125,7 +130,8 @@ exports[`test/lib/commands/query.js TAP recursive tree > should return everythin "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false }, { "pkgid": "b@", @@ -139,7 +145,8 @@ exports[`test/lib/commands/query.js TAP recursive tree > should return everythin "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` @@ -167,7 +174,8 @@ exports[`test/lib/commands/query.js TAP simple query > should return root object ], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false }, { "pkgid": "a@", @@ -181,7 +189,8 @@ exports[`test/lib/commands/query.js TAP simple query > should return root object "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false }, { "pkgid": "b@", @@ -195,7 +204,8 @@ exports[`test/lib/commands/query.js TAP simple query > should return root object "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` @@ -215,7 +225,8 @@ exports[`test/lib/commands/query.js TAP workspace query > should return workspac "to": [], "dev": false, "inBundle": false, - "deduped": false + "deduped": false, + "overridden": false } ] ` diff --git a/deps/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs b/deps/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs index 4d6f4686df8c4fa..8550617eb0a00ab 100644 --- a/deps/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs +++ b/deps/npm/tap-snapshots/test/lib/utils/explain-dep.js.test.cjs @@ -156,6 +156,28 @@ optdep@1.0.0 optional node_modules/optdep ` +exports[`test/lib/utils/explain-dep.js TAP overridden > explain color deep 1`] = ` +overridden-root@1.0.0 overridden +node_modules/overridden-root + overridden overridden-dep@"1.0.0" (was "^2.0.0") from the root project +` + +exports[`test/lib/utils/explain-dep.js TAP overridden > explain nocolor shallow 1`] = ` +overridden-root@1.0.0 overridden +node_modules/overridden-root + overridden overridden-dep@"1.0.0" (was "^2.0.0") from the root project +` + +exports[`test/lib/utils/explain-dep.js TAP overridden > print color 1`] = ` +overridden-root@1.0.0 overridden +node_modules/overridden-root +` + +exports[`test/lib/utils/explain-dep.js TAP overridden > print nocolor 1`] = ` +overridden-root@1.0.0 overridden +node_modules/overridden-root +` + exports[`test/lib/utils/explain-dep.js TAP peer > explain color deep 1`] = ` peer@1.0.0 peer node_modules/peer diff --git a/deps/npm/test/lib/commands/access.js b/deps/npm/test/lib/commands/access.js index 130522b3be3e4da..aa748b10681df35 100644 --- a/deps/npm/test/lib/commands/access.js +++ b/deps/npm/test/lib/commands/access.js @@ -57,7 +57,7 @@ t.test('edit', async t => { const { npm } = await loadMockNpm(t) await t.rejects( npm.exec('access', ['edit', '@scoped/another']), - /edit subcommand is not implemented yet/, + /edit subcommand is not implemented/, 'should throw not implemented yet error' ) }) @@ -79,7 +79,7 @@ t.test('access public on unscoped package', async t => { t.test('access public on scoped package', async t => { const name = '@scoped/npm-access-public-pkg' - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -94,6 +94,7 @@ t.test('access public on scoped package', async t => { }) registry.access({ spec: name, access: 'public' }) await npm.exec('access', ['public']) + t.match(logs.warn[0], ['access', 'public subcommand will be removed in the next version of npm']) t.equal(joinedOutput(), '') }) @@ -137,7 +138,7 @@ t.test('access restricted on unscoped package', async t => { t.test('access restricted on scoped package', async t => { const name = '@scoped/npm-access-restricted-pkg' - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -152,6 +153,9 @@ t.test('access restricted on scoped package', async t => { }) registry.access({ spec: name, access: 'restricted' }) await npm.exec('access', ['restricted']) + t.match(logs.warn[0], + ['access', 'restricted subcommand will be removed in the next version of npm'] + ) t.equal(joinedOutput(), '') }) @@ -274,7 +278,7 @@ t.test('access grant malformed team arg', async t => { }) t.test('access 2fa-required', async t => { - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -286,11 +290,14 @@ t.test('access 2fa-required', async t => { }) registry.access({ spec: '@scope/pkg', publishRequires2fa: true }) await npm.exec('access', ['2fa-required', '@scope/pkg']) + t.match(logs.warn[0], + ['access', '2fa-required subcommand will be removed in the next version of npm'] + ) t.equal(joinedOutput(), '') }) t.test('access 2fa-not-required', async t => { - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -302,6 +309,9 @@ t.test('access 2fa-not-required', async t => { }) registry.access({ spec: '@scope/pkg', publishRequires2fa: false }) await npm.exec('access', ['2fa-not-required', '@scope/pkg']) + t.match(logs.warn[0], + ['access', '2fa-not-required subcommand will be removed in the next version of npm'] + ) t.equal(joinedOutput(), '') }) @@ -348,7 +358,7 @@ t.test('access revoke malformed team arg', async t => { }) t.test('npm access ls-packages with no team', async t => { - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -363,6 +373,9 @@ t.test('npm access ls-packages with no team', async t => { registry.whoami({ username: team }) registry.lsPackages({ team, packages }) await npm.exec('access', ['ls-packages']) + t.match(logs.warn[0], + ['access', 'ls-packages subcommand will be removed in the next version of npm'] + ) t.match(JSON.parse(joinedOutput()), packages) }) @@ -385,7 +398,7 @@ t.test('access ls-packages on team', async t => { }) t.test('access ls-collaborators on current', async t => { - const { npm, joinedOutput } = await loadMockNpm(t, { + const { npm, joinedOutput, logs } = await loadMockNpm(t, { config: { ...auth, }, @@ -403,6 +416,9 @@ t.test('access ls-collaborators on current', async t => { const collaborators = { 'test-user': 'read-write' } registry.lsCollaborators({ spec: 'yargs', collaborators }) await npm.exec('access', ['ls-collaborators']) + t.match(logs.warn[0], + ['access', 'ls-collaborators subcommand will be removed in the next version of npm'] + ) t.match(JSON.parse(joinedOutput()), collaborators) }) diff --git a/deps/npm/test/lib/commands/adduser.js b/deps/npm/test/lib/commands/adduser.js index 7c7079394f132da..94e58a6d3cb0ef1 100644 --- a/deps/npm/test/lib/commands/adduser.js +++ b/deps/npm/test/lib/commands/adduser.js @@ -34,9 +34,7 @@ t.test('simple login', async t => { '_authtoken=user', '-authtoken=user', '_authToken=user', - '//registry.npmjs.org/:-authtoken=user', '//registry.npmjs.org/:_authToken=user', - '//registry.npmjs.org/:_authtoken=user', '//registry.npmjs.org/:always-auth=user', '//registry.npmjs.org/:email=test-email-old@npmjs.org', ].join('\n'), diff --git a/deps/npm/test/lib/commands/edit.js b/deps/npm/test/lib/commands/edit.js index b2a10be135ad90e..22543f8e3cdc6b8 100644 --- a/deps/npm/test/lib/commands/edit.js +++ b/deps/npm/test/lib/commands/edit.js @@ -1,5 +1,4 @@ const t = require('tap') -const fs = require('fs') const path = require('path') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -39,24 +38,13 @@ t.test('npm edit', async t => { const { npm, joinedOutput } = await loadMockNpm(t, npmConfig) const semverPath = path.resolve(npm.prefix, 'node_modules', 'semver') - const [scriptShell] = makeSpawnArgs({ + const [scriptShell, scriptArgs] = makeSpawnArgs({ event: 'install', path: npm.prefix, cmd: 'testinstall', }) spawk.spawn('testeditor', [semverPath]) - spawk.spawn( - scriptShell, - args => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('install') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('testinstall') - return rightExtension && rightFilename && rightContents - }, - { cwd: semverPath } - ) + spawk.spawn(scriptShell, scriptArgs, { cwd: semverPath }) await npm.exec('edit', ['semver']) t.match(joinedOutput(), 'rebuilt dependencies successfully') }) @@ -64,24 +52,13 @@ t.test('npm edit', async t => { t.test('rebuild failure', async t => { const { npm } = await loadMockNpm(t, npmConfig) const semverPath = path.resolve(npm.prefix, 'node_modules', 'semver') - const [scriptShell] = makeSpawnArgs({ + const [scriptShell, scriptArgs] = makeSpawnArgs({ event: 'install', path: npm.prefix, cmd: 'testinstall', }) spawk.spawn('testeditor', [semverPath]) - spawk.spawn( - scriptShell, - args => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('install') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('testinstall') - return rightExtension && rightFilename && rightContents - }, - { cwd: semverPath } - ).exit(1).stdout('test error') + spawk.spawn(scriptShell, scriptArgs, { cwd: semverPath }).exit(1).stdout('test error') await t.rejects( npm.exec('edit', ['semver']), { message: 'command failed' } @@ -108,24 +85,13 @@ t.test('npm edit editor has flags', async t => { }) const semverPath = path.resolve(npm.prefix, 'node_modules', 'semver') - const [scriptShell] = makeSpawnArgs({ + const [scriptShell, scriptArgs] = makeSpawnArgs({ event: 'install', path: npm.prefix, cmd: 'testinstall', }) spawk.spawn('testeditor', ['--flag', semverPath]) - spawk.spawn( - scriptShell, - args => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('install') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('testinstall') - return rightExtension && rightFilename && rightContents - }, - { cwd: semverPath } - ) + spawk.spawn(scriptShell, scriptArgs, { cwd: semverPath }) await npm.exec('edit', ['semver']) }) diff --git a/deps/npm/test/lib/commands/exec.js b/deps/npm/test/lib/commands/exec.js index 6e4c3e2246a6abf..f2bccf9e0d85c51 100644 --- a/deps/npm/test/lib/commands/exec.js +++ b/deps/npm/test/lib/commands/exec.js @@ -28,6 +28,7 @@ t.test('registry package', async t => { const { npm } = await loadMockNpm(t, { config: { + audit: false, yes: true, }, prefixDir: { @@ -43,7 +44,46 @@ t.test('registry package', async t => { }) await registry.package({ - times: 2, + manifest, + tarballs: { + '1.0.0': path.join(npm.prefix, 'npm-exec-test'), + } }) + + await npm.exec('exec', ['@npmcli/npx-test']) + const exists = await fs.stat(path.join(npm.prefix, 'npm-exec-test-success')) + t.ok(exists.isFile(), 'bin ran, creating file') +}) + +t.test('--prefix', async t => { + const registry = new MockRegistry({ + tap: t, + registry: 'https://registry.npmjs.org/', + }) + + const manifest = registry.manifest({ name: '@npmcli/npx-test' }) + manifest.versions['1.0.0'].bin = { 'npx-test': 'index.js' } + + const { npm } = await loadMockNpm(t, { + config: { + audit: false, + yes: true, + }, + prefixDir: { + 'npm-exec-test': { + 'package.json': JSON.stringify(manifest), + 'index.js': `#!/usr/bin/env node + require('fs').writeFileSync('npm-exec-test-success', '')`, + }, + }, + globals: ({ prefix }) => ({ + 'process.cwd': () => prefix, + }), + }) + + // This is what `--prefix` does + npm.globalPrefix = npm.localPrefix + + await registry.package({ manifest, tarballs: { '1.0.0': path.join(npm.prefix, 'npm-exec-test'), @@ -65,6 +105,7 @@ t.test('workspaces', async t => { const { npm } = await loadMockNpm(t, { config: { + audit: false, yes: true, workspace: ['workspace-a'], }, diff --git a/deps/npm/test/lib/commands/init.js b/deps/npm/test/lib/commands/init.js index e7b2739341437c3..2dcca5b7f0adc5a 100644 --- a/deps/npm/test/lib/commands/init.js +++ b/deps/npm/test/lib/commands/init.js @@ -371,7 +371,7 @@ t.test('workspaces', t => { }) const init = new Init(npm) await init.execWorkspaces([], ['a']) - const output = npm._mockOutputs.map(arr => arr.map(i => i.replace(/[0-9]*ms$/, '100ms'))) + const output = npm._mockOutputs.map(arr => arr.map(i => i.replace(/[0-9]*m?s$/, '100ms'))) t.matchSnapshot(output, 'should print helper info') const lockFilePath = resolve(npm.localPrefix, 'package-lock.json') const lockFile = fs.readFileSync(lockFilePath, { encoding: 'utf8' }) diff --git a/deps/npm/test/lib/commands/ls.js b/deps/npm/test/lib/commands/ls.js index f4cd4ef33d58e7e..764d95298ca107f 100644 --- a/deps/npm/test/lib/commands/ls.js +++ b/deps/npm/test/lib/commands/ls.js @@ -231,6 +231,88 @@ t.test('ls', t => { t.matchSnapshot(redactCwd(result), 'should output containing problems info') }) + t.test('overridden dep', async t => { + config.all = true + t.teardown(() => { + config.all = false + }) + + npm.prefix = t.testdir({ + 'package.json': JSON.stringify({ + name: 'test-overridden', + version: '1.0.0', + dependencies: { + foo: '^1.0.0', + }, + overrides: { + bar: '1.0.0', + }, + }), + node_modules: { + foo: { + 'package.json': JSON.stringify({ + name: 'foo', + version: '1.0.0', + dependencies: { + bar: '^2.0.0', + }, + }), + }, + bar: { + 'package.json': JSON.stringify({ + name: 'bar', + version: '1.0.0', + }), + }, + }, + }) + + await ls.exec([]) + t.matchSnapshot(redactCwd(result), 'should contain overridden outout') + }) + + t.test('overridden dep w/ color', async t => { + config.all = true + npm.color = true + t.teardown(() => { + config.all = false + npm.color = false + }) + + npm.prefix = t.testdir({ + 'package.json': JSON.stringify({ + name: 'test-overridden', + version: '1.0.0', + dependencies: { + foo: '^1.0.0', + }, + overrides: { + bar: '1.0.0', + }, + }), + node_modules: { + foo: { + 'package.json': JSON.stringify({ + name: 'foo', + version: '1.0.0', + dependencies: { + bar: '^2.0.0', + }, + }), + }, + bar: { + 'package.json': JSON.stringify({ + name: 'bar', + version: '1.0.0', + }), + }, + }, + }) + + await ls.exec([]) + t.matchSnapshot(redactCwd(result), 'should contain overridden outout') + }) + t.test('with filter arg', async t => { npm.color = true npm.prefix = t.testdir({ @@ -1621,6 +1703,47 @@ t.test('ls --parseable', t => { t.matchSnapshot(redactCwd(result), 'should output containing problems info') }) + t.test('overridden dep', async t => { + config.all = true + config.long = true + t.teardown(() => { + config.all = false + config.long = false + }) + npm.prefix = t.testdir({ + 'package.json': JSON.stringify({ + name: 'test-overridden', + version: '1.0.0', + dependencies: { + foo: '^1.0.0', + }, + overrides: { + bar: '1.0.0', + }, + }), + node_modules: { + foo: { + 'package.json': JSON.stringify({ + name: 'foo', + version: '1.0.0', + dependencies: { + bar: '^2.0.0', + }, + }), + }, + bar: { + 'package.json': JSON.stringify({ + name: 'bar', + version: '1.0.0', + }), + }, + }, + }) + + await ls.exec([]) + t.matchSnapshot(redactCwd(result), 'should contain overridden outout') + }) + t.test('with filter arg', async t => { npm.prefix = t.testdir({ 'package.json': JSON.stringify({ @@ -2413,14 +2536,17 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2448,6 +2574,7 @@ t.test('ls --json', t => { dog: { version: '1.0.0', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: dog@1.0.0 {CWD}/tap-testdir-ls-ls---json-missing-package.json/node_modules/dog', @@ -2456,6 +2583,7 @@ t.test('ls --json', t => { foo: { version: '1.0.0', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: foo@1.0.0 {CWD}/tap-testdir-ls-ls---json-missing-package.json/node_modules/foo', @@ -2469,6 +2597,7 @@ t.test('ls --json', t => { chai: { version: '1.0.0', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: chai@1.0.0 {CWD}/tap-testdir-ls-ls---json-missing-package.json/node_modules/chai', @@ -2503,15 +2632,18 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: chai@1.0.0 {CWD}/tap-testdir-ls-ls---json-extraneous-deps/node_modules/chai', @@ -2523,6 +2655,58 @@ t.test('ls --json', t => { ) }) + t.test('overridden dep', async t => { + config.all = true + t.teardown(() => config.all = false) + npm.prefix = t.testdir({ + 'package.json': JSON.stringify({ + name: 'test-overridden', + version: '1.0.0', + dependencies: { + foo: '^1.0.0', + }, + overrides: { + bar: '1.0.0', + }, + }), + node_modules: { + foo: { + 'package.json': JSON.stringify({ + name: 'foo', + version: '1.0.0', + dependencies: { + bar: '^2.0.0', + }, + }), + }, + bar: { + 'package.json': JSON.stringify({ + name: 'bar', + version: '1.0.0', + }), + }, + }, + }) + + await ls.exec([]) + t.same(JSON.parse(result), { + name: 'test-overridden', + version: '1.0.0', + dependencies: { + foo: { + version: '1.0.0', + overridden: false, + dependencies: { + bar: { + version: '1.0.0', + overridden: true, + }, + }, + }, + }, + }) + }) + t.test('missing deps --long', async t => { t.plan(3) config.long = true @@ -2581,6 +2765,7 @@ t.test('ls --json', t => { dependencies: { chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2610,9 +2795,11 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, @@ -2653,14 +2840,17 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2717,9 +2907,11 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2752,9 +2944,11 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2787,14 +2981,17 @@ t.test('ls --json', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -2833,6 +3030,7 @@ t.test('ls --json', t => { foo: { version: '1.0.0', invalid: '"^2.0.0" from the root project', + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'invalid: foo@1.0.0 {CWD}/tap-testdir-ls-ls---json-missing-invalid-extraneous/node_modules/foo', @@ -2840,12 +3038,14 @@ t.test('ls --json', t => { dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: chai@1.0.0 {CWD}/tap-testdir-ls-ls---json-missing-invalid-extraneous/node_modules/chai', @@ -2893,10 +3093,17 @@ t.test('ls --json', t => { dependencies: { 'dev-dep': { version: '1.0.0', + overridden: false, dependencies: { foo: { version: '1.0.0', - dependencies: { dog: { version: '1.0.0' } }, + overridden: false, + dependencies: { + dog: { + version: '1.0.0', + overridden: false, + }, + }, }, }, }, @@ -2949,6 +3156,7 @@ t.test('ls --json', t => { 'linked-dep': { version: '1.0.0', resolved: 'file:../linked-dep', + overridden: false, }, }, }, @@ -2986,9 +3194,24 @@ t.test('ls --json', t => { name: 'test-npm-ls', version: '1.0.0', dependencies: { - chai: { version: '1.0.0' }, - 'optional-dep': { version: '1.0.0' }, - 'prod-dep': { version: '1.0.0', dependencies: { dog: { version: '2.0.0' } } }, + chai: { + version: '1.0.0', + overridden: false, + }, + 'optional-dep': { + version: '1.0.0', + overridden: false, + }, + 'prod-dep': { + version: '1.0.0', + overridden: false, + dependencies: { + dog: { + version: '2.0.0', + overridden: false, + }, + }, + }, }, }, 'should output json containing production deps' @@ -3111,6 +3334,7 @@ t.test('ls --json', t => { dependencies: { '@isaacs/dedupe-tests-a': { version: '1.0.1', + overridden: false, resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-a/-/dedupe-tests-a-1.0.1.tgz', dependencies: { @@ -3118,6 +3342,7 @@ t.test('ls --json', t => { resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-b/-/dedupe-tests-b-1.0.0.tgz', extraneous: true, + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'extraneous: @isaacs/dedupe-tests-b@ {CWD}/tap-testdir-ls-ls---json-from-lockfile/node_modules/@isaacs/dedupe-tests-a/node_modules/@isaacs/dedupe-tests-b', @@ -3127,6 +3352,7 @@ t.test('ls --json', t => { }, '@isaacs/dedupe-tests-b': { version: '2.0.0', + overridden: false, resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-b/-/dedupe-tests-b-2.0.0.tgz', }, @@ -3171,6 +3397,7 @@ t.test('ls --json', t => { dependencies: { 'peer-dep': { name: 'peer-dep', + overridden: false, description: 'Peer-dep description here', version: '1.0.0', _id: 'peer-dep@1.0.0', @@ -3182,15 +3409,18 @@ t.test('ls --json', t => { }, 'dev-dep': { name: 'dev-dep', + overridden: false, description: 'A DEV dep kind of dep', version: '1.0.0', dependencies: { foo: { name: 'foo', version: '1.0.0', + overridden: false, dependencies: { dog: { name: 'dog', + overridden: false, version: '1.0.0', _id: 'dog@1.0.0', devDependencies: {}, @@ -3217,6 +3447,7 @@ t.test('ls --json', t => { }, chai: { name: 'chai', + overridden: false, version: '1.0.0', _id: 'chai@1.0.0', devDependencies: {}, @@ -3227,6 +3458,7 @@ t.test('ls --json', t => { }, 'optional-dep': { name: 'optional-dep', + overridden: false, description: 'Maybe a dep?', version: '1.0.0', _id: 'optional-dep@1.0.0', @@ -3238,11 +3470,13 @@ t.test('ls --json', t => { }, 'prod-dep': { name: 'prod-dep', + overridden: false, description: 'A PROD dep kind of dep', version: '1.0.0', dependencies: { dog: { name: 'dog', + overridden: false, description: 'A dep that bars', version: '2.0.0', _id: 'dog@2.0.0', @@ -3308,6 +3542,7 @@ t.test('ls --json', t => { dependencies: { 'peer-dep': { name: 'peer-dep', + overridden: false, description: 'Peer-dep description here', version: '1.0.0', _id: 'peer-dep@1.0.0', @@ -3319,6 +3554,7 @@ t.test('ls --json', t => { }, 'dev-dep': { name: 'dev-dep', + overridden: false, description: 'A DEV dep kind of dep', version: '1.0.0', _id: 'dev-dep@1.0.0', @@ -3330,6 +3566,7 @@ t.test('ls --json', t => { }, chai: { name: 'chai', + overridden: false, version: '1.0.0', _id: 'chai@1.0.0', devDependencies: {}, @@ -3340,6 +3577,7 @@ t.test('ls --json', t => { }, 'optional-dep': { name: 'optional-dep', + overridden: false, description: 'Maybe a dep?', version: '1.0.0', _id: 'optional-dep@1.0.0', @@ -3351,6 +3589,7 @@ t.test('ls --json', t => { }, 'prod-dep': { name: 'prod-dep', + overridden: false, description: 'A PROD dep kind of dep', version: '1.0.0', _id: 'prod-dep@1.0.0', @@ -3439,6 +3678,7 @@ t.test('ls --json', t => { 'peer-dep': { version: '1.0.0', invalid: '"^2.0.0" from the root project', + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'invalid: peer-dep@1.0.0 {CWD}/tap-testdir-ls-ls---json-unmet-peer-dep/node_modules/peer-dep', @@ -3446,16 +3686,38 @@ t.test('ls --json', t => { }, 'dev-dep': { version: '1.0.0', + overridden: false, dependencies: { foo: { version: '1.0.0', - dependencies: { dog: { version: '1.0.0' } }, + overridden: false, + dependencies: { + dog: { + version: '1.0.0', + overridden: false, + }, + }, + }, + }, + }, + chai: { + version: '1.0.0', + overridden: false, + }, + 'optional-dep': { + version: '1.0.0', + overridden: false, + }, + 'prod-dep': { + version: '1.0.0', + overridden: false, + dependencies: { + dog: { + version: '2.0.0', + overridden: false, }, }, }, - chai: { version: '1.0.0' }, - 'optional-dep': { version: '1.0.0' }, - 'prod-dep': { version: '1.0.0', dependencies: { dog: { version: '2.0.0' } } }, }, }, 'should output json signaling missing peer dep in problems' @@ -3502,6 +3764,7 @@ t.test('ls --json', t => { 'optional-dep': { version: '1.0.0', invalid: '"^2.0.0" from the root project', + overridden: false, problems: [ /* eslint-disable-next-line max-len */ 'invalid: optional-dep@1.0.0 {CWD}/tap-testdir-ls-ls---json-unmet-optional-dep/node_modules/optional-dep', @@ -3509,18 +3772,38 @@ t.test('ls --json', t => { }, 'peer-dep': { version: '1.0.0', + overridden: false, }, 'dev-dep': { version: '1.0.0', + overridden: false, dependencies: { foo: { version: '1.0.0', - dependencies: { dog: { version: '1.0.0' } }, + overridden: false, + dependencies: { + dog: { + version: '1.0.0', + overridden: false, + }, + }, + }, + }, + }, + chai: { + version: '1.0.0', + overridden: false, + }, + 'prod-dep': { + version: '1.0.0', + overridden: false, + dependencies: { + dog: { + version: '2.0.0', + overridden: false, }, }, }, - chai: { version: '1.0.0' }, - 'prod-dep': { version: '1.0.0', dependencies: { dog: { version: '2.0.0' } } }, 'missing-optional-dep': {}, // missing optional dep has an empty entry in json output }, }, @@ -3567,11 +3850,15 @@ t.test('ls --json', t => { dependencies: { a: { version: '1.0.0', + overridden: false, dependencies: { b: { version: '1.0.0', + overridden: false, dependencies: { - a: { version: '1.0.0' }, + a: { + version: '1.0.0', + }, }, }, }, @@ -3623,6 +3910,7 @@ t.test('ls --json', t => { dependencies: { a: { version: '1.0.0', + overridden: false, resolved: 'https://localhost:8080/abbrev/-/abbrev-1.1.1.tgz', }, }, @@ -3683,6 +3971,7 @@ t.test('ls --json', t => { dependencies: { abbrev: { version: '1.1.1', + overridden: false, /* eslint-disable-next-line max-len */ resolved: 'git+ssh://git@github.com/isaacs/abbrev-js.git#b8f3a2fc0c3bb8ffd8b0d0072cc6b5a3667e963c', }, @@ -3760,6 +4049,7 @@ t.test('ls --json', t => { dependencies: { 'simple-output': { version: '2.1.1', + overridden: false, resolved: 'https://registry.npmjs.org/simple-output/-/simple-output-2.1.1.tgz', }, }, @@ -3823,12 +4113,15 @@ t.test('ls --json', t => { dependencies: { a: { version: '1.0.0', + overridden: false, }, b: { version: '1.0.0', + overridden: false, dependencies: { c: { version: '1.0.0', + overridden: false, }, }, }, @@ -3934,14 +4227,17 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -3984,9 +4280,11 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, @@ -4080,6 +4378,7 @@ t.test('ls --package-lock-only', t => { dependencies: { chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -4127,9 +4426,11 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, @@ -4179,14 +4480,17 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -4273,9 +4577,11 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -4323,9 +4629,11 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -4373,14 +4681,17 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, chai: { version: '1.0.0', + overridden: false, }, }, }, @@ -4431,6 +4742,7 @@ t.test('ls --package-lock-only', t => { dependencies: { foo: { version: '1.0.0', + overridden: false, invalid: '"^2.0.0" from the root project', problems: [ /* eslint-disable-next-line max-len */ @@ -4439,6 +4751,7 @@ t.test('ls --package-lock-only', t => { dependencies: { dog: { version: '1.0.0', + overridden: false, }, }, }, @@ -4544,11 +4857,13 @@ t.test('ls --package-lock-only', t => { dependencies: { '@isaacs/dedupe-tests-a': { version: '1.0.1', + overridden: false, resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-a/-/dedupe-tests-a-1.0.1.tgz', dependencies: { '@isaacs/dedupe-tests-b': { version: '1.0.0', + overridden: false, resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-b/-/dedupe-tests-b-1.0.0.tgz', }, @@ -4556,6 +4871,7 @@ t.test('ls --package-lock-only', t => { }, '@isaacs/dedupe-tests-b': { version: '2.0.0', + overridden: false, resolved: 'https://registry.npmjs.org/@isaacs/dedupe-tests-b/-/dedupe-tests-b-2.0.0.tgz', }, @@ -4592,6 +4908,7 @@ t.test('ls --package-lock-only', t => { dependencies: { a: { version: '1.0.0', + overridden: false, resolved: 'https://localhost:8080/abbrev/-/abbrev-1.0.0.tgz', }, }, @@ -4634,6 +4951,7 @@ t.test('ls --package-lock-only', t => { abbrev: { /* eslint-disable-next-line max-len */ resolved: 'git+ssh://git@github.com/isaacs/abbrev-js.git#b8f3a2fc0c3bb8ffd8b0d0072cc6b5a3667e963c', + overridden: false, }, }, }, diff --git a/deps/npm/test/lib/commands/restart.js b/deps/npm/test/lib/commands/restart.js index bfbe715e8c688dd..c2257b8cebf84af 100644 --- a/deps/npm/test/lib/commands/restart.js +++ b/deps/npm/test/lib/commands/restart.js @@ -1,5 +1,3 @@ -const fs = require('fs') -const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -26,15 +24,14 @@ t.test('should run restart script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-restart.js' }) - const script = spawk.spawn(scriptShell, (args) => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('restart') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('foo') - return rightExtension && rightFilename && rightContents + const [scriptShell, scriptArgs] = makeSpawnArgs({ + path: npm.prefix, + cmd: 'node ./test-restart.js', }) + let scriptContent = scriptArgs.pop() + scriptContent += ' foo' + scriptArgs.push(scriptContent) + const script = spawk.spawn(scriptShell, scriptArgs) await npm.exec('restart', ['foo']) t.ok(script.called, 'script ran') }) diff --git a/deps/npm/test/lib/commands/shrinkwrap.js b/deps/npm/test/lib/commands/shrinkwrap.js index e3fc1f9356705e3..812a9e23ec7f63f 100644 --- a/deps/npm/test/lib/commands/shrinkwrap.js +++ b/deps/npm/test/lib/commands/shrinkwrap.js @@ -13,7 +13,9 @@ t.formatSnapshot = obj => (k, v) => { try { return JSON.parse(v) - } catch {} + } catch { + // leave invalid JSON as a string + } return v }, 2 diff --git a/deps/npm/test/lib/commands/start.js b/deps/npm/test/lib/commands/start.js index 79c2133bc69fc43..3caaa478f02e3ad 100644 --- a/deps/npm/test/lib/commands/start.js +++ b/deps/npm/test/lib/commands/start.js @@ -1,5 +1,3 @@ -const fs = require('fs') -const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -26,15 +24,12 @@ t.test('should run start script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-start.js' }) - const script = spawk.spawn(scriptShell, (args) => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('start') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('foo') - return rightExtension && rightFilename && rightContents - }) + const [scriptShell, scriptArgs] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-start.js' }) + // we're calling the script with 'foo' as an argument, so add that to the script + let scriptContent = scriptArgs.pop() + scriptContent += ' foo' + scriptArgs.push(scriptContent) + const script = spawk.spawn(scriptShell, scriptArgs) await npm.exec('start', ['foo']) t.ok(script.called, 'script ran') }) diff --git a/deps/npm/test/lib/commands/stop.js b/deps/npm/test/lib/commands/stop.js index 1a4abd0b3abda72..72c2843adec9d33 100644 --- a/deps/npm/test/lib/commands/stop.js +++ b/deps/npm/test/lib/commands/stop.js @@ -1,5 +1,3 @@ -const fs = require('fs') -const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -26,15 +24,11 @@ t.test('should run stop script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-stop.js' }) - const script = spawk.spawn(scriptShell, (args) => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('stop') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('foo') - return rightExtension && rightFilename && rightContents - }) + const [scriptShell, scriptArgs] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-stop.js' }) + let scriptContent = scriptArgs.pop() + scriptContent += ' foo' + scriptArgs.push(scriptContent) + const script = spawk.spawn(scriptShell, scriptArgs) await npm.exec('stop', ['foo']) t.ok(script.called, 'script ran') }) diff --git a/deps/npm/test/lib/commands/test.js b/deps/npm/test/lib/commands/test.js index c6d3f530bb69e3a..a6a6f723afe7d87 100644 --- a/deps/npm/test/lib/commands/test.js +++ b/deps/npm/test/lib/commands/test.js @@ -1,5 +1,3 @@ -const fs = require('fs') -const path = require('path') const t = require('tap') const tspawk = require('../../fixtures/tspawk') const { load: loadMockNpm } = require('../../fixtures/mock-npm') @@ -26,15 +24,11 @@ t.test('should run test script from package.json', async t => { loglevel: 'silent', }, }) - const [scriptShell] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-test.js' }) - const script = spawk.spawn(scriptShell, (args) => { - const lastArg = args[args.length - 1] - const rightExtension = lastArg.endsWith('.cmd') || lastArg.endsWith('.sh') - const rightFilename = path.basename(lastArg).startsWith('test') - const rightContents = fs.readFileSync(lastArg, { encoding: 'utf8' }) - .trim().endsWith('foo') - return rightExtension && rightFilename && rightContents - }) + const [scriptShell, scriptArgs] = makeSpawnArgs({ path: npm.prefix, cmd: 'node ./test-test.js' }) + let scriptContent = scriptArgs.pop() + scriptContent += ' foo' + scriptArgs.push(scriptContent) + const script = spawk.spawn(scriptShell, scriptArgs) await npm.exec('test', ['foo']) t.ok(script.called, 'script ran') }) diff --git a/deps/npm/test/lib/utils/explain-dep.js b/deps/npm/test/lib/utils/explain-dep.js index 000f5b8165a9b20..ed006c01d78fb33 100644 --- a/deps/npm/test/lib/utils/explain-dep.js +++ b/deps/npm/test/lib/utils/explain-dep.js @@ -129,6 +129,23 @@ const cases = { dependents: [], extraneous: true, }, + + overridden: { + name: 'overridden-root', + version: '1.0.0', + location: 'node_modules/overridden-root', + overridden: true, + dependents: [{ + type: 'prod', + name: 'overridden-dep', + spec: '1.0.0', + rawSpec: '^2.0.0', + overridden: true, + from: { + location: '/path/to/project', + }, + }], + }, } cases.manyDeps = { diff --git a/deps/undici/src/docs/api/Client.md b/deps/undici/src/docs/api/Client.md index cfc4c393e0f39be..76a22253ffccf8c 100644 --- a/deps/undici/src/docs/api/Client.md +++ b/deps/undici/src/docs/api/Client.md @@ -18,7 +18,7 @@ Returns: `Client` ### Parameter: `ClientOptions` * **bodyTimeout** `number | null` (optional) - Default: `30e3` - The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Defaults to 30 seconds. -* **headersTimeout** `number | null` (optional) - Default: `30e3` - The amount of time the parser will wait to receive the complete HTTP headers. Defaults to 30 seconds. +* **headersTimeout** `number | null` (optional) - Default: `30e3` - The amount of time the parser will wait to receive the complete HTTP headers while not sending the request. Defaults to 30 seconds. * **keepAliveMaxTimeout** `number | null` (optional) - Default: `600e3` - The maximum allowed `keepAliveTimeout` when overridden by *keep-alive* hints from the server. Defaults to 10 minutes. * **keepAliveTimeout** `number | null` (optional) - Default: `4e3` - The timeout after which a socket without active requests will time out. Monitors time between activity on a connected socket. This value may be overridden by *keep-alive* hints from the server. See [MDN: HTTP - Headers - Keep-Alive directives](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive#directives) for more details. Defaults to 4 seconds. * **keepAliveTimeoutThreshold** `number | null` (optional) - Default: `1e3` - A number subtracted from server *keep-alive* hints when overriding `keepAliveTimeout` to account for timing inaccuracies caused by e.g. transport latency. Defaults to 1 second. diff --git a/deps/undici/src/docs/api/Dispatcher.md b/deps/undici/src/docs/api/Dispatcher.md index 32ccb57993f3eca..25565152e507733 100644 --- a/deps/undici/src/docs/api/Dispatcher.md +++ b/deps/undici/src/docs/api/Dispatcher.md @@ -199,7 +199,7 @@ Returns: `Boolean` - `false` if dispatcher is busy and further dispatch calls wo * **blocking** `boolean` (optional) - Default: `false` - Whether the response is expected to take a long time and would end up blocking the pipeline. When this is set to `true` further pipelining will be avoided on the same connection until headers have been received. * **upgrade** `string | null` (optional) - Default: `null` - Upgrade the request. Should be used to specify the kind of upgrade i.e. `'Websocket'`. * **bodyTimeout** `number | null` (optional) - The timeout after which a request will time out, in milliseconds. Monitors time between receiving body data. Use `0` to disable it entirely. Defaults to 30 seconds. -* **headersTimeout** `number | null` (optional) - The amount of time the parser will wait to receive the complete HTTP headers. Defaults to 30 seconds. +* **headersTimeout** `number | null` (optional) - The amount of time the parser will wait to receive the complete HTTP headers while not sending the request. Defaults to 30 seconds. * **throwOnError** `boolean` (optional) - Default: `false` - Whether Undici should throw an error upon receiving a 4xx or 5xx response from the server. #### Parameter: `DispatchHandler` diff --git a/deps/undici/src/lib/api/readable.js b/deps/undici/src/lib/api/readable.js index 4184a86756940ea..9c184d14e1c4322 100644 --- a/deps/undici/src/lib/api/readable.js +++ b/deps/undici/src/lib/api/readable.js @@ -93,7 +93,7 @@ module.exports = class BodyReadable extends Readable { } push (chunk) { - if (this[kConsume] && chunk !== null) { + if (this[kConsume] && chunk !== null && this.readableLength === 0) { consumePush(this[kConsume], chunk) return this[kReading] ? super.push(chunk) : true } diff --git a/deps/undici/src/lib/client.js b/deps/undici/src/lib/client.js index fb0b985faab585c..14fcaee2e3cc636 100644 --- a/deps/undici/src/lib/client.js +++ b/deps/undici/src/lib/client.js @@ -889,8 +889,10 @@ function onParserTimeout (parser) { /* istanbul ignore else */ if (timeoutType === TIMEOUT_HEADERS) { - assert(!parser.paused, 'cannot be paused while waiting for headers') - util.destroy(socket, new HeadersTimeoutError()) + if (!socket[kWriting] || socket.writableNeedDrain || client[kRunning] > 1) { + assert(!parser.paused, 'cannot be paused while waiting for headers') + util.destroy(socket, new HeadersTimeoutError()) + } } else if (timeoutType === TIMEOUT_BODY) { if (!parser.paused) { util.destroy(socket, new BodyTimeoutError()) @@ -1641,7 +1643,18 @@ class AsyncWriter { this.bytesWritten += len const ret = socket.write(chunk) + request.onBodySent(chunk) + + if (!ret) { + if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) { + // istanbul ignore else: only for jest + if (socket[kParser].timeout.refresh) { + socket[kParser].timeout.refresh() + } + } + } + return ret } diff --git a/deps/undici/src/lib/core/util.js b/deps/undici/src/lib/core/util.js index 5b0c5d1ef397cdc..e9a8384ced802ca 100644 --- a/deps/undici/src/lib/core/util.js +++ b/deps/undici/src/lib/core/util.js @@ -244,7 +244,11 @@ function parseHeaders (headers, obj = {}) { const key = headers[i].toString().toLowerCase() let val = obj[key] if (!val) { - obj[key] = headers[i + 1].toString() + if (Array.isArray(headers[i + 1])) { + obj[key] = headers[i + 1] + } else { + obj[key] = headers[i + 1].toString() + } } else { if (!Array.isArray(val)) { val = [val] diff --git a/deps/undici/src/lib/fetch/body.js b/deps/undici/src/lib/fetch/body.js index 08d22310a38db54..f70fbb7d27dc357 100644 --- a/deps/undici/src/lib/fetch/body.js +++ b/deps/undici/src/lib/fetch/body.js @@ -57,16 +57,16 @@ function extractBody (object, keepalive = false) { // Set Content-Type to `application/x-www-form-urlencoded;charset=UTF-8`. contentType = 'application/x-www-form-urlencoded;charset=UTF-8' - } else if (isArrayBuffer(object) || ArrayBuffer.isView(object)) { - // BufferSource + } else if (isArrayBuffer(object)) { + // BufferSource/ArrayBuffer - if (object instanceof DataView) { - // TODO: Blob doesn't seem to work with DataView? - object = object.buffer - } + // Set source to a copy of the bytes held by object. + source = new Uint8Array(object.slice()) + } else if (ArrayBuffer.isView(object)) { + // BufferSource/ArrayBufferView // Set source to a copy of the bytes held by object. - source = new Uint8Array(object) + source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength)) } else if (util.isFormDataLike(object)) { const boundary = '----formdata-undici-' + Math.random() const prefix = `--${boundary}\r\nContent-Disposition: form-data` diff --git a/deps/undici/src/lib/fetch/file.js b/deps/undici/src/lib/fetch/file.js index 647fc5ff38e29dc..be12fb2b58445c2 100644 --- a/deps/undici/src/lib/fetch/file.js +++ b/deps/undici/src/lib/fetch/file.js @@ -278,7 +278,9 @@ function processBlobParts (parts, options) { if (!element.buffer) { // ArrayBuffer bytes.push(new Uint8Array(element)) } else { - bytes.push(element.buffer) + bytes.push( + new Uint8Array(element.buffer, element.byteOffset, element.byteLength) + ) } } else if (isBlobLike(element)) { // 3. If element is a Blob, append the bytes it represents diff --git a/deps/undici/src/lib/fetch/index.js b/deps/undici/src/lib/fetch/index.js index f9b09547edbc82f..c7c88ec40b3b734 100644 --- a/deps/undici/src/lib/fetch/index.js +++ b/deps/undici/src/lib/fetch/index.js @@ -13,7 +13,7 @@ const { Headers } = require('./headers') const { Request, makeRequest } = require('./request') const zlib = require('zlib') const { - matchRequestIntegrity, + bytesMatch, makePolicyContainer, clonePolicyContainer, requestBadPort, @@ -34,7 +34,8 @@ const { sameOrigin, isCancelled, isAborted, - isErrorLike + isErrorLike, + fullyReadBody } = require('./util') const { kState, kHeaders, kGuard, kRealm } = require('./symbols') const assert = require('assert') @@ -724,7 +725,7 @@ async function mainFetch (fetchParams, recursive = false) { const processBody = (bytes) => { // 1. If bytes do not match request’s integrity metadata, // then run processBodyError and abort these steps. [SRI] - if (!matchRequestIntegrity(request, bytes)) { + if (!bytesMatch(bytes, request.integrity)) { processBodyError('integrity mismatch') return } @@ -738,11 +739,7 @@ async function mainFetch (fetchParams, recursive = false) { } // 4. Fully read response’s body given processBody and processBodyError. - try { - processBody(await response.arrayBuffer()) - } catch (err) { - processBodyError(err) - } + await fullyReadBody(response.body, processBody, processBodyError) } else { // 21. Otherwise, run fetch finale given fetchParams and response. fetchFinale(fetchParams, response) @@ -974,11 +971,7 @@ async function fetchFinale (fetchParams, response) { } else { // 4. Otherwise, fully read response’s body given processBody, processBodyError, // and fetchParams’s task destination. - try { - processBody(await response.body.stream.arrayBuffer()) - } catch (err) { - processBodyError(err) - } + await fullyReadBody(response.body, processBody, processBodyError) } } } diff --git a/deps/undici/src/lib/fetch/request.js b/deps/undici/src/lib/fetch/request.js index 7fda8d90b28bd96..5f0c33301396261 100644 --- a/deps/undici/src/lib/fetch/request.js +++ b/deps/undici/src/lib/fetch/request.js @@ -4,6 +4,7 @@ const { extractBody, mixinBody, cloneBody } = require('./body') const { Headers, fill: fillHeaders, HeadersList } = require('./headers') +const { FinalizationRegistry } = require('../compat/dispatcher-weakref')() const util = require('../core/util') const { isValidHTTPToken, @@ -914,7 +915,10 @@ webidl.converters.RequestInit = webidl.dictionaryConverter([ { key: 'signal', converter: webidl.nullableConverter( - webidl.converters.AbortSignal + (signal) => webidl.converters.AbortSignal( + signal, + { strict: false } + ) ) }, { diff --git a/deps/undici/src/lib/fetch/util.js b/deps/undici/src/lib/fetch/util.js index 9806e331871c90f..01bf254d53f2db1 100644 --- a/deps/undici/src/lib/fetch/util.js +++ b/deps/undici/src/lib/fetch/util.js @@ -4,9 +4,20 @@ const { redirectStatus } = require('./constants') const { performance } = require('perf_hooks') const { isBlobLike, toUSVString, ReadableStreamFrom } = require('../core/util') const assert = require('assert') +const { isUint8Array } = require('util/types') let File +// https://nodejs.org/api/crypto.html#determining-if-crypto-support-is-unavailable +/** @type {import('crypto')|undefined} */ +let crypto + +try { + crypto = require('crypto') +} catch { + +} + // https://fetch.spec.whatwg.org/#block-bad-port const badPorts = [ '1', '7', '9', '11', '13', '15', '17', '19', '20', '21', '22', '23', '25', '37', '42', '43', '53', '69', '77', '79', @@ -339,10 +350,116 @@ function determineRequestsReferrer (request) { return 'no-referrer' } -function matchRequestIntegrity (request, bytes) { +/** + * @see https://w3c.github.io/webappsec-subresource-integrity/#does-response-match-metadatalist + * @param {Uint8Array} bytes + * @param {string} metadataList + */ +function bytesMatch (bytes, metadataList) { + // If node is not built with OpenSSL support, we cannot check + // a request's integrity, so allow it by default (the spec will + // allow requests if an invalid hash is given, as precedence). + /* istanbul ignore if: only if node is built with --without-ssl */ + if (crypto === undefined) { + return true + } + + // 1. Let parsedMetadata be the result of parsing metadataList. + const parsedMetadata = parseMetadata(metadataList) + + // 2. If parsedMetadata is no metadata, return true. + if (parsedMetadata === 'no metadata') { + return true + } + + // 3. If parsedMetadata is the empty set, return true. + if (parsedMetadata.length === 0) { + return true + } + + // 4. Let metadata be the result of getting the strongest + // metadata from parsedMetadata. + // Note: this will only work for SHA- algorithms and it's lazy *at best*. + const metadata = parsedMetadata.sort((c, d) => d.algo.localeCompare(c.algo)) + + // 5. For each item in metadata: + for (const item of metadata) { + // 1. Let algorithm be the alg component of item. + const algorithm = item.algo + + // 2. Let expectedValue be the val component of item. + const expectedValue = item.hash + + // 3. Let actualValue be the result of applying algorithm to bytes. + // Note: "applying algorithm to bytes" converts the result to base64 + const actualValue = crypto.createHash(algorithm).update(bytes).digest('base64') + + // 4. If actualValue is a case-sensitive match for expectedValue, + // return true. + if (actualValue === expectedValue) { + return true + } + } + + // 6. Return false. return false } +// https://w3c.github.io/webappsec-subresource-integrity/#grammardef-hash-with-options +// hash-algo is defined in Content Security Policy 2 Section 4.2 +// base64-value is similary defined there +// VCHAR is defined https://www.rfc-editor.org/rfc/rfc5234#appendix-B.1 +const parseHashWithOptions = /((?sha256|sha384|sha512)-(?[A-z0-9+/]{1}.*={1,2}))( +[\x21-\x7e]?)?/i + +/** + * @see https://w3c.github.io/webappsec-subresource-integrity/#parse-metadata + * @param {string} metadata + */ +function parseMetadata (metadata) { + // 1. Let result be the empty set. + /** @type {{ algo: string, hash: string }[]} */ + const result = [] + + // 2. Let empty be equal to true. + let empty = true + + const supportedHashes = crypto.getHashes() + + // 3. For each token returned by splitting metadata on spaces: + for (const token of metadata.split(' ')) { + // 1. Set empty to false. + empty = false + + // 2. Parse token as a hash-with-options. + const parsedToken = parseHashWithOptions.exec(token) + + // 3. If token does not parse, continue to the next token. + if (parsedToken === null || parsedToken.groups === undefined) { + // Note: Chromium blocks the request at this point, but Firefox + // gives a warning that an invalid integrity was given. The + // correct behavior is to ignore these, and subsequently not + // check the integrity of the resource. + continue + } + + // 4. Let algorithm be the hash-algo component of token. + const algorithm = parsedToken.groups.algo + + // 5. If algorithm is a hash function recognized by the user + // agent, add the parsed token to result. + if (supportedHashes.includes(algorithm.toLowerCase())) { + result.push(parsedToken.groups) + } + } + + // 4. Return no metadata if empty is true, otherwise return result. + if (empty === true) { + return 'no metadata' + } + + return result +} + // https://w3c.github.io/webappsec-upgrade-insecure-requests/#upgrade-request function tryUpgradeRequestToAPotentiallyTrustworthyURL (request) { // TODO @@ -438,6 +555,53 @@ function makeIterator (iterator, name) { return Object.setPrototypeOf({}, i) } +/** + * @see https://fetch.spec.whatwg.org/#body-fully-read + */ +async function fullyReadBody (body, processBody, processBodyError) { + // 1. If taskDestination is null, then set taskDestination to + // the result of starting a new parallel queue. + + // 2. Let promise be the result of fully reading body as promise + // given body. + try { + /** @type {Uint8Array[]} */ + const chunks = [] + let length = 0 + + const reader = body.stream.getReader() + + while (true) { + const { done, value } = await reader.read() + + if (done === true) { + break + } + + // read-loop chunk steps + assert(isUint8Array(value)) + + chunks.push(value) + length += value.byteLength + } + + // 3. Let fulfilledSteps given a byte sequence bytes be to queue + // a fetch task to run processBody given bytes, with + // taskDestination. + const fulfilledSteps = (bytes) => queueMicrotask(() => { + processBody(bytes) + }) + + fulfilledSteps(Buffer.concat(chunks, length)) + } catch (err) { + // 4. Let rejectedSteps be to queue a fetch task to run + // processBodyError, with taskDestination. + queueMicrotask(() => processBodyError(err)) + } + + // 5. React to promise with fulfilledSteps and rejectedSteps. +} + /** * Fetch supports node >= 16.8.0, but Object.hasOwn was added in v16.9.0. */ @@ -451,7 +615,6 @@ module.exports = { toUSVString, tryUpgradeRequestToAPotentiallyTrustworthyURL, coarsenedSharedCurrentTime, - matchRequestIntegrity, determineRequestsReferrer, makePolicyContainer, clonePolicyContainer, @@ -477,5 +640,7 @@ module.exports = { isValidHeaderName, isValidHeaderValue, hasOwn, - isErrorLike + isErrorLike, + fullyReadBody, + bytesMatch } diff --git a/deps/undici/src/lib/mock/mock-utils.js b/deps/undici/src/lib/mock/mock-utils.js index 7e115f83b4d5354..c00ee08e07de1b7 100644 --- a/deps/undici/src/lib/mock/mock-utils.js +++ b/deps/undici/src/lib/mock/mock-utils.js @@ -85,6 +85,22 @@ function matchHeaders (mockDispatch, headers) { return true } +function safeUrl (path) { + if (typeof path !== 'string') { + return path + } + + const pathSegments = path.split('?') + + if (pathSegments.length !== 2) { + return path + } + + const qp = new URLSearchParams(pathSegments.pop()) + qp.sort() + return [...pathSegments, qp.toString()].join('?') +} + function matchKey (mockDispatch, { path, method, body, headers }) { const pathMatch = matchValue(mockDispatch.path, path) const methodMatch = matchValue(mockDispatch.method, method) @@ -104,10 +120,11 @@ function getResponseData (data) { } function getMockDispatch (mockDispatches, key) { - const resolvedPath = key.query ? buildURL(key.path, key.query) : key.path + const basePath = key.query ? buildURL(key.path, key.query) : key.path + const resolvedPath = typeof basePath === 'string' ? safeUrl(basePath) : basePath // Match path - let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path }) => matchValue(path, resolvedPath)) + let matchedMockDispatches = mockDispatches.filter(({ consumed }) => !consumed).filter(({ path }) => matchValue(safeUrl(path), resolvedPath)) if (matchedMockDispatches.length === 0) { throw new MockNotMatchedError(`Mock dispatch not matched for path '${resolvedPath}'`) } diff --git a/deps/undici/src/package.json b/deps/undici/src/package.json index 0b9d4f713e4dbbe..0a3d9e5226cc7e9 100644 --- a/deps/undici/src/package.json +++ b/deps/undici/src/package.json @@ -1,6 +1,6 @@ { "name": "undici", - "version": "5.8.2", + "version": "5.10.0", "description": "An HTTP/1.1 client, written from scratch for Node.js", "homepage": "https://undici.nodejs.org", "bugs": { diff --git a/deps/undici/undici.js b/deps/undici/undici.js index a4536d4a530e392..6578fb40bd7f4dc 100644 --- a/deps/undici/undici.js +++ b/deps/undici/undici.js @@ -835,7 +835,11 @@ var require_util = __commonJS({ const key = headers[i].toString().toLowerCase(); let val = obj[key]; if (!val) { - obj[key] = headers[i + 1].toString(); + if (Array.isArray(headers[i + 1])) { + obj[key] = headers[i + 1]; + } else { + obj[key] = headers[i + 1].toString(); + } } else { if (!Array.isArray(val)) { val = [val]; @@ -1537,7 +1541,7 @@ var require_file = __commonJS({ if (!element.buffer) { bytes.push(new Uint8Array(element)); } else { - bytes.push(element.buffer); + bytes.push(new Uint8Array(element.buffer, element.byteOffset, element.byteLength)); } } else if (isBlobLike(element)) { bytes.push(element); @@ -1564,7 +1568,13 @@ var require_util2 = __commonJS({ var { performance: performance2 } = require("perf_hooks"); var { isBlobLike, toUSVString, ReadableStreamFrom } = require_util(); var assert = require("assert"); + var { isUint8Array } = require("util/types"); var File; + var crypto; + try { + crypto = require("crypto"); + } catch { + } var badPorts = [ "1", "7", @@ -1803,9 +1813,49 @@ var require_util2 = __commonJS({ function determineRequestsReferrer(request) { return "no-referrer"; } - function matchRequestIntegrity(request, bytes) { + function bytesMatch(bytes, metadataList) { + if (crypto === void 0) { + return true; + } + const parsedMetadata = parseMetadata(metadataList); + if (parsedMetadata === "no metadata") { + return true; + } + if (parsedMetadata.length === 0) { + return true; + } + const metadata = parsedMetadata.sort((c, d) => d.algo.localeCompare(c.algo)); + for (const item of metadata) { + const algorithm = item.algo; + const expectedValue = item.hash; + const actualValue = crypto.createHash(algorithm).update(bytes).digest("base64"); + if (actualValue === expectedValue) { + return true; + } + } return false; } + var parseHashWithOptions = /((?sha256|sha384|sha512)-(?[A-z0-9+/]{1}.*={1,2}))( +[\x21-\x7e]?)?/i; + function parseMetadata(metadata) { + const result = []; + let empty = true; + const supportedHashes = crypto.getHashes(); + for (const token of metadata.split(" ")) { + empty = false; + const parsedToken = parseHashWithOptions.exec(token); + if (parsedToken === null || parsedToken.groups === void 0) { + continue; + } + const algorithm = parsedToken.groups.algo; + if (supportedHashes.includes(algorithm.toLowerCase())) { + result.push(parsedToken.groups); + } + } + if (empty === true) { + return "no metadata"; + } + return result; + } function tryUpgradeRequestToAPotentiallyTrustworthyURL(request) { } function sameOrigin(A, B) { @@ -1854,6 +1904,28 @@ var require_util2 = __commonJS({ Object.setPrototypeOf(i, esIteratorPrototype); return Object.setPrototypeOf({}, i); } + async function fullyReadBody(body, processBody, processBodyError) { + try { + const chunks = []; + let length = 0; + const reader = body.stream.getReader(); + while (true) { + const { done, value } = await reader.read(); + if (done === true) { + break; + } + assert(isUint8Array(value)); + chunks.push(value); + length += value.byteLength; + } + const fulfilledSteps = (bytes) => queueMicrotask(() => { + processBody(bytes); + }); + fulfilledSteps(Buffer.concat(chunks, length)); + } catch (err) { + queueMicrotask(() => processBodyError(err)); + } + } var hasOwn = Object.hasOwn || ((dict, key) => Object.prototype.hasOwnProperty.call(dict, key)); module2.exports = { isAborted, @@ -1863,7 +1935,6 @@ var require_util2 = __commonJS({ toUSVString, tryUpgradeRequestToAPotentiallyTrustworthyURL, coarsenedSharedCurrentTime, - matchRequestIntegrity, determineRequestsReferrer, makePolicyContainer, clonePolicyContainer, @@ -1889,7 +1960,9 @@ var require_util2 = __commonJS({ isValidHeaderName, isValidHeaderValue, hasOwn, - isErrorLike + isErrorLike, + fullyReadBody, + bytesMatch }; } }); @@ -2105,11 +2178,10 @@ var require_body = __commonJS({ } else if (object instanceof URLSearchParams) { source = object.toString(); contentType = "application/x-www-form-urlencoded;charset=UTF-8"; - } else if (isArrayBuffer(object) || ArrayBuffer.isView(object)) { - if (object instanceof DataView) { - object = object.buffer; - } - source = new Uint8Array(object); + } else if (isArrayBuffer(object)) { + source = new Uint8Array(object.slice()); + } else if (ArrayBuffer.isView(object)) { + source = new Uint8Array(object.buffer.slice(object.byteOffset, object.byteOffset + object.byteLength)); } else if (util.isFormDataLike(object)) { const boundary = "----formdata-undici-" + Math.random(); const prefix = `--${boundary}\r @@ -3903,8 +3975,10 @@ var require_client = __commonJS({ function onParserTimeout(parser) { const { socket, timeoutType, client } = parser; if (timeoutType === TIMEOUT_HEADERS) { - assert(!parser.paused, "cannot be paused while waiting for headers"); - util.destroy(socket, new HeadersTimeoutError()); + if (!socket[kWriting] || socket.writableNeedDrain || client[kRunning] > 1) { + assert(!parser.paused, "cannot be paused while waiting for headers"); + util.destroy(socket, new HeadersTimeoutError()); + } } else if (timeoutType === TIMEOUT_BODY) { if (!parser.paused) { util.destroy(socket, new BodyTimeoutError()); @@ -4452,6 +4526,13 @@ ${len.toString(16)}\r this.bytesWritten += len; const ret = socket.write(chunk); request.onBodySent(chunk); + if (!ret) { + if (socket[kParser].timeout && socket[kParser].timeoutType === TIMEOUT_HEADERS) { + if (socket[kParser].timeout.refresh) { + socket[kParser].timeout.refresh(); + } + } + } return ret; } end() { @@ -4631,7 +4712,7 @@ var require_agent = __commonJS({ var Client = require_client(); var util = require_util(); var RedirectHandler = require_redirect(); - var { WeakRef, FinalizationRegistry: FinalizationRegistry2 } = require_dispatcher_weakref()(); + var { WeakRef, FinalizationRegistry } = require_dispatcher_weakref()(); var kOnConnect = Symbol("onConnect"); var kOnDisconnect = Symbol("onDisconnect"); var kOnConnectionError = Symbol("onConnectionError"); @@ -4662,7 +4743,7 @@ var require_agent = __commonJS({ this[kMaxRedirections] = maxRedirections; this[kFactory] = factory; this[kClients] = /* @__PURE__ */ new Map(); - this[kFinalizer] = new FinalizationRegistry2((key) => { + this[kFinalizer] = new FinalizationRegistry((key) => { const ref = this[kClients].get(key); if (ref !== void 0 && ref.deref() === void 0) { this[kClients].delete(key); @@ -5443,6 +5524,7 @@ var require_request2 = __commonJS({ "use strict"; var { extractBody, mixinBody, cloneBody } = require_body(); var { Headers, fill: fillHeaders, HeadersList } = require_headers(); + var { FinalizationRegistry } = require_dispatcher_weakref()(); var util = require_util(); var { isValidHTTPToken, @@ -5975,7 +6057,7 @@ var require_request2 = __commonJS({ }, { key: "signal", - converter: webidl.nullableConverter(webidl.converters.AbortSignal) + converter: webidl.nullableConverter((signal) => webidl.converters.AbortSignal(signal, { strict: false })) }, { key: "window", @@ -6207,7 +6289,7 @@ var require_fetch = __commonJS({ var { Request, makeRequest } = require_request2(); var zlib = require("zlib"); var { - matchRequestIntegrity, + bytesMatch, makePolicyContainer, clonePolicyContainer, requestBadPort, @@ -6228,7 +6310,8 @@ var require_fetch = __commonJS({ sameOrigin, isCancelled, isAborted, - isErrorLike + isErrorLike, + fullyReadBody } = require_util2(); var { kState, kHeaders, kGuard, kRealm } = require_symbols2(); var assert = require("assert"); @@ -6533,18 +6616,14 @@ var require_fetch = __commonJS({ return; } const processBody = (bytes) => { - if (!matchRequestIntegrity(request, bytes)) { + if (!bytesMatch(bytes, request.integrity)) { processBodyError("integrity mismatch"); return; } response.body = safelyExtractBody(bytes)[0]; fetchFinale(fetchParams, response); }; - try { - processBody(await response.arrayBuffer()); - } catch (err) { - processBodyError(err); - } + await fullyReadBody(response.body, processBody, processBodyError); } else { fetchFinale(fetchParams, response); } @@ -6667,11 +6746,7 @@ var require_fetch = __commonJS({ if (response.body == null) { queueMicrotask(() => processBody(null)); } else { - try { - processBody(await response.body.stream.arrayBuffer()); - } catch (err) { - processBodyError(err); - } + await fullyReadBody(response.body, processBody, processBodyError); } } } diff --git a/deps/v8/include/v8-version.h b/deps/v8/include/v8-version.h index 7e7823f75e7b1f1..d2b7b508132e7ed 100644 --- a/deps/v8/include/v8-version.h +++ b/deps/v8/include/v8-version.h @@ -11,7 +11,7 @@ #define V8_MAJOR_VERSION 10 #define V8_MINOR_VERSION 2 #define V8_BUILD_NUMBER 154 -#define V8_PATCH_LEVEL 13 +#define V8_PATCH_LEVEL 15 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.) diff --git a/deps/v8/src/builtins/builtins-microtask-queue-gen.cc b/deps/v8/src/builtins/builtins-microtask-queue-gen.cc index 9edc8ce00c524a6..6b0c63b34ff09f7 100644 --- a/deps/v8/src/builtins/builtins-microtask-queue-gen.cc +++ b/deps/v8/src/builtins/builtins-microtask-queue-gen.cc @@ -478,30 +478,38 @@ void MicrotaskQueueBuiltinsAssembler::RewindEnteredContext( void MicrotaskQueueBuiltinsAssembler::RunAllPromiseHooks( PromiseHookType type, TNode context, TNode promise_or_capability) { - Label hook(this, Label::kDeferred), done_hook(this); TNode promiseHookFlags = PromiseHookFlags(); +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS + Label hook(this, Label::kDeferred), done_hook(this); Branch(NeedsAnyPromiseHooks(promiseHookFlags), &hook, &done_hook); BIND(&hook); { +#endif switch (type) { case PromiseHookType::kBefore: +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS RunContextPromiseHookBefore(context, promise_or_capability, promiseHookFlags); +#endif RunPromiseHook(Runtime::kPromiseHookBefore, context, promise_or_capability, promiseHookFlags); break; case PromiseHookType::kAfter: +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS RunContextPromiseHookAfter(context, promise_or_capability, promiseHookFlags); +#endif RunPromiseHook(Runtime::kPromiseHookAfter, context, promise_or_capability, promiseHookFlags); break; default: UNREACHABLE(); } +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS Goto(&done_hook); } BIND(&done_hook); +#endif } void MicrotaskQueueBuiltinsAssembler::RunPromiseHook( diff --git a/deps/v8/src/compiler/escape-analysis.cc b/deps/v8/src/compiler/escape-analysis.cc index fe8126f9638e77e..d6ea2171efa2744 100644 --- a/deps/v8/src/compiler/escape-analysis.cc +++ b/deps/v8/src/compiler/escape-analysis.cc @@ -78,6 +78,8 @@ class ReduceScope { explicit ReduceScope(Node* node, Reduction* reduction) : current_node_(node), reduction_(reduction) {} + void SetValueChanged() { reduction()->set_value_changed(); } + protected: Node* current_node() const { return current_node_; } Reduction* reduction() { return reduction_; } @@ -806,7 +808,9 @@ void ReduceNode(const Operator* op, EscapeAnalysisTracker::Scope* current, break; } case IrOpcode::kStateValues: - // These uses are always safe. + // We visit StateValue nodes through their correpsonding FrameState node, + // so we need to make sure we revisit the FrameState. + current->SetValueChanged(); break; case IrOpcode::kFrameState: { // We mark the receiver as escaping due to the non-standard `.getThis` diff --git a/deps/v8/src/d8/d8.cc b/deps/v8/src/d8/d8.cc index 6f38f7280e5b3c2..42c1fbef5670a0b 100644 --- a/deps/v8/src/d8/d8.cc +++ b/deps/v8/src/d8/d8.cc @@ -2218,6 +2218,16 @@ void Shell::AsyncHooksTriggerAsyncId( PerIsolateData::Get(isolate)->GetAsyncHooks()->GetTriggerAsyncId())); } +static v8::debug::DebugDelegate dummy_delegate; + +void Shell::EnableDebugger(const v8::FunctionCallbackInfo& args) { + v8::debug::SetDebugDelegate(args.GetIsolate(), &dummy_delegate); +} + +void Shell::DisableDebugger(const v8::FunctionCallbackInfo& args) { + v8::debug::SetDebugDelegate(args.GetIsolate(), nullptr); +} + void Shell::SetPromiseHooks(const v8::FunctionCallbackInfo& args) { Isolate* isolate = args.GetIsolate(); if (i::FLAG_correctness_fuzzer_suppressions) { @@ -3162,6 +3172,18 @@ Local Shell::CreateD8Template(Isolate* isolate) { Local(), 4)); d8_template->Set(isolate, "promise", promise_template); } + { + Local debugger_template = ObjectTemplate::New(isolate); + debugger_template->Set( + isolate, "enable", + FunctionTemplate::New(isolate, EnableDebugger, Local(), + Local(), 0)); + debugger_template->Set( + isolate, "disable", + FunctionTemplate::New(isolate, DisableDebugger, Local(), + Local(), 0)); + d8_template->Set(isolate, "debugger", debugger_template); + } return d8_template; } diff --git a/deps/v8/src/d8/d8.h b/deps/v8/src/d8/d8.h index d0bb1c8fdfeade0..c77a8a032fd352d 100644 --- a/deps/v8/src/d8/d8.h +++ b/deps/v8/src/d8/d8.h @@ -569,6 +569,9 @@ class Shell : public i::AllStatic { static void SetPromiseHooks(const v8::FunctionCallbackInfo& args); + static void EnableDebugger(const v8::FunctionCallbackInfo& args); + static void DisableDebugger(const v8::FunctionCallbackInfo& args); + static void Print(const v8::FunctionCallbackInfo& args); static void PrintErr(const v8::FunctionCallbackInfo& args); static void WriteStdout(const v8::FunctionCallbackInfo& args); diff --git a/deps/v8/src/execution/isolate.cc b/deps/v8/src/execution/isolate.cc index fb0939c03edd23d..62d9f4abc33fedd 100644 --- a/deps/v8/src/execution/isolate.cc +++ b/deps/v8/src/execution/isolate.cc @@ -4958,9 +4958,11 @@ void Isolate::SetPromiseHook(PromiseHook hook) { void Isolate::RunAllPromiseHooks(PromiseHookType type, Handle promise, Handle parent) { +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS if (HasContextPromiseHooks()) { native_context()->RunPromiseHook(type, promise, parent); } +#endif if (HasIsolatePromiseHooks() || HasAsyncEventDelegate()) { RunPromiseHook(type, promise, parent); } @@ -4977,7 +4979,7 @@ void Isolate::RunPromiseHook(PromiseHookType type, Handle promise, void Isolate::OnAsyncFunctionSuspended(Handle promise, Handle parent) { DCHECK_EQ(0, promise->async_task_id()); - RunPromiseHook(PromiseHookType::kInit, promise, parent); + RunAllPromiseHooks(PromiseHookType::kInit, promise, parent); if (HasAsyncEventDelegate()) { DCHECK_NE(nullptr, async_event_delegate_); promise->set_async_task_id(++async_task_count_); diff --git a/deps/v8/src/objects/contexts.cc b/deps/v8/src/objects/contexts.cc index 2f514ac1e7b1b70..62ec8d4dcb3d01f 100644 --- a/deps/v8/src/objects/contexts.cc +++ b/deps/v8/src/objects/contexts.cc @@ -551,6 +551,7 @@ STATIC_ASSERT(NativeContext::kSize == (Context::SizeFor(NativeContext::NATIVE_CONTEXT_SLOTS) + kSystemPointerSize)); +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS void NativeContext::RunPromiseHook(PromiseHookType type, Handle promise, Handle parent) { @@ -606,6 +607,7 @@ void NativeContext::RunPromiseHook(PromiseHookType type, isolate->clear_pending_exception(); } } +#endif } // namespace internal } // namespace v8 diff --git a/deps/v8/src/objects/contexts.h b/deps/v8/src/objects/contexts.h index efdf3c383f425bf..c9a0072993e885e 100644 --- a/deps/v8/src/objects/contexts.h +++ b/deps/v8/src/objects/contexts.h @@ -781,8 +781,10 @@ class NativeContext : public Context { void IncrementErrorsThrown(); int GetErrorsThrown(); +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS void RunPromiseHook(PromiseHookType type, Handle promise, Handle parent); +#endif private: STATIC_ASSERT(OffsetOfElementAt(EMBEDDER_DATA_INDEX) == diff --git a/deps/v8/src/objects/objects.cc b/deps/v8/src/objects/objects.cc index d16146114e81cc7..b87672246285ce1 100644 --- a/deps/v8/src/objects/objects.cc +++ b/deps/v8/src/objects/objects.cc @@ -5398,6 +5398,14 @@ Handle JSPromise::Fulfill(Handle promise, Handle value) { Isolate* const isolate = promise->GetIsolate(); +#ifdef V8_ENABLE_JAVASCRIPT_PROMISE_HOOKS + if (isolate->HasContextPromiseHooks()) { + isolate->raw_native_context().RunPromiseHook( + PromiseHookType::kResolve, promise, + isolate->factory()->undefined_value()); + } +#endif + // 1. Assert: The value of promise.[[PromiseState]] is "pending". CHECK_EQ(Promise::kPending, promise->status()); @@ -5477,8 +5485,8 @@ MaybeHandle JSPromise::Resolve(Handle promise, DCHECK( !reinterpret_cast(isolate)->GetCurrentContext().IsEmpty()); - isolate->RunAllPromiseHooks(PromiseHookType::kResolve, promise, - isolate->factory()->undefined_value()); + isolate->RunPromiseHook(PromiseHookType::kResolve, promise, + isolate->factory()->undefined_value()); // 7. If SameValue(resolution, promise) is true, then if (promise.is_identical_to(resolution)) { diff --git a/deps/v8/test/mjsunit/promise-hooks.js b/deps/v8/test/mjsunit/promise-hooks.js index 60bab26b4307b62..3b99e0e013ec624 100644 --- a/deps/v8/test/mjsunit/promise-hooks.js +++ b/deps/v8/test/mjsunit/promise-hooks.js @@ -220,7 +220,7 @@ function optimizerBailout(test, verify) { d8.promise.setHooks(); } -if (has_promise_hooks) { +function doTest () { optimizerBailout(async () => { await Promise.resolve(); }, () => { @@ -234,6 +234,19 @@ if (has_promise_hooks) { assertNextEvent('after', [ 3 ]); assertEmptyLog(); }); + optimizerBailout(async () => { + await Promise.reject(); + }, () => { + assertNextEvent('init', [ 1 ]); + assertNextEvent('init', [ 2 ]); + assertNextEvent('resolve', [ 2 ]); + assertNextEvent('init', [ 3, 2 ]); + assertNextEvent('before', [ 3 ]); + assertNextEvent('resolve', [ 1 ]); + assertNextEvent('resolve', [ 3 ]); + assertNextEvent('after', [ 3 ]); + assertEmptyLog(); + }); optimizerBailout(async () => { await { then (cb) { cb() } }; }, () => { @@ -249,6 +262,21 @@ if (has_promise_hooks) { assertNextEvent('after', [ 3 ]); assertEmptyLog(); }); + optimizerBailout(async () => { + await { then (_, cb) { cb() } }; + }, () => { + assertNextEvent('init', [ 1 ]); + assertNextEvent('init', [ 2, 1 ]); + assertNextEvent('init', [ 3, 2 ]); + assertNextEvent('before', [ 2 ]); + assertNextEvent('resolve', [ 2 ]); + assertNextEvent('after', [ 2 ]); + assertNextEvent('before', [ 3 ]); + assertNextEvent('resolve', [ 1 ]); + assertNextEvent('resolve', [ 3 ]); + assertNextEvent('after', [ 3 ]); + assertEmptyLog(); + }); basicTest(); exceptions(); @@ -292,3 +320,9 @@ if (has_promise_hooks) { }); } + +if (has_promise_hooks) { + doTest(); + d8.debugger.enable(); + doTest(); +} diff --git a/deps/v8/tools/whitespace.txt b/deps/v8/tools/whitespace.txt index c4d4fe959e294a5..f890e67970bdba4 100644 --- a/deps/v8/tools/whitespace.txt +++ b/deps/v8/tools/whitespace.txt @@ -15,4 +15,4 @@ Because whitespaces are not that funny...... Today's answer to life the universe and everything is 12950! Today's answer to life the universe and everything is 6728! Today's answer to life the universe and everything is 6728!! -.. \ No newline at end of file +. diff --git a/doc/api/addons.md b/doc/api/addons.md index d047bd230b6d885..2800c55254cfd0e 100644 --- a/doc/api/addons.md +++ b/doc/api/addons.md @@ -9,7 +9,7 @@ _Addons_ are dynamically-linked shared objects written in C++. The Addons provide an interface between JavaScript and C/C++ libraries. There are three options for implementing addons: Node-API, nan, or direct -use of internal V8, libuv and Node.js libraries. Unless there is a need for +use of internal V8, libuv, and Node.js libraries. Unless there is a need for direct access to functionality which is not exposed by Node-API, use Node-API. Refer to [C/C++ addons with Node-API](n-api.md) for more information on Node-API. @@ -40,7 +40,7 @@ involving knowledge of several components and APIs: * Node.js includes other statically linked libraries including OpenSSL. These other libraries are located in the `deps/` directory in the Node.js source - tree. Only the libuv, OpenSSL, V8 and zlib symbols are purposefully + tree. Only the libuv, OpenSSL, V8, and zlib symbols are purposefully re-exported by Node.js and may be used to various extents by addons. See [Linking to libraries included with Node.js][] for additional information. @@ -393,7 +393,7 @@ try { ### Linking to libraries included with Node.js -Node.js uses statically linked libraries such as V8, libuv and OpenSSL. All +Node.js uses statically linked libraries such as V8, libuv, and OpenSSL. All addons are required to link to V8 and may link to any of the other dependencies as well. Typically, this is as simple as including the appropriate `#include <...>` statements (e.g. `#include `) and `node-gyp` will locate diff --git a/doc/api/assert.md b/doc/api/assert.md index 4958e6dd7df4746..4864023f65d2905 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -322,6 +322,47 @@ function func() {} const callsfunc = tracker.calls(func); ``` +### `tracker.getCalls(fn)` + + + +* `fn` {Function}. + +* Returns: {Array} with all the calls to a tracked function. + +* Object {Object} + * `thisArg` {Object} + * `arguments` {Array} the arguments passed to the tracked function + +```mjs +import assert from 'node:assert'; + +const tracker = new assert.CallTracker(); + +function func() {} +const callsfunc = tracker.calls(func); +callsfunc(1, 2, 3); + +assert.deepStrictEqual(tracker.getCalls(callsfunc), + [{ thisArg: this, arguments: [1, 2, 3 ] }]); +``` + +```cjs +const assert = require('node:assert'); + +// Creates call tracker. +const tracker = new assert.CallTracker(); + +function func() {} +const callsfunc = tracker.calls(func); +callsfunc(1, 2, 3); + +assert.deepStrictEqual(tracker.getCalls(callsfunc), + [{ thisArg: this, arguments: [1, 2, 3 ] }]); +``` + ### `tracker.report()` + +* `fn` {Function} a tracked function to reset. + +reset calls of the call tracker. +if a tracked function is passed as an argument, the calls will be reset for it. +if no arguments are passed, all tracked functions will be reset + +```mjs +import assert from 'node:assert'; + +const tracker = new assert.CallTracker(); + +function func() {} +const callsfunc = tracker.calls(func); + +callsfunc(); +// Tracker was called once +tracker.getCalls(callsfunc).length === 1; + +tracker.reset(callsfunc); +tracker.getCalls(callsfunc).length === 0; +``` + +```cjs +const assert = require('node:assert'); + +function func() {} +const callsfunc = tracker.calls(func); + +callsfunc(); +// Tracker was called once +tracker.getCalls(callsfunc).length === 1; + +tracker.reset(callsfunc); +tracker.getCalls(callsfunc).length === 0; +``` + ### `tracker.verify()` + +> Stability: 1 - Experimental + +* `value` {any} the value to snapshot. +* `name` {string} the name of the snapshot. +* Returns: {Promise} + +Reads the `name` snapshot from a file and compares `value` to the snapshot. +`value` is serialized with [`util.inspect()`][]. If the value is not strictly +equal to the snapshot, `assert.snapshot()` returns a rejected `Promise` with an +[`AssertionError`][]. + +The snapshot filename uses the same basename as the application's main +entrypoint with a `.snapshot` extension. If the snapshot file does not exist, +it is created. The [`--update-assert-snapshot`][] command line flag can be used +to force the update of an existing snapshot. + +```mjs +import assert from 'node:assert/strict'; + +// Assuming that the application's main entrypoint is app.mjs, this reads the +// 'snapshotName' snapshot from app.snapshot and strictly compares its value +// to `util.inspect('value')`. +await assert.snapshot('value', 'snapshotName'); +``` + +```cjs +const assert = require('node:assert/strict'); + +(async () => { + // Assuming that the application's main entrypoint is app.js, this reads the + // 'snapshotName' snapshot from app.snapshot and strictly compares its value + // to `util.inspect('value')`. + await assert.snapshot('value', 'snapshotName'); +})(); +``` + ## `assert.strictEqual(actual, expected[, message])` diff --git a/doc/api/cli.md b/doc/api/cli.md index dd7cbbd12fc1b25..18daed918dafe0d 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -103,7 +103,7 @@ If this flag is passed, the behavior can still be set to not abort through ### `--build-snapshot` > Stability: 1 - Experimental @@ -344,7 +344,9 @@ of `--enable-source-maps`. ### `--experimental-global-customevent` Expose the [CustomEvent Web API][] on the global scope. @@ -512,7 +514,9 @@ To allow polyfills to be added, ### `--force-node-api-uncaught-exceptions-policy` Enforces `uncaughtException` event on Node-API asynchronous callbacks. @@ -872,7 +876,9 @@ against FIPS-enabled OpenSSL. ### `--openssl-shared-config` Enable OpenSSL default configuration section, `openssl_conf` to be read from @@ -887,7 +893,9 @@ Node.js which is `nodejs_conf` and is default when this option is not used. ### `--openssl-legacy-provider` Enable OpenSSL 3.0 legacy provider. For more information please see @@ -1064,6 +1072,9 @@ changes: Name of the file to which the report will be written. +If the filename is set to `'stdout'` or `'stderr'`, the report is written to +the stdout or stderr of the process respectively. + ### `--report-on-fatalerror` -Enables report to be generated on uncaught exceptions. Useful when inspecting -the JavaScript stack in conjunction with native stack and other runtime -environment data. +Enables report to be generated when the process exits due to an uncaught +exception. Useful when inspecting the JavaScript stack in conjunction with +native stack and other runtime environment data. ### `--secure-heap=n` @@ -1185,7 +1199,7 @@ The value given must be a power of two. ### `--snapshot-blob=path` > Stability: 1 - Experimental @@ -1210,7 +1224,9 @@ If they don't match, Node.js would refuse to load the snapshot and exit with 1. ### `--test` Starts the Node.js command line test runner. This flag cannot be combined with @@ -1220,7 +1236,9 @@ on [running tests from the command line][] for more details. ### `--test-only` Configures the test runner to only execute top level tests that have the `only` @@ -1330,7 +1348,7 @@ for TLSv1.2, which is not as secure as TLSv1.3. > Stability: 0 - Deprecated @@ -1488,6 +1506,14 @@ occurs. One of the following modes can be chosen: If a rejection happens during the command line entry point's ES module static loading phase, it will always raise it as an uncaught exception. +### `--update-assert-snapshot` + + + +Updates snapshot files used by [`assert.snapshot()`][]. + ### `--use-bundled-ca`, `--use-openssl-ca` + +> Stability: 1 - Experimental + +Starts Node.js in watch mode. +When in watch mode, changes in the watched files cause the Node.js process to +restart. +By default, watch mode will watch the entry point +and any required or imported module. +Use `--watch-path` to specify what paths to watch. + +This flag cannot be combined with +`--check`, `--eval`, `--interactive`, or the REPL. + +```console +$ node --watch index.js +``` + +### `--watch-path` + + + +> Stability: 1 - Experimental + +Starts Node.js in watch mode and specifies what paths to watch. +When in watch mode, changes in the watched paths cause the Node.js process to +restart. +This will turn off watching of required or imported modules, even when used in +combination with `--watch`. + +This flag cannot be combined with +`--check`, `--eval`, `--interactive`, or the REPL. + +```console +$ node --watch-path=./src --watch-path=./tests index.js +``` + +This option is only supported on macOS and Windows. +An `ERR_FEATURE_UNAVAILABLE_ON_PLATFORM` exception will be thrown +when the option is used on a platform that does not support it. + ### `--zero-fill-buffers` @@ -2224,6 +2300,7 @@ done [`NO_COLOR`]: https://no-color.org [`SlowBuffer`]: buffer.md#class-slowbuffer [`YoungGenerationSizeFromSemiSpaceSize`]: https://chromium.googlesource.com/v8/v8.git/+/refs/tags/10.3.129/src/heap/heap.cc#328 +[`assert.snapshot()`]: assert.md#assertsnapshotvalue-name [`dns.lookup()`]: dns.md#dnslookuphostname-options-callback [`dns.setDefaultResultOrder()`]: dns.md#dnssetdefaultresultorderorder [`dnsPromises.lookup()`]: dns.md#dnspromiseslookuphostname-options diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 794ea985e108166..dc581cbd82b6bbb 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2871,9 +2871,11 @@ Does not perform any other validation checks on the certificate. added: v6.3.0 --> -* Returns: {Object} An object containing commonly used constants for crypto and - security related operations. The specific constants currently defined are - described in [Crypto constants][]. +* {Object} + +An object containing commonly used constants for crypto and security related +operations. The specific constants currently defined are described in +[Crypto constants][]. ### `crypto.DEFAULT_ENCODING` @@ -2910,7 +2912,7 @@ is currently in use. Setting to true requires a FIPS build of Node.js. This property is deprecated. Please use `crypto.setFips()` and `crypto.getFips()` instead. -### `crypto.checkPrime(candidate[, options[, callback]])` +### `crypto.checkPrime(candidate[, options], callback)` * `digest` {string} The digest algorithm to use. * `ikm` {string|ArrayBuffer|Buffer|TypedArray|DataView|KeyObject} The input - keying material. It must be at least one byte in length. + keying material. Must be provided but can be zero-length. * `salt` {string|ArrayBuffer|Buffer|TypedArray|DataView} The salt value. Must be provided but can be zero-length. * `info` {string|ArrayBuffer|Buffer|TypedArray|DataView} Additional info value. diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 5243fa0fb2b621f..7cfe0c01ee0f6ee 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -3149,7 +3149,9 @@ Convert them to primitive strings. @@ -3167,7 +3169,9 @@ thing instead. @@ -3181,7 +3185,7 @@ strings (e.g., '1') are deprecated as parameter in [`process.exit()`][]. diff --git a/doc/api/dgram.md b/doc/api/dgram.md index df50a7b107513ae..4c188629e2bb220 100644 --- a/doc/api/dgram.md +++ b/doc/api/dgram.md @@ -461,6 +461,23 @@ added: v8.7.0 This method throws [`ERR_SOCKET_BUFFER_SIZE`][] if called on an unbound socket. +### `socket.getSendQueueSize()` + + + +* Returns: {number} Number of bytes queued for sending. + +### `socket.getSendQueueCount()` + + + +* Returns: {number} Number of send requests currently in the queue awaiting + to be processed. + ### `socket.ref()` * `name` {string|symbol} The channel name @@ -184,6 +185,7 @@ diagnostics_channel.subscribe('my-channel', (message, name) => { * `name` {string|symbol} The channel name @@ -308,7 +310,9 @@ channel.publish({ added: - v15.1.0 - v14.17.0 -deprecated: v18.7.0 +deprecated: + - v18.7.0 + - v16.17.0 --> > Stability: 0 - Deprecated: Use [`diagnostics_channel.subscribe(name, onMessage)`][] @@ -347,7 +351,9 @@ channel.subscribe((message, name) => { added: - v15.1.0 - v14.17.0 -deprecated: v18.7.0 +deprecated: + - v18.7.0 + - v16.17.0 changes: - version: - v17.1.0 @@ -428,6 +434,8 @@ Emitted when server receives a request. Emitted when server sends a response. +#### NET + `net.client.socket` * `socket` {net.Socket} @@ -440,13 +448,40 @@ Emitted when a new TCP or pipe client socket is created. Emitted when a new TCP or pipe connection is received. +#### UDP + `udp.socket` * `socket` {dgram.Socket} Emitted when a new UDP socket is created. +#### Process + + + +`child_process` + +* `process` {ChildProcess} + +Emitted when a new process is created. + +#### Worker Thread + + + +`worker_threads` + +* `worker` [`Worker`][] + +Emitted when a new thread is created. + [`'uncaughtException'`]: process.md#event-uncaughtexception +[`Worker`]: worker_threads.md#class-worker [`channel.subscribe(onMessage)`]: #channelsubscribeonmessage [`diagnostics_channel.channel(name)`]: #diagnostics_channelchannelname [`diagnostics_channel.subscribe(name, onMessage)`]: #diagnostics_channelsubscribename-onmessage diff --git a/doc/api/errors.md b/doc/api/errors.md index e1c2810e1efd0c3..1ad36bd757d713b 100644 --- a/doc/api/errors.md +++ b/doc/api/errors.md @@ -705,6 +705,13 @@ A special type of error that can be triggered whenever Node.js detects an exceptional logic violation that should never occur. These are raised typically by the `node:assert` module. + + +### `ERR_ASSERT_SNAPSHOT_NOT_SUPPORTED` + +An attempt was made to use `assert.snapshot()` in an environment that +does not support snapshots, such as the REPL, or when using `node --eval`. + ### `ERR_ASYNC_CALLBACK` @@ -2150,7 +2157,9 @@ for more information. ### `ERR_LOADER_CHAIN_INCOMPLETE` An ESM loader hook returned without calling `next()` and without explicitly @@ -2420,7 +2429,9 @@ cannot be imported through the package resolution, unless using an absolute URL. ### `ERR_PARSE_ARGS_INVALID_OPTION_VALUE` When `strict` set to `true`, thrown by [`util.parseArgs()`][] if a {boolean} @@ -2432,7 +2443,9 @@ value is provided for an option of type {boolean}. ### `ERR_PARSE_ARGS_UNEXPECTED_POSITIONAL` Thrown by [`util.parseArgs()`][], when a positional argument is provided and @@ -2443,7 +2456,9 @@ Thrown by [`util.parseArgs()`][], when a positional argument is provided and ### `ERR_PARSE_ARGS_UNKNOWN_OPTION` When `strict` set to `true`, thrown by [`util.parseArgs()`][] if an argument @@ -3449,7 +3464,9 @@ The module must be successfully linked before instantiation. The linker function returned a module for which linking has failed. diff --git a/doc/api/esm.md b/doc/api/esm.md index dedb42b96f75ebd..1f853b89b595c9c 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -9,6 +9,7 @@ added: v8.5.0 changes: - version: - v18.6.0 + - v16.17.0 pr-url: https://github.com/nodejs/node/pull/42623 description: Add support for chaining loaders. - version: @@ -682,6 +683,7 @@ added: v8.8.0 changes: - version: - v18.6.0 + - v16.17.0 pr-url: https://github.com/nodejs/node/pull/42623 description: Add support for chaining loaders. - version: v16.12.0 @@ -731,7 +733,9 @@ prevent unintentional breaks in the chain. diff --git a/doc/api/events.md b/doc/api/events.md index 28b6b31fa04c9a7..4876dd6d4a639b7 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -1487,9 +1487,9 @@ require manual async tracking. Specifically, all events emitted by instances of `events.EventEmitterAsyncResource` will run within its [async context][]. ```mjs -import { EventEmitterAsyncResource } from 'node:events'; +import { EventEmitterAsyncResource, EventEmitter } from 'node:events'; import { notStrictEqual, strictEqual } from 'node:assert'; -import { executionAsyncId } from 'node:async_hooks'; +import { executionAsyncId, triggerAsyncId } from 'node:async_hooks'; // Async tracking tooling will identify this as 'Q'. const ee1 = new EventEmitterAsyncResource({ name: 'Q' }); @@ -1516,9 +1516,9 @@ Promise.resolve().then(() => { ``` ```cjs -const { EventEmitterAsyncResource } = require('node:events'); +const { EventEmitterAsyncResource, EventEmitter } = require('node:events'); const { notStrictEqual, strictEqual } = require('node:assert'); -const { executionAsyncId } = require('node:async_hooks'); +const { executionAsyncId, triggerAsyncId } = require('node:async_hooks'); // Async tracking tooling will identify this as 'Q'. const ee1 = new EventEmitterAsyncResource({ name: 'Q' }); @@ -1990,7 +1990,9 @@ Removes the `listener` from the list of handlers for event `type`. ### Class: `CustomEvent` > Stability: 1 - Experimental. @@ -2003,7 +2005,9 @@ Instances are created internally by Node.js. #### `event.detail` > Stability: 1 - Experimental. diff --git a/doc/api/fs.md b/doc/api/fs.md index e3caa9a44c0a7bb..316b1b30111e067 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -420,7 +420,9 @@ number of bytes read is zero. #### `filehandle.read(buffer[, options])` * `buffer` {Buffer|TypedArray|DataView} A buffer that will be filled with the @@ -649,7 +651,9 @@ the end of the file. #### `filehandle.write(buffer[, options])` * `buffer` {Buffer|TypedArray|DataView} @@ -3332,7 +3336,9 @@ above values. ### `fs.read(fd, buffer[, options], callback)` * `fd` {integer} @@ -4501,7 +4507,9 @@ the end of the file. ### `fs.write(fd, buffer[, options], callback)` * `fd` {integer} @@ -5905,7 +5913,9 @@ this API: [`fs.write(fd, buffer...)`][]. ### `fs.writeSync(fd, buffer[, options])` * `fd` {integer} diff --git a/doc/api/globals.md b/doc/api/globals.md index 91da5a21c88efa0..3e5cbcf7da8d116 100644 --- a/doc/api/globals.md +++ b/doc/api/globals.md @@ -202,7 +202,9 @@ console.log(ac.signal.reason); // Error('boom!'); #### `abortSignal.throwIfAborted()` If `abortSignal.aborted` is `true`, throws `abortSignal.reason`. @@ -383,7 +385,9 @@ only if the Node.js binary was compiled with including support for the ## `CustomEvent` > Stability: 1 - Experimental. Enable this API with the diff --git a/doc/api/http.md b/doc/api/http.md index cd658f856b9aba3..d7345cbc0438c26 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1409,7 +1409,9 @@ type other than {net.Socket}. ### Event: `'dropRequest'` * `request` {http.IncomingMessage} Arguments for the HTTP request, as it is in @@ -2127,10 +2129,41 @@ buffer. Returns `false` if all or part of the data was queued in user memory. added: v0.3.0 --> -Sends a HTTP/1.1 100 Continue message to the client, indicating that +Sends an HTTP/1.1 100 Continue message to the client, indicating that the request body should be sent. See the [`'checkContinue'`][] event on `Server`. +### `response.writeEarlyHints(links[, callback])` + + + +* `links` {string|Array} +* `callback` {Function} + +Sends an HTTP/1.1 103 Early Hints message to the client with a Link header, +indicating that the user agent can preload/preconnect the linked resources. +The `links` can be a string or an array of strings containing the values +of the `Link` header. The optional `callback` argument will be called when +the response message has been written. + +**Example** + +```js +const earlyHintsLink = '; rel=preload; as=style'; +response.writeEarlyHints(earlyHintsLink); + +const earlyHintsLinks = [ + '; rel=preload; as=style', + '; rel=preload; as=script', +]; +response.writeEarlyHints(earlyHintsLinks); + +const earlyHintsCallback = () => console.log('early hints message sent'); +response.writeEarlyHints(earlyHintsLinks, earlyHintsCallback); +``` + ### `response.writeHead(statusCode[, statusMessage][, headers])` * {Object} @@ -2547,7 +2582,9 @@ The request/response trailers object. Only populated at the `'end'` event. ### `message.trailersDistinct` * {Object} @@ -2670,7 +2707,9 @@ will result in a `TypeError` being thrown. ### `outgoingMessage.appendHeader(name, value)` * `name` {string} Header name @@ -3636,7 +3675,7 @@ try { ## `http.setMaxIdleHTTPParsers` * {number} diff --git a/doc/api/http2.md b/doc/api/http2.md index 28057a58a457247..d741a4df1465e9b 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2275,6 +2275,11 @@ a given number of milliseconds set using `http2secureServer.setTimeout()`. * `socket` {stream.Duplex} @@ -2284,6 +2289,15 @@ negotiate an allowed protocol (i.e. HTTP/2 or HTTP/1.1). The event handler receives the socket for handling. If no listener is registered for this event, the connection is terminated. A timeout may be specified using the `'unknownProtocolTimeout'` option passed to [`http2.createSecureServer()`][]. + +In earlier versions of Node.js, this event would be emitted if `allowHTTP1` is +`false` and, during the TLS handshake, the client either does not send an ALPN +extension or sends an ALPN extension that does not include HTTP/2 (`h2`). Newer +versions of Node.js only emit this event if `allowHTTP1` is `false` and the +client does not send an ALPN extension. If the client sends an ALPN extension +that does not include HTTP/2 (or HTTP/1.1 if `allowHTTP1` is `true`), the TLS +handshake will fail and no secure connection will be established. + See the [Compatibility API][]. #### `server.close([callback])` @@ -3991,6 +4005,32 @@ Sends a status `100 Continue` to the client, indicating that the request body should be sent. See the [`'checkContinue'`][] event on `Http2Server` and `Http2SecureServer`. +### `response.writeEarlyHints(links)` + + + +* `links` {string|Array} + +Sends a status `103 Early Hints` to the client with a Link header, +indicating that the user agent can preload/preconnect the linked resources. +The `links` can be a string or an array of strings containing the values +of the `Link` header. + +**Example** + +```js +const earlyHintsLink = '; rel=preload; as=style'; +response.writeEarlyHints(earlyHintsLink); + +const earlyHintsLinks = [ + '; rel=preload; as=style', + '; rel=preload; as=script', +]; +response.writeEarlyHints(earlyHintsLinks); +``` + #### `response.writeHead(statusCode[, statusMessage][, headers])` * `moduleName` {string} name of the module @@ -160,7 +162,8 @@ added: --> * `path` {string} -* Returns: {module.SourceMap} +* Returns: {module.SourceMap|undefined} Returns `module.SourceMap` if a source + map is found, `undefined` otherwise. `path` is the resolved path for the file for which a corresponding source map should be fetched. diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 56fc3491a2c8e28..ef7317e5f687e90 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -1189,7 +1189,7 @@ added: > Stability: 1 - Experimental -````c +```c NAPI_EXTERN napi_status node_api_throw_syntax_error(napi_env env, const char* code, const char* msg); @@ -1214,7 +1214,7 @@ napiVersion: 1 NAPI_EXTERN napi_status napi_is_error(napi_env env, napi_value value, bool* result); -```` +``` * `[in] env`: The environment that the API is invoked under. * `[in] value`: The `napi_value` to be checked. diff --git a/doc/api/net.md b/doc/api/net.md index b5310b10665302f..233821d80214dca 100644 --- a/doc/api/net.md +++ b/doc/api/net.md @@ -284,7 +284,9 @@ Emitted when the server has been bound after calling [`server.listen()`][]. ### Event: `'drop'` When the number of connections reaches the threshold of `server.maxConnections`, @@ -858,7 +860,7 @@ changes: - v17.7.0 - v16.15.0 pr-url: https://github.com/nodejs/node/pull/41310 - description: The `noDelay`, `keepAlive` and `keepAliveInitialDelay` + description: The `noDelay`, `keepAlive`, and `keepAliveInitialDelay` options are supported now. - version: v12.10.0 pr-url: https://github.com/nodejs/node/pull/25436 @@ -1051,7 +1053,7 @@ The numeric representation of the local port. For example, `80` or `21`. ### `socket.localFamily` * {string} @@ -1126,7 +1128,9 @@ The numeric representation of the remote port. For example, `80` or `21`. ### `socket.resetAndDestroy()` * Returns: {net.Socket} @@ -1476,6 +1480,13 @@ then returns the `net.Socket` that starts the connection. * `options` {Object} diff --git a/doc/api/os.md b/doc/api/os.md index e4b9d93b41bac4e..327cbd5b3a1e4f8 100644 --- a/doc/api/os.md +++ b/doc/api/os.md @@ -452,6 +452,22 @@ On POSIX systems, the operating system release is determined by calling available, `GetVersionExW()` will be used. See for more information. +## `os.machine()` + + + +* Returns {string} + +Returns the machine type as a string, such as `arm`, `aarch64`, `mips`, +`mips64`, `ppc64`, `ppc64le`, `s390`, `s390x`, `i386`, `i686`, `x86_64`. + +On POSIX systems, the machine type is determined by calling +[`uname(3)`][]. On Windows, `RtlGetVersion()` is used, and if it is not +available, `GetVersionExW()` will be used. See + for more information. + ## OS constants The following constants are exported by `os.constants`. diff --git a/doc/api/packages.md b/doc/api/packages.md index 2ee71ed77c2e540..52ba6f432bbf84c 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -126,7 +126,7 @@ There is the ECMAScript module loader: * 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, + are passed through the `cjs-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. diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index bb5648f0a744399..157c0e014e042cc 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -70,7 +70,9 @@ Performance Timeline. If `name` is provided, removes only the named measure. ### `performance.clearResourceTimings([name])` * `name` {string} @@ -213,7 +215,9 @@ Performance Timeline manually with `performance.clearMarks`. ### `performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, global, cacheMode)` * `timingInfo` {Object} [Fetch Timing Info][] @@ -308,6 +312,17 @@ added: v8.5.0 Returns the current high resolution millisecond timestamp, where 0 represents the start of the current `node` process. +### `performance.setResourceTimingBufferSize(maxSize)` + + + +Sets the global performance resource timing buffer size to the specified number +of "resource" type performance entry objects. + +By default the max buffer size is set to 250. + ### `performance.timeOrigin` + +The `'resourcetimingbufferfull'` event is fired when the global performance +resource timing buffer is full. Adjust resource timing buffer size with +`performance.setResourceTimingBufferSize()` or clear the buffer with +`performance.clearResourceTimings()` in the event listener to allow +more entries to be added to the performance timeline buffer. + ## Class: `PerformanceEntry` * Extends: {PerformanceEntry} @@ -726,7 +755,9 @@ The constructor of this class is not exposed to users directly. ### `performanceResourceTiming.workerStart` * {number} @@ -738,7 +769,9 @@ will always return 0. ### `performanceResourceTiming.redirectStart` * {number} @@ -749,7 +782,9 @@ of the fetch which initiates the redirect. ### `performanceResourceTiming.redirectEnd` * {number} @@ -760,7 +795,9 @@ receiving the last byte of the response of the last redirect. ### `performanceResourceTiming.fetchStart` * {number} @@ -771,7 +808,9 @@ to fetch the resource. ### `performanceResourceTiming.domainLookupStart` * {number} @@ -782,7 +821,9 @@ the domain name lookup for the resource. ### `performanceResourceTiming.domainLookupEnd` * {number} @@ -793,7 +834,9 @@ after the Node.js finished the domain name lookup for the resource. ### `performanceResourceTiming.connectStart` * {number} @@ -805,7 +848,9 @@ the resource. ### `performanceResourceTiming.connectEnd` * {number} @@ -817,7 +862,9 @@ the resource. ### `performanceResourceTiming.secureConnectionStart` * {number} @@ -828,7 +875,9 @@ before Node.js starts the handshake process to secure the current connection. ### `performanceResourceTiming.requestStart` * {number} @@ -839,7 +888,9 @@ before Node.js receives the first byte of the response from the server. ### `performanceResourceTiming.responseEnd` * {number} @@ -851,7 +902,9 @@ the transport connection is closed, whichever comes first. ### `performanceResourceTiming.transferSize` * {number} @@ -862,7 +915,9 @@ includes the response header fields plus the response payload body. ### `performanceResourceTiming.encodedBodySize` * {number} @@ -874,7 +929,9 @@ content-codings. ### `performanceResourceTiming.decodedBodySize` * {number} @@ -886,7 +943,9 @@ content-codings. ### `performanceResourceTiming.toJSON()` Returns a `object` that is the JSON representation of the diff --git a/doc/api/process.md b/doc/api/process.md index b38ef46189f72e1..730f3f6ac9359e4 100644 --- a/doc/api/process.md +++ b/doc/api/process.md @@ -2825,6 +2825,9 @@ Filename where the report is written. If set to the empty string, the output filename will be comprised of a timestamp, PID, and sequence number. The default value is the empty string. +If the value of `process.report.filename` is set to `'stdout'` or `'stderr'`, +the report is written to the stdout or stderr of the process respectively. + ```mjs import { report } from 'node:process'; @@ -3020,6 +3023,9 @@ Writes a diagnostic report to a file. If `filename` is not provided, the default filename includes the date, time, PID, and a sequence number. The report's JavaScript stack trace is taken from `err`, if present. +If the value of `filename` is set to `'stdout'` or `'stderr'`, the report is +written to the stdout or stderr of the process respectively. + ```mjs import { report } from 'node:process'; diff --git a/doc/api/stream.md b/doc/api/stream.md index c4d90e40b5104eb..38ad982ced443b0 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -599,7 +599,9 @@ the stream has not been destroyed, errored or ended. ##### `writable.writableAborted` > Stability: 1 - Experimental @@ -1110,7 +1112,7 @@ Implementors should not override this method, but instead implement ##### `readable.closed` * {boolean} @@ -1120,7 +1122,7 @@ Is `true` after `'close'` has been emitted. ##### `readable.destroyed` * {boolean} @@ -1986,7 +1988,9 @@ console.log('done'); // Stream has finished ##### `readable.find(fn[, options])` > Stability: 1 - Experimental diff --git a/doc/api/test.md b/doc/api/test.md index 551259d314bb70d..3636adaee524f9a 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -316,15 +316,48 @@ Otherwise, the test is considered to be a failure. Test files must be executable by Node.js, but are not required to use the `node:test` module internally. +## `run([options])` + + + +* `options` {Object} Configuration options for running tests. The following + properties are supported: + * `concurrency` {number|boolean} If a number is provided, + then that many files would run in parallel. + If truthy, it would run (number of cpu cores - 1) + files in parallel. + If falsy, it would only run one file at a time. + If unspecified, subtests inherit this value from their parent. + **Default:** `true`. + * `files`: {Array} An array containing the list of files to run. + **Default** matching files from [test runner execution model][]. + * `signal` {AbortSignal} Allows aborting an in-progress test execution. + * `timeout` {number} A number of milliseconds the test execution will + fail after. + If unspecified, subtests inherit this value from their parent. + **Default:** `Infinity`. +* Returns: {TapStream} + +```js +run({ files: [path.resolve('./tests/test.js')] }) + .pipe(process.stdout); +``` + ## `test([name][, options][, fn])` @@ -449,7 +482,7 @@ same as [`it([name], { todo: true }[, fn])`][it options]. ### `before([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. @@ -477,7 +510,7 @@ describe('tests', async () => { ### `after([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. @@ -505,7 +538,7 @@ describe('tests', async () => { ### `beforeEach([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. @@ -524,7 +557,7 @@ before each subtest of the current suite. ```js describe('tests', async () => { - beforeEach(() => t.diagnostics('about to run a test')); + beforeEach(() => t.diagnostic('about to run a test')); it('is a subtest', () => { assert.ok('some relevant assertion here'); }); @@ -534,7 +567,7 @@ describe('tests', async () => { ### `afterEach([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. @@ -553,17 +586,60 @@ after each subtest of the current test. ```js describe('tests', async () => { - afterEach(() => t.diagnostics('about to run a test')); + afterEach(() => t.diagnostic('about to run a test')); it('is a subtest', () => { assert.ok('some relevant assertion here'); }); }); ``` +## Class: `TapStream` + + + +* Extends {ReadableStream} + +A successful call to [`run()`][] method will return a new {TapStream} +object, streaming a [TAP][] output +`TapStream` will emit events, in the order of the tests definition + +### Event: `'test:diagnostic'` + +* `message` {string} The diagnostic message. + +Emitted when [`context.diagnostic`][] is called. + +### Event: `'test:fail'` + +* `data` {Object} + * `duration` {number} The test duration. + * `error` {Error} The failure casing test to fail. + * `name` {string} The test name. + * `testNumber` {number} The ordinal number of the test. + * `todo` {string|undefined} Present if [`context.todo`][] is called + * `skip` {string|undefined} Present if [`context.skip`][] is called + +Emitted when a test fails. + +### Event: `'test:pass'` + +* `data` {Object} + * `duration` {number} The test duration. + * `name` {string} The test name. + * `testNumber` {number} The ordinal number of the test. + * `todo` {string|undefined} Present if [`context.todo`][] is called + * `skip` {string|undefined} Present if [`context.skip`][] is called + +Emitted when a test passes. + ## Class: `TestContext` An instance of `TestContext` is passed to each test function in order to @@ -573,7 +649,7 @@ exposed as part of the API. ### `context.beforeEach([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. The first argument @@ -592,7 +668,7 @@ before each subtest of the current test. ```js test('top level test', async (t) => { - t.beforeEach((t) => t.diagnostics(`about to run ${t.name}`)); + t.beforeEach((t) => t.diagnostic(`about to run ${t.name}`)); await t.test( 'This is a subtest', (t) => { @@ -605,7 +681,7 @@ test('top level test', async (t) => { ### `context.afterEach([, fn][, options])` * `fn` {Function|AsyncFunction} The hook function. The first argument @@ -624,7 +700,7 @@ after each subtest of the current test. ```js test('top level test', async (t) => { - t.afterEach((t) => t.diagnostics(`finished running ${t.name}`)); + t.afterEach((t) => t.diagnostic(`finished running ${t.name}`)); await t.test( 'This is a subtest', (t) => { @@ -637,7 +713,9 @@ test('top level test', async (t) => { ### `context.diagnostic(message)` * `message` {string} Message to be displayed as a TAP diagnostic. @@ -655,7 +733,7 @@ test('top level test', (t) => { ### `context.name` The name of the test. @@ -663,7 +741,9 @@ The name of the test. ### `context.runOnly(shouldRunOnlyTests)` * `shouldRunOnlyTests` {boolean} Whether or not to run `only` tests. @@ -687,7 +767,9 @@ test('top level test', (t) => { ### `context.signal` * {AbortSignal} Can be used to abort test subtasks when the test has been @@ -702,7 +784,9 @@ test('top level test', async (t) => { ### `context.skip([message])` * `message` {string} Optional skip message to be displayed in TAP output. @@ -722,7 +806,9 @@ test('top level test', (t) => { ### `context.todo([message])` * `message` {string} Optional `TODO` message to be displayed in TAP output. @@ -741,12 +827,16 @@ test('top level test', (t) => { ### `context.test([name][, options][, fn])` @@ -796,7 +886,9 @@ test('top level test', async (t) => { ## Class: `SuiteContext` An instance of `SuiteContext` is passed to each suite function in order to @@ -806,7 +898,7 @@ exposed as part of the API. ### `context.name` The name of the suite. @@ -814,7 +906,9 @@ The name of the suite. ### `context.signal` * {AbortSignal} Can be used to abort test subtasks when the test has been @@ -825,6 +919,10 @@ added: v18.7.0 [`--test`]: cli.md#--test [`SuiteContext`]: #class-suitecontext [`TestContext`]: #class-testcontext +[`context.diagnostic`]: #contextdiagnosticmessage +[`context.skip`]: #contextskipmessage +[`context.todo`]: #contexttodomessage +[`run()`]: #runoptions [`test()`]: #testname-options-fn [describe options]: #describename-options-fn [it options]: #testname-options-fn diff --git a/doc/api/tls.md b/doc/api/tls.md index 1d4db99a11bf224..ac74e559dd0c34d 100644 --- a/doc/api/tls.md +++ b/doc/api/tls.md @@ -683,8 +683,8 @@ is set to describe how authorization failed. Depending on the settings of the TLS server, unauthorized connections may still be accepted. The `tlsSocket.alpnProtocol` property is a string that contains the selected -ALPN protocol. When ALPN has no selected protocol, `tlsSocket.alpnProtocol` -equals `false`. +ALPN protocol. When ALPN has no selected protocol because the client or the +server did not send an ALPN extension, `tlsSocket.alpnProtocol` equals `false`. The `tlsSocket.servername` property is a string containing the server name requested via SNI. @@ -807,7 +807,7 @@ negotiation. Instances of `tls.TLSSocket` implement the duplex [Stream][] interface. Methods that return TLS connection metadata (e.g. -[`tls.TLSSocket.getPeerCertificate()`][] will only return data while the +[`tls.TLSSocket.getPeerCertificate()`][]) will only return data while the connection is open. ### `new tls.TLSSocket(socket[, options])` @@ -2012,6 +2012,11 @@ where `secureSocket` has the same API as `pair.cleartext`. > Stability: 1 - Experimental @@ -950,7 +952,9 @@ snapshot cannot use these APIs again. ### `v8.startupSnapshot.addSerializeCallback(callback[, data])` * `callback` {Function} Callback to be invoked before serialization. @@ -965,7 +969,9 @@ into a form more suitable for serialization. ### `v8.startupSnapshot.addDeserializeCallback(callback[, data])` * `callback` {Function} Callback to be invoked after the snapshot is @@ -982,7 +988,9 @@ when the application is restarted from the snapshot. ### `v8.startupSnapshot.setDeserializeMainFunction(callback[, data])` * `callback` {Function} Callback to be invoked as the entry point after the @@ -1000,7 +1008,9 @@ needs to be provided to the deserialized application. ### `v8.startupSnapshot.isBuildingSnapshot()` * Returns: {boolean} diff --git a/doc/api/webcrypto.md b/doc/api/webcrypto.md index 3a91d0d5e1c63ab..f38621a950630d8 100644 --- a/doc/api/webcrypto.md +++ b/doc/api/webcrypto.md @@ -2,22 +2,32 @@ @@ -584,7 +596,9 @@ The algorithms currently supported include: @@ -666,7 +680,9 @@ The algorithms currently supported include: @@ -893,7 +913,9 @@ The unwrapped key algorithms supported include: @@ -965,13 +987,17 @@ are simple JavaScript dictionary objects. ### Class: `AlgorithmIdentifier` #### `algorithmIdentifier.name` * Type: {string} @@ -1228,7 +1254,9 @@ added: v15.0.0 #### `ed448Params.name` * Type: {string} Must be `'Ed448'`. @@ -1236,7 +1264,9 @@ added: v18.4.0 #### `ed448Params.context` * Type: {ArrayBuffer|TypedArray|DataView|Buffer|undefined} diff --git a/doc/api/worker_threads.md b/doc/api/worker_threads.md index e6c4b30935be508..99772189522e842 100644 --- a/doc/api/worker_threads.md +++ b/doc/api/worker_threads.md @@ -770,7 +770,9 @@ port2.postMessage(new URL('https://example.org')); ### `port.hasRef()` > Stability: 1 - Experimental @@ -987,14 +989,17 @@ changes: are passed in `workerData`, a `transferList` is required for those items or [`ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST`][] is thrown. See [`port.postMessage()`][] for more information. - * `resourceLimits` {Object} An optional set of resource limits for the new - JS engine instance. Reaching these limits leads to termination of the - `Worker` instance. These limits only affect the JS engine, and no external - data, including no `ArrayBuffer`s. Even if these limits are set, the process - may still abort if it encounters a global out-of-memory situation. - * `maxOldGenerationSizeMb` {number} The maximum size of the main heap in MB. + * `resourceLimits` {Object} An optional set of resource limits for the new JS + engine instance. Reaching these limits leads to termination of the `Worker` + instance. These limits only affect the JS engine, and no external data, + including no `ArrayBuffer`s. Even if these limits are set, the process may + still abort if it encounters a global out-of-memory situation. + * `maxOldGenerationSizeMb` {number} The maximum size of the main heap in + MB. If the command-line argument [`--max-old-space-size`][] is set, it + overrides this setting. * `maxYoungGenerationSizeMb` {number} The maximum size of a heap space for - recently created objects. + recently created objects. If the command-line argument + [`--max-semi-space-size`][] is set, it overrides this setting. * `codeRangeSizeMb` {number} The size of a pre-allocated memory range used for generated code. * `stackSizeMb` {number} The default maximum stack size for the thread. @@ -1332,6 +1337,8 @@ thread spawned will spawn another until the application crashes. [`'close'` event]: #event-close [`'exit'` event]: #event-exit [`'online'` event]: #event-online +[`--max-old-space-size`]: cli.md#--max-old-space-sizesize-in-megabytes +[`--max-semi-space-size`]: cli.md#--max-semi-space-sizesize-in-megabytes [`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer [`AsyncResource`]: async_hooks.md#class-asyncresource [`Buffer.allocUnsafe()`]: buffer.md#static-method-bufferallocunsafesize diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 663025e1c27ef51..acab9bfa04858e8 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -40,17 +40,13 @@ --color-text-secondary: var(--green2); } +h2 :target, +h3 :target, h4 :target, h5 :target { scroll-margin-top: 55px; } -@supports not (content-visibility: auto) { - h3 :target { - scroll-margin-top: 55px; - } -} - .dark-mode { --background-color-highlight: var(--black2); --color-critical: var(--red4); diff --git a/doc/changelogs/CHANGELOG_V16.md b/doc/changelogs/CHANGELOG_V16.md index 742843f44ce3bbc..7ee620eef21a42e 100644 --- a/doc/changelogs/CHANGELOG_V16.md +++ b/doc/changelogs/CHANGELOG_V16.md @@ -9,6 +9,7 @@ +16.17.0
16.16.0
16.15.1
16.15.0
@@ -63,6 +64,805 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-08-16, Version 16.17.0 'Gallium' (LTS), @targos + +### Notable Changes + +#### Experimental command-line argument parser API + +Adds [`util.parseArgs`](https://nodejs.org/dist/latest-v16.x/docs/api/util.html#utilparseargsconfig) helper for higher level command-line argument parsing. + +Contributed by Benjamin Coe, John Gee, Darcy Clarke, Joe Sepi, Kevin Gibbons, Aaron Casanova, Jessica Nahulan, and Jordan Harband - [#42675](https://github.com/nodejs/node/pull/42675) + +#### Experimental ESM Loader Hooks API + +Node.js ESM Loader hooks now support multiple custom loaders, and composition is +achieved via "chaining": `foo-loader` calls `bar-loader` calls `qux-loader` +(a custom loader _must_ now signal a short circuit when intentionally not +calling the next). See the [ESM docs](https://nodejs.org/dist/latest-v16.x/docs/api/esm.html) for details. + +Real-world use-cases are laid out for end-users with working examples in the +article [Custom ESM loaders: Who, what, when, where, why, how](https://dev.to/jakobjingleheimer/custom-esm-loaders-who-what-when-where-why-how-4i1o). + +Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias - [#42623](https://github.com/nodejs/node/pull/42623) + +#### Experimental test runner + +The [`node:test`](https://nodejs.org/dist/latest-v16.x/docs/api/test.html) module, which was initially introduced in Node.js v18.0.0, +is now available with all the changes done to it up to Node.js v18.7.0. + +#### Improved interoperability of the Web Crypto API + +To better align Node.js' experimental implementation of the Web Crypto API with other runtimes, several changes were made: + +* Support for CFRG curves was added, with the `'Ed25519'`, `'Ed448'`, `'X25519'`, and `'X448'` algorithms. +* The proprietary `'NODE-DSA'`, `'NODE-DH'`, `'NODE-SCRYPT'`, `'NODE-ED25519'`, `'NODE-ED448'`, `'NODE-X25519'`, and `'NODE-X448'` algorithms were removed. +* The proprietary `'node.keyObject'` import/export format was removed. + +Contributed by Filip Skokan - [#42507](https://github.com/nodejs/node/pull/42507), [#43310](https://github.com/nodejs/node/pull/43310) + +#### Dependency updates + +* Updated Corepack to 0.12.1 - [#43965](https://github.com/nodejs/node/pull/43965) +* Updated ICU to 71.1 - [#42655](https://github.com/nodejs/node/pull/42655) +* Updated npm to 8.15.0 - [#43917](https://github.com/nodejs/node/pull/43917) +* Updated Undici to 5.8.0 - [#43886](https://github.com/nodejs/node/pull/43886) + +#### Other notable changes + +* \[[`5f1e9e2030`](https://github.com/nodejs/node/commit/5f1e9e2030)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#42427](https://github.com/nodejs/node/pull/42427) +* \[[`934077a137`](https://github.com/nodejs/node/commit/934077a137)] - **(SEMVER-MINOR)** **crypto**: align webcrypto RSA key import/export with other implementations (Filip Skokan) [#42816](https://github.com/nodejs/node/pull/42816) +* \[[`7683e9623c`](https://github.com/nodejs/node/commit/7683e9623c)] - **(SEMVER-MINOR)** **dns**: export error code constants from `dns/promises` (Feng Yu) [#43176](https://github.com/nodejs/node/pull/43176) +* \[[`302a134b83`](https://github.com/nodejs/node/commit/302a134b83)] - **doc**: deprecate coercion to integer in process.exit (Daeyeon Jeong) [#43738](https://github.com/nodejs/node/pull/43738) +* \[[`4884f18ce5`](https://github.com/nodejs/node/commit/4884f18ce5)] - **(SEMVER-MINOR)** **doc**: deprecate diagnostics\_channel object subscribe method (Stephen Belanger) [#42714](https://github.com/nodejs/node/pull/42714) +* \[[`90f395dda9`](https://github.com/nodejs/node/commit/90f395dda9)] - **(SEMVER-MINOR)** **errors**: add support for cause in aborterror (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`7a5de2cc0c`](https://github.com/nodejs/node/commit/7a5de2cc0c)] - **(SEMVER-MINOR)** **events**: expose CustomEvent on global with CLI flag (Daeyeon Jeong) [#43885](https://github.com/nodejs/node/pull/43885) +* \[[`087adbb7a3`](https://github.com/nodejs/node/commit/087adbb7a3)] - **(SEMVER-MINOR)** **events**: add `CustomEvent` (Daeyeon Jeong) [#43514](https://github.com/nodejs/node/pull/43514) +* \[[`979c98a3cb`](https://github.com/nodejs/node/commit/979c98a3cb)] - **(SEMVER-MINOR)** **events**: propagate abortsignal reason in new AbortError ctor in events (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`e04c8a4921`](https://github.com/nodejs/node/commit/e04c8a4921)] - **(SEMVER-MINOR)** **fs**: propagate abortsignal reason in new AbortSignal constructors (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`464830993e`](https://github.com/nodejs/node/commit/464830993e)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601) +* \[[`3d7808ec3f`](https://github.com/nodejs/node/commit/3d7808ec3f)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768) +* \[[`082a2630fd`](https://github.com/nodejs/node/commit/082a2630fd)] - **(SEMVER-MINOR)** **http**: add drop request event for http server (theanarkh) [#43806](https://github.com/nodejs/node/pull/43806) +* \[[`5a74939770`](https://github.com/nodejs/node/commit/5a74939770)] - **(SEMVER-MINOR)** **http**: add diagnostics channel for http client (theanarkh) [#43580](https://github.com/nodejs/node/pull/43580) +* \[[`f05fd1a423`](https://github.com/nodejs/node/commit/f05fd1a423)] - **(SEMVER-MINOR)** **http**: add perf\_hooks detail for http request and client (theanarkh) [#43361](https://github.com/nodejs/node/pull/43361) +* \[[`9d1b4b7e29`](https://github.com/nodejs/node/commit/9d1b4b7e29)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397) +* \[[`fa5ac5a2eb`](https://github.com/nodejs/node/commit/fa5ac5a2eb)] - **(SEMVER-MINOR)** **http2**: propagate abortsignal reason in new AbortError constructor (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`94070f152e`](https://github.com/nodejs/node/commit/94070f152e)] - **(SEMVER-MINOR)** **http2**: compat support for array headers (OneNail) [#42901](https://github.com/nodejs/node/pull/42901) +* \[[`36dd39dec0`](https://github.com/nodejs/node/commit/36dd39dec0)] - **(SEMVER-MINOR)** **lib**: propagate abortsignal reason in new AbortError constructor in blob (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`8adf7d5e91`](https://github.com/nodejs/node/commit/8adf7d5e91)] - **(SEMVER-MINOR)** **lib**: add abortSignal.throwIfAborted() (James M Snell) [#40951](https://github.com/nodejs/node/pull/40951) +* \[[`3c1ed86840`](https://github.com/nodejs/node/commit/3c1ed86840)] - **(SEMVER-MINOR)** **lib**: improved diagnostics\_channel subscribe/unsubscribe (Stephen Belanger) [#42714](https://github.com/nodejs/node/pull/42714) +* \[[`e6186af5cc`](https://github.com/nodejs/node/commit/e6186af5cc)] - **(SEMVER-MINOR)** **module**: add isBuiltIn method (hemanth.hm) [#43396](https://github.com/nodejs/node/pull/43396) +* \[[`3d851d6d6b`](https://github.com/nodejs/node/commit/3d851d6d6b)] - **(SEMVER-MINOR)** **module,repl**: support 'node:'-only core modules (Colin Ihrig) [#42325](https://github.com/nodejs/node/pull/42325) +* \[[`303bd08d88`](https://github.com/nodejs/node/commit/303bd08d88)] - **(SEMVER-MINOR)** **net**: add drop event for net server (theanarkh) [#43582](https://github.com/nodejs/node/pull/43582) +* \[[`da03e9f484`](https://github.com/nodejs/node/commit/da03e9f484)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112) +* \[[`73f852e1e3`](https://github.com/nodejs/node/commit/73f852e1e3)] - **(SEMVER-MINOR)** **node-api**: emit uncaught-exception on unhandled tsfn callbacks (Chengzhong Wu) [#36510](https://github.com/nodejs/node/pull/36510) +* \[[`6dcdcd7f50`](https://github.com/nodejs/node/commit/6dcdcd7f50)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725) +* \[[`5750358872`](https://github.com/nodejs/node/commit/5750358872)] - **(SEMVER-MINOR)** **report**: add more heap infos in process report (theanarkh) [#43116](https://github.com/nodejs/node/pull/43116) +* \[[`e7b99e8c8d`](https://github.com/nodejs/node/commit/e7b99e8c8d)] - **(SEMVER-MINOR)** **src**: add --openssl-legacy-provider option (Daniel Bevenius) [#40478](https://github.com/nodejs/node/pull/40478) +* \[[`1281a48b89`](https://github.com/nodejs/node/commit/1281a48b89)] - **(SEMVER-MINOR)** **src**: define fs.constants.S\_IWUSR & S\_IRUSR for Win (Liviu Ionescu) [#42757](https://github.com/nodejs/node/pull/42757) +* \[[`9ea9797d34`](https://github.com/nodejs/node/commit/9ea9797d34)] - **(SEMVER-MINOR)** **src,doc,test**: add --openssl-shared-config option (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124) +* \[[`046debaee0`](https://github.com/nodejs/node/commit/046debaee0)] - **(SEMVER-MINOR)** **stream**: use cause options in AbortError constructors (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`6641fda10a`](https://github.com/nodejs/node/commit/6641fda10a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (Nitzan Uziely) [#41849](https://github.com/nodejs/node/pull/41849) +* \[[`edec73032c`](https://github.com/nodejs/node/commit/edec73032c)] - **(SEMVER-MINOR)** **stream**: add writableAborted (Robert Nagy) [#40802](https://github.com/nodejs/node/pull/40802) +* \[[`2aae868fa2`](https://github.com/nodejs/node/commit/2aae868fa2)] - **(SEMVER-MINOR)** **timers**: propagate signal.reason in awaitable timers (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`513f52445b`](https://github.com/nodejs/node/commit/513f52445b)] - **(SEMVER-MINOR)** **v8**: add v8.startupSnapshot utils (Joyee Cheung) [#43329](https://github.com/nodejs/node/pull/43329) +* \[[`a8eca74450`](https://github.com/nodejs/node/commit/a8eca74450)] - **(SEMVER-MINOR)** **v8**: export more fields in getHeapStatistics (theanarkh) [#42784](https://github.com/nodejs/node/pull/42784) +* \[[`845279e331`](https://github.com/nodejs/node/commit/845279e331)] - **(SEMVER-MINOR)** **worker**: add hasRef() to MessagePort (Darshan Sen) [#42849](https://github.com/nodejs/node/pull/42849) + +### Commits + +#### Semver-minor commits + +* \[[`58279d5b76`](https://github.com/nodejs/node/commit/58279d5b76)] - **(SEMVER-MINOR)** **buffer**: graduate Blob from experimental (James M Snell) [#41270](https://github.com/nodejs/node/pull/41270) +* \[[`72a0c5c743`](https://github.com/nodejs/node/commit/72a0c5c743)] - **(SEMVER-MINOR)** **crypto**: remove Node.js-specific webcrypto extensions (Filip Skokan) [#43310](https://github.com/nodejs/node/pull/43310) +* \[[`2e3a69a2ba`](https://github.com/nodejs/node/commit/2e3a69a2ba)] - **(SEMVER-MINOR)** **crypto**: add CFRG curves to Web Crypto API (Filip Skokan) [#42507](https://github.com/nodejs/node/pull/42507) +* \[[`5f1e9e2030`](https://github.com/nodejs/node/commit/5f1e9e2030)] - **(SEMVER-MINOR)** **crypto**: make authTagLength optional for CC20P1305 (Tobias Nießen) [#42427](https://github.com/nodejs/node/pull/42427) +* \[[`934077a137`](https://github.com/nodejs/node/commit/934077a137)] - **(SEMVER-MINOR)** **crypto**: align webcrypto RSA key import/export with other implementations (Filip Skokan) [#42816](https://github.com/nodejs/node/pull/42816) +* \[[`7683e9623c`](https://github.com/nodejs/node/commit/7683e9623c)] - **(SEMVER-MINOR)** **dns**: export error code constants from `dns/promises` (Feng Yu) [#43176](https://github.com/nodejs/node/pull/43176) +* \[[`4884f18ce5`](https://github.com/nodejs/node/commit/4884f18ce5)] - **(SEMVER-MINOR)** **doc**: deprecate diagnostics\_channel object subscribe method (Stephen Belanger) [#42714](https://github.com/nodejs/node/pull/42714) +* \[[`90f395dda9`](https://github.com/nodejs/node/commit/90f395dda9)] - **(SEMVER-MINOR)** **errors**: add support for cause in aborterror (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`247a6f6e85`](https://github.com/nodejs/node/commit/247a6f6e85)] - **(SEMVER-MINOR)** **esm**: add chaining to loaders (Jacob Smith) [#42623](https://github.com/nodejs/node/pull/42623) +* \[[`7a5de2cc0c`](https://github.com/nodejs/node/commit/7a5de2cc0c)] - **(SEMVER-MINOR)** **events**: expose CustomEvent on global with CLI flag (Daeyeon Jeong) [#43885](https://github.com/nodejs/node/pull/43885) +* \[[`087adbb7a3`](https://github.com/nodejs/node/commit/087adbb7a3)] - **(SEMVER-MINOR)** **events**: add `CustomEvent` (Daeyeon Jeong) [#43514](https://github.com/nodejs/node/pull/43514) +* \[[`979c98a3cb`](https://github.com/nodejs/node/commit/979c98a3cb)] - **(SEMVER-MINOR)** **events**: propagate abortsignal reason in new AbortError ctor in events (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`e04c8a4921`](https://github.com/nodejs/node/commit/e04c8a4921)] - **(SEMVER-MINOR)** **fs**: propagate abortsignal reason in new AbortSignal constructors (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`464830993e`](https://github.com/nodejs/node/commit/464830993e)] - **(SEMVER-MINOR)** **fs**: make params in writing methods optional (LiviaMedeiros) [#42601](https://github.com/nodejs/node/pull/42601) +* \[[`3d7808ec3f`](https://github.com/nodejs/node/commit/3d7808ec3f)] - **(SEMVER-MINOR)** **fs**: add `read(buffer[, options])` versions (LiviaMedeiros) [#42768](https://github.com/nodejs/node/pull/42768) +* \[[`082a2630fd`](https://github.com/nodejs/node/commit/082a2630fd)] - **(SEMVER-MINOR)** **http**: add drop request event for http server (theanarkh) [#43806](https://github.com/nodejs/node/pull/43806) +* \[[`5a74939770`](https://github.com/nodejs/node/commit/5a74939770)] - **(SEMVER-MINOR)** **http**: add diagnostics channel for http client (theanarkh) [#43580](https://github.com/nodejs/node/pull/43580) +* \[[`f05fd1a423`](https://github.com/nodejs/node/commit/f05fd1a423)] - **(SEMVER-MINOR)** **http**: add perf\_hooks detail for http request and client (theanarkh) [#43361](https://github.com/nodejs/node/pull/43361) +* \[[`9d1b4b7e29`](https://github.com/nodejs/node/commit/9d1b4b7e29)] - **(SEMVER-MINOR)** **http**: add uniqueHeaders option to request and createServer (Paolo Insogna) [#41397](https://github.com/nodejs/node/pull/41397) +* \[[`fa5ac5a2eb`](https://github.com/nodejs/node/commit/fa5ac5a2eb)] - **(SEMVER-MINOR)** **http2**: propagate abortsignal reason in new AbortError constructor (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`94070f152e`](https://github.com/nodejs/node/commit/94070f152e)] - **(SEMVER-MINOR)** **http2**: compat support for array headers (OneNail) [#42901](https://github.com/nodejs/node/pull/42901) +* \[[`36dd39dec0`](https://github.com/nodejs/node/commit/36dd39dec0)] - **(SEMVER-MINOR)** **lib**: propagate abortsignal reason in new AbortError constructor in blob (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`8adf7d5e91`](https://github.com/nodejs/node/commit/8adf7d5e91)] - **(SEMVER-MINOR)** **lib**: add abortSignal.throwIfAborted() (James M Snell) [#40951](https://github.com/nodejs/node/pull/40951) +* \[[`3c1ed86840`](https://github.com/nodejs/node/commit/3c1ed86840)] - **(SEMVER-MINOR)** **lib**: improved diagnostics\_channel subscribe/unsubscribe (Stephen Belanger) [#42714](https://github.com/nodejs/node/pull/42714) +* \[[`e6186af5cc`](https://github.com/nodejs/node/commit/e6186af5cc)] - **(SEMVER-MINOR)** **module**: add isBuiltIn method (hemanth.hm) [#43396](https://github.com/nodejs/node/pull/43396) +* \[[`3d851d6d6b`](https://github.com/nodejs/node/commit/3d851d6d6b)] - **(SEMVER-MINOR)** **module,repl**: support 'node:'-only core modules (Colin Ihrig) [#42325](https://github.com/nodejs/node/pull/42325) +* \[[`303bd08d88`](https://github.com/nodejs/node/commit/303bd08d88)] - **(SEMVER-MINOR)** **net**: add drop event for net server (theanarkh) [#43582](https://github.com/nodejs/node/pull/43582) +* \[[`da03e9f484`](https://github.com/nodejs/node/commit/da03e9f484)] - **(SEMVER-MINOR)** **net**: add ability to reset a tcp socket (pupilTong) [#43112](https://github.com/nodejs/node/pull/43112) +* \[[`73f852e1e3`](https://github.com/nodejs/node/commit/73f852e1e3)] - **(SEMVER-MINOR)** **node-api**: emit uncaught-exception on unhandled tsfn callbacks (Chengzhong Wu) [#36510](https://github.com/nodejs/node/pull/36510) +* \[[`6dcdcd7f50`](https://github.com/nodejs/node/commit/6dcdcd7f50)] - **(SEMVER-MINOR)** **perf\_hooks**: add PerformanceResourceTiming (RafaelGSS) [#42725](https://github.com/nodejs/node/pull/42725) +* \[[`5750358872`](https://github.com/nodejs/node/commit/5750358872)] - **(SEMVER-MINOR)** **report**: add more heap infos in process report (theanarkh) [#43116](https://github.com/nodejs/node/pull/43116) +* \[[`e7b99e8c8d`](https://github.com/nodejs/node/commit/e7b99e8c8d)] - **(SEMVER-MINOR)** **src**: add --openssl-legacy-provider option (Daniel Bevenius) [#40478](https://github.com/nodejs/node/pull/40478) +* \[[`1281a48b89`](https://github.com/nodejs/node/commit/1281a48b89)] - **(SEMVER-MINOR)** **src**: define fs.constants.S\_IWUSR & S\_IRUSR for Win (Liviu Ionescu) [#42757](https://github.com/nodejs/node/pull/42757) +* \[[`9ea9797d34`](https://github.com/nodejs/node/commit/9ea9797d34)] - **(SEMVER-MINOR)** **src,doc,test**: add --openssl-shared-config option (Daniel Bevenius) [#43124](https://github.com/nodejs/node/pull/43124) +* \[[`046debaee0`](https://github.com/nodejs/node/commit/046debaee0)] - **(SEMVER-MINOR)** **stream**: use cause options in AbortError constructors (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`6641fda10a`](https://github.com/nodejs/node/commit/6641fda10a)] - **(SEMVER-MINOR)** **stream**: add iterator helper find (Nitzan Uziely) [#41849](https://github.com/nodejs/node/pull/41849) +* \[[`edec73032c`](https://github.com/nodejs/node/commit/edec73032c)] - **(SEMVER-MINOR)** **stream**: add writableAborted (Robert Nagy) [#40802](https://github.com/nodejs/node/pull/40802) +* \[[`9a530832cb`](https://github.com/nodejs/node/commit/9a530832cb)] - **(SEMVER-MINOR)** **test**: add initial test module (Colin Ihrig) [#42325](https://github.com/nodejs/node/pull/42325) +* \[[`61a2ddc597`](https://github.com/nodejs/node/commit/61a2ddc597)] - **(SEMVER-MINOR)** **test\_runner**: expose `describe` and `it` (Moshe Atlow) [#43420](https://github.com/nodejs/node/pull/43420) +* \[[`cd6f24be4c`](https://github.com/nodejs/node/commit/cd6f24be4c)] - **(SEMVER-MINOR)** **test\_runner**: add initial CLI runner (Colin Ihrig) [#42658](https://github.com/nodejs/node/pull/42658) +* \[[`a4b277cb4d`](https://github.com/nodejs/node/commit/a4b277cb4d)] - **(SEMVER-MINOR)** **test\_runner**: support 'only' tests (Colin Ihrig) [#42514](https://github.com/nodejs/node/pull/42514) +* \[[`2aae868fa2`](https://github.com/nodejs/node/commit/2aae868fa2)] - **(SEMVER-MINOR)** **timers**: propagate signal.reason in awaitable timers (James M Snell) [#41008](https://github.com/nodejs/node/pull/41008) +* \[[`432e3054be`](https://github.com/nodejs/node/commit/432e3054be)] - **(SEMVER-MINOR)** **util**: add tokens to parseArgs (John Gee) [#43459](https://github.com/nodejs/node/pull/43459) +* \[[`a1e122be62`](https://github.com/nodejs/node/commit/a1e122be62)] - **(SEMVER-MINOR)** **util**: add parseArgs module (Benjamin Coe) [#42675](https://github.com/nodejs/node/pull/42675) +* \[[`513f52445b`](https://github.com/nodejs/node/commit/513f52445b)] - **(SEMVER-MINOR)** **v8**: add v8.startupSnapshot utils (Joyee Cheung) [#43329](https://github.com/nodejs/node/pull/43329) +* \[[`a8eca74450`](https://github.com/nodejs/node/commit/a8eca74450)] - **(SEMVER-MINOR)** **v8**: export more fields in getHeapStatistics (theanarkh) [#42784](https://github.com/nodejs/node/pull/42784) +* \[[`845279e331`](https://github.com/nodejs/node/commit/845279e331)] - **(SEMVER-MINOR)** **worker**: add hasRef() to MessagePort (Darshan Sen) [#42849](https://github.com/nodejs/node/pull/42849) + +#### Semver-patch commits + +* \[[`480a754ddc`](https://github.com/nodejs/node/commit/480a754ddc)] - **assert**: callTracker throw a specific error message when possible (Moshe Atlow) [#43640](https://github.com/nodejs/node/pull/43640) +* \[[`ebb334b124`](https://github.com/nodejs/node/commit/ebb334b124)] - **assert**: fix CallTracker wraps the function causes the length to be lost (OneNail) [#42909](https://github.com/nodejs/node/pull/42909) +* \[[`7f8f83d4d0`](https://github.com/nodejs/node/commit/7f8f83d4d0)] - **assert**: make `assert.fail` less affected by prototype tampering (Antoine du Hamel) [#42918](https://github.com/nodejs/node/pull/42918) +* \[[`a6a46f9578`](https://github.com/nodejs/node/commit/a6a46f9578)] - **async\_hooks**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`84075821be`](https://github.com/nodejs/node/commit/84075821be)] - **async\_hooks**: remove destroyed symbol on Promises (Gerhard Stöbich) [#42402](https://github.com/nodejs/node/pull/42402) +* \[[`b69396a41a`](https://github.com/nodejs/node/commit/b69396a41a)] - **async\_hooks**: avoid decrementing iterator after erase (Gabriel Bota) [#42749](https://github.com/nodejs/node/pull/42749) +* \[[`6b7c6192ff`](https://github.com/nodejs/node/commit/6b7c6192ff)] - **bootstrap**: move global initialization to js (Alena Khineika) [#43625](https://github.com/nodejs/node/pull/43625) +* \[[`4fbe24588a`](https://github.com/nodejs/node/commit/4fbe24588a)] - **bootstrap**: use the isolate snapshot in workers (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702) +* \[[`3a83e5cfd9`](https://github.com/nodejs/node/commit/3a83e5cfd9)] - **bootstrap**: move embedded snapshot to SnapshotBuilder (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702) +* \[[`b4201ace9b`](https://github.com/nodejs/node/commit/b4201ace9b)] - **bootstrap**: reset process.\_exit and process.exitCode in pre-execution (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466) +* \[[`f8f7c1e5bd`](https://github.com/nodejs/node/commit/f8f7c1e5bd)] - **bootstrap**: run inspector and event loop in snapshot builder (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466) +* \[[`2d79480fcb`](https://github.com/nodejs/node/commit/2d79480fcb)] - **bootstrap**: make I/O streams work with user-land snapshot (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466) +* \[[`1b2946b1a4`](https://github.com/nodejs/node/commit/1b2946b1a4)] - **bootstrap**: refresh options in pre-execution (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466) +* \[[`ca57563522`](https://github.com/nodejs/node/commit/ca57563522)] - **bootstrap**: use SnapshotData to pass snapshot data around (Joyee Cheung) [#42360](https://github.com/nodejs/node/pull/42360) +* \[[`60d032b89c`](https://github.com/nodejs/node/commit/60d032b89c)] - **buffer**: do not leak memory if buffer is too big (Keyhan Vakil) [#43938](https://github.com/nodejs/node/pull/43938) +* \[[`5ddd367bec`](https://github.com/nodejs/node/commit/5ddd367bec)] - **buffer**: improve Blob constructor error message when passing a string (Xuguang Mei) [#42338](https://github.com/nodejs/node/pull/42338) +* \[[`691e5d8bf3`](https://github.com/nodejs/node/commit/691e5d8bf3)] - **buffer**: fix `atob` input validation (Antoine du Hamel) [#42539](https://github.com/nodejs/node/pull/42539) +* \[[`a948fb8b56`](https://github.com/nodejs/node/commit/a948fb8b56)] - **build**: add .gitattributes for npm and other shims (Hrishikesh Kadam) [#43879](https://github.com/nodejs/node/pull/43879) +* \[[`623dd2a70b`](https://github.com/nodejs/node/commit/623dd2a70b)] - **build**: remove precompiled header and debug information for host builds (Niyas Sait) [#42538](https://github.com/nodejs/node/pull/42538) +* \[[`129b05e0c5`](https://github.com/nodejs/node/commit/129b05e0c5)] - **build**: fix various shared library build issues (William Marlow) [#41850](https://github.com/nodejs/node/pull/41850) +* \[[`fba6e96326`](https://github.com/nodejs/node/commit/fba6e96326)] - **build**: fix indeterminacy of icu\_locales value (Sergey Nazaryev) [#42865](https://github.com/nodejs/node/pull/42865) +* \[[`74bce1c448`](https://github.com/nodejs/node/commit/74bce1c448)] - **build**: improve reliability of find\_python.cmd script (Luigi Pinca) [#42810](https://github.com/nodejs/node/pull/42810) +* \[[`637af6c068`](https://github.com/nodejs/node/commit/637af6c068)] - **build**: windows/arm64 native compilation support (Niyas Sait) [#42408](https://github.com/nodejs/node/pull/42408) +* \[[`fe661fadad`](https://github.com/nodejs/node/commit/fe661fadad)] - **build**: add --node-snapshot-main configure option (Joyee Cheung) [#42466](https://github.com/nodejs/node/pull/42466) +* \[[`daadd58baa`](https://github.com/nodejs/node/commit/daadd58baa)] - **build,test**: increase stack size limit on Windows (Tobias Nießen) [#43632](https://github.com/nodejs/node/pull/43632) +* \[[`1e1634ae99`](https://github.com/nodejs/node/commit/1e1634ae99)] - **child\_process**: do not need to count length when maxBuffer is Infinity (theanarkh) [#43822](https://github.com/nodejs/node/pull/43822) +* \[[`2b6e98b6b2`](https://github.com/nodejs/node/commit/2b6e98b6b2)] - **child\_process**: improve ipc write performance (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931) +* \[[`7aac430b3f`](https://github.com/nodejs/node/commit/7aac430b3f)] - **child\_process**: speed up 'advanced' ipc receiving (rubikscraft) [#42931](https://github.com/nodejs/node/pull/42931) +* \[[`6844930290`](https://github.com/nodejs/node/commit/6844930290)] - **child\_process**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`72400b7a7b`](https://github.com/nodejs/node/commit/72400b7a7b)] - **child\_process**: add env contents types in JSDoc (Rich Trott) [#42494](https://github.com/nodejs/node/pull/42494) +* \[[`fe57e5685d`](https://github.com/nodejs/node/commit/fe57e5685d)] - **cluster**: send connection to other server when worker drop it (theanarkh) [#43747](https://github.com/nodejs/node/pull/43747) +* \[[`61b5d4a999`](https://github.com/nodejs/node/commit/61b5d4a999)] - **cluster**: fix closing dgram sockets in cluster workers throws errors (Ouyang Yadong) [#43709](https://github.com/nodejs/node/pull/43709) +* \[[`97f4cc7766`](https://github.com/nodejs/node/commit/97f4cc7766)] - **cluster**: fix fd leak (theanarkh) [#43650](https://github.com/nodejs/node/pull/43650) +* \[[`1cb19ec96a`](https://github.com/nodejs/node/commit/1cb19ec96a)] - **cluster**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`c8706f3a7f`](https://github.com/nodejs/node/commit/c8706f3a7f)] - **cluster, net**: fix listen pipe with readable and writable in cluster (theanarkh) [#43634](https://github.com/nodejs/node/pull/43634) +* \[[`35fc1c205e`](https://github.com/nodejs/node/commit/35fc1c205e)] - **console**: fix console.dir crash on a revoked proxy (Daeyeon Jeong) [#43100](https://github.com/nodejs/node/pull/43100) +* \[[`3449472f3d`](https://github.com/nodejs/node/commit/3449472f3d)] - **crypto**: remove unneeded guard (Rich Trott) [#43856](https://github.com/nodejs/node/pull/43856) +* \[[`a3a845b8ba`](https://github.com/nodejs/node/commit/a3a845b8ba)] - **crypto**: don't disable TLS 1.3 without suites (Adam Majer) [#43427](https://github.com/nodejs/node/pull/43427) +* \[[`588a84e11d`](https://github.com/nodejs/node/commit/588a84e11d)] - **crypto**: handle webcrypto generateKey() usages edge case (Filip Skokan) [#43454](https://github.com/nodejs/node/pull/43454) +* \[[`224d3f40dc`](https://github.com/nodejs/node/commit/224d3f40dc)] - **crypto**: update Wrapping and unwrapping keys webcrypto example (Filip Skokan) [#43452](https://github.com/nodejs/node/pull/43452) +* \[[`8dca8d7805`](https://github.com/nodejs/node/commit/8dca8d7805)] - **crypto**: fix webcrypto generateKey() with empty usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`bef600e787`](https://github.com/nodejs/node/commit/bef600e787)] - **crypto**: fix webcrypto digest() invalid algorithm (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`077ad7e90d`](https://github.com/nodejs/node/commit/077ad7e90d)] - **crypto**: fix webcrypto RSA generateKey() use of publicExponent (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`04572ec914`](https://github.com/nodejs/node/commit/04572ec914)] - **crypto**: fix webcrypto AES-KW keys accepting encrypt/decrypt usages (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`52ea86908d`](https://github.com/nodejs/node/commit/52ea86908d)] - **crypto**: fix webcrypto deriveBits for non-byte lengths (Filip Skokan) [#43431](https://github.com/nodejs/node/pull/43431) +* \[[`97b2fef24a`](https://github.com/nodejs/node/commit/97b2fef24a)] - **crypto**: fix webcrypto import of cfrg raw public keys (Filip Skokan) [#43404](https://github.com/nodejs/node/pull/43404) +* \[[`a57149d14e`](https://github.com/nodejs/node/commit/a57149d14e)] - **crypto**: fix webcrypto JWK EC and OKP import crv check (Filip Skokan) [#43346](https://github.com/nodejs/node/pull/43346) +* \[[`1cb267261c`](https://github.com/nodejs/node/commit/1cb267261c)] - **crypto**: test webcrypto ec raw public key import (Filip Skokan) [#43405](https://github.com/nodejs/node/pull/43405) +* \[[`02cf57b8d6`](https://github.com/nodejs/node/commit/02cf57b8d6)] - **crypto**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`4600892a45`](https://github.com/nodejs/node/commit/4600892a45)] - **crypto**: adjust minimum length in generateKey('hmac', ...) (LiviaMedeiros) [#42944](https://github.com/nodejs/node/pull/42944) +* \[[`baaf77898b`](https://github.com/nodejs/node/commit/baaf77898b)] - **crypto**: clean up parameter validation in HKDF (Tobias Nießen) [#42924](https://github.com/nodejs/node/pull/42924) +* \[[`3f43dadeda`](https://github.com/nodejs/node/commit/3f43dadeda)] - **crypto**: validate `this` in all webcrypto methods and getters (Filip Skokan) [#42815](https://github.com/nodejs/node/pull/42815) +* \[[`297e374565`](https://github.com/nodejs/node/commit/297e374565)] - **crypto**: do not add undefined hash in webcrypto normalizeAlgorithm (Filip Skokan) [#42559](https://github.com/nodejs/node/pull/42559) +* \[[`c764e81a69`](https://github.com/nodejs/node/commit/c764e81a69)] - **crypto**: cleanup webcrypto jwk code (Filip Skokan) [#42562](https://github.com/nodejs/node/pull/42562) +* \[[`c605ad1343`](https://github.com/nodejs/node/commit/c605ad1343)] - **crypto**: fix webcrypto derive key lengths (Filip Skokan) [#42542](https://github.com/nodejs/node/pull/42542) +* \[[`0b1b616a9c`](https://github.com/nodejs/node/commit/0b1b616a9c)] - **crypto**: improve prime size argument validation (Tobias Nießen) [#42234](https://github.com/nodejs/node/pull/42234) +* \[[`f1c12aa6df`](https://github.com/nodejs/node/commit/f1c12aa6df)] - **debugger**: throw a more useful error when the frame is missing (Kohei Ueno) [#42776](https://github.com/nodejs/node/pull/42776) +* \[[`f75a5a92ec`](https://github.com/nodejs/node/commit/f75a5a92ec)] - **debugger**: fix inconsistent inspector output of exec new Map() (Kohei Ueno) [#42423](https://github.com/nodejs/node/pull/42423) +* \[[`e3d8893265`](https://github.com/nodejs/node/commit/e3d8893265)] - **deps**: V8: backport 22698d267667 (Chengzhong Wu) [#43751](https://github.com/nodejs/node/pull/43751) +* \[[`06a6bdaf7a`](https://github.com/nodejs/node/commit/06a6bdaf7a)] - **deps**: update corepack to 0.12.1 (Node.js GitHub Bot) [#43965](https://github.com/nodejs/node/pull/43965) +* \[[`c7be356dd7`](https://github.com/nodejs/node/commit/c7be356dd7)] - **deps**: update hast-util-raw (Moshe Atlow) [#43927](https://github.com/nodejs/node/pull/43927) +* \[[`62c27d0d84`](https://github.com/nodejs/node/commit/62c27d0d84)] - **deps**: update undici to 5.8.0 (Node.js GitHub Bot) [#43886](https://github.com/nodejs/node/pull/43886) +* \[[`92051cb4a1`](https://github.com/nodejs/node/commit/92051cb4a1)] - **deps**: cherry-pick libuv/libuv\@3a7b955 (Ben Noordhuis) [#43950](https://github.com/nodejs/node/pull/43950) +* \[[`8835898e43`](https://github.com/nodejs/node/commit/8835898e43)] - **deps**: cherry-pick libuv/libuv\@abb109f (Ben Noordhuis) [#43950](https://github.com/nodejs/node/pull/43950) +* \[[`1566854218`](https://github.com/nodejs/node/commit/1566854218)] - **deps**: upgrade npm to 8.15.0 (npm team) [#43917](https://github.com/nodejs/node/pull/43917) +* \[[`e6baa8a113`](https://github.com/nodejs/node/commit/e6baa8a113)] - **deps**: upgrade npm to 8.14.0 (npm team) [#43826](https://github.com/nodejs/node/pull/43826) +* \[[`aa137caac3`](https://github.com/nodejs/node/commit/aa137caac3)] - **deps**: update corepack to 0.12.0 (Node.js GitHub Bot) [#43748](https://github.com/nodejs/node/pull/43748) +* \[[`04188e54f5`](https://github.com/nodejs/node/commit/04188e54f5)] - **deps**: update undici to 5.7.0 (Node.js GitHub Bot) [#43790](https://github.com/nodejs/node/pull/43790) +* \[[`09f9060f7d`](https://github.com/nodejs/node/commit/09f9060f7d)] - **deps**: upgrade npm to 8.13.2 (npm team) [#43622](https://github.com/nodejs/node/pull/43622) +* \[[`1343615224`](https://github.com/nodejs/node/commit/1343615224)] - **deps**: upgrade npm to 8.13.1 (npm team) [#43552](https://github.com/nodejs/node/pull/43552) +* \[[`49080bc42f`](https://github.com/nodejs/node/commit/49080bc42f)] - **deps**: patch V8 to 9.4.146.26 (Michaël Zasso) [#43778](https://github.com/nodejs/node/pull/43778) +* \[[`705a8afd81`](https://github.com/nodejs/node/commit/705a8afd81)] - **deps**: update Corepack to 0.11.2 (Maël Nison) [#43402](https://github.com/nodejs/node/pull/43402) +* \[[`552e91121b`](https://github.com/nodejs/node/commit/552e91121b)] - **deps**: update undici to 5.5.1 (Node.js GitHub Bot) [#43412](https://github.com/nodejs/node/pull/43412) +* \[[`0ff00945d5`](https://github.com/nodejs/node/commit/0ff00945d5)] - **deps**: update undici to 5.4.0 (Node.js GitHub Bot) [#43262](https://github.com/nodejs/node/pull/43262) +* \[[`170bec811b`](https://github.com/nodejs/node/commit/170bec811b)] - **deps**: update undici to 5.3.0 (Node.js GitHub Bot) [#43197](https://github.com/nodejs/node/pull/43197) +* \[[`b97075dfec`](https://github.com/nodejs/node/commit/b97075dfec)] - **deps**: update undici to 5.2.0 (Node.js GitHub Bot) [#43059](https://github.com/nodejs/node/pull/43059) +* \[[`4d4e00a6b0`](https://github.com/nodejs/node/commit/4d4e00a6b0)] - **deps**: update undici to 5.1.1 (Michaël Zasso) [#42939](https://github.com/nodejs/node/pull/42939) +* \[[`cba4f6c8a0`](https://github.com/nodejs/node/commit/cba4f6c8a0)] - **deps**: update Acorn to v8.7.0 (Michaël Zasso) [#42667](https://github.com/nodejs/node/pull/42667) +* \[[`a5507fd409`](https://github.com/nodejs/node/commit/a5507fd409)] - **deps**: update ICU to 71.1 (Michaël Zasso) [#42655](https://github.com/nodejs/node/pull/42655) +* \[[`cbb253e61e`](https://github.com/nodejs/node/commit/cbb253e61e)] - **deps**: upgrade npm to 8.12.1 (npm team) [#43301](https://github.com/nodejs/node/pull/43301) +* \[[`01e7d1f349`](https://github.com/nodejs/node/commit/01e7d1f349)] - **deps**: cherry-pick 4ab70f6 from V8 upstream (Khaidi Chu) [#43328](https://github.com/nodejs/node/pull/43328) +* \[[`fea892a168`](https://github.com/nodejs/node/commit/fea892a168)] - **dns**: fix getServers return undefined (jiahao.si) [#43922](https://github.com/nodejs/node/pull/43922) +* \[[`43a3239d85`](https://github.com/nodejs/node/commit/43a3239d85)] - **dns**: fix cares memory leak (theanarkh) [#43912](https://github.com/nodejs/node/pull/43912) +* \[[`8d2a256bf4`](https://github.com/nodejs/node/commit/8d2a256bf4)] - **dns**: make promise API fully constructed from `lib/internal/dns/promises` (Feng Yu) [#43227](https://github.com/nodejs/node/pull/43227) +* \[[`71f7b00fca`](https://github.com/nodejs/node/commit/71f7b00fca)] - **domain**: fix vm promise tracking while keeping isolation (Stephen Belanger) [#43556](https://github.com/nodejs/node/pull/43556) +* \[[`9f75f26ad9`](https://github.com/nodejs/node/commit/9f75f26ad9)] - **errors**: extract type detection & use in `ERR_INVALID_RETURN_VALUE` (Jacob Smith) [#43558](https://github.com/nodejs/node/pull/43558) +* \[[`f5115b4abc`](https://github.com/nodejs/node/commit/f5115b4abc)] - **errors,console**: refactor to use ES2021 syntax (小菜) [#42872](https://github.com/nodejs/node/pull/42872) +* \[[`85ba4e069d`](https://github.com/nodejs/node/commit/85ba4e069d)] - **errors,vm**: update error and use cause (Gus Caplan) [#42820](https://github.com/nodejs/node/pull/42820) +* \[[`ae157d9098`](https://github.com/nodejs/node/commit/ae157d9098)] - **esm**: fix loader hooks accepting too many arguments (Jacob Smith) [#44109](https://github.com/nodejs/node/pull/44109) +* \[[`3139c110dc`](https://github.com/nodejs/node/commit/3139c110dc)] - **esm**: remove superfluous argument (Rich Trott) [#43884](https://github.com/nodejs/node/pull/43884) +* \[[`63228efe08`](https://github.com/nodejs/node/commit/63228efe08)] - **esm**: throw on any non-2xx response (LiviaMedeiros) [#43742](https://github.com/nodejs/node/pull/43742) +* \[[`a6d4d31da5`](https://github.com/nodejs/node/commit/a6d4d31da5)] - **esm**: fix erroneous re-initialization of ESMLoader (Jacob Smith) [#43763](https://github.com/nodejs/node/pull/43763) +* \[[`953e663e58`](https://github.com/nodejs/node/commit/953e663e58)] - **esm**: treat `307` and `308` as redirects in HTTPS imports (Kid) [#43689](https://github.com/nodejs/node/pull/43689) +* \[[`33a2902a33`](https://github.com/nodejs/node/commit/33a2902a33)] - **esm**: restore `next`'s `context` as optional arg (Jacob Smith) [#43553](https://github.com/nodejs/node/pull/43553) +* \[[`df3f5cb93e`](https://github.com/nodejs/node/commit/df3f5cb93e)] - **esm**: fix chain advances when loader calls next\ multiple times (Jacob Smith) [#43303](https://github.com/nodejs/node/pull/43303) +* \[[`eac4e20525`](https://github.com/nodejs/node/commit/eac4e20525)] - **esm**: refactor responseURL handling (Guy Bedford) [#43164](https://github.com/nodejs/node/pull/43164) +* \[[`e114ed0cda`](https://github.com/nodejs/node/commit/e114ed0cda)] - **esm**: fix http(s) import via custom loader (Jacob Smith) [#43130](https://github.com/nodejs/node/pull/43130) +* \[[`6564e69c78`](https://github.com/nodejs/node/commit/6564e69c78)] - **esm**: fix imports from non-file module (Antoine du Hamel) [#42881](https://github.com/nodejs/node/pull/42881) +* \[[`e1bc88764d`](https://github.com/nodejs/node/commit/e1bc88764d)] - **esm**: graduate top-level-await to stable (Antoine du Hamel) [#42875](https://github.com/nodejs/node/pull/42875) +* \[[`14a929b0b0`](https://github.com/nodejs/node/commit/14a929b0b0)] - **esm**: emit experimental warnings in common place (Jacob Smith) [#42314](https://github.com/nodejs/node/pull/42314) +* \[[`0167988ce3`](https://github.com/nodejs/node/commit/0167988ce3)] - **events**: improve `Event` compatibility (Daeyeon Jeong) [#43461](https://github.com/nodejs/node/pull/43461) +* \[[`e51c0e9939`](https://github.com/nodejs/node/commit/e51c0e9939)] - **events**: improve `EventListener` validation (Daeyeon Jeong) [#43491](https://github.com/nodejs/node/pull/43491) +* \[[`393c021d7f`](https://github.com/nodejs/node/commit/393c021d7f)] - **events**: fix adding abort listener in `events.once` (Daeyeon Jeong) [#43373](https://github.com/nodejs/node/pull/43373) +* \[[`a7eaf3981d`](https://github.com/nodejs/node/commit/a7eaf3981d)] - **events**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`fcf74c53d8`](https://github.com/nodejs/node/commit/fcf74c53d8)] - **fs**: refactor realpath with Map and Set (LiviaMedeiros) [#43569](https://github.com/nodejs/node/pull/43569) +* \[[`bfb8a0bfac`](https://github.com/nodejs/node/commit/bfb8a0bfac)] - **fs**: don't end fs promises on Isolate termination (Santiago Gimeno) [#42910](https://github.com/nodejs/node/pull/42910) +* \[[`ca4157ea40`](https://github.com/nodejs/node/commit/ca4157ea40)] - **fs**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`835056cbcb`](https://github.com/nodejs/node/commit/835056cbcb)] - **fs**: remove unnecessary ?? operator (Morgan Roderick) [#43073](https://github.com/nodejs/node/pull/43073) +* \[[`8b89c7fbab`](https://github.com/nodejs/node/commit/8b89c7fbab)] - **fs**: export constants from `fs/promises` (Feng Yu) [#43177](https://github.com/nodejs/node/pull/43177) +* \[[`b0d9915bc6`](https://github.com/nodejs/node/commit/b0d9915bc6)] - **fs**: add trailing commas (LiviaMedeiros) [#43127](https://github.com/nodejs/node/pull/43127) +* \[[`637820d1e3`](https://github.com/nodejs/node/commit/637820d1e3)] - **fs**: fix write methods param validation and docs (LiviaMedeiros) [#41677](https://github.com/nodejs/node/pull/41677) +* \[[`5d8b2cb51d`](https://github.com/nodejs/node/commit/5d8b2cb51d)] - **fs**: fix mkdirSync so ENOSPC is correctly reported (Santiago Gimeno) [#42811](https://github.com/nodejs/node/pull/42811) +* \[[`58eebaf717`](https://github.com/nodejs/node/commit/58eebaf717)] - **http**: defer reentrant execution of Parser::Execute (Paolo Insogna) [#43369](https://github.com/nodejs/node/pull/43369) +* \[[`ea3ca874da`](https://github.com/nodejs/node/commit/ea3ca874da)] - **http**: fix http agent keep alive (theanarkh) [#43380](https://github.com/nodejs/node/pull/43380) +* \[[`85d93f0bf6`](https://github.com/nodejs/node/commit/85d93f0bf6)] - **http**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`1bfff396ac`](https://github.com/nodejs/node/commit/1bfff396ac)] - **http**: document that ClientRequest inherits from OutgoingMessage (K.C.Ashish Kumar) [#42642](https://github.com/nodejs/node/pull/42642) +* \[[`db53e9b387`](https://github.com/nodejs/node/commit/db53e9b387)] - **http2**: log debug only when in debug mode (Basit) [#43626](https://github.com/nodejs/node/pull/43626) +* \[[`95083cb0ad`](https://github.com/nodejs/node/commit/95083cb0ad)] - **http2**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`367454205d`](https://github.com/nodejs/node/commit/367454205d)] - **http2**: set origin name correctly when servername is empty (ofirbarak) [#42838](https://github.com/nodejs/node/pull/42838) +* \[[`c73f739acd`](https://github.com/nodejs/node/commit/c73f739acd)] - **http2**: improve tests and docs (Daeyeon Jeong) [#42858](https://github.com/nodejs/node/pull/42858) +* \[[`4fbedffb55`](https://github.com/nodejs/node/commit/4fbedffb55)] - **https**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`5879642260`](https://github.com/nodejs/node/commit/5879642260)] - **inspector**: set sampling interval before start (Shelley Vohr) [#43779](https://github.com/nodejs/node/pull/43779) +* \[[`096f7fc59a`](https://github.com/nodejs/node/commit/096f7fc59a)] - **inspector**: add missing initialization (Michael Dawson) [#43254](https://github.com/nodejs/node/pull/43254) +* \[[`a8c24185f8`](https://github.com/nodejs/node/commit/a8c24185f8)] - **lib**: refactor to avoid unsafe regex primordials (Antoine du Hamel) [#43475](https://github.com/nodejs/node/pull/43475) +* \[[`2a5d5e0726`](https://github.com/nodejs/node/commit/2a5d5e0726)] - **lib**: modify `DOMException` to pass WPT (Khaidi Chu) [#41517](https://github.com/nodejs/node/pull/41517) +* \[[`26d63f004f`](https://github.com/nodejs/node/commit/26d63f004f)] - **lib**: implement safe alternatives to `Promise` static methods (Antoine du Hamel) [#43728](https://github.com/nodejs/node/pull/43728) +* \[[`aab5adbcbe`](https://github.com/nodejs/node/commit/aab5adbcbe)] - **lib**: use null-prototype objects for property descriptors (Antoine du Hamel) [#43473](https://github.com/nodejs/node/pull/43473) +* \[[`a97d0ba3af`](https://github.com/nodejs/node/commit/a97d0ba3af)] - **lib**: fix TODO in `freeze_intrinsics` (Antoine du Hamel) [#43472](https://github.com/nodejs/node/pull/43472) +* \[[`519cdd94c0`](https://github.com/nodejs/node/commit/519cdd94c0)] - **lib**: use `kEmptyObject` in various places (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`7d5e7b43f6`](https://github.com/nodejs/node/commit/7d5e7b43f6)] - **lib**: give names to promisified methods (LiviaMedeiros) [#43218](https://github.com/nodejs/node/pull/43218) +* \[[`cd55e221b5`](https://github.com/nodejs/node/commit/cd55e221b5)] - **lib**: use null-prototype objects for property descriptors (Antoine du Hamel) [#43270](https://github.com/nodejs/node/pull/43270) +* \[[`9e613f7f3d`](https://github.com/nodejs/node/commit/9e613f7f3d)] - **lib**: prepare files for no-var lint rule (Rich Trott) [#42573](https://github.com/nodejs/node/pull/42573) +* \[[`327da6acde`](https://github.com/nodejs/node/commit/327da6acde)] - **lib**: source maps filter null prefix (Fabian Cook) [#42522](https://github.com/nodejs/node/pull/42522) +* \[[`58f80b0dcc`](https://github.com/nodejs/node/commit/58f80b0dcc)] - **lib**: improve the coverage of the validator (mawaregetsuka) [#42443](https://github.com/nodejs/node/pull/42443) +* \[[`e48ccf5934`](https://github.com/nodejs/node/commit/e48ccf5934)] - **lib**: update JSDoc for linting (Rich Trott) [#42489](https://github.com/nodejs/node/pull/42489) +* \[[`abc134cacc`](https://github.com/nodejs/node/commit/abc134cacc)] - **lib,src**: add source map support for global eval (Chengzhong Wu) [#43428](https://github.com/nodejs/node/pull/43428) +* \[[`288d9fbe5a`](https://github.com/nodejs/node/commit/288d9fbe5a)] - **loader**: make `require.resolve` throw for unknown builtin modules (木杉) [#43336](https://github.com/nodejs/node/pull/43336) +* \[[`7c4e1ad1ed`](https://github.com/nodejs/node/commit/7c4e1ad1ed)] - **module**: also enable subpath imports in REPL (Ray) [#43450](https://github.com/nodejs/node/pull/43450) +* \[[`c284eb3745`](https://github.com/nodejs/node/commit/c284eb3745)] - **module**: ensure 'node:'-only modules can access node\_modules (Colin Ihrig) [#42430](https://github.com/nodejs/node/pull/42430) +* \[[`70a4033841`](https://github.com/nodejs/node/commit/70a4033841)] - **module**: cjs-module-lexer WebAssembly fallback (Guy Bedford) [#43612](https://github.com/nodejs/node/pull/43612) +* \[[`abda05a3a7`](https://github.com/nodejs/node/commit/abda05a3a7)] - **module**: prefer async/await in https imports (Benjamin Gruenbaum) [#41950](https://github.com/nodejs/node/pull/41950) +* \[[`f66872e36c`](https://github.com/nodejs/node/commit/f66872e36c)] - **net**: fix socket.\_getpeername (Daeyeon Jeong) [#43010](https://github.com/nodejs/node/pull/43010) +* \[[`b2d02bc2c0`](https://github.com/nodejs/node/commit/b2d02bc2c0)] - **net**: remove redundant connecting assignment (Ouyang Yadong) [#43710](https://github.com/nodejs/node/pull/43710) +* \[[`ff5310a9c7`](https://github.com/nodejs/node/commit/ff5310a9c7)] - **net**: fix net keepalive and noDelay (theanarkh) [#43561](https://github.com/nodejs/node/pull/43561) +* \[[`265810a1e5`](https://github.com/nodejs/node/commit/265810a1e5)] - **net**: prevent /32 ipv4 mask from matching all ips (supriyo-biswas) [#43381](https://github.com/nodejs/node/pull/43381) +* \[[`e4a5bd1cf8`](https://github.com/nodejs/node/commit/e4a5bd1cf8)] - **net**: fix net.Server keepalive and noDelay (theanarkh) [#43497](https://github.com/nodejs/node/pull/43497) +* \[[`d766cfaca9`](https://github.com/nodejs/node/commit/d766cfaca9)] - **net,dns**: move hasObserver out of perf function (theanarkh) [#43217](https://github.com/nodejs/node/pull/43217) +* \[[`b240868960`](https://github.com/nodejs/node/commit/b240868960)] - **net,dns**: trace tcp connection and dns by perf\_hooks (theanarkh) [#42390](https://github.com/nodejs/node/pull/42390) +* \[[`112bce394d`](https://github.com/nodejs/node/commit/112bce394d)] - **node-api**: explicitly set \_\_cdecl for API functions (Vladimir Morozov) [#42780](https://github.com/nodejs/node/pull/42780) +* \[[`49103e3240`](https://github.com/nodejs/node/commit/49103e3240)] - **node-api**: fix napi\_get\_all\_property\_names (Vladimir Morozov) [#42463](https://github.com/nodejs/node/pull/42463) +* \[[`5a1e1b3f33`](https://github.com/nodejs/node/commit/5a1e1b3f33)] - **node-api**: format Node-API related code (Vladimir Morozov) [#42396](https://github.com/nodejs/node/pull/42396) +* \[[`31ee218eff`](https://github.com/nodejs/node/commit/31ee218eff)] - **node-api,src**: fix module registration in MSVC C++ (Vladimir Morozov) [#42459](https://github.com/nodejs/node/pull/42459) +* \[[`e7899ba1f7`](https://github.com/nodejs/node/commit/e7899ba1f7)] - **os**: avoid unnecessary usage of var (Mohammed Keyvanzadeh) [#42563](https://github.com/nodejs/node/pull/42563) +* \[[`463f9a6c4f`](https://github.com/nodejs/node/commit/463f9a6c4f)] - **perf\_hooks**: add initiatorType getter (Rafael Gonzaga) [#43593](https://github.com/nodejs/node/pull/43593) +* \[[`096a2d9434`](https://github.com/nodejs/node/commit/096a2d9434)] - **perf\_hooks**: fix miscounted gc performance entry starttime (#43066) (Xuguang Mei) [#43066](https://github.com/nodejs/node/pull/43066) +* \[[`f08a282098`](https://github.com/nodejs/node/commit/f08a282098)] - **perf\_hooks**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`8b0ae63316`](https://github.com/nodejs/node/commit/8b0ae63316)] - **perf\_hooks**: fix start\_time of perf\_hooks (theanarkh) [#43069](https://github.com/nodejs/node/pull/43069) +* \[[`7a5972fe9e`](https://github.com/nodejs/node/commit/7a5972fe9e)] - **perf\_hooks**: fix function wrapped by `timerify` to work correctly (Kohei Ueno) [#43330](https://github.com/nodejs/node/pull/43330) +* \[[`5ab3da3f26`](https://github.com/nodejs/node/commit/5ab3da3f26)] - **perf\_hooks**: return different functions in timerify (Himself65) [#42854](https://github.com/nodejs/node/pull/42854) +* \[[`15da462cea`](https://github.com/nodejs/node/commit/15da462cea)] - **process**: use `defineProperty` instead of assignment (Mark S. Miller) [#43907](https://github.com/nodejs/node/pull/43907) +* \[[`67e91aa20f`](https://github.com/nodejs/node/commit/67e91aa20f)] - **readline**: fix to not access a property on an undefined value (Kohei Ueno) [#43543](https://github.com/nodejs/node/pull/43543) +* \[[`37066f0319`](https://github.com/nodejs/node/commit/37066f0319)] - **readline**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`d260569b85`](https://github.com/nodejs/node/commit/d260569b85)] - **repl**: fix overzealous top-level await (Tobias Nießen) [#43827](https://github.com/nodejs/node/pull/43827) +* \[[`0bd4a04c42`](https://github.com/nodejs/node/commit/0bd4a04c42)] - **repl**: use `SafePromiseAll` and `SafePromiseRace` (Antoine du Hamel) [#43758](https://github.com/nodejs/node/pull/43758) +* \[[`bef9a36024`](https://github.com/nodejs/node/commit/bef9a36024)] - **repl**: make autocomplete case-insensitive (Sergey Petushkov) [#41632](https://github.com/nodejs/node/pull/41632) +* \[[`0dc96e4474`](https://github.com/nodejs/node/commit/0dc96e4474)] - **src**: pass only Isolate\* and env\_vars to EnabledDebugList::Parse() (Darshan Sen) [#43668](https://github.com/nodejs/node/pull/43668) +* \[[`be3343aed3`](https://github.com/nodejs/node/commit/be3343aed3)] - **src**: use named struct instead of typedef (Tobias Nießen) [#43881](https://github.com/nodejs/node/pull/43881) +* \[[`eaa611c53a`](https://github.com/nodejs/node/commit/eaa611c53a)] - **src**: use named enum instead of typedef (Tobias Nießen) [#43880](https://github.com/nodejs/node/pull/43880) +* \[[`3a32f0ecb2`](https://github.com/nodejs/node/commit/3a32f0ecb2)] - **src**: fix node watchdog race condition (theanarkh) [#43780](https://github.com/nodejs/node/pull/43780) +* \[[`67ecd274b7`](https://github.com/nodejs/node/commit/67ecd274b7)] - **src**: fix `napi_check_object_type_tag()` (Daeyeon Jeong) [#43788](https://github.com/nodejs/node/pull/43788) +* \[[`364b67cf7e`](https://github.com/nodejs/node/commit/364b67cf7e)] - **src**: slim down env-inl.h (Ben Noordhuis) [#43745](https://github.com/nodejs/node/pull/43745) +* \[[`ccac1fc2e7`](https://github.com/nodejs/node/commit/ccac1fc2e7)] - **src**: improve and update ByteSource description (Tobias Nießen) [#43478](https://github.com/nodejs/node/pull/43478) +* \[[`a1f1ff197e`](https://github.com/nodejs/node/commit/a1f1ff197e)] - **src**: merge RunInThisContext() with RunInContext() (Daeyeon Jeong) [#43225](https://github.com/nodejs/node/pull/43225) +* \[[`3e21ae8733`](https://github.com/nodejs/node/commit/3e21ae8733)] - **src**: fix crash on FSReqPromise destructor (Santiago Gimeno) [#43533](https://github.com/nodejs/node/pull/43533) +* \[[`b9649a4959`](https://github.com/nodejs/node/commit/b9649a4959)] - **src**: delegate NodeArrayBufferAllocator to v8's allocator (Jeremy Rose) [#43594](https://github.com/nodejs/node/pull/43594) +* \[[`26e4dc83a8`](https://github.com/nodejs/node/commit/26e4dc83a8)] - **src**: remove a stale comment in `async_hooks` (Daeyeon Jeong) [#43317](https://github.com/nodejs/node/pull/43317) +* \[[`733739dd3f`](https://github.com/nodejs/node/commit/733739dd3f)] - **src**: remove CopyBuffer (Tobias Nießen) [#43463](https://github.com/nodejs/node/pull/43463) +* \[[`bf553fd26a`](https://github.com/nodejs/node/commit/bf553fd26a)] - **src**: register StreamBase while registering LibuvStreamWrap (Darshan Sen) [#43321](https://github.com/nodejs/node/pull/43321) +* \[[`f18867b2c0`](https://github.com/nodejs/node/commit/f18867b2c0)] - **src**: fix static analysis warning and use smart ptr (Tobias Nießen) [#43117](https://github.com/nodejs/node/pull/43117) +* \[[`094d5fc31a`](https://github.com/nodejs/node/commit/094d5fc31a)] - **src**: fix json utils escapes for U+000B (Chengzhong Wu) [#43206](https://github.com/nodejs/node/pull/43206) +* \[[`c82d992b77`](https://github.com/nodejs/node/commit/c82d992b77)] - **src**: convey potential exceptions during StreamPipe construction (Darshan Sen) [#43240](https://github.com/nodejs/node/pull/43240) +* \[[`07b7f8375e`](https://github.com/nodejs/node/commit/07b7f8375e)] - **src**: make SecureContext fields private (Tobias Nießen) [#43173](https://github.com/nodejs/node/pull/43173) +* \[[`eb2c504542`](https://github.com/nodejs/node/commit/eb2c504542)] - **src**: reuse GetServerName (Tobias Nießen) [#43168](https://github.com/nodejs/node/pull/43168) +* \[[`7bdd31929c`](https://github.com/nodejs/node/commit/7bdd31929c)] - **src**: remove SecureContext::operator\* (Tobias Nießen) [#43121](https://github.com/nodejs/node/pull/43121) +* \[[`438c4723f6`](https://github.com/nodejs/node/commit/438c4723f6)] - **src**: replace TraceEventScope with sync events (Chengzhong Wu) [#42977](https://github.com/nodejs/node/pull/42977) +* \[[`32446d8c8a`](https://github.com/nodejs/node/commit/32446d8c8a)] - **src**: delete AllocatedBuffer (Darshan Sen) [#43008](https://github.com/nodejs/node/pull/43008) +* \[[`4cfcb6f883`](https://github.com/nodejs/node/commit/4cfcb6f883)] - **src**: remove unnecessary comment (Kohei Ueno) [#42952](https://github.com/nodejs/node/pull/42952) +* \[[`6adbb062e6`](https://github.com/nodejs/node/commit/6adbb062e6)] - **src**: fix memory leak for v8.serialize (liuxingbaoyu) [#42695](https://github.com/nodejs/node/pull/42695) +* \[[`e769a0f19b`](https://github.com/nodejs/node/commit/e769a0f19b)] - **src**: use `node:` prefix in example (Antoine du Hamel) [#42794](https://github.com/nodejs/node/pull/42794) +* \[[`b19018468c`](https://github.com/nodejs/node/commit/b19018468c)] - **src**: large page attributing an id on Linux (David CARLIER) [#42644](https://github.com/nodejs/node/pull/42644) +* \[[`a26fd031bf`](https://github.com/nodejs/node/commit/a26fd031bf)] - **src**: fix coverity report (Michael Dawson) [#42663](https://github.com/nodejs/node/pull/42663) +* \[[`8687ba8732`](https://github.com/nodejs/node/commit/8687ba8732)] - **src**: fix alphabetically sorted binding list (Tobias Nießen) [#42687](https://github.com/nodejs/node/pull/42687) +* \[[`4e1378b2d6`](https://github.com/nodejs/node/commit/4e1378b2d6)] - **src**: fix typo in InspectorIoDelegate constructor (Kohei Ueno) [#42520](https://github.com/nodejs/node/pull/42520) +* \[[`1dc912ebdc`](https://github.com/nodejs/node/commit/1dc912ebdc)] - **src**: remove unnecessary static qualifier in crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492) +* \[[`a280f88266`](https://github.com/nodejs/node/commit/a280f88266)] - **src**: address 3 useless call coverity warnings (Michael Dawson) [#42426](https://github.com/nodejs/node/pull/42426) +* \[[`5195ea3cd2`](https://github.com/nodejs/node/commit/5195ea3cd2)] - **src**: properly report exceptions from AddressToJS() (Darshan Sen) [#42054](https://github.com/nodejs/node/pull/42054) +* \[[`a8553151ee`](https://github.com/nodejs/node/commit/a8553151ee)] - **src**: suppress false coverity warning (Michael Dawson) [#42284](https://github.com/nodejs/node/pull/42284) +* \[[`1e8611f048`](https://github.com/nodejs/node/commit/1e8611f048)] - **src**: refactor IsSupportedAuthenticatedMode (Tobias Nießen) [#42368](https://github.com/nodejs/node/pull/42368) +* \[[`7778ebecaa`](https://github.com/nodejs/node/commit/7778ebecaa)] - **src**: turn SSL\_CTX\_new CHECK/segfault into JS exception (Anna Henningsen) [#42799](https://github.com/nodejs/node/pull/42799) +* \[[`4ffc08861a`](https://github.com/nodejs/node/commit/4ffc08861a)] - **src**: add proper mutexes for accessing FIPS state (Anna Henningsen) [#42278](https://github.com/nodejs/node/pull/42278) +* \[[`6353a4dc8a`](https://github.com/nodejs/node/commit/6353a4dc8a)] - **src,bootstrap**: remove NodeMainInstance::registry\_ (Darshan Sen) [#43392](https://github.com/nodejs/node/pull/43392) +* \[[`1a98f166bf`](https://github.com/nodejs/node/commit/1a98f166bf)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_rsa.cc (Darshan Sen) [#42852](https://github.com/nodejs/node/pull/42852) +* \[[`c336ffc059`](https://github.com/nodejs/node/commit/c336ffc059)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_ec.cc (Darshan Sen) [#42766](https://github.com/nodejs/node/pull/42766) +* \[[`1669b94cd6`](https://github.com/nodejs/node/commit/1669b94cd6)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_tls.cc (Darshan Sen) [#42589](https://github.com/nodejs/node/pull/42589) +* \[[`6d98a51970`](https://github.com/nodejs/node/commit/6d98a51970)] - **src,crypto**: handle empty maybe correctly in crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492) +* \[[`5a2e277f93`](https://github.com/nodejs/node/commit/5a2e277f93)] - **src,crypto**: remove uses of AllocatedBuffer from crypto\_dh.cc (Darshan Sen) [#42492](https://github.com/nodejs/node/pull/42492) +* \[[`4a6649cb28`](https://github.com/nodejs/node/commit/4a6649cb28)] - **src,stream**: change return type to `Maybe` (Daeyeon Jeong) [#43575](https://github.com/nodejs/node/pull/43575) +* \[[`99a3b19974`](https://github.com/nodejs/node/commit/99a3b19974)] - **stream**: fix 0 transform hwm backpressure (Robert Nagy) [#43685](https://github.com/nodejs/node/pull/43685) +* \[[`c4dc8b6297`](https://github.com/nodejs/node/commit/c4dc8b6297)] - **stream**: add more filter tests (Benjamin Gruenbaum) [#41936](https://github.com/nodejs/node/pull/41936) +* \[[`4b17a94b67`](https://github.com/nodejs/node/commit/4b17a94b67)] - **stream**: port more test262 tests (Benjamin Gruenbaum) [#41974](https://github.com/nodejs/node/pull/41974) +* \[[`3bc12c69a4`](https://github.com/nodejs/node/commit/3bc12c69a4)] - **stream**: avoid usage of deprecated APIs (Mohammed Keyvanzadeh) [#41871](https://github.com/nodejs/node/pull/41871) +* \[[`4ad5a28b54`](https://github.com/nodejs/node/commit/4ad5a28b54)] - **stream**: refactor to use more validators (Mohammed Keyvanzadeh) [#41871](https://github.com/nodejs/node/pull/41871) +* \[[`545b2cd4c2`](https://github.com/nodejs/node/commit/545b2cd4c2)] - **stream**: use standard for loop instead of for..of (Mohammed Keyvanzadeh) [#41871](https://github.com/nodejs/node/pull/41871) +* \[[`3ef9f8da30`](https://github.com/nodejs/node/commit/3ef9f8da30)] - **stream**: initial port of test262 tests (Benjamin Gruenbaum) [#41775](https://github.com/nodejs/node/pull/41775) +* \[[`f793ed550a`](https://github.com/nodejs/node/commit/f793ed550a)] - **stream**: use synchronous error validation & validate abort signal option (iMoses) [#41777](https://github.com/nodejs/node/pull/41777) +* \[[`31cee4f914`](https://github.com/nodejs/node/commit/31cee4f914)] - **stream**: never flatten on toArray (Benjamin Gruenbaum) [#41615](https://github.com/nodejs/node/pull/41615) +* \[[`d63c4c68a0`](https://github.com/nodejs/node/commit/d63c4c68a0)] - **stream**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`6f9c62206b`](https://github.com/nodejs/node/commit/6f9c62206b)] - **test\_runner**: add support for boolean values for `concurrency` option (Lenvin Gonsalves) [#43887](https://github.com/nodejs/node/pull/43887) +* \[[`e33f6bd384`](https://github.com/nodejs/node/commit/e33f6bd384)] - **test\_runner**: validate `timeout` option (Antoine du Hamel) [#43843](https://github.com/nodejs/node/pull/43843) +* \[[`a167daa311`](https://github.com/nodejs/node/commit/a167daa311)] - **test\_runner**: pass signal on timeout (Moshe Atlow) [#43911](https://github.com/nodejs/node/pull/43911) +* \[[`b1db85023e`](https://github.com/nodejs/node/commit/b1db85023e)] - **test\_runner**: do not report an error when tests are passing (Antoine du Hamel) [#43919](https://github.com/nodejs/node/pull/43919) +* \[[`f193ac6cd5`](https://github.com/nodejs/node/commit/f193ac6cd5)] - **test\_runner**: recieve and pass AbortSignal (Moshe Atlow) [#43554](https://github.com/nodejs/node/pull/43554) +* \[[`f8f1d16097`](https://github.com/nodejs/node/commit/f8f1d16097)] - **test\_runner**: fix `it` concurrency (Moshe Atlow) [#43757](https://github.com/nodejs/node/pull/43757) +* \[[`e9ca1efe67`](https://github.com/nodejs/node/commit/e9ca1efe67)] - **test\_runner**: support timeout for tests (Moshe Atlow) [#43505](https://github.com/nodejs/node/pull/43505) +* \[[`5dca44d5eb`](https://github.com/nodejs/node/commit/5dca44d5eb)] - **test\_runner**: catch errors thrown within `describe` (Moshe Atlow) [#43729](https://github.com/nodejs/node/pull/43729) +* \[[`0bdc141dd0`](https://github.com/nodejs/node/commit/0bdc141dd0)] - **test\_runner**: protect internals against prototype tampering (Antoine du Hamel) [#43578](https://github.com/nodejs/node/pull/43578) +* \[[`4d4dcade90`](https://github.com/nodejs/node/commit/4d4dcade90)] - **test\_runner**: cancel on termination (Moshe Atlow) [#43549](https://github.com/nodejs/node/pull/43549) +* \[[`dccbd9ee95`](https://github.com/nodejs/node/commit/dccbd9ee95)] - **test\_runner**: wait for stderr and stdout to complete (Moshe Atlow) [#43666](https://github.com/nodejs/node/pull/43666) +* \[[`27841bee3d`](https://github.com/nodejs/node/commit/27841bee3d)] - **test\_runner**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`1a4235961e`](https://github.com/nodejs/node/commit/1a4235961e)] - **test\_runner**: add Subtest to tap protocol output (Moshe Atlow) [#43417](https://github.com/nodejs/node/pull/43417) +* \[[`3fbc5e441c`](https://github.com/nodejs/node/commit/3fbc5e441c)] - **timers**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`444d77391c`](https://github.com/nodejs/node/commit/444d77391c)] - **tls**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`ba3cf5d59e`](https://github.com/nodejs/node/commit/ba3cf5d59e)] - **tls**: fix performance regression in `convertALPNProtocols()` (LiviaMedeiros) [#43250](https://github.com/nodejs/node/pull/43250) +* \[[`4a3a8a6164`](https://github.com/nodejs/node/commit/4a3a8a6164)] - **tls**: fix convertALPNProtocols accepting ArrayBufferViews (LiviaMedeiros) [#43211](https://github.com/nodejs/node/pull/43211) +* \[[`a6710f50c4`](https://github.com/nodejs/node/commit/a6710f50c4)] - **trace\_events**: trace net connect event (theanarkh) [#43903](https://github.com/nodejs/node/pull/43903) +* \[[`8cda4156a5`](https://github.com/nodejs/node/commit/8cda4156a5)] - **url**: update WHATWG URL parser to align with latest spec (Feng Yu) [#43190](https://github.com/nodejs/node/pull/43190) +* \[[`69f9a3a78e`](https://github.com/nodejs/node/commit/69f9a3a78e)] - **url,lib**: pass urlsearchparams-constructor.any.js (Khaidi Chu) [#41197](https://github.com/nodejs/node/pull/41197) +* \[[`24cabbf32f`](https://github.com/nodejs/node/commit/24cabbf32f)] - **util**: remove unicode support todo for perf implications (Rhys) [#43762](https://github.com/nodejs/node/pull/43762) +* \[[`0f9d5ac0b0`](https://github.com/nodejs/node/commit/0f9d5ac0b0)] - **util**: refactor to use validateObject (Kohei Ueno) [#43769](https://github.com/nodejs/node/pull/43769) +* \[[`5edfccfc4c`](https://github.com/nodejs/node/commit/5edfccfc4c)] - **util**: add `AggregateError.prototype.errors` to inspect output (LiviaMedeiros) [#43646](https://github.com/nodejs/node/pull/43646) +* \[[`fa89a617bc`](https://github.com/nodejs/node/commit/fa89a617bc)] - **util**: remove unnecessary template string (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082) +* \[[`fa74d45e09`](https://github.com/nodejs/node/commit/fa74d45e09)] - **util**: mark cwd grey while inspecting errors (Ruben Bridgewater) [#41082](https://github.com/nodejs/node/pull/41082) +* \[[`053368c3d0`](https://github.com/nodejs/node/commit/053368c3d0)] - **util**: avoid inline access to Symbol.iterator (Kohei Ueno) [#43683](https://github.com/nodejs/node/pull/43683) +* \[[`3959dffc7d`](https://github.com/nodejs/node/commit/3959dffc7d)] - **util**: fix TypeError of symbol in template literals (cola119) [#42790](https://github.com/nodejs/node/pull/42790) +* \[[`053347ca55`](https://github.com/nodejs/node/commit/053347ca55)] - **util**: freeze `kEnumerableProperty` (LiviaMedeiros) [#43390](https://github.com/nodejs/node/pull/43390) +* \[[`2cdae4332d`](https://github.com/nodejs/node/commit/2cdae4332d)] - **util**: add `kEmptyObject` to internal/util (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`49cbed6ced`](https://github.com/nodejs/node/commit/49cbed6ced)] - **v8**: serialize BigInt64Array and BigUint64Array (Ben Noordhuis) [#43571](https://github.com/nodejs/node/pull/43571) +* \[[`ca8da5f3f8`](https://github.com/nodejs/node/commit/ca8da5f3f8)] - **vm**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`3ccf5acd23`](https://github.com/nodejs/node/commit/3ccf5acd23)] - **wasi**: use WasmMemoryObject handle for perf (#43544) (snek) [#43544](https://github.com/nodejs/node/pull/43544) +* \[[`4ff19daf54`](https://github.com/nodejs/node/commit/4ff19daf54)] - **wasi**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`bbbc54f8d4`](https://github.com/nodejs/node/commit/bbbc54f8d4)] - **wasi**: remove unecessary null check (Michael Dawson) [#42819](https://github.com/nodejs/node/pull/42819) +* \[[`51633a23c7`](https://github.com/nodejs/node/commit/51633a23c7)] - **worker**: use `kEmptyObject` (LiviaMedeiros) [#43159](https://github.com/nodejs/node/pull/43159) +* \[[`c4caf20ec3`](https://github.com/nodejs/node/commit/c4caf20ec3)] - **worker**: fix heap snapshot crash on exit (Chengzhong Wu) [#43123](https://github.com/nodejs/node/pull/43123) +* \[[`c583508324`](https://github.com/nodejs/node/commit/c583508324)] - **worker**: fix stream racing with terminate (Keyhan Vakil) [#42874](https://github.com/nodejs/node/pull/42874) +* \[[`293bab7684`](https://github.com/nodejs/node/commit/293bab7684)] - **worker**: add hasRef() to the handle object (Darshan Sen) [#42756](https://github.com/nodejs/node/pull/42756) + +#### Documentation commits + +* \[[`1bd581678c`](https://github.com/nodejs/node/commit/1bd581678c)] - **doc**: update email and mailmap for BethGriggs (Beth Griggs) [#43985](https://github.com/nodejs/node/pull/43985) +* \[[`c37f90415b`](https://github.com/nodejs/node/commit/c37f90415b)] - **doc**: inspector.close undefined in worker threads (Keyhan Vakil) [#43867](https://github.com/nodejs/node/pull/43867) +* \[[`bd0e463d27`](https://github.com/nodejs/node/commit/bd0e463d27)] - **doc**: improve documentation for safe `Promise` statics alternatives (Antoine du Hamel) [#43759](https://github.com/nodejs/node/pull/43759) +* \[[`3022958abd`](https://github.com/nodejs/node/commit/3022958abd)] - **doc**: recommend git-node-v8 (Keyhan Vakil) [#43934](https://github.com/nodejs/node/pull/43934) +* \[[`d528c55c13`](https://github.com/nodejs/node/commit/d528c55c13)] - **doc**: clarify subprocess.stdout/in/err property (Kohei Ueno) [#43910](https://github.com/nodejs/node/pull/43910) +* \[[`067d69f051`](https://github.com/nodejs/node/commit/067d69f051)] - **doc**: fix typo in `src/crypto/README.md` (Jianru Lin) [#43968](https://github.com/nodejs/node/pull/43968) +* \[[`3c85e0c88b`](https://github.com/nodejs/node/commit/3c85e0c88b)] - **doc**: remind backporter about v8\_embedder\_string (Keyhan Vakil) [#43924](https://github.com/nodejs/node/pull/43924) +* \[[`86fb313fe8`](https://github.com/nodejs/node/commit/86fb313fe8)] - **doc**: fix typo in http.md (Airing) [#43933](https://github.com/nodejs/node/pull/43933) +* \[[`37cf3b9551`](https://github.com/nodejs/node/commit/37cf3b9551)] - **doc**: add F3n67u to collaborators (Feng Yu) [#43953](https://github.com/nodejs/node/pull/43953) +* \[[`da6041c89f`](https://github.com/nodejs/node/commit/da6041c89f)] - **doc**: mention Win 32-bit openssl build issue (RafaelGSS) [#43853](https://github.com/nodejs/node/pull/43853) +* \[[`c6e2eaec2b`](https://github.com/nodejs/node/commit/c6e2eaec2b)] - **doc**: add security release specifics to releases.md (Beth Griggs) [#43835](https://github.com/nodejs/node/pull/43835) +* \[[`7a44613819`](https://github.com/nodejs/node/commit/7a44613819)] - **doc**: add history info for `global.performance` (Antoine du Hamel) [#43841](https://github.com/nodejs/node/pull/43841) +* \[[`1685332371`](https://github.com/nodejs/node/commit/1685332371)] - **doc**: add platform-windows-arm to who to CC (Michael Dawson) [#43808](https://github.com/nodejs/node/pull/43808) +* \[[`fcfb2c95c1`](https://github.com/nodejs/node/commit/fcfb2c95c1)] - **doc**: document ES2022's Error "cause" property (James Ide) [#43830](https://github.com/nodejs/node/pull/43830) +* \[[`a0d055e945`](https://github.com/nodejs/node/commit/a0d055e945)] - **doc**: add link to diagnostic tools (Rafael Gonzaga) [#43736](https://github.com/nodejs/node/pull/43736) +* \[[`8c4cf710a5`](https://github.com/nodejs/node/commit/8c4cf710a5)] - **doc**: update links to MDN page about dynamic imports (Jannis R) [#43847](https://github.com/nodejs/node/pull/43847) +* \[[`302a134b83`](https://github.com/nodejs/node/commit/302a134b83)] - **doc**: deprecate coercion to integer in process.exit (Daeyeon Jeong) [#43738](https://github.com/nodejs/node/pull/43738) +* \[[`2a410975c6`](https://github.com/nodejs/node/commit/2a410975c6)] - **doc**: add MoLow to triagers (Moshe Atlow) [#43799](https://github.com/nodejs/node/pull/43799) +* \[[`44291afca4`](https://github.com/nodejs/node/commit/44291afca4)] - **doc**: revert anachronistic 'node:' module require()s in API history notes (DeeDeeG) [#43768](https://github.com/nodejs/node/pull/43768) +* \[[`97bda1fa57`](https://github.com/nodejs/node/commit/97bda1fa57)] - **doc**: clarify release process for new releasers (Rafael Gonzaga) [#43739](https://github.com/nodejs/node/pull/43739) +* \[[`f7b8340efe`](https://github.com/nodejs/node/commit/f7b8340efe)] - **doc**: fix typo in ngtcp2 readme (Dan Castillo) [#43767](https://github.com/nodejs/node/pull/43767) +* \[[`c6bdb5cb22`](https://github.com/nodejs/node/commit/c6bdb5cb22)] - **doc**: fix typo in errors.md (Kazuma Ohashi) [#43677](https://github.com/nodejs/node/pull/43677) +* \[[`20fa30c871`](https://github.com/nodejs/node/commit/20fa30c871)] - **doc**: add new useful V8 option (JialuZhang-intel) [#42575](https://github.com/nodejs/node/pull/42575) +* \[[`2b498fe7f5`](https://github.com/nodejs/node/commit/2b498fe7f5)] - **doc**: fix typo in util.parseArgs usage example (Michael Ficarra) [#43332](https://github.com/nodejs/node/pull/43332) +* \[[`3244217e9a`](https://github.com/nodejs/node/commit/3244217e9a)] - **doc**: improve test runner timeout docs (Tobias Nießen) [#43836](https://github.com/nodejs/node/pull/43836) +* \[[`65699a2132`](https://github.com/nodejs/node/commit/65699a2132)] - **doc**: add code examples to node test runner (Wassim Chegham) [#43359](https://github.com/nodejs/node/pull/43359) +* \[[`c7c769fe67`](https://github.com/nodejs/node/commit/c7c769fe67)] - **doc**: include last security release date (Rafael Gonzaga) [#43774](https://github.com/nodejs/node/pull/43774) +* \[[`3cda9686bd`](https://github.com/nodejs/node/commit/3cda9686bd)] - **doc**: remove node-report from support tiers (RafaelGSS) [#43737](https://github.com/nodejs/node/pull/43737) +* \[[`ae70ada8cb`](https://github.com/nodejs/node/commit/ae70ada8cb)] - **doc**: update changelog-maker to the new flags (RafaelGSS) [#43696](https://github.com/nodejs/node/pull/43696) +* \[[`f42d674225`](https://github.com/nodejs/node/commit/f42d674225)] - **doc**: remove extra 'in's (Colin Ihrig) [#43705](https://github.com/nodejs/node/pull/43705) +* \[[`cfb236e6ba`](https://github.com/nodejs/node/commit/cfb236e6ba)] - **doc**: add Geoffrey Booth to TSC (Rich Trott) [#43706](https://github.com/nodejs/node/pull/43706) +* \[[`c941798e88`](https://github.com/nodejs/node/commit/c941798e88)] - **doc**: improve readability of `dns.md` (0xSanyam) [#43694](https://github.com/nodejs/node/pull/43694) +* \[[`a8980b2468`](https://github.com/nodejs/node/commit/a8980b2468)] - **doc**: add note regarding special case of 0 stat.size (Douglas Wilson) [#43690](https://github.com/nodejs/node/pull/43690) +* \[[`26cd4e2ae6`](https://github.com/nodejs/node/commit/26cd4e2ae6)] - **doc**: fix default of duplex.allowHalfOpen (Vincent Weevers) [#43665](https://github.com/nodejs/node/pull/43665) +* \[[`a8d1670ffa`](https://github.com/nodejs/node/commit/a8d1670ffa)] - **doc**: improve description of --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507) +* \[[`50a1b26605`](https://github.com/nodejs/node/commit/50a1b26605)] - **doc**: add daeyeon to triagers (Daeyeon Jeong) [#43637](https://github.com/nodejs/node/pull/43637) +* \[[`ee10320c9e`](https://github.com/nodejs/node/commit/ee10320c9e)] - **doc**: remove appmetrics from tierlist (Tony Gorez) [#43608](https://github.com/nodejs/node/pull/43608) +* \[[`352628244b`](https://github.com/nodejs/node/commit/352628244b)] - **doc**: remove systemtap from tierlist (Tony Gorez) [#43605](https://github.com/nodejs/node/pull/43605) +* \[[`407beb2bc6`](https://github.com/nodejs/node/commit/407beb2bc6)] - **doc**: add single executable application initiative (Michael Dawson) [#43611](https://github.com/nodejs/node/pull/43611) +* \[[`e5a7b0ff7c`](https://github.com/nodejs/node/commit/e5a7b0ff7c)] - **doc**: remove windows xperf from tierlist (Tony Gorez) [#43607](https://github.com/nodejs/node/pull/43607) +* \[[`d514ee763f`](https://github.com/nodejs/node/commit/d514ee763f)] - **doc**: remove lttng from tierlist (Tony Gorez) [#43604](https://github.com/nodejs/node/pull/43604) +* \[[`8f475e6d00`](https://github.com/nodejs/node/commit/8f475e6d00)] - **doc**: remove dtrace from tierlist (Tony Gorez) [#43606](https://github.com/nodejs/node/pull/43606) +* \[[`31f45288f5`](https://github.com/nodejs/node/commit/31f45288f5)] - **doc**: promote 0x to tier 4 (Tony Gorez) [#43609](https://github.com/nodejs/node/pull/43609) +* \[[`78bedcd158`](https://github.com/nodejs/node/commit/78bedcd158)] - **doc**: include CVSS mention (Rafael Gonzaga) [#43602](https://github.com/nodejs/node/pull/43602) +* \[[`c1ea44db51`](https://github.com/nodejs/node/commit/c1ea44db51)] - **doc**: fix icu-small example (Michael Dawson) [#43591](https://github.com/nodejs/node/pull/43591) +* \[[`a649d0175d`](https://github.com/nodejs/node/commit/a649d0175d)] - **doc**: add `backport-open-vN.x` step to backporting guide (LiviaMedeiros) [#43590](https://github.com/nodejs/node/pull/43590) +* \[[`267e493448`](https://github.com/nodejs/node/commit/267e493448)] - **doc**: move MylesBorins to TSC Emeritus (Myles Borins) [#43524](https://github.com/nodejs/node/pull/43524) +* \[[`444c1a6dcd`](https://github.com/nodejs/node/commit/444c1a6dcd)] - **doc**: add Juan as a security steward (Michael Dawson) [#43512](https://github.com/nodejs/node/pull/43512) +* \[[`1da1722be8`](https://github.com/nodejs/node/commit/1da1722be8)] - **doc**: update link to MDN page about dynamic imports (James Scott-Brown) [#43530](https://github.com/nodejs/node/pull/43530) +* \[[`70ab660107`](https://github.com/nodejs/node/commit/70ab660107)] - **doc**: fix Visual Studio 2019 download link (Feng Yu) [#43236](https://github.com/nodejs/node/pull/43236) +* \[[`23ec1a8727`](https://github.com/nodejs/node/commit/23ec1a8727)] - **doc**: update link of `ICU data slicer` (Feng Yu) [#43483](https://github.com/nodejs/node/pull/43483) +* \[[`cda04013a0`](https://github.com/nodejs/node/commit/cda04013a0)] - **doc**: update v8 doc link to v8.dev (Feng Yu) [#43482](https://github.com/nodejs/node/pull/43482) +* \[[`982e99eb6c`](https://github.com/nodejs/node/commit/982e99eb6c)] - **doc**: add ESM version examples to events api doc (Feng Yu) [#43226](https://github.com/nodejs/node/pull/43226) +* \[[`3d271f16b4`](https://github.com/nodejs/node/commit/3d271f16b4)] - **doc**: update default branch name in `test/**` (Luigi Pinca) [#43445](https://github.com/nodejs/node/pull/43445) +* \[[`18789d5b4a`](https://github.com/nodejs/node/commit/18789d5b4a)] - **doc**: remove branch name mention in `src/README.md` (Feng Yu) [#43442](https://github.com/nodejs/node/pull/43442) +* \[[`f2dfe9b708`](https://github.com/nodejs/node/commit/f2dfe9b708)] - **doc**: update default branch name in `Makefile` (Feng Yu) [#43441](https://github.com/nodejs/node/pull/43441) +* \[[`8d0bca586f`](https://github.com/nodejs/node/commit/8d0bca586f)] - **doc**: update main branch name in release guide (Richard Lau) [#43437](https://github.com/nodejs/node/pull/43437) +* \[[`1945e9ba4a`](https://github.com/nodejs/node/commit/1945e9ba4a)] - **doc**: update main branch name in onboarding.md (Feng Yu) [#43443](https://github.com/nodejs/node/pull/43443) +* \[[`98b27e7f4d`](https://github.com/nodejs/node/commit/98b27e7f4d)] - **doc**: fixup after rename of primary nodejs branch (Michael Dawson) [#43453](https://github.com/nodejs/node/pull/43453) +* \[[`d5832e29b6`](https://github.com/nodejs/node/commit/d5832e29b6)] - **doc**: update main branch name in doc/contributing/\* (Luigi Pinca) [#43438](https://github.com/nodejs/node/pull/43438) +* \[[`3f1ec10a66`](https://github.com/nodejs/node/commit/3f1ec10a66)] - **doc**: packages documentation updates for 12 EOL (Guy Bedford) [#43375](https://github.com/nodejs/node/pull/43375) +* \[[`82dc48d36c`](https://github.com/nodejs/node/commit/82dc48d36c)] - **doc**: fix specifier example in `esm.md` (hiroki osame) [#43351](https://github.com/nodejs/node/pull/43351) +* \[[`143186145c`](https://github.com/nodejs/node/commit/143186145c)] - **doc**: add missing require to stream api doc (Feng Yu) [#43237](https://github.com/nodejs/node/pull/43237) +* \[[`7feff014c4`](https://github.com/nodejs/node/commit/7feff014c4)] - **doc**: use serial comma in worker\_threads docs (Tobias Nießen) [#43220](https://github.com/nodejs/node/pull/43220) +* \[[`c41bf4dc59`](https://github.com/nodejs/node/commit/c41bf4dc59)] - **doc**: use serial comma in assert docs (Tobias Nießen) [#43154](https://github.com/nodejs/node/pull/43154) +* \[[`b6469537e4`](https://github.com/nodejs/node/commit/b6469537e4)] - **doc**: use consistent method symbol (Paolo Insogna) [#42974](https://github.com/nodejs/node/pull/42974) +* \[[`a61b7fabc3`](https://github.com/nodejs/node/commit/a61b7fabc3)] - **doc**: use serial comma in fs docs (Tobias Nießen) [#43104](https://github.com/nodejs/node/pull/43104) +* \[[`14c8f46091`](https://github.com/nodejs/node/commit/14c8f46091)] - **doc**: use serial comma in http docs (Tobias Nießen) [#43026](https://github.com/nodejs/node/pull/43026) +* \[[`751f09eb28`](https://github.com/nodejs/node/commit/751f09eb28)] - **doc**: fix examples in cluster.md (OneNail) [#42889](https://github.com/nodejs/node/pull/42889) +* \[[`cc398a829b`](https://github.com/nodejs/node/commit/cc398a829b)] - **doc**: add `node:` prefix for all core modules (Antoine du Hamel) [#42752](https://github.com/nodejs/node/pull/42752) +* \[[`2922fbb9b2`](https://github.com/nodejs/node/commit/2922fbb9b2)] - **doc**: clarify some default values in `fs.md` (LiviaMedeiros) [#42892](https://github.com/nodejs/node/pull/42892) +* \[[`10e9868cbb`](https://github.com/nodejs/node/commit/10e9868cbb)] - **doc**: fix napi version for node\_api\_symbol\_for (Danielle Adams) [#42878](https://github.com/nodejs/node/pull/42878) +* \[[`3ccb5b4f3f`](https://github.com/nodejs/node/commit/3ccb5b4f3f)] - **doc**: add initial doc on how to update cjs-module-lexer (Michael Dawson) [#43255](https://github.com/nodejs/node/pull/43255) +* \[[`9515ca6f0a`](https://github.com/nodejs/node/commit/9515ca6f0a)] - **doc**: clarify use of deps/icu-small (Michael Dawson) [#43287](https://github.com/nodejs/node/pull/43287) +* \[[`7de20b518a`](https://github.com/nodejs/node/commit/7de20b518a)] - **doc**: remove llnode from diag tierlist (Tony Gorez) [#43289](https://github.com/nodejs/node/pull/43289) +* \[[`5b0ad85fde`](https://github.com/nodejs/node/commit/5b0ad85fde)] - **doc**: remove ETW from diag tierlist (Tony Gorez) [#43295](https://github.com/nodejs/node/pull/43295) +* \[[`5d2a4bd886`](https://github.com/nodejs/node/commit/5d2a4bd886)] - **doc**: use serial comma in report docs (Tobias Nießen) [#43394](https://github.com/nodejs/node/pull/43394) +* \[[`18c6d17f4f`](https://github.com/nodejs/node/commit/18c6d17f4f)] - **doc**: add fspromises mkdir example (Tierney Cyren) [#40843](https://github.com/nodejs/node/pull/40843) +* \[[`e44427954f`](https://github.com/nodejs/node/commit/e44427954f)] - **doc**: add F3n67u to triagers (Feng Yu) [#43350](https://github.com/nodejs/node/pull/43350) +* \[[`fb1566101c`](https://github.com/nodejs/node/commit/fb1566101c)] - **doc**: fix typo in globals.md (Daeyeon Jeong) [#43365](https://github.com/nodejs/node/pull/43365) +* \[[`12e7a24b48`](https://github.com/nodejs/node/commit/12e7a24b48)] - **doc**: use serial comma in webstreams docs (Tobias Nießen) [#43353](https://github.com/nodejs/node/pull/43353) +* \[[`f7bfa10a29`](https://github.com/nodejs/node/commit/f7bfa10a29)] - **doc**: add undici to glossary (F3n67u) [#43327](https://github.com/nodejs/node/pull/43327) +* \[[`961aeffffd`](https://github.com/nodejs/node/commit/961aeffffd)] - **doc**: change glossary link in pull request guide to node's glossary doc (Feng Yu) [#43318](https://github.com/nodejs/node/pull/43318) +* \[[`759861d0d4`](https://github.com/nodejs/node/commit/759861d0d4)] - **doc**: improve description of TZ (Tobias Nießen) [#43334](https://github.com/nodejs/node/pull/43334) +* \[[`288f6c0c04`](https://github.com/nodejs/node/commit/288f6c0c04)] - **doc**: use serial comma in net docs (Tobias Nießen) [#43335](https://github.com/nodejs/node/pull/43335) +* \[[`3d47c6655b`](https://github.com/nodejs/node/commit/3d47c6655b)] - **doc**: make clear the result of comparison between Symbol.for (Kohei Ueno) [#43309](https://github.com/nodejs/node/pull/43309) +* \[[`5029fc3beb`](https://github.com/nodejs/node/commit/5029fc3beb)] - **doc**: add CIGTM to `glossary.md` (Feng Yu) [#43316](https://github.com/nodejs/node/pull/43316) +* \[[`7e4dab6ad9`](https://github.com/nodejs/node/commit/7e4dab6ad9)] - **doc**: use serial comma in pull request doc (Feng Yu) [#43319](https://github.com/nodejs/node/pull/43319) +* \[[`f94d4ea73b`](https://github.com/nodejs/node/commit/f94d4ea73b)] - **doc**: use serial comma in ESM docs (Tobias Nießen) [#43322](https://github.com/nodejs/node/pull/43322) +* \[[`2f831105a3`](https://github.com/nodejs/node/commit/2f831105a3)] - **doc**: promote cdt to tier 3 (Tony Gorez) [#43290](https://github.com/nodejs/node/pull/43290) +* \[[`3e50a1a9e5`](https://github.com/nodejs/node/commit/3e50a1a9e5)] - **doc**: fix chromium document link in pull-requests.md (rikapo) [#43265](https://github.com/nodejs/node/pull/43265) +* \[[`b20cd1b756`](https://github.com/nodejs/node/commit/b20cd1b756)] - **doc**: fix 404 link of BUILDING.md (Feng Yu) [#43234](https://github.com/nodejs/node/pull/43234) +* \[[`b34fce7ad5`](https://github.com/nodejs/node/commit/b34fce7ad5)] - **doc**: add src/crypto to CC list for nodejs/crypto (Tobias Nießen) [#43286](https://github.com/nodejs/node/pull/43286) +* \[[`d50c5585b6`](https://github.com/nodejs/node/commit/d50c5585b6)] - **doc**: use serial comma in console docs (Tobias Nießen) [#43257](https://github.com/nodejs/node/pull/43257) +* \[[`f453918086`](https://github.com/nodejs/node/commit/f453918086)] - **doc**: use serial comma in errors docs (Tobias Nießen) [#43242](https://github.com/nodejs/node/pull/43242) +* \[[`ed9e3b7007`](https://github.com/nodejs/node/commit/ed9e3b7007)] - **doc**: add note regarding `%Array.prototype.concat%` in `primordials.md` (Antoine du Hamel) [#43166](https://github.com/nodejs/node/pull/43166) +* \[[`1867462f15`](https://github.com/nodejs/node/commit/1867462f15)] - **doc**: document `signal` option for `EventTarget#addEventListener` (Antoine du Hamel) [#43170](https://github.com/nodejs/node/pull/43170) +* \[[`ffee27216f`](https://github.com/nodejs/node/commit/ffee27216f)] - **doc**: make minor adjustments (LiviaMedeiros) [#43175](https://github.com/nodejs/node/pull/43175) +* \[[`1b97800c2c`](https://github.com/nodejs/node/commit/1b97800c2c)] - **doc**: use serial comma in dgram docs (Tobias Nießen) [#43191](https://github.com/nodejs/node/pull/43191) +* \[[`a51bdf6f91`](https://github.com/nodejs/node/commit/a51bdf6f91)] - **doc**: use serial comma in process docs (Tobias Nießen) [#43179](https://github.com/nodejs/node/pull/43179) +* \[[`4b4ce99b63`](https://github.com/nodejs/node/commit/4b4ce99b63)] - **doc**: improved parallel specification (mawaregetsuka) [#42679](https://github.com/nodejs/node/pull/42679) +* \[[`c591a2964c`](https://github.com/nodejs/node/commit/c591a2964c)] - **doc**: improve callback params for `fs.mkdir` (Daeyeon Jeong) [#43016](https://github.com/nodejs/node/pull/43016) +* \[[`086f8f426a`](https://github.com/nodejs/node/commit/086f8f426a)] - **doc**: fix errors in Performance hooks doc (OneNail) [#43152](https://github.com/nodejs/node/pull/43152) +* \[[`fb18ade83b`](https://github.com/nodejs/node/commit/fb18ade83b)] - **doc**: use serial comma in dns docs (Tobias Nießen) [#43145](https://github.com/nodejs/node/pull/43145) +* \[[`2071b57666`](https://github.com/nodejs/node/commit/2071b57666)] - **doc**: use ASCII apostrophes consistently (Tobias Nießen) [#43114](https://github.com/nodejs/node/pull/43114) +* \[[`ae2ec73a69`](https://github.com/nodejs/node/commit/ae2ec73a69)] - **doc**: add strategic initiative for shadow realm (Chengzhong Wu) [#43037](https://github.com/nodejs/node/pull/43037) +* \[[`cccc45653a`](https://github.com/nodejs/node/commit/cccc45653a)] - **doc**: use serial comma in events docs (Tobias Nießen) [#43113](https://github.com/nodejs/node/pull/43113) +* \[[`6f3d6596b7`](https://github.com/nodejs/node/commit/6f3d6596b7)] - **doc**: use serial comma in modules docs (Tobias Nießen) [#43103](https://github.com/nodejs/node/pull/43103) +* \[[`0eb8c46db6`](https://github.com/nodejs/node/commit/0eb8c46db6)] - **doc**: use serial comma in util docs (Tobias Nießen) [#43063](https://github.com/nodejs/node/pull/43063) +* \[[`2a72a8ae66`](https://github.com/nodejs/node/commit/2a72a8ae66)] - **doc**: remove git:// protocol, adjust nits in onboarding.md (LiviaMedeiros) [#43045](https://github.com/nodejs/node/pull/43045) +* \[[`b559dfe177`](https://github.com/nodejs/node/commit/b559dfe177)] - **doc**: add maintaining info for shared libary option (Michael Dawson) [#42517](https://github.com/nodejs/node/pull/42517) +* \[[`9101aa89ce`](https://github.com/nodejs/node/commit/9101aa89ce)] - **doc**: add detail for how to update llhttp (Michael Dawson) [#43028](https://github.com/nodejs/node/pull/43028) +* \[[`c6f87e7987`](https://github.com/nodejs/node/commit/c6f87e7987)] - **doc**: use serial comma in buffer docs (Tobias Nießen) [#43048](https://github.com/nodejs/node/pull/43048) +* \[[`f0f3f1c1ec`](https://github.com/nodejs/node/commit/f0f3f1c1ec)] - **doc**: add Rafael to the security steward for NearForm (Matteo Collina) [#42966](https://github.com/nodejs/node/pull/42966) +* \[[`e913dbf9e7`](https://github.com/nodejs/node/commit/e913dbf9e7)] - **doc**: mark some node-api functions as experimental (NickNaso) [#42987](https://github.com/nodejs/node/pull/42987) +* \[[`65a5d49268`](https://github.com/nodejs/node/commit/65a5d49268)] - **doc**: add LiviaMedeiros to collaborators (LiviaMedeiros) [#43039](https://github.com/nodejs/node/pull/43039) +* \[[`5129127db5`](https://github.com/nodejs/node/commit/5129127db5)] - **doc**: add the preferred name for @himself65 (Himself65) [#43024](https://github.com/nodejs/node/pull/43024) +* \[[`d0a95c97b5`](https://github.com/nodejs/node/commit/d0a95c97b5)] - **doc**: rename N-API to Node-API in test/README.md (Daeyeon Jeong) [#42946](https://github.com/nodejs/node/pull/42946) +* \[[`48f6d0b19b`](https://github.com/nodejs/node/commit/48f6d0b19b)] - **doc**: use serial comma in tls docs (Tobias Nießen) [#43001](https://github.com/nodejs/node/pull/43001) +* \[[`14569c7e9d`](https://github.com/nodejs/node/commit/14569c7e9d)] - **doc**: improve commit message example for releases (Juan José) [#42954](https://github.com/nodejs/node/pull/42954) +* \[[`78a08ab4c0`](https://github.com/nodejs/node/commit/78a08ab4c0)] - **doc**: use serial comma in cluster docs (Tobias Nießen) [#42989](https://github.com/nodejs/node/pull/42989) +* \[[`42783cc205`](https://github.com/nodejs/node/commit/42783cc205)] - **doc**: fix errors in Web Streams doc (OneNail) [#42862](https://github.com/nodejs/node/pull/42862) +* \[[`40f552c4d8`](https://github.com/nodejs/node/commit/40f552c4d8)] - **doc**: add additional step to security release process (Michael Dawson) [#42916](https://github.com/nodejs/node/pull/42916) +* \[[`cbb20bea42`](https://github.com/nodejs/node/commit/cbb20bea42)] - **doc**: add section regarding property definition in `primordials.md` (Antoine du Hamel) [#42921](https://github.com/nodejs/node/pull/42921) +* \[[`841b690359`](https://github.com/nodejs/node/commit/841b690359)] - **doc**: reword "test directory" (LiviaMedeiros) [#42817](https://github.com/nodejs/node/pull/42817) +* \[[`e1127b6154`](https://github.com/nodejs/node/commit/e1127b6154)] - **doc**: remove legacy `-J` test.py option from BUILDING.md (LiviaMedeiros) [#42817](https://github.com/nodejs/node/pull/42817) +* \[[`64919a59b5`](https://github.com/nodejs/node/commit/64919a59b5)] - **doc**: http2.createServer `options` as optional (Daeyeon Jeong) [#42832](https://github.com/nodejs/node/pull/42832) +* \[[`54ac0102c1`](https://github.com/nodejs/node/commit/54ac0102c1)] - **doc**: record March 2022 security release steward (Richard Lau) [#42876](https://github.com/nodejs/node/pull/42876) +* \[[`ca117b2fb0`](https://github.com/nodejs/node/commit/ca117b2fb0)] - **doc**: initial version of security-model-strategy.md (Michael Dawson) [#42709](https://github.com/nodejs/node/pull/42709) +* \[[`e45861ff36`](https://github.com/nodejs/node/commit/e45861ff36)] - **doc**: clarify guide on testing internal errors (LiviaMedeiros) [#42813](https://github.com/nodejs/node/pull/42813) +* \[[`cf8620394d`](https://github.com/nodejs/node/commit/cf8620394d)] - **doc**: fix markdown formatting in primordials.md (Tobias Nießen) [#42877](https://github.com/nodejs/node/pull/42877) +* \[[`619414567f`](https://github.com/nodejs/node/commit/619414567f)] - **doc**: add primordials guidelines (Antoine du Hamel) [#38635](https://github.com/nodejs/node/pull/38635) +* \[[`92d7214eb2`](https://github.com/nodejs/node/commit/92d7214eb2)] - **doc**: elevate node-clinic diagnostic tier (RafaelGSS) [#42802](https://github.com/nodejs/node/pull/42802) +* \[[`9ab641ee26`](https://github.com/nodejs/node/commit/9ab641ee26)] - **doc**: update WebAssembly strategy with Wasm Web API (Tobias Nießen) [#42836](https://github.com/nodejs/node/pull/42836) +* \[[`2c447b4f30`](https://github.com/nodejs/node/commit/2c447b4f30)] - **doc**: order `vm.Module` linker arguments correctly (Simen Bekkhus) [#42797](https://github.com/nodejs/node/pull/42797) +* \[[`2974f4042e`](https://github.com/nodejs/node/commit/2974f4042e)] - **doc**: add @kuriyosh to collaborators (Yoshiki Kurihara) [#42824](https://github.com/nodejs/node/pull/42824) +* \[[`da97b86a99`](https://github.com/nodejs/node/commit/da97b86a99)] - **doc**: add maintaining-webassembly.md (Michael Dawson) [#42660](https://github.com/nodejs/node/pull/42660) +* \[[`2178ccfd77`](https://github.com/nodejs/node/commit/2178ccfd77)] - **doc**: delete heapdump from diagnostic tooling support tiers (Tony Gorez) [#42783](https://github.com/nodejs/node/pull/42783) +* \[[`b5cac3a4b7`](https://github.com/nodejs/node/commit/b5cac3a4b7)] - **doc**: fix example in assert.md (LiviaMedeiros) [#42786](https://github.com/nodejs/node/pull/42786) +* \[[`6e8285a27b`](https://github.com/nodejs/node/commit/6e8285a27b)] - **doc**: fix version history for Loaders API (Antoine du Hamel) [#42778](https://github.com/nodejs/node/pull/42778) +* \[[`b5a3c0499b`](https://github.com/nodejs/node/commit/b5a3c0499b)] - **doc**: clarify core modules that can be loaded without a prefix (Antoine du Hamel) [#42753](https://github.com/nodejs/node/pull/42753) +* \[[`41ad6fa020`](https://github.com/nodejs/node/commit/41ad6fa020)] - **doc**: consolidate use of multiple-byte units (Antoine du Hamel) [#42587](https://github.com/nodejs/node/pull/42587) +* \[[`36c0e47bf5`](https://github.com/nodejs/node/commit/36c0e47bf5)] - **doc**: add documentation for inherited methods (Luigi Pinca) [#42691](https://github.com/nodejs/node/pull/42691) +* \[[`665fb3d269`](https://github.com/nodejs/node/commit/665fb3d269)] - **doc**: close tag in n-api.md (LiviaMedeiros) [#42751](https://github.com/nodejs/node/pull/42751) +* \[[`3c97384527`](https://github.com/nodejs/node/commit/3c97384527)] - **doc**: copyedit http.OutgoingMessage documentation (Luigi Pinca) [#42733](https://github.com/nodejs/node/pull/42733) +* \[[`2f319825cc`](https://github.com/nodejs/node/commit/2f319825cc)] - **doc**: improve fragment (`:target`) anchors behavior on HTML version (Antoine du Hamel) [#42739](https://github.com/nodejs/node/pull/42739) +* \[[`1b88868adc`](https://github.com/nodejs/node/commit/1b88868adc)] - **doc**: fix `added:` info for `outgoingMessage.writable*` (Luigi Pinca) [#42737](https://github.com/nodejs/node/pull/42737) +* \[[`0238239de0`](https://github.com/nodejs/node/commit/0238239de0)] - **doc**: delete mdb\_v8 from diagnostic tooling support tiers (Tony Gorez) [#42626](https://github.com/nodejs/node/pull/42626) +* \[[`b4b2a0f8b7`](https://github.com/nodejs/node/commit/b4b2a0f8b7)] - **doc**: document the 'close' and 'finish' events (Luigi Pinca) [#42704](https://github.com/nodejs/node/pull/42704) +* \[[`d7265d8ae4`](https://github.com/nodejs/node/commit/d7265d8ae4)] - **doc**: fix `added:` info for `outgoingMessage.{,un}cork()` (Luigi Pinca) [#42711](https://github.com/nodejs/node/pull/42711) +* \[[`1b668d4be6`](https://github.com/nodejs/node/commit/1b668d4be6)] - **doc**: revise data imports and node: imports sections (Rich Trott) [#42734](https://github.com/nodejs/node/pull/42734) +* \[[`b6c23b0312`](https://github.com/nodejs/node/commit/b6c23b0312)] - **doc**: fix ESM JSON/data URL import example (Rich Trott) [#42728](https://github.com/nodejs/node/pull/42728) +* \[[`806711346d`](https://github.com/nodejs/node/commit/806711346d)] - **doc**: improve doc for http.ServerResponse inheritance (Luigi Pinca) [#42693](https://github.com/nodejs/node/pull/42693) +* \[[`7c881b218f`](https://github.com/nodejs/node/commit/7c881b218f)] - **doc**: add RafaelGSS to collaborators (RafaelGSS) [#42718](https://github.com/nodejs/node/pull/42718) +* \[[`654e71c29c`](https://github.com/nodejs/node/commit/654e71c29c)] - **doc**: add NodeEdKeyGenParams to CryptoKey.algorithm (Tobias Nießen) [#42629](https://github.com/nodejs/node/pull/42629) +* \[[`e566e5c3e4`](https://github.com/nodejs/node/commit/e566e5c3e4)] - **doc**: fix the example for embedders (Momtchil Momtchev) [#42671](https://github.com/nodejs/node/pull/42671) +* \[[`47f7b34831`](https://github.com/nodejs/node/commit/47f7b34831)] - **doc**: change AES-GCM IV recommendation in WebCrypto (Tobias Nießen) [#42611](https://github.com/nodejs/node/pull/42611) +* \[[`0a64b14343`](https://github.com/nodejs/node/commit/0a64b14343)] - **doc**: fix `added:` info for some methods (Luigi Pinca) [#42661](https://github.com/nodejs/node/pull/42661) +* \[[`0c9038020a`](https://github.com/nodejs/node/commit/0c9038020a)] - **doc**: remove unneeded new in Buffer example (Niklas Mischkulnig) [#42682](https://github.com/nodejs/node/pull/42682) +* \[[`06f7aeb2d2`](https://github.com/nodejs/node/commit/06f7aeb2d2)] - **doc**: mark worker.id as integer in cluster docs (Tobias Nießen) [#42684](https://github.com/nodejs/node/pull/42684) +* \[[`1c579ecb78`](https://github.com/nodejs/node/commit/1c579ecb78)] - **doc**: recommend `fh.createWriteStream` for fsPromises methods (Antoine du Hamel) [#42653](https://github.com/nodejs/node/pull/42653) +* \[[`3ba17b184d`](https://github.com/nodejs/node/commit/3ba17b184d)] - **doc**: fix outgoingMessage.removeHeader() signature (Luigi Pinca) [#42652](https://github.com/nodejs/node/pull/42652) +* \[[`ba1f864159`](https://github.com/nodejs/node/commit/ba1f864159)] - **doc**: mark tlsSocket.authorized as boolean property (Tobias Nießen) [#42647](https://github.com/nodejs/node/pull/42647) +* \[[`85aeae2cd2`](https://github.com/nodejs/node/commit/85aeae2cd2)] - **doc**: add missing punctuation in Web Streams doc (Tobias Nießen) [#42672](https://github.com/nodejs/node/pull/42672) +* \[[`630cadbc3f`](https://github.com/nodejs/node/commit/630cadbc3f)] - **doc**: add missing article in session ticket section (Tobias Nießen) [#42632](https://github.com/nodejs/node/pull/42632) +* \[[`b636996499`](https://github.com/nodejs/node/commit/b636996499)] - **doc**: link to dynamic import function (Tobias Nießen) [#42634](https://github.com/nodejs/node/pull/42634) +* \[[`70f61a57d0`](https://github.com/nodejs/node/commit/70f61a57d0)] - **doc**: add note about header values encoding (Paolo Insogna) [#42624](https://github.com/nodejs/node/pull/42624) +* \[[`608d777cf8`](https://github.com/nodejs/node/commit/608d777cf8)] - **doc**: add missing word in rootCertificates section (Tobias Nießen) [#42633](https://github.com/nodejs/node/pull/42633) +* \[[`dbc993294f`](https://github.com/nodejs/node/commit/dbc993294f)] - **doc**: fix brackets position (LiviaMedeiros) [#42649](https://github.com/nodejs/node/pull/42649) +* \[[`a9e97fcc3f`](https://github.com/nodejs/node/commit/a9e97fcc3f)] - **doc**: copyedit corepack.md (Rich Trott) [#42620](https://github.com/nodejs/node/pull/42620) +* \[[`6209e295bb`](https://github.com/nodejs/node/commit/6209e295bb)] - **doc**: delete chakra tt from diagnostic tooling support tiers (Tony Gorez) [#42627](https://github.com/nodejs/node/pull/42627) +* \[[`198f22d3da`](https://github.com/nodejs/node/commit/198f22d3da)] - **doc**: simplify Http2Stream encoding text (Rich Trott) [#42597](https://github.com/nodejs/node/pull/42597) +* \[[`9129f024dc`](https://github.com/nodejs/node/commit/9129f024dc)] - **doc**: remove obsolete stream API selection text (Rich Trott) [#42586](https://github.com/nodejs/node/pull/42586) +* \[[`88108da2c1`](https://github.com/nodejs/node/commit/88108da2c1)] - **doc**: remove faulty justification for 128-bit AES (Tobias Nießen) [#42578](https://github.com/nodejs/node/pull/42578) +* \[[`8072adf41e`](https://github.com/nodejs/node/commit/8072adf41e)] - **doc**: fix documentation of `FileHandle.prototype.appendFile` (Antoine du Hamel) [#42588](https://github.com/nodejs/node/pull/42588) +* \[[`300b9d15ea`](https://github.com/nodejs/node/commit/300b9d15ea)] - **doc**: change "OCSP Request" to "OCSP request" (Tobias Nießen) [#42582](https://github.com/nodejs/node/pull/42582) +* \[[`5ee6b07a6b`](https://github.com/nodejs/node/commit/5ee6b07a6b)] - **doc**: aes webcrypto unwrap is not a node-specific extensions (Filip Skokan) [#42561](https://github.com/nodejs/node/pull/42561) +* \[[`8850cf99f7`](https://github.com/nodejs/node/commit/8850cf99f7)] - **doc**: simplify recommendations in process.md (Rich Trott) [#42556](https://github.com/nodejs/node/pull/42556) +* \[[`c361129d7b`](https://github.com/nodejs/node/commit/c361129d7b)] - **doc**: clarify recommendations in stream.md (Rich Trott) [#42555](https://github.com/nodejs/node/pull/42555) +* \[[`3bec01f1b9`](https://github.com/nodejs/node/commit/3bec01f1b9)] - **doc**: simplify recommendation in webcrypto.md (Rich Trott) [#42554](https://github.com/nodejs/node/pull/42554) +* \[[`9c307937b4`](https://github.com/nodejs/node/commit/9c307937b4)] - **doc**: update DEP0102 text (Rich Trott) [#42553](https://github.com/nodejs/node/pull/42553) +* \[[`73ce20162b`](https://github.com/nodejs/node/commit/73ce20162b)] - **doc**: add introduction sentence for CJS (Antoine du Hamel) [#42491](https://github.com/nodejs/node/pull/42491) +* \[[`5783865894`](https://github.com/nodejs/node/commit/5783865894)] - **doc**: add @meixg to collaborators (Xuguang Mei) [#42576](https://github.com/nodejs/node/pull/42576) +* \[[`a8a075b48b`](https://github.com/nodejs/node/commit/a8a075b48b)] - **doc**: consolidate CI sections (Rich Trott) [#42534](https://github.com/nodejs/node/pull/42534) +* \[[`816cc5ed8a`](https://github.com/nodejs/node/commit/816cc5ed8a)] - **doc**: remove extraneous comma (Rich Trott) [#42548](https://github.com/nodejs/node/pull/42548) +* \[[`7476fe9431`](https://github.com/nodejs/node/commit/7476fe9431)] - **doc**: guide towards x509.fingerprint256 (Tobias Nießen) [#42516](https://github.com/nodejs/node/pull/42516) +* \[[`a6af500919`](https://github.com/nodejs/node/commit/a6af500919)] - **doc**: fix internal link in collaborator-guide.md (Daeyeon Jeong) [#42551](https://github.com/nodejs/node/pull/42551) +* \[[`9a70c3b843`](https://github.com/nodejs/node/commit/9a70c3b843)] - **doc**: add suggestion for OpenSSL only sec releases (Michael Dawson) [#42456](https://github.com/nodejs/node/pull/42456) +* \[[`28208311bf`](https://github.com/nodejs/node/commit/28208311bf)] - **doc**: fix comment text in async\_hooks example (Rich Trott) [#42499](https://github.com/nodejs/node/pull/42499) +* \[[`8fd7ab5d1f`](https://github.com/nodejs/node/commit/8fd7ab5d1f)] - **doc**: add `stability` class to legacy status description (Daniel Roe) [#42525](https://github.com/nodejs/node/pull/42525) +* \[[`37366d4ec4`](https://github.com/nodejs/node/commit/37366d4ec4)] - **doc**: suggest checkHost in checkServerIdentity docs (Tobias Nießen) [#42495](https://github.com/nodejs/node/pull/42495) +* \[[`981d602d8c`](https://github.com/nodejs/node/commit/981d602d8c)] - **doc**: update security release onboarding (Joe Sepi) [#42333](https://github.com/nodejs/node/pull/42333) +* \[[`33b14263e9`](https://github.com/nodejs/node/commit/33b14263e9)] - **doc**: remove comma splice in events.md (Rich Trott) [#42484](https://github.com/nodejs/node/pull/42484) +* \[[`89e3cedb1a`](https://github.com/nodejs/node/commit/89e3cedb1a)] - **doc**: clarify napi\_finalize behavior (Alba Mendez) [#42461](https://github.com/nodejs/node/pull/42461) +* \[[`40b61dbf1b`](https://github.com/nodejs/node/commit/40b61dbf1b)] - **doc**: expand history for conditional exports changes in v12 (Greg Poole) [#42339](https://github.com/nodejs/node/pull/42339) +* \[[`70f982a8fe`](https://github.com/nodejs/node/commit/70f982a8fe)] - **doc**: change comma-splice to two sentences (Rich Trott) [#42455](https://github.com/nodejs/node/pull/42455) +* \[[`69a4daaa09`](https://github.com/nodejs/node/commit/69a4daaa09)] - **doc**: add link to section (Rich Trott) [#42428](https://github.com/nodejs/node/pull/42428) +* \[[`7a7030af79`](https://github.com/nodejs/node/commit/7a7030af79)] - **doc**: fix typo in async\_context.md (Anupama Codippily) [#42444](https://github.com/nodejs/node/pull/42444) +* \[[`3cf80254c7`](https://github.com/nodejs/node/commit/3cf80254c7)] - **doc**: add `trace_gc` to diagnostic tooling support document (Tony Gorez) [#42346](https://github.com/nodejs/node/pull/42346) +* \[[`d9ae6c7829`](https://github.com/nodejs/node/commit/d9ae6c7829)] - **doc**: make header smaller and dropdown click-driven when JS is on (Paolo Insogna) [#42165](https://github.com/nodejs/node/pull/42165) +* \[[`01eb1dc8eb`](https://github.com/nodejs/node/commit/01eb1dc8eb)] - **doc**: standardize typography for \_semantic versioning\_ (Rich Trott) [#42401](https://github.com/nodejs/node/pull/42401) +* \[[`d70f9cb2a3`](https://github.com/nodejs/node/commit/d70f9cb2a3)] - **doc**: unify import order in CCM example (Tobias Nießen) [#42394](https://github.com/nodejs/node/pull/42394) +* \[[`165ee28853`](https://github.com/nodejs/node/commit/165ee28853)] - **doc**: update property name (Rich Trott) [#42398](https://github.com/nodejs/node/pull/42398) +* \[[`b3a7a689f9`](https://github.com/nodejs/node/commit/b3a7a689f9)] - **doc**: document breaking change in `http.IncomingMessage` `'close'` event (Paolo Insogna) [#42521](https://github.com/nodejs/node/pull/42521) +* \[[`7be07c719c`](https://github.com/nodejs/node/commit/7be07c719c)] - **doc,test**: clarify timingSafeEqual semantics (Tobias Nießen) [#43228](https://github.com/nodejs/node/pull/43228) +* \[[`6c00369083`](https://github.com/nodejs/node/commit/6c00369083)] - **doc,test**: clarify ChaCha20-Poly1305 usage (Tobias Nießen) [#42323](https://github.com/nodejs/node/pull/42323) + +#### Other commits + +* \[[`3b10a94a95`](https://github.com/nodejs/node/commit/3b10a94a95)] - **benchmark**: fix output regression (Brian White) [#43635](https://github.com/nodejs/node/pull/43635) +* \[[`f4c4113434`](https://github.com/nodejs/node/commit/f4c4113434)] - **benchmark**: fix fork detection (Paolo Insogna) [#43601](https://github.com/nodejs/node/pull/43601) +* \[[`04f651186d`](https://github.com/nodejs/node/commit/04f651186d)] - **benchmark**: forcefully close processes (Paolo Insogna) [#43557](https://github.com/nodejs/node/pull/43557) +* \[[`986fb3e9ae`](https://github.com/nodejs/node/commit/986fb3e9ae)] - **benchmark**: add node-error benchmark (RafaelGSS) [#43077](https://github.com/nodejs/node/pull/43077) +* \[[`c36b02f666`](https://github.com/nodejs/node/commit/c36b02f666)] - **benchmark**: fix misc/startup failure (Antoine du Hamel) [#42746](https://github.com/nodejs/node/pull/42746) +* \[[`391e16235c`](https://github.com/nodejs/node/commit/391e16235c)] - **build**: make GitPod less noisy (Rich Trott) [#43829](https://github.com/nodejs/node/pull/43829) +* \[[`5315d9741c`](https://github.com/nodejs/node/commit/5315d9741c)] - **build**: add GitHub token permissions for workflows (Varun Sharma) [#43743](https://github.com/nodejs/node/pull/43743) +* \[[`025248bfb0`](https://github.com/nodejs/node/commit/025248bfb0)] - **build**: enable GitPod prebuilds (Rich Trott) [#43698](https://github.com/nodejs/node/pull/43698) +* \[[`d9664c3040`](https://github.com/nodejs/node/commit/d9664c3040)] - **build**: clarify missing clang-format tool (Tobias Nießen) [#42762](https://github.com/nodejs/node/pull/42762) +* \[[`600505ee71`](https://github.com/nodejs/node/commit/600505ee71)] - **build**: update main branch name in GH workflow (Feng Yu) [#43481](https://github.com/nodejs/node/pull/43481) +* \[[`ab55ff4a52`](https://github.com/nodejs/node/commit/ab55ff4a52)] - **build**: add nonpm and nocorepack to vcbuild.bat (Darshan Sen) [#43219](https://github.com/nodejs/node/pull/43219) +* \[[`cf68280548`](https://github.com/nodejs/node/commit/cf68280548)] - **build**: set ASAN workaround (Richard Lau) [#43085](https://github.com/nodejs/node/pull/43085) +* \[[`c4f7e93964`](https://github.com/nodejs/node/commit/c4f7e93964)] - **build**: fix format-cpp (Darshan Sen) [#42764](https://github.com/nodejs/node/pull/42764) +* \[[`dd97a9d1fa`](https://github.com/nodejs/node/commit/dd97a9d1fa)] - **build**: improve the format-cpp error message (Darshan Sen) [#42765](https://github.com/nodejs/node/pull/42765) +* \[[`fc55a6798f`](https://github.com/nodejs/node/commit/fc55a6798f)] - **build**: run clang-format on CI (Darshan Sen) [#42681](https://github.com/nodejs/node/pull/42681) +* \[[`46bc3c1af1`](https://github.com/nodejs/node/commit/46bc3c1af1)] - **build**: consolidate JS and md linting GitHub Actions (Rich Trott) [#42572](https://github.com/nodejs/node/pull/42572) +* \[[`dd7aa2d51f`](https://github.com/nodejs/node/commit/dd7aa2d51f)] - **build**: set stale action back to running nightly (Michael Dawson) [#42549](https://github.com/nodejs/node/pull/42549) +* \[[`dda77aa63b`](https://github.com/nodejs/node/commit/dda77aa63b)] - **build**: bump actions/checkout (Eliaz Bobadilla) [#42460](https://github.com/nodejs/node/pull/42460) +* \[[`0d93b425cf`](https://github.com/nodejs/node/commit/0d93b425cf)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43966](https://github.com/nodejs/node/pull/43966) +* \[[`7a974457df`](https://github.com/nodejs/node/commit/7a974457df)] - **meta**: update `node-api` in label-pr-config (Daeyeon Jeong) [#43794](https://github.com/nodejs/node/pull/43794) +* \[[`dff6068c9a`](https://github.com/nodejs/node/commit/dff6068c9a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43872](https://github.com/nodejs/node/pull/43872) +* \[[`80d562b051`](https://github.com/nodejs/node/commit/80d562b051)] - **meta**: use platform dropdown on flaky template (Rafael Gonzaga) [#43855](https://github.com/nodejs/node/pull/43855) +* \[[`162c7cbb54`](https://github.com/nodejs/node/commit/162c7cbb54)] - **meta**: enable blank issues (Matteo Collina) [#43775](https://github.com/nodejs/node/pull/43775) +* \[[`becfcb4d97`](https://github.com/nodejs/node/commit/becfcb4d97)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#43770](https://github.com/nodejs/node/pull/43770) +* \[[`78bb3ab8e8`](https://github.com/nodejs/node/commit/78bb3ab8e8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43750](https://github.com/nodejs/node/pull/43750) +* \[[`b62574c4bd`](https://github.com/nodejs/node/commit/b62574c4bd)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43660](https://github.com/nodejs/node/pull/43660) +* \[[`965367f586`](https://github.com/nodejs/node/commit/965367f586)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43573](https://github.com/nodejs/node/pull/43573) +* \[[`3760490c3a`](https://github.com/nodejs/node/commit/3760490c3a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43480](https://github.com/nodejs/node/pull/43480) +* \[[`5c6021772f`](https://github.com/nodejs/node/commit/5c6021772f)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#43399](https://github.com/nodejs/node/pull/43399) +* \[[`a544a09662`](https://github.com/nodejs/node/commit/a544a09662)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43387](https://github.com/nodejs/node/pull/43387) +* \[[`d0084daa8a`](https://github.com/nodejs/node/commit/d0084daa8a)] - **meta**: move one or more collaborators to emeritus (#43183) (Node.js GitHub Bot) [#43183](https://github.com/nodejs/node/pull/43183) +* \[[`bb7b1dcb7a`](https://github.com/nodejs/node/commit/bb7b1dcb7a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43312](https://github.com/nodejs/node/pull/43312) +* \[[`aa868efe15`](https://github.com/nodejs/node/commit/aa868efe15)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43231](https://github.com/nodejs/node/pull/43231) +* \[[`fb5d9b7fb5`](https://github.com/nodejs/node/commit/fb5d9b7fb5)] - **meta**: add mailmap entry for legendecas (Chengzhong Wu) [#43156](https://github.com/nodejs/node/pull/43156) +* \[[`06578724bd`](https://github.com/nodejs/node/commit/06578724bd)] - **meta**: add mailmap entry for npm team (Luigi Pinca) [#43143](https://github.com/nodejs/node/pull/43143) +* \[[`bd6912def5`](https://github.com/nodejs/node/commit/bd6912def5)] - **meta**: add mailmap entry for Morgan Roderick (Luigi Pinca) [#43144](https://github.com/nodejs/node/pull/43144) +* \[[`3db25bfc63`](https://github.com/nodejs/node/commit/3db25bfc63)] - **meta**: add mailmap entry for ShogunPanda (Paolo Insogna) [#43094](https://github.com/nodejs/node/pull/43094) +* \[[`0ce67e22fb`](https://github.com/nodejs/node/commit/0ce67e22fb)] - **meta**: update .mailmap for recent README name change (Rich Trott) [#43027](https://github.com/nodejs/node/pull/43027) +* \[[`74ed25ddf5`](https://github.com/nodejs/node/commit/74ed25ddf5)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#43004](https://github.com/nodejs/node/pull/43004) +* \[[`72e9ca1a45`](https://github.com/nodejs/node/commit/72e9ca1a45)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42937](https://github.com/nodejs/node/pull/42937) +* \[[`c351bf682a`](https://github.com/nodejs/node/commit/c351bf682a)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42848](https://github.com/nodejs/node/pull/42848) +* \[[`54d94d04ca`](https://github.com/nodejs/node/commit/54d94d04ca)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42769](https://github.com/nodejs/node/pull/42769) +* \[[`412b3313c9`](https://github.com/nodejs/node/commit/412b3313c9)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42760](https://github.com/nodejs/node/pull/42760) +* \[[`499d0100a6`](https://github.com/nodejs/node/commit/499d0100a6)] - **meta**: move mmarchini to emeritus (mary marchini) [#42750](https://github.com/nodejs/node/pull/42750) +* \[[`7f857d16b8`](https://github.com/nodejs/node/commit/7f857d16b8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42677](https://github.com/nodejs/node/pull/42677) +* \[[`0994001a51`](https://github.com/nodejs/node/commit/0994001a51)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42599](https://github.com/nodejs/node/pull/42599) +* \[[`ac1c0122e4`](https://github.com/nodejs/node/commit/ac1c0122e4)] - **meta**: update .mailmap and AUTHORS (Rich Trott) [#42602](https://github.com/nodejs/node/pull/42602) +* \[[`c7264b712b`](https://github.com/nodejs/node/commit/c7264b712b)] - **meta**: move one or more collaborators to emeritus (Node.js GitHub Bot) [#42500](https://github.com/nodejs/node/pull/42500) +* \[[`bc4bd92bb8`](https://github.com/nodejs/node/commit/bc4bd92bb8)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42585](https://github.com/nodejs/node/pull/42585) +* \[[`bcd8a55f37`](https://github.com/nodejs/node/commit/bcd8a55f37)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#42488](https://github.com/nodejs/node/pull/42488) +* \[[`e6db8099f8`](https://github.com/nodejs/node/commit/e6db8099f8)] - **test**: refactor ESM tests to improve performance (Jacob Smith) [#43784](https://github.com/nodejs/node/pull/43784) +* \[[`0046b9a478`](https://github.com/nodejs/node/commit/0046b9a478)] - **test**: add test on worker process.exit in async modules (Chengzhong Wu) [#43751](https://github.com/nodejs/node/pull/43751) +* \[[`3a6df62cfd`](https://github.com/nodejs/node/commit/3a6df62cfd)] - **test**: update WPT encoding tests (Kohei Ueno) [#43958](https://github.com/nodejs/node/pull/43958) +* \[[`ca747ccb7e`](https://github.com/nodejs/node/commit/ca747ccb7e)] - **test**: remove test-whatwg-events-add-event-listener-options-once.js (Feng Yu) [#43877](https://github.com/nodejs/node/pull/43877) +* \[[`e22041734a`](https://github.com/nodejs/node/commit/e22041734a)] - **test**: work scheduled in process.nextTick can keep the event loop alive (Andreu Botella) [#43787](https://github.com/nodejs/node/pull/43787) +* \[[`2730a10a58`](https://github.com/nodejs/node/commit/2730a10a58)] - **test**: simplify test-tls-set-secure-context (Tobias Nießen) [#43878](https://github.com/nodejs/node/pull/43878) +* \[[`ec3c331c73`](https://github.com/nodejs/node/commit/ec3c331c73)] - **test**: fix test http upload timeout (theanarkh) [#43935](https://github.com/nodejs/node/pull/43935) +* \[[`19397a0488`](https://github.com/nodejs/node/commit/19397a0488)] - **test**: simplify ReplStream.wait() (Tobias Nießen) [#43857](https://github.com/nodejs/node/pull/43857) +* \[[`918448e239`](https://github.com/nodejs/node/commit/918448e239)] - **test**: ensure NODE\_EXTRA\_CA\_CERTS not set before tests (KrayzeeKev) [#43858](https://github.com/nodejs/node/pull/43858) +* \[[`f4cd579ae1`](https://github.com/nodejs/node/commit/f4cd579ae1)] - **test**: add check to test-fs-readfile-tostring-fail (Richard Lau) [#43850](https://github.com/nodejs/node/pull/43850) +* \[[`e271e3403e`](https://github.com/nodejs/node/commit/e271e3403e)] - **test**: use `common.mustNotMutateObjectDeep()` in immutability tests (LiviaMedeiros) [#43196](https://github.com/nodejs/node/pull/43196) +* \[[`409158c919`](https://github.com/nodejs/node/commit/409158c919)] - **test**: add `common.mustNotMutateObjectDeep()` (LiviaMedeiros) [#43196](https://github.com/nodejs/node/pull/43196) +* \[[`75e6933a39`](https://github.com/nodejs/node/commit/75e6933a39)] - **test**: fix coverity warning in test (Michael Dawson) [#43631](https://github.com/nodejs/node/pull/43631) +* \[[`087fc8dddf`](https://github.com/nodejs/node/commit/087fc8dddf)] - **test**: mark test-http-client-response-timeout flaky (Tobias Nießen) [#43792](https://github.com/nodejs/node/pull/43792) +* \[[`993bf7b671`](https://github.com/nodejs/node/commit/993bf7b671)] - **test**: mark flaky tests on smartos (Feng Yu) [#43596](https://github.com/nodejs/node/pull/43596) +* \[[`a3a2a9ede5`](https://github.com/nodejs/node/commit/a3a2a9ede5)] - **test**: mark test-http-server-request-timeouts-mixed flaky on macOS (F3n67u) [#43597](https://github.com/nodejs/node/pull/43597) +* \[[`7cb71c0c7e`](https://github.com/nodejs/node/commit/7cb71c0c7e)] - **test**: skip test-net-connect-reset-until-connected on SmartOS (Filip Skokan) [#43449](https://github.com/nodejs/node/pull/43449) +* \[[`b5eb55646f`](https://github.com/nodejs/node/commit/b5eb55646f)] - **test**: add test for short-option followed by its value (Kohei Ueno) [#43358](https://github.com/nodejs/node/pull/43358) +* \[[`8bd2f4e2b8`](https://github.com/nodejs/node/commit/8bd2f4e2b8)] - **test**: use `assert.match()` instead of `assert(regex.test())` (Antoine du Hamel) [#42803](https://github.com/nodejs/node/pull/42803) +* \[[`f99b0d02e7`](https://github.com/nodejs/node/commit/f99b0d02e7)] - **test**: fix typo in test-stream-toArray (Tobias Nießen) [#41634](https://github.com/nodejs/node/pull/41634) +* \[[`95a823dc26`](https://github.com/nodejs/node/commit/95a823dc26)] - **test**: fix typo in file name (Antoine du Hamel) [#43764](https://github.com/nodejs/node/pull/43764) +* \[[`c291233955`](https://github.com/nodejs/node/commit/c291233955)] - **test**: improve lib/internal/test\_runner/test.js coverage (MURAKAMI Masahiko) [#42745](https://github.com/nodejs/node/pull/42745) +* \[[`a5e16203a3`](https://github.com/nodejs/node/commit/a5e16203a3)] - **test**: mark test-net-connect-reset-until-connected flaky on freebsd (Feng Yu) [#43613](https://github.com/nodejs/node/pull/43613) +* \[[`42610cc8e2`](https://github.com/nodejs/node/commit/42610cc8e2)] - **test**: mark test-gc-http-client-timeout as flaky on arm (Chengzhong Wu) [#43754](https://github.com/nodejs/node/pull/43754) +* \[[`cc5f17f128`](https://github.com/nodejs/node/commit/cc5f17f128)] - **test**: add test for profile command of node inspect (Kohei Ueno) [#43058](https://github.com/nodejs/node/pull/43058) +* \[[`11df17c2f9`](https://github.com/nodejs/node/commit/11df17c2f9)] - **test**: use Object for `tests` variable in fs trace test (Feng Yu) [#43585](https://github.com/nodejs/node/pull/43585) +* \[[`61ddd50c38`](https://github.com/nodejs/node/commit/61ddd50c38)] - **test**: improve code coverage for performance\_entry (Kohei Ueno) [#43434](https://github.com/nodejs/node/pull/43434) +* \[[`341799a0c3`](https://github.com/nodejs/node/commit/341799a0c3)] - **test**: add test to ensure repl doesn't support --input-type (cola119) [#43507](https://github.com/nodejs/node/pull/43507) +* \[[`9bc4ad0483`](https://github.com/nodejs/node/commit/9bc4ad0483)] - **test**: fix flaky test-perf-hooks-histogram (Santiago Gimeno) [#43567](https://github.com/nodejs/node/pull/43567) +* \[[`4d8daae236`](https://github.com/nodejs/node/commit/4d8daae236)] - **test**: fix Buffer.from(ArrayBufferView) call (LiviaMedeiros) [#43614](https://github.com/nodejs/node/pull/43614) +* \[[`8c7597373f`](https://github.com/nodejs/node/commit/8c7597373f)] - **test**: mark test-worker-http2-stream-terminate flaky on all platforms (Finn Yu) [#43620](https://github.com/nodejs/node/pull/43620) +* \[[`e8754f3557`](https://github.com/nodejs/node/commit/e8754f3557)] - **test**: improve code coverage for SourceMap class (italo jose) [#43285](https://github.com/nodejs/node/pull/43285) +* \[[`93de96f844`](https://github.com/nodejs/node/commit/93de96f844)] - **test**: refactor to top-level await (Meek Simbule) [#43500](https://github.com/nodejs/node/pull/43500) +* \[[`f3e9fd7a00`](https://github.com/nodejs/node/commit/f3e9fd7a00)] - **test**: skip test-v8-serialize-leak on IBM i (Richard Lau) [#43511](https://github.com/nodejs/node/pull/43511) +* \[[`65c3e901eb`](https://github.com/nodejs/node/commit/65c3e901eb)] - **test**: use unique file names in fs trace test (Ben Noordhuis) [#43504](https://github.com/nodejs/node/pull/43504) +* \[[`7ce80d81ed`](https://github.com/nodejs/node/commit/7ce80d81ed)] - **test**: allow EOVERFLOW errors in fs position tests (Richard Lau) [#43510](https://github.com/nodejs/node/pull/43510) +* \[[`bf5adf37f3`](https://github.com/nodejs/node/commit/bf5adf37f3)] - **test**: add WPT tests for dom/events (Daiki Nishikawa) [#43151](https://github.com/nodejs/node/pull/43151) +* \[[`a5df207c2b`](https://github.com/nodejs/node/commit/a5df207c2b)] - **test**: replace gc(true) with gc({ type: 'minor' }) (Tobias Nießen) [#43493](https://github.com/nodejs/node/pull/43493) +* \[[`222a6e94ed`](https://github.com/nodejs/node/commit/222a6e94ed)] - **test**: improve coverage for load hooks (Antoine du Hamel) [#43374](https://github.com/nodejs/node/pull/43374) +* \[[`9c1fffc93e`](https://github.com/nodejs/node/commit/9c1fffc93e)] - **test**: refactor to top-level await (Meek Simbule) [#43366](https://github.com/nodejs/node/pull/43366) +* \[[`4ff1c32f44`](https://github.com/nodejs/node/commit/4ff1c32f44)] - **test**: rename `test-eventtarget-whatwg-*.js` (Daeyeon Jeong) [#43467](https://github.com/nodejs/node/pull/43467) +* \[[`68a138333b`](https://github.com/nodejs/node/commit/68a138333b)] - **test**: mark test-worker-http2-stream-terminate flaky on Windows (Darshan Sen) [#43425](https://github.com/nodejs/node/pull/43425) +* \[[`6fcb349fda`](https://github.com/nodejs/node/commit/6fcb349fda)] - _**Revert**_ "**test**: mark test\_buffer/test\_finalizer flaky" (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418) +* \[[`38336403d2`](https://github.com/nodejs/node/commit/38336403d2)] - **test**: make node-api/test\_buffer/test\_finalizer not flaky (Matteo Collina) [#43418](https://github.com/nodejs/node/pull/43418) +* \[[`8e5e5a10c1`](https://github.com/nodejs/node/commit/8e5e5a10c1)] - **test**: reduce flakiness of `test-fs-read-position-validation.mjs` (LiviaMedeiros) [#42999](https://github.com/nodejs/node/pull/42999) +* \[[`b750ff1452`](https://github.com/nodejs/node/commit/b750ff1452)] - **test**: remove the legacy url parser function (Kohei Ueno) [#42656](https://github.com/nodejs/node/pull/42656) +* \[[`01c9f5b2ae`](https://github.com/nodejs/node/commit/01c9f5b2ae)] - **test**: only skip slow tests on Raspberry Pi devices (Richard Lau) [#42645](https://github.com/nodejs/node/pull/42645) +* \[[`d2a615f31d`](https://github.com/nodejs/node/commit/d2a615f31d)] - **test**: fix typos in test/parallel (Daeyeon Jeong) [#42502](https://github.com/nodejs/node/pull/42502) +* \[[`147f99c42c`](https://github.com/nodejs/node/commit/147f99c42c)] - **test**: improve code coverage for streams/duplexify (Erick Wendel) [#41862](https://github.com/nodejs/node/pull/41862) +* \[[`339d2e1282`](https://github.com/nodejs/node/commit/339d2e1282)] - **test**: remove unused argument in test-util-inspect.js (Colin Ihrig) [#43395](https://github.com/nodejs/node/pull/43395) +* \[[`f49d66be2e`](https://github.com/nodejs/node/commit/f49d66be2e)] - **test**: mark test\_buffer/test\_finalizer flaky (Michael Dawson) [#43414](https://github.com/nodejs/node/pull/43414) +* \[[`36f16728a5`](https://github.com/nodejs/node/commit/36f16728a5)] - **test**: fix address in use error (Caleb Everett) [#43199](https://github.com/nodejs/node/pull/43199) +* \[[`cd1c1d53e8`](https://github.com/nodejs/node/commit/cd1c1d53e8)] - **test**: fix `common.mustNotCall` error message (Antoine du Hamel) [#42917](https://github.com/nodejs/node/pull/42917) +* \[[`b72b217dec`](https://github.com/nodejs/node/commit/b72b217dec)] - **test**: convert then to async/await (Meek Simbule) [#43292](https://github.com/nodejs/node/pull/43292) +* \[[`94f60ec0f3`](https://github.com/nodejs/node/commit/94f60ec0f3)] - **test**: add `BigInt`s to `common.getArrayBufferViews()` (LiviaMedeiros) [#43235](https://github.com/nodejs/node/pull/43235) +* \[[`fa70c99564`](https://github.com/nodejs/node/commit/fa70c99564)] - **test**: improve code coverage for inspector connection errors (Kohei Ueno) [#42310](https://github.com/nodejs/node/pull/42310) +* \[[`43e55c6380`](https://github.com/nodejs/node/commit/43e55c6380)] - **test**: use mustSucceed instead of mustCall with assert.ifError (MURAKAMI Masahiko) [#43188](https://github.com/nodejs/node/pull/43188) +* \[[`79b6a8cc4a`](https://github.com/nodejs/node/commit/79b6a8cc4a)] - **test**: improve readline/emitKeypressEvents.js coverage (OneNail) [#42908](https://github.com/nodejs/node/pull/42908) +* \[[`c37c8723b0`](https://github.com/nodejs/node/commit/c37c8723b0)] - **test**: fix dangerous .map in `test/parallel/test-http-set-trailers.js` (LiviaMedeiros) [#43087](https://github.com/nodejs/node/pull/43087) +* \[[`c4d35b0941`](https://github.com/nodejs/node/commit/c4d35b0941)] - **test**: rename handlewrap.hasref tests (Daeyeon Jeong) [#42754](https://github.com/nodejs/node/pull/42754) +* \[[`41028fb0d6`](https://github.com/nodejs/node/commit/41028fb0d6)] - **test**: improve observable ICU behaviour coverage (LiviaMedeiros) [#42683](https://github.com/nodejs/node/pull/42683) +* \[[`53cbcf0202`](https://github.com/nodejs/node/commit/53cbcf0202)] - **test**: validate webstream encoder/decoder inspector (Yoshiki Kurihara) [#42747](https://github.com/nodejs/node/pull/42747) +* \[[`fc6456ed54`](https://github.com/nodejs/node/commit/fc6456ed54)] - **test**: use`mustSucceed` instead of `mustCall` with `assert.ifError` (MURAKAMI Masahiko) [#42806](https://github.com/nodejs/node/pull/42806) +* \[[`24c4f76873`](https://github.com/nodejs/node/commit/24c4f76873)] - **test**: improve `lib/internal/webstreams/readablestream.js` coverage (MURAKAMI Masahiko) [#42823](https://github.com/nodejs/node/pull/42823) +* \[[`eceb318796`](https://github.com/nodejs/node/commit/eceb318796)] - **test**: add test for position validation in fs.read() and fs.readSync() (LiviaMedeiros) [#42837](https://github.com/nodejs/node/pull/42837) +* \[[`1e473de619`](https://github.com/nodejs/node/commit/1e473de619)] - **test**: add tests for extracting function name (Kohei Ueno) [#42399](https://github.com/nodejs/node/pull/42399) +* \[[`4a68984fa6`](https://github.com/nodejs/node/commit/4a68984fa6)] - **test**: simplify test-gc-{http-client,net}-\* (Luigi Pinca) [#42782](https://github.com/nodejs/node/pull/42782) +* \[[`64097a4fdd`](https://github.com/nodejs/node/commit/64097a4fdd)] - **test**: check ecdsa psychic signature (Filip Skokan) [#42863](https://github.com/nodejs/node/pull/42863) +* \[[`53fb735bfa`](https://github.com/nodejs/node/commit/53fb735bfa)] - **test**: fix port in net-perf\_hooks (LiviaMedeiros) [#42761](https://github.com/nodejs/node/pull/42761) +* \[[`3d9975e932`](https://github.com/nodejs/node/commit/3d9975e932)] - **test**: skip test that cannot pass under --node-builtin-modules-path (Geoffrey Booth) [#42834](https://github.com/nodejs/node/pull/42834) +* \[[`6e0c0768de`](https://github.com/nodejs/node/commit/6e0c0768de)] - **test**: fix calculations in test-worker-resource-limits (Joyee Cheung) [#42702](https://github.com/nodejs/node/pull/42702) +* \[[`f67c53f778`](https://github.com/nodejs/node/commit/f67c53f778)] - **test**: improve test coverage of internal/blob (Yoshiki Kurihara) [#41513](https://github.com/nodejs/node/pull/41513) +* \[[`2db988a20e`](https://github.com/nodejs/node/commit/2db988a20e)] - **test**: improve `internal/url.js` coverage (Yoshiki Kurihara) [#42650](https://github.com/nodejs/node/pull/42650) +* \[[`a38c122685`](https://github.com/nodejs/node/commit/a38c122685)] - **test**: allow numeric string for lookupService test (Daeyeon Jeong) [#42596](https://github.com/nodejs/node/pull/42596) +* \[[`11650df453`](https://github.com/nodejs/node/commit/11650df453)] - **test**: remove an unnecessary `undefined` in wpt (Khaidi Chu) [#41470](https://github.com/nodejs/node/pull/41470) +* \[[`faebca4459`](https://github.com/nodejs/node/commit/faebca4459)] - **test**: simplify test-http-write-callbacks.js (Tobias Nießen) [#42628](https://github.com/nodejs/node/pull/42628) +* \[[`9e945439a5`](https://github.com/nodejs/node/commit/9e945439a5)] - **test**: pass data into napi\_create\_external (Joyee Cheung) [#42532](https://github.com/nodejs/node/pull/42532) +* \[[`a7b865ca8d`](https://github.com/nodejs/node/commit/a7b865ca8d)] - **test**: improve `FileHandle.prototype.write` coverage (Antoine du Hamel) [#42541](https://github.com/nodejs/node/pull/42541) +* \[[`82d5e57ac0`](https://github.com/nodejs/node/commit/82d5e57ac0)] - **test**: add test for exception handlings in debugger (Kohei Ueno) [#42327](https://github.com/nodejs/node/pull/42327) +* \[[`b51e5fe06f`](https://github.com/nodejs/node/commit/b51e5fe06f)] - **test**: fix typo in common/wpt.js (Ikko Ashimine) [#42567](https://github.com/nodejs/node/pull/42567) +* \[[`bc60c5d902`](https://github.com/nodejs/node/commit/bc60c5d902)] - **test**: add trace-gc flag test (Tony Gorez) [#42471](https://github.com/nodejs/node/pull/42471) +* \[[`1641ff5db7`](https://github.com/nodejs/node/commit/1641ff5db7)] - **test,fs**: add fs.rm() tests for .git directories (Darshan Sen) [#42410](https://github.com/nodejs/node/pull/42410) +* \[[`3e33e905a8`](https://github.com/nodejs/node/commit/3e33e905a8)] - **tools**: report unsafe string and regex primordials as lint errors (Antoine du Hamel) [#43393](https://github.com/nodejs/node/pull/43393) +* \[[`1d09407840`](https://github.com/nodejs/node/commit/1d09407840)] - **tools**: add `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#43308](https://github.com/nodejs/node/pull/43308) +* \[[`e9b647a288`](https://github.com/nodejs/node/commit/e9b647a288)] - **tools**: add more options to track flaky tests (Antoine du Hamel) [#43954](https://github.com/nodejs/node/pull/43954) +* \[[`01a44348e0`](https://github.com/nodejs/node/commit/01a44348e0)] - **tools**: add verbose flag to inactive TSC finder (Rich Trott) [#43913](https://github.com/nodejs/node/pull/43913) +* \[[`420c9bb084`](https://github.com/nodejs/node/commit/420c9bb084)] - **tools**: add support for using API key to vuln checking script (Facundo Tuesca) [#43909](https://github.com/nodejs/node/pull/43909) +* \[[`7145125051`](https://github.com/nodejs/node/commit/7145125051)] - **tools**: support versioned node shared libs on z/OS (alexcfyung) [#42256](https://github.com/nodejs/node/pull/42256) +* \[[`ff20308475`](https://github.com/nodejs/node/commit/ff20308475)] - **tools**: update doc to highlight.js\@11.6.0 (Node.js GitHub Bot) [#43870](https://github.com/nodejs/node/pull/43870) +* \[[`51643323ba`](https://github.com/nodejs/node/commit/51643323ba)] - **tools**: update lint-md-dependencies to rollup\@2.77.0 (Node.js GitHub Bot) [#43871](https://github.com/nodejs/node/pull/43871) +* \[[`b57758b710`](https://github.com/nodejs/node/commit/b57758b710)] - **tools**: update eslint to 8.20.0 (Node.js GitHub Bot) [#43873](https://github.com/nodejs/node/pull/43873) +* \[[`5fd26da477`](https://github.com/nodejs/node/commit/5fd26da477)] - **tools**: add script for vulnerability checking (Facundo Tuesca) [#43362](https://github.com/nodejs/node/pull/43362) +* \[[`987efcb504`](https://github.com/nodejs/node/commit/987efcb504)] - **tools**: remove rpm build scripts (Ben Noordhuis) [#43647](https://github.com/nodejs/node/pull/43647) +* \[[`4a2422ae38`](https://github.com/nodejs/node/commit/4a2422ae38)] - **tools**: update lint-md-dependencies to rollup\@2.76.0 (Node.js GitHub Bot) [#43749](https://github.com/nodejs/node/pull/43749) +* \[[`8a69cdaa65`](https://github.com/nodejs/node/commit/8a69cdaa65)] - **tools**: refactor `tools/license2rtf` to ESM (Feng Yu) [#43232](https://github.com/nodejs/node/pull/43232) +* \[[`d39fd4e5ce`](https://github.com/nodejs/node/commit/d39fd4e5ce)] - **tools**: update eslint to 8.19.0 (Node.js GitHub Bot) [#43662](https://github.com/nodejs/node/pull/43662) +* \[[`d615f3b181`](https://github.com/nodejs/node/commit/d615f3b181)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43572](https://github.com/nodejs/node/pull/43572) +* \[[`a5089c9b6d`](https://github.com/nodejs/node/commit/a5089c9b6d)] - **tools**: fix CJS/ESM toggle on small screens (Antoine du Hamel) [#43506](https://github.com/nodejs/node/pull/43506) +* \[[`aeffe5f956`](https://github.com/nodejs/node/commit/aeffe5f956)] - **tools**: update main branch name (Feng Yu) [#43440](https://github.com/nodejs/node/pull/43440) +* \[[`d9a4a8519e`](https://github.com/nodejs/node/commit/d9a4a8519e)] - **tools**: update lint-md-dependencies to rollup\@2.75.6 (Node.js GitHub Bot) [#43386](https://github.com/nodejs/node/pull/43386) +* \[[`29976a356b`](https://github.com/nodejs/node/commit/29976a356b)] - **tools**: update eslint to 8.18.0 (Node.js GitHub Bot) [#43479](https://github.com/nodejs/node/pull/43479) +* \[[`2ceb19dbc2`](https://github.com/nodejs/node/commit/2ceb19dbc2)] - **tools**: fix `create-or-update-pull-request-action` hash on GHA (Antoine du Hamel) [#43378](https://github.com/nodejs/node/pull/43378) +* \[[`ddea965f48`](https://github.com/nodejs/node/commit/ddea965f48)] - **tools**: fix find-inactive actions (LiviaMedeiros) [#43377](https://github.com/nodejs/node/pull/43377) +* \[[`7730f0cb81`](https://github.com/nodejs/node/commit/7730f0cb81)] - **tools**: update lint-md-dependencies to rollup\@2.75.5 (Node.js GitHub Bot) [#43313](https://github.com/nodejs/node/pull/43313) +* \[[`e6dbdb19b5`](https://github.com/nodejs/node/commit/e6dbdb19b5)] - **tools**: update eslint to 8.17.0 (Node.js GitHub Bot) [#43314](https://github.com/nodejs/node/pull/43314) +* \[[`2bd60b1fad`](https://github.com/nodejs/node/commit/2bd60b1fad)] - **tools**: use hashes instead of tags for external actions (#43284) (Antoine du Hamel) [#43284](https://github.com/nodejs/node/pull/43284) +* \[[`ab45ba5f92`](https://github.com/nodejs/node/commit/ab45ba5f92)] - **tools**: update `codecov/codecov-action` version (Antoine du Hamel) [#43297](https://github.com/nodejs/node/pull/43297) +* \[[`276dff1523`](https://github.com/nodejs/node/commit/276dff1523)] - **tools**: update lint-md-dependencies to rollup\@2.75.3 (Node.js GitHub Bot) [#43261](https://github.com/nodejs/node/pull/43261) +* \[[`9c03ddb731`](https://github.com/nodejs/node/commit/9c03ddb731)] - **tools**: update clang-format 1.7.0 to 1.8.0 (Darshan Sen) [#43241](https://github.com/nodejs/node/pull/43241) +* \[[`5a9047eb6b`](https://github.com/nodejs/node/commit/5a9047eb6b)] - **tools**: update lint-md-dependencies to rollup\@2.75.1 (Node.js GitHub Bot) [#43230](https://github.com/nodejs/node/pull/43230) +* \[[`4f7c7d260b`](https://github.com/nodejs/node/commit/4f7c7d260b)] - **tools**: refactor build-addons.js to ESM (Feng Yu) [#43099](https://github.com/nodejs/node/pull/43099) +* \[[`4817b1ff1b`](https://github.com/nodejs/node/commit/4817b1ff1b)] - **tools**: update lint-md-dependencies to rollup\@2.74.1 (Node.js GitHub Bot) [#43172](https://github.com/nodejs/node/pull/43172) +* \[[`c89512a5c7`](https://github.com/nodejs/node/commit/c89512a5c7)] - **tools**: update eslint to 8.16.0 (Node.js GitHub Bot) [#43174](https://github.com/nodejs/node/pull/43174) +* \[[`3bb46f9cd9`](https://github.com/nodejs/node/commit/3bb46f9cd9)] - **tools**: refactor update-authors.js to ESM (Feng Yu) [#43098](https://github.com/nodejs/node/pull/43098) +* \[[`3fa2c3ce85`](https://github.com/nodejs/node/commit/3fa2c3ce85)] - **tools**: update lint-md-dependencies to rollup\@2.73.0 (Node.js GitHub Bot) [#43107](https://github.com/nodejs/node/pull/43107) +* \[[`4b82cb66ed`](https://github.com/nodejs/node/commit/4b82cb66ed)] - **tools**: update eslint to 8.15.0 (Node.js GitHub Bot) [#43005](https://github.com/nodejs/node/pull/43005) +* \[[`54e36f5883`](https://github.com/nodejs/node/commit/54e36f5883)] - **tools**: refactor lint-sh.js to esm module (Feng Yu) [#42942](https://github.com/nodejs/node/pull/42942) +* \[[`1e7d6bd99c`](https://github.com/nodejs/node/commit/1e7d6bd99c)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#43003](https://github.com/nodejs/node/pull/43003) +* \[[`7b6ed2cec9`](https://github.com/nodejs/node/commit/7b6ed2cec9)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#42932](https://github.com/nodejs/node/pull/42932) +* \[[`e8ef4f2b47`](https://github.com/nodejs/node/commit/e8ef4f2b47)] - **tools**: bump jsdoccomment from 0.22.1 to 0.29.0 (Rich Trott) [#42857](https://github.com/nodejs/node/pull/42857) +* \[[`7a7491a8c2`](https://github.com/nodejs/node/commit/7a7491a8c2)] - **tools**: update eslint to 8.14.0 (Node.js GitHub Bot) [#42845](https://github.com/nodejs/node/pull/42845) +* \[[`a3d4579135`](https://github.com/nodejs/node/commit/a3d4579135)] - **tools**: update doc to highlight.js\@11.5.1 (Node.js GitHub Bot) [#42758](https://github.com/nodejs/node/pull/42758) +* \[[`f29a1a04ed`](https://github.com/nodejs/node/commit/f29a1a04ed)] - **tools**: update lint-md-dependencies (Node.js GitHub Bot) [#42759](https://github.com/nodejs/node/pull/42759) +* \[[`534369402c`](https://github.com/nodejs/node/commit/534369402c)] - **tools**: lint osx shell scripts (LiviaMedeiros) [#42712](https://github.com/nodejs/node/pull/42712) +* \[[`3370ef9c85`](https://github.com/nodejs/node/commit/3370ef9c85)] - **tools**: update clang-format 1.6.0 to 1.7.0 (Rich Trott) [#42724](https://github.com/nodejs/node/pull/42724) +* \[[`ed41eb2b0d`](https://github.com/nodejs/node/commit/ed41eb2b0d)] - **tools**: update clang-format from 1.2.3 to 1.6.0 (Rich Trott) [#42685](https://github.com/nodejs/node/pull/42685) +* \[[`9ba37645c3`](https://github.com/nodejs/node/commit/9ba37645c3)] - **tools**: update eslint to 8.13.0 (Node.js GitHub Bot) [#42678](https://github.com/nodejs/node/pull/42678) +* \[[`348876e964`](https://github.com/nodejs/node/commit/348876e964)] - **tools**: update gyp-next to v0.12.1 (Michaël Zasso) [#42625](https://github.com/nodejs/node/pull/42625) +* \[[`ec5548b3aa`](https://github.com/nodejs/node/commit/ec5548b3aa)] - **tools**: update lint-md-dependencies to @rollup/plugin-commonjs\@21.0.3 (Node.js GitHub Bot) [#42584](https://github.com/nodejs/node/pull/42584) +* \[[`36ddc6102f`](https://github.com/nodejs/node/commit/36ddc6102f)] - **tools**: enable no-var ESLint rule for lib (Rich Trott) [#42573](https://github.com/nodejs/node/pull/42573) +* \[[`282b449d90`](https://github.com/nodejs/node/commit/282b449d90)] - **tools**: fixed bug causing JSON format to be broken (mawaregetsuka) [#41565](https://github.com/nodejs/node/pull/41565) +* \[[`3a2aa0a862`](https://github.com/nodejs/node/commit/3a2aa0a862)] - **tools**: update GHA actions version (Antoine du Hamel) [#42498](https://github.com/nodejs/node/pull/42498) +* \[[`a176b81f46`](https://github.com/nodejs/node/commit/a176b81f46)] - **tools**: update eslint to 8.12.0 (Node.js GitHub Bot) [#42489](https://github.com/nodejs/node/pull/42489) +* \[[`5ba38bb1b0`](https://github.com/nodejs/node/commit/5ba38bb1b0)] - **tools**: update lint-md-dependencies to vfile-reporter\@7.0.4 (Node.js GitHub Bot) [#42487](https://github.com/nodejs/node/pull/42487) +* \[[`34386895f3`](https://github.com/nodejs/node/commit/34386895f3)] - **tools**: refloat 7 Node.js patches to cpplint.py (Rich Trott) [#42416](https://github.com/nodejs/node/pull/42416) +* \[[`5849f7628d`](https://github.com/nodejs/node/commit/5849f7628d)] - **tools**: bump cpplint to 1.6.0 (Rich Trott) [#42416](https://github.com/nodejs/node/pull/42416) +* \[[`4c0ddffaeb`](https://github.com/nodejs/node/commit/4c0ddffaeb)] - **tools**: fix skip PR if CI is still running (Xuguang Mei) [#42377](https://github.com/nodejs/node/pull/42377) +* \[[`31a738ffba`](https://github.com/nodejs/node/commit/31a738ffba)] - **tools**: make update-undici script executable (Michaël Zasso) [#42406](https://github.com/nodejs/node/pull/42406) +* \[[`b9ec3b4367`](https://github.com/nodejs/node/commit/b9ec3b4367)] - **tools,doc**: add guards against prototype pollution when creating proxies (Antoine du Hamel) [#43391](https://github.com/nodejs/node/pull/43391) +* \[[`54e7d0d723`](https://github.com/nodejs/node/commit/54e7d0d723)] - **typings**: fix `os.cpus` invalid return type (Himself65) [#43006](https://github.com/nodejs/node/pull/43006) + ## 2022-07-07, Version 16.16.0 'Gallium' (LTS), @danielleadams diff --git a/doc/changelogs/CHANGELOG_V18.md b/doc/changelogs/CHANGELOG_V18.md index ded7476c892a8a9..457e6a4190b6955 100644 --- a/doc/changelogs/CHANGELOG_V18.md +++ b/doc/changelogs/CHANGELOG_V18.md @@ -8,6 +8,7 @@ +18.8.0
18.7.0
18.6.0
18.5.0
@@ -40,6 +41,243 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + + +## 2022-08-24, Version 18.8.0 (Current), @ruyadorno + +### Notable changes + +#### bootstrap: implement run-time user-land snapshots via --build-snapshot and --snapshot-blob + +This patch introduces `--build-snapshot` and `--snapshot-blob` options for creating and using user land snapshots. + +To generate a snapshot using snapshot.js as an entry point and write the snapshot blob to snapshot.blob: + +```bash +echo "globalThis.foo = 'I am from the snapshot'" > snapshot.js +node --snapshot-blob snapshot.blob --build-snapshot snapshot.js +``` + +To restore application state from snapshot.blob, with index.js as the entry point script for the deserialized application: + +```bash +echo "console.log(globalThis.foo)" > index.js +node --snapshot-blob snapshot.blob index.js +# => I am from the snapshot +``` + +Users can also use the `v8.startupSnapshot` API to specify an entry point at snapshot building time, thus avoiding the need of an additional entry script at deserialization time: + +```bash +echo "require('v8').startupSnapshot.setDeserializeMainFunction(() => console.log('I am from the snapshot'))" > snapshot.js +node --snapshot-blob snapshot.blob --build-snapshot snapshot.js +node --snapshot-blob snapshot.blob +# => I am from the snapshot +``` + +Contributed by Joyee Cheung in [#38905](https://github.com/nodejs/node/pull/38905) + +### Other notable changes + +* **crypto**: + * (SEMVER-MINOR) allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201) + * (SEMVER-MINOR) allow zero-length secret KeyObject (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201) +* **deps**: + * upgrade npm to 8.18.0 (npm team) [#44263](https://github.com/nodejs/node/pull/44263) - Adds a new `npm query` command +* **doc**: + * add Erick Wendel to collaborators (Erick Wendel) [#44088](https://github.com/nodejs/node/pull/44088) + * add theanarkh to collaborators (theanarkh) [#44131](https://github.com/nodejs/node/pull/44131) + * add MoLow to collaborators (Moshe Atlow) [#44214](https://github.com/nodejs/node/pull/44214) + * add cola119 to collaborators (cola119) [#44248](https://github.com/nodejs/node/pull/44248) + * deprecate `--trace-atomics-wait` (Keyhan Vakil) [#44093](https://github.com/nodejs/node/pull/44093) +* **http**: + * (SEMVER-MINOR) make idle http parser count configurable (theanarkh) [#43974](https://github.com/nodejs/node/pull/43974) +* **net**: + * (SEMVER-MINOR) add local family (theanarkh) [#43975](https://github.com/nodejs/node/pull/43975) +* **src**: + * (SEMVER-MINOR) print source map error source on demand (Chengzhong Wu) [#43875](https://github.com/nodejs/node/pull/43875) +* **tls**: + * (SEMVER-MINOR) pass a valid socket on `tlsClientError` (Daeyeon Jeong) [#44021](https://github.com/nodejs/node/pull/44021) + +### Commits + +* \[[`0e20072e32`](https://github.com/nodejs/node/commit/0e20072e32)] - **assert**: add `getCalls` and `reset` to callTracker (Moshe Atlow) [#44191](https://github.com/nodejs/node/pull/44191) +* \[[`126fbbab74`](https://github.com/nodejs/node/commit/126fbbab74)] - **assert**: add assert.Snapshot (Moshe Atlow) [#44095](https://github.com/nodejs/node/pull/44095) +* \[[`87d7845b4f`](https://github.com/nodejs/node/commit/87d7845b4f)] - **bootstrap**: fixup Error.stackTraceLimit for user-land snapshot (Joyee Cheung) [#44203](https://github.com/nodejs/node/pull/44203) +* \[[`597a5171ee`](https://github.com/nodejs/node/commit/597a5171ee)] - **(SEMVER-MINOR)** **bootstrap**: clean up warning setup during serialization (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905) +* \[[`3561514ff5`](https://github.com/nodejs/node/commit/3561514ff5)] - **(SEMVER-MINOR)** **bootstrap**: implement --snapshot-blob and --build-snapshot (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905) +* \[[`123b2d6795`](https://github.com/nodejs/node/commit/123b2d6795)] - **bootstrap**: turn on FunctionCodeHandling::kKeep in the snapshot builder (Joyee Cheung) [#44104](https://github.com/nodejs/node/pull/44104) +* \[[`e7d101fbd4`](https://github.com/nodejs/node/commit/e7d101fbd4)] - **bootstrap**: support more builtins in the embedded code cache (Joyee Cheung) [#44018](https://github.com/nodejs/node/pull/44018) +* \[[`2ae2828040`](https://github.com/nodejs/node/commit/2ae2828040)] - **build**: enable pointer authentication for branch protection on arm64 (Jeremiah Gowdy) [#43200](https://github.com/nodejs/node/pull/43200) +* \[[`fecec4d3ba`](https://github.com/nodejs/node/commit/fecec4d3ba)] - **build**: add workflow to label flaky-test platform (Rafael Gonzaga) [#44042](https://github.com/nodejs/node/pull/44042) +* \[[`c975c4f674`](https://github.com/nodejs/node/commit/c975c4f674)] - **build**: optimized and fixed building configuration to Android (BuShe) [#44016](https://github.com/nodejs/node/pull/44016) +* \[[`ec1b31e6ad`](https://github.com/nodejs/node/commit/ec1b31e6ad)] - **build**: allow test-internet on forks if not scheduled (Rich Trott) [#44073](https://github.com/nodejs/node/pull/44073) +* \[[`ea48c5673b`](https://github.com/nodejs/node/commit/ea48c5673b)] - **build**: skip test-internet run on forks (Rich Trott) [#44054](https://github.com/nodejs/node/pull/44054) +* \[[`1c0d66e927`](https://github.com/nodejs/node/commit/1c0d66e927)] - **(SEMVER-MINOR)** **crypto**: allow zero-length IKM in HKDF and in webcrypto PBKDF2 (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201) +* \[[`07d90c8a71`](https://github.com/nodejs/node/commit/07d90c8a71)] - **(SEMVER-MINOR)** **crypto**: allow zero-length secret KeyObject (Filip Skokan) [#44201](https://github.com/nodejs/node/pull/44201) +* \[[`ac2b10e0c7`](https://github.com/nodejs/node/commit/ac2b10e0c7)] - **crypto**: fix webcrypto deriveBits validations (Filip Skokan) [#44173](https://github.com/nodejs/node/pull/44173) +* \[[`4c902be5a5`](https://github.com/nodejs/node/commit/4c902be5a5)] - **crypto**: fix webcrypto EC key namedCurve validation errors (Filip Skokan) [#44172](https://github.com/nodejs/node/pull/44172) +* \[[`81e1ec4f6f`](https://github.com/nodejs/node/commit/81e1ec4f6f)] - **crypto**: fix webcrypto generateKey() AES key length validation error (Filip Skokan) [#44170](https://github.com/nodejs/node/pull/44170) +* \[[`ad8ef3a56c`](https://github.com/nodejs/node/commit/ad8ef3a56c)] - **crypto**: fix webcrypto operation errors to be OperationError (Filip Skokan) [#44171](https://github.com/nodejs/node/pull/44171) +* \[[`c270b9a0aa`](https://github.com/nodejs/node/commit/c270b9a0aa)] - **deps**: update corepack to 0.13.0 (Node.js GitHub Bot) [#44318](https://github.com/nodejs/node/pull/44318) +* \[[`bce8041d67`](https://github.com/nodejs/node/commit/bce8041d67)] - **deps**: upgrade npm to 8.18.0 (npm team) [#44263](https://github.com/nodejs/node/pull/44263) +* \[[`a26997263b`](https://github.com/nodejs/node/commit/a26997263b)] - **deps**: update corepack to 0.12.3 (Node.js GitHub Bot) [#44229](https://github.com/nodejs/node/pull/44229) +* \[[`b1590bbca2`](https://github.com/nodejs/node/commit/b1590bbca2)] - **deps**: upgrade npm to 8.17.0 (npm team) [#44205](https://github.com/nodejs/node/pull/44205) +* \[[`818271c1c3`](https://github.com/nodejs/node/commit/818271c1c3)] - **deps**: update undici to 5.8.2 (Node.js GitHub Bot) [#44187](https://github.com/nodejs/node/pull/44187) +* \[[`d09bc5402d`](https://github.com/nodejs/node/commit/d09bc5402d)] - **deps**: update undici to 5.8.1 (Node.js GitHub Bot) [#44158](https://github.com/nodejs/node/pull/44158) +* \[[`a92d90b482`](https://github.com/nodejs/node/commit/a92d90b482)] - **deps**: update corepack to 0.12.2 (Node.js GitHub Bot) [#44159](https://github.com/nodejs/node/pull/44159) +* \[[`52a516a281`](https://github.com/nodejs/node/commit/52a516a281)] - **deps**: V8: cherry-pick 9861ce1deae2 (Milad Fa) [#44115](https://github.com/nodejs/node/pull/44115) +* \[[`763b956f07`](https://github.com/nodejs/node/commit/763b956f07)] - **deps**: remove unnecessary file (Brian White) [#44133](https://github.com/nodejs/node/pull/44133) +* \[[`194587e767`](https://github.com/nodejs/node/commit/194587e767)] - **deps**: upgrade npm to 8.16.0 (npm team) [#44119](https://github.com/nodejs/node/pull/44119) +* \[[`116dcccc79`](https://github.com/nodejs/node/commit/116dcccc79)] - **deps**: upgrade base64 to dc6a41ce36e (Brian White) [#44032](https://github.com/nodejs/node/pull/44032) +* \[[`b7aaf3d4ca`](https://github.com/nodejs/node/commit/b7aaf3d4ca)] - **deps**: upgrade npm to 8.15.1 (npm team) [#44013](https://github.com/nodejs/node/pull/44013) +* \[[`a0c57837c4`](https://github.com/nodejs/node/commit/a0c57837c4)] - **deps**: cherry-pick 00704f5a from V8 upstream (Keyhan Vakil) [#43921](https://github.com/nodejs/node/pull/43921) +* \[[`19557ad6a4`](https://github.com/nodejs/node/commit/19557ad6a4)] - **dgram**: add dgram send queue info (theanarkh) [#44149](https://github.com/nodejs/node/pull/44149) +* \[[`a93371205b`](https://github.com/nodejs/node/commit/a93371205b)] - **doc**: fix optionality of callback arg of checkPrime (Tobias Nießen) [#44311](https://github.com/nodejs/node/pull/44311) +* \[[`d3f3bf602d`](https://github.com/nodejs/node/commit/d3f3bf602d)] - **doc**: fix typo (Hana) [#44262](https://github.com/nodejs/node/pull/44262) +* \[[`7a567875b0`](https://github.com/nodejs/node/commit/7a567875b0)] - **doc**: add TypeScript execution requirements (Michael Dawson) [#44030](https://github.com/nodejs/node/pull/44030) +* \[[`e8916fa758`](https://github.com/nodejs/node/commit/e8916fa758)] - **doc**: add cola119 to collaborators (cola119) [#44248](https://github.com/nodejs/node/pull/44248) +* \[[`8c1fe86026`](https://github.com/nodejs/node/commit/8c1fe86026)] - **doc**: fix added version for readable.closed/destroyed (Matthew Peveler) [#44033](https://github.com/nodejs/node/pull/44033) +* \[[`f39a0514d3`](https://github.com/nodejs/node/commit/f39a0514d3)] - **doc**: improved building doc for Android (BuShe) [#44166](https://github.com/nodejs/node/pull/44166) +* \[[`4d26cb9bb2`](https://github.com/nodejs/node/commit/4d26cb9bb2)] - **doc**: add MoLow to collaborators (Moshe Atlow) [#44214](https://github.com/nodejs/node/pull/44214) +* \[[`6bff14b6f1`](https://github.com/nodejs/node/commit/6bff14b6f1)] - **doc**: update tags in adding-new-napi-api.md (Chengzhong Wu) [#44190](https://github.com/nodejs/node/pull/44190) +* \[[`721639a1d4`](https://github.com/nodejs/node/commit/721639a1d4)] - **doc**: fix typo in diagnostics\_channel (Evan Lucas) [#44199](https://github.com/nodejs/node/pull/44199) +* \[[`0fffc24caa`](https://github.com/nodejs/node/commit/0fffc24caa)] - **doc**: add Retry CI in collaborator guide (Livia Medeiros) [#44130](https://github.com/nodejs/node/pull/44130) +* \[[`fb11643e31`](https://github.com/nodejs/node/commit/fb11643e31)] - **doc**: add performance note to `--enable-source-maps` docs (Saurabh Daware) [#43817](https://github.com/nodejs/node/pull/43817) +* \[[`cb7a9e78fd`](https://github.com/nodejs/node/commit/cb7a9e78fd)] - **doc**: remove unused code in call tracker example (Colin Ihrig) [#44127](https://github.com/nodejs/node/pull/44127) +* \[[`8c26daff7c`](https://github.com/nodejs/node/commit/8c26daff7c)] - **doc**: add theanarkh to collaborators (theanarkh) [#44131](https://github.com/nodejs/node/pull/44131) +* \[[`46f8fb8e53`](https://github.com/nodejs/node/commit/46f8fb8e53)] - **doc**: clarify tls.tlsSocket.getCipher().version (Adam Majer) [#44086](https://github.com/nodejs/node/pull/44086) +* \[[`02236032f0`](https://github.com/nodejs/node/commit/02236032f0)] - **doc**: update repository list in onboarding doc (Rich Trott) [#44089](https://github.com/nodejs/node/pull/44089) +* \[[`58f2739e32`](https://github.com/nodejs/node/commit/58f2739e32)] - **doc**: add Erick Wendel to collaborators (Erick Wendel) [#44088](https://github.com/nodejs/node/pull/44088) +* \[[`fe83d514b2`](https://github.com/nodejs/node/commit/fe83d514b2)] - **doc**: update collaborator email (Ruy Adorno) [#44044](https://github.com/nodejs/node/pull/44044) +* \[[`76011dd7f7`](https://github.com/nodejs/node/commit/76011dd7f7)] - **doc**: copyedit `test.md` (Antoine du Hamel) [#44061](https://github.com/nodejs/node/pull/44061) +* \[[`1d6029aa3d`](https://github.com/nodejs/node/commit/1d6029aa3d)] - **doc**: add kvakil to triagers (Keyhan Vakil) [#43996](https://github.com/nodejs/node/pull/43996) +* \[[`7f7a0eb2f5`](https://github.com/nodejs/node/commit/7f7a0eb2f5)] - **doc**: clarify part of onboarding guide regarding adding to teams (Darshan Sen) [#44024](https://github.com/nodejs/node/pull/44024) +* \[[`2ae5d853a7`](https://github.com/nodejs/node/commit/2ae5d853a7)] - **doc**: fix code examples in `crypto.md` (Antoine du Hamel) [#44053](https://github.com/nodejs/node/pull/44053) +* \[[`1b9537b6a5`](https://github.com/nodejs/node/commit/1b9537b6a5)] - **doc**: claim ABI version for Electron 21 (Keeley Hammond) [#44034](https://github.com/nodejs/node/pull/44034) +* \[[`d23dfa4dcb`](https://github.com/nodejs/node/commit/d23dfa4dcb)] - **doc**: remove old reference from crypto/README.md (Tobias Nießen) [#44012](https://github.com/nodejs/node/pull/44012) +* \[[`222ecd6e14`](https://github.com/nodejs/node/commit/222ecd6e14)] - **doc**: add missing env vars to man page (cola119) [#43492](https://github.com/nodejs/node/pull/43492) +* \[[`374b77619b`](https://github.com/nodejs/node/commit/374b77619b)] - **doc**: list supported MODP groups explicitly (Tobias Nießen) [#43986](https://github.com/nodejs/node/pull/43986) +* \[[`72a9ecf94f`](https://github.com/nodejs/node/commit/72a9ecf94f)] - **doc**: fix typo in packages.md (Dominic Saadi) [#44005](https://github.com/nodejs/node/pull/44005) +* \[[`1b328305f0`](https://github.com/nodejs/node/commit/1b328305f0)] - **doc**: fix typos in `test.md` (Antoine du Hamel) [#43997](https://github.com/nodejs/node/pull/43997) +* \[[`7af55dbc40`](https://github.com/nodejs/node/commit/7af55dbc40)] - **doc**: add missing test runner option (Moshe Atlow) [#43989](https://github.com/nodejs/node/pull/43989) +* \[[`e8441a2864`](https://github.com/nodejs/node/commit/e8441a2864)] - **doc,report**: document special filenames (Chengzhong Wu) [#44257](https://github.com/nodejs/node/pull/44257) +* \[[`da7bc5acdf`](https://github.com/nodejs/node/commit/da7bc5acdf)] - **doc,worker**: deprecate `--trace-atomics-wait` (Keyhan Vakil) [#44093](https://github.com/nodejs/node/pull/44093) +* \[[`37a9d7a754`](https://github.com/nodejs/node/commit/37a9d7a754)] - **errors**: refactor to use optional chaining (SindreXie) [#44184](https://github.com/nodejs/node/pull/44184) +* \[[`a6dccc969f`](https://github.com/nodejs/node/commit/a6dccc969f)] - **esm**: do not bind loader hook functions (Antoine du Hamel) [#44122](https://github.com/nodejs/node/pull/44122) +* \[[`5e9c197d85`](https://github.com/nodejs/node/commit/5e9c197d85)] - **esm**: fix loader hooks accepting too many arguments (Jacob Smith) [#44109](https://github.com/nodejs/node/pull/44109) +* \[[`e072c3aa70`](https://github.com/nodejs/node/commit/e072c3aa70)] - **esm**: move package config helpers (Geoffrey Booth) [#43967](https://github.com/nodejs/node/pull/43967) +* \[[`d57178cdfc`](https://github.com/nodejs/node/commit/d57178cdfc)] - **events**: use bitset to save memory (Basit Chonka) [#43700](https://github.com/nodejs/node/pull/43700) +* \[[`4ec3f671af`](https://github.com/nodejs/node/commit/4ec3f671af)] - **fs**: add encoding parameter to benchmarks (Yagiz Nizipli) [#44278](https://github.com/nodejs/node/pull/44278) +* \[[`851264ca90`](https://github.com/nodejs/node/commit/851264ca90)] - **http**: add max for http keepalive (theanarkh) [#44217](https://github.com/nodejs/node/pull/44217) +* \[[`340ca4d8fe`](https://github.com/nodejs/node/commit/340ca4d8fe)] - **http**: fix error message when specifying headerTimeout for createServer (Nick Sia) [#44163](https://github.com/nodejs/node/pull/44163) +* \[[`c340344641`](https://github.com/nodejs/node/commit/c340344641)] - **http**: trace http request / response (theanarkh) [#44102](https://github.com/nodejs/node/pull/44102) +* \[[`a2cd8b316c`](https://github.com/nodejs/node/commit/a2cd8b316c)] - **(SEMVER-MINOR)** **http**: make idle http parser count configurable (theanarkh) [#43974](https://github.com/nodejs/node/pull/43974) +* \[[`5dc39a10bd`](https://github.com/nodejs/node/commit/5dc39a10bd)] - **http**: reuse socket only when it is drained (ywave620) [#43902](https://github.com/nodejs/node/pull/43902) +* \[[`8c2d19b2d6`](https://github.com/nodejs/node/commit/8c2d19b2d6)] - **http**: do not leak error listeners (Paolo Insogna) [#43587](https://github.com/nodejs/node/pull/43587) +* \[[`1a44fbc19e`](https://github.com/nodejs/node/commit/1a44fbc19e)] - **lib**: add diagnostics channel and perf hooks detail (Danielle Adams) [#43984](https://github.com/nodejs/node/pull/43984) +* \[[`8cfc8b0e7b`](https://github.com/nodejs/node/commit/8cfc8b0e7b)] - **lib**: refactor to avoid prototype pollution (Antoine du Hamel) [#43474](https://github.com/nodejs/node/pull/43474) +* \[[`04007f2f51`](https://github.com/nodejs/node/commit/04007f2f51)] - **lib**: fix diagnostics channel (theanarkh) [#44154](https://github.com/nodejs/node/pull/44154) +* \[[`c02bbdd921`](https://github.com/nodejs/node/commit/c02bbdd921)] - **lib**: pass env variables to child process on z/OS (alexcfyung) [#42255](https://github.com/nodejs/node/pull/42255) +* \[[`617ea4af1c`](https://github.com/nodejs/node/commit/617ea4af1c)] - **lib**: add missing env vars to --help (cola119) [#43492](https://github.com/nodejs/node/pull/43492) +* \[[`94912bb09c`](https://github.com/nodejs/node/commit/94912bb09c)] - **lib**: add `Promise` methods to `avoid-prototype-pollution` lint rule (Antoine du Hamel) [#43849](https://github.com/nodejs/node/pull/43849) +* \[[`8977a87504`](https://github.com/nodejs/node/commit/8977a87504)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44321](https://github.com/nodejs/node/pull/44321) +* \[[`f7be92fe86`](https://github.com/nodejs/node/commit/f7be92fe86)] - **meta**: update `web streams` in label-pr-config (Daeyeon Jeong) [#44235](https://github.com/nodejs/node/pull/44235) +* \[[`2c72ded880`](https://github.com/nodejs/node/commit/2c72ded880)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44231](https://github.com/nodejs/node/pull/44231) +* \[[`c59dc7a4c1`](https://github.com/nodejs/node/commit/c59dc7a4c1)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44161](https://github.com/nodejs/node/pull/44161) +* \[[`e0efd9af50`](https://github.com/nodejs/node/commit/e0efd9af50)] - **meta**: add codeowner for src/node\_snapshot\* (Chengzhong Wu) [#44113](https://github.com/nodejs/node/pull/44113) +* \[[`a996f53c78`](https://github.com/nodejs/node/commit/a996f53c78)] - **meta**: update AUTHORS (Node.js GitHub Bot) [#44065](https://github.com/nodejs/node/pull/44065) +* \[[`697dbfb174`](https://github.com/nodejs/node/commit/697dbfb174)] - **meta**: shorten PowerShell snippet for bug-report template (NicoNekoru) [#44011](https://github.com/nodejs/node/pull/44011) +* \[[`05802c2877`](https://github.com/nodejs/node/commit/05802c2877)] - **module**: protect against prototype mutation (Antoine du Hamel) [#44007](https://github.com/nodejs/node/pull/44007) +* \[[`1b3fcf765f`](https://github.com/nodejs/node/commit/1b3fcf765f)] - **(SEMVER-MINOR)** **net**: create diagnostics channels lazily (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905) +* \[[`aa7c053926`](https://github.com/nodejs/node/commit/aa7c053926)] - **net**: remove unused callback (theanarkh) [#44204](https://github.com/nodejs/node/pull/44204) +* \[[`b6b632c09c`](https://github.com/nodejs/node/commit/b6b632c09c)] - **(SEMVER-MINOR)** **net**: add local family (theanarkh) [#43975](https://github.com/nodejs/node/pull/43975) +* \[[`c3d87564d4`](https://github.com/nodejs/node/commit/c3d87564d4)] - **net, dns**: socket should handle its output as input (Adam Majer) [#44083](https://github.com/nodejs/node/pull/44083) +* \[[`3ba75b341b`](https://github.com/nodejs/node/commit/3ba75b341b)] - **(SEMVER-MINOR)** **net,tls**: pass a valid socket on `tlsClientError` (Daeyeon Jeong) [#44021](https://github.com/nodejs/node/pull/44021) +* \[[`0e38fba552`](https://github.com/nodejs/node/commit/0e38fba552)] - **perf\_hooks**: add resourcetiming buffer limit (Chengzhong Wu) [#44220](https://github.com/nodejs/node/pull/44220) +* \[[`b9fd240f63`](https://github.com/nodejs/node/commit/b9fd240f63)] - **perf\_hooks**: fix gc elapsed time (theanarkh) [#44058](https://github.com/nodejs/node/pull/44058) +* \[[`8cf64998e2`](https://github.com/nodejs/node/commit/8cf64998e2)] - **report**: print javascript stack on fatal error (Chengzhong Wu) [#44242](https://github.com/nodejs/node/pull/44242) +* \[[`c842ab36b6`](https://github.com/nodejs/node/commit/c842ab36b6)] - **report**: skip report if uncaught exception is handled (Chengzhong Wu) [#44208](https://github.com/nodejs/node/pull/44208) +* \[[`ab73cc8706`](https://github.com/nodejs/node/commit/ab73cc8706)] - **src**: disambiguate terms used to refer to builtins and addons (Joyee Cheung) [#44135](https://github.com/nodejs/node/pull/44135) +* \[[`e9d19ac64c`](https://github.com/nodejs/node/commit/e9d19ac64c)] - **src**: use imported namespaces in `node_contextify.cc` (Juan José) [#44299](https://github.com/nodejs/node/pull/44299) +* \[[`3dadc95cd2`](https://github.com/nodejs/node/commit/3dadc95cd2)] - **src**: refactor to avoid using a moved object (Tobias Nießen) [#44269](https://github.com/nodejs/node/pull/44269) +* \[[`3765c6335b`](https://github.com/nodejs/node/commit/3765c6335b)] - **src**: extract common context embedder tag checks (Chengzhong Wu) [#44258](https://github.com/nodejs/node/pull/44258) +* \[[`d2dce59729`](https://github.com/nodejs/node/commit/d2dce59729)] - **src**: avoid copying BaseObjectPtrs in loop (Tobias Nießen) [#44270](https://github.com/nodejs/node/pull/44270) +* \[[`9614907104`](https://github.com/nodejs/node/commit/9614907104)] - **src**: remove usage on ScriptCompiler::CompileFunctionInContext (Chengzhong Wu) [#44198](https://github.com/nodejs/node/pull/44198) +* \[[`4e1ffd932e`](https://github.com/nodejs/node/commit/4e1ffd932e)] - **src**: fix --heapsnapshot-near-heap-limit error hint (Chengzhong Wu) [#44216](https://github.com/nodejs/node/pull/44216) +* \[[`960a20928f`](https://github.com/nodejs/node/commit/960a20928f)] - **src**: prevent copying ArrayBufferViewContents (Keyhan Vakil) [#44091](https://github.com/nodejs/node/pull/44091) +* \[[`4755ad5495`](https://github.com/nodejs/node/commit/4755ad5495)] - **src**: remove usages of GetBackingStore in crypto (Keyhan Vakil) [#44079](https://github.com/nodejs/node/pull/44079) +* \[[`a2022e5aff`](https://github.com/nodejs/node/commit/a2022e5aff)] - **src**: remove unowned usages of GetBackingStore (Keyhan Vakil) [#44080](https://github.com/nodejs/node/pull/44080) +* \[[`8e1b7e2b8f`](https://github.com/nodejs/node/commit/8e1b7e2b8f)] - **src**: remove usages of GetBackingStore in node-api (Keyhan Vakil) [#44075](https://github.com/nodejs/node/pull/44075) +* \[[`cddf3eda28`](https://github.com/nodejs/node/commit/cddf3eda28)] - **src**: remove usages of GetBackingStore in modules (Keyhan Vakil) [#44076](https://github.com/nodejs/node/pull/44076) +* \[[`a54e4d4170`](https://github.com/nodejs/node/commit/a54e4d4170)] - **src**: remove usages of GetBackingStore in WASI (Keyhan Vakil) [#44077](https://github.com/nodejs/node/pull/44077) +* \[[`38cdb1f9b6`](https://github.com/nodejs/node/commit/38cdb1f9b6)] - **src**: remove usages of GetBackingStore in startup (Keyhan Vakil) [#44078](https://github.com/nodejs/node/pull/44078) +* \[[`c4783e37d7`](https://github.com/nodejs/node/commit/c4783e37d7)] - **src**: nest namespace report in namespace node (Chengzhong Wu) [#44069](https://github.com/nodejs/node/pull/44069) +* \[[`04bcdf63a0`](https://github.com/nodejs/node/commit/04bcdf63a0)] - **src**: use a typed array internally for process.\_exiting (Darshan Sen) [#43883](https://github.com/nodejs/node/pull/43883) +* \[[`b90b8abdd5`](https://github.com/nodejs/node/commit/b90b8abdd5)] - **src**: fix bug in GetErrorSource() (Tobias Nießen) [#44019](https://github.com/nodejs/node/pull/44019) +* \[[`728e18e025`](https://github.com/nodejs/node/commit/728e18e025)] - **src**: fix to use replacement character (Kohei Ueno) [#43999](https://github.com/nodejs/node/pull/43999) +* \[[`cc6e0fc8ff`](https://github.com/nodejs/node/commit/cc6e0fc8ff)] - **src**: improve SPKAC::ExportChallenge() (Tobias Nießen) [#44002](https://github.com/nodejs/node/pull/44002) +* \[[`9763e2fba9`](https://github.com/nodejs/node/commit/9763e2fba9)] - **src**: fix typo in src/README.md (Anna Henningsen) [#44009](https://github.com/nodejs/node/pull/44009) +* \[[`460397709b`](https://github.com/nodejs/node/commit/460397709b)] - **src**: remove unnecessary cast in crypto\_sig.cc (Tobias Nießen) [#44001](https://github.com/nodejs/node/pull/44001) +* \[[`68ee8e9089`](https://github.com/nodejs/node/commit/68ee8e9089)] - **src**: split property helpers from node::Environment (Chengzhong Wu) [#44056](https://github.com/nodejs/node/pull/44056) +* \[[`9990dc7d18`](https://github.com/nodejs/node/commit/9990dc7d18)] - **src,buffer**: remove unused chars\_written parameter (Keyhan Vakil) [#44092](https://github.com/nodejs/node/pull/44092) +* \[[`ecf82186e0`](https://github.com/nodejs/node/commit/ecf82186e0)] - **src,fs**: refactor duplicated code in fs.readdir (Daeyeon Jeong) [#43204](https://github.com/nodejs/node/pull/43204) +* \[[`ee6412a992`](https://github.com/nodejs/node/commit/ee6412a992)] - **src,lib**: print prinstine source when source map source not found (Chengzhong Wu) [#44052](https://github.com/nodejs/node/pull/44052) +* \[[`4249276783`](https://github.com/nodejs/node/commit/4249276783)] - **(SEMVER-MINOR)** **src,lib**: print source map error source on demand (Chengzhong Wu) [#43875](https://github.com/nodejs/node/pull/43875) +* \[[`1dabdbf05c`](https://github.com/nodejs/node/commit/1dabdbf05c)] - **src,test**: fix typos (SADIK KUZU) [#44110](https://github.com/nodejs/node/pull/44110) +* \[[`a3ac445198`](https://github.com/nodejs/node/commit/a3ac445198)] - **stream**: fix `isDetachedBuffer` validations (Daeyeon Jeong) [#44114](https://github.com/nodejs/node/pull/44114) +* \[[`c079abe017`](https://github.com/nodejs/node/commit/c079abe017)] - **stream**: improve views validation on `BYOBRequest` (Daeyeon Jeong) [#44155](https://github.com/nodejs/node/pull/44155) +* \[[`2f904bc8bf`](https://github.com/nodejs/node/commit/2f904bc8bf)] - **stream**: update TextEncoderStream to align the latest spec (Kohei Ueno) [#44101](https://github.com/nodejs/node/pull/44101) +* \[[`40b817cfb9`](https://github.com/nodejs/node/commit/40b817cfb9)] - **(SEMVER-MINOR)** **test**: test snapshotting TypeScript compiler (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905) +* \[[`d4189ab609`](https://github.com/nodejs/node/commit/d4189ab609)] - **(SEMVER-MINOR)** **test**: add UMD module test with marked (Joyee Cheung) [#38905](https://github.com/nodejs/node/pull/38905) +* \[[`514e5162d2`](https://github.com/nodejs/node/commit/514e5162d2)] - **test**: deflake test-diagnostics-channel-net (Keyhan Vakil) [#44144](https://github.com/nodejs/node/pull/44144) +* \[[`a2707d0f48`](https://github.com/nodejs/node/commit/a2707d0f48)] - **test**: add coverage for invalid RSA-PSS digests (Tobias Nießen) [#44271](https://github.com/nodejs/node/pull/44271) +* \[[`7b6126a59a`](https://github.com/nodejs/node/commit/7b6126a59a)] - **test**: update Web Streams WPT (Daeyeon Jeong) [#44234](https://github.com/nodejs/node/pull/44234) +* \[[`a02492f96c`](https://github.com/nodejs/node/commit/a02492f96c)] - **test**: move "errors" test to "parallel" (Michaël Zasso) [#44233](https://github.com/nodejs/node/pull/44233) +* \[[`b4224dd192`](https://github.com/nodejs/node/commit/b4224dd192)] - **test**: reduce http-server-request-timeouts-mixed flakiness (Nick Sia) [#44169](https://github.com/nodejs/node/pull/44169) +* \[[`f5e2f6c362`](https://github.com/nodejs/node/commit/f5e2f6c362)] - **test**: remove cjs loader from stack traces (Geoffrey Booth) [#44197](https://github.com/nodejs/node/pull/44197) +* \[[`e37314497a`](https://github.com/nodejs/node/commit/e37314497a)] - **test**: add filesystem check to `test-fs-stat-date.mjs` (Livia Medeiros) [#44174](https://github.com/nodejs/node/pull/44174) +* \[[`9755b1f979`](https://github.com/nodejs/node/commit/9755b1f979)] - **test**: mark connection leak test flaky on IBM i (Richard Lau) [#44215](https://github.com/nodejs/node/pull/44215) +* \[[`beaf5f5776`](https://github.com/nodejs/node/commit/beaf5f5776)] - **test**: use `mustSucceed` instead of `mustCall` with `assert.ifError` (MURAKAMI Masahiko) [#44196](https://github.com/nodejs/node/pull/44196) +* \[[`11f74e72a7`](https://github.com/nodejs/node/commit/11f74e72a7)] - **test**: update WPT runner (Filip Skokan) [#43455](https://github.com/nodejs/node/pull/43455) +* \[[`b2a15b6275`](https://github.com/nodejs/node/commit/b2a15b6275)] - **test**: update wpt url status (Kohei Ueno) [#44175](https://github.com/nodejs/node/pull/44175) +* \[[`6b84451d70`](https://github.com/nodejs/node/commit/6b84451d70)] - **test**: update wasm/jsapi web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100) +* \[[`537d52fa0f`](https://github.com/nodejs/node/commit/537d52fa0f)] - **test**: update hr-time web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100) +* \[[`79445cb215`](https://github.com/nodejs/node/commit/79445cb215)] - **test**: update console web platform tests (Yagiz Nizipli) [#44100](https://github.com/nodejs/node/pull/44100) +* \[[`70267a0eeb`](https://github.com/nodejs/node/commit/70267a0eeb)] - **test**: move tests with many workers to sequential (Keyhan Vakil) [#44139](https://github.com/nodejs/node/pull/44139) +* \[[`86a7fb0c8a`](https://github.com/nodejs/node/commit/86a7fb0c8a)] - **test**: deflake gc-http-client tests by restricting number of requests (Nick Sia) [#44146](https://github.com/nodejs/node/pull/44146) +* \[[`e17117dfda`](https://github.com/nodejs/node/commit/e17117dfda)] - **test**: move test-vm-break-on-sigint to sequential (Keyhan Vakil) [#44140](https://github.com/nodejs/node/pull/44140) +* \[[`e5113fab05`](https://github.com/nodejs/node/commit/e5113fab05)] - **test**: remove test-http-client-response-timeout flaky designation (Luigi Pinca) [#44145](https://github.com/nodejs/node/pull/44145) +* \[[`f1b5f933d7`](https://github.com/nodejs/node/commit/f1b5f933d7)] - **test**: s390x z15 accelerated zlib fixes (Adam Majer) [#44117](https://github.com/nodejs/node/pull/44117) +* \[[`86bbd5e61a`](https://github.com/nodejs/node/commit/86bbd5e61a)] - **test**: tune down parallelism for some flaky tests (Keyhan Vakil) [#44090](https://github.com/nodejs/node/pull/44090) +* \[[`40e2ca7f66`](https://github.com/nodejs/node/commit/40e2ca7f66)] - **test**: fix `internet/test-inspector-help-page` (Daeyeon Jeong) [#44025](https://github.com/nodejs/node/pull/44025) +* \[[`b19564b9d2`](https://github.com/nodejs/node/commit/b19564b9d2)] - **test**: refactor ESM tests to improve performance (Jacob Smith) [#43784](https://github.com/nodejs/node/pull/43784) +* \[[`d964b308ae`](https://github.com/nodejs/node/commit/d964b308ae)] - **test**: remove test-gc-http-client-timeout from flaky list (Feng Yu) [#43971](https://github.com/nodejs/node/pull/43971) +* \[[`2cab7bb791`](https://github.com/nodejs/node/commit/2cab7bb791)] - **test**: reduce loop times for preventing test from timeout (theanarkh) [#43981](https://github.com/nodejs/node/pull/43981) +* \[[`9244d6d416`](https://github.com/nodejs/node/commit/9244d6d416)] - **test**: fix test-cluster-concurrent-disconnect (Daeyeon Jeong) [#43961](https://github.com/nodejs/node/pull/43961) +* \[[`3c8037a9fa`](https://github.com/nodejs/node/commit/3c8037a9fa)] - **test**: change misleading variable name (Tobias Nießen) [#43990](https://github.com/nodejs/node/pull/43990) +* \[[`82164344e2`](https://github.com/nodejs/node/commit/82164344e2)] - **test,crypto**: update WebCryptoAPI WPT (Filip Skokan) [#44223](https://github.com/nodejs/node/pull/44223) +* \[[`c0b160c842`](https://github.com/nodejs/node/commit/c0b160c842)] - **test\_runner**: fix test runner hooks failure stack (Moshe Atlow) [#44284](https://github.com/nodejs/node/pull/44284) +* \[[`8ed39397d5`](https://github.com/nodejs/node/commit/8ed39397d5)] - **test\_runner**: refactor to use more primordials (Antoine du Hamel) [#44062](https://github.com/nodejs/node/pull/44062) +* \[[`d8749c3b87`](https://github.com/nodejs/node/commit/d8749c3b87)] - **test\_runner**: verbous error when entire test tree is canceled (Moshe Atlow) [#44060](https://github.com/nodejs/node/pull/44060) +* \[[`0d007471fa`](https://github.com/nodejs/node/commit/0d007471fa)] - **test\_runner**: empty pending tests queue post running (Moshe Atlow) [#44059](https://github.com/nodejs/node/pull/44059) +* \[[`c3fa82f007`](https://github.com/nodejs/node/commit/c3fa82f007)] - **test\_runner**: add before/after/each hooks (Moshe Atlow) [#43730](https://github.com/nodejs/node/pull/43730) +* \[[`50c854bbfe`](https://github.com/nodejs/node/commit/50c854bbfe)] - **test\_runner**: fix top level `describe` queuing (Moshe Atlow) [#43998](https://github.com/nodejs/node/pull/43998) +* \[[`04fdc3e1fa`](https://github.com/nodejs/node/commit/04fdc3e1fa)] - **test\_runner**: graceful termination on `--test` only (Moshe Atlow) [#43977](https://github.com/nodejs/node/pull/43977) +* \[[`51a0310398`](https://github.com/nodejs/node/commit/51a0310398)] - **test\_runner**: validate `concurrency` option (Antoine du Hamel) [#43976](https://github.com/nodejs/node/pull/43976) +* \[[`ecf7b0720a`](https://github.com/nodejs/node/commit/ecf7b0720a)] - **tls**: use logical OR operator (Mohammed Keyvanzadeh) [#44236](https://github.com/nodejs/node/pull/44236) +* \[[`f7c1b838ba`](https://github.com/nodejs/node/commit/f7c1b838ba)] - **tools**: update lint-md-dependencies to rollup\@2.78.1 (Node.js GitHub Bot) [#44320](https://github.com/nodejs/node/pull/44320) +* \[[`36b39db74d`](https://github.com/nodejs/node/commit/36b39db74d)] - **tools**: update ESLint to 8.22.0 (Luigi Pinca) [#44243](https://github.com/nodejs/node/pull/44243) +* \[[`87f75a27fb`](https://github.com/nodejs/node/commit/87f75a27fb)] - **tools**: update lint-md-dependencies to rollup\@2.78.0 (Node.js GitHub Bot) [#44244](https://github.com/nodejs/node/pull/44244) +* \[[`a3cc8ce959`](https://github.com/nodejs/node/commit/a3cc8ce959)] - **tools**: update lint-md-dependencies to rollup\@2.77.3 (Node.js GitHub Bot) [#44230](https://github.com/nodejs/node/pull/44230) +* \[[`873941a43e`](https://github.com/nodejs/node/commit/873941a43e)] - **tools**: update eslint to 8.21.0 (Node.js GitHub Bot) [#44162](https://github.com/nodejs/node/pull/44162) +* \[[`6be7e6d136`](https://github.com/nodejs/node/commit/6be7e6d136)] - **tools**: update lint-md-dependencies to @rollup/plugin-commonjs\@22.0.2 (Node.js GitHub Bot) [#44160](https://github.com/nodejs/node/pull/44160) +* \[[`b252f389d7`](https://github.com/nodejs/node/commit/b252f389d7)] - **tools**: update undici CPE in vuln checking script (Facundo Tuesca) [#44128](https://github.com/nodejs/node/pull/44128) +* \[[`3eacf25789`](https://github.com/nodejs/node/commit/3eacf25789)] - **tools**: update lint-md-dependencies to rollup\@2.77.2 (Node.js GitHub Bot) [#44064](https://github.com/nodejs/node/pull/44064) +* \[[`1175d9036a`](https://github.com/nodejs/node/commit/1175d9036a)] - **tools**: add verbose flag to find-inactive-collaborators (Rich Trott) [#43964](https://github.com/nodejs/node/pull/43964) +* \[[`2cf3ce83d8`](https://github.com/nodejs/node/commit/2cf3ce83d8)] - **trace\_events**: add example (theanarkh) [#43253](https://github.com/nodejs/node/pull/43253) +* \[[`2efce0fe5b`](https://github.com/nodejs/node/commit/2efce0fe5b)] - **typings**: add JSDoc for `internal/validators` (Yagiz Nizipli) [#44181](https://github.com/nodejs/node/pull/44181) + ## 2022-07-26, Version 18.7.0 (Current), @danielleadams diff --git a/doc/contributing/building-node-with-ninja.md b/doc/contributing/building-node-with-ninja.md index 8aae340e2270345..01a04c3c2cfbe23 100644 --- a/doc/contributing/building-node-with-ninja.md +++ b/doc/contributing/building-node-with-ninja.md @@ -40,4 +40,13 @@ To create a debug build rather than a release build: ./configure --ninja --debug && make ``` +## Customizing `ninja` path + +On some systems (such as RHEL7 and below), the Ninja binary might be installed +with a different name. For these systems use the `NINJA` env var: + +```bash +./configure --ninja && NINJA="ninja-build" make +``` + [Ninja]: https://ninja-build.org/ diff --git a/doc/contributing/maintaining-types-for-nodejs.md b/doc/contributing/maintaining-types-for-nodejs.md index 777405aa93f4cc1..07667726c79beaa 100644 --- a/doc/contributing/maintaining-types-for-nodejs.md +++ b/doc/contributing/maintaining-types-for-nodejs.md @@ -6,7 +6,7 @@ code of their JavaScript projects. While many people don't annotate their code, or make use of annotations at all, there are enough who do that the project has agreed it's important to work towards having [suitable types for end-users][]. -## High level approach +## High level approach - maintaining types There are a number of ways that types could be maintained for Node.js ranging from shipping them with the Node.js runtime to having them be externally @@ -28,6 +28,64 @@ The agreement was that the ideal flow would be as follows: * Automation within external type projects consumes the JSON and automatically generates a PR to add the API. +## High level approach - development workflow + +The number of people using TypeScript with Node.js is significant enough +that providing a good developer experience is important. While TypeScript +is identified specifically, a secondary goal is that what we provide to improve +development experience with TypeScript would apply to other type +systems and transpiled languages as well. + +We have agreed that the approach will **NOT** include bundling TypeScript +tools with Node.js but instead improve the developer experience for how +those tools are installed/configured to work with Node.js. + +The high level developer experience we are working towards was captured in the +[next-10 TypeScript mini-summit](https://github.com/nodejs/next-10/pull/150) +and is as follows: + +1. When Node.js is started with an entry point that is not a file type that + Node.js recognizes, for example `node script.ts`, an informative error + message is printed that directs users to a webpage where they can + learn how to configure Node.js to support that file type. + * If the file was a TypeScript file, a TypeScript specific message with a + reference to a link on Nodejs.org specific on learning how to + configure TypeScript will be provided. + * For other file types a generic message and shared webpage will be + used. +2. Node.js gains support for loading configuration from a file. Most, if not + all, of the configuration supported by `NODE_OPTIONS` would be + supported in this file (which might be the `package.json` that lives + near the entry point file). The webpage with instructions would tell + users what configuration to put in this file to get Node.js to support + their file type. +3. When Node.js is run with the correct configuration, either in a file or + `NODE_OPTIONS` or flags, the unknown file type is executed as expected. + +Some additional specifics around the current approach include: + +* Loaders already provide a number of the components needed to + satisfy the requirements above. They already provide the Node.js + options that are needed to achieve many of the requirements above. +* `package.json` as the location for the config is potentially a good + choice as Node.js already looks for it as part of startup. +* The implementation chosen should allow for different configuration + in/for different environments/conditions such as production + versus development, or different types of hosted environments + such as serverless vs traditional, etc.; Node.js would not make + any recommendations or have any expectations as to what the + separate configuration blocks should be named or what their + purposes should be, just that a configuration file should have + the ability to provide different configurations for user-defined + conditions. +* There is no plan to define a default tsconfig.json for all Node.js users +* We don't have consensus on provding an opinionated default but + that should be explored after the initial steps are complete. +* It will be important that as part of the messaging around this + functionality that we avoid confusion that could lead people to ship + TypeScript files (e.g. `script.ts`) instead of the processed files + (e.g. `script.js`). + ## Generation/Consumption of machine readable JSON files When you run `make doc` the canonical markdown files used to diff --git a/doc/contributing/releases.md b/doc/contributing/releases.md index eb03be2a07de0e7..8699c7e832302c8 100644 --- a/doc/contributing/releases.md +++ b/doc/contributing/releases.md @@ -683,6 +683,7 @@ repository. ```console $ git checkout main +$ git pull upstream main $ git cherry-pick v1.x^ ``` @@ -698,10 +699,16 @@ placeholders (that happens when a change previously landed on another release branch), keep both version numbers. Convert the YAML field to an array if it is not already one. +[It's possible that the `cherry-pick` step will end up adding and/or +changing unwanted lines](https://github.com/nodejs/Release/issues/771), +please validate the changes in `doc/` folder files before confirming/continuing +the cherry-pick step. + Then finish cherry-picking and push the commit upstream: ```console $ git add src/node_version.h doc +$ git diff --staged src doc # read output to validate that changes shows up as expected $ git cherry-pick --continue $ make lint $ git push upstream main @@ -737,7 +744,7 @@ haven't pushed your tag first, then build promotion won't work properly. Push the tag using the following command: ```console -$ git push +$ git push upstream v1.2.3 ``` _Note_: Please do not push the tag unless you are ready to complete the diff --git a/doc/node.1 b/doc/node.1 index 2c179442ab2f414..50a80742c458f95 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -486,6 +486,9 @@ Track heap object allocations for heap snapshots. .It Fl -unhandled-rejections=mode Define the behavior for unhandled rejections. Can be one of `strict` (raise an error), `warn` (enforce warnings) or `none` (silence warnings). . +.It Fl -update-assert-snapshot +Updates snapshot files used by `assert.snapshot()`. +. .It Fl -use-bundled-ca , Fl -use-openssl-ca Use bundled Mozilla CA store as supplied by current Node.js version or use OpenSSL's default CA store. The default store is selectable at build-time. diff --git a/lib/_http_outgoing.js b/lib/_http_outgoing.js index dcdea29968590ad..7b1961ad9785802 100644 --- a/lib/_http_outgoing.js +++ b/lib/_http_outgoing.js @@ -463,7 +463,11 @@ function _storeHeader(firstLine, headers) { header += 'Connection: keep-alive\r\n'; if (this._keepAliveTimeout && this._defaultKeepAlive) { const timeoutSeconds = MathFloor(this._keepAliveTimeout / 1000); - header += `Keep-Alive: timeout=${timeoutSeconds}\r\n`; + let max = ''; + if (~~this._maxRequestsPerSocket > 0) { + max = `, max=${this._maxRequestsPerSocket}`; + } + header += `Keep-Alive: timeout=${timeoutSeconds}${max}\r\n`; } } else { this._last = true; diff --git a/lib/_http_server.js b/lib/_http_server.js index 5f54295c8a15634..8bd8358b5edb672 100644 --- a/lib/_http_server.js +++ b/lib/_http_server.js @@ -80,7 +80,8 @@ const { } = codes; const { validateInteger, - validateBoolean + validateBoolean, + validateLinkHeaderValue } = require('internal/validators'); const Buffer = require('buffer').Buffer; const { setInterval, clearInterval } = require('timers'); @@ -295,6 +296,43 @@ ServerResponse.prototype.writeProcessing = function writeProcessing(cb) { this._writeRaw('HTTP/1.1 102 Processing\r\n\r\n', 'ascii', cb); }; +ServerResponse.prototype.writeEarlyHints = function writeEarlyHints(links, cb) { + let head = 'HTTP/1.1 103 Early Hints\r\n'; + + if (typeof links === 'string') { + validateLinkHeaderValue(links, 'links'); + head += 'Link: ' + links + '\r\n'; + } else if (ArrayIsArray(links)) { + if (!links.length) { + return; + } + + head += 'Link: '; + + for (let i = 0; i < links.length; i++) { + const link = links[i]; + validateLinkHeaderValue(link, 'links'); + head += link; + + if (i !== links.length - 1) { + head += ', '; + } + } + + head += '\r\n'; + } else { + throw new ERR_INVALID_ARG_VALUE( + 'links', + links, + 'must be an array or string of format "; rel=preload; as=style"' + ); + } + + head += '\r\n'; + + this._writeRaw(head, 'ascii', cb); +}; + ServerResponse.prototype._implicitHeader = function _implicitHeader() { this.writeHead(this.statusCode); }; @@ -955,6 +993,7 @@ function parserOnIncoming(server, socket, state, req, keepAlive) { const res = new server[kServerResponse](req); res._keepAliveTimeout = server.keepAliveTimeout; + res._maxRequestsPerSocket = server.maxRequestsPerSocket; res._onPendingData = updateOutgoingData.bind(undefined, socket, state); diff --git a/lib/assert.js b/lib/assert.js index 82c3a285f51abd1..8a28bcde136d6ff 100644 --- a/lib/assert.js +++ b/lib/assert.js @@ -1052,6 +1052,9 @@ assert.doesNotMatch = function doesNotMatch(string, regexp, message) { assert.CallTracker = CallTracker; +const snapshot = require('internal/assert/snapshot'); +assert.snapshot = snapshot; + /** * Expose a strict only variant of assert. * @param {...any} args diff --git a/lib/dgram.js b/lib/dgram.js index 9a11a2287c61554..f3b8d485eb92d68 100644 --- a/lib/dgram.js +++ b/lib/dgram.js @@ -976,6 +976,13 @@ Socket.prototype.getSendBufferSize = function() { return bufferSize(this, 0, SEND_BUFFER); }; +Socket.prototype.getSendQueueSize = function() { + return this[kStateSymbol].handle.getSendQueueSize(); +}; + +Socket.prototype.getSendQueueCount = function() { + return this[kStateSymbol].handle.getSendQueueCount(); +}; // Deprecated private APIs. ObjectDefineProperty(Socket.prototype, '_handle', { diff --git a/lib/inspector.js b/lib/inspector.js index 5ffb2d9d6658e0d..b0ab2b8517451cc 100644 --- a/lib/inspector.js +++ b/lib/inspector.js @@ -25,7 +25,9 @@ if (!hasInspector) const EventEmitter = require('events'); const { queueMicrotask } = require('internal/process/task_queues'); const { + isUint32, validateFunction, + validateInt32, validateObject, validateString, } = require('internal/validators'); @@ -168,6 +170,13 @@ function inspectorOpen(port, host, wait) { if (isEnabled()) { throw new ERR_INSPECTOR_ALREADY_ACTIVATED(); } + // inspectorOpen() currently does not typecheck its arguments and adding + // such checks would be a potentially breaking change. However, the native + // open() function requires the port to fit into a 16-bit unsigned integer, + // causing an integer overflow otherwise, so we at least need to prevent that. + if (isUint32(port)) { + validateInt32(port, 'port', 0, 65535); + } open(port, host); if (wait) waitForDebugger(); diff --git a/lib/internal/assert/assertion_error.js b/lib/internal/assert/assertion_error.js index 3deb8185229d7fc..17e261bd4cb1eff 100644 --- a/lib/internal/assert/assertion_error.js +++ b/lib/internal/assert/assertion_error.js @@ -21,15 +21,12 @@ const { inspect } = require('internal/util/inspect'); const { removeColors, } = require('internal/util'); +const colors = require('internal/util/colors'); const { validateObject, } = require('internal/validators'); const { isErrorStackTraceLimitWritable } = require('internal/errors'); -let blue = ''; -let green = ''; -let red = ''; -let white = ''; const kReadableOperator = { deepStrictEqual: 'Expected values to be strictly deep-equal:', @@ -169,7 +166,7 @@ function createErrDiff(actual, expected, operator) { // Only remove lines in case it makes sense to collapse those. // TODO: Accept env to always show the full error. if (actualLines.length > 50) { - actualLines[46] = `${blue}...${white}`; + actualLines[46] = `${colors.blue}...${colors.white}`; while (actualLines.length > 47) { ArrayPrototypePop(actualLines); } @@ -182,7 +179,7 @@ function createErrDiff(actual, expected, operator) { // There were at least five identical lines at the end. Mark a couple of // skipped. if (i >= 5) { - end = `\n${blue}...${white}${end}`; + end = `\n${colors.blue}...${colors.white}${end}`; skipped = true; } if (other !== '') { @@ -193,15 +190,15 @@ function createErrDiff(actual, expected, operator) { let printedLines = 0; let identical = 0; const msg = kReadableOperator[operator] + - `\n${green}+ actual${white} ${red}- expected${white}`; - const skippedMsg = ` ${blue}...${white} Lines skipped`; + `\n${colors.green}+ actual${colors.white} ${colors.red}- expected${colors.white}`; + const skippedMsg = ` ${colors.blue}...${colors.white} Lines skipped`; let lines = actualLines; - let plusMinus = `${green}+${white}`; + let plusMinus = `${colors.green}+${colors.white}`; let maxLength = expectedLines.length; if (actualLines.length < maxLines) { lines = expectedLines; - plusMinus = `${red}-${white}`; + plusMinus = `${colors.red}-${colors.white}`; maxLength = actualLines.length; } @@ -216,7 +213,7 @@ function createErrDiff(actual, expected, operator) { res += `\n ${lines[i - 3]}`; printedLines++; } else { - res += `\n${blue}...${white}`; + res += `\n${colors.blue}...${colors.white}`; skipped = true; } } @@ -272,7 +269,7 @@ function createErrDiff(actual, expected, operator) { res += `\n ${actualLines[i - 3]}`; printedLines++; } else { - res += `\n${blue}...${white}`; + res += `\n${colors.blue}...${colors.white}`; skipped = true; } } @@ -286,8 +283,8 @@ function createErrDiff(actual, expected, operator) { identical = 0; // Add the actual line to the result and cache the expected diverging // line so consecutive diverging lines show up as +++--- and not +-+-+-. - res += `\n${green}+${white} ${actualLine}`; - other += `\n${red}-${white} ${expectedLine}`; + res += `\n${colors.green}+${colors.white} ${actualLine}`; + other += `\n${colors.red}-${colors.white} ${expectedLine}`; printedLines += 2; // Lines are identical } else { @@ -306,8 +303,8 @@ function createErrDiff(actual, expected, operator) { } // Inspected object to big (Show ~50 rows max) if (printedLines > 50 && i < maxLines - 2) { - return `${msg}${skippedMsg}\n${res}\n${blue}...${white}${other}\n` + - `${blue}...${white}`; + return `${msg}${skippedMsg}\n${res}\n${colors.blue}...${colors.white}${other}\n` + + `${colors.blue}...${colors.white}`; } } @@ -347,21 +344,9 @@ class AssertionError extends Error { if (message != null) { super(String(message)); } else { - if (process.stderr.isTTY) { - // Reset on each call to make sure we handle dynamically set environment - // variables correct. - if (process.stderr.hasColors()) { - blue = '\u001b[34m'; - green = '\u001b[32m'; - white = '\u001b[39m'; - red = '\u001b[31m'; - } else { - blue = ''; - green = ''; - white = ''; - red = ''; - } - } + // Reset colors on each call to make sure we handle dynamically set environment + // variables correct. + colors.refresh(); // Prevent the error stack from being visible by duplicating the error // in a very close way to the original in case both sides are actually // instances of Error. @@ -393,7 +378,7 @@ class AssertionError extends Error { // Only remove lines in case it makes sense to collapse those. // TODO: Accept env to always show the full error. if (res.length > 50) { - res[46] = `${blue}...${white}`; + res[46] = `${colors.blue}...${colors.white}`; while (res.length > 47) { ArrayPrototypePop(res); } diff --git a/lib/internal/assert/calltracker.js b/lib/internal/assert/calltracker.js index cf53b1af10fe285..2046634932d13d9 100644 --- a/lib/internal/assert/calltracker.js +++ b/lib/internal/assert/calltracker.js @@ -2,16 +2,20 @@ const { ArrayPrototypePush, + ArrayPrototypeSlice, Error, FunctionPrototype, + ObjectFreeze, Proxy, ReflectApply, SafeSet, + SafeWeakMap, } = primordials; const { codes: { ERR_UNAVAILABLE_DURING_EXIT, + ERR_INVALID_ARG_VALUE, }, } = require('internal/errors'); const AssertionError = require('internal/assert/assertion_error'); @@ -21,66 +25,111 @@ const { const noop = FunctionPrototype; +class CallTrackerContext { + #expected; + #calls; + #name; + #stackTrace; + constructor({ expected, stackTrace, name }) { + this.#calls = []; + this.#expected = expected; + this.#stackTrace = stackTrace; + this.#name = name; + } + + track(thisArg, args) { + const argsClone = ObjectFreeze(ArrayPrototypeSlice(args)); + ArrayPrototypePush(this.#calls, ObjectFreeze({ thisArg, arguments: argsClone })); + } + + get delta() { + return this.#calls.length - this.#expected; + } + + reset() { + this.#calls = []; + } + getCalls() { + return ObjectFreeze(ArrayPrototypeSlice(this.#calls)); + } + + report() { + if (this.delta !== 0) { + const message = `Expected the ${this.#name} function to be ` + + `executed ${this.#expected} time(s) but was ` + + `executed ${this.#calls.length} time(s).`; + return { + message, + actual: this.#calls.length, + expected: this.#expected, + operator: this.#name, + stack: this.#stackTrace + }; + } + } +} + class CallTracker { #callChecks = new SafeSet(); + #trackedFunctions = new SafeWeakMap(); + + #getTrackedFunction(tracked) { + if (!this.#trackedFunctions.has(tracked)) { + throw new ERR_INVALID_ARG_VALUE('tracked', tracked, 'is not a tracked function'); + } + return this.#trackedFunctions.get(tracked); + } + + reset(tracked) { + if (tracked === undefined) { + this.#callChecks.forEach((check) => check.reset()); + return; + } - calls(fn, exact = 1) { + this.#getTrackedFunction(tracked).reset(); + } + + getCalls(tracked) { + return this.#getTrackedFunction(tracked).getCalls(); + } + + calls(fn, expected = 1) { if (process._exiting) throw new ERR_UNAVAILABLE_DURING_EXIT(); if (typeof fn === 'number') { - exact = fn; + expected = fn; fn = noop; } else if (fn === undefined) { fn = noop; } - validateUint32(exact, 'exact', true); + validateUint32(expected, 'expected', true); - const context = { - exact, - actual: 0, + const context = new CallTrackerContext({ + expected, // eslint-disable-next-line no-restricted-syntax stackTrace: new Error(), name: fn.name || 'calls' - }; - const callChecks = this.#callChecks; - callChecks.add(context); - - return new Proxy(fn, { + }); + const tracked = new Proxy(fn, { __proto__: null, apply(fn, thisArg, argList) { - context.actual++; - if (context.actual === context.exact) { - // Once function has reached its call count remove it from - // callChecks set to prevent memory leaks. - callChecks.delete(context); - } - // If function has been called more than expected times, add back into - // callchecks. - if (context.actual === context.exact + 1) { - callChecks.add(context); - } + context.track(thisArg, argList); return ReflectApply(fn, thisArg, argList); }, }); + this.#callChecks.add(context); + this.#trackedFunctions.set(tracked, context); + return tracked; } report() { const errors = []; for (const context of this.#callChecks) { - // If functions have not been called exact times - if (context.actual !== context.exact) { - const message = `Expected the ${context.name} function to be ` + - `executed ${context.exact} time(s) but was ` + - `executed ${context.actual} time(s).`; - ArrayPrototypePush(errors, { - message, - actual: context.actual, - expected: context.exact, - operator: context.name, - stack: context.stackTrace - }); + const message = context.report(); + if (message !== undefined) { + ArrayPrototypePush(errors, message); } } return errors; diff --git a/lib/internal/assert/snapshot.js b/lib/internal/assert/snapshot.js new file mode 100644 index 000000000000000..70af1fd4e63ca7d --- /dev/null +++ b/lib/internal/assert/snapshot.js @@ -0,0 +1,129 @@ +'use strict'; + +const { + ArrayPrototypeJoin, + ArrayPrototypeMap, + ArrayPrototypeSlice, + RegExp, + SafeMap, + SafeSet, + StringPrototypeSplit, + StringPrototypeReplace, + Symbol, +} = primordials; + +const { codes: { ERR_ASSERT_SNAPSHOT_NOT_SUPPORTED } } = require('internal/errors'); +const AssertionError = require('internal/assert/assertion_error'); +const { inspect } = require('internal/util/inspect'); +const { getOptionValue } = require('internal/options'); +const { validateString } = require('internal/validators'); +const { once } = require('events'); +const { createReadStream, createWriteStream } = require('fs'); +const path = require('path'); +const assert = require('assert'); + +const kUpdateSnapshot = getOptionValue('--update-assert-snapshot'); +const kInitialSnapshot = Symbol('kInitialSnapshot'); +const kDefaultDelimiter = '\n#*#*#*#*#*#*#*#*#*#*#*#\n'; +const kDefaultDelimiterRegex = new RegExp(kDefaultDelimiter.replaceAll('*', '\\*').replaceAll('\n', '\r?\n'), 'g'); +const kKeyDelimiter = /:\r?\n/g; + +function getSnapshotPath() { + if (process.mainModule) { + const { dir, name } = path.parse(process.mainModule.filename); + return path.join(dir, `${name}.snapshot`); + } + if (!process.argv[1]) { + throw new ERR_ASSERT_SNAPSHOT_NOT_SUPPORTED(); + } + const { dir, name } = path.parse(process.argv[1]); + return path.join(dir, `${name}.snapshot`); +} + +function getSource() { + return createReadStream(getSnapshotPath(), { encoding: 'utf8' }); +} + +let _target; +function getTarget() { + _target ??= createWriteStream(getSnapshotPath(), { encoding: 'utf8' }); + return _target; +} + +function serializeName(name) { + validateString(name, 'name'); + return StringPrototypeReplace(`${name}`, kKeyDelimiter, '_'); +} + +let writtenNames; +let snapshotValue; +let counter = 0; + +async function writeSnapshot({ name, value }) { + const target = getTarget(); + if (counter > 1) { + target.write(kDefaultDelimiter); + } + writtenNames = writtenNames || new SafeSet(); + if (writtenNames.has(name)) { + throw new AssertionError({ message: `Snapshot "${name}" already used` }); + } + writtenNames.add(name); + const drained = target.write(`${name}:\n${value}`); + await drained || once(target, 'drain'); +} + +async function getSnapshot() { + if (snapshotValue !== undefined) { + return snapshotValue; + } + if (kUpdateSnapshot) { + snapshotValue = kInitialSnapshot; + return kInitialSnapshot; + } + try { + const source = getSource(); + let data = ''; + for await (const line of source) { + data += line; + } + snapshotValue = new SafeMap( + ArrayPrototypeMap( + StringPrototypeSplit(data, kDefaultDelimiterRegex), + (item) => { + const arr = StringPrototypeSplit(item, kKeyDelimiter); + return [ + arr[0], + ArrayPrototypeJoin(ArrayPrototypeSlice(arr, 1), ':\n'), + ]; + } + )); + } catch (e) { + if (e.code === 'ENOENT') { + snapshotValue = kInitialSnapshot; + } else { + throw e; + } + } + return snapshotValue; +} + + +async function snapshot(input, name) { + const snapshot = await getSnapshot(); + counter = counter + 1; + name = serializeName(name); + + const value = inspect(input); + if (snapshot === kInitialSnapshot) { + await writeSnapshot({ name, value }); + } else if (snapshot.has(name)) { + const expected = snapshot.get(name); + // eslint-disable-next-line no-restricted-syntax + assert.strictEqual(value, expected); + } else { + throw new AssertionError({ message: `Snapshot "${name}" does not exist`, actual: inspect(snapshot) }); + } +} + +module.exports = snapshot; diff --git a/lib/internal/bootstrap/browser.js b/lib/internal/bootstrap/browser.js index 4df2fa0a495749b..d0c01ca2a512be5 100644 --- a/lib/internal/bootstrap/browser.js +++ b/lib/internal/bootstrap/browser.js @@ -73,8 +73,10 @@ defineOperation(globalThis, 'btoa', buffer.btoa); exposeInterface(globalThis, 'Blob', buffer.Blob); // https://www.w3.org/TR/hr-time-2/#the-performance-attribute +const perf_hooks = require('perf_hooks'); +exposeInterface(globalThis, 'Performance', perf_hooks.Performance); defineReplacableAttribute(globalThis, 'performance', - require('perf_hooks').performance); + perf_hooks.performance); function createGlobalConsole() { const consoleFromNode = diff --git a/lib/internal/child_process.js b/lib/internal/child_process.js index 9ad7bf8fd8593ca..f2fe406a4a27d93 100644 --- a/lib/internal/child_process.js +++ b/lib/internal/child_process.js @@ -59,6 +59,8 @@ const { convertToValidSignal, deprecate } = require('internal/util'); const { isArrayBufferView } = require('internal/util/types'); const spawn_sync = internalBinding('spawn_sync'); const { kStateSymbol } = require('internal/dgram'); +const dc = require('diagnostics_channel'); +const childProcessChannel = dc.channel('child_process'); const { UV_EACCES, @@ -301,6 +303,11 @@ function ChildProcess() { maybeClose(this); }; + if (childProcessChannel.hasSubscribers) { + childProcessChannel.publish({ + process: this, + }); + } } ObjectSetPrototypeOf(ChildProcess.prototype, EventEmitter.prototype); ObjectSetPrototypeOf(ChildProcess, EventEmitter); diff --git a/lib/internal/cluster/round_robin_handle.js b/lib/internal/cluster/round_robin_handle.js index a881ca10bcb9dea..29a87e716e8f212 100644 --- a/lib/internal/cluster/round_robin_handle.js +++ b/lib/internal/cluster/round_robin_handle.js @@ -98,6 +98,10 @@ RoundRobinHandle.prototype.remove = function(worker) { }; RoundRobinHandle.prototype.distribute = function(err, handle) { + // If `accept` fails just skip it (handle is undefined) + if (err) { + return; + } append(this.handles, handle); // eslint-disable-next-line node-core/no-array-destructuring const [ workerEntry ] = this.free; // this.free is a SafeMap diff --git a/lib/internal/crypto/aes.js b/lib/internal/crypto/aes.js index 324662e1f8b1b43..79ca61c5ff20970 100644 --- a/lib/internal/crypto/aes.js +++ b/lib/internal/crypto/aes.js @@ -7,7 +7,6 @@ const { ArrayPrototypeIncludes, ArrayPrototypePush, MathFloor, - Promise, SafeSet, TypedArrayPrototypeSlice, } = primordials; @@ -46,6 +45,7 @@ const { const { lazyDOMException, + promisify, } = require('internal/util'); const { PromiseReject } = primordials; @@ -57,16 +57,12 @@ const { } = require('internal/crypto/keys'); const { - generateKey, + generateKey: _generateKey, } = require('internal/crypto/keygen'); -const { - validateInteger, - validateOneOf, -} = require('internal/validators'); - const kMaxCounterLength = 128; const kTagLengths = [32, 64, 96, 104, 112, 120, 128]; +const generateKey = promisify(_generateKey); function getAlgorithmName(name, length) { switch (name) { @@ -227,8 +223,11 @@ function aesCipher(mode, key, data, algorithm) { async function aesGenerateKey(algorithm, extractable, keyUsages) { const { name, length } = algorithm; - validateInteger(length, 'algorithm.length'); - validateOneOf(length, 'algorithm.length', kAesKeyLengths); + if (!ArrayPrototypeIncludes(kAesKeyLengths, length)) { + throw lazyDOMException( + 'AES key length must be 128, 192, or 256 bits', + 'OperationError'); + } const checkUsages = ['wrapKey', 'unwrapKey']; if (name !== 'AES-KW') @@ -241,22 +240,19 @@ async function aesGenerateKey(algorithm, extractable, keyUsages) { 'SyntaxError'); } - return new Promise((resolve, reject) => { - generateKey('aes', { length }, (err, key) => { - if (err) { - return reject(lazyDOMException( - 'The operation failed for an operation-specific reason ' + - `[${err.message}]`, - 'OperationError')); - } - - resolve(new InternalCryptoKey( - key, - { name, length }, - ArrayFrom(usagesSet), - extractable)); - }); + const key = await generateKey('aes', { length }).catch((err) => { + // TODO(@panva): add err as cause to DOMException + throw lazyDOMException( + 'The operation failed for an operation-specific reason' + + `[${err.message}]`, + 'OperationError'); }); + + return new InternalCryptoKey( + key, + { name, length }, + ArrayFrom(usagesSet), + extractable); } async function aesImportKey( diff --git a/lib/internal/crypto/cfrg.js b/lib/internal/crypto/cfrg.js index ba39bc117b89ff4..17358c7ccca23d0 100644 --- a/lib/internal/crypto/cfrg.js +++ b/lib/internal/crypto/cfrg.js @@ -1,7 +1,6 @@ 'use strict'; const { - Promise, SafeSet, } = primordials; @@ -31,10 +30,11 @@ const { const { emitExperimentalWarning, lazyDOMException, + promisify, } = require('internal/util'); const { - generateKeyPair, + generateKeyPair: _generateKeyPair, } = require('internal/crypto/keygen'); const { @@ -45,6 +45,8 @@ const { createPublicKey, } = require('internal/crypto/keys'); +const generateKeyPair = promisify(_generateKeyPair); + function verifyAcceptableCfrgKeyUse(name, type, usages) { let checkSet; switch (name) { @@ -131,65 +133,63 @@ async function cfrgGenerateKey(algorithm, extractable, keyUsages) { } break; } - return new Promise((resolve, reject) => { - let genKeyType; - switch (name) { - case 'Ed25519': - genKeyType = 'ed25519'; - break; - case 'Ed448': - genKeyType = 'ed448'; - break; - case 'X25519': - genKeyType = 'x25519'; - break; - case 'X448': - genKeyType = 'x448'; - break; - } - generateKeyPair(genKeyType, undefined, (err, pubKey, privKey) => { - if (err) { - return reject(lazyDOMException( - 'The operation failed for an operation-specific reason', - 'OperationError')); - } + let genKeyType; + switch (name) { + case 'Ed25519': + genKeyType = 'ed25519'; + break; + case 'Ed448': + genKeyType = 'ed448'; + break; + case 'X25519': + genKeyType = 'x25519'; + break; + case 'X448': + genKeyType = 'x448'; + break; + } - const algorithm = { name }; + const keyPair = await generateKeyPair(genKeyType).catch((err) => { + // TODO(@panva): add err as cause to DOMException + throw lazyDOMException( + 'The operation failed for an operation-specific reason', + 'OperationError'); + }); - let publicUsages; - let privateUsages; - switch (name) { - case 'Ed25519': - // Fall through - case 'Ed448': - publicUsages = getUsagesUnion(usageSet, 'verify'); - privateUsages = getUsagesUnion(usageSet, 'sign'); - break; - case 'X25519': - // Fall through - case 'X448': - publicUsages = []; - privateUsages = getUsagesUnion(usageSet, 'deriveKey', 'deriveBits'); - break; - } + let publicUsages; + let privateUsages; + switch (name) { + case 'Ed25519': + // Fall through + case 'Ed448': + publicUsages = getUsagesUnion(usageSet, 'verify'); + privateUsages = getUsagesUnion(usageSet, 'sign'); + break; + case 'X25519': + // Fall through + case 'X448': + publicUsages = []; + privateUsages = getUsagesUnion(usageSet, 'deriveKey', 'deriveBits'); + break; + } - const publicKey = - new InternalCryptoKey( - pubKey, - algorithm, - publicUsages, - true); - - const privateKey = - new InternalCryptoKey( - privKey, - algorithm, - privateUsages, - extractable); - - resolve({ publicKey, privateKey }); - }); - }); + const keyAlgorithm = { name }; + + const publicKey = + new InternalCryptoKey( + keyPair.publicKey, + keyAlgorithm, + publicUsages, + true); + + const privateKey = + new InternalCryptoKey( + keyPair.privateKey, + keyAlgorithm, + privateUsages, + extractable); + + return { privateKey, publicKey }; } function cfrgExportKey(key, format) { diff --git a/lib/internal/crypto/ec.js b/lib/internal/crypto/ec.js index 809f531069bf8b0..ed7484dbbb596e7 100644 --- a/lib/internal/crypto/ec.js +++ b/lib/internal/crypto/ec.js @@ -1,8 +1,8 @@ 'use strict'; const { + ArrayPrototypeIncludes, ObjectKeys, - Promise, SafeSet, } = primordials; @@ -17,11 +17,6 @@ const { kSigEncP1363, } = internalBinding('crypto'); -const { - validateOneOf, - validateString, -} = require('internal/validators'); - const { codes: { ERR_MISSING_OPTION, @@ -42,10 +37,11 @@ const { const { lazyDOMException, + promisify, } = require('internal/util'); const { - generateKeyPair, + generateKeyPair: _generateKeyPair, } = require('internal/crypto/keygen'); const { @@ -56,6 +52,8 @@ const { createPublicKey, } = require('internal/crypto/keys'); +const generateKeyPair = promisify(_generateKeyPair); + function verifyAcceptableEcKeyUse(name, type, usages) { let checkSet; switch (name) { @@ -88,11 +86,12 @@ function createECPublicKeyRaw(namedCurve, keyData) { async function ecGenerateKey(algorithm, extractable, keyUsages) { const { name, namedCurve } = algorithm; - validateString(namedCurve, 'algorithm.namedCurve'); - validateOneOf( - namedCurve, - 'algorithm.namedCurve', - ObjectKeys(kNamedCurveAliases)); + + if (!ArrayPrototypeIncludes(ObjectKeys(kNamedCurveAliases), namedCurve)) { + throw lazyDOMException( + 'Unrecognized namedCurve', + 'NotSupportedError'); + } const usageSet = new SafeSet(keyUsages); switch (name) { @@ -111,46 +110,44 @@ async function ecGenerateKey(algorithm, extractable, keyUsages) { } // Fall through } - return new Promise((resolve, reject) => { - generateKeyPair('ec', { namedCurve }, (err, pubKey, privKey) => { - if (err) { - return reject(lazyDOMException( - 'The operation failed for an operation-specific reason', - 'OperationError')); - } - const algorithm = { name, namedCurve }; + const keypair = await generateKeyPair('ec', { namedCurve }).catch((err) => { + // TODO(@panva): add err as cause to DOMException + throw lazyDOMException( + 'The operation failed for an operation-specific reason', + 'OperationError'); + }); - let publicUsages; - let privateUsages; - switch (name) { - case 'ECDSA': - publicUsages = getUsagesUnion(usageSet, 'verify'); - privateUsages = getUsagesUnion(usageSet, 'sign'); - break; - case 'ECDH': - publicUsages = []; - privateUsages = getUsagesUnion(usageSet, 'deriveKey', 'deriveBits'); - break; - } + let publicUsages; + let privateUsages; + switch (name) { + case 'ECDSA': + publicUsages = getUsagesUnion(usageSet, 'verify'); + privateUsages = getUsagesUnion(usageSet, 'sign'); + break; + case 'ECDH': + publicUsages = []; + privateUsages = getUsagesUnion(usageSet, 'deriveKey', 'deriveBits'); + break; + } - const publicKey = - new InternalCryptoKey( - pubKey, - algorithm, - publicUsages, - true); - - const privateKey = - new InternalCryptoKey( - privKey, - algorithm, - privateUsages, - extractable); - - resolve({ publicKey, privateKey }); - }); - }); + const keyAlgorithm = { name, namedCurve }; + + const publicKey = + new InternalCryptoKey( + keypair.publicKey, + keyAlgorithm, + publicUsages, + true); + + const privateKey = + new InternalCryptoKey( + keypair.privateKey, + keyAlgorithm, + privateUsages, + extractable); + + return { publicKey, privateKey }; } function ecExportKey(key, format) { @@ -168,11 +165,13 @@ async function ecImportKey( keyUsages) { const { name, namedCurve } = algorithm; - validateString(namedCurve, 'algorithm.namedCurve'); - validateOneOf( - namedCurve, - 'algorithm.namedCurve', - ObjectKeys(kNamedCurveAliases)); + + if (!ArrayPrototypeIncludes(ObjectKeys(kNamedCurveAliases), namedCurve)) { + throw lazyDOMException( + 'Unrecognized namedCurve', + 'NotSupportedError'); + } + let keyObject; const usagesSet = new SafeSet(keyUsages); switch (format) { diff --git a/lib/internal/crypto/hkdf.js b/lib/internal/crypto/hkdf.js index 724217c08eb2f4b..eeb49171f355994 100644 --- a/lib/internal/crypto/hkdf.js +++ b/lib/internal/crypto/hkdf.js @@ -3,7 +3,6 @@ const { FunctionPrototypeCall, Promise, - Uint8Array, } = primordials; const { @@ -80,9 +79,8 @@ function prepareKey(key) { if (isKeyObject(key)) return key; - // TODO(@jasnell): createSecretKey should allow using an ArrayBuffer if (isAnyArrayBuffer(key)) - return createSecretKey(new Uint8Array(key)); + return createSecretKey(key); key = toBuf(key); @@ -142,7 +140,6 @@ function hkdfSync(hash, key, salt, info, length) { } async function hkdfDeriveBits(algorithm, baseKey, length) { - validateUint32(length, 'length'); const { hash } = algorithm; const salt = getArrayBufferOrView(algorithm.salt, 'algorithm.salt'); const info = getArrayBufferOrView(algorithm.info, 'algorithm.info'); @@ -153,6 +150,9 @@ async function hkdfDeriveBits(algorithm, baseKey, length) { if (length !== undefined) { if (length === 0) throw lazyDOMException('length cannot be zero', 'OperationError'); + if (length === null) + throw lazyDOMException('length cannot be null', 'OperationError'); + validateUint32(length, 'length'); if (length % 8) { throw lazyDOMException( 'length must be a multiple of 8', diff --git a/lib/internal/crypto/keygen.js b/lib/internal/crypto/keygen.js index 8f8fbfb1c0893da..05b1150a203b75f 100644 --- a/lib/internal/crypto/keygen.js +++ b/lib/internal/crypto/keygen.js @@ -31,7 +31,6 @@ const { SecretKeyObject, parsePublicKeyEncoding, parsePrivateKeyEncoding, - isJwk } = require('internal/crypto/keys'); const { @@ -66,6 +65,10 @@ const { isArrayBufferView } = require('internal/util/types'); const { getOptionValue } = require('internal/options'); +function isJwk(obj) { + return obj != null && obj.kty !== undefined; +} + function wrapKey(key, ctor) { if (typeof key === 'string' || isArrayBufferView(key) || diff --git a/lib/internal/crypto/keys.js b/lib/internal/crypto/keys.js index 881cf00f051fcdc..4303dc44fe60d7b 100644 --- a/lib/internal/crypto/keys.js +++ b/lib/internal/crypto/keys.js @@ -38,7 +38,6 @@ const { ERR_ILLEGAL_CONSTRUCTOR, ERR_INVALID_ARG_TYPE, ERR_INVALID_ARG_VALUE, - ERR_OUT_OF_RANGE, } } = require('internal/errors'); @@ -526,14 +525,18 @@ function prepareAsymmetricKey(key, ctx) { return { format: kKeyFormatPEM, data: getArrayBufferOrView(key, 'key') }; } else if (typeof key === 'object') { const { key: data, encoding, format } = key; + // The 'key' property can be a KeyObject as well to allow specifying // additional options such as padding along with the key. if (isKeyObject(data)) return { data: getKeyObjectHandle(data, ctx) }; else if (isCryptoKey(data)) return { data: getKeyObjectHandle(data[kKeyObject], ctx) }; - else if (isJwk(data) && format === 'jwk') + else if (format === 'jwk') { + validateObject(data, 'key.key'); return { data: getKeyObjectHandleFromJwk(data, ctx), format: 'jwk' }; + } + // Either PEM or DER using PKCS#1 or SPKI. if (!isStringOrBuffer(data)) { throw new ERR_INVALID_ARG_TYPE( @@ -588,8 +591,6 @@ function prepareSecretKey(key, encoding, bufferOnly = false) { function createSecretKey(key, encoding) { key = prepareSecretKey(key, encoding, true); - if (key.byteLength === 0) - throw new ERR_OUT_OF_RANGE('key.byteLength', '> 0', key.byteLength); const handle = new KeyObjectHandle(); handle.init(kKeyTypeSecret, key); return new SecretKeyObject(handle); @@ -723,10 +724,6 @@ function isCryptoKey(obj) { return obj != null && obj[kKeyObject] !== undefined; } -function isJwk(obj) { - return obj != null && obj.kty !== undefined; -} - module.exports = { // Public API. createSecretKey, @@ -748,5 +745,4 @@ module.exports = { PrivateKeyObject, isKeyObject, isCryptoKey, - isJwk, }; diff --git a/lib/internal/crypto/mac.js b/lib/internal/crypto/mac.js index 3054f66b27d4f26..15b3378e2eda640 100644 --- a/lib/internal/crypto/mac.js +++ b/lib/internal/crypto/mac.js @@ -2,7 +2,6 @@ const { ArrayFrom, - Promise, SafeSet, } = primordials; @@ -27,6 +26,7 @@ const { const { lazyDOMException, + promisify, } = require('internal/util'); const { @@ -36,7 +36,7 @@ const { } = require('internal/errors'); const { - generateKey, + generateKey: _generateKey, } = require('internal/crypto/keygen'); const { @@ -45,6 +45,8 @@ const { createSecretKey, } = require('internal/crypto/keys'); +const generateKey = promisify(_generateKey); + async function hmacGenerateKey(algorithm, extractable, keyUsages) { const { hash, name } = algorithm; let { length } = algorithm; @@ -62,21 +64,19 @@ async function hmacGenerateKey(algorithm, extractable, keyUsages) { 'Unsupported key usage for an HMAC key', 'SyntaxError'); } - return new Promise((resolve, reject) => { - generateKey('hmac', { length }, (err, key) => { - if (err) { - return reject(lazyDOMException( - 'The operation failed for an operation-specific reason', - 'OperationError')); - } - resolve(new InternalCryptoKey( - key, - { name, length, hash: { name: hash.name } }, - ArrayFrom(usageSet), - extractable)); - }); + const key = await generateKey('hmac', { length }).catch((err) => { + // TODO(@panva): add err as cause to DOMException + throw lazyDOMException( + 'The operation failed for an operation-specific reason', + 'OperationError'); }); + + return new InternalCryptoKey( + key, + { name, length, hash: { name: hash.name } }, + ArrayFrom(usageSet), + extractable); } async function hmacImportKey( diff --git a/lib/internal/crypto/pbkdf2.js b/lib/internal/crypto/pbkdf2.js index b3a6303136f5061..986ea557d63bf32 100644 --- a/lib/internal/crypto/pbkdf2.js +++ b/lib/internal/crypto/pbkdf2.js @@ -98,13 +98,16 @@ function check(password, salt, iterations, keylen, digest) { } async function pbkdf2DeriveBits(algorithm, baseKey, length) { - validateUint32(length, 'length'); const { iterations } = algorithm; let { hash } = algorithm; const salt = getArrayBufferOrView(algorithm.salt, 'algorithm.salt'); if (hash === undefined) throw new ERR_MISSING_OPTION('algorithm.hash'); - validateInteger(iterations, 'algorithm.iterations', 1); + validateInteger(iterations, 'algorithm.iterations'); + if (iterations === 0) + throw lazyDOMException( + 'iterations cannot be zero', + 'OperationError'); hash = normalizeHashName(hash.name); @@ -114,6 +117,9 @@ async function pbkdf2DeriveBits(algorithm, baseKey, length) { if (length !== undefined) { if (length === 0) throw lazyDOMException('length cannot be zero', 'OperationError'); + if (length === null) + throw lazyDOMException('length cannot be null', 'OperationError'); + validateUint32(length, 'length'); if (length % 8) { throw lazyDOMException( 'length must be a multiple of 8', diff --git a/lib/internal/crypto/rsa.js b/lib/internal/crypto/rsa.js index 728e4bd951cdc5c..fa6928e4d78f06a 100644 --- a/lib/internal/crypto/rsa.js +++ b/lib/internal/crypto/rsa.js @@ -1,7 +1,6 @@ 'use strict'; const { - Promise, SafeSet, Uint8Array, } = primordials; @@ -49,6 +48,7 @@ const { const { lazyDOMException, + promisify, } = require('internal/util'); const { @@ -64,7 +64,7 @@ const { } = require('internal/crypto/keys'); const { - generateKeyPair, + generateKeyPair: _generateKeyPair, } = require('internal/crypto/keygen'); const kRsaVariants = { @@ -72,6 +72,7 @@ const kRsaVariants = { 'RSA-PSS': kKeyVariantRSA_PSS, 'RSA-OAEP': kKeyVariantRSA_OAEP, }; +const generateKeyPair = promisify(_generateKeyPair); function verifyAcceptableRsaKeyUse(name, type, usages) { let checkSet; @@ -173,56 +174,53 @@ async function rsaKeyGenerate( } } - return new Promise((resolve, reject) => { - generateKeyPair('rsa', { - modulusLength, - publicExponent: publicExponentConverted, - }, (err, pubKey, privKey) => { - if (err) { - return reject(lazyDOMException( - 'The operation failed for an operation-specific reason', - 'OperationError')); - } + const keypair = await generateKeyPair('rsa', { + modulusLength, + publicExponent: publicExponentConverted, + }).catch((err) => { + // TODO(@panva): add err as cause to DOMException + throw lazyDOMException( + 'The operation failed for an operation-specific reason', + 'OperationError'); + }); - const algorithm = { - name, - modulusLength, - publicExponent, - hash: { name: hash.name } - }; - - let publicUsages; - let privateUsages; - switch (name) { - case 'RSA-OAEP': { - publicUsages = getUsagesUnion(usageSet, 'encrypt', 'wrapKey'); - privateUsages = getUsagesUnion(usageSet, 'decrypt', 'unwrapKey'); - break; - } - default: { - publicUsages = getUsagesUnion(usageSet, 'verify'); - privateUsages = getUsagesUnion(usageSet, 'sign'); - break; - } - } + const keyAlgorithm = { + name, + modulusLength, + publicExponent, + hash: { name: hash.name } + }; - const publicKey = - new InternalCryptoKey( - pubKey, - algorithm, - publicUsages, - true); - - const privateKey = - new InternalCryptoKey( - privKey, - algorithm, - privateUsages, - extractable); - - resolve({ publicKey, privateKey }); - }); - }); + let publicUsages; + let privateUsages; + switch (name) { + case 'RSA-OAEP': { + publicUsages = getUsagesUnion(usageSet, 'encrypt', 'wrapKey'); + privateUsages = getUsagesUnion(usageSet, 'decrypt', 'unwrapKey'); + break; + } + default: { + publicUsages = getUsagesUnion(usageSet, 'verify'); + privateUsages = getUsagesUnion(usageSet, 'sign'); + break; + } + } + + const publicKey = + new InternalCryptoKey( + keypair.publicKey, + keyAlgorithm, + publicUsages, + true); + + const privateKey = + new InternalCryptoKey( + keypair.privateKey, + keyAlgorithm, + privateUsages, + extractable); + + return { publicKey, privateKey }; } function rsaExportKey(key, format) { diff --git a/lib/internal/crypto/util.js b/lib/internal/crypto/util.js index 40a677606bf3f0d..dbd816cff99e9fa 100644 --- a/lib/internal/crypto/util.js +++ b/lib/internal/crypto/util.js @@ -278,7 +278,12 @@ const validateByteSource = hideStackFrames((val, name) => { }); function onDone(resolve, reject, err, result) { - if (err) return reject(err); + if (err) { + // TODO(@panva): add err as cause to DOMException + return reject(lazyDOMException( + 'The operation failed for an operation-specific reason', + 'OperationError')); + } resolve(result); } diff --git a/lib/internal/crypto/webcrypto.js b/lib/internal/crypto/webcrypto.js index b7760efaa234c88..df4bb072043def0 100644 --- a/lib/internal/crypto/webcrypto.js +++ b/lib/internal/crypto/webcrypto.js @@ -494,9 +494,6 @@ async function importGenericSecretKey( const checkLength = keyData.byteLength * 8; - if (checkLength === 0 || length === 0) - throw lazyDOMException('Zero-length key is not supported', 'DataError'); - // The Web Crypto spec allows for key lengths that are not multiples of // 8. We don't. Our check here is stricter than that defined by the spec // in that we require that algorithm.length match keyData.length * 8 if diff --git a/lib/internal/debugger/inspect.js b/lib/internal/debugger/inspect.js index 42b5c64ab870296..e006f513f9b93fa 100644 --- a/lib/internal/debugger/inspect.js +++ b/lib/internal/debugger/inspect.js @@ -45,7 +45,7 @@ const debuglog = util.debuglog('inspect'); const { ERR_DEBUGGER_STARTUP_ERROR } = require('internal/errors').codes; -async function portIsFree(host, port, timeout = 9999) { +async function portIsFree(host, port, timeout = 3000) { if (port === 0) return; // Binding to a random port. const retryDelay = 150; @@ -64,7 +64,10 @@ async function portIsFree(host, port, timeout = 9999) { const error = await new Promise((resolve) => { const socket = net.connect(port, host); socket.on('error', resolve); - socket.on('connect', resolve); + socket.on('connect', () => { + socket.end(); + resolve(); + }); }); if (error?.code === 'ECONNREFUSED') { return; diff --git a/lib/internal/debugger/inspect_repl.js b/lib/internal/debugger/inspect_repl.js index 1d1cd6ef276bbb7..965aa64b0fbcc64 100644 --- a/lib/internal/debugger/inspect_repl.js +++ b/lib/internal/debugger/inspect_repl.js @@ -23,7 +23,6 @@ const { ObjectKeys, ObjectValues, Promise, - PromisePrototypeCatch, PromisePrototypeThen, PromiseResolve, ReflectGetOwnPropertyDescriptor, @@ -653,8 +652,8 @@ function createRepl(inspector) { } const inspectValue = (expr) => - PromisePrototypeCatch(evalInCurrentContext(expr), - (error) => `<${error.message}>`); + PromisePrototypeThen(evalInCurrentContext(expr), undefined, + (error) => `<${error.message}>`); const lastIndex = watchedExpressions.length - 1; const values = await SafePromiseAll(watchedExpressions, inspectValue); diff --git a/lib/internal/errors.js b/lib/internal/errors.js index df079d2952b47e0..de861b813a4fe90 100644 --- a/lib/internal/errors.js +++ b/lib/internal/errors.js @@ -191,6 +191,12 @@ function lazyBuffer() { } function isErrorStackTraceLimitWritable() { + // Do no touch Error.stackTraceLimit as V8 would attempt to install + // it again during deserialization. + if (require('v8').startupSnapshot.isBuildingSnapshot()) { + return false; + } + const desc = ObjectGetOwnPropertyDescriptor(Error, 'stackTraceLimit'); if (desc === undefined) { return ObjectIsExtensible(Error); @@ -392,8 +398,9 @@ function makeNodeErrorWithCode(Base, key) { /** * This function removes unnecessary frames from Node.js core errors. - * @template {(...args: any[]) => any} T - * @type {(fn: T) => T} + * @template {(...args: unknown[]) => unknown} T + * @param {T} fn + * @returns {T} */ function hideStackFrames(fn) { // We rename the functions that will be hidden to cut off the stacktrace @@ -936,6 +943,8 @@ module.exports = { E('ERR_AMBIGUOUS_ARGUMENT', 'The "%s" argument is ambiguous. %s', TypeError); E('ERR_ARG_NOT_ITERABLE', '%s must be iterable', TypeError); E('ERR_ASSERTION', '%s', Error); +E('ERR_ASSERT_SNAPSHOT_NOT_SUPPORTED', + 'Snapshot is not supported in this context ', TypeError); E('ERR_ASYNC_CALLBACK', '%s must be a function', TypeError); E('ERR_ASYNC_TYPE', 'Invalid name for async "type": %s', TypeError); E('ERR_BROTLI_INVALID_PARAM', '%s is not a valid Brotli parameter', RangeError); @@ -1335,7 +1344,7 @@ E('ERR_INVALID_RETURN_PROPERTY', (input, name, prop, value) => { }, TypeError); E('ERR_INVALID_RETURN_PROPERTY_VALUE', (input, name, prop, value) => { let type; - if (value && value.constructor && value.constructor.name) { + if (value?.constructor?.name) { type = `instance of ${value.constructor.name}`; } else { type = `type ${typeof value}`; diff --git a/lib/internal/event_target.js b/lib/internal/event_target.js index 5388b5c8139a10d..2be1b9cf0b9f399 100644 --- a/lib/internal/event_target.js +++ b/lib/internal/event_target.js @@ -11,6 +11,8 @@ const { ObjectDefineProperty, ObjectGetOwnPropertyDescriptor, ObjectGetOwnPropertyDescriptors, + ObjectSetPrototypeOf, + ObjectValues, ReflectApply, SafeArrayIterator, SafeFinalizationRegistry, @@ -1062,6 +1064,12 @@ const EventEmitterMixin = (Superclass) => { } const protoProps = ObjectGetOwnPropertyDescriptors(EventEmitter.prototype); delete protoProps.constructor; + const propertiesValues = ObjectValues(protoProps); + for (let i = 0; i < propertiesValues.length; i++) { + // We want to use null-prototype objects to not rely on globally mutable + // %Object.prototype%. + ObjectSetPrototypeOf(propertiesValues[i], null); + } ObjectDefineProperties(MixedEventEmitter.prototype, protoProps); return MixedEventEmitter; }; diff --git a/lib/internal/fs/cp/cp.js b/lib/internal/fs/cp/cp.js index bcbc8aa3279a50a..e0b7a74b1c799a8 100644 --- a/lib/internal/fs/cp/cp.js +++ b/lib/internal/fs/cp/cp.js @@ -6,11 +6,9 @@ const { ArrayPrototypeEvery, ArrayPrototypeFilter, Boolean, - PromiseAll, - PromisePrototypeCatch, PromisePrototypeThen, PromiseReject, - SafeArrayIterator, + SafePromiseAll, StringPrototypeSplit, } = primordials; const { @@ -128,13 +126,13 @@ function getStats(src, dest, opts) { const statFunc = opts.dereference ? (file) => stat(file, { bigint: true }) : (file) => lstat(file, { bigint: true }); - return PromiseAll(new SafeArrayIterator([ + return SafePromiseAll([ statFunc(src), - PromisePrototypeCatch(statFunc(dest), (err) => { + PromisePrototypeThen(statFunc(dest), undefined, (err) => { if (err.code === 'ENOENT') return null; throw err; }), - ])); + ]); } async function checkParentDir(destStat, src, dest, opts) { diff --git a/lib/internal/http2/compat.js b/lib/internal/http2/compat.js index 0bda29233d5bca7..727192e23fade28 100644 --- a/lib/internal/http2/compat.js +++ b/lib/internal/http2/compat.js @@ -32,6 +32,7 @@ const { HTTP2_HEADER_STATUS, HTTP_STATUS_CONTINUE, + HTTP_STATUS_EARLY_HINTS, HTTP_STATUS_EXPECTATION_FAILED, HTTP_STATUS_METHOD_NOT_ALLOWED, HTTP_STATUS_OK @@ -55,6 +56,7 @@ const { const { validateFunction, validateString, + validateLinkHeaderValue, } = require('internal/validators'); const { kSocket, @@ -844,6 +846,49 @@ class Http2ServerResponse extends Stream { }); return true; } + + writeEarlyHints(links) { + let linkHeaderValue = ''; + + if (typeof links === 'string') { + validateLinkHeaderValue(links, 'links'); + linkHeaderValue += links; + } else if (ArrayIsArray(links)) { + if (!links.length) { + return; + } + + linkHeaderValue += ''; + + for (let i = 0; i < links.length; i++) { + const link = links[i]; + validateLinkHeaderValue(link, 'links'); + linkHeaderValue += link; + + if (i !== links.length - 1) { + linkHeaderValue += ', '; + } + } + } else { + throw new ERR_INVALID_ARG_VALUE( + 'links', + links, + 'must be an array or string of format "; rel=preload; as=style"' + ); + } + + const stream = this[kStream]; + + if (stream.headersSent || this[kState].closed) + return false; + + stream.additionalHeaders({ + [HTTP2_HEADER_STATUS]: HTTP_STATUS_EARLY_HINTS, + 'Link': linkHeaderValue + }); + + return true; + } } function onServerStream(ServerRequest, ServerResponse, diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js index c6915e903e9d014..456ea27cfebf799 100644 --- a/lib/internal/http2/core.js +++ b/lib/internal/http2/core.js @@ -3055,7 +3055,7 @@ function connectionListener(socket) { // going on in a format that they *might* understand. socket.end('HTTP/1.0 403 Forbidden\r\n' + 'Content-Type: text/plain\r\n\r\n' + - 'Unknown ALPN Protocol, expected `h2` to be available.\n' + + 'Missing ALPN Protocol, expected `h2` to be available.\n' + 'If this is a HTTP request: The server was not ' + 'configured with the `allowHTTP1` option or a ' + 'listener for the `unknownProtocol` event.\n'); diff --git a/lib/internal/main/mksnapshot.js b/lib/internal/main/mksnapshot.js index c4ea3a06cfc3781..4add00e13c1fd23 100644 --- a/lib/internal/main/mksnapshot.js +++ b/lib/internal/main/mksnapshot.js @@ -2,8 +2,11 @@ const { Error, + ObjectDefineProperty, + ObjectGetOwnPropertyDescriptor, + ObjectSetPrototypeOf, + SafeArrayIterator, SafeSet, - SafeArrayIterator } = primordials; const binding = internalBinding('mksnapshot'); @@ -45,7 +48,7 @@ const supportedModules = new SafeSet(new SafeArrayIterator([ 'constants', 'crypto', // 'dgram', - // 'diagnostics_channel', + 'diagnostics_channel', // 'dns', // 'dns/promises', // 'domain', @@ -57,7 +60,7 @@ const supportedModules = new SafeSet(new SafeArrayIterator([ // 'https', // 'inspector', // 'module', - // 'net', + 'net', 'os', 'path', 'path/posix', @@ -125,7 +128,21 @@ function main() { const source = readFileSync(file, 'utf-8'); const serializeMainFunction = compileSerializeMain(filename, source); - require('internal/v8/startup_snapshot').initializeCallbacks(); + const { + initializeCallbacks, + namespace: { + addSerializeCallback, + addDeserializeCallback, + }, + } = require('internal/v8/startup_snapshot'); + initializeCallbacks(); + + let stackTraceLimitDesc; + addDeserializeCallback(() => { + if (stackTraceLimitDesc !== undefined) { + ObjectDefineProperty(Error, 'stackTraceLimit', stackTraceLimitDesc); + } + }); if (getOptionValue('--inspect-brk')) { internalBinding('inspector').callAndPauseOnStart( @@ -134,6 +151,19 @@ function main() { } else { serializeMainFunction(requireForUserSnapshot, filename, dirname); } + + addSerializeCallback(() => { + stackTraceLimitDesc = ObjectGetOwnPropertyDescriptor(Error, 'stackTraceLimit'); + + if (stackTraceLimitDesc !== undefined) { + // We want to use null-prototype objects to not rely on globally mutable + // %Object.prototype%. + ObjectSetPrototypeOf(stackTraceLimitDesc, null); + process._rawDebug('Deleting Error.stackTraceLimit from the snapshot. ' + + 'It will be re-installed after deserialization'); + delete Error.stackTraceLimit; + } + }); } main(); diff --git a/lib/internal/main/test_runner.js b/lib/internal/main/test_runner.js index d28311f3ab5dcd0..744a58271138b93 100644 --- a/lib/internal/main/test_runner.js +++ b/lib/internal/main/test_runner.js @@ -1,147 +1,15 @@ 'use strict'; -const { - ArrayFrom, - ArrayPrototypeFilter, - ArrayPrototypeIncludes, - ArrayPrototypeJoin, - ArrayPrototypePush, - ArrayPrototypeSlice, - ArrayPrototypeSort, - SafePromiseAll, - SafeSet, -} = primordials; const { prepareMainThreadExecution, markBootstrapComplete } = require('internal/process/pre_execution'); -const { spawn } = require('child_process'); -const { readdirSync, statSync } = require('fs'); -const console = require('internal/console/global'); -const { - codes: { - ERR_TEST_FAILURE, - }, -} = require('internal/errors'); -const { test } = require('internal/test_runner/harness'); -const { kSubtestsFailed } = require('internal/test_runner/test'); -const { - isSupportedFileType, - doesPathMatchFilter, -} = require('internal/test_runner/utils'); -const { basename, join, resolve } = require('path'); -const { once } = require('events'); -const kFilterArgs = ['--test']; +const { run } = require('internal/test_runner/runner'); prepareMainThreadExecution(false); markBootstrapComplete(); -// TODO(cjihrig): Replace this with recursive readdir once it lands. -function processPath(path, testFiles, options) { - const stats = statSync(path); - - if (stats.isFile()) { - if (options.userSupplied || - (options.underTestDir && isSupportedFileType(path)) || - doesPathMatchFilter(path)) { - testFiles.add(path); - } - } else if (stats.isDirectory()) { - const name = basename(path); - - if (!options.userSupplied && name === 'node_modules') { - return; - } - - // 'test' directories get special treatment. Recursively add all .js, - // .cjs, and .mjs files in the 'test' directory. - const isTestDir = name === 'test'; - const { underTestDir } = options; - const entries = readdirSync(path); - - if (isTestDir) { - options.underTestDir = true; - } - - options.userSupplied = false; - - for (let i = 0; i < entries.length; i++) { - processPath(join(path, entries[i]), testFiles, options); - } - - options.underTestDir = underTestDir; - } -} - -function createTestFileList() { - const cwd = process.cwd(); - const hasUserSuppliedPaths = process.argv.length > 1; - const testPaths = hasUserSuppliedPaths ? - ArrayPrototypeSlice(process.argv, 1) : [cwd]; - const testFiles = new SafeSet(); - - try { - for (let i = 0; i < testPaths.length; i++) { - const absolutePath = resolve(testPaths[i]); - - processPath(absolutePath, testFiles, { userSupplied: true }); - } - } catch (err) { - if (err?.code === 'ENOENT') { - console.error(`Could not find '${err.path}'`); - process.exit(1); - } - - throw err; - } - - return ArrayPrototypeSort(ArrayFrom(testFiles)); -} - -function filterExecArgv(arg) { - return !ArrayPrototypeIncludes(kFilterArgs, arg); -} - -function runTestFile(path) { - return test(path, async (t) => { - const args = ArrayPrototypeFilter(process.execArgv, filterExecArgv); - ArrayPrototypePush(args, path); - - const child = spawn(process.execPath, args, { signal: t.signal, encoding: 'utf8' }); - // TODO(cjihrig): Implement a TAP parser to read the child's stdout - // instead of just displaying it all if the child fails. - let err; - - child.on('error', (error) => { - err = error; - }); - - const { 0: { 0: code, 1: signal }, 1: stdout, 2: stderr } = await SafePromiseAll([ - once(child, 'exit', { signal: t.signal }), - child.stdout.toArray({ signal: t.signal }), - child.stderr.toArray({ signal: t.signal }), - ]); - - if (code !== 0 || signal !== null) { - if (!err) { - err = new ERR_TEST_FAILURE('test failed', kSubtestsFailed); - err.exitCode = code; - err.signal = signal; - err.stdout = ArrayPrototypeJoin(stdout, ''); - err.stderr = ArrayPrototypeJoin(stderr, ''); - // The stack will not be useful since the failures came from tests - // in a child process. - err.stack = undefined; - } - - throw err; - } - }); -} - -(async function main() { - const testFiles = createTestFileList(); - - for (let i = 0; i < testFiles.length; i++) { - runTestFile(testFiles[i]); - } -})(); +const tapStream = run(); +tapStream.pipe(process.stdout); +tapStream.once('test:fail', () => { + process.exitCode = 1; +}); diff --git a/lib/internal/main/watch_mode.js b/lib/internal/main/watch_mode.js new file mode 100644 index 000000000000000..93aa42a1e7b95a8 --- /dev/null +++ b/lib/internal/main/watch_mode.js @@ -0,0 +1,132 @@ +'use strict'; +const { + ArrayPrototypeFilter, + ArrayPrototypeForEach, + ArrayPrototypeJoin, + ArrayPrototypeMap, + ArrayPrototypePushApply, + ArrayPrototypeSlice, +} = primordials; + +const { + prepareMainThreadExecution, + markBootstrapComplete +} = require('internal/process/pre_execution'); +const { triggerUncaughtException } = internalBinding('errors'); +const { getOptionValue } = require('internal/options'); +const { emitExperimentalWarning } = require('internal/util'); +const { FilesWatcher } = require('internal/watch_mode/files_watcher'); +const { green, blue, red, white, clear } = require('internal/util/colors'); + +const { spawn } = require('child_process'); +const { inspect } = require('util'); +const { setTimeout, clearTimeout } = require('timers'); +const { resolve } = require('path'); +const { once, on } = require('events'); + + +prepareMainThreadExecution(false, false); +markBootstrapComplete(); + +// TODO(MoLow): Make kill signal configurable +const kKillSignal = 'SIGTERM'; +const kShouldFilterModules = getOptionValue('--watch-path').length === 0; +const kWatchedPaths = ArrayPrototypeMap(getOptionValue('--watch-path'), (path) => resolve(path)); +const kCommand = ArrayPrototypeSlice(process.argv, 1); +const kCommandStr = inspect(ArrayPrototypeJoin(kCommand, ' ')); +const args = ArrayPrototypeFilter(process.execArgv, (arg, i, arr) => + arg !== '--watch-path' && arr[i - 1] !== '--watch-path' && arg !== '--watch'); +ArrayPrototypePushApply(args, kCommand); + +const watcher = new FilesWatcher({ throttle: 500, mode: kShouldFilterModules ? 'filter' : 'all' }); +ArrayPrototypeForEach(kWatchedPaths, (p) => watcher.watchPath(p)); + +let graceTimer; +let child; +let exited; + +function start() { + exited = false; + const stdio = kShouldFilterModules ? ['inherit', 'inherit', 'inherit', 'ipc'] : undefined; + child = spawn(process.execPath, args, { stdio, env: { ...process.env, WATCH_REPORT_DEPENDENCIES: '1' } }); + watcher.watchChildProcessModules(child); + child.once('exit', (code) => { + exited = true; + if (code === 0) { + process.stdout.write(`${blue}Completed running ${kCommandStr}${white}\n`); + } else { + process.stdout.write(`${red}Failed running ${kCommandStr}${white}\n`); + } + }); +} + +async function killAndWait(signal = kKillSignal, force = false) { + child?.removeAllListeners(); + if (!child) { + return; + } + if ((child.killed || exited) && !force) { + return; + } + const onExit = once(child, 'exit'); + child.kill(signal); + const { 0: exitCode } = await onExit; + return exitCode; +} + +function reportGracefulTermination() { + // Log if process takes more than 500ms to stop. + let reported = false; + clearTimeout(graceTimer); + graceTimer = setTimeout(() => { + reported = true; + process.stdout.write(`${blue}Waiting for graceful termination...${white}\n`); + }, 500).unref(); + return () => { + clearTimeout(graceTimer); + if (reported) { + process.stdout.write(`${clear}${green}Gracefully restarted ${kCommandStr}${white}\n`); + } + }; +} + +async function stop() { + watcher.clearFileFilters(); + const clearGraceReport = reportGracefulTermination(); + await killAndWait(); + clearGraceReport(); +} + +async function restart() { + process.stdout.write(`${clear}${green}Restarting ${kCommandStr}${white}\n`); + await stop(); + start(); +} + +(async () => { + emitExperimentalWarning('Watch mode'); + + try { + start(); + + // eslint-disable-next-line no-unused-vars + for await (const _ of on(watcher, 'changed')) { + await restart(); + } + } catch (error) { + triggerUncaughtException(error, true /* fromPromise */); + } +})(); + +// Exiting gracefully to avoid stdout/stderr getting written after +// parent process is killed. +// this is fairly safe since user code cannot run in this process +function signalHandler(signal) { + return async () => { + watcher.clear(); + const exitCode = await killAndWait(signal, true); + process.exit(exitCode ?? 0); + }; +} +process.on('SIGTERM', signalHandler('SIGTERM')); +process.on('SIGINT', signalHandler('SIGINT')); diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js index 796c527b011139c..102bf90953b65b9 100644 --- a/lib/internal/modules/cjs/loader.js +++ b/lib/internal/modules/cjs/loader.js @@ -100,6 +100,7 @@ const { const { getOptionValue } = require('internal/options'); const preserveSymlinks = getOptionValue('--preserve-symlinks'); const preserveSymlinksMain = getOptionValue('--preserve-symlinks-main'); +const shouldReportRequiredModules = process.env.WATCH_REPORT_DEPENDENCIES; // Do not eagerly grab .manifest, it may be in TDZ const policy = getOptionValue('--experimental-policy') ? require('internal/process/policy') : @@ -168,6 +169,12 @@ function updateChildren(parent, child, scan) { ArrayPrototypePush(children, child); } +function reportModuleToWatchMode(filename) { + if (shouldReportRequiredModules && process.send) { + process.send({ 'watch:require': filename }); + } +} + const moduleParentCache = new SafeWeakMap(); function Module(id = '', parent) { this.id = id; @@ -776,6 +783,7 @@ Module._load = function(request, parent, isMain) { // cache key names. relResolveCacheIdentifier = `${parent.path}\x00${request}`; const filename = relativeResolveCache[relResolveCacheIdentifier]; + reportModuleToWatchMode(filename); if (filename !== undefined) { const cachedModule = Module._cache[filename]; if (cachedModule !== undefined) { @@ -828,6 +836,8 @@ Module._load = function(request, parent, isMain) { module.id = '.'; } + reportModuleToWatchMode(filename); + Module._cache[filename] = module; if (parent !== undefined) { relativeResolveCache[relResolveCacheIdentifier] = filename; diff --git a/lib/internal/modules/esm/loader.js b/lib/internal/modules/esm/loader.js index 79e9b2446c6bbf1..8f1d3b8bf8ba8f0 100644 --- a/lib/internal/modules/esm/loader.js +++ b/lib/internal/modules/esm/loader.js @@ -13,9 +13,8 @@ const { ObjectCreate, ObjectDefineProperty, ObjectSetPrototypeOf, - PromiseAll, RegExpPrototypeExec, - SafeArrayIterator, + SafePromiseAll, SafeWeakMap, StringPrototypeSlice, StringPrototypeToUpperCase, @@ -475,6 +474,10 @@ class ESMLoader { getOptionValue('--inspect-brk') ); + if (process.env.WATCH_REPORT_DEPENDENCIES && process.send) { + process.send({ 'watch:import': url }); + } + const job = new ModuleJob( this, url, @@ -525,7 +528,7 @@ class ESMLoader { .then(({ module }) => module.getNamespace()); } - const namespaces = await PromiseAll(new SafeArrayIterator(jobs)); + const namespaces = await SafePromiseAll(jobs); if (!wasArr) { return namespaces[0]; } // We can skip the pairing below diff --git a/lib/internal/net.js b/lib/internal/net.js index 8ae3170228dc32d..625377acd57caa8 100644 --- a/lib/internal/net.js +++ b/lib/internal/net.js @@ -29,10 +29,16 @@ const IPv6Reg = new RegExp('^(' + ')(%[0-9a-zA-Z-.:]{1,})?$'); function isIPv4(s) { + // TODO(aduh95): Replace RegExpPrototypeTest with RegExpPrototypeExec when it + // no longer creates a perf regression in the dns benchmark. + // eslint-disable-next-line node-core/avoid-prototype-pollution return RegExpPrototypeTest(IPv4Reg, s); } function isIPv6(s) { + // TODO(aduh95): Replace RegExpPrototypeTest with RegExpPrototypeExec when it + // no longer creates a perf regression in the dns benchmark. + // eslint-disable-next-line node-core/avoid-prototype-pollution return RegExpPrototypeTest(IPv6Reg, s); } diff --git a/lib/internal/perf/observe.js b/lib/internal/perf/observe.js index 656015f84108883..f84bb69bbddae2b 100644 --- a/lib/internal/perf/observe.js +++ b/lib/internal/perf/observe.js @@ -11,6 +11,8 @@ const { ArrayPrototypeSort, ArrayPrototypeConcat, Error, + MathMax, + MathMin, ObjectDefineProperties, ObjectFreeze, ObjectKeys, @@ -95,11 +97,17 @@ const kSupportedEntryTypes = ObjectFreeze([ let markEntryBuffer = []; let measureEntryBuffer = []; let resourceTimingBuffer = []; -const kMaxPerformanceEntryBuffers = 1e6; +let resourceTimingSecondaryBuffer = []; +const kPerformanceEntryBufferWarnSize = 1e6; +// https://www.w3.org/TR/timing-entrytypes-registry/#registry +// Default buffer limit for resource timing entries. +let resourceTimingBufferSizeLimit = 250; +let dispatchBufferFull; +let resourceTimingBufferFullPending = false; + const kClearPerformanceEntryBuffers = ObjectFreeze({ 'mark': 'performance.clearMarks', 'measure': 'performance.clearMeasures', - 'resource': 'performance.clearResourceTimings', }); const kWarnedEntryTypes = new SafeMap(); @@ -332,6 +340,11 @@ class PerformanceObserver { } } +/** + * https://www.w3.org/TR/performance-timeline/#dfn-queue-a-performanceentry + * + * Add the performance entry to the interested performance observer's queue. + */ function enqueue(entry) { if (!isPerformanceEntry(entry)) throw new ERR_INVALID_ARG_TYPE('entry', 'PerformanceEntry', entry); @@ -339,15 +352,18 @@ function enqueue(entry) { for (const obs of kObservers) { obs[kMaybeBuffer](entry); } +} +/** + * Add the user timing entry to the global buffer. + */ +function bufferUserTiming(entry) { const entryType = entry.entryType; let buffer; if (entryType === 'mark') { buffer = markEntryBuffer; } else if (entryType === 'measure') { buffer = measureEntryBuffer; - } else if (entryType === 'resource') { - buffer = resourceTimingBuffer; } else { return; } @@ -355,7 +371,7 @@ function enqueue(entry) { ArrayPrototypePush(buffer, entry); const count = buffer.length; - if (count > kMaxPerformanceEntryBuffers && + if (count > kPerformanceEntryBufferWarnSize && !kWarnedEntryTypes.has(entryType)) { kWarnedEntryTypes.set(entryType, true); // No error code for this since it is a Warning @@ -372,6 +388,59 @@ function enqueue(entry) { } } +/** + * Add the resource timing entry to the global buffer if the buffer size is not + * exceeding the buffer limit, or dispatch a buffer full event on the global + * performance object. + * + * See also https://www.w3.org/TR/resource-timing-2/#dfn-add-a-performanceresourcetiming-entry + */ +function bufferResourceTiming(entry) { + if (resourceTimingBuffer.length < resourceTimingBufferSizeLimit && !resourceTimingBufferFullPending) { + ArrayPrototypePush(resourceTimingBuffer, entry); + return; + } + + if (!resourceTimingBufferFullPending) { + resourceTimingBufferFullPending = true; + setImmediate(() => { + while (resourceTimingSecondaryBuffer.length > 0) { + const excessNumberBefore = resourceTimingSecondaryBuffer.length; + dispatchBufferFull('resourcetimingbufferfull'); + + // Calculate the number of items to be pushed to the global buffer. + const numbersToPreserve = MathMax( + MathMin(resourceTimingBufferSizeLimit - resourceTimingBuffer.length, resourceTimingSecondaryBuffer.length), + 0 + ); + const excessNumberAfter = resourceTimingSecondaryBuffer.length - numbersToPreserve; + for (let idx = 0; idx < numbersToPreserve; idx++) { + ArrayPrototypePush(resourceTimingBuffer, resourceTimingSecondaryBuffer[idx]); + } + + if (excessNumberBefore <= excessNumberAfter) { + resourceTimingSecondaryBuffer = []; + } + } + resourceTimingBufferFullPending = false; + }); + } + + ArrayPrototypePush(resourceTimingSecondaryBuffer, entry); +} + +// https://w3c.github.io/resource-timing/#dom-performance-setresourcetimingbuffersize +function setResourceTimingBufferSize(maxSize) { + // If the maxSize parameter is less than resource timing buffer current + // size, no PerformanceResourceTiming objects are to be removed from the + // performance entry buffer. + resourceTimingBufferSizeLimit = maxSize; +} + +function setDispatchBufferFull(fn) { + dispatchBufferFull = fn; +} + function clearEntriesFromBuffer(type, name) { if (type !== 'mark' && type !== 'measure' && type !== 'resource') { return; @@ -492,4 +561,9 @@ module.exports = { filterBufferMapByNameAndType, startPerf, stopPerf, + + bufferUserTiming, + bufferResourceTiming, + setResourceTimingBufferSize, + setDispatchBufferFull, }; diff --git a/lib/internal/perf/performance.js b/lib/internal/perf/performance.js index 7bf4d9f12acb4b4..610523853f86f5d 100644 --- a/lib/internal/perf/performance.js +++ b/lib/internal/perf/performance.js @@ -15,6 +15,8 @@ const { const { EventTarget, + Event, + kTrustEvent, } = require('internal/event_target'); const { now } = require('internal/perf/utils'); @@ -29,6 +31,8 @@ const { const { clearEntriesFromBuffer, filterBufferMapByNameAndType, + setResourceTimingBufferSize, + setDispatchBufferFull, } = require('internal/perf/observe'); const { eventLoopUtilization } = require('internal/perf/event_loop_utilization'); @@ -190,6 +194,12 @@ ObjectDefineProperties(Performance.prototype, { enumerable: false, value: now, }, + setResourceTimingBufferSize: { + __proto__: null, + configurable: true, + enumerable: false, + value: setResourceTimingBufferSize + }, timerify: { __proto__: null, configurable: true, @@ -223,7 +233,18 @@ function refreshTimeOrigin() { }); } +const performance = new InternalPerformance(); + +function dispatchBufferFull(type) { + const event = new Event(type, { + [kTrustEvent]: true + }); + performance.dispatchEvent(event); +} +setDispatchBufferFull(dispatchBufferFull); + module.exports = { - InternalPerformance, + Performance, + performance, refreshTimeOrigin }; diff --git a/lib/internal/perf/resource_timing.js b/lib/internal/perf/resource_timing.js index 63403bf0ac405a1..33e0d9e5ce936b3 100644 --- a/lib/internal/perf/resource_timing.js +++ b/lib/internal/perf/resource_timing.js @@ -4,7 +4,7 @@ const { InternalPerformanceEntry } = require('internal/perf/performance_entry'); const { SymbolToStringTag } = primordials; const assert = require('internal/assert'); -const { enqueue } = require('internal/perf/observe'); +const { enqueue, bufferResourceTiming } = require('internal/perf/observe'); const { Symbol, ObjectSetPrototypeOf } = primordials; const kCacheMode = Symbol('kCacheMode'); @@ -174,6 +174,7 @@ function markResourceTiming( ObjectSetPrototypeOf(resource, PerformanceResourceTiming.prototype); enqueue(resource); + bufferResourceTiming(resource); return resource; } diff --git a/lib/internal/perf/usertiming.js b/lib/internal/perf/usertiming.js index 51625ee08d54677..c61be708829db1a 100644 --- a/lib/internal/perf/usertiming.js +++ b/lib/internal/perf/usertiming.js @@ -9,7 +9,7 @@ const { const { InternalPerformanceEntry } = require('internal/perf/performance_entry'); const { now } = require('internal/perf/utils'); -const { enqueue } = require('internal/perf/observe'); +const { enqueue, bufferUserTiming } = require('internal/perf/observe'); const nodeTiming = require('internal/perf/nodetiming'); const { @@ -97,6 +97,7 @@ class PerformanceMeasure extends InternalPerformanceEntry { function mark(name, options = kEmptyObject) { const mark = new PerformanceMark(name, options); enqueue(mark); + bufferUserTiming(mark); return mark; } @@ -161,6 +162,7 @@ function measure(name, startOrMeasureOptions, endMark) { detail = detail != null ? structuredClone(detail) : null; const measure = new PerformanceMeasure(name, start, duration, detail); enqueue(measure); + bufferUserTiming(measure); return measure; } diff --git a/lib/internal/process/execution.js b/lib/internal/process/execution.js index 72e54030b261841..889f94e434bf74c 100644 --- a/lib/internal/process/execution.js +++ b/lib/internal/process/execution.js @@ -151,27 +151,6 @@ function createOnGlobalUncaughtException() { // call that threw and was never cleared. So clear it now. clearDefaultTriggerAsyncId(); - // If diagnostic reporting is enabled, call into its handler to see - // whether it is interested in handling the situation. - // Ignore if the error is scoped inside a domain. - // use == in the checks as we want to allow for null and undefined - if (er == null || er.domain == null) { - try { - const report = internalBinding('report'); - if (report != null && report.shouldReportOnUncaughtException()) { - report.writeReport( - typeof er?.message === 'string' ? - er.message : - 'Exception', - 'Exception', - null, - er ?? {}); - } - } catch { - // Ignore the exception. Diagnostic reporting is unavailable. - } - } - const type = fromPromise ? 'unhandledRejection' : 'uncaughtException'; process.emit('uncaughtExceptionMonitor', er, type); if (exceptionHandlerState.captureFn !== null) { diff --git a/lib/internal/source_map/prepare_stack_trace.js b/lib/internal/source_map/prepare_stack_trace.js index 7f184545cd88431..2052651765265af 100644 --- a/lib/internal/source_map/prepare_stack_trace.js +++ b/lib/internal/source_map/prepare_stack_trace.js @@ -195,7 +195,7 @@ function getOriginalSource(payload, originalSourcePath) { function getSourceMapErrorSource(fileName, lineNumber, columnNumber) { const sm = findSourceMap(fileName); - if (sm === null) { + if (sm === undefined) { return; } const { diff --git a/lib/internal/source_map/source_map_cache.js b/lib/internal/source_map/source_map_cache.js index ba79540d8378493..60852a4f439037d 100644 --- a/lib/internal/source_map/source_map_cache.js +++ b/lib/internal/source_map/source_map_cache.js @@ -297,7 +297,7 @@ function findSourceMap(sourceURL) { if (sourceMap && sourceMap.data) { return new SourceMap(sourceMap.data); } - return null; + return undefined; } module.exports = { diff --git a/lib/internal/streams/writable.js b/lib/internal/streams/writable.js index 1054631ddfee1a9..c4d95df9ac71538 100644 --- a/lib/internal/streams/writable.js +++ b/lib/internal/streams/writable.js @@ -497,7 +497,7 @@ function afterWrite(stream, state, count, cb) { while (count-- > 0) { state.pendingcb--; - cb(); + cb(null); } if (state.destroyed) { @@ -640,8 +640,10 @@ Writable.prototype.end = function(chunk, encoding, cb) { } if (typeof cb === 'function') { - if (err || state.finished) { + if (err) { process.nextTick(cb, err); + } else if (state.finished) { + process.nextTick(cb, null); } else { state[kOnFinished].push(cb); } @@ -742,7 +744,7 @@ function finish(stream, state) { const onfinishCallbacks = state[kOnFinished].splice(0); for (let i = 0; i < onfinishCallbacks.length; i++) { - onfinishCallbacks[i](); + onfinishCallbacks[i](null); } stream.emit('finish'); diff --git a/lib/internal/test_runner/harness.js b/lib/internal/test_runner/harness.js index 360fe141fe70a1f..62d26a1a1bd8bf5 100644 --- a/lib/internal/test_runner/harness.js +++ b/lib/internal/test_runner/harness.js @@ -1,8 +1,8 @@ 'use strict'; const { ArrayPrototypeForEach, - FunctionPrototypeBind, SafeMap, + SafeWeakSet, } = primordials; const { createHook, @@ -13,13 +13,18 @@ const { ERR_TEST_FAILURE, }, } = require('internal/errors'); +const { kEmptyObject } = require('internal/util'); const { getOptionValue } = require('internal/options'); const { kCancelledByParent, Test, ItTest, Suite } = require('internal/test_runner/test'); +const { bigint: hrtime } = process.hrtime; -const isTestRunner = getOptionValue('--test'); +const isTestRunnerCli = getOptionValue('--test'); const testResources = new SafeMap(); -const root = new Test({ __proto__: null, name: '' }); -let wasRootSetup = false; +const wasRootSetup = new SafeWeakSet(); + +function createTestTree(options = kEmptyObject) { + return setup(new Test({ __proto__: null, ...options, name: '' })); +} function createProcessEventHandler(eventName, rootTest) { return (err) => { @@ -48,7 +53,7 @@ function createProcessEventHandler(eventName, rootTest) { } function setup(root) { - if (wasRootSetup) { + if (wasRootSetup.has(root)) { return root; } const hook = createHook({ @@ -81,52 +86,9 @@ function setup(root) { 'Promise resolution is still pending but the event loop has already resolved', kCancelledByParent)); - let passCount = 0; - let failCount = 0; - let skipCount = 0; - let todoCount = 0; - let cancelledCount = 0; - - for (let i = 0; i < root.subtests.length; i++) { - const test = root.subtests[i]; - - // Check SKIP and TODO tests first, as those should not be counted as - // failures. - if (test.skipped) { - skipCount++; - } else if (test.isTodo) { - todoCount++; - } else if (test.cancelled) { - cancelledCount++; - } else if (!test.passed) { - failCount++; - } else { - passCount++; - } - } - - root.reporter.plan(root.indent, root.subtests.length); - - for (let i = 0; i < root.diagnostics.length; i++) { - root.reporter.diagnostic(root.indent, root.diagnostics[i]); - } - - root.reporter.diagnostic(root.indent, `tests ${root.subtests.length}`); - root.reporter.diagnostic(root.indent, `pass ${passCount}`); - root.reporter.diagnostic(root.indent, `fail ${failCount}`); - root.reporter.diagnostic(root.indent, `cancelled ${cancelledCount}`); - root.reporter.diagnostic(root.indent, `skipped ${skipCount}`); - root.reporter.diagnostic(root.indent, `todo ${todoCount}`); - root.reporter.diagnostic(root.indent, `duration_ms ${process.uptime()}`); - - root.reporter.push(null); hook.disable(); process.removeListener('unhandledRejection', rejectionHandler); process.removeListener('uncaughtException', exceptionHandler); - - if (failCount > 0 || cancelledCount > 0) { - process.exitCode = 1; - } }; const terminationHandler = () => { @@ -137,29 +99,41 @@ function setup(root) { process.on('uncaughtException', exceptionHandler); process.on('unhandledRejection', rejectionHandler); process.on('beforeExit', exitHandler); - // TODO(MoLow): Make it configurable to hook when isTestRunner === false. - if (isTestRunner) { + // TODO(MoLow): Make it configurable to hook when isTestRunnerCli === false. + if (isTestRunnerCli) { process.on('SIGINT', terminationHandler); process.on('SIGTERM', terminationHandler); } - root.reporter.pipe(process.stdout); + root.startTime = hrtime(); root.reporter.version(); - wasRootSetup = true; + wasRootSetup.add(root); return root; } +let globalRoot; +function getGlobalRoot() { + if (!globalRoot) { + globalRoot = createTestTree(); + globalRoot.reporter.pipe(process.stdout); + globalRoot.reporter.once('test:fail', () => { + process.exitCode = 1; + }); + } + return globalRoot; +} + function test(name, options, fn) { - const subtest = setup(root).createSubtest(Test, name, options, fn); + const subtest = getGlobalRoot().createSubtest(Test, name, options, fn); return subtest.start(); } function runInParentContext(Factory) { function run(name, options, fn, overrides) { - const parent = testResources.get(executionAsyncId()) || setup(root); + const parent = testResources.get(executionAsyncId()) || getGlobalRoot(); const subtest = parent.createSubtest(Factory, name, options, fn, overrides); - if (parent === root) { + if (parent === getGlobalRoot()) { subtest.start(); } } @@ -178,13 +152,14 @@ function runInParentContext(Factory) { function hook(hook) { return (fn, options) => { - const parent = testResources.get(executionAsyncId()) || setup(root); + const parent = testResources.get(executionAsyncId()) || getGlobalRoot(); parent.createHook(hook, fn, options); }; } module.exports = { - test: FunctionPrototypeBind(test, root), + createTestTree, + test, describe: runInParentContext(Suite), it: runInParentContext(ItTest), before: hook('before'), diff --git a/lib/internal/test_runner/runner.js b/lib/internal/test_runner/runner.js new file mode 100644 index 000000000000000..a4afbcb0a7710fa --- /dev/null +++ b/lib/internal/test_runner/runner.js @@ -0,0 +1,163 @@ +'use strict'; +const { + ArrayFrom, + ArrayPrototypeConcat, + ArrayPrototypeFilter, + ArrayPrototypeIncludes, + ArrayPrototypeJoin, + ArrayPrototypeSlice, + ArrayPrototypeSort, + ObjectAssign, + PromisePrototypeThen, + SafePromiseAll, + SafeSet, +} = primordials; + +const { spawn } = require('child_process'); +const { readdirSync, statSync } = require('fs'); +const console = require('internal/console/global'); +const { + codes: { + ERR_TEST_FAILURE, + }, +} = require('internal/errors'); +const { validateArray } = require('internal/validators'); +const { kEmptyObject } = require('internal/util'); +const { createTestTree } = require('internal/test_runner/harness'); +const { kSubtestsFailed, Test } = require('internal/test_runner/test'); +const { + isSupportedFileType, + doesPathMatchFilter, +} = require('internal/test_runner/utils'); +const { basename, join, resolve } = require('path'); +const { once } = require('events'); + +const kFilterArgs = ['--test']; + +// TODO(cjihrig): Replace this with recursive readdir once it lands. +function processPath(path, testFiles, options) { + const stats = statSync(path); + + if (stats.isFile()) { + if (options.userSupplied || + (options.underTestDir && isSupportedFileType(path)) || + doesPathMatchFilter(path)) { + testFiles.add(path); + } + } else if (stats.isDirectory()) { + const name = basename(path); + + if (!options.userSupplied && name === 'node_modules') { + return; + } + + // 'test' directories get special treatment. Recursively add all .js, + // .cjs, and .mjs files in the 'test' directory. + const isTestDir = name === 'test'; + const { underTestDir } = options; + const entries = readdirSync(path); + + if (isTestDir) { + options.underTestDir = true; + } + + options.userSupplied = false; + + for (let i = 0; i < entries.length; i++) { + processPath(join(path, entries[i]), testFiles, options); + } + + options.underTestDir = underTestDir; + } +} + +function createTestFileList() { + const cwd = process.cwd(); + const hasUserSuppliedPaths = process.argv.length > 1; + const testPaths = hasUserSuppliedPaths ? + ArrayPrototypeSlice(process.argv, 1) : [cwd]; + const testFiles = new SafeSet(); + + try { + for (let i = 0; i < testPaths.length; i++) { + const absolutePath = resolve(testPaths[i]); + + processPath(absolutePath, testFiles, { userSupplied: true }); + } + } catch (err) { + if (err?.code === 'ENOENT') { + console.error(`Could not find '${err.path}'`); + process.exit(1); + } + + throw err; + } + + return ArrayPrototypeSort(ArrayFrom(testFiles)); +} + +function filterExecArgv(arg) { + return !ArrayPrototypeIncludes(kFilterArgs, arg); +} + +function runTestFile(path, root) { + const subtest = root.createSubtest(Test, path, async (t) => { + const args = ArrayPrototypeConcat( + ArrayPrototypeFilter(process.execArgv, filterExecArgv), + path); + + const child = spawn(process.execPath, args, { signal: t.signal, encoding: 'utf8' }); + // TODO(cjihrig): Implement a TAP parser to read the child's stdout + // instead of just displaying it all if the child fails. + let err; + + child.on('error', (error) => { + err = error; + }); + + const { 0: { 0: code, 1: signal }, 1: stdout, 2: stderr } = await SafePromiseAll([ + once(child, 'exit', { signal: t.signal }), + child.stdout.toArray({ signal: t.signal }), + child.stderr.toArray({ signal: t.signal }), + ]); + + if (code !== 0 || signal !== null) { + if (!err) { + err = ObjectAssign(new ERR_TEST_FAILURE('test failed', kSubtestsFailed), { + __proto__: null, + exitCode: code, + signal: signal, + stdout: ArrayPrototypeJoin(stdout, ''), + stderr: ArrayPrototypeJoin(stderr, ''), + // The stack will not be useful since the failures came from tests + // in a child process. + stack: undefined, + }); + } + + throw err; + } + }); + return subtest.start(); +} + +function run(options) { + if (options === null || typeof options !== 'object') { + options = kEmptyObject; + } + const { concurrency, timeout, signal, files } = options; + + if (files != null) { + validateArray(files, 'options.files'); + } + + const root = createTestTree({ concurrency, timeout, signal }); + const testFiles = files ?? createTestFileList(); + + PromisePrototypeThen(SafePromiseAll(testFiles, (path) => runTestFile(path, root)), + () => root.postRun()); + + return root.reporter; +} + +module.exports = { run }; diff --git a/lib/internal/test_runner/tap_stream.js b/lib/internal/test_runner/tap_stream.js index ca0c101aa9260c1..2d7b6e7b68eb158 100644 --- a/lib/internal/test_runner/tap_stream.js +++ b/lib/internal/test_runner/tap_stream.js @@ -2,6 +2,7 @@ const { ArrayPrototypeForEach, ArrayPrototypeJoin, + ArrayPrototypeMap, ArrayPrototypePush, ArrayPrototypeShift, ObjectEntries, @@ -11,7 +12,7 @@ const { } = primordials; const { inspectWithNoCustomRetry } = require('internal/errors'); const Readable = require('internal/streams/readable'); -const { isError } = require('internal/util'); +const { isError, kEmptyObject } = require('internal/util'); const kFrameStartRegExp = /^ {4}at /; const kLineBreakRegExp = /\n|\r\n/; const inspectOptions = { colors: false, breakLength: Infinity }; @@ -49,12 +50,16 @@ class TapStream extends Readable { this.#tryPush(`Bail out!${message ? ` ${tapEscape(message)}` : ''}\n`); } - fail(indent, testNumber, description, directive) { - this.#test(indent, testNumber, 'not ok', description, directive); + fail(indent, testNumber, name, duration, error, directive) { + this.emit('test:fail', { __proto__: null, name, testNumber, duration, ...directive, error }); + this.#test(indent, testNumber, 'not ok', name, directive); + this.#details(indent, duration, error); } - ok(indent, testNumber, description, directive) { - this.#test(indent, testNumber, 'ok', description, directive); + ok(indent, testNumber, name, duration, directive) { + this.emit('test:pass', { __proto__: null, name, testNumber, duration, ...directive }); + this.#test(indent, testNumber, 'ok', name, directive); + this.#details(indent, duration, null); } plan(indent, count, explanation) { @@ -64,18 +69,18 @@ class TapStream extends Readable { } getSkip(reason) { - return `SKIP${reason ? ` ${tapEscape(reason)}` : ''}`; + return { __proto__: null, skip: reason }; } getTodo(reason) { - return `TODO${reason ? ` ${tapEscape(reason)}` : ''}`; + return { __proto__: null, todo: reason }; } subtest(indent, name) { this.#tryPush(`${indent}# Subtest: ${tapEscape(name)}\n`); } - details(indent, duration, error) { + #details(indent, duration, error) { let details = `${indent} ---\n`; details += jsToYaml(indent, 'duration_ms', duration); @@ -85,6 +90,7 @@ class TapStream extends Readable { } diagnostic(indent, message) { + this.emit('test:diagnostic', message); this.#tryPush(`${indent}# ${tapEscape(message)}\n`); } @@ -92,16 +98,16 @@ class TapStream extends Readable { this.#tryPush('TAP version 13\n'); } - #test(indent, testNumber, status, description, directive) { + #test(indent, testNumber, status, name, directive = kEmptyObject) { let line = `${indent}${status} ${testNumber}`; - if (description) { - line += ` ${tapEscape(description)}`; + if (name) { + line += ` ${tapEscape(`- ${name}`)}`; } - if (directive) { - line += ` # ${directive}`; - } + line += ArrayPrototypeJoin(ArrayPrototypeMap(ObjectEntries(directive), ({ 0: key, 1: value }) => ( + ` # ${key.toUpperCase()}${value ? ` ${tapEscape(value)}` : ''}` + )), ''); line += '\n'; this.#tryPush(line); @@ -167,7 +173,7 @@ function jsToYaml(indent, name, value) { } if (isErrorObj) { - const { kTestCodeFailure } = lazyLoadTest(); + const { kTestCodeFailure, kHookFailure } = lazyLoadTest(); const { cause, code, @@ -181,10 +187,12 @@ function jsToYaml(indent, name, value) { // If the ERR_TEST_FAILURE came from an error provided by user code, // then try to unwrap the original error message and stack. - if (code === 'ERR_TEST_FAILURE' && failureType === kTestCodeFailure) { - errMsg = cause?.message ?? errMsg; + if (code === 'ERR_TEST_FAILURE' && (failureType === kTestCodeFailure || failureType === kHookFailure)) { errStack = cause?.stack ?? errStack; errCode = cause?.code ?? errCode; + if (failureType === kTestCodeFailure) { + errMsg = cause?.message ?? errMsg; + } } result += jsToYaml(indent, 'error', errMsg); diff --git a/lib/internal/test_runner/test.js b/lib/internal/test_runner/test.js index 3ebb4bc0a2dff93..544c09206f3f0ba 100644 --- a/lib/internal/test_runner/test.js +++ b/lib/internal/test_runner/test.js @@ -176,7 +176,7 @@ class Test extends AsyncResource { case 'boolean': if (concurrency) { - this.concurrency = isTestRunner ? MathMax(cpus().length - 1, 1) : Infinity; + this.concurrency = parent === null ? MathMax(cpus().length - 1, 1) : Infinity; } else { this.concurrency = 1; } @@ -512,7 +512,7 @@ class Test extends AsyncResource { } postRun(pendingSubtestsError) { - let failedSubtests = 0; + const counters = { __proto__: null, failed: 0, passed: 0, cancelled: 0, skipped: 0, todo: 0, totalFailed: 0 }; // If the test was failed before it even started, then the end time will // be earlier than the start time. Correct that here. @@ -532,14 +532,28 @@ class Test extends AsyncResource { subtest.postRun(pendingSubtestsError); } + // Check SKIP and TODO tests first, as those should not be counted as + // failures. + if (subtest.skipped) { + counters.skipped++; + } else if (subtest.isTodo) { + counters.todo++; + } else if (subtest.cancelled) { + counters.cancelled++; + } else if (!subtest.passed) { + counters.failed++; + } else { + counters.passed++; + } + if (!subtest.passed) { - failedSubtests++; + counters.totalFailed++; } } - if (this.passed && failedSubtests > 0) { - const subtestString = `subtest${failedSubtests > 1 ? 's' : ''}`; - const msg = `${failedSubtests} ${subtestString} failed`; + if ((this.passed || this.parent === null) && counters.totalFailed > 0) { + const subtestString = `subtest${counters.totalFailed > 1 ? 's' : ''}`; + const msg = `${counters.totalFailed} ${subtestString} failed`; this.fail(new ERR_TEST_FAILURE(msg, kSubtestsFailed)); } @@ -551,6 +565,22 @@ class Test extends AsyncResource { this.parent.addReadySubtest(this); this.parent.processReadySubtestRange(false); this.parent.processPendingSubtests(); + } else if (!this.reported) { + this.reported = true; + this.reporter.plan(this.indent, this.subtests.length); + + for (let i = 0; i < this.diagnostics.length; i++) { + this.reporter.diagnostic(this.indent, this.diagnostics[i]); + } + + this.reporter.diagnostic(this.indent, `tests ${this.subtests.length}`); + this.reporter.diagnostic(this.indent, `pass ${counters.passed}`); + this.reporter.diagnostic(this.indent, `fail ${counters.failed}`); + this.reporter.diagnostic(this.indent, `cancelled ${counters.cancelled}`); + this.reporter.diagnostic(this.indent, `skipped ${counters.skipped}`); + this.reporter.diagnostic(this.indent, `todo ${counters.todo}`); + this.reporter.diagnostic(this.indent, `duration_ms ${this.#duration()}`); + this.reporter.push(null); } } @@ -584,10 +614,12 @@ class Test extends AsyncResource { this.finished = true; } + #duration() { + // Duration is recorded in BigInt nanoseconds. Convert to milliseconds. + return Number(this.endTime - this.startTime) / 1_000_000; + } + report() { - // Duration is recorded in BigInt nanoseconds. Convert to seconds. - const duration = Number(this.endTime - this.startTime) / 1_000_000_000; - const message = `- ${this.name}`; let directive; if (this.skipped) { @@ -597,13 +629,11 @@ class Test extends AsyncResource { } if (this.passed) { - this.reporter.ok(this.indent, this.testNumber, message, directive); + this.reporter.ok(this.indent, this.testNumber, this.name, this.#duration(), directive); } else { - this.reporter.fail(this.indent, this.testNumber, message, directive); + this.reporter.fail(this.indent, this.testNumber, this.name, this.#duration(), this.error, directive); } - this.reporter.details(this.indent, duration, this.error); - for (let i = 0; i < this.diagnostics.length; i++) { this.reporter.diagnostic(this.indent, this.diagnostics[i]); } @@ -626,6 +656,8 @@ class TestHook extends Test { getRunArgs() { return this.#args; } + postRun() { + } } class ItTest extends Test { @@ -691,4 +723,13 @@ class Suite extends Test { } } -module.exports = { kCancelledByParent, kDefaultIndent, kSubtestsFailed, kTestCodeFailure, Test, Suite, ItTest }; +module.exports = { + ItTest, + kCancelledByParent, + kDefaultIndent, + kHookFailure, + kSubtestsFailed, + kTestCodeFailure, + Suite, + Test, +}; diff --git a/lib/internal/tls/secure-context.js b/lib/internal/tls/secure-context.js index a9bf4a1da71eca9..3d2e4d6623e859c 100644 --- a/lib/internal/tls/secure-context.js +++ b/lib/internal/tls/secure-context.js @@ -265,7 +265,7 @@ function configSecureContext(context, options = kEmptyObject, name = 'options') if (pfx !== undefined && pfx !== null) { if (ArrayIsArray(pfx)) { ArrayPrototypeForEach(pfx, (val) => { - const raw = val.buf ? val.buf : val; + const raw = val.buf || val; const pass = val.passphrase || passphrase; if (pass !== undefined && pass !== null) { context.loadPKCS12(toBuf(raw), toBuf(pass)); diff --git a/lib/internal/util.js b/lib/internal/util.js index 843c1a6cae4483c..e250a798af71538 100644 --- a/lib/internal/util.js +++ b/lib/internal/util.js @@ -17,6 +17,7 @@ const { ObjectFreeze, ObjectPrototypeHasOwnProperty, ObjectSetPrototypeOf, + ObjectValues, Promise, ReflectApply, ReflectConstruct, @@ -370,10 +371,15 @@ function promisify(original) { __proto__: null, value: fn, enumerable: false, writable: false, configurable: true }); - return ObjectDefineProperties( - fn, - ObjectGetOwnPropertyDescriptors(original) - ); + + const descriptors = ObjectGetOwnPropertyDescriptors(original); + const propertiesValues = ObjectValues(descriptors); + for (let i = 0; i < propertiesValues.length; i++) { + // We want to use null-prototype objects to not rely on globally mutable + // %Object.prototype%. + ObjectSetPrototypeOf(propertiesValues[i], null); + } + return ObjectDefineProperties(fn, descriptors); } promisify.custom = kCustomPromisifiedSymbol; diff --git a/lib/internal/util/colors.js b/lib/internal/util/colors.js new file mode 100644 index 000000000000000..5622a88467d038f --- /dev/null +++ b/lib/internal/util/colors.js @@ -0,0 +1,23 @@ +'use strict'; + +module.exports = { + blue: '', + green: '', + white: '', + red: '', + clear: '', + hasColors: false, + refresh() { + if (process.stderr.isTTY) { + const hasColors = process.stderr.hasColors(); + module.exports.blue = hasColors ? '\u001b[34m' : ''; + module.exports.green = hasColors ? '\u001b[32m' : ''; + module.exports.white = hasColors ? '\u001b[39m' : ''; + module.exports.red = hasColors ? '\u001b[31m' : ''; + module.exports.clear = hasColors ? '\u001bc' : ''; + module.exports.hasColors = hasColors; + } + } +}; + +module.exports.refresh(); diff --git a/lib/internal/v8/startup_snapshot.js b/lib/internal/v8/startup_snapshot.js index 86bee8749566d78..655cc1903e85ee6 100644 --- a/lib/internal/v8/startup_snapshot.js +++ b/lib/internal/v8/startup_snapshot.js @@ -54,8 +54,6 @@ function runSerializeCallbacks() { const { 0: callback, 1: data } = serializeCallbacks.shift(); callback(data); } - // Remove the hooks from the snapshot. - require('v8').startupSnapshot = undefined; } function addSerializeCallback(callback, data) { diff --git a/lib/internal/validators.js b/lib/internal/validators.js index 09c836e72582768..de8a8bb9b83b343 100644 --- a/lib/internal/validators.js +++ b/lib/internal/validators.js @@ -34,10 +34,18 @@ const { } = require('internal/util/types'); const { signals } = internalBinding('constants').os; +/** + * @param {*} value + * @returns {boolean} + */ function isInt32(value) { return value === (value | 0); } +/** + * @param {*} value + * @returns {boolean} + */ function isUint32(value) { return value === (value >>> 0); } @@ -70,6 +78,16 @@ function parseFileMode(value, name, def) { return value; } +/** + * @callback validateInteger + * @param {*} value + * @param {string} name + * @param {number} [min] + * @param {number} [max] + * @returns {asserts value is number} + */ + +/** @type {validateInteger} */ const validateInteger = hideStackFrames( (value, name, min = NumberMIN_SAFE_INTEGER, max = NumberMAX_SAFE_INTEGER) => { if (typeof value !== 'number') @@ -81,6 +99,16 @@ const validateInteger = hideStackFrames( } ); +/** + * @callback validateInt32 + * @param {*} value + * @param {string} name + * @param {number} [min] + * @param {number} [max] + * @returns {asserts value is number} + */ + +/** @type {validateInt32} */ const validateInt32 = hideStackFrames( (value, name, min = -2147483648, max = 2147483647) => { // The defaults for min and max correspond to the limits of 32-bit integers. @@ -96,7 +124,16 @@ const validateInt32 = hideStackFrames( } ); -const validateUint32 = hideStackFrames((value, name, positive) => { +/** + * @callback validateUint32 + * @param {*} value + * @param {string} name + * @param {number|boolean} [positive=false] + * @returns {asserts value is number} + */ + +/** @type {validateUint32} */ +const validateUint32 = hideStackFrames((value, name, positive = false) => { if (typeof value !== 'number') { throw new ERR_INVALID_ARG_TYPE(name, 'number', value); } @@ -111,11 +148,29 @@ const validateUint32 = hideStackFrames((value, name, positive) => { } }); +/** + * @callback validateString + * @param {*} value + * @param {string} name + * @returns {asserts value is string} + */ + +/** @type {validateString} */ function validateString(value, name) { if (typeof value !== 'string') throw new ERR_INVALID_ARG_TYPE(name, 'string', value); } +/** + * @callback validateNumber + * @param {*} value + * @param {string} name + * @param {number} [min] + * @param {number} [max] + * @returns {asserts value is number} + */ + +/** @type {validateNumber} */ function validateNumber(value, name, min = undefined, max) { if (typeof value !== 'number') throw new ERR_INVALID_ARG_TYPE(name, 'number', value); @@ -129,6 +184,15 @@ function validateNumber(value, name, min = undefined, max) { } } +/** + * @callback validateOneOf + * @template T + * @param {T} value + * @param {string} name + * @param {T[]} oneOf + */ + +/** @type {validateOneOf} */ const validateOneOf = hideStackFrames((value, name, oneOf) => { if (!ArrayPrototypeIncludes(oneOf, value)) { const allowed = ArrayPrototypeJoin( @@ -140,6 +204,14 @@ const validateOneOf = hideStackFrames((value, name, oneOf) => { } }); +/** + * @callback validateBoolean + * @param {*} value + * @param {string} name + * @returns {asserts value is boolean} + */ + +/** @type {validateBoolean} */ function validateBoolean(value, name) { if (typeof value !== 'boolean') throw new ERR_INVALID_ARG_TYPE(name, 'boolean', value); @@ -152,7 +224,8 @@ function getOwnPropertyValueOrDefault(options, key, defaultValue) { } /** - * @param {unknown} value + * @callback validateObject + * @param {*} value * @param {string} name * @param {{ * allowArray?: boolean, @@ -160,8 +233,10 @@ function getOwnPropertyValueOrDefault(options, key, defaultValue) { * nullable?: boolean * }} [options] */ + +/** @type {validateObject} */ const validateObject = hideStackFrames( - (value, name, options) => { + (value, name, options = null) => { const allowArray = getOwnPropertyValueOrDefault(options, 'allowArray', false); const allowFunction = getOwnPropertyValueOrDefault(options, 'allowFunction', false); const nullable = getOwnPropertyValueOrDefault(options, 'nullable', false); @@ -174,6 +249,15 @@ const validateObject = hideStackFrames( } }); +/** + * @callback validateArray + * @param {*} value + * @param {string} name + * @param {number} [minLength] + * @returns {asserts value is any[]} + */ + +/** @type {validateArray} */ const validateArray = hideStackFrames((value, name, minLength = 0) => { if (!ArrayIsArray(value)) { throw new ERR_INVALID_ARG_TYPE(name, 'Array', value); @@ -184,6 +268,12 @@ const validateArray = hideStackFrames((value, name, minLength = 0) => { } }); +// eslint-disable-next-line jsdoc/require-returns-check +/** + * @param {*} signal + * @param {string} [name='signal'] + * @returns {asserts signal is keyof signals} + */ function validateSignalName(signal, name = 'signal') { validateString(signal, name); @@ -197,6 +287,14 @@ function validateSignalName(signal, name = 'signal') { } } +/** + * @callback validateBuffer + * @param {*} buffer + * @param {string} [name='buffer'] + * @returns {asserts buffer is ArrayBufferView} + */ + +/** @type {validateBuffer} */ const validateBuffer = hideStackFrames((buffer, name = 'buffer') => { if (!isArrayBufferView(buffer)) { throw new ERR_INVALID_ARG_TYPE(name, @@ -205,6 +303,10 @@ const validateBuffer = hideStackFrames((buffer, name = 'buffer') => { } }); +/** + * @param {string} data + * @param {string} encoding + */ function validateEncoding(data, encoding) { const normalizedEncoding = normalizeEncoding(encoding); const length = data.length; @@ -215,8 +317,14 @@ function validateEncoding(data, encoding) { } } -// Check that the port number is not NaN when coerced to a number, -// is an integer and that it falls within the legal range of port numbers. +/** + * Check that the port number is not NaN when coerced to a number, + * is an integer and that it falls within the legal range of port numbers. + * @param {*} port + * @param {string} [name='Port'] + * @param {boolean} [allowZero=true] + * @returns {number} + */ function validatePort(port, name = 'Port', allowZero = true) { if ((typeof port !== 'number' && typeof port !== 'string') || (typeof port === 'string' && StringPrototypeTrim(port).length === 0) || @@ -228,6 +336,13 @@ function validatePort(port, name = 'Port', allowZero = true) { return port | 0; } +/** + * @callback validateAbortSignal + * @param {*} signal + * @param {string} name + */ + +/** @type {validateAbortSignal} */ const validateAbortSignal = hideStackFrames((signal, name) => { if (signal !== undefined && (signal === null || @@ -237,27 +352,72 @@ const validateAbortSignal = hideStackFrames((signal, name) => { } }); +/** + * @callback validateFunction + * @param {*} value + * @param {string} name + * @returns {asserts value is Function} + */ + +/** @type {validateFunction} */ const validateFunction = hideStackFrames((value, name) => { if (typeof value !== 'function') throw new ERR_INVALID_ARG_TYPE(name, 'Function', value); }); +/** + * @callback validatePlainFunction + * @param {*} value + * @param {string} name + * @returns {asserts value is Function} + */ + +/** @type {validatePlainFunction} */ const validatePlainFunction = hideStackFrames((value, name) => { if (typeof value !== 'function' || isAsyncFunction(value)) throw new ERR_INVALID_ARG_TYPE(name, 'Function', value); }); +/** + * @callback validateUndefined + * @param {*} value + * @param {string} name + * @returns {asserts value is undefined} + */ + +/** @type {validateUndefined} */ const validateUndefined = hideStackFrames((value, name) => { if (value !== undefined) throw new ERR_INVALID_ARG_TYPE(name, 'undefined', value); }); +/** + * @template T + * @param {T} value + * @param {string} name + * @param {T[]} union + */ function validateUnion(value, name, union) { if (!ArrayPrototypeIncludes(union, value)) { throw new ERR_INVALID_ARG_TYPE(name, `('${ArrayPrototypeJoin(union, '|')}')`, value); } } +function validateLinkHeaderValue(value, name) { + const linkValueRegExp = /^(?:<[^>]*>;)\s*(?:rel=(")?[^;"]*\1;?)\s*(?:(?:as|anchor|title)=(")?[^;"]*\2)?$/; + + if ( + typeof value === 'undefined' || + !RegExpPrototypeExec(linkValueRegExp, value) + ) { + throw new ERR_INVALID_ARG_VALUE( + name, + value, + 'must be an array or string of format "; rel=preload; as=style"' + ); + } +} + module.exports = { isInt32, isUint32, @@ -280,4 +440,5 @@ module.exports = { validateUndefined, validateUnion, validateAbortSignal, + validateLinkHeaderValue }; diff --git a/lib/internal/watch_mode/files_watcher.js b/lib/internal/watch_mode/files_watcher.js new file mode 100644 index 000000000000000..6c6c0f27fd8f8d7 --- /dev/null +++ b/lib/internal/watch_mode/files_watcher.js @@ -0,0 +1,133 @@ +'use strict'; + +const { + SafeMap, + SafeSet, + StringPrototypeStartsWith, +} = primordials; + +const { validateNumber, validateOneOf } = require('internal/validators'); +const { kEmptyObject } = require('internal/util'); +const { TIMEOUT_MAX } = require('internal/timers'); + +const EventEmitter = require('events'); +const { watch } = require('fs'); +const { fileURLToPath } = require('url'); +const { resolve, dirname } = require('path'); +const { setTimeout } = require('timers'); + + +const supportsRecursiveWatching = process.platform === 'win32' || + process.platform === 'darwin'; + +class FilesWatcher extends EventEmitter { + #watchers = new SafeMap(); + #filteredFiles = new SafeSet(); + #throttling = new SafeSet(); + #throttle; + #mode; + + constructor({ throttle = 500, mode = 'filter' } = kEmptyObject) { + super(); + + validateNumber(throttle, 'options.throttle', 0, TIMEOUT_MAX); + validateOneOf(mode, 'options.mode', ['filter', 'all']); + this.#throttle = throttle; + this.#mode = mode; + } + + #isPathWatched(path) { + if (this.#watchers.has(path)) { + return true; + } + + for (const { 0: watchedPath, 1: watcher } of this.#watchers.entries()) { + if (watcher.recursive && StringPrototypeStartsWith(path, watchedPath)) { + return true; + } + } + + return false; + } + + #removeWatchedChildren(path) { + for (const { 0: watchedPath, 1: watcher } of this.#watchers.entries()) { + if (path !== watchedPath && StringPrototypeStartsWith(watchedPath, path)) { + this.#unwatch(watcher); + this.#watchers.delete(watchedPath); + } + } + } + + #unwatch(watcher) { + watcher.handle.removeAllListeners(); + watcher.handle.close(); + } + + #onChange(trigger) { + if (this.#throttling.has(trigger)) { + return; + } + if (this.#mode === 'filter' && !this.#filteredFiles.has(trigger)) { + return; + } + this.#throttling.add(trigger); + this.emit('changed'); + setTimeout(() => this.#throttling.delete(trigger), this.#throttle).unref(); + } + + get watchedPaths() { + return [...this.#watchers.keys()]; + } + + watchPath(path, recursive = true) { + if (this.#isPathWatched(path)) { + return; + } + const watcher = watch(path, { recursive }); + watcher.on('change', (eventType, fileName) => this + .#onChange(recursive ? resolve(path, fileName) : path)); + this.#watchers.set(path, { handle: watcher, recursive }); + if (recursive) { + this.#removeWatchedChildren(path); + } + } + + filterFile(file) { + if (supportsRecursiveWatching) { + this.watchPath(dirname(file)); + } else { + // Having multiple FSWatcher's seems to be slower + // than a single recursive FSWatcher + this.watchPath(file, false); + } + this.#filteredFiles.add(file); + } + watchChildProcessModules(child) { + if (this.#mode !== 'filter') { + return; + } + child.on('message', (message) => { + try { + if (message['watch:require']) { + this.filterFile(message['watch:require']); + } + if (message['watch:import']) { + this.filterFile(fileURLToPath(message['watch:import'])); + } + } catch { + // Failed watching file. ignore + } + }); + } + clearFileFilters() { + this.#filteredFiles.clear(); + } + clear() { + this.#watchers.forEach(this.#unwatch); + this.#watchers.clear(); + this.#filteredFiles.clear(); + } +} + +module.exports = { FilesWatcher }; diff --git a/lib/internal/webstreams/adapters.js b/lib/internal/webstreams/adapters.js index 402a93342795b27..0c5cbc5ea1db9d6 100644 --- a/lib/internal/webstreams/adapters.js +++ b/lib/internal/webstreams/adapters.js @@ -1,11 +1,10 @@ 'use strict'; const { - ArrayPrototypeMap, - PromiseAll, PromisePrototypeThen, - PromisePrototypeFinally, PromiseResolve, + SafePromiseAll, + SafePromisePrototypeFinally, Uint8Array, } = primordials; @@ -165,7 +164,7 @@ function newWritableStreamFromStreamWritable(streamWritable) { async write(chunk) { if (streamWritable.writableNeedDrain || !streamWritable.write(chunk)) { backpressurePromise = createDeferredPromise(); - return PromisePrototypeFinally( + return SafePromisePrototypeFinally( backpressurePromise.promise, () => { backpressurePromise = undefined; }); @@ -246,10 +245,9 @@ function newStreamWritableFromWritableStream(writableStream, options = kEmptyObj writer.ready, () => { return PromisePrototypeThen( - PromiseAll( - ArrayPrototypeMap( - chunks, - (data) => writer.write(data.chunk))), + SafePromiseAll( + chunks, + (data) => writer.write(data.chunk)), done, done); }, @@ -668,10 +666,9 @@ function newStreamDuplexFromReadableWritablePair(pair = kEmptyObject, options = writer.ready, () => { return PromisePrototypeThen( - PromiseAll( - ArrayPrototypeMap( - chunks, - (data) => writer.write(data.chunk))), + SafePromiseAll( + chunks, + (data) => writer.write(data.chunk)), done, done); }, @@ -767,7 +764,7 @@ function newStreamDuplexFromReadableWritablePair(pair = kEmptyObject, options = if (!writableClosed || !readableClosed) { PromisePrototypeThen( - PromiseAll([ + SafePromiseAll([ closeWriter(), closeReader(), ]), diff --git a/lib/internal/webstreams/readablestream.js b/lib/internal/webstreams/readablestream.js index 5c5c8da724ace90..4577d791d652299 100644 --- a/lib/internal/webstreams/readablestream.js +++ b/lib/internal/webstreams/readablestream.js @@ -19,8 +19,8 @@ const { PromisePrototypeThen, PromiseResolve, PromiseReject, - PromiseAll, ReflectConstruct, + SafePromiseAll, Symbol, SymbolAsyncIterator, SymbolToStringTag, @@ -28,6 +28,7 @@ const { } = primordials; const { + AbortError, codes: { ERR_ILLEGAL_CONSTRUCTOR, ERR_INVALID_ARG_VALUE, @@ -59,6 +60,7 @@ const { } = require('v8'); const { + validateBuffer, validateObject, } = require('internal/validators'); @@ -101,6 +103,7 @@ const { extractHighWaterMark, extractSizeAlgorithm, lazyTransfer, + isDetachedBuffer, isViewedArrayBufferDetached, isBrandCheck, resetQueue, @@ -658,11 +661,13 @@ class ReadableStreamBYOBRequest { const viewBuffer = ArrayBufferViewGetBuffer(view); const viewBufferByteLength = ArrayBufferGetByteLength(viewBuffer); - if (viewByteLength === 0 || viewBufferByteLength === 0) { - throw new ERR_INVALID_STATE.TypeError( - 'View ArrayBuffer is zero-length or detached'); + if (isDetachedBuffer(viewBuffer)) { + throw new ERR_INVALID_STATE.TypeError('Viewed ArrayBuffer is detached'); } + assert(viewByteLength > 0); + assert(viewBufferByteLength > 0); + readableByteStreamControllerRespond(controller, bytesWritten); } @@ -681,6 +686,8 @@ class ReadableStreamBYOBRequest { 'This BYOB request has been invalidated'); } + validateBuffer(view, 'view'); + if (isViewedArrayBufferDetached(view)) { throw new ERR_INVALID_STATE.TypeError('Viewed ArrayBuffer is detached'); } @@ -803,11 +810,7 @@ class ReadableStreamDefaultReader { throw new ERR_INVALID_THIS('ReadableStreamDefaultReader'); if (this[kState].stream === undefined) return; - if (this[kState].readRequests.length) { - throw new ERR_INVALID_STATE.TypeError( - 'Cannot release with pending read requests'); - } - readableStreamReaderGenericRelease(this); + readableStreamDefaultReaderRelease(this); } /** @@ -894,6 +897,7 @@ class ReadableStreamBYOBReader { ], view)); } + const viewByteLength = ArrayBufferViewGetByteLength(view); const viewBuffer = ArrayBufferViewGetBuffer(view); const viewBufferByteLength = ArrayBufferGetByteLength(viewBuffer); @@ -901,8 +905,11 @@ class ReadableStreamBYOBReader { if (viewByteLength === 0 || viewBufferByteLength === 0) { return PromiseReject( new ERR_INVALID_STATE.TypeError( - 'View ArrayBuffer is zero-length or detached')); + 'View or Viewed ArrayBuffer is zero-length or detached', + ), + ); } + // Supposed to assert here that the view's buffer is not // detached, but there's no API available to use to check that. if (this[kState].stream === undefined) { @@ -920,11 +927,7 @@ class ReadableStreamBYOBReader { throw new ERR_INVALID_THIS('ReadableStreamBYOBReader'); if (this[kState].stream === undefined) return; - if (this[kState].readIntoRequests.length) { - throw new ERR_INVALID_STATE.TypeError( - 'Cannot release with pending read requests'); - } - readableStreamReaderGenericRelease(this); + readableStreamBYOBReaderRelease(this); } /** @@ -1301,8 +1304,14 @@ function readableStreamPipeTo( } function abortAlgorithm() { - // Cannot use the AbortError class here. It must be a DOMException - const error = new DOMException('The operation was aborted', 'AbortError'); + let error; + if (signal.reason instanceof AbortError) { + // Cannot use the AbortError class here. It must be a DOMException. + error = new DOMException(signal.reason.message, 'AbortError'); + } else { + error = signal.reason; + } + const actions = []; if (!preventAbort) { ArrayPrototypePush( @@ -1324,7 +1333,7 @@ function readableStreamPipeTo( } shutdownWithAnAction( - async () => PromiseAll(actions.map((action) => action())), + () => SafePromiseAll(actions, (action) => action()), true, error); } @@ -1720,6 +1729,36 @@ function readableStreamReaderGenericInitialize(reader, stream) { } } +function readableStreamDefaultReaderRelease(reader) { + readableStreamReaderGenericRelease(reader); + readableStreamDefaultReaderErrorReadRequests( + reader, + new ERR_INVALID_STATE.TypeError('Releasing reader') + ); +} + +function readableStreamDefaultReaderErrorReadRequests(reader, e) { + for (let n = 0; n < reader[kState].readRequests.length; ++n) { + reader[kState].readRequests[n][kError](e); + } + reader[kState].readRequests = []; +} + +function readableStreamBYOBReaderRelease(reader) { + readableStreamReaderGenericRelease(reader); + readableStreamBYOBReaderErrorReadIntoRequests( + reader, + new ERR_INVALID_STATE.TypeError('Releasing reader') + ); +} + +function readableStreamBYOBReaderErrorReadIntoRequests(reader, e) { + for (let n = 0; n < reader[kState].readIntoRequests.length; ++n) { + reader[kState].readIntoRequests[n][kError](e); + } + reader[kState].readIntoRequests = []; +} + function readableStreamReaderGenericRelease(reader) { const { stream, @@ -2298,11 +2337,10 @@ function readableByteStreamControllerEnqueue( if (pendingPullIntos.length) { const firstPendingPullInto = pendingPullIntos[0]; - const pendingBufferByteLength = - ArrayBufferGetByteLength(firstPendingPullInto.buffer); - if (pendingBufferByteLength === 0) { + if (isDetachedBuffer(firstPendingPullInto.buffer)) { throw new ERR_INVALID_STATE.TypeError( - 'Destination ArrayBuffer is zero-length or detached'); + 'Destination ArrayBuffer is detached', + ); } firstPendingPullInto.buffer = @@ -2501,21 +2539,20 @@ function readableByteStreamControllerRespondWithNewView(controller, view) { const desc = pendingPullIntos[0]; assert(stream[kState].state !== 'errored'); - if (!isArrayBufferView(view)) { - throw new ERR_INVALID_ARG_TYPE( - 'view', - [ - 'Buffer', - 'TypedArray', - 'DataView', - ], - view); - } const viewByteLength = ArrayBufferViewGetByteLength(view); const viewByteOffset = ArrayBufferViewGetByteOffset(view); const viewBuffer = ArrayBufferViewGetBuffer(view); const viewBufferByteLength = ArrayBufferGetByteLength(viewBuffer); + if (stream[kState].state === 'closed') { + if (viewByteLength !== 0) + throw new ERR_INVALID_STATE.TypeError('View is not zero-length'); + } else { + assert(stream[kState].state === 'readable'); + if (viewByteLength === 0) + throw new ERR_INVALID_STATE.TypeError('View is zero-length'); + } + const { byteOffset, byteLength, diff --git a/lib/internal/webstreams/transformstream.js b/lib/internal/webstreams/transformstream.js index 457c9eb8fb338a0..b7366fb1ba2576a 100644 --- a/lib/internal/webstreams/transformstream.js +++ b/lib/internal/webstreams/transformstream.js @@ -4,7 +4,6 @@ const { FunctionPrototypeBind, FunctionPrototypeCall, ObjectDefineProperties, - PromisePrototypeCatch, PromisePrototypeThen, PromiseResolve, ReflectConstruct, @@ -496,19 +495,17 @@ function transformStreamDefaultControllerError(controller, error) { transformStreamError(controller[kState].stream, error); } -function transformStreamDefaultControllerPerformTransform(controller, chunk) { - const transformPromise = - ensureIsPromise( +async function transformStreamDefaultControllerPerformTransform(controller, chunk) { + try { + return await ensureIsPromise( controller[kState].transformAlgorithm, controller, chunk, controller); - return PromisePrototypeCatch( - transformPromise, - (error) => { - transformStreamError(controller[kState].stream, error); - throw error; - }); + } catch (error) { + transformStreamError(controller[kState].stream, error); + throw error; + } } function transformStreamDefaultControllerTerminate(controller) { diff --git a/lib/internal/webstreams/util.js b/lib/internal/webstreams/util.js index ed74a10801f8ff5..d8e63b5faaa2807 100644 --- a/lib/internal/webstreams/util.js +++ b/lib/internal/webstreams/util.js @@ -129,11 +129,13 @@ function transferArrayBuffer(buffer) { return res; } -function isArrayBufferDetached(buffer) { +function isDetachedBuffer(buffer) { if (ArrayBufferGetByteLength(buffer) === 0) { + // TODO(daeyeon): Consider using C++ builtin to improve performance. try { new Uint8Array(buffer); - } catch { + } catch (error) { + assert(error.name === 'TypeError'); return true; } } @@ -143,7 +145,7 @@ function isArrayBufferDetached(buffer) { function isViewedArrayBufferDetached(view) { return ( ArrayBufferViewGetByteLength(view) === 0 && - isArrayBufferDetached(ArrayBufferViewGetBuffer(view)) + isDetachedBuffer(ArrayBufferViewGetBuffer(view)) ); } @@ -243,6 +245,7 @@ module.exports = { extractSizeAlgorithm, lazyTransfer, isBrandCheck, + isDetachedBuffer, isPromisePending, isViewedArrayBufferDetached, peekQueueValue, diff --git a/lib/internal/worker.js b/lib/internal/worker.js index a13644589d6b3bb..d88170ab9cd9cf1 100644 --- a/lib/internal/worker.js +++ b/lib/internal/worker.js @@ -89,6 +89,9 @@ let debug = require('internal/util/debuglog').debuglog('worker', (fn) => { debug = fn; }); +const dc = require('diagnostics_channel'); +const workerThreadsChannel = dc.channel('worker_threads'); + let cwdCounter; const environmentData = new SafeMap(); @@ -262,6 +265,11 @@ class Worker extends EventEmitter { this[kHandle].startThread(); process.nextTick(() => process.emit('worker', this)); + if (workerThreadsChannel.hasSubscribers) { + workerThreadsChannel.publish({ + worker: this, + }); + } } [kOnExit](code, customErr, customErrReason) { diff --git a/lib/internal/worker/io.js b/lib/internal/worker/io.js index 9e2bbbdb33fd3ee..61f9a5363716a87 100644 --- a/lib/internal/worker/io.js +++ b/lib/internal/worker/io.js @@ -13,6 +13,7 @@ const { ObjectGetOwnPropertyDescriptors, ObjectGetPrototypeOf, ObjectSetPrototypeOf, + ObjectValues, ReflectApply, Symbol, SymbolFor, @@ -95,10 +96,17 @@ const messageTypes = { // it inherit from NodeEventTarget, even though it is a C++ class, and b) we do // not provide methods that are not present in the Browser and not documented // on our side (e.g. stopMessagePort). +const messagePortPrototypePropertyDescriptors = ObjectGetOwnPropertyDescriptors(MessagePort.prototype); +const propertiesValues = ObjectValues(messagePortPrototypePropertyDescriptors); +for (let i = 0; i < propertiesValues.length; i++) { + // We want to use null-prototype objects to not rely on globally mutable + // %Object.prototype%. + ObjectSetPrototypeOf(propertiesValues[i], null); +} // Save a copy of the original set of methods as a shallow clone. const MessagePortPrototype = ObjectCreate( ObjectGetPrototypeOf(MessagePort.prototype), - ObjectGetOwnPropertyDescriptors(MessagePort.prototype)); + messagePortPrototypePropertyDescriptors); // Set up the new inheritance chain. ObjectSetPrototypeOf(MessagePort, NodeEventTarget); ObjectSetPrototypeOf(MessagePort.prototype, NodeEventTarget.prototype); diff --git a/lib/net.js b/lib/net.js index 548e5e7878a56b4..eaa5e594e5f4ef0 100644 --- a/lib/net.js +++ b/lib/net.js @@ -131,20 +131,9 @@ const noop = () => {}; const kPerfHooksNetConnectContext = Symbol('kPerfHooksNetConnectContext'); -let netClientSocketChannel; -let netServerSocketChannel; -function lazyChannels() { - // TODO(joyeecheung): support diagnostics channels in the snapshot. - // For now it is fine to create them lazily when there isn't a snapshot to - // build. If users need the channels they would have to create them first - // before invoking any built-ins that would publish to these channels - // anyway. - if (netClientSocketChannel === undefined) { - const dc = require('diagnostics_channel'); - netClientSocketChannel = dc.channel('net.client.socket'); - netServerSocketChannel = dc.channel('net.server.socket'); - } -} +const dc = require('diagnostics_channel'); +const netClientSocketChannel = dc.channel('net.client.socket'); +const netServerSocketChannel = dc.channel('net.server.socket'); const { hasObserver, @@ -217,7 +206,7 @@ function connect(...args) { const options = normalized[0]; debug('createConnection', normalized); const socket = new Socket(options); - lazyChannels(); + if (netClientSocketChannel.hasSubscribers) { netClientSocketChannel.publish({ socket, @@ -1034,7 +1023,7 @@ function internalConnect( req.address = address; req.oncomplete = afterConnect; - err = self._handle.connect(req, address, afterConnect); + err = self._handle.connect(req, address); } if (err) { @@ -1761,7 +1750,6 @@ function onconnection(err, clientHandle) { socket.server = self; socket._server = self; self.emit('connection', socket); - lazyChannels(); if (netServerSocketChannel.hasSubscribers) { netServerSocketChannel.publish({ socket, diff --git a/lib/os.js b/lib/os.js index 81bbe15a9d2a42c..860348a472f325d 100644 --- a/lib/os.js +++ b/lib/os.js @@ -55,7 +55,7 @@ const { getOSInformation: _getOSInformation, getTotalMem, getUserInfo, - getUptime, + getUptime: _getUptime, isBigEndian, setPriority: _setPriority } = internalBinding('os'); @@ -75,11 +75,14 @@ const { 0: type, 1: version, 2: release, + 3: machine, } = _getOSInformation(); const getHomeDirectory = getCheckedFunction(_getHomeDirectory); const getHostname = getCheckedFunction(_getHostname); const getInterfaceAddresses = getCheckedFunction(_getInterfaceAddresses); +const getUptime = getCheckedFunction(_getUptime); + /** * @returns {string} */ @@ -92,12 +95,17 @@ const getOSType = () => type; * @returns {string} */ const getOSVersion = () => version; +/** + * @returns {string} + */ +const getMachine = () => machine; getFreeMem[SymbolToPrimitive] = () => getFreeMem(); getHostname[SymbolToPrimitive] = () => getHostname(); getOSVersion[SymbolToPrimitive] = () => getOSVersion(); getOSType[SymbolToPrimitive] = () => getOSType(); getOSRelease[SymbolToPrimitive] = () => getOSRelease(); +getMachine[SymbolToPrimitive] = () => getMachine(); getHomeDirectory[SymbolToPrimitive] = () => getHomeDirectory(); getTotalMem[SymbolToPrimitive] = () => getTotalMem(); getUptime[SymbolToPrimitive] = () => getUptime(); @@ -367,7 +375,8 @@ module.exports = { type: getOSType, userInfo, uptime: getUptime, - version: getOSVersion + version: getOSVersion, + machine: getMachine, }; ObjectDefineProperties(module.exports, { diff --git a/lib/perf_hooks.js b/lib/perf_hooks.js index e84c8948f3c6095..5ca793b9db98fe4 100644 --- a/lib/perf_hooks.js +++ b/lib/perf_hooks.js @@ -18,7 +18,10 @@ const { PerformanceMark, PerformanceMeasure, } = require('internal/perf/usertiming'); -const { InternalPerformance } = require('internal/perf/performance'); +const { + Performance, + performance, +} = require('internal/perf/performance'); const { createHistogram @@ -27,6 +30,7 @@ const { const monitorEventLoopDelay = require('internal/perf/event_loop_delay'); module.exports = { + Performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, @@ -35,7 +39,7 @@ module.exports = { PerformanceResourceTiming, monitorEventLoopDelay, createHistogram, - performance: new InternalPerformance(), + performance, }; ObjectDefineProperty(module.exports, 'constants', { diff --git a/lib/test.js b/lib/test.js index a365eef6d45f91a..c8a4bae9148ab49 100644 --- a/lib/test.js +++ b/lib/test.js @@ -1,14 +1,19 @@ 'use strict'; +const { ObjectAssign } = primordials; const { test, describe, it, before, after, beforeEach, afterEach } = require('internal/test_runner/harness'); +const { run } = require('internal/test_runner/runner'); const { emitExperimentalWarning } = require('internal/util'); emitExperimentalWarning('The test runner'); module.exports = test; -module.exports.test = test; -module.exports.describe = describe; -module.exports.it = it; -module.exports.before = before; -module.exports.after = after; -module.exports.beforeEach = beforeEach; -module.exports.afterEach = afterEach; +ObjectAssign(module.exports, { + after, + afterEach, + before, + beforeEach, + describe, + it, + run, + test, +}); diff --git a/lib/tty.js b/lib/tty.js index 33e7c26f0291ed1..3796c99cba62a48 100644 --- a/lib/tty.js +++ b/lib/tty.js @@ -72,7 +72,7 @@ ObjectSetPrototypeOf(ReadStream, net.Socket); ReadStream.prototype.setRawMode = function(flag) { flag = !!flag; - const err = this._handle.setRawMode(flag); + const err = this._handle?.setRawMode(flag); if (err) { this.emit('error', errors.errnoException(err, 'setRawMode')); return this; diff --git a/lib/util.js b/lib/util.js index 909426ed4c0785d..bf69cf6eb1cf5df 100644 --- a/lib/util.js +++ b/lib/util.js @@ -40,6 +40,7 @@ const { ObjectKeys, ObjectPrototypeToString, ObjectSetPrototypeOf, + ObjectValues, ReflectApply, StringPrototypePadStart, } = primordials; @@ -324,6 +325,12 @@ function callbackify(original) { if (typeof descriptors.name.value === 'string') { descriptors.name.value += 'Callbackified'; } + const propertiesValues = ObjectValues(descriptors); + for (let i = 0; i < propertiesValues.length; i++) { + // We want to use null-prototype objects to not rely on globally mutable + // %Object.prototype%. + ObjectSetPrototypeOf(propertiesValues[i], null); + } ObjectDefineProperties(callbackified, descriptors); return callbackified; } diff --git a/node.gyp b/node.gyp index 9563073fd6c8985..05b7e6239d730d1 100644 --- a/node.gyp +++ b/node.gyp @@ -512,6 +512,7 @@ 'src/node_process_events.cc', 'src/node_process_methods.cc', 'src/node_process_object.cc', + 'src/node_realm.cc', 'src/node_report.cc', 'src/node_report_module.cc', 'src/node_report_utils.cc', @@ -570,6 +571,7 @@ 'src/connection_wrap.h', 'src/debug_utils.h', 'src/debug_utils-inl.h', + 'src/env_properties.h', 'src/env.h', 'src/env-inl.h', 'src/handle_wrap.h', @@ -617,6 +619,8 @@ 'src/node_platform.h', 'src/node_process.h', 'src/node_process-inl.h', + 'src/node_realm.h', + 'src/node_realm-inl.h', 'src/node_report.h', 'src/node_revert.h', 'src/node_root_certs.h', @@ -628,6 +632,7 @@ 'src/node_stat_watcher.h', 'src/node_union_bytes.h', 'src/node_url.h', + 'src/node_util.h', 'src/node_version.h', 'src/node_v8.h', 'src/node_v8_platform-inl.h', @@ -992,6 +997,7 @@ 'test/cctest/test_node_api.cc', 'test/cctest/test_per_process.cc', 'test/cctest/test_platform.cc', + 'test/cctest/test_report.cc', 'test/cctest/test_json_utils.cc', 'test/cctest/test_sockaddr.cc', 'test/cctest/test_traced_value.cc', diff --git a/node.gypi b/node.gypi index d24928df8b29c9e..b73ec5f35b76d0f 100644 --- a/node.gypi +++ b/node.gypi @@ -317,6 +317,12 @@ }], ], }], + [ 'coverage=="true"', { + 'defines': [ + 'ALLOW_ATTACHING_DEBUGGER_IN_WATCH_MODE', + 'ALLOW_ATTACHING_DEBUGGER_IN_TEST_RUNNER', + ], + }], [ 'OS=="sunos"', { 'ldflags': [ '-Wl,-M,/usr/lib/ld/map.noexstk' ], }], diff --git a/src/api/environment.cc b/src/api/environment.cc index bdf67521cbf80c7..9049b4617b9b187 100644 --- a/src/api/environment.cc +++ b/src/api/environment.cc @@ -5,6 +5,7 @@ #include "node_internals.h" #include "node_options-inl.h" #include "node_platform.h" +#include "node_realm-inl.h" #include "node_shadow_realm.h" #include "node_v8_platform-inl.h" #include "node_wasm_web_api.h" @@ -240,6 +241,7 @@ void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) { auto* fatal_error_cb = s.fatal_error_callback ? s.fatal_error_callback : OnFatalError; isolate->SetFatalErrorHandler(fatal_error_cb); + isolate->SetOOMErrorHandler(OOMErrorHandler); if ((s.flags & SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK) == 0) { auto* prepare_stack_trace_cb = s.prepare_stack_trace_callback ? @@ -377,7 +379,7 @@ Environment* CreateEnvironment( } #endif - if (env->RunBootstrapping().IsEmpty()) { + if (env->principal_realm()->RunBootstrapping().IsEmpty()) { FreeEnvironment(env); return nullptr; } @@ -452,11 +454,13 @@ MaybeLocal LoadEnvironment( builtins::BuiltinLoader::Add( name.c_str(), UnionBytes(**main_utf16, main_utf16->length())); env->set_main_utf16(std::move(main_utf16)); + Realm* realm = env->principal_realm(); + // Arguments must match the parameters specified in // BuiltinLoader::LookupAndCompile(). - std::vector> args = {env->process_object(), - env->builtin_module_require()}; - return ExecuteBootstrapper(env, name.c_str(), &args); + std::vector> args = {realm->process_object(), + realm->builtin_module_require()}; + return realm->ExecuteBootstrapper(name.c_str(), &args); }); } @@ -555,50 +559,21 @@ Maybe InitializeContextRuntime(Local context) { Isolate* isolate = context->GetIsolate(); HandleScope handle_scope(isolate); - // Delete `Intl.v8BreakIterator` - // https://github.com/nodejs/node/issues/14909 - { - Local intl_string = - FIXED_ONE_BYTE_STRING(isolate, "Intl"); - Local break_iter_string = - FIXED_ONE_BYTE_STRING(isolate, "v8BreakIterator"); - - Local intl_v; - if (!context->Global() - ->Get(context, intl_string) - .ToLocal(&intl_v)) { - return Nothing(); - } - - if (intl_v->IsObject() && - intl_v.As() - ->Delete(context, break_iter_string) - .IsNothing()) { - return Nothing(); - } - } - - // Delete `Atomics.wake` - // https://github.com/nodejs/node/issues/21219 - { - Local atomics_string = - FIXED_ONE_BYTE_STRING(isolate, "Atomics"); - Local wake_string = - FIXED_ONE_BYTE_STRING(isolate, "wake"); - - Local atomics_v; - if (!context->Global() - ->Get(context, atomics_string) - .ToLocal(&atomics_v)) { - return Nothing(); - } + // When `IsCodeGenerationFromStringsAllowed` is true, V8 takes the fast path + // and ignores the ModifyCodeGenerationFromStrings callback. Set it to false + // to delegate the code generation validation to + // node::ModifyCodeGenerationFromStrings. + // The `IsCodeGenerationFromStringsAllowed` can be refreshed by V8 according + // to the runtime flags, propagate the value to the embedder data. + bool is_code_generation_from_strings_allowed = + context->IsCodeGenerationFromStringsAllowed(); + context->AllowCodeGenerationFromStrings(false); + context->SetEmbedderData( + ContextEmbedderIndex::kAllowCodeGenerationFromStrings, + is_code_generation_from_strings_allowed ? True(isolate) : False(isolate)); - if (atomics_v->IsObject() && - atomics_v.As() - ->Delete(context, wake_string) - .IsNothing()) { - return Nothing(); - } + if (per_process::cli_options->disable_proto == "") { + return Just(true); } // Remove __proto__ @@ -660,16 +635,44 @@ Maybe InitializeContextRuntime(Local context) { return Just(true); } -Maybe InitializeContextForSnapshot(Local context) { +Maybe InitializeBaseContextForSnapshot(Local context) { Isolate* isolate = context->GetIsolate(); HandleScope handle_scope(isolate); - context->AllowCodeGenerationFromStrings(false); - context->SetEmbedderData( - ContextEmbedderIndex::kAllowCodeGenerationFromStrings, True(isolate)); + // Delete `Intl.v8BreakIterator` + // https://github.com/nodejs/node/issues/14909 + { + Context::Scope context_scope(context); + Local intl_string = FIXED_ONE_BYTE_STRING(isolate, "Intl"); + Local break_iter_string = + FIXED_ONE_BYTE_STRING(isolate, "v8BreakIterator"); + + Local intl_v; + if (!context->Global()->Get(context, intl_string).ToLocal(&intl_v)) { + return Nothing(); + } + + if (intl_v->IsObject() && + intl_v.As()->Delete(context, break_iter_string).IsNothing()) { + return Nothing(); + } + } + return Just(true); +} + +Maybe InitializeMainContextForSnapshot(Local context) { + Isolate* isolate = context->GetIsolate(); + HandleScope handle_scope(isolate); + + // Initialize the default values. context->SetEmbedderData(ContextEmbedderIndex::kAllowWasmCodeGeneration, True(isolate)); + context->SetEmbedderData( + ContextEmbedderIndex::kAllowCodeGenerationFromStrings, True(isolate)); + if (InitializeBaseContextForSnapshot(context).IsNothing()) { + return Nothing(); + } return InitializePrimordials(context); } @@ -716,8 +719,9 @@ Maybe InitializePrimordials(Local context) { return Just(true); } +// This initializes the main context (i.e. vm contexts are not included). Maybe InitializeContext(Local context) { - if (InitializeContextForSnapshot(context).IsNothing()) { + if (InitializeMainContextForSnapshot(context).IsNothing()) { return Nothing(); } diff --git a/src/api/hooks.cc b/src/api/hooks.cc index 9e54436ba30fb68..bf4176cc7881c41 100644 --- a/src/api/hooks.cc +++ b/src/api/hooks.cc @@ -166,6 +166,16 @@ void RemoveEnvironmentCleanupHookInternal( handle->info->env->RemoveCleanupHook(RunAsyncCleanupHook, handle->info.get()); } +void RequestInterrupt(Environment* env, void (*fun)(void* arg), void* arg) { + env->RequestInterrupt([fun, arg](Environment* env) { + // Disallow JavaScript execution during interrupt. + Isolate::DisallowJavascriptExecutionScope scope( + env->isolate(), + Isolate::DisallowJavascriptExecutionScope::CRASH_ON_FAILURE); + fun(arg); + }); +} + async_id AsyncHooksGetExecutionAsyncId(Isolate* isolate) { Environment* env = Environment::GetCurrent(isolate); if (env == nullptr) return -1; diff --git a/src/base64-inl.h b/src/base64-inl.h index 5546951df9b4644..6c9280d1ff1c75e 100644 --- a/src/base64-inl.h +++ b/src/base64-inl.h @@ -9,6 +9,10 @@ namespace node { +static constexpr char base64_table_url[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + "abcdefghijklmnopqrstuvwxyz" + "0123456789-_"; + extern const int8_t unbase64_table[256]; @@ -144,7 +148,7 @@ inline size_t base64_encode(const char* src, unsigned k; unsigned n; - const char* table = base64_select_table(mode); + const char* table = base64_table_url; i = 0; k = 0; diff --git a/src/base64.h b/src/base64.h index 0db096810cd4a89..d93291f101bb94b 100644 --- a/src/base64.h +++ b/src/base64.h @@ -17,22 +17,6 @@ enum class Base64Mode { URL }; -static constexpr char base64_table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "abcdefghijklmnopqrstuvwxyz" - "0123456789+/"; - -static constexpr char base64_table_url[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "abcdefghijklmnopqrstuvwxyz" - "0123456789-_"; - -static inline const char* base64_select_table(Base64Mode mode) { - switch (mode) { - case Base64Mode::NORMAL: return base64_table; - case Base64Mode::URL: return base64_table_url; - default: UNREACHABLE(); - } -} - static inline constexpr size_t base64_encoded_size( size_t size, Base64Mode mode = Base64Mode::NORMAL) { diff --git a/src/base_object-inl.h b/src/base_object-inl.h index ff618f08b5d3944..ceb7a7f4a6534ea 100644 --- a/src/base_object-inl.h +++ b/src/base_object-inl.h @@ -32,6 +32,12 @@ namespace node { +// static +v8::Local BaseObject::GetConstructorTemplate( + Environment* env) { + return BaseObject::GetConstructorTemplate(env->isolate_data()); +} + void BaseObject::Detach() { CHECK_GT(pointer_data()->strong_ptr_count, 0); pointer_data()->is_detached = true; @@ -115,7 +121,7 @@ bool BaseObject::has_pointer_data() const { template BaseObject::PointerData* BaseObjectPtrImpl::pointer_data() const { - if (kIsWeak) { + if constexpr (kIsWeak) { return data_.pointer_data; } if (get_base_object() == nullptr) { @@ -126,7 +132,7 @@ BaseObjectPtrImpl::pointer_data() const { template BaseObject* BaseObjectPtrImpl::get_base_object() const { - if (kIsWeak) { + if constexpr (kIsWeak) { if (pointer_data() == nullptr) { return nullptr; } @@ -137,7 +143,7 @@ BaseObject* BaseObjectPtrImpl::get_base_object() const { template BaseObjectPtrImpl::~BaseObjectPtrImpl() { - if (kIsWeak) { + if constexpr (kIsWeak) { if (pointer_data() != nullptr && --pointer_data()->weak_ptr_count == 0 && pointer_data()->self == nullptr) { @@ -157,7 +163,7 @@ template BaseObjectPtrImpl::BaseObjectPtrImpl(T* target) : BaseObjectPtrImpl() { if (target == nullptr) return; - if (kIsWeak) { + if constexpr (kIsWeak) { data_.pointer_data = target->pointer_data(); CHECK_NOT_NULL(pointer_data()); pointer_data()->weak_ptr_count++; @@ -198,7 +204,7 @@ BaseObjectPtrImpl& BaseObjectPtrImpl::operator=( template BaseObjectPtrImpl::BaseObjectPtrImpl(BaseObjectPtrImpl&& other) : data_(other.data_) { - if (kIsWeak) + if constexpr (kIsWeak) other.data_.target = nullptr; else other.data_.pointer_data = nullptr; diff --git a/src/base_object.h b/src/base_object.h index 6f072bf5ec0357d..e12c9b5d1e45063 100644 --- a/src/base_object.h +++ b/src/base_object.h @@ -31,6 +31,7 @@ namespace node { class Environment; +class IsolateData; template class BaseObjectPtrImpl; @@ -111,8 +112,10 @@ class BaseObject : public MemoryRetainer { // a BaseObjectPtr to this object. inline void Detach(); - static v8::Local GetConstructorTemplate( + static inline v8::Local GetConstructorTemplate( Environment* env); + static v8::Local GetConstructorTemplate( + IsolateData* isolate_data); // Interface for transferring BaseObject instances using the .postMessage() // method of MessagePorts (and, by extension, Workers). diff --git a/src/crypto/crypto_cipher.cc b/src/crypto/crypto_cipher.cc index 44b54363dd1ec2e..a6ce4de49d9bf69 100644 --- a/src/crypto/crypto_cipher.cc +++ b/src/crypto/crypto_cipher.cc @@ -493,7 +493,7 @@ void CipherBase::InitIv(const char* cipher_type, // Throw if an IV was passed which does not match the cipher's fixed IV length // static_cast for the iv_buf.size() is safe because we've verified - // prior that the value is not larger than MAX_INT. + // prior that the value is not larger than INT_MAX. if (!is_authenticated_mode && has_iv && static_cast(iv_buf.size()) != expected_iv_len) { @@ -1063,7 +1063,7 @@ void PublicKeyCipher::Cipher(const FunctionCallbackInfo& args) { ArrayBufferOrViewContents oaep_label( !args[offset + 3]->IsUndefined() ? args[offset + 3] : Local()); if (UNLIKELY(!oaep_label.CheckSizeInt32())) - return THROW_ERR_OUT_OF_RANGE(env, "oaep_label is too big"); + return THROW_ERR_OUT_OF_RANGE(env, "oaepLabel is too big"); std::unique_ptr out; if (!Cipher( diff --git a/src/crypto/crypto_clienthello-inl.h b/src/crypto/crypto_clienthello-inl.h index 4f133e83832d1ef..1b8a0c00c3074dc 100644 --- a/src/crypto/crypto_clienthello-inl.h +++ b/src/crypto/crypto_clienthello-inl.h @@ -51,7 +51,7 @@ inline void ClientHelloParser::Reset() { inline void ClientHelloParser::Start(ClientHelloParser::OnHelloCb onhello_cb, ClientHelloParser::OnEndCb onend_cb, - void* onend_arg) { + void* cb_arg) { if (!IsEnded()) return; Reset(); @@ -61,7 +61,7 @@ inline void ClientHelloParser::Start(ClientHelloParser::OnHelloCb onhello_cb, state_ = kWaiting; onhello_cb_ = onhello_cb; onend_cb_ = onend_cb; - cb_arg_ = onend_arg; + cb_arg_ = cb_arg; } inline void ClientHelloParser::End() { diff --git a/src/crypto/crypto_clienthello.h b/src/crypto/crypto_clienthello.h index 0d3bf60f96bc694..3af08bc6475ecfc 100644 --- a/src/crypto/crypto_clienthello.h +++ b/src/crypto/crypto_clienthello.h @@ -66,7 +66,7 @@ class ClientHelloParser { void Parse(const uint8_t* data, size_t avail); inline void Reset(); - inline void Start(OnHelloCb onhello_cb, OnEndCb onend_cb, void* onend_arg); + inline void Start(OnHelloCb onhello_cb, OnEndCb onend_cb, void* cb_arg); inline void End(); inline bool IsPaused() const; inline bool IsEnded() const; diff --git a/src/crypto/crypto_common.cc b/src/crypto/crypto_common.cc index eab144cfdf663b7..3bf480f8f0c77d4 100644 --- a/src/crypto/crypto_common.cc +++ b/src/crypto/crypto_common.cc @@ -71,16 +71,19 @@ void LogSecret( const unsigned char* secret, size_t secretlen) { auto keylog_cb = SSL_CTX_get_keylog_callback(SSL_get_SSL_CTX(ssl.get())); - unsigned char crandom[32]; + // All supported versions of TLS/SSL fix the client random to the same size. + constexpr size_t kTlsClientRandomSize = SSL3_RANDOM_SIZE; + unsigned char crandom[kTlsClientRandomSize]; if (keylog_cb == nullptr || - SSL_get_client_random(ssl.get(), crandom, 32) != 32) { + SSL_get_client_random(ssl.get(), crandom, kTlsClientRandomSize) != + kTlsClientRandomSize) { return; } std::string line = name; - line += " " + StringBytes::hex_encode( - reinterpret_cast(crandom), 32); + line += " " + StringBytes::hex_encode(reinterpret_cast(crandom), + kTlsClientRandomSize); line += " " + StringBytes::hex_encode( reinterpret_cast(secret), secretlen); keylog_cb(ssl.get(), line.c_str()); @@ -320,8 +323,9 @@ constexpr auto GetCipherVersion = GetCipherValue; StackOfX509 CloneSSLCerts(X509Pointer&& cert, const STACK_OF(X509)* const ssl_certs) { StackOfX509 peer_certs(sk_X509_new(nullptr)); - if (cert) - sk_X509_push(peer_certs.get(), cert.release()); + if (!peer_certs) return StackOfX509(); + if (cert && !sk_X509_push(peer_certs.get(), cert.release())) + return StackOfX509(); for (int i = 0; i < sk_X509_num(ssl_certs); i++) { X509Pointer cert(X509_dup(sk_X509_value(ssl_certs, i))); if (!cert || !sk_X509_push(peer_certs.get(), cert.get())) diff --git a/src/crypto/crypto_context.cc b/src/crypto/crypto_context.cc index 2265cfb63d08517..7eab9de37cb3a17 100644 --- a/src/crypto/crypto_context.cc +++ b/src/crypto/crypto_context.cc @@ -285,7 +285,6 @@ Local SecureContext::GetConstructorTemplate( SetProtoMethod(isolate, tmpl, "close", Close); SetProtoMethod(isolate, tmpl, "loadPKCS12", LoadPKCS12); SetProtoMethod(isolate, tmpl, "setTicketKeys", SetTicketKeys); - SetProtoMethod(isolate, tmpl, "setFreeListLength", SetFreeListLength); SetProtoMethod( isolate, tmpl, "enableTicketKeyCallback", EnableTicketKeyCallback); @@ -365,7 +364,6 @@ void SecureContext::RegisterExternalReferences( registry->Register(Close); registry->Register(LoadPKCS12); registry->Register(SetTicketKeys); - registry->Register(SetFreeListLength); registry->Register(EnableTicketKeyCallback); registry->Register(GetTicketKeys); registry->Register(GetCertificate); @@ -503,8 +501,8 @@ void SecureContext::Init(const FunctionCallbackInfo& args) { max_version = TLS1_2_VERSION; method = TLS_client_method(); } else { - const std::string msg("Unknown method: "); - THROW_ERR_TLS_INVALID_PROTOCOL_METHOD(env, (msg + * sslmethod).c_str()); + THROW_ERR_TLS_INVALID_PROTOCOL_METHOD( + env, "Unknown method: %s", *sslmethod); return; } } @@ -1121,9 +1119,6 @@ void SecureContext::SetTicketKeys(const FunctionCallbackInfo& args) { #endif // !def(OPENSSL_NO_TLSEXT) && def(SSL_CTX_get_tlsext_ticket_keys) } -void SecureContext::SetFreeListLength(const FunctionCallbackInfo& args) { -} - // Currently, EnableTicketKeyCallback and TicketKeyCallback are only present for // the regression test in test/parallel/test-https-resume-after-renew.js. void SecureContext::EnableTicketKeyCallback( diff --git a/src/crypto/crypto_context.h b/src/crypto/crypto_context.h index ee2df97ac214119..4dfd0dfa032cf7e 100644 --- a/src/crypto/crypto_context.h +++ b/src/crypto/crypto_context.h @@ -100,8 +100,6 @@ class SecureContext final : public BaseObject { #endif // !OPENSSL_NO_ENGINE static void GetTicketKeys(const v8::FunctionCallbackInfo& args); static void SetTicketKeys(const v8::FunctionCallbackInfo& args); - static void SetFreeListLength( - const v8::FunctionCallbackInfo& args); static void EnableTicketKeyCallback( const v8::FunctionCallbackInfo& args); static void CtxGetter(const v8::FunctionCallbackInfo& info); diff --git a/src/crypto/crypto_ec.cc b/src/crypto/crypto_ec.cc index 0c14b09f638596b..2fc759e452fec92 100644 --- a/src/crypto/crypto_ec.cc +++ b/src/crypto/crypto_ec.cc @@ -109,23 +109,14 @@ void ECDH::RegisterExternalReferences(ExternalReferenceRegistry* registry) { void ECDH::GetCurves(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); const size_t num_curves = EC_get_builtin_curves(nullptr, 0); - - if (num_curves) { - std::vector curves(num_curves); - - if (EC_get_builtin_curves(curves.data(), num_curves)) { - std::vector> arr(num_curves); - - for (size_t i = 0; i < num_curves; i++) - arr[i] = OneByteString(env->isolate(), OBJ_nid2sn(curves[i].nid)); - - args.GetReturnValue().Set( - Array::New(env->isolate(), arr.data(), arr.size())); - return; - } - } - - args.GetReturnValue().Set(Array::New(env->isolate())); + std::vector curves(num_curves); + CHECK_EQ(EC_get_builtin_curves(curves.data(), num_curves), num_curves); + + std::vector> arr(num_curves); + std::transform(curves.begin(), curves.end(), arr.begin(), [env](auto& curve) { + return OneByteString(env->isolate(), OBJ_nid2sn(curve.nid)); + }); + args.GetReturnValue().Set(Array::New(env->isolate(), arr.data(), arr.size())); } ECDH::ECDH(Environment* env, Local wrap, ECKeyPointer&& key) diff --git a/src/crypto/crypto_hkdf.cc b/src/crypto/crypto_hkdf.cc index 79a84c12f55853c..43bf8a93505bb78 100644 --- a/src/crypto/crypto_hkdf.cc +++ b/src/crypto/crypto_hkdf.cc @@ -58,7 +58,7 @@ Maybe HKDFTraits::AdditionalConfig( Utf8Value hash(env->isolate(), args[offset]); params->digest = EVP_get_digestbyname(*hash); if (params->digest == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env); + THROW_ERR_CRYPTO_INVALID_DIGEST(env, "Invalid digest: %s", *hash); return Nothing(); } @@ -103,20 +103,44 @@ bool HKDFTraits::DeriveBits( EVPKeyCtxPointer ctx = EVPKeyCtxPointer(EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, nullptr)); if (!ctx || !EVP_PKEY_derive_init(ctx.get()) || - !EVP_PKEY_CTX_hkdf_mode(ctx.get(), - EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND) || !EVP_PKEY_CTX_set_hkdf_md(ctx.get(), params.digest) || - !EVP_PKEY_CTX_set1_hkdf_salt( - ctx.get(), params.salt.data(), params.salt.size()) || - !EVP_PKEY_CTX_set1_hkdf_key( - ctx.get(), - reinterpret_cast(params.key->GetSymmetricKey()), - params.key->GetSymmetricKeySize()) || !EVP_PKEY_CTX_add1_hkdf_info( ctx.get(), params.info.data(), params.info.size())) { return false; } + // TODO(panva): Once support for OpenSSL 1.1.1 is dropped the whole + // of HKDFTraits::DeriveBits can be refactored to use + // EVP_KDF which does handle zero length key. + + std::string_view salt; + if (params.salt.size() != 0) { + salt = {params.salt.data(), params.salt.size()}; + } else { + static const char default_salt[EVP_MAX_MD_SIZE] = {0}; + salt = {default_salt, static_cast(EVP_MD_size(params.digest))}; + } + + // We do not use EVP_PKEY_HKDEF_MODE_EXTRACT_AND_EXPAND and instead implement + // the extraction step ourselves because EVP_PKEY_derive does not handle + // zero-length keys, which are required for Web Crypto. + unsigned char pseudorandom_key[EVP_MAX_MD_SIZE]; + unsigned int prk_len = sizeof(pseudorandom_key); + if (HMAC( + params.digest, + salt.data(), + salt.size(), + reinterpret_cast(params.key->GetSymmetricKey()), + params.key->GetSymmetricKeySize(), + pseudorandom_key, + &prk_len) == nullptr) { + return false; + } + if (!EVP_PKEY_CTX_hkdf_mode(ctx.get(), EVP_PKEY_HKDEF_MODE_EXPAND_ONLY) || + !EVP_PKEY_CTX_set1_hkdf_key(ctx.get(), pseudorandom_key, prk_len)) { + return false; + } + size_t length = params.length; ByteSource::Builder buf(length); if (EVP_PKEY_derive(ctx.get(), buf.data(), &length) <= 0) diff --git a/src/crypto/crypto_hmac.cc b/src/crypto/crypto_hmac.cc index 2e1c97ce48036df..ed78e21f118a184 100644 --- a/src/crypto/crypto_hmac.cc +++ b/src/crypto/crypto_hmac.cc @@ -72,7 +72,8 @@ void Hmac::HmacInit(const char* hash_type, const char* key, int key_len) { const EVP_MD* md = EVP_get_digestbyname(hash_type); if (md == nullptr) - return THROW_ERR_CRYPTO_INVALID_DIGEST(env()); + return THROW_ERR_CRYPTO_INVALID_DIGEST( + env(), "Invalid digest: %s", hash_type); if (key_len == 0) { key = ""; } @@ -189,7 +190,7 @@ Maybe HmacTraits::AdditionalConfig( Utf8Value digest(env->isolate(), args[offset + 1]); params->digest = EVP_get_digestbyname(*digest); if (params->digest == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env); + THROW_ERR_CRYPTO_INVALID_DIGEST(env, "Invalid digest: %s", *digest); return Nothing(); } diff --git a/src/crypto/crypto_keygen.cc b/src/crypto/crypto_keygen.cc index e4e9c2274583977..af489967144d32b 100644 --- a/src/crypto/crypto_keygen.cc +++ b/src/crypto/crypto_keygen.cc @@ -65,14 +65,11 @@ Maybe SecretKeyGenTraits::AdditionalConfig( SecretKeyGenConfig* params) { Environment* env = Environment::GetCurrent(args); CHECK(args[*offset]->IsUint32()); - params->length = static_cast( - std::trunc(args[*offset].As()->Value() / CHAR_BIT)); + params->length = args[*offset].As()->Value() / CHAR_BIT; if (params->length > INT_MAX) { - const std::string msg{ - SPrintF("length must be less than or equal to %s bits", - static_cast(INT_MAX) * CHAR_BIT) - }; - THROW_ERR_OUT_OF_RANGE(env, msg.c_str()); + THROW_ERR_OUT_OF_RANGE(env, + "length must be less than or equal to %u bits", + static_cast(INT_MAX) * CHAR_BIT); return Nothing(); } *offset += 1; diff --git a/src/crypto/crypto_keygen.h b/src/crypto/crypto_keygen.h index 01407de83c7b140..ed7d5c0601fff12 100644 --- a/src/crypto/crypto_keygen.h +++ b/src/crypto/crypto_keygen.h @@ -186,16 +186,12 @@ struct KeyPairGenTraits final { AdditionalParameters* params, v8::Local* result) { v8::Local keys[2]; - if (ManagedEVPPKey::ToEncodedPublicKey( - env, - std::move(params->key), - params->public_key_encoding, - &keys[0]).IsNothing() || - ManagedEVPPKey::ToEncodedPrivateKey( - env, - std::move(params->key), - params->private_key_encoding, - &keys[1]).IsNothing()) { + if (params->key + .ToEncodedPublicKey(env, params->public_key_encoding, &keys[0]) + .IsNothing() || + params->key + .ToEncodedPrivateKey(env, params->private_key_encoding, &keys[1]) + .IsNothing()) { return v8::Nothing(); } *result = v8::Array::New(env->isolate(), keys, arraysize(keys)); @@ -204,8 +200,8 @@ struct KeyPairGenTraits final { }; struct SecretKeyGenConfig final : public MemoryRetainer { - size_t length; // Expressed a a number of bits - char* out = nullptr; // Placeholder for the generated key bytes + size_t length; // In bytes. + char* out = nullptr; // Placeholder for the generated key bytes. void MemoryInfo(MemoryTracker* tracker) const override; SET_MEMORY_INFO_NAME(SecretKeyGenConfig) diff --git a/src/crypto/crypto_keys.cc b/src/crypto/crypto_keys.cc index 4cc3c3d1e1d830d..d52ffeb9d444306 100644 --- a/src/crypto/crypto_keys.cc +++ b/src/crypto/crypto_keys.cc @@ -633,44 +633,42 @@ Maybe ExportJWKInner(Environment* env, Maybe ManagedEVPPKey::ToEncodedPublicKey( Environment* env, - ManagedEVPPKey key, const PublicKeyEncodingConfig& config, Local* out) { - if (!key) return Nothing(); + if (!*this) return Nothing(); if (config.output_key_object_) { // Note that this has the downside of containing sensitive data of the // private key. std::shared_ptr data = - KeyObjectData::CreateAsymmetric(kKeyTypePublic, std::move(key)); + KeyObjectData::CreateAsymmetric(kKeyTypePublic, *this); return Tristate(KeyObjectHandle::Create(env, data).ToLocal(out)); } else if (config.format_ == kKeyFormatJWK) { std::shared_ptr data = - KeyObjectData::CreateAsymmetric(kKeyTypePublic, std::move(key)); + KeyObjectData::CreateAsymmetric(kKeyTypePublic, *this); *out = Object::New(env->isolate()); return ExportJWKInner(env, data, *out, false); } - return Tristate(WritePublicKey(env, key.get(), config).ToLocal(out)); + return Tristate(WritePublicKey(env, get(), config).ToLocal(out)); } Maybe ManagedEVPPKey::ToEncodedPrivateKey( Environment* env, - ManagedEVPPKey key, const PrivateKeyEncodingConfig& config, Local* out) { - if (!key) return Nothing(); + if (!*this) return Nothing(); if (config.output_key_object_) { std::shared_ptr data = - KeyObjectData::CreateAsymmetric(kKeyTypePrivate, std::move(key)); + KeyObjectData::CreateAsymmetric(kKeyTypePrivate, *this); return Tristate(KeyObjectHandle::Create(env, data).ToLocal(out)); } else if (config.format_ == kKeyFormatJWK) { std::shared_ptr data = - KeyObjectData::CreateAsymmetric(kKeyTypePrivate, std::move(key)); + KeyObjectData::CreateAsymmetric(kKeyTypePrivate, *this); *out = Object::New(env->isolate()); return ExportJWKInner(env, data, *out, false); } - return Tristate(WritePrivateKey(env, key.get(), config).ToLocal(out)); + return Tristate(WritePrivateKey(env, get(), config).ToLocal(out)); } NonCopyableMaybe @@ -841,20 +839,13 @@ ManagedEVPPKey ManagedEVPPKey::GetParsedKey(Environment* env, return ManagedEVPPKey(std::move(pkey)); } -KeyObjectData::KeyObjectData( - ByteSource symmetric_key) +KeyObjectData::KeyObjectData(ByteSource symmetric_key) : key_type_(KeyType::kKeyTypeSecret), symmetric_key_(std::move(symmetric_key)), - symmetric_key_len_(symmetric_key_.size()), asymmetric_key_() {} -KeyObjectData::KeyObjectData( - KeyType type, - const ManagedEVPPKey& pkey) - : key_type_(type), - symmetric_key_(), - symmetric_key_len_(0), - asymmetric_key_{pkey} {} +KeyObjectData::KeyObjectData(KeyType type, const ManagedEVPPKey& pkey) + : key_type_(type), symmetric_key_(), asymmetric_key_{pkey} {} void KeyObjectData::MemoryInfo(MemoryTracker* tracker) const { switch (GetKeyType()) { @@ -872,7 +863,6 @@ void KeyObjectData::MemoryInfo(MemoryTracker* tracker) const { } std::shared_ptr KeyObjectData::CreateSecret(ByteSource key) { - CHECK(key); return std::shared_ptr(new KeyObjectData(std::move(key))); } @@ -899,7 +889,7 @@ const char* KeyObjectData::GetSymmetricKey() const { size_t KeyObjectData::GetSymmetricKeySize() const { CHECK_EQ(key_type_, kKeyTypeSecret); - return symmetric_key_len_; + return symmetric_key_.size(); } v8::Local KeyObjectHandle::Initialize(Environment* env) { diff --git a/src/crypto/crypto_keys.h b/src/crypto/crypto_keys.h index d06565d8ad74a32..7b9c8d7e4ff55fa 100644 --- a/src/crypto/crypto_keys.h +++ b/src/crypto/crypto_keys.h @@ -112,17 +112,13 @@ class ManagedEVPPKey : public MemoryRetainer { unsigned int* offset, bool allow_key_object); - static v8::Maybe ToEncodedPublicKey( - Environment* env, - ManagedEVPPKey key, - const PublicKeyEncodingConfig& config, - v8::Local* out); + v8::Maybe ToEncodedPublicKey(Environment* env, + const PublicKeyEncodingConfig& config, + v8::Local* out); - static v8::Maybe ToEncodedPrivateKey( - Environment* env, - ManagedEVPPKey key, - const PrivateKeyEncodingConfig& config, - v8::Local* out); + v8::Maybe ToEncodedPrivateKey(Environment* env, + const PrivateKeyEncodingConfig& config, + v8::Local* out); private: size_t size_of_private_key() const; @@ -162,7 +158,6 @@ class KeyObjectData : public MemoryRetainer { const KeyType key_type_; const ByteSource symmetric_key_; - const unsigned int symmetric_key_len_; const ManagedEVPPKey asymmetric_key_; }; diff --git a/src/crypto/crypto_rsa.cc b/src/crypto/crypto_rsa.cc index 57cec1a8fd2b51f..ec339e5635d419d 100644 --- a/src/crypto/crypto_rsa.cc +++ b/src/crypto/crypto_rsa.cc @@ -153,7 +153,7 @@ Maybe RsaKeyGenTraits::AdditionalConfig( Utf8Value digest(env->isolate(), args[*offset]); params->params.md = EVP_get_digestbyname(*digest); if (params->params.md == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env, "md specifies an invalid digest"); + THROW_ERR_CRYPTO_INVALID_DIGEST(env, "Invalid digest: %s", *digest); return Nothing(); } } @@ -163,8 +163,8 @@ Maybe RsaKeyGenTraits::AdditionalConfig( Utf8Value digest(env->isolate(), args[*offset + 1]); params->params.mgf1_md = EVP_get_digestbyname(*digest); if (params->params.mgf1_md == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env, - "mgf1_md specifies an invalid digest"); + THROW_ERR_CRYPTO_INVALID_DIGEST( + env, "Invalid MGF1 digest: %s", *digest); return Nothing(); } } @@ -328,7 +328,7 @@ Maybe RSACipherTraits::AdditionalConfig( params->digest = EVP_get_digestbyname(*digest); if (params->digest == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env); + THROW_ERR_CRYPTO_INVALID_DIGEST(env, "Invalid digest: %s", *digest); return Nothing(); } diff --git a/src/crypto/crypto_sig.cc b/src/crypto/crypto_sig.cc index 72f98788d17539c..92188911b35a4de 100644 --- a/src/crypto/crypto_sig.cc +++ b/src/crypto/crypto_sig.cc @@ -647,7 +647,7 @@ Maybe SignTraits::AdditionalConfig( Utf8Value digest(env->isolate(), args[offset + 6]); params->digest = EVP_get_digestbyname(*digest); if (params->digest == nullptr) { - THROW_ERR_CRYPTO_INVALID_DIGEST(env); + THROW_ERR_CRYPTO_INVALID_DIGEST(env, "Invalid digest: %s", *digest); return Nothing(); } } diff --git a/src/crypto/crypto_tls.cc b/src/crypto/crypto_tls.cc index 849b21f28dfda8e..1135448b1e29411 100644 --- a/src/crypto/crypto_tls.cc +++ b/src/crypto/crypto_tls.cc @@ -246,13 +246,13 @@ int SelectALPNCallback( in, inlen); - // According to 3.2. Protocol Selection of RFC7301, fatal - // no_application_protocol alert shall be sent but OpenSSL 1.0.2 does not - // support it yet. See - // https://rt.openssl.org/Ticket/Display.html?id=3463&user=guest&pass=guest - return status == OPENSSL_NPN_NEGOTIATED - ? SSL_TLSEXT_ERR_OK - : SSL_TLSEXT_ERR_NOACK; + // Previous versions of Node.js returned SSL_TLSEXT_ERR_NOACK if no protocol + // match was found. This would neither cause a fatal alert nor would it result + // in a useful ALPN response as part of the Server Hello message. + // We now return SSL_TLSEXT_ERR_ALERT_FATAL in that case as per Section 3.2 + // of RFC 7301, which causes a fatal no_application_protocol alert. + return status == OPENSSL_NPN_NEGOTIATED ? SSL_TLSEXT_ERR_OK + : SSL_TLSEXT_ERR_ALERT_FATAL; } int TLSExtStatusCallback(SSL* s, void* arg) { diff --git a/src/crypto/crypto_util.cc b/src/crypto/crypto_util.cc index 5cbf553e46e3c08..7255344276d73d6 100644 --- a/src/crypto/crypto_util.cc +++ b/src/crypto/crypto_util.cc @@ -76,10 +76,16 @@ void CheckEntropy() { bool EntropySource(unsigned char* buffer, size_t length) { // Ensure that OpenSSL's PRNG is properly seeded. CheckEntropy(); - // RAND_bytes() can return 0 to indicate that the entropy data is not truly - // random. That's okay, it's still better than V8's stock source of entropy, - // which is /dev/urandom on UNIX platforms and the current time on Windows. - return RAND_bytes(buffer, length) != -1; + // If RAND_bytes() returns 0 or -1, the data might not be random at all. In + // that case, return false, which causes V8 to use its own entropy source. The + // quality of V8's entropy source depends on multiple factors and we should + // not assume that it is cryptographically secure (even though it often is). + // However, even if RAND_bytes() fails and V8 resorts to its potentially weak + // entropy source, it really does not matter much: V8 only uses the entropy + // source to seed its own PRNG, which itself is not cryptographically secure. + // In other words, even a cryptographically secure entropy source would not + // guarantee cryptographically secure random numbers in V8. + return RAND_bytes(buffer, length) == 1; } int PasswordCallback(char* buf, int size, int rwflag, void* u) { @@ -673,22 +679,21 @@ CryptoJobMode GetCryptoJobMode(v8::Local args) { } namespace { -// SecureBuffer uses openssl to allocate a Uint8Array using -// OPENSSL_secure_malloc. Because we do not yet actually -// make use of secure heap, this has the same semantics as +// SecureBuffer uses OPENSSL_secure_malloc to allocate a Uint8Array. +// Without --secure-heap, OpenSSL's secure heap is disabled, +// in which case this has the same semantics as // using OPENSSL_malloc. However, if the secure heap is // initialized, SecureBuffer will automatically use it. void SecureBuffer(const FunctionCallbackInfo& args) { CHECK(args[0]->IsUint32()); Environment* env = Environment::GetCurrent(args); uint32_t len = args[0].As()->Value(); - char* data = static_cast(OPENSSL_secure_malloc(len)); + void* data = OPENSSL_secure_zalloc(len); if (data == nullptr) { // There's no memory available for the allocation. // Return nothing. return; } - memset(data, 0, len); std::shared_ptr store = ArrayBuffer::NewBackingStore( data, diff --git a/src/crypto/crypto_util.h b/src/crypto/crypto_util.h index 4afae1884fe40e0..f1fbd6c2471cbe9 100644 --- a/src/crypto/crypto_util.h +++ b/src/crypto/crypto_util.h @@ -134,7 +134,7 @@ struct MarkPopErrorOnReturn { void CheckEntropy(); // Generate length bytes of random data. If this returns false, the data -// may not be truly random but it's still generally good enough. +// might not be random at all and should not be used. bool EntropySource(unsigned char* buffer, size_t length); int PasswordCallback(char* buf, int size, int rwflag, void* u); diff --git a/src/debug_utils-inl.h b/src/debug_utils-inl.h index d87dd62c8952afb..0fb760834d57921 100644 --- a/src/debug_utils-inl.h +++ b/src/debug_utils-inl.h @@ -29,7 +29,7 @@ struct ToStringHelper { static std::string Convert(bool value) { return value ? "true" : "false"; } template ::value, int>::type = 0> + typename = std::enable_if_t>> static std::string BaseConvert(const T& value) { auto v = static_cast(value); char ret[3 * sizeof(T)]; @@ -45,7 +45,7 @@ struct ToStringHelper { } template ::value, int>::type = 0> + typename = std::enable_if_t>> static std::string BaseConvert(T value) { return Convert(std::forward(value)); } diff --git a/src/debug_utils.cc b/src/debug_utils.cc index f721a672f10e671..69ef383ed22ca8c 100644 --- a/src/debug_utils.cc +++ b/src/debug_utils.cc @@ -63,10 +63,10 @@ void EnabledDebugList::Parse(std::shared_ptr env_vars, v8::Isolate* isolate) { std::string cats; credentials::SafeGetenv("NODE_DEBUG_NATIVE", &cats, env_vars, isolate); - Parse(cats, true); + Parse(cats); } -void EnabledDebugList::Parse(const std::string& cats, bool enabled) { +void EnabledDebugList::Parse(const std::string& cats) { std::string debug_categories = cats; while (!debug_categories.empty()) { std::string::size_type comma_pos = debug_categories.find(','); @@ -76,7 +76,7 @@ void EnabledDebugList::Parse(const std::string& cats, bool enabled) { { \ static const std::string available_category = ToLower(#name); \ if (available_category.find(wanted) != std::string::npos) \ - set_enabled(DebugCategory::name, enabled); \ + set_enabled(DebugCategory::name); \ } DEBUG_CATEGORY_NAMES(V) diff --git a/src/debug_utils.h b/src/debug_utils.h index 19847e465492637..e2e702f586e20fa 100644 --- a/src/debug_utils.h +++ b/src/debug_utils.h @@ -51,20 +51,21 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str); V(WASI) \ V(MKSNAPSHOT) -enum class DebugCategory { +enum class DebugCategory : unsigned int { #define V(name) name, DEBUG_CATEGORY_NAMES(V) #undef V - CATEGORY_COUNT }; +#define V(name) +1 +constexpr unsigned int kDebugCategoryCount = DEBUG_CATEGORY_NAMES(V); +#undef V + class NODE_EXTERN_PRIVATE EnabledDebugList { public: - bool enabled(DebugCategory category) const { - DCHECK_GE(static_cast(category), 0); - DCHECK_LT(static_cast(category), - static_cast(DebugCategory::CATEGORY_COUNT)); - return enabled_[static_cast(category)]; + bool FORCE_INLINE enabled(DebugCategory category) const { + DCHECK_LT(static_cast(category), kDebugCategoryCount); + return enabled_[static_cast(category)]; } // Uses NODE_DEBUG_NATIVE to initialize the categories. The env_vars variable @@ -74,16 +75,14 @@ class NODE_EXTERN_PRIVATE EnabledDebugList { v8::Isolate* isolate = nullptr); private: - // Set all categories matching cats to the value of enabled. - void Parse(const std::string& cats, bool enabled); - void set_enabled(DebugCategory category, bool enabled) { - DCHECK_GE(static_cast(category), 0); - DCHECK_LT(static_cast(category), - static_cast(DebugCategory::CATEGORY_COUNT)); + // Enable all categories matching cats. + void Parse(const std::string& cats); + void set_enabled(DebugCategory category) { + DCHECK_LT(static_cast(category), kDebugCategoryCount); enabled_[static_cast(category)] = true; } - bool enabled_[static_cast(DebugCategory::CATEGORY_COUNT)] = {false}; + bool enabled_[kDebugCategoryCount] = {false}; }; template diff --git a/src/env-inl.h b/src/env-inl.h index f6b340d8149b88a..569737ea2119a88 100644 --- a/src/env-inl.h +++ b/src/env-inl.h @@ -31,6 +31,7 @@ #include "node_context_data.h" #include "node_internals.h" #include "node_perf_common.h" +#include "node_realm-inl.h" #include "util-inl.h" #include "uv.h" #include "v8.h" @@ -177,16 +178,7 @@ inline Environment* Environment::GetCurrent(v8::Isolate* isolate) { } inline Environment* Environment::GetCurrent(v8::Local context) { - if (UNLIKELY(context.IsEmpty())) { - return nullptr; - } - if (UNLIKELY(context->GetNumberOfEmbedderDataFields() <= - ContextEmbedderIndex::kContextTag)) { - return nullptr; - } - if (UNLIKELY(context->GetAlignedPointerFromEmbedderData( - ContextEmbedderIndex::kContextTag) != - Environment::kNodeContextTagPtr)) { + if (UNLIKELY(!ContextEmbedderTag::IsNodeContext(context))) { return nullptr; } return static_cast( @@ -623,15 +615,7 @@ inline void Environment::set_can_call_into_js(bool can_call_into_js) { } inline bool Environment::has_run_bootstrapping_code() const { - return has_run_bootstrapping_code_; -} - -inline void Environment::DoneBootstrapping() { - has_run_bootstrapping_code_ = true; - // This adjusts the return value of base_object_created_after_bootstrap() so - // that tests that check the count do not have to account for internally - // created BaseObjects. - base_object_created_by_bootstrap_ = base_object_count_; + return principal_realm_->has_run_bootstrapping_code(); } inline bool Environment::has_serialized_options() const { @@ -664,7 +648,8 @@ inline bool Environment::owns_inspector() const { } inline bool Environment::should_create_inspector() const { - return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0; + return (flags_ & EnvironmentFlags::kNoCreateInspector) == 0 && + !options_->test_runner && !options_->watch_mode; } inline bool Environment::tracks_unmanaged_fds() const { @@ -835,29 +820,22 @@ void Environment::ForEachBaseObject(T&& iterator) { } } -template -void Environment::ForEachBindingData(T&& iterator) { - BindingDataStore* map = static_cast( - context()->GetAlignedPointerFromEmbedderData( - ContextEmbedderIndex::kBindingListIndex)); - DCHECK_NOT_NULL(map); - for (auto& it : *map) { - iterator(it.first, it.second); - } -} - void Environment::modify_base_object_count(int64_t delta) { base_object_count_ += delta; } -int64_t Environment::base_object_created_after_bootstrap() const { - return base_object_count_ - base_object_created_by_bootstrap_; -} - int64_t Environment::base_object_count() const { return base_object_count_; } +inline void Environment::set_base_object_created_by_bootstrap(int64_t count) { + base_object_created_by_bootstrap_ = base_object_count_; +} + +int64_t Environment::base_object_created_after_bootstrap() const { + return base_object_count_ - base_object_created_by_bootstrap_; +} + void Environment::set_main_utf16(std::unique_ptr str) { CHECK(!main_utf16_); main_utf16_ = std::move(str); @@ -922,16 +900,22 @@ void Environment::set_process_exit_handler( #define V(PropertyName, TypeName) \ inline v8::Local Environment::PropertyName() const { \ - return PersistentToLocal::Strong(PropertyName##_); \ + DCHECK_NOT_NULL(principal_realm_); \ + return principal_realm_->PropertyName(); \ } \ inline void Environment::set_##PropertyName(v8::Local value) { \ - PropertyName##_.Reset(isolate(), value); \ + DCHECK_NOT_NULL(principal_realm_); \ + principal_realm_->set_##PropertyName(value); \ } - ENVIRONMENT_STRONG_PERSISTENT_VALUES(V) + PER_REALM_STRONG_PERSISTENT_VALUES(V) #undef V v8::Local Environment::context() const { - return PersistentToLocal::Strong(context_); + return principal_realm()->context(); +} + +Realm* Environment::principal_realm() const { + return principal_realm_.get(); } } // namespace node diff --git a/src/env.cc b/src/env.cc index 4ba976f21b42808..9d3602d24aae35e 100644 --- a/src/env.cc +++ b/src/env.cc @@ -6,6 +6,7 @@ #include "memory_tracker-inl.h" #include "node_buffer.h" #include "node_context_data.h" +#include "node_contextify.h" #include "node_errors.h" #include "node_internals.h" #include "node_options-inl.h" @@ -61,9 +62,9 @@ using v8::WeakCallbackInfo; using v8::WeakCallbackType; using worker::Worker; -int const Environment::kNodeContextTag = 0x6e6f64; -void* const Environment::kNodeContextTagPtr = const_cast( - static_cast(&Environment::kNodeContextTag)); +int const ContextEmbedderTag::kNodeContextTag = 0x6e6f64; +void* const ContextEmbedderTag::kNodeContextTagPtr = const_cast( + static_cast(&ContextEmbedderTag::kNodeContextTag)); void AsyncHooks::SetJSPromiseHooks(Local init, Local before, @@ -444,6 +445,14 @@ void IsolateData::CreateProperties() { #undef V // TODO(legendecas): eagerly create per isolate templates. + Local templ = FunctionTemplate::New(isolate()); + templ->InstanceTemplate()->SetInternalFieldCount( + BaseObject::kInternalFieldCount); + templ->Inherit(BaseObject::GetConstructorTemplate(this)); + set_binding_data_ctor_template(templ); + + set_contextify_global_template( + contextify::ContextifyContext::CreateGlobalTemplate(isolate_)); } IsolateData::IsolateData(Isolate* isolate, @@ -496,6 +505,10 @@ void TrackingTraceStateObserver::UpdateTraceCategoryState() { return; } + if (env_->principal_realm() == nullptr) { + return; + } + bool async_hooks_enabled = (*(TRACE_EVENT_API_GET_CATEGORY_GROUP_ENABLED( TRACING_CATEGORY_NODE1(async_hooks)))) != 0; @@ -511,16 +524,22 @@ void TrackingTraceStateObserver::UpdateTraceCategoryState() { } void Environment::AssignToContext(Local context, + Realm* realm, const ContextInfo& info) { context->SetAlignedPointerInEmbedderData(ContextEmbedderIndex::kEnvironment, this); - // Used by Environment::GetCurrent to know that we are on a node context. - context->SetAlignedPointerInEmbedderData(ContextEmbedderIndex::kContextTag, - Environment::kNodeContextTagPtr); + context->SetAlignedPointerInEmbedderData(ContextEmbedderIndex::kRealm, realm); // Used to retrieve bindings context->SetAlignedPointerInEmbedderData( ContextEmbedderIndex::kBindingListIndex, &(this->bindings_)); + // ContextifyContexts will update this to a pointer to the native object. + context->SetAlignedPointerInEmbedderData( + ContextEmbedderIndex::kContextifyContext, nullptr); + + // This must not be done before other context fields are initialized. + ContextEmbedderTag::TagNodeContext(context); + #if HAVE_INSPECTOR inspector_agent()->ContextCreated(context, info); #endif // HAVE_INSPECTOR @@ -584,56 +603,6 @@ std::unique_ptr Environment::release_managed_buffer( return bs; } -void Environment::CreateProperties() { - HandleScope handle_scope(isolate_); - Local ctx = context(); - - { - Context::Scope context_scope(ctx); - Local templ = FunctionTemplate::New(isolate()); - templ->InstanceTemplate()->SetInternalFieldCount( - BaseObject::kInternalFieldCount); - templ->Inherit(BaseObject::GetConstructorTemplate(this)); - - set_binding_data_ctor_template(templ); - } - - // Store primordials setup by the per-context script in the environment. - Local per_context_bindings = - GetPerContextExports(ctx).ToLocalChecked(); - Local primordials = - per_context_bindings->Get(ctx, primordials_string()).ToLocalChecked(); - CHECK(primordials->IsObject()); - set_primordials(primordials.As()); - - Local prototype_string = - FIXED_ONE_BYTE_STRING(isolate(), "prototype"); - -#define V(EnvPropertyName, PrimordialsPropertyName) \ - { \ - Local ctor = \ - primordials.As() \ - ->Get(ctx, \ - FIXED_ONE_BYTE_STRING(isolate(), PrimordialsPropertyName)) \ - .ToLocalChecked(); \ - CHECK(ctor->IsObject()); \ - Local prototype = \ - ctor.As()->Get(ctx, prototype_string).ToLocalChecked(); \ - CHECK(prototype->IsObject()); \ - set_##EnvPropertyName(prototype.As()); \ - } - - V(primordials_safe_map_prototype_object, "SafeMap"); - V(primordials_safe_set_prototype_object, "SafeSet"); - V(primordials_safe_weak_map_prototype_object, "SafeWeakMap"); - V(primordials_safe_weak_set_prototype_object, "SafeWeakSet"); -#undef V - - Local process_object = - node::CreateProcessObject(this).FromMaybe(Local()); - set_process_object(process_object); -} - std::string GetExecPath(const std::vector& argv) { char exec_path_buf[2 * PATH_MAX]; size_t exec_path_len = sizeof(exec_path_buf); @@ -769,12 +738,11 @@ Environment::Environment(IsolateData* isolate_data, void Environment::InitializeMainContext(Local context, const EnvSerializeInfo* env_info) { - context_.Reset(context->GetIsolate(), context); - AssignToContext(context, ContextInfo("")); + principal_realm_ = std::make_unique( + this, context, MAYBE_FIELD_PTR(env_info, principal_realm)); + AssignToContext(context, principal_realm_.get(), ContextInfo("")); if (env_info != nullptr) { DeserializeProperties(env_info); - } else { - CreateProperties(); } if (!options_->force_async_hooks_checks) { @@ -799,6 +767,9 @@ void Environment::InitializeMainContext(Local context, } Environment::~Environment() { + HandleScope handle_scope(isolate()); + Local ctx = context(); + if (Environment** interrupt_data = interrupt_data_.load()) { // There are pending RequestInterrupt() callbacks. Tell them not to run, // then force V8 to run interrupts by compiling and running an empty script @@ -806,9 +777,8 @@ Environment::~Environment() { *interrupt_data = nullptr; Isolate::AllowJavascriptExecutionScope allow_js_here(isolate()); - HandleScope handle_scope(isolate()); TryCatch try_catch(isolate()); - Context::Scope context_scope(context()); + Context::Scope context_scope(ctx); #ifdef DEBUG bool consistency_check = false; @@ -818,8 +788,8 @@ Environment::~Environment() { #endif Local diff --git a/test/fixtures/wpt/streams/readable-streams/crashtests/strategy-worker.js b/test/fixtures/wpt/streams/readable-streams/crashtests/strategy-worker.js new file mode 100644 index 000000000000000..dd0ab03b55f5f9c --- /dev/null +++ b/test/fixtures/wpt/streams/readable-streams/crashtests/strategy-worker.js @@ -0,0 +1,4 @@ +var b = new CountQueuingStrategy({ highWaterMark: 3 }); + +importScripts("empty.js"); +postMessage("done"); diff --git a/test/fixtures/wpt/streams/readable-streams/cross-realm-crash.window.js b/test/fixtures/wpt/streams/readable-streams/cross-realm-crash.window.js new file mode 100644 index 000000000000000..5fc7ce37a5f6d2d --- /dev/null +++ b/test/fixtures/wpt/streams/readable-streams/cross-realm-crash.window.js @@ -0,0 +1,13 @@ +// This is a repro for a crash bug that existed in Blink. See +// https://crbug.com/1290014. If there's no crash then the test passed. + +test(t => { + const iframeTag = document.createElement('iframe'); + document.body.appendChild(iframeTag); + + const readableStream = new ReadableStream(); + const reader = new iframeTag.contentWindow.ReadableStreamDefaultReader(readableStream); + iframeTag.remove(); + reader.cancel(); + reader.read(); +}, 'should not crash on reading from stream cancelled in destroyed realm'); diff --git a/test/fixtures/wpt/streams/readable-streams/default-reader.any.js b/test/fixtures/wpt/streams/readable-streams/default-reader.any.js index 60c740a8288631d..59d7ab2f74db63f 100644 --- a/test/fixtures/wpt/streams/readable-streams/default-reader.any.js +++ b/test/fixtures/wpt/streams/readable-streams/default-reader.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/rs-utils.js 'use strict'; @@ -512,3 +512,28 @@ promise_test(() => { reader.releaseLock(); }); }, 'controller.close() should clear the list of pending read requests'); + +promise_test(t => { + + let controller; + const rs = new ReadableStream({ + start(c) { + controller = c; + } + }); + + const reader1 = rs.getReader(); + const promise1 = promise_rejects_js(t, TypeError, reader1.read(), 'read() from reader1 should reject when reader1 is released'); + reader1.releaseLock(); + + controller.enqueue('a'); + + const reader2 = rs.getReader(); + const promise2 = reader2.read().then(r => { + assert_object_equals(r, { value: 'a', done: false }, 'read() from reader2 should resolve with enqueued chunk'); + }) + reader2.releaseLock(); + + return Promise.all([promise1, promise2]); + +}, 'Second reader can read chunks after first reader was released with pending read requests'); diff --git a/test/fixtures/wpt/streams/readable-streams/floating-point-total-queue-size.any.js b/test/fixtures/wpt/streams/readable-streams/floating-point-total-queue-size.any.js index 400482a450cad29..50cca3d951a9424 100644 --- a/test/fixtures/wpt/streams/readable-streams/floating-point-total-queue-size.any.js +++ b/test/fixtures/wpt/streams/readable-streams/floating-point-total-queue-size.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; // Due to the limitations of floating-point precision, the calculation of desiredSize sometimes gives different answers diff --git a/test/fixtures/wpt/streams/readable-streams/garbage-collection.any.js b/test/fixtures/wpt/streams/readable-streams/garbage-collection.any.js index dad0ad1535a5bf1..f7e2d06ae5cdf36 100644 --- a/test/fixtures/wpt/streams/readable-streams/garbage-collection.any.js +++ b/test/fixtures/wpt/streams/readable-streams/garbage-collection.any.js @@ -1,8 +1,8 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js 'use strict'; -promise_test(() => { +promise_test(async () => { let controller; new ReadableStream({ @@ -11,7 +11,7 @@ promise_test(() => { } }); - garbageCollect(); + await garbageCollect(); return delay(50).then(() => { controller.close(); @@ -22,7 +22,7 @@ promise_test(() => { }, 'ReadableStreamController methods should continue working properly when scripts lose their reference to the ' + 'readable stream'); -promise_test(() => { +promise_test(async () => { let controller; @@ -32,13 +32,13 @@ promise_test(() => { } }).getReader().closed; - garbageCollect(); + await garbageCollect(); return delay(50).then(() => controller.close()).then(() => closedPromise); }, 'ReadableStream closed promise should fulfill even if the stream and reader JS references are lost'); -promise_test(t => { +promise_test(async t => { const theError = new Error('boo'); let controller; @@ -49,20 +49,20 @@ promise_test(t => { } }).getReader().closed; - garbageCollect(); + await garbageCollect(); return delay(50).then(() => controller.error(theError)) .then(() => promise_rejects_exactly(t, theError, closedPromise)); }, 'ReadableStream closed promise should reject even if stream and reader JS references are lost'); -promise_test(() => { +promise_test(async () => { const rs = new ReadableStream({}); rs.getReader(); - garbageCollect(); + await garbageCollect(); return delay(50).then(() => assert_throws_js(TypeError, () => rs.getReader(), 'old reader should still be locking the stream even after garbage collection')); diff --git a/test/fixtures/wpt/streams/readable-streams/general.any.js b/test/fixtures/wpt/streams/readable-streams/general.any.js index efe7da74ad6c085..2a32b27943c82f3 100644 --- a/test/fixtures/wpt/streams/readable-streams/general.any.js +++ b/test/fixtures/wpt/streams/readable-streams/general.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/rs-utils.js 'use strict'; @@ -630,6 +630,7 @@ promise_test(() => { let pullCalled = 0; let cancelCalled = 0; + /* eslint-disable no-use-before-define */ class Source { start(c) { startCalled++; diff --git a/test/fixtures/wpt/streams/readable-streams/global.html b/test/fixtures/wpt/streams/readable-streams/global.html new file mode 100644 index 000000000000000..08665d318eac889 --- /dev/null +++ b/test/fixtures/wpt/streams/readable-streams/global.html @@ -0,0 +1,162 @@ + + +Ensure Stream objects are created in expected globals. + + + + + + diff --git a/test/fixtures/wpt/streams/readable-streams/patched-global.any.js b/test/fixtures/wpt/streams/readable-streams/patched-global.any.js index d26dc56cfe6953a..a64a054a97f1f5f 100644 --- a/test/fixtures/wpt/streams/readable-streams/patched-global.any.js +++ b/test/fixtures/wpt/streams/readable-streams/patched-global.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; // Tests which patch the global environment are kept separate to avoid @@ -22,6 +22,7 @@ test(t => { const trappedProperties = ['highWaterMark', 'size', 'start', 'type', 'mode']; for (const property of trappedProperties) { + // eslint-disable-next-line no-extend-native, accessor-pairs Object.defineProperty(Object.prototype, property, { get() { throw new Error(`${property} getter called`); }, configurable: true diff --git a/test/fixtures/wpt/streams/readable-streams/reentrant-strategies.any.js b/test/fixtures/wpt/streams/readable-streams/reentrant-strategies.any.js index a02d08b0acc50a4..b4988bc2433fd56 100644 --- a/test/fixtures/wpt/streams/readable-streams/reentrant-strategies.any.js +++ b/test/fixtures/wpt/streams/readable-streams/reentrant-strategies.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/recording-streams.js // META: script=../resources/rs-utils.js // META: script=../resources/test-utils.js diff --git a/test/fixtures/wpt/streams/readable-streams/tee.any.js b/test/fixtures/wpt/streams/readable-streams/tee.any.js index 761f6e9c3599c19..00397932f4b6e34 100644 --- a/test/fixtures/wpt/streams/readable-streams/tee.any.js +++ b/test/fixtures/wpt/streams/readable-streams/tee.any.js @@ -1,7 +1,8 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/rs-utils.js // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js +// META: script=../resources/rs-test-templates.js 'use strict'; test(() => { @@ -161,92 +162,9 @@ promise_test(() => { }, 'ReadableStream teeing: canceling branch2 should not impact branch1'); -promise_test(() => { - - const reason1 = new Error('We\'re wanted men.'); - const reason2 = new Error('I have the death sentence on twelve systems.'); - - let resolve; - const promise = new Promise(r => resolve = r); - const rs = new ReadableStream({ - cancel(reason) { - assert_array_equals(reason, [reason1, reason2], - 'the cancel reason should be an array containing those from the branches'); - resolve(); - } - }); - - const branch = rs.tee(); - const branch1 = branch[0]; - const branch2 = branch[1]; - branch1.cancel(reason1); - branch2.cancel(reason2); - - return promise; - -}, 'ReadableStream teeing: canceling both branches should aggregate the cancel reasons into an array'); - -promise_test(() => { - - const reason1 = new Error('This little one\'s not worth the effort.'); - const reason2 = new Error('Come, let me get you something.'); - - let resolve; - const promise = new Promise(r => resolve = r); - const rs = new ReadableStream({ - cancel(reason) { - assert_array_equals(reason, [reason1, reason2], - 'the cancel reason should be an array containing those from the branches'); - resolve(); - } - }); - - const branch = rs.tee(); - const branch1 = branch[0]; - const branch2 = branch[1]; - return Promise.all([ - branch2.cancel(reason2), - branch1.cancel(reason1), - promise - ]); - -}, 'ReadableStream teeing: canceling both branches in reverse order should aggregate the cancel reasons into an array'); - -promise_test(t => { - - const theError = { name: 'I\'ll be careful.' }; - const rs = new ReadableStream({ - cancel() { - throw theError; - } - }); - - const branch = rs.tee(); - const branch1 = branch[0]; - const branch2 = branch[1]; - - return Promise.all([ - promise_rejects_exactly(t, theError, branch1.cancel()), - promise_rejects_exactly(t, theError, branch2.cancel()) - ]); - -}, 'ReadableStream teeing: failing to cancel the original stream should cause cancel() to reject on branches'); - -promise_test(t => { - - const theError = { name: 'You just watch yourself!' }; - let controller; - const stream = new ReadableStream({ start(c) { controller = c; } }); - const [branch1, branch2] = stream.tee(); - - controller.error(theError); - - return Promise.all([ - promise_rejects_exactly(t, theError, branch1.cancel()), - promise_rejects_exactly(t, theError, branch2.cancel()) - ]); - -}, 'ReadableStream teeing: erroring a teed stream should properly handle canceled branches'); +templatedRSTeeCancel('ReadableStream teeing', (extras) => { + return new ReadableStream({ ...extras }); +}); promise_test(t => { @@ -539,3 +457,23 @@ promise_test(t => { }); }, 'ReadableStreamTee stops pulling when original stream errors while both branches are reading'); + +promise_test(async () => { + + const rs = recordingReadableStream(); + + const [reader1, reader2] = rs.tee().map(branch => branch.getReader()); + const branch1Reads = [reader1.read(), reader1.read()]; + const branch2Reads = [reader2.read(), reader2.read()]; + + await flushAsyncEvents(); + rs.controller.enqueue('a'); + rs.controller.close(); + + assert_object_equals(await branch1Reads[0], { value: 'a', done: false }, 'first chunk from branch1 should be correct'); + assert_object_equals(await branch2Reads[0], { value: 'a', done: false }, 'first chunk from branch2 should be correct'); + + assert_object_equals(await branch1Reads[1], { value: undefined, done: true }, 'second read() from branch1 should be done'); + assert_object_equals(await branch2Reads[1], { value: undefined, done: true }, 'second read() from branch2 should be done'); + +}, 'ReadableStream teeing: enqueue() and close() while both branches are pulling'); diff --git a/test/fixtures/wpt/streams/readable-streams/templated.any.js b/test/fixtures/wpt/streams/readable-streams/templated.any.js index 4d524e69fee19e8..ecae3f4d8b129f7 100644 --- a/test/fixtures/wpt/streams/readable-streams/templated.any.js +++ b/test/fixtures/wpt/streams/readable-streams/templated.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/rs-test-templates.js 'use strict'; diff --git a/test/fixtures/wpt/streams/resources/recording-streams.js b/test/fixtures/wpt/streams/resources/recording-streams.js index 34d02a143dccdb4..661fe512f516c6c 100644 --- a/test/fixtures/wpt/streams/resources/recording-streams.js +++ b/test/fixtures/wpt/streams/resources/recording-streams.js @@ -3,6 +3,7 @@ self.recordingReadableStream = (extras = {}, strategy) => { let controllerToCopyOver; const stream = new ReadableStream({ + type: extras.type, start(controller) { controllerToCopyOver = controller; diff --git a/test/fixtures/wpt/streams/resources/rs-test-templates.js b/test/fixtures/wpt/streams/resources/rs-test-templates.js index 700bd9c3ca9f9e9..25751c477f5dc88 100644 --- a/test/fixtures/wpt/streams/resources/rs-test-templates.js +++ b/test/fixtures/wpt/streams/resources/rs-test-templates.js @@ -251,34 +251,27 @@ self.templatedRSEmptyReader = (label, factory) => { }, label + ': getReader() again on the stream should fail'); - promise_test(t => { + promise_test(async t => { const streamAndReader = factory(); const stream = streamAndReader.stream; const reader = streamAndReader.reader; - reader.read().then( - t.unreached_func('first read() should not fulfill'), - t.unreached_func('first read() should not reject') - ); - - reader.read().then( - t.unreached_func('second read() should not fulfill'), - t.unreached_func('second read() should not reject') - ); + const read1 = reader.read(); + const read2 = reader.read(); + const closed = reader.closed; - reader.closed.then( - t.unreached_func('closed should not fulfill'), - t.unreached_func('closed should not reject') - ); - - assert_throws_js(TypeError, () => reader.releaseLock(), 'releaseLock should throw a TypeError'); + reader.releaseLock(); - assert_true(stream.locked, 'the stream should still be locked'); + assert_false(stream.locked, 'the stream should be unlocked'); - return delay(500); + await Promise.all([ + promise_rejects_js(t, TypeError, read1, 'first read should reject'), + promise_rejects_js(t, TypeError, read2, 'second read should reject'), + promise_rejects_js(t, TypeError, closed, 'closed should reject') + ]); - }, label + ': releasing the lock with pending read requests should throw but the read requests should stay pending'); + }, label + ': releasing the lock should reject all pending read requests'); promise_test(t => { @@ -636,3 +629,93 @@ self.templatedRSTwoChunksClosedReader = function (label, factory, chunks) { }, label + ': reader\'s closed property always returns the same promise'); }; + +self.templatedRSTeeCancel = (label, factory) => { + test(() => {}, `Running templatedRSTeeCancel with ${label}`); + + promise_test(async () => { + + const reason1 = new Error('We\'re wanted men.'); + const reason2 = new Error('I have the death sentence on twelve systems.'); + + let resolve; + const promise = new Promise(r => resolve = r); + const rs = factory({ + cancel(reason) { + assert_array_equals(reason, [reason1, reason2], + 'the cancel reason should be an array containing those from the branches'); + resolve(); + } + }); + + const [branch1, branch2] = rs.tee(); + await Promise.all([ + branch1.cancel(reason1), + branch2.cancel(reason2), + promise + ]); + + }, `${label}: canceling both branches should aggregate the cancel reasons into an array`); + + promise_test(async () => { + + const reason1 = new Error('This little one\'s not worth the effort.'); + const reason2 = new Error('Come, let me get you something.'); + + let resolve; + const promise = new Promise(r => resolve = r); + const rs = factory({ + cancel(reason) { + assert_array_equals(reason, [reason1, reason2], + 'the cancel reason should be an array containing those from the branches'); + resolve(); + } + }); + + const [branch1, branch2] = rs.tee(); + await Promise.all([ + branch2.cancel(reason2), + branch1.cancel(reason1), + promise + ]); + + }, `${label}: canceling both branches in reverse order should aggregate the cancel reasons into an array`); + + promise_test(async t => { + + const theError = { name: 'I\'ll be careful.' }; + const rs = factory({ + cancel() { + throw theError; + } + }); + + const [branch1, branch2] = rs.tee(); + await Promise.all([ + promise_rejects_exactly(t, theError, branch1.cancel()), + promise_rejects_exactly(t, theError, branch2.cancel()) + ]); + + }, `${label}: failing to cancel the original stream should cause cancel() to reject on branches`); + + promise_test(async t => { + + const theError = { name: 'You just watch yourself!' }; + let controller; + const stream = factory({ + start(c) { + controller = c; + } + }); + + const [branch1, branch2] = stream.tee(); + controller.error(theError); + + await Promise.all([ + promise_rejects_exactly(t, theError, branch1.cancel()), + promise_rejects_exactly(t, theError, branch2.cancel()) + ]); + + }, `${label}: erroring a teed stream should properly handle canceled branches`); + +}; diff --git a/test/fixtures/wpt/streams/resources/test-utils.js b/test/fixtures/wpt/streams/resources/test-utils.js index 97d4261aa0507a5..fb34e270ff37189 100644 --- a/test/fixtures/wpt/streams/resources/test-utils.js +++ b/test/fixtures/wpt/streams/resources/test-utils.js @@ -47,8 +47,11 @@ self.constructorThrowsForAll = (constructor, firstArgs) => { 'constructor should throw a TypeError')); }; -self.garbageCollect = () => { - if (self.gc) { +self.garbageCollect = async () => { + if (self.TestUtils?.gc) { + // https://testutils.spec.whatwg.org/#the-testutils-namespace + await TestUtils.gc(); + } else if (self.gc) { // Use --expose_gc for V8 (and Node.js) // to pass this flag at chrome launch use: --js-flags="--expose-gc" // Exposed in SpiderMonkey shell as well @@ -57,6 +60,7 @@ self.garbageCollect = () => { // Present in some WebKit development environments GCController.collect(); } else { + /* eslint-disable no-console */ console.warn('Tests are running without the ability to do manual garbage collection. They will still work, but ' + 'coverage will be suboptimal.'); /* eslint-enable no-console */ @@ -71,3 +75,20 @@ self.delay = ms => new Promise(resolve => step_timeout(resolve, ms)); // Some tests include promise resolutions which may mean the test code takes a couple of event loop visits itself. So go // around an extra 2 times to avoid complicating those tests. self.flushAsyncEvents = () => delay(0).then(() => delay(0)).then(() => delay(0)).then(() => delay(0)); + +self.assert_typed_array_equals = (actual, expected, message) => { + const prefix = message === undefined ? '' : `${message} `; + assert_equals(typeof actual, 'object', `${prefix}type is object`); + assert_equals(actual.constructor, expected.constructor, `${prefix}constructor`); + assert_equals(actual.byteOffset, expected.byteOffset, `${prefix}byteOffset`); + assert_equals(actual.byteLength, expected.byteLength, `${prefix}byteLength`); + assert_equals(actual.buffer.byteLength, expected.buffer.byteLength, `${prefix}buffer.byteLength`); + assert_array_equals([...actual], [...expected], `${prefix}contents`); + assert_array_equals([...new Uint8Array(actual.buffer)], [...new Uint8Array(expected.buffer)], `${prefix}buffer contents`); +}; + +self.makePromiseAndResolveFunc = () => { + let resolve; + const promise = new Promise(r => { resolve = r; }); + return [promise, resolve]; +}; diff --git a/test/fixtures/wpt/streams/transferable/readable-stream.html b/test/fixtures/wpt/streams/transferable/readable-stream.html index 59b57ce6723c10b..b1ede4695bf4cd7 100644 --- a/test/fixtures/wpt/streams/transferable/readable-stream.html +++ b/test/fixtures/wpt/streams/transferable/readable-stream.html @@ -135,10 +135,23 @@ assert_array_equals(rs.events, ['pull'], 'pull() should have been called'); }, 'the extra queue from transferring is counted in chunks'); +async function transferredReadableStreamWithCancelPromise() { + let resolveCancelCalled; + const cancelCalled = new Promise(resolve => { + resolveCancelCalled = resolve; + }); + const rs = await recordingTransferredReadableStream({ + cancel() { + resolveCancelCalled(); + } + }); + return { rs, cancelCalled }; +} + promise_test(async () => { - const rs = await recordingTransferredReadableStream(); + const { rs, cancelCalled } = await transferredReadableStreamWithCancelPromise(); rs.cancel('message'); - await delay(0); + await cancelCalled; assert_array_equals(rs.events, ['pull', 'cancel', 'message'], 'cancel() should have been called'); const reader = rs.getReader(); @@ -147,15 +160,7 @@ }, 'cancel should be propagated to the original'); promise_test(async () => { - let resolveCancelCalled; - const cancelCalled = new Promise(resolve => { - resolveCancelCalled = resolve; - }); - const rs = await recordingTransferredReadableStream({ - cancel() { - resolveCancelCalled(); - } - }); + const { rs, cancelCalled } = await transferredReadableStreamWithCancelPromise(); const reader = rs.getReader(); const readPromise = reader.read(); reader.cancel('done'); diff --git a/test/fixtures/wpt/streams/transferable/transfer-with-messageport.window.js b/test/fixtures/wpt/streams/transferable/transfer-with-messageport.window.js new file mode 100644 index 000000000000000..37f8c9df169607a --- /dev/null +++ b/test/fixtures/wpt/streams/transferable/transfer-with-messageport.window.js @@ -0,0 +1,219 @@ +"use strict"; + +function receiveEventOnce(target, name) { + return new Promise(resolve => { + target.addEventListener( + name, + ev => { + resolve(ev); + }, + { once: true } + ); + }); +} + +async function postAndTestMessageEvent(data, transfer, title) { + postMessage(data, "*", transfer); + const messagePortCount = transfer.filter(i => i instanceof MessagePort) + .length; + const ev = await receiveEventOnce(window, "message"); + assert_equals( + ev.ports.length, + messagePortCount, + `Correct number of ports ${title}` + ); + for (const [i, port] of ev.ports.entries()) { + assert_true( + port instanceof MessagePort, + `ports[${i}] include MessagePort ${title}` + ); + } + for (const [key, value] of Object.entries(data)) { + assert_true( + ev.data[key] instanceof value.constructor, + `data.${key} has correct interface ${value.constructor.name} ${title}` + ); + } +} + +async function transferMessagePortWithOrder1(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { stream, port2: channel.port2 }, + [stream, channel.port2], + `when transferring [${stream.constructor.name}, MessagePort]` + ); +} + +async function transferMessagePortWithOrder2(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { stream, port2: channel.port2 }, + [channel.port2, stream], + `when transferring [MessagePort, ${stream.constructor.name}]` + ); +} + +async function transferMessagePortWithOrder3(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { port1: channel.port1, stream, port2: channel.port2 }, + [channel.port1, stream, channel.port2], + `when transferring [MessagePort, ${stream.constructor.name}, MessagePort]` + ); +} + +async function transferMessagePortWithOrder4(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + {}, + [channel.port1, stream, channel.port2], + `when transferring [MessagePort, ${stream.constructor.name}, MessagePort] but with empty data` + ); +} + +async function transferMessagePortWithOrder5(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { port2: channel.port2, port1: channel.port1, stream }, + [channel.port1, stream, channel.port2], + `when transferring [MessagePort, ${stream.constructor.name}, MessagePort] but with data having different order` + ); +} + +async function transferMessagePortWithOrder6(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { port2: channel.port2, port1: channel.port1 }, + [channel.port1, stream, channel.port2], + `when transferring [MessagePort, ${stream.constructor.name}, MessagePort] but with stream not being in the data` + ); +} + +async function transferMessagePortWithOrder7(stream) { + const channel = new MessageChannel(); + await postAndTestMessageEvent( + { stream }, + [channel.port1, stream, channel.port2], + `when transferring [MessagePort, ${stream.constructor.name}, MessagePort] but with ports not being in the data` + ); +} + +async function transferMessagePortWith(constructor) { + await transferMessagePortWithOrder1(new constructor()); + await transferMessagePortWithOrder2(new constructor()); + await transferMessagePortWithOrder3(new constructor()); +} + +async function advancedTransferMesagePortWith(constructor) { + await transferMessagePortWithOrder4(new constructor()); + await transferMessagePortWithOrder5(new constructor()); + await transferMessagePortWithOrder6(new constructor()); + await transferMessagePortWithOrder7(new constructor()); +} + +async function mixedTransferMessagePortWithOrder1() { + const channel = new MessageChannel(); + const readable = new ReadableStream(); + const writable = new WritableStream(); + const transform = new TransformStream(); + await postAndTestMessageEvent( + { + readable, + writable, + transform, + port1: channel.port1, + port2: channel.port2, + }, + [readable, writable, transform, channel.port1, channel.port2], + `when transferring [ReadableStream, WritableStream, TransformStream, MessagePort, MessagePort]` + ); +} + +async function mixedTransferMessagePortWithOrder2() { + const channel = new MessageChannel(); + const readable = new ReadableStream(); + const writable = new WritableStream(); + const transform = new TransformStream(); + await postAndTestMessageEvent( + { readable, writable, transform }, + [transform, channel.port1, readable, channel.port2, writable], + `when transferring [TransformStream, MessagePort, ReadableStream, MessagePort, WritableStream]` + ); +} + +async function mixedTransferMessagePortWithOrder3() { + const channel = new MessageChannel(); + const readable1 = new ReadableStream(); + const readable2 = new ReadableStream(); + const writable1 = new WritableStream(); + const writable2 = new WritableStream(); + const transform1 = new TransformStream(); + const transform2 = new TransformStream(); + await postAndTestMessageEvent( + { readable1, writable1, transform1, readable2, writable2, transform2 }, + [ + transform2, + channel.port1, + readable1, + channel.port2, + writable2, + readable2, + writable1, + transform1, + ], + `when transferring [TransformStream, MessagePort, ReadableStream, MessagePort, WritableStream, ReadableStream, WritableStream, TransformStream] but with the data having different order` + ); +} + +async function mixedTransferMesagePortWith() { + await mixedTransferMessagePortWithOrder1(); + await mixedTransferMessagePortWithOrder2(); + await mixedTransferMessagePortWithOrder3(); +} + +promise_test(async t => { + await transferMessagePortWith(ReadableStream); +}, "Transferring a MessagePort with a ReadableStream should set `.ports`"); + +promise_test(async t => { + await transferMessagePortWith(WritableStream); +}, "Transferring a MessagePort with a WritableStream should set `.ports`"); + +promise_test(async t => { + await transferMessagePortWith(TransformStream); +}, "Transferring a MessagePort with a TransformStream should set `.ports`"); + +promise_test(async t => { + await transferMessagePortWith(ReadableStream); +}, "Transferring a MessagePort with a ReadableStream should set `.ports`, advanced"); + +promise_test(async t => { + await transferMessagePortWith(WritableStream); +}, "Transferring a MessagePort with a WritableStream should set `.ports`, advanced"); + +promise_test(async t => { + await transferMessagePortWith(TransformStream); +}, "Transferring a MessagePort with a TransformStream should set `.ports`, advanced"); + +promise_test(async t => { + await mixedTransferMesagePortWith(); +}, "Transferring a MessagePort with multiple streams should set `.ports`"); + +test(() => { + assert_throws_dom("DataCloneError", () => + postMessage({ stream: new ReadableStream() }, "*") + ); +}, "ReadableStream must not be serializable"); + +test(() => { + assert_throws_dom("DataCloneError", () => + postMessage({ stream: new WritableStream() }, "*") + ); +}, "WritableStream must not be serializable"); + +test(() => { + assert_throws_dom("DataCloneError", () => + postMessage({ stream: new TransformStream() }, "*") + ); +}, "TransformStream must not be serializable"); diff --git a/test/fixtures/wpt/streams/transferable/transform-stream.html b/test/fixtures/wpt/streams/transferable/transform-stream.html index fbfbfe8fc1347ab..355d5d807433d75 100644 --- a/test/fixtures/wpt/streams/transferable/transform-stream.html +++ b/test/fixtures/wpt/streams/transferable/transform-stream.html @@ -66,9 +66,14 @@ controller.close(); } }); + let resolve; + const ready = new Promise(r => resolve = r); let result = ''; const sink = new WritableStream({ write(chunk) { + if (result) { + resolve(); + } result += chunk; } }); @@ -93,8 +98,7 @@ }); postMessage({source, sink, transform1, transform2}, '*', [source, transform1, sink, transform2]); - return promise - .then(() => delay(0)) + return ready .then(() => { assert_equals(result, 'HELLO HELLO THERE THERE ', 'transforms should have been applied'); diff --git a/test/fixtures/wpt/streams/transferable/window.html b/test/fixtures/wpt/streams/transferable/window.html index beaf548fe641c51..11c868356b69a1f 100644 --- a/test/fixtures/wpt/streams/transferable/window.html +++ b/test/fixtures/wpt/streams/transferable/window.html @@ -16,15 +16,10 @@ promise_test(t => { const orig = createOriginalReadableStream(); - const promise = new Promise(resolve => { - window.addEventListener('message', msg => { - const port = msg.data; - resolve(testMessageEvent(port)); - port.start(); - }, {once: true}); - }); const mc = new MessageChannel(); - postMessage(mc.port1, '*', [mc.port1]); + const promise = testMessageEvent(mc.port1); + mc.port1.start(); + mc.port2.postMessage(orig, [orig]); mc.port2.close(); assert_true(orig.locked, 'the original stream should be locked'); diff --git a/test/fixtures/wpt/streams/transferable/writable-stream.html b/test/fixtures/wpt/streams/transferable/writable-stream.html index adc6f457c27e875..7e25dad94d4cfd8 100644 --- a/test/fixtures/wpt/streams/transferable/writable-stream.html +++ b/test/fixtures/wpt/streams/transferable/writable-stream.html @@ -87,9 +87,11 @@ }, 'effective queue size of a transferred writable should be 2'); promise_test(async () => { + const [writeCalled, resolveWriteCalled] = makePromiseAndResolveFunc(); let resolveWrite; const orig = new WritableStream({ write() { + resolveWriteCalled(); return new Promise(resolve => { resolveWrite = resolve; }); @@ -99,35 +101,43 @@ const writer = transferred.getWriter(); await writer.write('a'); let writeDone = false; - writer.write('b').then(() => { + const writePromise = writer.write('b').then(() => { writeDone = true; }); - await flushAsyncEvents(); + await writeCalled; assert_false(writeDone, 'second write should not have resolved yet'); resolveWrite(); - await delay(0); - assert_true(writeDone, 'second write should have resolved'); + await writePromise; // (makes sure this resolves) }, 'second write should wait for first underlying write to complete'); -promise_test(async t => { - const orig = recordingWritableStream(); +async function transferredWritableStreamWithAbortPromise() { + const [abortCalled, resolveAbortCalled] = makePromiseAndResolveFunc(); + const orig = recordingWritableStream({ + abort() { + resolveAbortCalled(); + } + }); const transferred = await transfer(orig); + return { orig, transferred, abortCalled }; +} + +promise_test(async t => { + const { orig, transferred, abortCalled } = await transferredWritableStreamWithAbortPromise(); transferred.abort('p'); - await delay(0); + await abortCalled; assert_array_equals(orig.events, ['abort', 'p'], 'abort() should have been called'); }, 'abort() should work'); promise_test(async t => { - const orig = recordingWritableStream(); - const transferred = await transfer(orig); + const { orig, transferred, abortCalled } = await transferredWritableStreamWithAbortPromise(); const writer = transferred.getWriter(); // A WritableStream object cannot be cloned. await promise_rejects_dom(t, 'DataCloneError', writer.write(new WritableStream()), 'the write should reject'); await promise_rejects_dom(t, 'DataCloneError', writer.closed, 'the stream should be errored'); - await delay(0); + await abortCalled; assert_equals(orig.events.length, 2, 'abort should have been called'); assert_equals(orig.events[0], 'abort', 'first event should be abort'); assert_equals(orig.events[1].name, 'DataCloneError', diff --git a/test/fixtures/wpt/streams/transform-streams/backpressure.any.js b/test/fixtures/wpt/streams/transform-streams/backpressure.any.js index 64c9d0930ed2f26..6befba41b795426 100644 --- a/test/fixtures/wpt/streams/transform-streams/backpressure.any.js +++ b/test/fixtures/wpt/streams/transform-streams/backpressure.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/recording-streams.js // META: script=../resources/test-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/transform-streams/errors.any.js b/test/fixtures/wpt/streams/transform-streams/errors.any.js index ba26b32b75a6a40..0cca4c75479d6df 100644 --- a/test/fixtures/wpt/streams/transform-streams/errors.any.js +++ b/test/fixtures/wpt/streams/transform-streams/errors.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/transform-streams/flush.any.js b/test/fixtures/wpt/streams/transform-streams/flush.any.js index dc40532957b14bd..9287f6f5eb78eb7 100644 --- a/test/fixtures/wpt/streams/transform-streams/flush.any.js +++ b/test/fixtures/wpt/streams/transform-streams/flush.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/transform-streams/general.any.js b/test/fixtures/wpt/streams/transform-streams/general.any.js index d4f2a1d5a29cf6d..c95691f7bf49df1 100644 --- a/test/fixtures/wpt/streams/transform-streams/general.any.js +++ b/test/fixtures/wpt/streams/transform-streams/general.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/rs-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/transform-streams/lipfuzz.any.js b/test/fixtures/wpt/streams/transform-streams/lipfuzz.any.js index c8c3803c6dfb4b1..f9f148aaf1c6a46 100644 --- a/test/fixtures/wpt/streams/transform-streams/lipfuzz.any.js +++ b/test/fixtures/wpt/streams/transform-streams/lipfuzz.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; class LipFuzzTransformer { diff --git a/test/fixtures/wpt/streams/transform-streams/patched-global.any.js b/test/fixtures/wpt/streams/transform-streams/patched-global.any.js index 5bce0cb41ce437b..2d04e3b948b3246 100644 --- a/test/fixtures/wpt/streams/transform-streams/patched-global.any.js +++ b/test/fixtures/wpt/streams/transform-streams/patched-global.any.js @@ -1,15 +1,17 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; // Tests which patch the global environment are kept separate to avoid // interfering with other tests. test(t => { + // eslint-disable-next-line no-extend-native, accessor-pairs Object.defineProperty(Object.prototype, 'highWaterMark', { set() { throw new Error('highWaterMark setter called'); }, configurable: true }); + // eslint-disable-next-line no-extend-native, accessor-pairs Object.defineProperty(Object.prototype, 'size', { set() { throw new Error('size setter called'); }, configurable: true diff --git a/test/fixtures/wpt/streams/transform-streams/properties.any.js b/test/fixtures/wpt/streams/transform-streams/properties.any.js index f2ac482e0de2234..02981b8bc76a5fc 100644 --- a/test/fixtures/wpt/streams/transform-streams/properties.any.js +++ b/test/fixtures/wpt/streams/transform-streams/properties.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; const transformerMethods = { diff --git a/test/fixtures/wpt/streams/transform-streams/reentrant-strategies.any.js b/test/fixtures/wpt/streams/transform-streams/reentrant-strategies.any.js index 31e53949f3c26e1..fc2f91886659f62 100644 --- a/test/fixtures/wpt/streams/transform-streams/reentrant-strategies.any.js +++ b/test/fixtures/wpt/streams/transform-streams/reentrant-strategies.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/recording-streams.js // META: script=../resources/rs-utils.js // META: script=../resources/test-utils.js diff --git a/test/fixtures/wpt/streams/transform-streams/strategies.any.js b/test/fixtures/wpt/streams/transform-streams/strategies.any.js index d465d31ab09736d..94055ad99dc94b8 100644 --- a/test/fixtures/wpt/streams/transform-streams/strategies.any.js +++ b/test/fixtures/wpt/streams/transform-streams/strategies.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/recording-streams.js // META: script=../resources/test-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/transform-streams/terminate.any.js b/test/fixtures/wpt/streams/transform-streams/terminate.any.js index 8cb10679348b501..670006366db2af7 100644 --- a/test/fixtures/wpt/streams/transform-streams/terminate.any.js +++ b/test/fixtures/wpt/streams/transform-streams/terminate.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/recording-streams.js // META: script=../resources/test-utils.js 'use strict'; diff --git a/test/fixtures/wpt/streams/writable-streams/aborting.any.js b/test/fixtures/wpt/streams/writable-streams/aborting.any.js index ab154a705ed0e98..e016cd191b876f2 100644 --- a/test/fixtures/wpt/streams/writable-streams/aborting.any.js +++ b/test/fixtures/wpt/streams/writable-streams/aborting.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; @@ -1384,10 +1384,10 @@ test(t => { assert_true(ctrl.signal instanceof AbortSignal); assert_false(ctrl.signal.aborted); - assert_equals(ctrl.abortReason, undefined); + assert_equals(ctrl.signal.reason, undefined, 'signal.reason before abort'); ws.abort(e); assert_true(ctrl.signal.aborted); - assert_equals(ctrl.abortReason, e); + assert_equals(ctrl.signal.reason, e); }, 'WritableStreamDefaultController.signal'); promise_test(async t => { @@ -1405,10 +1405,11 @@ promise_test(async t => { await called; assert_false(ctrl.signal.aborted); - assert_equals(ctrl.abortReason, undefined); + assert_equals(ctrl.signal.reason, undefined, 'signal.reason before abort'); writer.abort(); assert_true(ctrl.signal.aborted); - assert_equals(ctrl.abortReason, undefined); + assert_true(ctrl.signal.reason instanceof DOMException, 'signal.reason is a DOMException'); + assert_equals(ctrl.signal.reason.name, 'AbortError', 'signal.reason is an AbortError'); }, 'the abort signal is signalled synchronously - write'); promise_test(async t => { diff --git a/test/fixtures/wpt/streams/writable-streams/bad-strategies.any.js b/test/fixtures/wpt/streams/writable-streams/bad-strategies.any.js index b180bae57c0585f..63fa443065ee414 100644 --- a/test/fixtures/wpt/streams/writable-streams/bad-strategies.any.js +++ b/test/fixtures/wpt/streams/writable-streams/bad-strategies.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; const error1 = new Error('a unique string'); diff --git a/test/fixtures/wpt/streams/writable-streams/bad-underlying-sinks.any.js b/test/fixtures/wpt/streams/writable-streams/bad-underlying-sinks.any.js index 0bfc036246a8709..d0b3467978ea05f 100644 --- a/test/fixtures/wpt/streams/writable-streams/bad-underlying-sinks.any.js +++ b/test/fixtures/wpt/streams/writable-streams/bad-underlying-sinks.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; diff --git a/test/fixtures/wpt/streams/writable-streams/byte-length-queuing-strategy.any.js b/test/fixtures/wpt/streams/writable-streams/byte-length-queuing-strategy.any.js index 9a61dd7cc69787e..ce1962e8917f324 100644 --- a/test/fixtures/wpt/streams/writable-streams/byte-length-queuing-strategy.any.js +++ b/test/fixtures/wpt/streams/writable-streams/byte-length-queuing-strategy.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; promise_test(t => { diff --git a/test/fixtures/wpt/streams/writable-streams/close.any.js b/test/fixtures/wpt/streams/writable-streams/close.any.js index cf997ed84cdcac0..88855a92efd5508 100644 --- a/test/fixtures/wpt/streams/writable-streams/close.any.js +++ b/test/fixtures/wpt/streams/writable-streams/close.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; diff --git a/test/fixtures/wpt/streams/writable-streams/constructor.any.js b/test/fixtures/wpt/streams/writable-streams/constructor.any.js index 75eed2a993fe5e0..eaac90e48b8f868 100644 --- a/test/fixtures/wpt/streams/writable-streams/constructor.any.js +++ b/test/fixtures/wpt/streams/writable-streams/constructor.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; const error1 = new Error('error1'); diff --git a/test/fixtures/wpt/streams/writable-streams/count-queuing-strategy.any.js b/test/fixtures/wpt/streams/writable-streams/count-queuing-strategy.any.js index 30edb3eb315c628..064e16e81506f12 100644 --- a/test/fixtures/wpt/streams/writable-streams/count-queuing-strategy.any.js +++ b/test/fixtures/wpt/streams/writable-streams/count-queuing-strategy.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; test(() => { diff --git a/test/fixtures/wpt/streams/writable-streams/error.any.js b/test/fixtures/wpt/streams/writable-streams/error.any.js index be986fccc6eac65..faf3fdd95214304 100644 --- a/test/fixtures/wpt/streams/writable-streams/error.any.js +++ b/test/fixtures/wpt/streams/writable-streams/error.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; const error1 = new Error('error1'); diff --git a/test/fixtures/wpt/streams/writable-streams/floating-point-total-queue-size.any.js b/test/fixtures/wpt/streams/writable-streams/floating-point-total-queue-size.any.js index 8e77ba0bb31185c..bd34cc53a695799 100644 --- a/test/fixtures/wpt/streams/writable-streams/floating-point-total-queue-size.any.js +++ b/test/fixtures/wpt/streams/writable-streams/floating-point-total-queue-size.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; // Due to the limitations of floating-point precision, the calculation of desiredSize sometimes gives different answers diff --git a/test/fixtures/wpt/streams/writable-streams/general.any.js b/test/fixtures/wpt/streams/writable-streams/general.any.js index fdd10b29aa0ebc5..cede7fd0845b740 100644 --- a/test/fixtures/wpt/streams/writable-streams/general.any.js +++ b/test/fixtures/wpt/streams/writable-streams/general.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; test(() => { diff --git a/test/fixtures/wpt/streams/writable-streams/properties.any.js b/test/fixtures/wpt/streams/writable-streams/properties.any.js index 0f7f876d8b6fc4b..c95bd7d0c080baf 100644 --- a/test/fixtures/wpt/streams/writable-streams/properties.any.js +++ b/test/fixtures/wpt/streams/writable-streams/properties.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker 'use strict'; const sinkMethods = { diff --git a/test/fixtures/wpt/streams/writable-streams/reentrant-strategy.any.js b/test/fixtures/wpt/streams/writable-streams/reentrant-strategy.any.js index afde413b4252d15..eb05cc068043ea2 100644 --- a/test/fixtures/wpt/streams/writable-streams/reentrant-strategy.any.js +++ b/test/fixtures/wpt/streams/writable-streams/reentrant-strategy.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; diff --git a/test/fixtures/wpt/streams/writable-streams/start.any.js b/test/fixtures/wpt/streams/writable-streams/start.any.js index 02b5f2a387625a3..82d869430dd7008 100644 --- a/test/fixtures/wpt/streams/writable-streams/start.any.js +++ b/test/fixtures/wpt/streams/writable-streams/start.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; diff --git a/test/fixtures/wpt/streams/writable-streams/write.any.js b/test/fixtures/wpt/streams/writable-streams/write.any.js index e3defa834820d40..f0246f6cad39fd3 100644 --- a/test/fixtures/wpt/streams/writable-streams/write.any.js +++ b/test/fixtures/wpt/streams/writable-streams/write.any.js @@ -1,4 +1,4 @@ -// META: global=window,worker,jsshell +// META: global=window,worker // META: script=../resources/test-utils.js // META: script=../resources/recording-streams.js 'use strict'; diff --git a/test/fixtures/wpt/versions.json b/test/fixtures/wpt/versions.json index ca900307b7a5972..3e223cd7d93b354 100644 --- a/test/fixtures/wpt/versions.json +++ b/test/fixtures/wpt/versions.json @@ -56,7 +56,7 @@ "path": "resources" }, "streams": { - "commit": "8f60d9443949c323522a2009518d54d5d6ab5541", + "commit": "9e5ef42bd34b5b19b76d0d4cb19012e52c222664", "path": "streams" }, "url": { @@ -76,7 +76,7 @@ "path": "wasm/webapi" }, "WebCryptoAPI": { - "commit": "cdd0f03df41b222aed098fbbb11c6a3cc500a86b", + "commit": "edca84af42bd7e84da94e63b322fe343191842d2", "path": "WebCryptoAPI" }, "webidl/ecmascript-binding/es-exceptions": { diff --git a/test/message/core_line_numbers.js b/test/message/core_line_numbers.js index 221001ed8952d09..585a6042652df1f 100644 --- a/test/message/core_line_numbers.js +++ b/test/message/core_line_numbers.js @@ -1,5 +1,7 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 3; + const punycode = require('punycode'); // This test verifies that line numbers in core modules are reported correctly. diff --git a/test/message/core_line_numbers.out b/test/message/core_line_numbers.out index bdba01a223c08fb..ee439cac2f43548 100644 --- a/test/message/core_line_numbers.out +++ b/test/message/core_line_numbers.out @@ -6,11 +6,5 @@ RangeError: Invalid input at error (node:punycode:52:8) at Object.decode (node:punycode:*:*) at Object. (*test*message*core_line_numbers.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/error_aggregateTwoErrors.js b/test/message/error_aggregateTwoErrors.js index a59a6b5788d4c25..6cb6cce095b2955 100644 --- a/test/message/error_aggregateTwoErrors.js +++ b/test/message/error_aggregateTwoErrors.js @@ -2,6 +2,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; + const { aggregateTwoErrors } = require('internal/errors'); const originalError = new Error('original'); diff --git a/test/message/error_aggregateTwoErrors.out b/test/message/error_aggregateTwoErrors.out index 9dd1b206f15208a..a84ae7325000b91 100644 --- a/test/message/error_aggregateTwoErrors.out +++ b/test/message/error_aggregateTwoErrors.out @@ -1,34 +1,15 @@ *error_aggregateTwoErrors.js:* throw aggregateTwoErrors(err, originalError); ^ -AggregateError: original - at Object. (*test*message*error_aggregateTwoErrors.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* { +[AggregateError: original] { code: 'ERR0', [errors]: [ Error: original - at Object. (*test*message*error_aggregateTwoErrors.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* { + at Object. (*test*message*error_aggregateTwoErrors.js:*:*) { code: 'ERR0' }, Error: second error - at Object. (*test*message*error_aggregateTwoErrors.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* { + at Object. (*test*message*error_aggregateTwoErrors.js:*:*) { code: 'ERR1' } ] diff --git a/test/message/error_exit.js b/test/message/error_exit.js index 057a371df248511..51d303015fd8ac3 100644 --- a/test/message/error_exit.js +++ b/test/message/error_exit.js @@ -21,6 +21,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; + const assert = require('assert'); process.on('exit', function(code) { diff --git a/test/message/error_exit.out b/test/message/error_exit.out index d10abedb0880aec..4ee2f083b635690 100644 --- a/test/message/error_exit.out +++ b/test/message/error_exit.out @@ -7,13 +7,7 @@ AssertionError [ERR_ASSERTION]: Expected values to be strictly equal: 1 !== 2 - at Object. (*test*message*error_exit.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* { + at Object. (*test*message*error_exit.js:*:*) { generatedMessage: true, code: 'ERR_ASSERTION', actual: 1, diff --git a/test/message/error_with_nul.js b/test/message/error_with_nul.js index 2849e9d21c878c2..de49c383fd41a07 100644 --- a/test/message/error_with_nul.js +++ b/test/message/error_with_nul.js @@ -1,5 +1,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; function test() { const a = 'abc\0def'; diff --git a/test/message/error_with_nul.out b/test/message/error_with_nul.out index 91b22a240231aa9..7dd4d6655558748 100644 Binary files a/test/message/error_with_nul.out and b/test/message/error_with_nul.out differ diff --git a/test/message/events_unhandled_error_common_trace.js b/test/message/events_unhandled_error_common_trace.js index e6c168fc06eb331..6ec4bed948d4045 100644 --- a/test/message/events_unhandled_error_common_trace.js +++ b/test/message/events_unhandled_error_common_trace.js @@ -1,5 +1,7 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; + const EventEmitter = require('events'); function foo() { diff --git a/test/message/events_unhandled_error_common_trace.out b/test/message/events_unhandled_error_common_trace.out index cfff44a7b3305f8..a3747cfdd32c31b 100644 --- a/test/message/events_unhandled_error_common_trace.out +++ b/test/message/events_unhandled_error_common_trace.out @@ -5,18 +5,8 @@ node:events:* Error: foo:bar at bar (*events_unhandled_error_common_trace.js:*:*) at foo (*events_unhandled_error_common_trace.js:*:*) - at Object. (*events_unhandled_error_common_trace.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* Emitted 'error' event at: at quux (*events_unhandled_error_common_trace.js:*:*) at Object. (*events_unhandled_error_common_trace.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - [... lines matching original stack trace ...] - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/events_unhandled_error_nexttick.js b/test/message/events_unhandled_error_nexttick.js index 713031eeefa0429..bf508c9788757d5 100644 --- a/test/message/events_unhandled_error_nexttick.js +++ b/test/message/events_unhandled_error_nexttick.js @@ -1,5 +1,7 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; + const EventEmitter = require('events'); const er = new Error(); process.nextTick(() => { diff --git a/test/message/events_unhandled_error_nexttick.out b/test/message/events_unhandled_error_nexttick.out index a5a220da44f94bf..7b616c22e373024 100644 --- a/test/message/events_unhandled_error_nexttick.out +++ b/test/message/events_unhandled_error_nexttick.out @@ -4,14 +4,7 @@ node:events:* Error at Object. (*events_unhandled_error_nexttick.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* Emitted 'error' event at: at *events_unhandled_error_nexttick.js:*:* - at process.processTicksAndRejections (node:internal/process/task_queues:*:*) Node.js * diff --git a/test/message/events_unhandled_error_sameline.js b/test/message/events_unhandled_error_sameline.js index 1e5e77d08c9919d..6dad22dd58e3932 100644 --- a/test/message/events_unhandled_error_sameline.js +++ b/test/message/events_unhandled_error_sameline.js @@ -1,4 +1,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; + const EventEmitter = require('events'); new EventEmitter().emit('error', new Error()); diff --git a/test/message/events_unhandled_error_sameline.out b/test/message/events_unhandled_error_sameline.out index f60b0f8572dd5ea..dd12176259badf2 100644 --- a/test/message/events_unhandled_error_sameline.out +++ b/test/message/events_unhandled_error_sameline.out @@ -4,16 +4,7 @@ node:events:* Error at Object. (*events_unhandled_error_sameline.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* Emitted 'error' event at: at Object. (*events_unhandled_error_sameline.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - [... lines matching original stack trace ...] - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/events_unhandled_error_subclass.js b/test/message/events_unhandled_error_subclass.js index 8303cb2237dc1eb..5fc3bc26fb4e93d 100644 --- a/test/message/events_unhandled_error_subclass.js +++ b/test/message/events_unhandled_error_subclass.js @@ -1,5 +1,7 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; + const EventEmitter = require('events'); class Foo extends EventEmitter {} new Foo().emit('error', new Error()); diff --git a/test/message/events_unhandled_error_subclass.out b/test/message/events_unhandled_error_subclass.out index 6733809a8ccaab2..3d5d0307e6d7922 100644 --- a/test/message/events_unhandled_error_subclass.out +++ b/test/message/events_unhandled_error_subclass.out @@ -4,16 +4,7 @@ node:events:* Error at Object. (*events_unhandled_error_subclass.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* Emitted 'error' event on Foo instance at: at Object. (*events_unhandled_error_subclass.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - [... lines matching original stack trace ...] - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/if-error-has-good-stack.js b/test/message/if-error-has-good-stack.js index 1db25d2fa55a1bd..4f529d3e5d17ffe 100644 --- a/test/message/if-error-has-good-stack.js +++ b/test/message/if-error-has-good-stack.js @@ -1,6 +1,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 4; + const assert = require('assert'); let err; diff --git a/test/message/if-error-has-good-stack.out b/test/message/if-error-has-good-stack.out index 6ded3280d20aa14..e394127bd4c4734 100644 --- a/test/message/if-error-has-good-stack.out +++ b/test/message/if-error-has-good-stack.out @@ -10,26 +10,14 @@ AssertionError [ERR_ASSERTION]: ifError got unwanted exception: test error at c (*if-error-has-good-stack.js:*:*) at b (*if-error-has-good-stack.js:*:*) at a (*if-error-has-good-stack.js:*:*) - at Object. (*if-error-has-good-stack.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* { + at Object. (*if-error-has-good-stack.js:*:*) { generatedMessage: false, code: 'ERR_ASSERTION', actual: Error: test error at c (*if-error-has-good-stack.js:*:*) at b (*if-error-has-good-stack.js:*:*) at a (*if-error-has-good-stack.js:*:*) - at Object. (*if-error-has-good-stack.js:*:*) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* + at Object. (*if-error-has-good-stack.js:*:*), expected: null, operator: 'ifError' } diff --git a/test/message/source_map_disabled_by_api.js b/test/message/source_map_disabled_by_api.js index db55d24e1d5df8a..93c87f10c149317 100644 --- a/test/message/source_map_disabled_by_api.js +++ b/test/message/source_map_disabled_by_api.js @@ -2,6 +2,7 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 5; process.setSourceMapsEnabled(false); diff --git a/test/message/source_map_disabled_by_api.out b/test/message/source_map_disabled_by_api.out index f3f93758c1d2724..655cd6695e11162 100644 --- a/test/message/source_map_disabled_by_api.out +++ b/test/message/source_map_disabled_by_api.out @@ -4,19 +4,9 @@ Error: an error! at functionB (*enclosing-call-site-min.js:1:60) at functionA (*enclosing-call-site-min.js:1:26) at Object. (*enclosing-call-site-min.js:1:199) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) Error: an error! at functionD (*enclosing-call-site.js:16:17) at functionC (*enclosing-call-site.js:10:3) at functionB (*enclosing-call-site.js:6:3) at functionA (*enclosing-call-site.js:2:3) at Object. (*enclosing-call-site.js:24:3) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) diff --git a/test/message/source_map_enabled_by_api.js b/test/message/source_map_enabled_by_api.js index 29e0f9708903a86..f0308b19598988e 100644 --- a/test/message/source_map_enabled_by_api.js +++ b/test/message/source_map_enabled_by_api.js @@ -1,5 +1,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 5; process.setSourceMapsEnabled(true); diff --git a/test/message/source_map_enabled_by_api.out b/test/message/source_map_enabled_by_api.out index 97547436db091be..082b3f310ed4f92 100644 --- a/test/message/source_map_enabled_by_api.out +++ b/test/message/source_map_enabled_by_api.out @@ -4,19 +4,9 @@ Error: an error! at functionB (*enclosing-call-site.js:6:3) at functionA (*enclosing-call-site.js:2:3) at Object. (*enclosing-call-site.js:24:3) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) Error: an error! at functionD (*enclosing-call-site-min.js:1:156) at functionC (*enclosing-call-site-min.js:1:97) at functionB (*enclosing-call-site-min.js:1:60) at functionA (*enclosing-call-site-min.js:1:26) at Object. (*enclosing-call-site-min.js:1:199) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) diff --git a/test/message/source_map_enclosing_function.js b/test/message/source_map_enclosing_function.js index 43b6931bf1e19ee..f77bd818f02d780 100644 --- a/test/message/source_map_enclosing_function.js +++ b/test/message/source_map_enclosing_function.js @@ -2,4 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 5; + require('../fixtures/source-map/enclosing-call-site-min.js'); diff --git a/test/message/source_map_enclosing_function.out b/test/message/source_map_enclosing_function.out index 7a09c6b92ca41d6..5bb920e7eba42ae 100644 --- a/test/message/source_map_enclosing_function.out +++ b/test/message/source_map_enclosing_function.out @@ -8,10 +8,5 @@ Error: an error! at functionB (*enclosing-call-site.js:6:3) at functionA (*enclosing-call-site.js:2:3) at Object. (*enclosing-call-site.js:24:3) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) Node.js * diff --git a/test/message/source_map_eval.js b/test/message/source_map_eval.js index 534d16bd34c28f1..404793f05412e43 100644 --- a/test/message/source_map_eval.js +++ b/test/message/source_map_eval.js @@ -2,6 +2,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 3; + const fs = require('fs'); const content = fs.readFileSync(require.resolve('../fixtures/source-map/tabs.js'), 'utf8'); diff --git a/test/message/source_map_eval.out b/test/message/source_map_eval.out index 5fdf5df4e4c80b6..5d97e137f7f8240 100644 --- a/test/message/source_map_eval.out +++ b/test/message/source_map_eval.out @@ -5,12 +5,6 @@ ReferenceError: alert is not defined at Object.eval (*tabs.coffee:26:2) at eval (*tabs.coffee:1:14) - at Object. (*source_map_eval.js:8:1) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:* + at Object. (*source_map_eval.js:*:*) Node.js * diff --git a/test/message/source_map_no_source_file.js b/test/message/source_map_no_source_file.js index 971fa5e271550bc..53c53416248b773 100644 --- a/test/message/source_map_no_source_file.js +++ b/test/message/source_map_no_source_file.js @@ -2,5 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; require('../fixtures/source-map/no-source.js'); diff --git a/test/message/source_map_no_source_file.out b/test/message/source_map_no_source_file.out index aa39992a81de74a..cf9329747ba692d 100644 --- a/test/message/source_map_no_source_file.out +++ b/test/message/source_map_no_source_file.out @@ -5,13 +5,5 @@ Error: foo at Throw (*file-not-exists.ts:2:9) at Object. (*file-not-exists.ts:5:1) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) - at require (node:internal/modules/cjs/helpers:*) - at Object. (*source_map_no_source_file.js:6:1) - at Module._compile (node:internal/modules/cjs/loader:*) Node.js * diff --git a/test/message/source_map_reference_error_tabs.js b/test/message/source_map_reference_error_tabs.js index f6a39d9d497449e..fbe058a5f531bf8 100644 --- a/test/message/source_map_reference_error_tabs.js +++ b/test/message/source_map_reference_error_tabs.js @@ -2,4 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; + require('../fixtures/source-map/tabs.js'); diff --git a/test/message/source_map_reference_error_tabs.out b/test/message/source_map_reference_error_tabs.out index be31c07810edefb..7bf2d13305ef12f 100644 --- a/test/message/source_map_reference_error_tabs.out +++ b/test/message/source_map_reference_error_tabs.out @@ -5,13 +5,5 @@ ReferenceError: alert is not defined at *tabs.coffee:26:2* at *tabs.coffee:1:14* - at Module._compile (node:internal/modules/cjs/loader:* - at Module._extensions..js (node:internal/modules/cjs/loader:* - at Module.load (node:internal/modules/cjs/loader:* - at Module._load (node:internal/modules/cjs/loader:* - at Module.require (node:internal/modules/cjs/loader:* - at require (node:internal/modules/cjs/helpers:* - at Object. (*source_map_reference_error_tabs.js:* - at Module._compile (node:internal/modules/cjs/loader:* Node.js * diff --git a/test/message/source_map_throw_catch.js b/test/message/source_map_throw_catch.js index f3a887474bfbac6..603fa81867bcbe3 100644 --- a/test/message/source_map_throw_catch.js +++ b/test/message/source_map_throw_catch.js @@ -2,6 +2,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; + try { require('../fixtures/source-map/typescript-throw'); } catch (err) { diff --git a/test/message/source_map_throw_catch.out b/test/message/source_map_throw_catch.out index c66aa43d0630190..662d4b5bee4daba 100644 --- a/test/message/source_map_throw_catch.out +++ b/test/message/source_map_throw_catch.out @@ -2,11 +2,3 @@ reachable Error: an exception at *typescript-throw.ts:18:11* at *typescript-throw.ts:24:1* - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) - at require (node:internal/modules/cjs/helpers:*) - at Object. (*source_map_throw_catch.js:6:3) - at Module._compile (node:internal/modules/cjs/loader:*) diff --git a/test/message/source_map_throw_first_tick.js b/test/message/source_map_throw_first_tick.js index b691b51f3551943..9bf1a353cf18bec 100644 --- a/test/message/source_map_throw_first_tick.js +++ b/test/message/source_map_throw_first_tick.js @@ -2,4 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; + require('../fixtures/source-map/typescript-throw'); diff --git a/test/message/source_map_throw_first_tick.out b/test/message/source_map_throw_first_tick.out index 9769127c39bdbca..792be67aae089f4 100644 --- a/test/message/source_map_throw_first_tick.out +++ b/test/message/source_map_throw_first_tick.out @@ -5,13 +5,5 @@ reachable Error: an exception at *typescript-throw.ts:18:11* at *typescript-throw.ts:24:1* - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Module.require (node:internal/modules/cjs/loader:*) - at require (node:internal/modules/cjs/helpers:*) - at Object. (*source_map_throw_first_tick.js:5:1) - at Module._compile (node:internal/modules/cjs/loader:*) Node.js * diff --git a/test/message/source_map_throw_icu.js b/test/message/source_map_throw_icu.js index 00298edc5ed81ae..672c1575c6547a9 100644 --- a/test/message/source_map_throw_icu.js +++ b/test/message/source_map_throw_icu.js @@ -2,4 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 2; + require('../fixtures/source-map/icu'); diff --git a/test/message/source_map_throw_icu.out b/test/message/source_map_throw_icu.out index d9a829583956509..65297956f924378 100644 --- a/test/message/source_map_throw_icu.out +++ b/test/message/source_map_throw_icu.out @@ -5,13 +5,5 @@ Error: an error at *icu.jsx:3:23* at *icu.jsx:9:5* - at Module._compile (node:internal/modules/cjs/loader:* - at Module._extensions..js (node:internal/modules/cjs/loader:* - at Module.load (node:internal/modules/cjs/loader:* - at Module._load (node:internal/modules/cjs/loader:* - at Module.require (node:internal/modules/cjs/loader:* - at require (node:internal/modules/cjs/helpers:* - at Object. (*source_map_throw_icu.js:* - at Module._compile (node:internal/modules/cjs/loader:* Node.js * diff --git a/test/message/test-no-extra-info-on-fatal-exception.js b/test/message/test-no-extra-info-on-fatal-exception.js index 948274d2bb54911..dbc61b0f2382e0b 100644 --- a/test/message/test-no-extra-info-on-fatal-exception.js +++ b/test/message/test-no-extra-info-on-fatal-exception.js @@ -2,5 +2,6 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 1; throw new Error('foo'); diff --git a/test/message/test-no-extra-info-on-fatal-exception.out b/test/message/test-no-extra-info-on-fatal-exception.out index 0390dacb8d5f423..d26573344cc41a6 100644 --- a/test/message/test-no-extra-info-on-fatal-exception.out +++ b/test/message/test-no-extra-info-on-fatal-exception.out @@ -1,12 +1,6 @@ -*:6 +*:7 throw new Error('foo'); ^ Error: foo - at Object. (*:6:7) - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* + at Object. (*:7:7) diff --git a/test/message/test_runner_hooks.out b/test/message/test_runner_hooks.out index cd85fe9798a2a3a..57008a44bbb1416 100644 --- a/test/message/test_runner_hooks.out +++ b/test/message/test_runner_hooks.out @@ -55,6 +55,16 @@ not ok 2 - before throws failureType: 'hookFailed' error: 'failed running before hook' code: 'ERR_TEST_FAILURE' + stack: |- + * + * + * + * + * + * + * + * + * ... # Subtest: after throws # Subtest: 1 @@ -74,6 +84,16 @@ not ok 3 - after throws failureType: 'hookFailed' error: 'failed running after hook' code: 'ERR_TEST_FAILURE' + stack: |- + * + * + * + * + * + * + * + * + * ... # Subtest: beforeEach throws # Subtest: 1 @@ -85,6 +105,15 @@ not ok 3 - after throws code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... # Subtest: 2 not ok 2 - 2 @@ -93,6 +122,17 @@ not ok 3 - after throws failureType: 'hookFailed' error: 'failed running beforeEach hook' code: 'ERR_TEST_FAILURE' + stack: |- + * + * + * + * + * + * + * + * + * + * ... 1..2 not ok 4 - beforeEach throws @@ -112,6 +152,15 @@ not ok 4 - beforeEach throws code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... # Subtest: 2 not ok 2 - 2 @@ -120,6 +169,17 @@ not ok 4 - beforeEach throws failureType: 'hookFailed' error: 'failed running afterEach hook' code: 'ERR_TEST_FAILURE' + stack: |- + * + * + * + * + * + * + * + * + * + * ... 1..2 not ok 5 - afterEach throws @@ -171,6 +231,15 @@ ok 6 - test hooks code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... # Subtest: 2 not ok 2 - 2 @@ -181,6 +250,15 @@ ok 6 - test hooks code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... 1..2 not ok 7 - t.beforeEach throws @@ -200,6 +278,15 @@ not ok 7 - t.beforeEach throws code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... # Subtest: 2 not ok 2 - 2 @@ -210,6 +297,15 @@ not ok 7 - t.beforeEach throws code: 'ERR_TEST_FAILURE' stack: |- * + * + * + * + * + * + * + * + * + * ... 1..2 not ok 8 - t.afterEach throws diff --git a/test/message/test_runner_no_tests.out b/test/message/test_runner_no_tests.out index 9f84e58dc125f85..9daeafb9864cf43 100644 --- a/test/message/test_runner_no_tests.out +++ b/test/message/test_runner_no_tests.out @@ -1 +1 @@ -bound test +test diff --git a/test/message/throw_error_with_getter_throw_traced.js b/test/message/throw_error_with_getter_throw_traced.js deleted file mode 100644 index 609bd9caf83fe25..000000000000000 --- a/test/message/throw_error_with_getter_throw_traced.js +++ /dev/null @@ -1,11 +0,0 @@ -// Flags: --trace-uncaught -'use strict'; -require('../common'); -throw { // eslint-disable-line no-throw-literal - get stack() { - throw new Error('weird throw but ok'); - }, - get name() { - throw new Error('weird throw but ok'); - }, -}; diff --git a/test/message/throw_error_with_getter_throw_traced.out b/test/message/throw_error_with_getter_throw_traced.out deleted file mode 100644 index 87310042ad2213e..000000000000000 --- a/test/message/throw_error_with_getter_throw_traced.out +++ /dev/null @@ -1,15 +0,0 @@ - -*:4 -throw { // eslint-disable-line no-throw-literal -^ -[object Object] -Thrown at: - at *throw_error_with_getter_throw_traced.js:*:* - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at executeUserEntryPoint (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* - -Node.js * diff --git a/test/message/throw_null_traced.js b/test/message/throw_null_traced.js deleted file mode 100644 index fee8928f8874031..000000000000000 --- a/test/message/throw_null_traced.js +++ /dev/null @@ -1,6 +0,0 @@ -// Flags: --trace-uncaught -'use strict'; -require('../common'); - -// eslint-disable-next-line no-throw-literal -throw null; diff --git a/test/message/throw_null_traced.out b/test/message/throw_null_traced.out deleted file mode 100644 index 0344dc27e0a4286..000000000000000 --- a/test/message/throw_null_traced.out +++ /dev/null @@ -1,15 +0,0 @@ - -*test*message*throw_null_traced.js:* -throw null; -^ -null -Thrown at: - at *throw_null_traced.js:*:* - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at executeUserEntryPoint (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* - -Node.js * diff --git a/test/message/throw_undefined_traced.js b/test/message/throw_undefined_traced.js deleted file mode 100644 index f6ded43378dc917..000000000000000 --- a/test/message/throw_undefined_traced.js +++ /dev/null @@ -1,6 +0,0 @@ -// Flags: --trace-uncaught -'use strict'; -require('../common'); - -// eslint-disable-next-line no-throw-literal -throw undefined; diff --git a/test/message/throw_undefined_traced.out b/test/message/throw_undefined_traced.out deleted file mode 100644 index 148085f094a8d06..000000000000000 --- a/test/message/throw_undefined_traced.out +++ /dev/null @@ -1,15 +0,0 @@ - -*test*message*throw_undefined_traced.js:* -throw undefined; -^ -undefined -Thrown at: - at *throw_undefined_traced.js:*:* - at Module._compile (node:internal/modules/cjs/loader:*:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*:*) - at Module.load (node:internal/modules/cjs/loader:*:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at executeUserEntryPoint (node:internal/modules/run_main:*:*) - at node:internal/main/run_main_module:*:* - -Node.js * diff --git a/test/message/undefined_reference_in_new_context.js b/test/message/undefined_reference_in_new_context.js index 7cb68ec5b3b3df7..29a67632f8f7dd1 100644 --- a/test/message/undefined_reference_in_new_context.js +++ b/test/message/undefined_reference_in_new_context.js @@ -26,6 +26,6 @@ const vm = require('vm'); console.error('before'); // undefined reference -vm.runInNewContext('foo.bar = 5;'); +vm.runInNewContext('Error.stackTraceLimit = 5; foo.bar = 5;'); console.error('after'); diff --git a/test/message/undefined_reference_in_new_context.out b/test/message/undefined_reference_in_new_context.out index 3bfa1c5b967dd82..8d8228bd902950c 100644 --- a/test/message/undefined_reference_in_new_context.out +++ b/test/message/undefined_reference_in_new_context.out @@ -1,18 +1,13 @@ before evalmachine.:1 -foo.bar = 5; -^ +Error.stackTraceLimit = 5; foo.bar = 5; + ^ ReferenceError: foo is not defined - at evalmachine.:1:1 + at evalmachine.:*:* at Script.runInContext (node:vm:*) at Script.runInNewContext (node:vm:*) at Object.runInNewContext (node:vm:*) at Object. (*test*message*undefined_reference_in_new_context.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at *..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*:*) Node.js * diff --git a/test/message/vm_display_runtime_error.js b/test/message/vm_display_runtime_error.js index 3ebbb1464d135d6..80505cb02f3f3b8 100644 --- a/test/message/vm_display_runtime_error.js +++ b/test/message/vm_display_runtime_error.js @@ -21,6 +21,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 4; + const vm = require('vm'); console.error('beginning'); diff --git a/test/message/vm_display_runtime_error.out b/test/message/vm_display_runtime_error.out index 857525e4a4768a6..6dc8a703b4b7cd1 100644 --- a/test/message/vm_display_runtime_error.out +++ b/test/message/vm_display_runtime_error.out @@ -8,12 +8,6 @@ Error: boo! at Script.runInThisContext (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_display_runtime_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* test.vm:1 throw new Error("spooky!") ^ @@ -23,11 +17,5 @@ Error: spooky! at Script.runInThisContext (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_display_runtime_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/vm_display_syntax_error.js b/test/message/vm_display_syntax_error.js index ac9b4d17bd147bd..f47d8d477ececca 100644 --- a/test/message/vm_display_syntax_error.js +++ b/test/message/vm_display_syntax_error.js @@ -21,6 +21,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 4; + const vm = require('vm'); console.error('beginning'); diff --git a/test/message/vm_display_syntax_error.out b/test/message/vm_display_syntax_error.out index 427f593e9e9a210..371ebfccdc3e1df 100644 --- a/test/message/vm_display_syntax_error.out +++ b/test/message/vm_display_syntax_error.out @@ -7,12 +7,6 @@ SyntaxError: Unexpected number at createScript (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_display_syntax_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* test.vm:1 var 5; ^ @@ -21,11 +15,5 @@ SyntaxError: Unexpected number at createScript (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_display_syntax_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/vm_dont_display_runtime_error.js b/test/message/vm_dont_display_runtime_error.js index 49203684ed6609f..44bdaf42d9b234a 100644 --- a/test/message/vm_dont_display_runtime_error.js +++ b/test/message/vm_dont_display_runtime_error.js @@ -21,6 +21,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 4; + const vm = require('vm'); console.error('beginning'); diff --git a/test/message/vm_dont_display_runtime_error.out b/test/message/vm_dont_display_runtime_error.out index a2811489275b17a..78b6a67c5aff2f3 100644 --- a/test/message/vm_dont_display_runtime_error.out +++ b/test/message/vm_dont_display_runtime_error.out @@ -9,11 +9,5 @@ Error: boo! at Script.runInThisContext (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_dont_display_runtime_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/message/vm_dont_display_syntax_error.js b/test/message/vm_dont_display_syntax_error.js index 38c49ad1a653150..01ab0b6395c69b2 100644 --- a/test/message/vm_dont_display_syntax_error.js +++ b/test/message/vm_dont_display_syntax_error.js @@ -21,6 +21,8 @@ 'use strict'; require('../common'); +Error.stackTraceLimit = 4; + const vm = require('vm'); console.error('beginning'); diff --git a/test/message/vm_dont_display_syntax_error.out b/test/message/vm_dont_display_syntax_error.out index 2219ee7f2722ad3..d7849361d5d2305 100644 --- a/test/message/vm_dont_display_syntax_error.out +++ b/test/message/vm_dont_display_syntax_error.out @@ -9,11 +9,5 @@ SyntaxError: Unexpected number at createScript (node:vm:*) at Object.runInThisContext (node:vm:*) at Object. (*test*message*vm_dont_display_syntax_error.js:*) - at Module._compile (node:internal/modules/cjs/loader:*) - at Module._extensions..js (node:internal/modules/cjs/loader:*) - at Module.load (node:internal/modules/cjs/loader:*) - at Module._load (node:internal/modules/cjs/loader:*) - at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:*) - at node:internal/main/run_main_module:*:* Node.js * diff --git a/test/parallel/parallel.status b/test/parallel/parallel.status index 3e129b6abcfb6e1..b749eb8497743fa 100644 --- a/test/parallel/parallel.status +++ b/test/parallel/parallel.status @@ -85,6 +85,7 @@ test-crypto-secure-heap: SKIP test-dgram-connect: PASS, FLAKY test-http-client-parse-error: PASS, FLAKY test-http-multi-line-headers: PASS, FLAKY +test-http-pipeline-requests-connection-leak: PASS, FLAKY test-http-server-unconsume: PASS, FLAKY test-http-upgrade-advertise: PASS, FLAKY test-tls-client-mindhsize: PASS, FLAKY diff --git a/test/parallel/test-assert-calltracker-getCalls.js b/test/parallel/test-assert-calltracker-getCalls.js new file mode 100644 index 000000000000000..243f72c90f1defe --- /dev/null +++ b/test/parallel/test-assert-calltracker-getCalls.js @@ -0,0 +1,73 @@ +'use strict'; +require('../common'); +const assert = require('assert'); +const { describe, it } = require('node:test'); + + +describe('assert.CallTracker.getCalls()', { concurrency: true }, () => { + const tracker = new assert.CallTracker(); + + it('should return empty list when no calls', () => { + const fn = tracker.calls(); + assert.deepStrictEqual(tracker.getCalls(fn), []); + }); + + it('should return calls', () => { + const fn = tracker.calls(() => {}); + const arg1 = {}; + const arg2 = {}; + fn(arg1, arg2); + fn.call(arg2, arg2); + assert.deepStrictEqual(tracker.getCalls(fn), [ + { arguments: [arg1, arg2], thisArg: undefined }, + { arguments: [arg2], thisArg: arg2 }]); + }); + + it('should throw when getting calls of a non-tracked function', () => { + [() => {}, 1, true, null, undefined, {}, []].forEach((fn) => { + assert.throws(() => tracker.getCalls(fn), { code: 'ERR_INVALID_ARG_VALUE' }); + }); + }); + + it('should return a frozen object', () => { + const fn = tracker.calls(); + fn(); + const calls = tracker.getCalls(fn); + assert.throws(() => calls.push(1), /object is not extensible/); + assert.throws(() => Object.assign(calls[0], { foo: 'bar' }), /object is not extensible/); + assert.throws(() => calls[0].arguments.push(1), /object is not extensible/); + }); +}); + +describe('assert.CallTracker.reset()', () => { + const tracker = new assert.CallTracker(); + + it('should reset calls', () => { + const fn = tracker.calls(); + fn(); + fn(); + fn(); + assert.strictEqual(tracker.getCalls(fn).length, 3); + tracker.reset(fn); + assert.deepStrictEqual(tracker.getCalls(fn), []); + }); + + it('should reset all calls', () => { + const fn1 = tracker.calls(); + const fn2 = tracker.calls(); + fn1(); + fn2(); + assert.strictEqual(tracker.getCalls(fn1).length, 1); + assert.strictEqual(tracker.getCalls(fn2).length, 1); + tracker.reset(); + assert.deepStrictEqual(tracker.getCalls(fn1), []); + assert.deepStrictEqual(tracker.getCalls(fn2), []); + }); + + + it('should throw when resetting a non-tracked function', () => { + [() => {}, 1, true, null, {}, []].forEach((fn) => { + assert.throws(() => tracker.reset(fn), { code: 'ERR_INVALID_ARG_VALUE' }); + }); + }); +}); diff --git a/test/parallel/test-assert-snapshot.mjs b/test/parallel/test-assert-snapshot.mjs new file mode 100644 index 000000000000000..7382a0fa3633ad8 --- /dev/null +++ b/test/parallel/test-assert-snapshot.mjs @@ -0,0 +1,133 @@ +import { spawnPromisified } from '../common/index.mjs'; +import * as fixtures from '../common/fixtures.mjs'; +import tmpdir from '../common/tmpdir.js'; +import assert from 'node:assert'; +import path from 'node:path'; +import { execPath } from 'node:process'; +import { writeFile, readFile, unlink } from 'node:fs/promises'; +import { describe, it } from 'node:test'; + +tmpdir.refresh(); + +function getSnapshotPath(filename) { + const { name, dir } = path.parse(filename); + return path.join(tmpdir.path, dir, `${name}.snapshot`); +} + +async function spawnTmpfile(content = '', filename, extraFlags = []) { + const header = filename.endsWith('.mjs') ? + 'import assert from \'node:assert\';' : + 'const assert = require(\'node:assert\');'; + await writeFile(path.join(tmpdir.path, filename), `${header}\n${content}`); + const { stdout, stderr, code } = await spawnPromisified( + execPath, + ['--no-warnings', ...extraFlags, filename], + { cwd: tmpdir.path }); + + const snapshotPath = getSnapshotPath(filename); + const snapshot = await readFile(snapshotPath, 'utf8').catch((err) => err); + return { stdout, stderr, code, snapshot, snapshotPath, filename }; +} + +async function spawnFixture(filename) { + const { dir, base, name } = path.parse(filename); + const { stdout, stderr, code } = await spawnPromisified(execPath, ['--no-warnings', base], { cwd: dir }); + + const snapshotPath = path.join(dir, `${name}.snapshot`); + const snapshot = await readFile(snapshotPath, 'utf8').catch((err) => err); + return { stdout, stderr, code, snapshot, snapshotPath }; +} + +describe('assert.snapshot', { concurrency: true }, () => { + it('should write snapshot', async () => { + const { stderr, code, snapshot, snapshotPath } = await spawnFixture(fixtures.path('assert-snapshot/basic.mjs')); + await unlink(snapshotPath); + assert.strictEqual(stderr, ''); + assert.strictEqual(code, 0); + assert.match(snapshot, /^name:\r?\n'test'$/); + }); + + it('should write multiple snapshots', async () => { + const { stderr, code, snapshot, snapshotPath } = await spawnFixture(fixtures.path('assert-snapshot/multiple.mjs')); + await unlink(snapshotPath); + assert.strictEqual(stderr, ''); + assert.strictEqual(code, 0); + assert.match(snapshot, /^name:\n'test'\r?\n#\*#\*#\*#\*#\*#\*#\*#\*#\*#\*#\*#\r?\nanother name:\r?\n'test'$/); + }); + + it('should succeed running multiple times', async () => { + let result = await spawnFixture(fixtures.path('assert-snapshot/single.mjs'), false); + assert.strictEqual(result.stderr, ''); + assert.strictEqual(result.code, 0); + assert.match(result.snapshot, /^snapshot:\r?\n'test'$/); + + result = await spawnFixture(fixtures.path('assert-snapshot/single.mjs')); + await unlink(result.snapshotPath); + assert.strictEqual(result.stderr, ''); + assert.strictEqual(result.code, 0); + assert.match(result.snapshot, /^snapshot:\r?\n'test'$/); + }); + + it('should fail when name is not provided', async () => { + for (const name of [1, undefined, null, {}, function() {}]) { + await assert.rejects(() => assert.snapshot('', name), { + code: 'ERR_INVALID_ARG_TYPE', + name: 'TypeError', + message: /^The "name" argument must be of type string/ + }); + } + }); + + it('should fail when value does not match snapshot', async () => { + const { code, stderr, snapshot } = await spawnFixture(fixtures.path('assert-snapshot/value-changed.mjs')); + assert.match(stderr, /AssertionError \[ERR_ASSERTION\]/); + assert.strictEqual(code, 1); + assert.match(snapshot, /^snapshot:\r?\n'original'$/); + }); + + it('should fail when snapshot does not contain a named snapshot', async () => { + const { code, stderr, snapshot } = await spawnFixture(fixtures.path('assert-snapshot/non-existing-name.mjs')); + assert.match(stderr, /AssertionError \[ERR_ASSERTION\]/); + assert.match(stderr, /Snapshot "non existing" does not exist/); + assert.strictEqual(code, 1); + assert.match(snapshot, /^another name:\r?\n'test'\r?\n#\*#\*#\*#\*#\*#\*#\*#\*#\*#\*#\*#\r?\nname:\r?\n'test'$/); + }); + + it('should snapshot a random replaced value', async () => { + const originalSnapshot = await readFile(fixtures.path('assert-snapshot/random.snapshot'), 'utf8'); + const { stderr, code, snapshot } = await spawnFixture(fixtures.path('assert-snapshot/random.mjs')); + assert.strictEqual(stderr, ''); + assert.strictEqual(code, 0); + assert.strictEqual(snapshot, originalSnapshot); + }); + + it('should serialize values', async () => { + const originalSnapshot = await readFile(fixtures.path('assert-snapshot/serialize.snapshot'), 'utf8'); + const { stderr, code, snapshot } = await spawnFixture(fixtures.path('assert-snapshot/serialize.mjs')); + assert.strictEqual(stderr, ''); + assert.strictEqual(code, 0); + assert.strictEqual(snapshot, originalSnapshot); + }); + + it('should override snapshot when passing --update-assert-snapshot', async () => { + const filename = 'updated.mjs'; + await writeFile(getSnapshotPath(filename), 'snapshot:\n\'test\''); + const { stderr, code, snapshot } = await spawnTmpfile('await assert.snapshot(\'changed\', \'snapshot\');', + filename, ['--update-assert-snapshot']); + assert.strictEqual(stderr, ''); + assert.strictEqual(code, 0); + assert.match(snapshot, /^snapshot:\r?\n'changed'$/); + }); + + it('snapshot file should have the name of the module - esm', async () => { + const filename = 'name.mjs'; + const { snapshotPath } = await spawnTmpfile('await assert.snapshot("test");', filename); + assert.match(snapshotPath, /name\.snapshot$/); + }); + + it('snapshot file should have the name of the module - common js', async () => { + const filename = 'name.js'; + const { snapshotPath } = await spawnTmpfile('assert.snapshot("test").then(() => process.exit());', filename); + assert.match(snapshotPath, /name\.snapshot$/); + }); +}); diff --git a/test/parallel/test-bootstrap-modules.js b/test/parallel/test-bootstrap-modules.js index 9f578f17a7faa1e..e2a39dd4e9e1440 100644 --- a/test/parallel/test-bootstrap-modules.js +++ b/test/parallel/test-bootstrap-modules.js @@ -46,6 +46,7 @@ const expectedModules = new Set([ 'Internal Binding wasm_web_api', 'Internal Binding worker', 'NativeModule buffer', + 'NativeModule diagnostics_channel', 'NativeModule events', 'NativeModule fs', 'NativeModule internal/abort_controller', diff --git a/test/parallel/test-child-process-exec-timeout-expire.js b/test/parallel/test-child-process-exec-timeout-expire.js new file mode 100644 index 000000000000000..08e54544836d98c --- /dev/null +++ b/test/parallel/test-child-process-exec-timeout-expire.js @@ -0,0 +1,50 @@ +'use strict'; + +// Test exec() with a timeout that expires. + +const common = require('../common'); +const assert = require('assert'); +const cp = require('child_process'); + +const { + cleanupStaleProcess, + logAfterTime, + kExpiringChildRunTime, + kExpiringParentTimer +} = require('../common/child_process'); + +if (process.argv[2] === 'child') { + logAfterTime(kExpiringChildRunTime); + return; +} + +const cmd = `"${process.execPath}" "${__filename}" child`; + +cp.exec(cmd, { + timeout: kExpiringParentTimer, +}, common.mustCall((err, stdout, stderr) => { + console.log('[stdout]', stdout.trim()); + console.log('[stderr]', stderr.trim()); + + let sigterm = 'SIGTERM'; + assert.strictEqual(err.killed, true); + // TODO OpenBSD returns a null signal and 143 for code + if (common.isOpenBSD) { + assert.strictEqual(err.code, 143); + sigterm = null; + } else { + assert.strictEqual(err.code, null); + } + // At least starting with Darwin Kernel Version 16.4.0, sending a SIGTERM to a + // process that is still starting up kills it with SIGKILL instead of SIGTERM. + // See: https://github.com/libuv/libuv/issues/1226 + if (common.isOSX) + assert.ok(err.signal === 'SIGTERM' || err.signal === 'SIGKILL'); + else + assert.strictEqual(err.signal, sigterm); + assert.strictEqual(err.cmd, cmd); + assert.strictEqual(stdout.trim(), ''); + assert.strictEqual(stderr.trim(), ''); +})); + +cleanupStaleProcess(__filename); diff --git a/test/parallel/test-child-process-exec-timeout-kill.js b/test/parallel/test-child-process-exec-timeout-kill.js new file mode 100644 index 000000000000000..0be04e8607f3d01 --- /dev/null +++ b/test/parallel/test-child-process-exec-timeout-kill.js @@ -0,0 +1,39 @@ +'use strict'; + +// Test exec() with both a timeout and a killSignal. + +const common = require('../common'); +const assert = require('assert'); +const cp = require('child_process'); + +const { + cleanupStaleProcess, + logInTimeout, + kExpiringChildRunTime, + kExpiringParentTimer, +} = require('../common/child_process'); + +if (process.argv[2] === 'child') { + logInTimeout(kExpiringChildRunTime); + return; +} + +const cmd = `"${process.execPath}" "${__filename}" child`; + +// Test with a different kill signal. +cp.exec(cmd, { + timeout: kExpiringParentTimer, + killSignal: 'SIGKILL' +}, common.mustCall((err, stdout, stderr) => { + console.log('[stdout]', stdout.trim()); + console.log('[stderr]', stderr.trim()); + + assert.strictEqual(err.killed, true); + assert.strictEqual(err.code, null); + assert.strictEqual(err.signal, 'SIGKILL'); + assert.strictEqual(err.cmd, cmd); + assert.strictEqual(stdout.trim(), ''); + assert.strictEqual(stderr.trim(), ''); +})); + +cleanupStaleProcess(__filename); diff --git a/test/parallel/test-child-process-exec-timeout-not-expired.js b/test/parallel/test-child-process-exec-timeout-not-expired.js new file mode 100644 index 000000000000000..fb0af5fa8f59d52 --- /dev/null +++ b/test/parallel/test-child-process-exec-timeout-not-expired.js @@ -0,0 +1,34 @@ +'use strict'; + +// Test exec() when a timeout is set, but not expired. + +const common = require('../common'); +const assert = require('assert'); +const cp = require('child_process'); + +const { + cleanupStaleProcess, + logAfterTime +} = require('../common/child_process'); + +const kTimeoutNotSupposedToExpire = 2 ** 30; +const childRunTime = common.platformTimeout(100); + +// The time spent in the child should be smaller than the timeout below. +assert(childRunTime < kTimeoutNotSupposedToExpire); + +if (process.argv[2] === 'child') { + logAfterTime(childRunTime); + return; +} + +const cmd = `"${process.execPath}" "${__filename}" child`; + +cp.exec(cmd, { + timeout: kTimeoutNotSupposedToExpire +}, common.mustSucceed((stdout, stderr) => { + assert.strictEqual(stdout.trim(), 'child stdout'); + assert.strictEqual(stderr.trim(), 'child stderr'); +})); + +cleanupStaleProcess(__filename); diff --git a/test/parallel/test-child-process-exec-timeout.js b/test/parallel/test-child-process-exec-timeout.js deleted file mode 100644 index 64648d62bb32847..000000000000000 --- a/test/parallel/test-child-process-exec-timeout.js +++ /dev/null @@ -1,73 +0,0 @@ -'use strict'; -const common = require('../common'); -const assert = require('assert'); -const cp = require('child_process'); - -if (process.argv[2] === 'child') { - setTimeout(() => { - // The following console statements are part of the test. - console.log('child stdout'); - console.error('child stderr'); - }, common.platformTimeout(1000)); - return; -} - -const cmd = `"${process.execPath}" "${__filename}" child`; - -// Test the case where a timeout is set, and it expires. -cp.exec(cmd, { timeout: 1 }, common.mustCall((err, stdout, stderr) => { - let sigterm = 'SIGTERM'; - assert.strictEqual(err.killed, true); - // TODO OpenBSD returns a null signal and 143 for code - if (common.isOpenBSD) { - assert.strictEqual(err.code, 143); - sigterm = null; - } else { - assert.strictEqual(err.code, null); - } - // At least starting with Darwin Kernel Version 16.4.0, sending a SIGTERM to a - // process that is still starting up kills it with SIGKILL instead of SIGTERM. - // See: https://github.com/libuv/libuv/issues/1226 - if (common.isOSX) - assert.ok(err.signal === 'SIGTERM' || err.signal === 'SIGKILL'); - else - assert.strictEqual(err.signal, sigterm); - assert.strictEqual(err.cmd, cmd); - assert.strictEqual(stdout.trim(), ''); - assert.strictEqual(stderr.trim(), ''); -})); - -// Test with a different kill signal. -cp.exec(cmd, { - timeout: 1, - killSignal: 'SIGKILL' -}, common.mustCall((err, stdout, stderr) => { - assert.strictEqual(err.killed, true); - assert.strictEqual(err.code, null); - assert.strictEqual(err.signal, 'SIGKILL'); - assert.strictEqual(err.cmd, cmd); - assert.strictEqual(stdout.trim(), ''); - assert.strictEqual(stderr.trim(), ''); -})); - -// Test the case where a timeout is set, but not expired. -cp.exec(cmd, { timeout: 2 ** 30 }, common.mustSucceed((stdout, stderr) => { - assert.strictEqual(stdout.trim(), 'child stdout'); - assert.strictEqual(stderr.trim(), 'child stderr'); -})); - -// Workaround for Windows Server 2008R2 -// When CMD is used to launch a process and CMD is killed too quickly, the -// process can stay behind running in suspended state, never completing. -if (common.isWindows) { - process.once('beforeExit', () => { - const basename = __filename.replace(/.*[/\\]/g, ''); - cp.execFileSync(`${process.env.SystemRoot}\\System32\\wbem\\WMIC.exe`, [ - 'process', - 'where', - `commandline like '%${basename}%child'`, - 'delete', - '/nointeractive', - ]); - }); -} diff --git a/test/parallel/test-child-process-spawnsync-timeout.js b/test/parallel/test-child-process-spawnsync-timeout.js index aeb2be86608cf46..426ac05a43497c4 100644 --- a/test/parallel/test-child-process-spawnsync-timeout.js +++ b/test/parallel/test-child-process-spawnsync-timeout.js @@ -28,7 +28,14 @@ const { debuglog, getSystemErrorName } = require('util'); const debug = debuglog('test'); const TIMER = 200; -const SLEEP = common.platformTimeout(5000); +let SLEEP = common.platformTimeout(5000); + +if (common.isWindows) { + // Some of the windows machines in the CI need more time to launch + // and receive output from child processes. + // https://github.com/nodejs/build/issues/3014 + SLEEP = common.platformTimeout(15000); +} switch (process.argv[2]) { case 'child': diff --git a/test/parallel/test-cluster-accept-fail.js b/test/parallel/test-cluster-accept-fail.js new file mode 100644 index 000000000000000..29d57783a9d11f3 --- /dev/null +++ b/test/parallel/test-cluster-accept-fail.js @@ -0,0 +1,30 @@ +// Flags: --expose-internals +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const net = require('net'); +const cluster = require('cluster'); +const rr = require('internal/cluster/round_robin_handle'); + +if (cluster.isPrimary) { + const distribute = rr.prototype.distribute; + rr.prototype.distribute = function(err, handle) { + assert.strictEqual(err, 0); + handle.close(); + distribute.call(this, -1, undefined); + }; + cluster.schedulingPolicy = cluster.SCHED_RR; + cluster.fork(); +} else { + const server = net.createServer(common.mustNotCall()); + server.listen(0, common.mustCall(() => { + + const socket = net.connect(server.address().port); + + socket.on('close', common.mustCall(() => { + server.close(common.mustCall(() => { + process.disconnect(); + })); + })); + })); +} diff --git a/test/parallel/test-console-log-stdio-broken-dest.js b/test/parallel/test-console-log-stdio-broken-dest.js index d29e8ee5173be75..bdd1b79427453a9 100644 --- a/test/parallel/test-console-log-stdio-broken-dest.js +++ b/test/parallel/test-console-log-stdio-broken-dest.js @@ -15,7 +15,7 @@ const stream = new Writable({ }); const myConsole = new Console(stream, stream); -process.on('warning', common.mustNotCall); +process.on('warning', common.mustNotCall()); stream.cork(); for (let i = 0; i < EventEmitter.defaultMaxListeners + 1; i++) { diff --git a/test/parallel/test-crypto-hkdf.js b/test/parallel/test-crypto-hkdf.js index 2d6689a486ddb6e..ff3abdf291efcd0 100644 --- a/test/parallel/test-crypto-hkdf.js +++ b/test/parallel/test-crypto-hkdf.js @@ -120,6 +120,8 @@ const { const algorithms = [ ['sha256', 'secret', 'salt', 'info', 10], + ['sha256', '', '', '', 10], + ['sha256', '', 'salt', '', 10], ['sha512', 'secret', 'salt', '', 15], ]; if (!common.hasOpenSSL3) diff --git a/test/parallel/test-crypto-hmac.js b/test/parallel/test-crypto-hmac.js index de0a59423d4b2a7..0edea0dfb0fdcc1 100644 --- a/test/parallel/test-crypto-hmac.js +++ b/test/parallel/test-crypto-hmac.js @@ -450,3 +450,12 @@ assert.strictEqual( () => crypto.createHmac('sha7', 'key'), /Invalid digest/); } + +{ + const buf = Buffer.alloc(0); + const keyObject = crypto.createSecretKey(Buffer.alloc(0)); + assert.deepStrictEqual( + crypto.createHmac('sha256', buf).update('foo').digest(), + crypto.createHmac('sha256', keyObject).update('foo').digest(), + ); +} diff --git a/test/parallel/test-crypto-key-objects.js b/test/parallel/test-crypto-key-objects.js index ce8de4d0cdba2de..93e7cca3fbbdbd5 100644 --- a/test/parallel/test-crypto-key-objects.js +++ b/test/parallel/test-crypto-key-objects.js @@ -33,18 +33,6 @@ const publicDsa = fixtures.readKey('dsa_public_1025.pem', 'ascii'); const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', 'ascii'); -{ - // Attempting to create an empty key should throw. - assert.throws(() => { - createSecretKey(Buffer.alloc(0)); - }, { - name: 'RangeError', - code: 'ERR_OUT_OF_RANGE', - message: 'The value of "key.byteLength" is out of range. ' + - 'It must be > 0. Received 0' - }); -} - { // Attempting to create a key of a wrong type should throw const TYPE = 'wrong_type'; @@ -870,3 +858,25 @@ const privateDsa = fixtures.readKey('dsa_private_encrypted_1025.pem', assert(!first.privateKey.equals(second.privateKey)); assert(!first.privateKey.equals(second.publicKey)); } + +{ + const first = createSecretKey(Buffer.alloc(0)); + const second = createSecretKey(new ArrayBuffer(0)); + const third = createSecretKey(Buffer.alloc(1)); + assert(first.equals(first)); + assert(first.equals(second)); + assert(!first.equals(third)); + assert(!third.equals(first)); +} + +{ + // This should not cause a crash: https://github.com/nodejs/node/issues/44471 + for (const key of ['', 'foo', null, undefined, true, Boolean]) { + assert.throws(() => { + createPublicKey({ key, format: 'jwk' }); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + assert.throws(() => { + createPrivateKey({ key, format: 'jwk' }); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + } +} diff --git a/test/parallel/test-crypto-keygen.js b/test/parallel/test-crypto-keygen.js index 4e657e190e78b42..1e967a4052bf05d 100644 --- a/test/parallel/test-crypto-keygen.js +++ b/test/parallel/test-crypto-keygen.js @@ -1654,6 +1654,24 @@ const sec1EncExp = (cipher) => getRegExpForPEM('EC PRIVATE KEY', cipher); } ); } + + assert.throws(() => generateKeyPair('rsa-pss', { + modulusLength: 512, + hashAlgorithm: 'sha2', + }, common.mustNotCall()), { + name: 'TypeError', + code: 'ERR_CRYPTO_INVALID_DIGEST', + message: 'Invalid digest: sha2' + }); + + assert.throws(() => generateKeyPair('rsa-pss', { + modulusLength: 512, + mgf1HashAlgorithm: 'sha2', + }, common.mustNotCall()), { + name: 'TypeError', + code: 'ERR_CRYPTO_INVALID_DIGEST', + message: 'Invalid MGF1 digest: sha2' + }); } // Passing an empty passphrase string should not cause OpenSSL's default diff --git a/test/parallel/test-crypto-sign-verify.js b/test/parallel/test-crypto-sign-verify.js index b2c14b1efcd68bd..74c0ff53eb18b74 100644 --- a/test/parallel/test-crypto-sign-verify.js +++ b/test/parallel/test-crypto-sign-verify.js @@ -756,3 +756,21 @@ assert.throws( message: /digest too big for rsa key/ }); } + +{ + // This should not cause a crash: https://github.com/nodejs/node/issues/44471 + for (const key of ['', 'foo', null, undefined, true, Boolean]) { + assert.throws(() => { + crypto.verify('sha256', 'foo', { key, format: 'jwk' }, Buffer.alloc(0)); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + assert.throws(() => { + crypto.createVerify('sha256').verify({ key, format: 'jwk' }, Buffer.alloc(0)); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + assert.throws(() => { + crypto.sign('sha256', 'foo', { key, format: 'jwk' }); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + assert.throws(() => { + crypto.createSign('sha256').sign({ key, format: 'jwk' }); + }, { code: 'ERR_INVALID_ARG_TYPE', message: /The "key\.key" property must be of type object/ }); + } +} diff --git a/test/parallel/test-dgram-send-queue-info.js b/test/parallel/test-dgram-send-queue-info.js new file mode 100644 index 000000000000000..07b282b29fcc827 --- /dev/null +++ b/test/parallel/test-dgram-send-queue-info.js @@ -0,0 +1,27 @@ +// Flags: --test-udp-no-try-send +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const dgram = require('dgram'); + +const socket = dgram.createSocket('udp4'); +assert.strictEqual(socket.getSendQueueSize(), 0); +assert.strictEqual(socket.getSendQueueCount(), 0); +socket.close(); + +const server = dgram.createSocket('udp4'); +const client = dgram.createSocket('udp4'); + +server.bind(0, common.mustCall(() => { + client.connect(server.address().port, common.mustCall(() => { + const data = 'hello'; + client.send(data); + client.send(data); + // See uv__send in win/udp.c + assert.strictEqual(client.getSendQueueSize(), + common.isWindows ? 0 : data.length * 2); + assert.strictEqual(client.getSendQueueCount(), 2); + client.close(); + server.close(); + })); +})); diff --git a/test/parallel/test-diagnostics-channel-process.js b/test/parallel/test-diagnostics-channel-process.js new file mode 100644 index 000000000000000..3ca6e2cd4f243a1 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-process.js @@ -0,0 +1,21 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const cluster = require('cluster'); +const { ChildProcess } = require('child_process'); +const dc = require('diagnostics_channel'); + +if (cluster.isPrimary) { + dc.subscribe('child_process', common.mustCall(({ process }) => { + assert.strictEqual(process instanceof ChildProcess, true); + })); + const worker = cluster.fork(); + worker.on('online', common.mustCall(() => { + worker.send('disconnect'); + })); +} else { + process.on('message', common.mustCall((msg) => { + assert.strictEqual(msg, 'disconnect'); + process.disconnect(); + })); +} diff --git a/test/parallel/test-diagnostics-channel-worker-threads.js b/test/parallel/test-diagnostics-channel-worker-threads.js new file mode 100644 index 000000000000000..786b77da1709d36 --- /dev/null +++ b/test/parallel/test-diagnostics-channel-worker-threads.js @@ -0,0 +1,11 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const { Worker } = require('worker_threads'); +const dc = require('diagnostics_channel'); + +dc.subscribe('worker_threads', common.mustCall(({ worker }) => { + assert.strictEqual(worker instanceof Worker, true); +})); + +new Worker('const a = 1;', { eval: true }); diff --git a/test/errors/test-error-value-type-detection.mjs b/test/parallel/test-error-value-type-detection.mjs similarity index 100% rename from test/errors/test-error-value-type-detection.mjs rename to test/parallel/test-error-value-type-detection.mjs diff --git a/test/parallel/test-eslint-avoid-prototype-pollution.js b/test/parallel/test-eslint-avoid-prototype-pollution.js index f10d6ea973b3473..c30928f56ce91a4 100644 --- a/test/parallel/test-eslint-avoid-prototype-pollution.js +++ b/test/parallel/test-eslint-avoid-prototype-pollution.js @@ -45,6 +45,9 @@ new RuleTester({ 'ReflectDefineProperty({}, "key", { "__proto__": null })', 'ObjectDefineProperty({}, "key", { \'__proto__\': null })', 'ReflectDefineProperty({}, "key", { \'__proto__\': null })', + 'StringPrototypeReplace("some string", "some string", "some replacement")', + 'StringPrototypeReplaceAll("some string", "some string", "some replacement")', + 'StringPrototypeSplit("some string", "some string")', 'new Proxy({}, otherObject)', 'new Proxy({}, someFactory())', 'new Proxy({}, { __proto__: null })', @@ -167,18 +170,38 @@ new RuleTester({ code: 'StringPrototypeMatch("some string", /some regex/)', errors: [{ message: /looks up the Symbol\.match property/ }], }, + { + code: 'let v = StringPrototypeMatch("some string", /some regex/)', + errors: [{ message: /looks up the Symbol\.match property/ }], + }, + { + code: 'let v = StringPrototypeMatch("some string", new RegExp("some regex"))', + errors: [{ message: /looks up the Symbol\.match property/ }], + }, { code: 'StringPrototypeMatchAll("some string", /some regex/)', errors: [{ message: /looks up the Symbol\.matchAll property/ }], }, + { + code: 'let v = StringPrototypeMatchAll("some string", new RegExp("some regex"))', + errors: [{ message: /looks up the Symbol\.matchAll property/ }], + }, { code: 'StringPrototypeReplace("some string", /some regex/, "some replacement")', errors: [{ message: /looks up the Symbol\.replace property/ }], }, + { + code: 'StringPrototypeReplace("some string", new RegExp("some regex"), "some replacement")', + errors: [{ message: /looks up the Symbol\.replace property/ }], + }, { code: 'StringPrototypeReplaceAll("some string", /some regex/, "some replacement")', errors: [{ message: /looks up the Symbol\.replace property/ }], }, + { + code: 'StringPrototypeReplaceAll("some string", new RegExp("some regex"), "some replacement")', + errors: [{ message: /looks up the Symbol\.replace property/ }], + }, { code: 'StringPrototypeSearch("some string", /some regex/)', errors: [{ message: /looks up the Symbol\.search property/ }], diff --git a/test/parallel/test-eval-disallow-code-generation-from-strings.js b/test/parallel/test-eval-disallow-code-generation-from-strings.js new file mode 100644 index 000000000000000..c9c0c60b773ce8c --- /dev/null +++ b/test/parallel/test-eval-disallow-code-generation-from-strings.js @@ -0,0 +1,9 @@ +// Flags: --disallow-code-generation-from-strings +'use strict'; + +require('../common'); +const assert = require('assert'); + +// Verify that v8 option --disallow-code-generation-from-strings is still +// respected +assert.throws(() => eval('"eval"'), EvalError); diff --git a/test/parallel/test-eval.js b/test/parallel/test-eval.js new file mode 100644 index 000000000000000..46a4b7c54689b15 --- /dev/null +++ b/test/parallel/test-eval.js @@ -0,0 +1,7 @@ +'use strict'; + +require('../common'); +const assert = require('assert'); + +// Verify that eval is allowed by default. +assert.strictEqual(eval('"eval"'), 'eval'); diff --git a/test/parallel/test-fs-stat-date.mjs b/test/parallel/test-fs-stat-date.mjs index c3b52f070cab181..979f6d5f453cd14 100644 --- a/test/parallel/test-fs-stat-date.mjs +++ b/test/parallel/test-fs-stat-date.mjs @@ -17,6 +17,14 @@ const filepath = path.resolve(tmpdir.path, 'timestamp'); await (await fsPromises.open(filepath, 'w')).close(); +// Perform a trivial check to determine if filesystem supports setting +// and retrieving atime and mtime. If it doesn't, skip the test. +await fsPromises.utimes(filepath, 2, 2); +const { atimeMs, mtimeMs } = await fsPromises.stat(filepath); +if (atimeMs !== 2000 || mtimeMs !== 2000) { + common.skip(`Unsupported filesystem (atime=${atimeMs}, mtime=${mtimeMs})`); +} + // Date might round down timestamp function closeEnough(actual, expected, margin) { // On ppc64, value is rounded to seconds diff --git a/test/parallel/test-fs-write-stream-file-handle-2.js b/test/parallel/test-fs-write-stream-file-handle-2.js new file mode 100644 index 000000000000000..25f68b14da70b39 --- /dev/null +++ b/test/parallel/test-fs-write-stream-file-handle-2.js @@ -0,0 +1,33 @@ +'use strict'; +const common = require('../common'); +const fs = require('fs'); +const path = require('path'); +const assert = require('assert'); +const tmpdir = require('../common/tmpdir'); +const file = path.join(tmpdir.path, 'write_stream_filehandle_test.txt'); +const input = 'hello world'; + +tmpdir.refresh(); + +fs.promises.open(file, 'w+').then((handle) => { + let calls = 0; + const { + write: originalWriteFunction, + writev: originalWritevFunction + } = handle; + handle.write = function write() { + calls++; + return Reflect.apply(originalWriteFunction, this, arguments); + }; + handle.writev = function writev() { + calls++; + return Reflect.apply(originalWritevFunction, this, arguments); + }; + const stream = fs.createWriteStream(null, { fd: handle }); + + stream.end(input); + stream.on('close', common.mustCall(() => { + assert(calls > 0, 'expected at least one call to fileHandle.write or ' + + 'fileHandle.writev, got 0'); + })); +}).then(common.mustCall()); diff --git a/test/parallel/test-fs-write-stream-file-handle.js b/test/parallel/test-fs-write-stream-file-handle.js index 23ddf21c50f3f27..01c490ef5d0da1e 100644 --- a/test/parallel/test-fs-write-stream-file-handle.js +++ b/test/parallel/test-fs-write-stream-file-handle.js @@ -19,26 +19,3 @@ fs.promises.open(file, 'w+').then((handle) => { assert.strictEqual(output, input); })); }).then(common.mustCall()); - -fs.promises.open(file, 'w+').then((handle) => { - let calls = 0; - const { - write: originalWriteFunction, - writev: originalWritevFunction - } = handle; - handle.write = function write() { - calls++; - return Reflect.apply(originalWriteFunction, this, arguments); - }; - handle.writev = function writev() { - calls++; - return Reflect.apply(originalWritevFunction, this, arguments); - }; - const stream = fs.createWriteStream(null, { fd: handle }); - - stream.end(input); - stream.on('close', common.mustCall(() => { - assert(calls > 0, 'expected at least one call to fileHandle.write or ' + - 'fileHandle.writev, got 0'); - })); -}).then(common.mustCall()); diff --git a/test/parallel/test-heap-prof-basic.js b/test/parallel/test-heap-prof-basic.js new file mode 100644 index 000000000000000..34d8af9a7840733 --- /dev/null +++ b/test/parallel/test-heap-prof-basic.js @@ -0,0 +1,37 @@ +'use strict'; + +// Tests --heap-prof without --heap-prof-interval. Here we just verify that +// we manage to generate a profile. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof', + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + console.log(output); + } + assert.strictEqual(output.status, 0); + const profiles = getHeapProfiles(tmpdir.path); + assert.strictEqual(profiles.length, 1); +} diff --git a/test/parallel/test-heap-prof-dir-absolute.js b/test/parallel/test-heap-prof-dir-absolute.js new file mode 100644 index 000000000000000..5fa22470545624e --- /dev/null +++ b/test/parallel/test-heap-prof-dir-absolute.js @@ -0,0 +1,47 @@ +'use strict'; + +// This tests that --heap-prof, --heap-prof-dir and --heap-prof-name works. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const fs = require('fs'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +// Tests absolute --heap-prof-dir +{ + tmpdir.refresh(); + const dir = path.join(tmpdir.path, 'prof'); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-dir', + dir, + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + assert(fs.existsSync(dir)); + const profiles = getHeapProfiles(dir); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-dir-name.js b/test/parallel/test-heap-prof-dir-name.js new file mode 100644 index 000000000000000..ebc9374859663f3 --- /dev/null +++ b/test/parallel/test-heap-prof-dir-name.js @@ -0,0 +1,49 @@ +'use strict'; + +// Tests --heap-prof-dir and --heap-prof-name work together. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const fs = require('fs'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const dir = path.join(tmpdir.path, 'prof'); + const file = path.join(dir, 'test.heapprofile'); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-name', + 'test.heapprofile', + '--heap-prof-dir', + dir, + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + assert(fs.existsSync(dir)); + const profiles = getHeapProfiles(dir); + assert.deepStrictEqual(profiles, [file]); + verifyFrames(output, file, 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-dir-relative.js b/test/parallel/test-heap-prof-dir-relative.js new file mode 100644 index 000000000000000..8b71856cde99bc4 --- /dev/null +++ b/test/parallel/test-heap-prof-dir-relative.js @@ -0,0 +1,46 @@ +'use strict'; + +// Tests relative --heap-prof-dir works. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const fs = require('fs'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-dir', + 'prof', + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + const dir = path.join(tmpdir.path, 'prof'); + assert(fs.existsSync(dir)); + const profiles = getHeapProfiles(dir); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-exec-argv.js b/test/parallel/test-heap-prof-exec-argv.js new file mode 100644 index 000000000000000..02ad4430dba7694 --- /dev/null +++ b/test/parallel/test-heap-prof-exec-argv.js @@ -0,0 +1,39 @@ +'use strict'; + +// Tests --heap-prof generates a heap profile from worker +// when execArgv is set. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + fixtures.path('workload', 'allocation-worker-argv.js'), + ], { + cwd: tmpdir.path, + env: { + ...process.env, + HEAP_PROF_INTERVAL: '128' + } + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + const profiles = getHeapProfiles(tmpdir.path); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-exit.js b/test/parallel/test-heap-prof-exit.js new file mode 100644 index 000000000000000..ed5073c18f4785b --- /dev/null +++ b/test/parallel/test-heap-prof-exit.js @@ -0,0 +1,41 @@ +'use strict'; + +// Tests --heap-prof generates a heap profile when process.exit(55) exits +// process. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation-exit.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 55) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 55); + const profiles = getHeapProfiles(tmpdir.path); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-interval.js b/test/parallel/test-heap-prof-interval.js new file mode 100644 index 000000000000000..18841016a713712 --- /dev/null +++ b/test/parallel/test-heap-prof-interval.js @@ -0,0 +1,56 @@ +'use strict'; + +// Tests multiple profiles generated by --heap-prof-interval are valid. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const fs = require('fs'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + findFirstFrame, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof-interval', + kHeapProfInterval, + '--heap-prof-dir', + 'prof', + '--heap-prof', + fixtures.path('workload', 'allocation-worker.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + const dir = path.join(tmpdir.path, 'prof'); + assert(fs.existsSync(dir)); + const profiles = getHeapProfiles(dir); + assert.strictEqual(profiles.length, 2); + const profile1 = findFirstFrame(profiles[0], 'runAllocation'); + const profile2 = findFirstFrame(profiles[1], 'runAllocation'); + if (!profile1.frame && !profile2.frame) { + // Show native debug output and the profile for debugging. + console.log(output.stderr.toString()); + console.log('heap path: ', profiles[0]); + console.log(profile1.roots); + console.log('heap path: ', profiles[1]); + console.log(profile2.roots); + } + assert(profile1.frame || profile2.frame); +} diff --git a/test/parallel/test-heap-prof-invalid-args.js b/test/parallel/test-heap-prof-invalid-args.js new file mode 100644 index 000000000000000..e35376038ecc939 --- /dev/null +++ b/test/parallel/test-heap-prof-invalid-args.js @@ -0,0 +1,82 @@ +'use strict'; + +// Tests invalid --heap-prof CLI arguments. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + kHeapProfInterval, + env +} = require('../common/prof'); + +// Tests --heap-prof-name without --heap-prof. +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof-name', + 'test.heapprofile', + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + const stderr = output.stderr.toString().trim(); + if (output.status !== 9) { + console.log(stderr); + } + assert.strictEqual(output.status, 9); + assert.strictEqual( + stderr, + `${process.execPath}: --heap-prof-name must be used with --heap-prof`); +} + +// Tests --heap-prof-dir without --heap-prof. +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof-dir', + 'prof', + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + const stderr = output.stderr.toString().trim(); + if (output.status !== 9) { + console.log(stderr); + } + assert.strictEqual(output.status, 9); + assert.strictEqual( + stderr, + `${process.execPath}: --heap-prof-dir must be used with --heap-prof`); +} + +// Tests --heap-prof-interval without --heap-prof. +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + const stderr = output.stderr.toString().trim(); + if (output.status !== 9) { + console.log(stderr); + } + assert.strictEqual(output.status, 9); + assert.strictEqual( + stderr, + `${process.execPath}: ` + + '--heap-prof-interval must be used with --heap-prof'); +} diff --git a/test/parallel/test-heap-prof-loop-drained.js b/test/parallel/test-heap-prof-loop-drained.js new file mode 100644 index 000000000000000..d0fc4c98784917d --- /dev/null +++ b/test/parallel/test-heap-prof-loop-drained.js @@ -0,0 +1,41 @@ +'use strict'; + +// Tests that --heap-prof outputs heap profile when event loop is drained. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env, +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + console.log(output); + } + assert.strictEqual(output.status, 0); + const profiles = getHeapProfiles(tmpdir.path); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-name.js b/test/parallel/test-heap-prof-name.js new file mode 100644 index 000000000000000..a2bf6aae396203d --- /dev/null +++ b/test/parallel/test-heap-prof-name.js @@ -0,0 +1,44 @@ +'use strict'; + +// Tests --heap-prof-name works. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const file = path.join(tmpdir.path, 'test.heapprofile'); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-name', + 'test.heapprofile', + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation.js'), + ], { + cwd: tmpdir.path, + env + }); + if (output.status !== 0) { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.status, 0); + const profiles = getHeapProfiles(tmpdir.path); + assert.deepStrictEqual(profiles, [file]); + verifyFrames(output, file, 'runAllocation'); +} diff --git a/test/parallel/test-heap-prof-sigint.js b/test/parallel/test-heap-prof-sigint.js new file mode 100644 index 000000000000000..ec078256c2a8e90 --- /dev/null +++ b/test/parallel/test-heap-prof-sigint.js @@ -0,0 +1,43 @@ +'use strict'; + +// Tests --heap-prof generates a heap profile when +// process.kill(process.pid, "SIGINT"); exits process. + +const common = require('../common'); + +const fixtures = require('../common/fixtures'); +common.skipIfInspectorDisabled(); + +const assert = require('assert'); +const { spawnSync } = require('child_process'); + +const tmpdir = require('../common/tmpdir'); + +const { + getHeapProfiles, + verifyFrames, + kHeapProfInterval, + env +} = require('../common/prof'); + +{ + tmpdir.refresh(); + const output = spawnSync(process.execPath, [ + '--heap-prof', + '--heap-prof-interval', + kHeapProfInterval, + fixtures.path('workload', 'allocation-sigint.js'), + ], { + cwd: tmpdir.path, + env + }); + if (!common.isWindows) { + if (output.signal !== 'SIGINT') { + console.log(output.stderr.toString()); + } + assert.strictEqual(output.signal, 'SIGINT'); + } + const profiles = getHeapProfiles(tmpdir.path); + assert.strictEqual(profiles.length, 1); + verifyFrames(output, profiles[0], 'runAllocation'); +} diff --git a/test/parallel/test-http-early-hints-invalid-argument-type.js b/test/parallel/test-http-early-hints-invalid-argument-type.js new file mode 100644 index 000000000000000..796ab7d6366572a --- /dev/null +++ b/test/parallel/test-http-early-hints-invalid-argument-type.js @@ -0,0 +1,33 @@ +'use strict'; +const common = require('../common'); +const assert = require('node:assert'); +const http = require('node:http'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content\n'; + +const server = http.createServer(common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints({ links: 'bad argument object' }); + + debug('Server sending full response...'); + res.end(testResBody); +})); + +server.listen(0, common.mustCall(() => { + const req = http.request({ + port: server.address().port, path: '/' + }); + + req.end(); + debug('Client sending request...'); + + req.on('information', common.mustNotCall()); + + process.on('uncaughtException', (err) => { + debug(`Caught an exception: ${JSON.stringify(err)}`); + if (err.name === 'AssertionError') throw err; + assert.strictEqual(err.code, 'ERR_INVALID_ARG_VALUE'); + process.exit(0); + }); +})); diff --git a/test/parallel/test-http-early-hints-invalid-argument.js b/test/parallel/test-http-early-hints-invalid-argument.js new file mode 100644 index 000000000000000..62b83556fef3838 --- /dev/null +++ b/test/parallel/test-http-early-hints-invalid-argument.js @@ -0,0 +1,33 @@ +'use strict'; +const common = require('../common'); +const assert = require('node:assert'); +const http = require('node:http'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content\n'; + +const server = http.createServer(common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints('bad argument value'); + + debug('Server sending full response...'); + res.end(testResBody); +})); + +server.listen(0, common.mustCall(() => { + const req = http.request({ + port: server.address().port, path: '/' + }); + + req.end(); + debug('Client sending request...'); + + req.on('information', common.mustNotCall()); + + process.on('uncaughtException', (err) => { + debug(`Caught an exception: ${JSON.stringify(err)}`); + if (err.name === 'AssertionError') throw err; + assert.strictEqual(err.code, 'ERR_INVALID_ARG_VALUE'); + process.exit(0); + }); +})); diff --git a/test/parallel/test-http-early-hints.js b/test/parallel/test-http-early-hints.js new file mode 100644 index 000000000000000..975be2e112a5b3c --- /dev/null +++ b/test/parallel/test-http-early-hints.js @@ -0,0 +1,135 @@ +'use strict'; +const common = require('../common'); +const assert = require('node:assert'); +const http = require('node:http'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content\n'; + +{ + // Happy flow - string argument + + const server = http.createServer(common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints('; rel=preload; as=style'); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0, common.mustCall(() => { + const req = http.request({ + port: server.address().port, path: '/' + }); + + debug('Client sending request...'); + + req.on('information', common.mustCall((res) => { + assert.strictEqual(res.headers.link, '; rel=preload; as=style'); + })); + + req.on('response', common.mustCall((res) => { + let body = ''; + + assert.strictEqual(res.statusCode, 200, `Final status code was ${res.statusCode}, not 200.`); + + res.on('data', (chunk) => { + body += chunk; + }); + + res.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(body, testResBody); + server.close(); + })); + })); + + req.end(); + })); +} + +{ + // Happy flow - array argument + + const server = http.createServer(common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints([ + '; rel=preload; as=style', + '; rel=preload; as=script', + ]); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0, common.mustCall(() => { + const req = http.request({ + port: server.address().port, path: '/' + }); + debug('Client sending request...'); + + req.on('information', common.mustCall((res) => { + assert.strictEqual( + res.headers.link, + '; rel=preload; as=style, ; rel=preload; as=script' + ); + })); + + req.on('response', common.mustCall((res) => { + let body = ''; + + assert.strictEqual(res.statusCode, 200, `Final status code was ${res.statusCode}, not 200.`); + + res.on('data', (chunk) => { + body += chunk; + }); + + res.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(body, testResBody); + server.close(); + })); + })); + + req.end(); + })); +} + +{ + // Happy flow - empty array + + const server = http.createServer(common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints([]); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0, common.mustCall(() => { + const req = http.request({ + port: server.address().port, path: '/' + }); + debug('Client sending request...'); + + req.on('information', common.mustNotCall()); + + req.on('response', common.mustCall((res) => { + let body = ''; + + assert.strictEqual(res.statusCode, 200, `Final status code was ${res.statusCode}, not 200.`); + + res.on('data', (chunk) => { + body += chunk; + }); + + res.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(body, testResBody); + server.close(); + })); + })); + + req.end(); + })); +} diff --git a/test/parallel/test-http-keep-alive-max-requests.js b/test/parallel/test-http-keep-alive-max-requests.js index 9412bceffb63aa1..160891e500e46a4 100644 --- a/test/parallel/test-http-keep-alive-max-requests.js +++ b/test/parallel/test-http-keep-alive-max-requests.js @@ -14,7 +14,7 @@ function assertResponse(headers, body, expectClosed) { assert.match(body, /Hello World!/m); } else { assert.match(headers, /Connection: keep-alive\r\n/m); - assert.match(headers, /Keep-Alive: timeout=5\r\n/m); + assert.match(headers, /Keep-Alive: timeout=5, max=3\r\n/m); assert.match(body, /Hello World!/m); } } diff --git a/test/parallel/test-http-keep-alive-pipeline-max-requests.js b/test/parallel/test-http-keep-alive-pipeline-max-requests.js index 9c5d46a57ce1976..5549440d3dd5aec 100644 --- a/test/parallel/test-http-keep-alive-pipeline-max-requests.js +++ b/test/parallel/test-http-keep-alive-pipeline-max-requests.js @@ -10,11 +10,11 @@ const bodySent = 'This is my request'; function assertResponse(headers, body, expectClosed) { if (expectClosed) { assert.match(headers, /Connection: close\r\n/m); - assert.strictEqual(headers.search(/Keep-Alive: timeout=5\r\n/m), -1); + assert.strictEqual(headers.search(/Keep-Alive: timeout=5, max=3\r\n/m), -1); assert.match(body, /Hello World!/m); } else { assert.match(headers, /Connection: keep-alive\r\n/m); - assert.match(headers, /Keep-Alive: timeout=5\r\n/m); + assert.match(headers, /Keep-Alive: timeout=5, max=3\r\n/m); assert.match(body, /Hello World!/m); } } diff --git a/test/parallel/test-http-server-request-timeouts-mixed.js b/test/parallel/test-http-server-request-timeouts-mixed.js index 41b7542c1bdbed0..918aa159b6b3862 100644 --- a/test/parallel/test-http-server-request-timeouts-mixed.js +++ b/test/parallel/test-http-server-request-timeouts-mixed.js @@ -15,7 +15,7 @@ const responseOk = 'HTTP/1.1 200 OK\r\n'; const responseTimeout = 'HTTP/1.1 408 Request Timeout\r\n'; const headersTimeout = common.platformTimeout(2000); -const connectionsCheckingInterval = headersTimeout / 4; +const connectionsCheckingInterval = headersTimeout / 8; const server = createServer({ headersTimeout, @@ -76,7 +76,8 @@ server.listen(0, common.mustCall(() => { // Send the second request, stop in the middle of the headers request2.client.write(requestBodyPart1); - // Send the second request, stop in the middle of the headers + + // Send the third request and stop in the middle of the headers request3.client.write(requestBodyPart1); }, headersTimeout * 0.2); @@ -111,7 +112,7 @@ server.listen(0, common.mustCall(() => { assert(request1.response.startsWith(responseOk)); assert(request2.response.startsWith(responseTimeout)); // It is expired due to headersTimeout - }, headersTimeout * 1.2 + connectionsCheckingInterval); + }, headersTimeout * 1.4); setTimeout(() => { // Complete the body for the fourth request diff --git a/test/parallel/test-http2-compat-write-early-hints-invalid-argument-type.js b/test/parallel/test-http2-compat-write-early-hints-invalid-argument-type.js new file mode 100644 index 000000000000000..cd5013fd97f29b6 --- /dev/null +++ b/test/parallel/test-http2-compat-write-early-hints-invalid-argument-type.js @@ -0,0 +1,38 @@ +'use strict'; + +const common = require('../common'); +if (!common.hasCrypto) common.skip('missing crypto'); + +const assert = require('node:assert'); +const http2 = require('node:http2'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content'; + +const server = http2.createServer(); + +server.on('request', common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints({ links: 'bad argument object' }); + + debug('Server sending full response...'); + res.end(testResBody); +})); + +server.listen(0); + +server.on('listening', common.mustCall(() => { + const client = http2.connect(`http://localhost:${server.address().port}`); + const req = client.request(); + + debug('Client sending request...'); + + req.on('headers', common.mustNotCall()); + + process.on('uncaughtException', (err) => { + debug(`Caught an exception: ${JSON.stringify(err)}`); + if (err.name === 'AssertionError') throw err; + assert.strictEqual(err.code, 'ERR_INVALID_ARG_VALUE'); + process.exit(0); + }); +})); diff --git a/test/parallel/test-http2-compat-write-early-hints-invalid-argument.js b/test/parallel/test-http2-compat-write-early-hints-invalid-argument.js new file mode 100644 index 000000000000000..1179723e1c883e7 --- /dev/null +++ b/test/parallel/test-http2-compat-write-early-hints-invalid-argument.js @@ -0,0 +1,38 @@ +'use strict'; + +const common = require('../common'); +if (!common.hasCrypto) common.skip('missing crypto'); + +const assert = require('node:assert'); +const http2 = require('node:http2'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content'; + +const server = http2.createServer(); + +server.on('request', common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints('bad argument value'); + + debug('Server sending full response...'); + res.end(testResBody); +})); + +server.listen(0); + +server.on('listening', common.mustCall(() => { + const client = http2.connect(`http://localhost:${server.address().port}`); + const req = client.request(); + + debug('Client sending request...'); + + req.on('headers', common.mustNotCall()); + + process.on('uncaughtException', (err) => { + debug(`Caught an exception: ${JSON.stringify(err)}`); + if (err.name === 'AssertionError') throw err; + assert.strictEqual(err.code, 'ERR_INVALID_ARG_VALUE'); + process.exit(0); + }); +})); diff --git a/test/parallel/test-http2-compat-write-early-hints.js b/test/parallel/test-http2-compat-write-early-hints.js new file mode 100644 index 000000000000000..da6cd7446bddcd7 --- /dev/null +++ b/test/parallel/test-http2-compat-write-early-hints.js @@ -0,0 +1,141 @@ +'use strict'; + +const common = require('../common'); +if (!common.hasCrypto) common.skip('missing crypto'); + +const assert = require('node:assert'); +const http2 = require('node:http2'); +const debug = require('node:util').debuglog('test'); + +const testResBody = 'response content'; + +{ + // Happy flow - string argument + + const server = http2.createServer(); + + server.on('request', common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints('; rel=preload; as=style'); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0); + + server.on('listening', common.mustCall(() => { + const client = http2.connect(`http://localhost:${server.address().port}`); + const req = client.request(); + + debug('Client sending request...'); + + req.on('headers', common.mustCall((headers) => { + assert.notStrictEqual(headers, undefined); + assert.strictEqual(headers[':status'], 103); + assert.strictEqual(headers.link, '; rel=preload; as=style'); + })); + + req.on('response', common.mustCall((headers) => { + assert.strictEqual(headers[':status'], 200); + })); + + let data = ''; + req.on('data', common.mustCallAtLeast((d) => data += d)); + + req.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(data, testResBody); + client.close(); + server.close(); + })); + })); +} + +{ + // Happy flow - array argument + + const server = http2.createServer(); + + server.on('request', common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints([ + '; rel=preload; as=style', + '; rel=preload; as=script', + ]); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0); + + server.on('listening', common.mustCall(() => { + const client = http2.connect(`http://localhost:${server.address().port}`); + const req = client.request(); + + debug('Client sending request...'); + + req.on('headers', common.mustCall((headers) => { + assert.notStrictEqual(headers, undefined); + assert.strictEqual(headers[':status'], 103); + assert.strictEqual( + headers.link, + '; rel=preload; as=style, ; rel=preload; as=script' + ); + })); + + req.on('response', common.mustCall((headers) => { + assert.strictEqual(headers[':status'], 200); + })); + + let data = ''; + req.on('data', common.mustCallAtLeast((d) => data += d)); + + req.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(data, testResBody); + client.close(); + server.close(); + })); + })); +} + +{ + // Happy flow - empty array + + const server = http2.createServer(); + + server.on('request', common.mustCall((req, res) => { + debug('Server sending early hints...'); + res.writeEarlyHints([]); + + debug('Server sending full response...'); + res.end(testResBody); + })); + + server.listen(0); + + server.on('listening', common.mustCall(() => { + const client = http2.connect(`http://localhost:${server.address().port}`); + const req = client.request(); + + debug('Client sending request...'); + + req.on('headers', common.mustNotCall()); + + req.on('response', common.mustCall((headers) => { + assert.strictEqual(headers[':status'], 200); + })); + + let data = ''; + req.on('data', common.mustCallAtLeast((d) => data += d)); + + req.on('end', common.mustCall(() => { + debug('Got full response.'); + assert.strictEqual(data, testResBody); + client.close(); + server.close(); + })); + })); +} diff --git a/test/parallel/test-http2-https-fallback.js b/test/parallel/test-http2-https-fallback.js index 16879b05f12c8db..8e0612375f48446 100644 --- a/test/parallel/test-http2-https-fallback.js +++ b/test/parallel/test-http2-https-fallback.js @@ -126,7 +126,7 @@ function onSession(session, next) { const { port } = server.address(); const origin = `https://localhost:${port}`; - const cleanup = countdown(3, () => server.close()); + const cleanup = countdown(4, () => server.close()); // HTTP/2 client connect( @@ -141,7 +141,7 @@ function onSession(session, next) { function testNoTls() { // HTTP/1.1 client - get(Object.assign(parse(origin), clientOptions), common.mustNotCall) + get(Object.assign(parse(origin), clientOptions), common.mustNotCall()) .on('error', common.mustCall(cleanup)) .on('error', common.mustCall(testWrongALPN)) .end(); @@ -149,12 +149,22 @@ function onSession(session, next) { function testWrongALPN() { // Incompatible ALPN TLS client - let text = ''; tls(Object.assign({ port, ALPNProtocols: ['fake'] }, clientOptions)) + .on('error', common.mustCall((err) => { + strictEqual(err.code, 'ECONNRESET'); + cleanup(); + testNoALPN(); + })); + } + + function testNoALPN() { + // TLS client does not send an ALPN extension + let text = ''; + tls(Object.assign({ port }, clientOptions)) .setEncoding('utf8') .on('data', (chunk) => text += chunk) .on('end', common.mustCall(() => { - ok(/Unknown ALPN Protocol, expected `h2` to be available/.test(text)); + ok(/Missing ALPN Protocol, expected `h2` to be available/.test(text)); cleanup(); })); } diff --git a/test/parallel/test-http2-server-unknown-protocol.js b/test/parallel/test-http2-server-unknown-protocol.js index 639bbe4f2d6ab4b..b00ccc1b338e475 100644 --- a/test/parallel/test-http2-server-unknown-protocol.js +++ b/test/parallel/test-http2-server-unknown-protocol.js @@ -8,6 +8,7 @@ const fixtures = require('../common/fixtures'); if (!common.hasCrypto) common.skip('missing crypto'); +const assert = require('assert'); const h2 = require('http2'); const tls = require('tls'); @@ -18,16 +19,29 @@ const server = h2.createSecureServer({ allowHalfOpen: true }); -server.on('connection', (socket) => { +server.on('secureConnection', common.mustCall((socket) => { socket.on('close', common.mustCall(() => { server.close(); })); -}); +})); server.listen(0, function() { + // If the client does not send an ALPN connection, and the server has not been + // configured with allowHTTP1, then the server should destroy the socket + // after unknownProtocolTimeout. tls.connect({ port: server.address().port, rejectUnauthorized: false, - ALPNProtocols: ['bogus'] }); + + // If the client sends an ALPN extension that does not contain 'h2', the + // server should send a fatal alert to the client before a secure connection + // is established at all. + tls.connect({ + port: server.address().port, + rejectUnauthorized: false, + ALPNProtocols: ['bogus'] + }).on('error', common.mustCall((err) => { + assert.strictEqual(err.code, 'ECONNRESET'); + })); }); diff --git a/test/parallel/test-inspector-open-port-integer-overflow.js b/test/parallel/test-inspector-open-port-integer-overflow.js new file mode 100644 index 000000000000000..0f9a4799d0642ab --- /dev/null +++ b/test/parallel/test-inspector-open-port-integer-overflow.js @@ -0,0 +1,17 @@ +'use strict'; + +// Regression test for an integer overflow in inspector.open() when the port +// exceeds the range of an unsigned 16-bit integer. + +const common = require('../common'); +common.skipIfInspectorDisabled(); +common.skipIfWorker(); + +const assert = require('assert'); +const inspector = require('inspector'); + +assert.throws(() => inspector.open(99999), { + name: 'RangeError', + code: 'ERR_OUT_OF_RANGE', + message: 'The value of "port" is out of range. It must be >= 0 && <= 65535. Received 99999' +}); diff --git a/test/parallel/test-os.js b/test/parallel/test-os.js index 80c32ea2a996c02..cceebe1a6f19d03 100644 --- a/test/parallel/test-os.js +++ b/test/parallel/test-os.js @@ -245,7 +245,7 @@ assert.strictEqual(`${os.tmpdir}`, os.tmpdir()); assert.strictEqual(`${os.arch}`, os.arch()); assert.strictEqual(`${os.platform}`, os.platform()); assert.strictEqual(`${os.version}`, os.version()); - +assert.strictEqual(`${os.machine}`, os.machine()); assert.strictEqual(+os.totalmem, os.totalmem()); // Assert that the following values are coercible to numbers. diff --git a/test/parallel/test-performance-resourcetimingbufferfull.js b/test/parallel/test-performance-resourcetimingbufferfull.js new file mode 100644 index 000000000000000..9c595610a676cf0 --- /dev/null +++ b/test/parallel/test-performance-resourcetimingbufferfull.js @@ -0,0 +1,128 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); + +const { performance } = require('perf_hooks'); + +function createTimingInfo(startTime) { + const timingInfo = { + startTime: startTime, + endTime: startTime, + finalServiceWorkerStartTime: 0, + redirectStartTime: 0, + redirectEndTime: 0, + postRedirectStartTime: 0, + finalConnectionTimingInfo: { + domainLookupStartTime: 0, + domainLookupEndTime: 0, + connectionStartTime: 0, + connectionEndTime: 0, + secureConnectionStartTime: 0, + ALPNNegotiatedProtocol: 0, + }, + finalNetworkRequestStartTime: 0, + finalNetworkResponseStartTime: 0, + encodedBodySize: 0, + decodedBodySize: 0, + }; + return timingInfo; +} +const requestedUrl = 'https://nodejs.org'; +const initiatorType = ''; +const cacheMode = ''; + +async function main() { + performance.setResourceTimingBufferSize(1); + performance.markResourceTiming(createTimingInfo(1), requestedUrl, initiatorType, globalThis, cacheMode); + // Trigger a resourcetimingbufferfull event. + performance.markResourceTiming(createTimingInfo(2), requestedUrl, initiatorType, globalThis, cacheMode); + performance.markResourceTiming(createTimingInfo(3), requestedUrl, initiatorType, globalThis, cacheMode); + assert.strictEqual(performance.getEntriesByType('resource').length, 1); + + // Clear resource timings on resourcetimingbufferfull event. + await new Promise((resolve) => { + const listener = common.mustCall((event) => { + assert.strictEqual(event.type, 'resourcetimingbufferfull'); + performance.removeEventListener('resourcetimingbufferfull', listener); + + performance.clearResourceTimings(); + assert.strictEqual(performance.getEntriesByType('resource').length, 0); + + resolve(); + }); + performance.addEventListener('resourcetimingbufferfull', listener); + }); + + // Secondary buffer has been added to the global buffer. + { + const entries = performance.getEntriesByType('resource'); + assert.strictEqual(entries.length, 1); + assert.strictEqual(entries[0].startTime, 2); + // The last item is discarded. + } + + + performance.clearResourceTimings(); + performance.setResourceTimingBufferSize(1); + performance.markResourceTiming(createTimingInfo(4), requestedUrl, initiatorType, globalThis, cacheMode); + // Trigger a resourcetimingbufferfull event. + performance.markResourceTiming(createTimingInfo(5), requestedUrl, initiatorType, globalThis, cacheMode); + performance.markResourceTiming(createTimingInfo(6), requestedUrl, initiatorType, globalThis, cacheMode); + + // Increase the buffer size on resourcetimingbufferfull event. + await new Promise((resolve) => { + const listener = common.mustCall((event) => { + assert.strictEqual(event.type, 'resourcetimingbufferfull'); + performance.removeEventListener('resourcetimingbufferfull', listener); + + performance.setResourceTimingBufferSize(2); + assert.strictEqual(performance.getEntriesByType('resource').length, 1); + + resolve(); + }); + performance.addEventListener('resourcetimingbufferfull', listener); + }); + + // Secondary buffer has been added to the global buffer. + { + const entries = performance.getEntriesByType('resource'); + assert.strictEqual(entries.length, 2); + assert.strictEqual(entries[0].startTime, 4); + assert.strictEqual(entries[1].startTime, 5); + // The last item is discarded. + } + + + performance.clearResourceTimings(); + performance.setResourceTimingBufferSize(2); + performance.markResourceTiming(createTimingInfo(7), requestedUrl, initiatorType, globalThis, cacheMode); + performance.markResourceTiming(createTimingInfo(8), requestedUrl, initiatorType, globalThis, cacheMode); + // Trigger a resourcetimingbufferfull event. + performance.markResourceTiming(createTimingInfo(9), requestedUrl, initiatorType, globalThis, cacheMode); + + // Decrease the buffer size on resourcetimingbufferfull event. + await new Promise((resolve) => { + const listener = common.mustCall((event) => { + assert.strictEqual(event.type, 'resourcetimingbufferfull'); + performance.removeEventListener('resourcetimingbufferfull', listener); + + performance.setResourceTimingBufferSize(1); + assert.strictEqual(performance.getEntriesByType('resource').length, 2); + + resolve(); + }); + performance.addEventListener('resourcetimingbufferfull', listener); + }); + + // Secondary buffer has been added to the global buffer. + { + const entries = performance.getEntriesByType('resource'); + assert.strictEqual(entries.length, 2); + assert.strictEqual(entries[0].startTime, 7); + assert.strictEqual(entries[1].startTime, 8); + // The last item is discarded. + } +} + +main(); diff --git a/test/parallel/test-performance-resourcetimingbuffersize.js b/test/parallel/test-performance-resourcetimingbuffersize.js new file mode 100644 index 000000000000000..eba46fa3ce95e0a --- /dev/null +++ b/test/parallel/test-performance-resourcetimingbuffersize.js @@ -0,0 +1,70 @@ +'use strict'; + +const common = require('../common'); +const assert = require('assert'); + +const { performance } = require('perf_hooks'); + +const timingInfo = { + startTime: 0, + endTime: 0, + finalServiceWorkerStartTime: 0, + redirectStartTime: 0, + redirectEndTime: 0, + postRedirectStartTime: 0, + finalConnectionTimingInfo: { + domainLookupStartTime: 0, + domainLookupEndTime: 0, + connectionStartTime: 0, + connectionEndTime: 0, + secureConnectionStartTime: 0, + ALPNNegotiatedProtocol: 0, + }, + finalNetworkRequestStartTime: 0, + finalNetworkResponseStartTime: 0, + encodedBodySize: 0, + decodedBodySize: 0, +}; +const requestedUrl = 'https://nodejs.org'; +const initiatorType = ''; +const cacheMode = ''; + +async function main() { + performance.setResourceTimingBufferSize(1); + performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, globalThis, cacheMode); + // Trigger a resourcetimingbufferfull event. + performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, globalThis, cacheMode); + assert.strictEqual(performance.getEntriesByType('resource').length, 1); + await waitBufferFullEvent(); + + // Apply a new buffer size limit + performance.setResourceTimingBufferSize(0); + // Buffer is not cleared on `performance.setResourceTimingBufferSize`. + assert.strictEqual(performance.getEntriesByType('resource').length, 1); + + performance.clearResourceTimings(); + assert.strictEqual(performance.getEntriesByType('resource').length, 0); + // Trigger a resourcetimingbufferfull event. + performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, globalThis, cacheMode); + // New entry is not added to the global buffer. + assert.strictEqual(performance.getEntriesByType('resource').length, 0); + await waitBufferFullEvent(); + + // Apply a new buffer size limit + performance.setResourceTimingBufferSize(1); + performance.markResourceTiming(timingInfo, requestedUrl, initiatorType, globalThis, cacheMode); + assert.strictEqual(performance.getEntriesByType('resource').length, 1); +} + +function waitBufferFullEvent() { + return new Promise((resolve) => { + const listener = common.mustCall((event) => { + assert.strictEqual(event.type, 'resourcetimingbufferfull'); + performance.removeEventListener('resourcetimingbufferfull', listener); + resolve(); + }); + performance.addEventListener('resourcetimingbufferfull', listener); + }); +} + +main(); diff --git a/test/parallel/test-process-dlopen-error-message-crash.js b/test/parallel/test-process-dlopen-error-message-crash.js new file mode 100644 index 000000000000000..d678021764e8f42 --- /dev/null +++ b/test/parallel/test-process-dlopen-error-message-crash.js @@ -0,0 +1,46 @@ +'use strict'; + +// This is a regression test for some scenarios in which node would pass +// unsanitized user input to a printf-like formatting function when dlopen +// fails, potentially crashing the process. + +const common = require('../common'); +const tmpdir = require('../common/tmpdir'); +tmpdir.refresh(); + +const assert = require('assert'); +const fs = require('fs'); + +// This error message should not be passed to a printf-like function. +assert.throws(() => { + process.dlopen({ exports: {} }, 'foo-%s.node'); +}, ({ name, code, message }) => { + assert.strictEqual(name, 'Error'); + assert.strictEqual(code, 'ERR_DLOPEN_FAILED'); + if (!common.isAIX) { + assert.match(message, /foo-%s\.node/); + } + return true; +}); + +const notBindingDir = 'test/addons/not-a-binding'; +const notBindingPath = `${notBindingDir}/build/Release/binding.node`; +const strangeBindingPath = `${tmpdir.path}/binding-%s.node`; +// Ensure that the addon directory exists, but skip the remainder of the test if +// the addon has not been compiled. +fs.accessSync(notBindingDir); +try { + fs.copyFileSync(notBindingPath, strangeBindingPath); +} catch (err) { + if (err.code !== 'ENOENT') throw err; + common.skip(`addon not found: ${notBindingPath}`); +} + +// This error message should also not be passed to a printf-like function. +assert.throws(() => { + process.dlopen({ exports: {} }, strangeBindingPath); +}, { + name: 'Error', + code: 'ERR_DLOPEN_FAILED', + message: /^Module did not self-register: '.*binding-%s\.node'\.$/ +}); diff --git a/test/parallel/test-repl-stdin-push-null.js b/test/parallel/test-repl-stdin-push-null.js new file mode 100644 index 000000000000000..53ba9ff7c331662 --- /dev/null +++ b/test/parallel/test-repl-stdin-push-null.js @@ -0,0 +1,9 @@ +'use strict'; +const common = require('../common'); + +if (!process.stdin.isTTY) { + common.skip('does not apply on non-TTY stdin'); +} + +process.stdin.destroy(); +process.stdin.setRawMode(true); diff --git a/test/parallel/test-runner-run.mjs b/test/parallel/test-runner-run.mjs new file mode 100644 index 000000000000000..4a0d4f025bf7bf2 --- /dev/null +++ b/test/parallel/test-runner-run.mjs @@ -0,0 +1,69 @@ +import * as common from '../common/index.mjs'; +import * as fixtures from '../common/fixtures.mjs'; +import { join } from 'node:path'; +import { describe, it, run } from 'node:test'; +import assert from 'node:assert'; + +const testFixtures = fixtures.path('test-runner'); + +describe('require(\'node:test\').run', { concurrency: true }, () => { + + it('should run with no tests', async () => { + const stream = run({ files: [] }); + stream.setEncoding('utf8'); + stream.on('test:fail', common.mustNotCall()); + stream.on('test:pass', common.mustNotCall()); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should fail with non existing file', async () => { + const stream = run({ files: ['a-random-file-that-does-not-exist.js'] }); + stream.on('test:fail', common.mustCall(1)); + stream.on('test:pass', common.mustNotCall()); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should succeed with a file', async () => { + const stream = run({ files: [join(testFixtures, 'test/random.cjs')] }); + stream.on('test:fail', common.mustNotCall()); + stream.on('test:pass', common.mustCall(1)); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should run same file twice', async () => { + const stream = run({ files: [join(testFixtures, 'test/random.cjs'), join(testFixtures, 'test/random.cjs')] }); + stream.on('test:fail', common.mustNotCall()); + stream.on('test:pass', common.mustCall(2)); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should run a failed test', async () => { + const stream = run({ files: [testFixtures] }); + stream.on('test:fail', common.mustCall(1)); + stream.on('test:pass', common.mustNotCall()); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should support timeout', async () => { + const stream = run({ timeout: 50, files: [ + fixtures.path('test-runner', 'never_ending_sync.js'), + fixtures.path('test-runner', 'never_ending_async.js'), + ] }); + stream.on('test:fail', common.mustCall(2)); + stream.on('test:pass', common.mustNotCall()); + // eslint-disable-next-line no-unused-vars + for await (const _ of stream); // TODO(MoLow): assert.snapshot + }); + + it('should validate files', async () => { + [Symbol(), {}, () => {}, 0, 1, 0n, 1n, '', '1', Promise.resolve([]), true, false] + .forEach((files) => assert.throws(() => run({ files }), { + code: 'ERR_INVALID_ARG_TYPE' + })); + }); +}); diff --git a/test/parallel/test-snapshot-api.js b/test/parallel/test-snapshot-api.js index d6599ceab4199c6..49f764d2cb43bd6 100644 --- a/test/parallel/test-snapshot-api.js +++ b/test/parallel/test-snapshot-api.js @@ -10,6 +10,12 @@ const fixtures = require('../common/fixtures'); const path = require('path'); const fs = require('fs'); +const v8 = require('v8'); + +// By default it should be false. We'll test that it's true in snapshot +// building mode in the fixture. +assert(!v8.startupSnapshot.isBuildingSnapshot()); + tmpdir.refresh(); const blobPath = path.join(tmpdir.path, 'snapshot.blob'); const entry = fixtures.path('snapshot', 'v8-startup-snapshot-api.js'); diff --git a/test/parallel/test-snapshot-net.js b/test/parallel/test-snapshot-net.js new file mode 100644 index 000000000000000..9406f16609e6b81 --- /dev/null +++ b/test/parallel/test-snapshot-net.js @@ -0,0 +1,65 @@ +'use strict'; + +// This tests that a local TCP server can be snapshotted and the +// diagnostics channels work across serialization. + +require('../common'); +const assert = require('assert'); +const { spawnSync } = require('child_process'); +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); +const path = require('path'); +const fs = require('fs'); + +tmpdir.refresh(); +const blobPath = path.join(tmpdir.path, 'snapshot.blob'); +const entry = fixtures.path('snapshot', 'server.js'); +{ + const child = spawnSync(process.execPath, [ + '--snapshot-blob', + blobPath, + '--build-snapshot', + entry, + ], { + cwd: tmpdir.path + }); + if (child.status !== 0) { + console.log(child.stderr.toString()); + console.log(child.stdout.toString()); + assert.strictEqual(child.status, 0); + } + const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob')); + assert(stats.isFile()); +} + +{ + const child = spawnSync(process.execPath, [ + '--snapshot-blob', + blobPath, + ], { + cwd: tmpdir.path, + env: { + ...process.env, + } + }); + + const stdout = child.stdout.toString().trim(); + console.log(`[stdout]:\n${stdout}\n`); + const stderr = child.stderr.toString().trim(); + console.log(`[stderr]:\n${stderr}\n`); + assert.strictEqual(child.status, 0); + + const lines = stdout.split('\n'); + assert.strictEqual(lines.length, 4); + + // The log should look like this: + // server port ${port} + // From client diagnostics channel + // From server diagnostics channel: ${port} + // recv.length: 256 + assert.match(lines[0], /server port (\d+)/); + const port = lines[0].match(/server port (\d+)/)[1]; + assert.match(lines[1], /From client diagnostics channel/); + assert.match(lines[2], new RegExp(`From server diagnostics channel: ${port}`)); + assert.match(lines[3], /recv\.length: 256/); +} diff --git a/test/parallel/test-snapshot-typescript.js b/test/parallel/test-snapshot-typescript.js index bf9baf25153151c..0d0832648dfe2bf 100644 --- a/test/parallel/test-snapshot-typescript.js +++ b/test/parallel/test-snapshot-typescript.js @@ -2,12 +2,7 @@ // This tests the TypeScript compiler in the snapshot. -const common = require('../common'); - -if (process.features.debug) { - common.skip('V8 snapshot does not work with mutated globals yet: ' + - 'https://bugs.chromium.org/p/v8/issues/detail?id=12772'); -} +require('../common'); const assert = require('assert'); const { spawnSync } = require('child_process'); diff --git a/test/parallel/test-snapshot-warning.js b/test/parallel/test-snapshot-warning.js index f7defe1d5b3bf49..357749ad8e68751 100644 --- a/test/parallel/test-snapshot-warning.js +++ b/test/parallel/test-snapshot-warning.js @@ -4,12 +4,7 @@ // during snapshot serialization and installed again during // deserialization. -const common = require('../common'); - -if (process.features.debug) { - common.skip('V8 snapshot does not work with mutated globals yet: ' + - 'https://bugs.chromium.org/p/v8/issues/detail?id=12772'); -} +require('../common'); const assert = require('assert'); const { spawnSync } = require('child_process'); diff --git a/test/parallel/test-snapshot-weak-reference.js b/test/parallel/test-snapshot-weak-reference.js new file mode 100644 index 000000000000000..6de072290da2574 --- /dev/null +++ b/test/parallel/test-snapshot-weak-reference.js @@ -0,0 +1,60 @@ +'use strict'; + +// This tests that weak references work across serialization. + +require('../common'); +const assert = require('assert'); +const { spawnSync } = require('child_process'); +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); +const path = require('path'); +const fs = require('fs'); + +tmpdir.refresh(); +const blobPath = path.join(tmpdir.path, 'snapshot.blob'); + +function runTest(entry) { + console.log('running test with', entry); + { + const child = spawnSync(process.execPath, [ + '--expose-internals', + '--expose-gc', + '--snapshot-blob', + blobPath, + '--build-snapshot', + entry, + ], { + cwd: tmpdir.path + }); + if (child.status !== 0) { + console.log(child.stderr.toString()); + console.log(child.stdout.toString()); + assert.strictEqual(child.status, 0); + } + const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob')); + assert(stats.isFile()); + } + + { + const child = spawnSync(process.execPath, [ + '--expose-internals', + '--expose-gc', + '--snapshot-blob', + blobPath, + ], { + cwd: tmpdir.path, + env: { + ...process.env, + } + }); + + const stdout = child.stdout.toString().trim(); + const stderr = child.stderr.toString().trim(); + console.log(`[stdout]:\n${stdout}\n`); + console.log(`[stderr]:\n${stderr}\n`); + assert.strictEqual(child.status, 0); + } +} + +runTest(fixtures.path('snapshot', 'weak-reference.js')); +runTest(fixtures.path('snapshot', 'weak-reference-gc.js')); diff --git a/test/parallel/test-source-map-api.js b/test/parallel/test-source-map-api.js index f66a9af94784c75..03c892419be94c5 100644 --- a/test/parallel/test-source-map-api.js +++ b/test/parallel/test-source-map-api.js @@ -21,6 +21,19 @@ const { readFileSync } = require('fs'); ); } +// `findSourceMap()` should return undefined when no source map is found. +{ + const files = [ + __filename, + '', + 'invalid-file', + ]; + for (const file of files) { + const sourceMap = findSourceMap(file); + assert.strictEqual(sourceMap, undefined); + } +} + // findSourceMap() can lookup source-maps based on URIs, in the // non-exceptional case. { diff --git a/test/parallel/test-stream-readable-reading-readingMore.js b/test/parallel/test-stream-readable-reading-readingMore.js index 968bf5c63ae0d3f..5e39c86dcba567d 100644 --- a/test/parallel/test-stream-readable-reading-readingMore.js +++ b/test/parallel/test-stream-readable-reading-readingMore.js @@ -124,7 +124,7 @@ const Readable = require('stream').Readable; assert.strictEqual(state.reading, false); assert.strictEqual(state.readingMore, false); - const onReadable = common.mustNotCall; + const onReadable = common.mustNotCall(); readable.on('readable', onReadable); diff --git a/test/parallel/test-stream-writable-callback-twice.js b/test/parallel/test-stream-writable-callback-twice.js deleted file mode 100644 index 25e7579a2d4737d..000000000000000 --- a/test/parallel/test-stream-writable-callback-twice.js +++ /dev/null @@ -1,14 +0,0 @@ -'use strict'; -const common = require('../common'); -const { Writable } = require('stream'); -const stream = new Writable({ - write(chunk, enc, cb) { cb(); cb(); } -}); - -stream.on('error', common.expectsError({ - name: 'Error', - message: 'Callback called multiple times', - code: 'ERR_MULTIPLE_CALLBACK' -})); - -stream.write('foo'); diff --git a/test/parallel/test-stream-writable-end-cb-error.js b/test/parallel/test-stream-writable-end-cb-error.js index f871c50dbe972c0..f140d939bc024c8 100644 --- a/test/parallel/test-stream-writable-end-cb-error.js +++ b/test/parallel/test-stream-writable-end-cb-error.js @@ -36,7 +36,7 @@ const stream = require('stream'); let called = false; writable.end('asd', common.mustCall((err) => { called = true; - assert.strictEqual(err, undefined); + assert.strictEqual(err, null); })); writable.on('error', common.mustCall((err) => { diff --git a/test/parallel/test-stream2-writable.js b/test/parallel/test-stream2-writable.js index 3d16fb62df3313a..6d233ae6b68107b 100644 --- a/test/parallel/test-stream2-writable.js +++ b/test/parallel/test-stream2-writable.js @@ -194,7 +194,8 @@ for (let i = 0; i < chunks.length; i++) { { // Verify write callbacks const callbacks = chunks.map(function(chunk, i) { - return [i, function() { + return [i, function(err) { + assert.strictEqual(err, null); callbacks._called[i] = chunk; }]; }).reduce(function(set, x) { @@ -225,7 +226,9 @@ for (let i = 0; i < chunks.length; i++) { { // Verify end() callback const tw = new TestWriter(); - tw.end(common.mustCall()); + tw.end(common.mustCall(function(err) { + assert.strictEqual(err, null); + })); } const helloWorldBuffer = Buffer.from('hello world'); @@ -233,7 +236,9 @@ const helloWorldBuffer = Buffer.from('hello world'); { // Verify end() callback with chunk const tw = new TestWriter(); - tw.end(helloWorldBuffer, common.mustCall()); + tw.end(helloWorldBuffer, common.mustCall(function(err) { + assert.strictEqual(err, null); + })); } { diff --git a/test/parallel/test-throw-error-with-getter-throw-traced.mjs b/test/parallel/test-throw-error-with-getter-throw-traced.mjs new file mode 100644 index 000000000000000..50dfed3292df8f9 --- /dev/null +++ b/test/parallel/test-throw-error-with-getter-throw-traced.mjs @@ -0,0 +1,27 @@ +import { spawnPromisified } from '../common/index.mjs'; +import assert from 'node:assert'; +import { execPath } from 'node:process'; +import { describe, it } from 'node:test'; + + +describe('--trace-uncaught', () => { + it('prints a trace on process exit for uncaught errors', async () => { + const { code, signal, stderr } = await spawnPromisified(execPath, [ + '--trace-uncaught', + '--eval', + `throw { + get stack() { + throw new Error('weird throw but ok'); + }, + get name() { + throw new Error('weird throw but ok'); + }, + };`, + ]); + + assert.match(stderr, /^Thrown at:$/m); + assert.match(stderr, /^ {4}at \[eval\]:1:1$/m); + assert.strictEqual(code, 1); + assert.strictEqual(signal, null); + }); +}); diff --git a/test/parallel/test-throw-undefined-or-null-traced.mjs b/test/parallel/test-throw-undefined-or-null-traced.mjs new file mode 100644 index 000000000000000..e27339365b0edf5 --- /dev/null +++ b/test/parallel/test-throw-undefined-or-null-traced.mjs @@ -0,0 +1,21 @@ +import { spawnPromisified } from '../common/index.mjs'; +import assert from 'node:assert'; +import { execPath } from 'node:process'; +import { describe, it } from 'node:test'; + + +describe('--trace-uncaught', () => { + it('prints a trace on process exit for uncaught errors', async () => { + for (const value of [null, undefined]) { + const { code, signal, stderr } = await spawnPromisified(execPath, [ + '--trace-uncaught', + '--eval', + `throw ${value};`, + ]); + assert.match(stderr, /^Thrown at:$/m); + assert.match(stderr, /^ {4}at \[eval\]:1:1$/m); + assert.strictEqual(code, 1); + assert.strictEqual(signal, null); + } + }); +}); diff --git a/test/parallel/test-tls-alpn-server-client.js b/test/parallel/test-tls-alpn-server-client.js index 3da24c67fbe5222..2961c0ed1d4af47 100644 --- a/test/parallel/test-tls-alpn-server-client.js +++ b/test/parallel/test-tls-alpn-server-client.js @@ -5,6 +5,7 @@ if (!common.hasCrypto) common.skip('missing crypto'); const assert = require('assert'); +const { spawn } = require('child_process'); const tls = require('tls'); const fixtures = require('../common/fixtures'); @@ -68,7 +69,7 @@ function Test1() { }, { ALPNProtocols: ['c', 'b', 'e'], }, { - ALPNProtocols: ['first-priority-unsupported', 'x', 'y'], + ALPNProtocols: ['x', 'y', 'c'], }]; runTest(clientsOptions, serverOptions, function(results) { @@ -82,8 +83,8 @@ function Test1() { client: { ALPN: 'b' } }); // Nothing is selected by ALPN checkResults(results[2], - { server: { ALPN: false }, - client: { ALPN: false } }); + { server: { ALPN: 'c' }, + client: { ALPN: 'c' } }); // execute next test Test2(); }); @@ -161,6 +162,50 @@ function Test4() { { server: { ALPN: false }, client: { ALPN: false } }); }); + + TestFatalAlert(); +} + +function TestFatalAlert() { + const server = tls.createServer({ + ALPNProtocols: ['foo'], + key: loadPEM('agent2-key'), + cert: loadPEM('agent2-cert') + }, common.mustNotCall()); + + server.listen(0, serverIP, common.mustCall(() => { + const { port } = server.address(); + + // The Node.js client will just report ECONNRESET because the connection + // is severed before the TLS handshake completes. + tls.connect({ + host: serverIP, + port, + rejectUnauthorized: false, + ALPNProtocols: ['bar'] + }, common.mustNotCall()).on('error', common.mustCall((err) => { + assert.strictEqual(err.code, 'ECONNRESET'); + + // OpenSSL's s_client should output the TLS alert number, which is 120 + // for the 'no_application_protocol' alert. + const { opensslCli } = common; + if (opensslCli) { + const addr = `${serverIP}:${port}`; + let stderr = ''; + spawn(opensslCli, ['s_client', '--alpn', 'bar', addr], { + stdio: ['ignore', 'ignore', 'pipe'] + }).stderr + .setEncoding('utf8') + .on('data', (chunk) => stderr += chunk) + .on('close', common.mustCall(() => { + assert.match(stderr, /SSL alert number 120/); + server.close(); + })); + } else { + server.close(); + } + })); + })); } Test1(); diff --git a/test/parallel/test-tls-min-max-version.js b/test/parallel/test-tls-min-max-version.js index 8dbef1fa37aa2d0..ff337961f9a4264 100644 --- a/test/parallel/test-tls-min-max-version.js +++ b/test/parallel/test-tls-min-max-version.js @@ -97,6 +97,11 @@ test(U, U, 'hokey-pokey', U, U, U, test(U, U, U, U, U, 'hokey-pokey', U, U, 'ERR_TLS_INVALID_PROTOCOL_METHOD'); +// Regression test: this should not crash because node should not pass the error +// message (including unsanitized user input) to a printf-like function. +test(U, U, U, U, U, '%s_method', + U, U, 'ERR_TLS_INVALID_PROTOCOL_METHOD'); + // Cannot use secureProtocol and min/max versions simultaneously. test(U, U, U, U, 'TLSv1.2', 'TLS1_2_method', U, U, 'ERR_TLS_PROTOCOL_VERSION_CONFLICT'); diff --git a/test/parallel/test-trace-events-fs-async.js b/test/parallel/test-trace-events-fs-async.js new file mode 100644 index 000000000000000..693214832a91672 --- /dev/null +++ b/test/parallel/test-trace-events-fs-async.js @@ -0,0 +1,341 @@ +'use strict'; +const common = require('../common'); +const assert = require('assert'); +const cp = require('child_process'); +const fs = require('fs'); +const path = require('path'); +const util = require('util'); + +const tests = Object.create(null); + +let gid = 1; +let uid = 1; + +if (!common.isWindows) { + gid = process.getgid(); + uid = process.getuid(); +} + +function wrapper(func, args) { + return `(${func.toString()})(${JSON.stringify(args)})`; +} + +function access() { + const fs = require('fs'); + fs.writeFileSync('fs0.txt', '123', 'utf8'); + fs.access('fs0.txt', () => { + fs.unlinkSync('fs0.txt'); + }); +} + +function chmod() { + const fs = require('fs'); + fs.writeFileSync('fs1.txt', '123', 'utf8'); + fs.chmod('fs1.txt', 100, () => { + fs.unlinkSync('fs1.txt'); + }); +} + +function chown({ uid, gid }) { + const fs = require('fs'); + fs.writeFileSync('fs2.txt', '123', 'utf8'); + fs.chown('fs2.txt', uid, gid, () => { + fs.unlinkSync('fs2.txt'); + }); +} + +function close() { + const fs = require('fs'); + fs.writeFile('fs3.txt', '123', 'utf8', () => { + fs.unlinkSync('fs3.txt'); + }); +} + +function copyfile() { + const fs = require('fs'); + fs.writeFileSync('fs4.txt', '123', 'utf8'); + fs.copyFile('fs4.txt', 'a.txt', () => { + fs.unlinkSync('fs4.txt'); + fs.unlinkSync('a.txt'); + }); +} + +function fchmod() { + const fs = require('fs'); + fs.writeFileSync('fs5.txt', '123', 'utf8'); + const fd = fs.openSync('fs5.txt', 'r+'); + fs.fchmod(fd, 100, () => { + fs.unlinkSync('fs5.txt'); + }); +} + +function fchown({ uid, gid }) { + const fs = require('fs'); + fs.writeFileSync('fs6.txt', '123', 'utf8'); + const fd = fs.openSync('fs6.txt', 'r+'); + fs.fchown(fd, uid, gid, () => { + fs.unlinkSync('fs6.txt'); + }); +} + +function fdatasync() { + const fs = require('fs'); + fs.writeFileSync('fs7.txt', '123', 'utf8'); + const fd = fs.openSync('fs7.txt', 'r+'); + fs.fdatasync(fd, () => { + fs.unlinkSync('fs7.txt'); + }); +} + +function fstat() { + const fs = require('fs'); + fs.writeFileSync('fs8.txt', '123', 'utf8'); + fs.readFile('fs8.txt', () => { + fs.unlinkSync('fs8.txt'); + }); +} + +function fsync() { + const fs = require('fs'); + fs.writeFileSync('fs9.txt', '123', 'utf8'); + const fd = fs.openSync('fs9.txt', 'r+'); + fs.fsync(fd, () => { + fs.unlinkSync('fs9.txt'); + }); +} + +function ftruncate() { + const fs = require('fs'); + fs.writeFileSync('fs10.txt', '123', 'utf8'); + const fd = fs.openSync('fs10.txt', 'r+'); + fs.ftruncate(fd, 1, () => { + fs.unlinkSync('fs10.txt'); + }); +} + +function futime() { + const fs = require('fs'); + fs.writeFileSync('fs11.txt', '123', 'utf8'); + const fd = fs.openSync('fs11.txt', 'r+'); + fs.futimes(fd, 1, 1, () => { + fs.unlinkSync('fs11.txt'); + }); +} + +function lutime() { + const fs = require('fs'); + fs.writeFileSync('fs111.txt', '123', 'utf8'); + fs.lutimes('fs111.txt', 1, 1, () => { + fs.unlinkSync('fs111.txt'); + }); +} + +function lchown({ uid, gid }) { + const fs = require('fs'); + fs.writeFileSync('fs12.txt', '123', 'utf8'); + fs.lchown('fs12.txt', uid, gid, () => { + fs.unlinkSync('fs12.txt'); + }); +} + +function link() { + const fs = require('fs'); + fs.writeFileSync('fs13.txt', '123', 'utf8'); + fs.link('fs13.txt', 'fs14.txt', () => { + fs.unlinkSync('fs13.txt'); + fs.unlinkSync('fs14.txt'); + }); +} + +function lstat() { + const fs = require('fs'); + fs.writeFileSync('fs15.txt', '123', 'utf8'); + fs.lstat('fs15.txt', () => { + fs.unlinkSync('fs15.txt'); + }); +} + +function mkdir() { + const fs = require('fs'); + fs.mkdir('fstemp0', () => { + fs.rmdir('fstemp0', () => {}); + }); +} + +function mktmp() { + fs.mkdtemp('fstemp1', (err, fp) => { + fs.rmdir(fp, () => {}); + }); +} + +function open() { + const fs = require('fs'); + fs.writeFile('fs16.txt', '123', 'utf8', () => { + fs.unlinkSync('fs16.txt'); + }); +} + +function read() { + const fs = require('fs'); + fs.writeFileSync('fs17.txt', '123', 'utf8'); + fs.readFile('fs17.txt', () => { + fs.unlinkSync('fs17.txt'); + }); +} + +function readdir() { + const fs = require('fs'); + fs.readdir('./', () => {}); +} + +function opendir() { + const fs = require('fs'); + fs.opendir('./', () => {}); +} + +function realpath() { + const fs = require('fs'); + fs.writeFileSync('fs18.txt', '123', 'utf8'); + fs.linkSync('fs18.txt', 'fs19.txt'); + fs.realpath.native('fs19.txt', () => { + fs.unlinkSync('fs18.txt'); + fs.unlinkSync('fs19.txt'); + }); +} + +function rename() { + const fs = require('fs'); + fs.writeFileSync('fs20.txt', '123', 'utf8'); + fs.rename('fs20.txt', 'fs21.txt', () => { + fs.unlinkSync('fs21.txt'); + }); +} + +function rmdir() { + const fs = require('fs'); + fs.mkdirSync('fstemp2'); + fs.rmdir('fstemp2', () => {}); +} + +function stat() { + const fs = require('fs'); + fs.writeFileSync('fs22.txt', '123', 'utf8'); + fs.stat('fs22.txt', () => { + fs.unlinkSync('fs22.txt'); + }); +} + +function unlink() { + const fs = require('fs'); + fs.writeFileSync('fs23.txt', '123', 'utf8'); + fs.linkSync('fs23.txt', 'fs24.txt'); + fs.unlink('fs23.txt', () => {}); + fs.unlink('fs24.txt', () => {}); +} + +function utime() { + const fs = require('fs'); + fs.writeFileSync('fs25.txt', '123', 'utf8'); + fs.utimes('fs25.txt', 1, 1, () => { + fs.unlinkSync('fs25.txt'); + }); +} + +function write() { + const fs = require('fs'); + fs.writeFile('fs26.txt', '123', 'utf8', () => { + fs.unlinkSync('fs26.txt'); + }); +} + +function symlink() { + const fs = require('fs'); + fs.writeFileSync('fs27.txt', '123', 'utf8'); + fs.symlink('fs27.txt', 'fs28.txt', () => { + fs.unlinkSync('fs27.txt'); + fs.unlinkSync('fs28.txt'); + }); +} + +function readlink() { + const fs = require('fs'); + fs.writeFileSync('fs29.txt', '123', 'utf8'); + fs.symlinkSync('fs29.txt', 'fs30.txt'); + fs.readlink('fs30.txt', () => { + fs.unlinkSync('fs29.txt'); + fs.unlinkSync('fs30.txt'); + }); +} +// The key defined in get_fs_name_by_type function in node_file.cc and node_dir.cc +tests.access = wrapper(access); +tests.chmod = wrapper(chmod); +tests.chown = wrapper(chown, { uid, gid }); +tests.close = wrapper(close); +tests.copyfile = wrapper(copyfile); +tests.fchmod = wrapper(fchmod); +tests.fchown = wrapper(fchown, { uid, gid }); +tests.fdatasync = wrapper(fdatasync); +tests.fstat = wrapper(fstat); +tests.fsync = wrapper(fsync); +tests.ftruncate = wrapper(ftruncate); +tests.futime = wrapper(futime); +tests.lutime = wrapper(lutime); +tests.lchown = wrapper(lchown, { uid, gid }); +tests.link = wrapper(link); +tests.lstat = wrapper(lstat); +tests.mkdir = wrapper(mkdir); +tests.mkdtemp = wrapper(mktmp); +tests.open = wrapper(open); +tests.read = wrapper(read); +tests.scandir = wrapper(readdir); +tests.opendir = wrapper(opendir); +tests.realpath = wrapper(realpath); +tests.rename = wrapper(rename); +tests.rmdir = wrapper(rmdir); +tests.stat = wrapper(stat); +tests.unlink = wrapper(unlink); +tests.utime = wrapper(utime); +tests.write = wrapper(write); + +// On windows, we need permissions to test symlink and readlink. +// We'll only try to run these tests if we have enough privileges. +if (common.canCreateSymLink()) { + tests.symlink = wrapper(symlink); + tests.readlink = wrapper(readlink); +} +const tmpdir = require('../common/tmpdir'); +tmpdir.refresh(); +const traceFile = path.join(tmpdir.path, 'node_trace.1.log'); + +for (const tr in tests) { + const proc = cp.spawnSync(process.execPath, + [ '--trace-events-enabled', + '--trace-event-categories', 'node.fs_dir.async,node.fs.async', + '-e', tests[tr] ], + { cwd: tmpdir.path, encoding: 'utf8' }); + + // Make sure the operation is successful. + // Don't use assert with a custom message here. Otherwise the + // inspection in the message is done eagerly and wastes a lot of CPU + // time. + if (proc.status !== 0) { + throw new Error(`${tr}:\n${util.inspect(proc)}`); + } + + // Confirm that trace log file is created. + assert(fs.existsSync(traceFile)); + const data = fs.readFileSync(traceFile); + const { traceEvents } = JSON.parse(data.toString()); + // Confirm that the data we want is produced + const traces = traceEvents.filter((item) => { + return [ + 'node,node.fs,node.fs.async', + 'node,node.fs_dir,node.fs_dir.async', + ].includes(item.cat); + }); + // Confirm that the data we want is produced + assert(traces.length > 0); + assert(traces.some((trace) => { + return trace.name === tr; + })); +} diff --git a/test/parallel/test-uv-errno.js b/test/parallel/test-uv-errno.js index e46b365e4b69e48..f30518fb474657c 100644 --- a/test/parallel/test-uv-errno.js +++ b/test/parallel/test-uv-errno.js @@ -12,6 +12,8 @@ const { internalBinding } = require('internal/test/binding'); const uv = internalBinding('uv'); const keys = Object.keys(uv); +assert.strictEqual(uv.errname(-111111), 'Unknown system error -111111'); + keys.forEach((key) => { if (!key.startsWith('UV_')) return; diff --git a/test/parallel/test-vm-timeout-escape-promise-2.js b/test/parallel/test-vm-timeout-escape-promise-2.js index a3cb3dbc7fd4420..db40d0ef1ccc47e 100644 --- a/test/parallel/test-vm-timeout-escape-promise-2.js +++ b/test/parallel/test-vm-timeout-escape-promise-2.js @@ -16,7 +16,7 @@ function loop() { while (1) { const current = hrtime(); const span = (current - start) / NS_PER_MS; - if (span >= 100n) { + if (span >= 2000n) { throw new Error( `escaped timeout at ${span} milliseconds!`); } diff --git a/test/parallel/test-vm-timeout-escape-promise-module.js b/test/parallel/test-vm-timeout-escape-promise-module.js index 3451c0af71c16fc..0687b3b3c81f571 100644 --- a/test/parallel/test-vm-timeout-escape-promise-module.js +++ b/test/parallel/test-vm-timeout-escape-promise-module.js @@ -18,7 +18,7 @@ function loop() { while (1) { const current = hrtime(); const span = (current - start) / NS_PER_MS; - if (span >= 100n) { + if (span >= 2000n) { throw new Error( `escaped timeout at ${span} milliseconds!`); } diff --git a/test/parallel/test-vm-timeout-escape-promise.js b/test/parallel/test-vm-timeout-escape-promise.js index 0e82ab8c86a9355..36a76001af348a6 100644 --- a/test/parallel/test-vm-timeout-escape-promise.js +++ b/test/parallel/test-vm-timeout-escape-promise.js @@ -17,7 +17,7 @@ function loop() { while (1) { const current = hrtime(); const span = (current - start) / NS_PER_MS; - if (span >= 100n) { + if (span >= 2000n) { throw new Error( `escaped timeout at ${span} milliseconds!`); } diff --git a/test/parallel/test-watch-mode-files_watcher.mjs b/test/parallel/test-watch-mode-files_watcher.mjs new file mode 100644 index 000000000000000..1c3088800bd5d94 --- /dev/null +++ b/test/parallel/test-watch-mode-files_watcher.mjs @@ -0,0 +1,162 @@ +// Flags: --expose-internals +import * as common from '../common/index.mjs'; +import * as fixtures from '../common/fixtures.mjs'; +import tmpdir from '../common/tmpdir.js'; +import path from 'node:path'; +import assert from 'node:assert'; +import process from 'node:process'; +import os from 'node:os'; +import { describe, it, beforeEach, afterEach } from 'node:test'; +import { writeFileSync, mkdirSync } from 'node:fs'; +import { setTimeout } from 'node:timers/promises'; +import { once } from 'node:events'; +import { spawn } from 'node:child_process'; +import watcher from 'internal/watch_mode/files_watcher'; + +if (common.isIBMi) + common.skip('IBMi does not support `fs.watch()`'); + +const supportsRecursiveWatching = common.isOSX || common.isWindows; + +const { FilesWatcher } = watcher; +tmpdir.refresh(); + +describe('watch mode file watcher', () => { + let watcher; + let changesCount; + + beforeEach(() => { + changesCount = 0; + watcher = new FilesWatcher({ throttle: 100 }); + watcher.on('changed', () => changesCount++); + }); + + afterEach(() => watcher.clear()); + + let counter = 0; + function writeAndWaitForChanges(watcher, file) { + return new Promise((resolve) => { + const interval = setInterval(() => writeFileSync(file, `write ${counter++}`), 100); + watcher.once('changed', () => { + clearInterval(interval); + resolve(); + }); + }); + } + + it('should watch changed files', async () => { + const file = path.join(tmpdir.path, 'file1'); + writeFileSync(file, 'written'); + watcher.filterFile(file); + await writeAndWaitForChanges(watcher, file); + assert.strictEqual(changesCount, 1); + }); + + it('should throttle changes', async () => { + const file = path.join(tmpdir.path, 'file2'); + writeFileSync(file, 'written'); + watcher.filterFile(file); + await writeAndWaitForChanges(watcher, file); + + writeFileSync(file, '1'); + writeFileSync(file, '2'); + writeFileSync(file, '3'); + writeFileSync(file, '4'); + await setTimeout(200); // throttle * 2 + writeFileSync(file, '5'); + const changed = once(watcher, 'changed'); + writeFileSync(file, 'after'); + await changed; + // Unfortunately testing that changesCount === 2 is flaky + assert.ok(changesCount < 5); + }); + + it('should ignore files in watched directory if they are not filtered', + { skip: !supportsRecursiveWatching }, async () => { + watcher.on('changed', common.mustNotCall()); + watcher.watchPath(tmpdir.path); + writeFileSync(path.join(tmpdir.path, 'file3'), '1'); + // Wait for this long to make sure changes are not triggered + await setTimeout(1000); + }); + + it('should allow clearing filters', async () => { + const file = path.join(tmpdir.path, 'file4'); + writeFileSync(file, 'written'); + watcher.filterFile(file); + await writeAndWaitForChanges(watcher, file); + + writeFileSync(file, '1'); + + await setTimeout(200); // avoid throttling + watcher.clearFileFilters(); + writeFileSync(file, '2'); + // Wait for this long to make sure changes are triggered only once + await setTimeout(1000); + assert.strictEqual(changesCount, 1); + }); + + it('should watch all files in watched path when in "all" mode', + { skip: !supportsRecursiveWatching }, async () => { + watcher = new FilesWatcher({ throttle: 100, mode: 'all' }); + watcher.on('changed', () => changesCount++); + + const file = path.join(tmpdir.path, 'file5'); + watcher.watchPath(tmpdir.path); + + const changed = once(watcher, 'changed'); + writeFileSync(file, 'changed'); + await changed; + assert.strictEqual(changesCount, 1); + }); + + it('should ruse existing watcher if it exists', + { skip: !supportsRecursiveWatching }, () => { + assert.deepStrictEqual(watcher.watchedPaths, []); + watcher.watchPath(tmpdir.path); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + watcher.watchPath(tmpdir.path); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + }); + + it('should ruse existing watcher of a parent directory', + { skip: !supportsRecursiveWatching }, () => { + assert.deepStrictEqual(watcher.watchedPaths, []); + watcher.watchPath(tmpdir.path); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + watcher.watchPath(path.join(tmpdir.path, 'subdirectory')); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + }); + + it('should remove existing watcher if adding a parent directory watcher', + { skip: !supportsRecursiveWatching }, () => { + assert.deepStrictEqual(watcher.watchedPaths, []); + const subdirectory = path.join(tmpdir.path, 'subdirectory'); + mkdirSync(subdirectory); + watcher.watchPath(subdirectory); + assert.deepStrictEqual(watcher.watchedPaths, [subdirectory]); + watcher.watchPath(tmpdir.path); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + }); + + it('should clear all watchers when calling clear', + { skip: !supportsRecursiveWatching }, () => { + assert.deepStrictEqual(watcher.watchedPaths, []); + watcher.watchPath(tmpdir.path); + assert.deepStrictEqual(watcher.watchedPaths, [tmpdir.path]); + watcher.clear(); + assert.deepStrictEqual(watcher.watchedPaths, []); + }); + + it('should watch files from subprocess IPC events', async () => { + const file = fixtures.path('watch-mode/ipc.js'); + const child = spawn(process.execPath, [file], { stdio: ['pipe', 'pipe', 'pipe', 'ipc'], encoding: 'utf8' }); + watcher.watchChildProcessModules(child); + await once(child, 'exit'); + let expected = [file, path.join(os.tmpdir(), 'file')]; + if (supportsRecursiveWatching) { + expected = expected.map((file) => path.dirname(file)); + } + assert.deepStrictEqual(watcher.watchedPaths, expected); + }); +}); diff --git a/test/parallel/test-watch-mode.mjs b/test/parallel/test-watch-mode.mjs new file mode 100644 index 000000000000000..83226c96ca5362c --- /dev/null +++ b/test/parallel/test-watch-mode.mjs @@ -0,0 +1,300 @@ +import * as common from '../common/index.mjs'; +import * as fixtures from '../common/fixtures.mjs'; +import tmpdir from '../common/tmpdir.js'; +import assert from 'node:assert'; +import path from 'node:path'; +import { execPath } from 'node:process'; +import { describe, it } from 'node:test'; +import { spawn } from 'node:child_process'; +import { writeFileSync, readFileSync } from 'node:fs'; +import { inspect } from 'node:util'; +import { once } from 'node:events'; +import { setTimeout } from 'node:timers/promises'; +import { NodeInstance } from '../common/inspector-helper.js'; + + +if (common.isIBMi) + common.skip('IBMi does not support `fs.watch()`'); + +async function spawnWithRestarts({ + args, + file, + restarts, + startedPredicate, + restartMethod, +}) { + args ??= [file]; + const printedArgs = inspect(args.slice(args.indexOf(file)).join(' ')); + startedPredicate ??= (data) => Boolean(data.match(new RegExp(`(Failed|Completed) running ${printedArgs.replace(/\\/g, '\\\\')}`, 'g'))?.length); + restartMethod ??= () => writeFileSync(file, readFileSync(file)); + + let stderr = ''; + let stdout = ''; + let restartCount = 0; + let completedStart = false; + let finished = false; + + const child = spawn(execPath, ['--watch', '--no-warnings', ...args], { encoding: 'utf8' }); + child.stderr.on('data', (data) => { + stderr += data; + }); + child.stdout.on('data', async (data) => { + if (finished) return; + stdout += data; + const restartMessages = stdout.match(new RegExp(`Restarting ${printedArgs.replace(/\\/g, '\\\\')}`, 'g'))?.length ?? 0; + completedStart = completedStart || startedPredicate(data.toString()); + if (restartMessages >= restarts && completedStart) { + finished = true; + child.kill(); + return; + } + if (restartCount <= restartMessages && completedStart) { + await setTimeout(restartCount > 0 ? 1000 : 50, { ref: false }); // Prevent throttling + restartCount++; + completedStart = false; + restartMethod(); + } + }); + + await Promise.race([once(child, 'exit'), once(child, 'error')]); + return { stderr, stdout }; +} + +let tmpFiles = 0; +function createTmpFile(content = 'console.log("running");') { + const file = path.join(tmpdir.path, `${tmpFiles++}.js`); + writeFileSync(file, content); + return file; +} + +function removeGraceMessage(stdout, file) { + // Remove the message in case restart took long to avoid flakiness + return stdout + .replaceAll('Waiting for graceful termination...', '') + .replaceAll(`Gracefully restarted ${inspect(file)}`, ''); +} + +tmpdir.refresh(); + +// Warning: this suite can run safely with concurrency: true +// only if tests do not watch/depend on the same files +describe('watch mode', { concurrency: false, timeout: 60_0000 }, () => { + it('should watch changes to a file - event loop ended', async () => { + const file = createTmpFile(); + const { stderr, stdout } = await spawnWithRestarts({ file, restarts: 1 }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [ + 'running', `Completed running ${inspect(file)}`, `Restarting ${inspect(file)}`, + 'running', `Completed running ${inspect(file)}`, '', + ].join('\n')); + }); + + it('should watch changes to a failing file', async () => { + const file = fixtures.path('watch-mode/failing.js'); + const { stderr, stdout } = await spawnWithRestarts({ file, restarts: 1 }); + + assert.match(stderr, /Error: fails\r?\n/); + assert.strictEqual(stderr.match(/Error: fails\r?\n/g).length, 2); + assert.strictEqual(removeGraceMessage(stdout, file), [`Failed running ${inspect(file)}`, `Restarting ${inspect(file)}`, + `Failed running ${inspect(file)}`, ''].join('\n')); + }); + + it('should not watch when running an non-existing file', async () => { + const file = fixtures.path('watch-mode/non-existing.js'); + const { stderr, stdout } = await spawnWithRestarts({ file, restarts: 0, restartMethod: () => {} }); + + assert.match(stderr, /code: 'MODULE_NOT_FOUND'/); + assert.strictEqual(stdout, [`Failed running ${inspect(file)}`, ''].join('\n')); + }); + + it('should watch when running an non-existing file - when specified under --watch-path', { + skip: !common.isOSX && !common.isWindows + }, async () => { + const file = fixtures.path('watch-mode/subdir/non-existing.js'); + const watched = fixtures.path('watch-mode/subdir/file.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + args: ['--watch-path', fixtures.path('./watch-mode/subdir/'), file], + restarts: 1, + restartMethod: () => writeFileSync(watched, readFileSync(watched)) + }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [`Failed running ${inspect(file)}`, `Restarting ${inspect(file)}`, + `Failed running ${inspect(file)}`, ''].join('\n')); + }); + + it('should watch changes to a file - event loop blocked', async () => { + const file = fixtures.path('watch-mode/infinite-loop.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + restarts: 2, + startedPredicate: (data) => data.startsWith('running'), + }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), + ['running', `Restarting ${inspect(file)}`, 'running', `Restarting ${inspect(file)}`, 'running', ''].join('\n')); + }); + + it('should watch changes to dependencies - cjs', async () => { + const file = fixtures.path('watch-mode/dependant.js'); + const dependency = fixtures.path('watch-mode/dependency.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + restarts: 1, + restartMethod: () => writeFileSync(dependency, readFileSync(dependency)), + }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [ + '{}', `Completed running ${inspect(file)}`, `Restarting ${inspect(file)}`, + '{}', `Completed running ${inspect(file)}`, '', + ].join('\n')); + }); + + it('should watch changes to dependencies - esm', async () => { + const file = fixtures.path('watch-mode/dependant.mjs'); + const dependency = fixtures.path('watch-mode/dependency.mjs'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + restarts: 1, + restartMethod: () => writeFileSync(dependency, readFileSync(dependency)), + }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [ + '{}', `Completed running ${inspect(file)}`, `Restarting ${inspect(file)}`, + '{}', `Completed running ${inspect(file)}`, '', + ].join('\n')); + }); + + it('should restart multiple times', async () => { + const file = createTmpFile(); + const { stderr, stdout } = await spawnWithRestarts({ file, restarts: 3 }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(stdout.match(new RegExp(`Restarting ${inspect(file).replace(/\\/g, '\\\\')}`, 'g')).length, 3); + }); + + it('should gracefully wait when restarting', { skip: common.isWindows }, async () => { + const file = fixtures.path('watch-mode/graceful-sigterm.js'); + const { stderr, stdout } = await spawnWithRestarts({ + file, + restarts: 1, + startedPredicate: (data) => data.startsWith('running'), + }); + + // This message appearing is very flaky depending on a race between the + // inner process and the outer process. it is acceptable for the message not to appear + // as long as the SIGTERM handler is respected. + if (stdout.includes('Waiting for graceful termination...')) { + assert.strictEqual(stdout, ['running', `Restarting ${inspect(file)}`, 'Waiting for graceful termination...', + 'exiting gracefully', `Gracefully restarted ${inspect(file)}`, 'running', ''].join('\n')); + } else { + assert.strictEqual(stdout, ['running', `Restarting ${inspect(file)}`, 'exiting gracefully', 'running', ''].join('\n')); + } + assert.strictEqual(stderr, ''); + }); + + it('should pass arguments to file', async () => { + const file = fixtures.path('watch-mode/parse_args.js'); + const random = Date.now().toString(); + const args = [file, '--random', random]; + const { stderr, stdout } = await spawnWithRestarts({ file, args, restarts: 1 }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, args.join(' ')), [ + random, `Completed running ${inspect(args.join(' '))}`, `Restarting ${inspect(args.join(' '))}`, + random, `Completed running ${inspect(args.join(' '))}`, '', + ].join('\n')); + }); + + it('should not load --require modules in main process', async () => { + const file = createTmpFile(''); + const required = fixtures.path('watch-mode/process_exit.js'); + const args = ['--require', required, file]; + const { stderr, stdout } = await spawnWithRestarts({ file, args, restarts: 1 }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [ + `Completed running ${inspect(file)}`, `Restarting ${inspect(file)}`, `Completed running ${inspect(file)}`, '', + ].join('\n')); + }); + + it('should not load --import modules in main process', async () => { + const file = createTmpFile(''); + const imported = fixtures.fileURL('watch-mode/process_exit.js'); + const args = ['--import', imported, file]; + const { stderr, stdout } = await spawnWithRestarts({ file, args, restarts: 1 }); + + assert.strictEqual(stderr, ''); + assert.strictEqual(removeGraceMessage(stdout, file), [ + `Completed running ${inspect(file)}`, `Restarting ${inspect(file)}`, `Completed running ${inspect(file)}`, '', + ].join('\n')); + }); + + describe('inspect', { + skip: Boolean(process.config.variables.coverage || !process.features.inspector), + }, () => { + const silentLogger = { log: () => {}, error: () => {} }; + async function getDebuggedPid(instance, waitForLog = true) { + const session = await instance.connectInspectorSession(); + await session.send({ method: 'Runtime.enable' }); + if (waitForLog) { + await session.waitForConsoleOutput('log', 'safe to debug now'); + } + const { value: innerPid } = (await session.send({ + 'method': 'Runtime.evaluate', 'params': { 'expression': 'process.pid' } + })).result; + session.disconnect(); + return innerPid; + } + + it('should start debugger on inner process', async () => { + const file = fixtures.path('watch-mode/inspect.js'); + const instance = new NodeInstance(['--inspect=0', '--watch'], undefined, file, silentLogger); + let stderr = ''; + instance.on('stderr', (data) => { stderr += data; }); + + const pids = [instance.pid]; + pids.push(await getDebuggedPid(instance)); + instance.resetPort(); + writeFileSync(file, readFileSync(file)); + pids.push(await getDebuggedPid(instance)); + + await instance.kill(); + + // There should be 3 pids (one parent + 2 restarts). + // Message about Debugger should only appear twice. + assert.strictEqual(stderr.match(/Debugger listening on ws:\/\//g).length, 2); + assert.strictEqual(new Set(pids).size, 3); + }); + + it('should prevent attaching debugger with SIGUSR1 to outer process', { skip: common.isWindows }, async () => { + const file = fixtures.path('watch-mode/inspect_with_signal.js'); + const instance = new NodeInstance(['--inspect-port=0', '--watch'], undefined, file, silentLogger); + let stderr = ''; + instance.on('stderr', (data) => { stderr += data; }); + + const loggedPid = await new Promise((resolve) => { + instance.on('stdout', (data) => { + const matches = data.match(/pid is (\d+)/); + if (matches) resolve(Number(matches[1])); + }); + }); + + + process.kill(instance.pid, 'SIGUSR1'); + process.kill(loggedPid, 'SIGUSR1'); + const debuggedPid = await getDebuggedPid(instance, false); + + await instance.kill(); + + // Message about Debugger should only appear once in inner process. + assert.strictEqual(stderr.match(/Debugger listening on ws:\/\//g).length, 1); + assert.strictEqual(loggedPid, debuggedPid); + }); + }); +}); diff --git a/test/parallel/test-webcrypto-derivebits-hkdf.js b/test/parallel/test-webcrypto-derivebits-hkdf.js index 42d958e5f5f8212..922c1b347e3b0c7 100644 --- a/test/parallel/test-webcrypto-derivebits-hkdf.js +++ b/test/parallel/test-webcrypto-derivebits-hkdf.js @@ -31,7 +31,7 @@ const kDerivedKeys = { short: '5040737377307264', long: '55736572732073686f756c64207069636b206c6f6e6720706173737068726' + '173657320286e6f74207573652073686f72742070617373776f7264732921', - // empty: '' + empty: '' }; const kSalts = { @@ -259,15 +259,18 @@ async function testDeriveBitsBadLengths( return Promise.all([ assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], 0), { - message: /length cannot be zero/ + message: /length cannot be zero/, + name: 'OperationError', }), assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], null), { - code: 'ERR_INVALID_ARG_TYPE' + message: 'length cannot be null', + name: 'OperationError', }), assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], 15), { - message: /length must be a multiple of 8/ + message: /length must be a multiple of 8/, + name: 'OperationError', }), ]); } diff --git a/test/parallel/test-webcrypto-encrypt-decrypt-aes.js b/test/parallel/test-webcrypto-encrypt-decrypt-aes.js index 885cded906b079b..5dfae1c5d55385d 100644 --- a/test/parallel/test-webcrypto-encrypt-decrypt-aes.js +++ b/test/parallel/test-webcrypto-encrypt-decrypt-aes.js @@ -119,7 +119,7 @@ async function testDecrypt({ keyBuffer, algorithm, result }) { decryptionFailing.forEach((vector) => { variations.push(assert.rejects(testDecrypt(vector), { - message: /bad decrypt/ + name: 'OperationError' })); }); @@ -158,7 +158,7 @@ async function testDecrypt({ keyBuffer, algorithm, result }) { decryptionFailing.forEach((vector) => { variations.push(assert.rejects(testDecrypt(vector), { - message: /bad decrypt/ + name: 'OperationError' })); }); @@ -195,7 +195,7 @@ async function testDecrypt({ keyBuffer, algorithm, result }) { decryptionFailing.forEach((vector) => { variations.push(assert.rejects(testDecrypt(vector), { - message: /bad decrypt/ + name: 'OperationError' })); }); diff --git a/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js b/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js index 151eebd36c9765d..6af0fa727969d89 100644 --- a/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js +++ b/test/parallel/test-webcrypto-encrypt-decrypt-rsa.js @@ -127,7 +127,7 @@ async function testEncryptionLongPlaintext({ algorithm, return assert.rejects( subtle.encrypt(algorithm, publicKey, newplaintext), { - message: /data too large/ + name: 'OperationError' }); } diff --git a/test/parallel/test-webcrypto-keygen.js b/test/parallel/test-webcrypto-keygen.js index e61d7c9b913abf6..5acea2debdd2928 100644 --- a/test/parallel/test-webcrypto-keygen.js +++ b/test/parallel/test-webcrypto-keygen.js @@ -452,7 +452,7 @@ const vectors = { [1, true, {}, [], undefined, null].forEach(async (namedCurve) => { await assert.rejects( subtle.generateKey({ name, namedCurve }, true, privateUsages), { - code: 'ERR_INVALID_ARG_TYPE' + name: 'NotSupportedError' }); }); } @@ -512,14 +512,14 @@ const vectors = { [1, 100, 257].forEach(async (length) => { await assert.rejects( subtle.generateKey({ name, length }, true, usages), { - code: 'ERR_INVALID_ARG_VALUE' + name: 'OperationError' }); }); ['', {}, [], false, null, undefined].forEach(async (length) => { await assert.rejects( subtle.generateKey({ name, length }, true, usages), { - code: 'ERR_INVALID_ARG_TYPE' + name: 'OperationError', }); }); } diff --git a/test/parallel/test-webstream-readablestream-pipeto.js b/test/parallel/test-webstream-readablestream-pipeto.js new file mode 100644 index 000000000000000..95929c5197a2757 --- /dev/null +++ b/test/parallel/test-webstream-readablestream-pipeto.js @@ -0,0 +1,24 @@ +// Flags: --expose-internals +'use strict'; + +require('../common'); +const assert = require('node:assert'); +const { AbortError } = require('internal/errors'); + +// Purpose: pass an AbortError instance, which isn't the DOMException, as an +// abort reason. + +for (const message of [undefined, 'abc']) { + const rs = new ReadableStream(); + const ws = new WritableStream(); + const ac = new AbortController(); + const reason = new AbortError(message); + ac.abort(reason); + + assert.rejects(rs.pipeTo(ws, { signal: ac.signal }), (e) => { + assert(e instanceof DOMException); + assert.strictEqual(e.name, 'AbortError'); + assert.strictEqual(e.message, reason.message); + return true; + }); +} diff --git a/test/parallel/test-whatwg-readablebytestream-bad-buffers-and-views.js b/test/parallel/test-whatwg-readablebytestream-bad-buffers-and-views.js index 545a0cd2db51288..a8f6ffc7535e96a 100644 --- a/test/parallel/test-whatwg-readablebytestream-bad-buffers-and-views.js +++ b/test/parallel/test-whatwg-readablebytestream-bad-buffers-and-views.js @@ -51,4 +51,38 @@ let pass = 0; reader.read(new Uint8Array([4, 5, 6])); } +{ + const stream = new ReadableStream({ + start(c) { + c.enqueue(new Uint8Array([1, 2, 3])); + }, + type: 'bytes', + }); + const reader = stream.getReader({ mode: 'byob' }); + const view = new Uint8Array(); + assert + .rejects(reader.read(view), { + code: 'ERR_INVALID_STATE', + name: 'TypeError', + }) + .then(common.mustCall()); +} + +{ + const stream = new ReadableStream({ + start(c) { + c.enqueue(new Uint8Array([1, 2, 3])); + }, + type: 'bytes', + }); + const reader = stream.getReader({ mode: 'byob' }); + const view = new Uint8Array(new ArrayBuffer(10), 0, 0); + assert + .rejects(reader.read(view), { + code: 'ERR_INVALID_STATE', + name: 'TypeError', + }) + .then(common.mustCall()); +} + process.on('exit', () => assert.strictEqual(pass, 2)); diff --git a/test/parallel/test-whatwg-readablestream.js b/test/parallel/test-whatwg-readablestream.js index 9f1cfc60e9a28b2..7f5880939354f75 100644 --- a/test/parallel/test-whatwg-readablestream.js +++ b/test/parallel/test-whatwg-readablestream.js @@ -328,17 +328,8 @@ assert.throws(() => { const read1 = reader.read(); const read2 = reader.read(); - // The stream is empty so the read will never settle. - read1.then( - common.mustNotCall(), - common.mustNotCall() - ); - - // The stream is empty so the read will never settle. - read2.then( - common.mustNotCall(), - common.mustNotCall() - ); + read1.then(common.mustNotCall(), common.mustCall()); + read2.then(common.mustNotCall(), common.mustCall()); assert.notStrictEqual(read1, read2); @@ -346,10 +337,9 @@ assert.throws(() => { delay().then(common.mustCall()); - assert.throws(() => reader.releaseLock(), { - code: 'ERR_INVALID_STATE', - }); assert(stream.locked); + reader.releaseLock(); + assert(!stream.locked); } { diff --git a/test/parallel/test-zlib-invalid-input.js b/test/parallel/test-zlib-invalid-input.js index 67793984a991c5a..7aa44dfe7090a1d 100644 --- a/test/parallel/test-zlib-invalid-input.js +++ b/test/parallel/test-zlib-invalid-input.js @@ -53,7 +53,7 @@ nonStringInputs.forEach(common.mustCall((input) => { unzips.forEach(common.mustCall((uz, i) => { uz.on('error', common.mustCall()); - uz.on('end', common.mustNotCall); + uz.on('end', common.mustNotCall()); // This will trigger error event uz.write('this is not valid compressed data.'); diff --git a/test/parallel/test-zlib-sync-no-event.js b/test/parallel/test-zlib-sync-no-event.js index 479aa1c411b096e..e7f25c8476ee4e9 100644 --- a/test/parallel/test-zlib-sync-no-event.js +++ b/test/parallel/test-zlib-sync-no-event.js @@ -7,12 +7,12 @@ const message = 'Come on, Fhqwhgads.'; const buffer = Buffer.from(message); const zipper = new zlib.Gzip(); -zipper.on('close', common.mustNotCall); +zipper.on('close', common.mustNotCall()); const zipped = zipper._processChunk(buffer, zlib.constants.Z_FINISH); const unzipper = new zlib.Gunzip(); -unzipper.on('close', common.mustNotCall); +unzipper.on('close', common.mustNotCall()); const unzipped = unzipper._processChunk(zipped, zlib.constants.Z_FINISH); assert.notStrictEqual(zipped.toString(), message); diff --git a/test/pummel/test-heapdump-env.js b/test/pummel/test-heapdump-env.js index 7030271469c5122..6089d961afbc661 100644 --- a/test/pummel/test-heapdump-env.js +++ b/test/pummel/test-heapdump-env.js @@ -16,8 +16,14 @@ const context = require('vm').createScript('const foo = 123'); validateSnapshotNodes('Node / Environment', [{ children: [ { node_name: 'Node / cleanup_hooks', edge_name: 'cleanup_hooks' }, - { node_name: 'process', edge_name: 'process_object' }, { node_name: 'Node / IsolateData', edge_name: 'isolate_data' }, + { node_name: 'Node / Realm', edge_name: 'principal_realm' }, + ] +}]); + +validateSnapshotNodes('Node / Realm', [{ + children: [ + { node_name: 'process', edge_name: 'process_object' }, ] }]); diff --git a/test/pummel/test-webcrypto-derivebits-pbkdf2.js b/test/pummel/test-webcrypto-derivebits-pbkdf2.js index e7ed4f6bd646dd7..6e3e7f532bac28f 100644 --- a/test/pummel/test-webcrypto-derivebits-pbkdf2.js +++ b/test/pummel/test-webcrypto-derivebits-pbkdf2.js @@ -37,8 +37,7 @@ const kPasswords = { long: '55736572732073686f756c64207069636b206c6f6' + 'e6720706173737068726173657320286e6f742075' + '73652073686f72742070617373776f7264732921', - // TODO(@jasnell): Zero-length password not currently supported - // empty: '' + empty: '' }; const kSalts = { @@ -256,110 +255,110 @@ const kDerivations = { } } }, - // empty: { - // short: { - // 'SHA-384': { - // '1': 'e9f0da1e97dfa455f858ce6b9af1ecc0299' + - // 'f125ff1a847eb5d4955866f43e604', - // '1000': '7ff7954aeddf41795fc8300666786d49' + - // '74269aa91cc7e93811c953331d56d609', - // '100000': '1c73132b6a55e9d9de2cdbfe1f55bf' + - // '0ab59fd91f78f109c50096038b8557b147' - // }, - // 'SHA-512': { - // '1': 'e7e2b41f4887421bcb764eb4a56f63d2502' + - // 'e33c764fbdf60626ad42ed9672342', - // '1000': 'd561c4c84e9c60ba4752a2d383bf55ef' + - // 'f643fc9e452252d6821e39449350cf72', - // '100000': 'efd00752bc9ffafb5a399dd1d5834e' + - // '8d2c2b676ecd4b2063fb1fe581d0f1380b' - // }, - // 'SHA-1': { - // '1': 'a667da47b8f857b7c65f70a6c8e7a06ce0d' + - // '25211a2b6ebaf58dcaaf268b46b1d', - // '1000': '72c92bbd3ddab4789e88e42ad1cda83c' + - // 'c0729e6cb5106a577e50d5cf61782481', - // '100000': '06e19e1b83e6480b1554df2b31a2c9' + - // '2d1bfcf9bc1bdbc8751ff8685bdeef7dc9' - // }, - // 'SHA-256': { - // '1': '2ddb49243eb3b5912cb260cdd87fb04ef0d' + - // '111bfa44d40a45e02a8a5c3c1518d', - // '1000': '2835f3ed53565420c90951509b0c1173' + - // 'b645174f1546ab3ac3e6c85cb471b53b', - // '100000': '80aed905ca32ae0bb2a9d8f532f048' + - // 'a0e672463eef9f83dfa7d88bca726553ea' - // } - // }, - // long: { - // 'SHA-384': { - // '1': '7b0bcca81dd637a3b3398666619716c5f2b1' + - // 'f4a5c24e85c18a9955559e4d7692', - // '1000': '8bb89cf71972fe5acc16fdc5f8cffd2c2' + - // 'e7178c086b3bbe61cc1314619135958', - // '100000': '26c6a8ae4bd1fbe715ae478efff3eca' + - // 'e83afa617ed35bd4a3f63c3da76a42d22' - // }, - // 'SHA-512': { - // '1': 'bb73f8168a8f391d3d54ca892fb72b8e603' + - // '5e37f891e5a70491b94dc05510bc4', - // '1000': '5cacc16cdfbe052cfd73a9891b8c0e78' + - // 'b19b2e07eae2423d48fed5e08aa8494b', - // '100000': '87fdfc293392cbf33ecc9b5141a2fe' + - // 'fa74d150499756863c484c0a78b6274d7f' - // }, - // 'SHA-1': { - // '1': '1f46b40cf2fb3dc41a3d9ced8897b861050' + - // '36810e2bfac7040814bd65d428d67', - // '1000': 'cc5748ecc41288a0e13368543aaa2ef6' + - // '2c97ba7518fa88f6e11c35763fc930b4', - // '100000': '33e2993bf4729dc993fff66e69cc55' + - // '777135ebfabce533575bce4a96645a742c' - // }, - // 'SHA-256': { - // '1': '61c935c462c3321c89663545d13a4f6b52b' + - // '5191cfb7479e58dcfe6444d43106c', - // '1000': '1353f7458237ab332ee052e29f829a2a' + - // 'b90e72630ea10493b4eecffb9ff89e1d', - // '100000': '79baf80ec582920538801e9d929ce0' + - // '7084277987488d733a026852c452f06fb4' - // } - // }, - // empty: { - // 'SHA-384': { - // '1': '4bb042a5c28cee6f66f991c717fd7702677' + - // '87e2bb3031eae270d87d63ad99534', - // '1000': '9cbfe72d194da34e17c821dd1569ef50' + - // 'a86eb4d893591776adc6a5c21e0031cf', - // '100000': 'ed6bd7282567abe48d542d067d09f4' + - // '04bd044ae2cefe11dacc531c4764cd35cd' - // }, - // 'SHA-512': { - // '1': '6d2ecbbbfb2e6dcd7056faf9af6aa06eae5' + - // '94391db983279a6bf27e0eb228614', - // '1000': 'cb93096c3a02beeb1c5fac36765c9011' + - // 'fe99f8d8ea62366048fc98cb98dfea8f', - // '100000': '89e16254ebad5cba72e0aebe1614c7' + - // 'f9b795a7505f2637206ce10a3449a2b8bb' - // }, - // 'SHA-1': { - // '1': '1e437a1c79d75be61e91141dae20affc489' + - // '2cc99abcc3fe753887bccc8920176', - // '1000': '6e40910ac02ec89cebb9d898b13a09d1' + - // 'cd7adf6f8cc08cc473302c8973aa2e19', - // '100000': 'a9e1bebb36bc26d7c997d5483cbc8d' + - // 'e4a419d1e706571342632586ec330a7290' - // }, - // 'SHA-256': { - // '1': 'f7ce0b653d2d72a4108cf5abe912ffdd777' + - // '616dbbb27a70e8204f3ae2d0f6fad', - // '1000': '4fc58a21c100ce1835b8f9991d738b56' + - // '965d14b24e1761fbdffc69ac5e0b667a', - // '100000': '64a868d4b23af696d3734d0b814d04' + - // 'cdd1ac280128e97653a05f32b49c13a29a' - // } - // } - // } + empty: { + short: { + 'SHA-384': { + '1': 'e9f0da1e97dfa455f858ce6b9af1ecc0299' + + 'f125ff1a847eb5d4955866f43e604', + '1000': '7ff7954aeddf41795fc8300666786d49' + + '74269aa91cc7e93811c953331d56d609', + '100000': '1c73132b6a55e9d9de2cdbfe1f55bf' + + '0ab59fd91f78f109c50096038b8557b147' + }, + 'SHA-512': { + '1': 'e7e2b41f4887421bcb764eb4a56f63d2502' + + 'e33c764fbdf60626ad42ed9672342', + '1000': 'd561c4c84e9c60ba4752a2d383bf55ef' + + 'f643fc9e452252d6821e39449350cf72', + '100000': 'efd00752bc9ffafb5a399dd1d5834e' + + '8d2c2b676ecd4b2063fb1fe581d0f1380b' + }, + 'SHA-1': { + '1': 'a667da47b8f857b7c65f70a6c8e7a06ce0d' + + '25211a2b6ebaf58dcaaf268b46b1d', + '1000': '72c92bbd3ddab4789e88e42ad1cda83c' + + 'c0729e6cb5106a577e50d5cf61782481', + '100000': '06e19e1b83e6480b1554df2b31a2c9' + + '2d1bfcf9bc1bdbc8751ff8685bdeef7dc9' + }, + 'SHA-256': { + '1': '2ddb49243eb3b5912cb260cdd87fb04ef0d' + + '111bfa44d40a45e02a8a5c3c1518d', + '1000': '2835f3ed53565420c90951509b0c1173' + + 'b645174f1546ab3ac3e6c85cb471b53b', + '100000': '80aed905ca32ae0bb2a9d8f532f048' + + 'a0e672463eef9f83dfa7d88bca726553ea' + } + }, + long: { + 'SHA-384': { + '1': '7b0bcca81dd637a3b3398666619716c5f2b1' + + 'f4a5c24e85c18a9955559e4d7692', + '1000': '8bb89cf71972fe5acc16fdc5f8cffd2c2' + + 'e7178c086b3bbe61cc1314619135958', + '100000': '26c6a8ae4bd1fbe715ae478efff3eca' + + 'e83afa617ed35bd4a3f63c3da76a42d22' + }, + 'SHA-512': { + '1': 'bb73f8168a8f391d3d54ca892fb72b8e603' + + '5e37f891e5a70491b94dc05510bc4', + '1000': '5cacc16cdfbe052cfd73a9891b8c0e78' + + 'b19b2e07eae2423d48fed5e08aa8494b', + '100000': '87fdfc293392cbf33ecc9b5141a2fe' + + 'fa74d150499756863c484c0a78b6274d7f' + }, + 'SHA-1': { + '1': '1f46b40cf2fb3dc41a3d9ced8897b861050' + + '36810e2bfac7040814bd65d428d67', + '1000': 'cc5748ecc41288a0e13368543aaa2ef6' + + '2c97ba7518fa88f6e11c35763fc930b4', + '100000': '33e2993bf4729dc993fff66e69cc55' + + '777135ebfabce533575bce4a96645a742c' + }, + 'SHA-256': { + '1': '61c935c462c3321c89663545d13a4f6b52b' + + '5191cfb7479e58dcfe6444d43106c', + '1000': '1353f7458237ab332ee052e29f829a2a' + + 'b90e72630ea10493b4eecffb9ff89e1d', + '100000': '79baf80ec582920538801e9d929ce0' + + '7084277987488d733a026852c452f06fb4' + } + }, + empty: { + 'SHA-384': { + '1': '4bb042a5c28cee6f66f991c717fd7702677' + + '87e2bb3031eae270d87d63ad99534', + '1000': '9cbfe72d194da34e17c821dd1569ef50' + + 'a86eb4d893591776adc6a5c21e0031cf', + '100000': 'ed6bd7282567abe48d542d067d09f4' + + '04bd044ae2cefe11dacc531c4764cd35cd' + }, + 'SHA-512': { + '1': '6d2ecbbbfb2e6dcd7056faf9af6aa06eae5' + + '94391db983279a6bf27e0eb228614', + '1000': 'cb93096c3a02beeb1c5fac36765c9011' + + 'fe99f8d8ea62366048fc98cb98dfea8f', + '100000': '89e16254ebad5cba72e0aebe1614c7' + + 'f9b795a7505f2637206ce10a3449a2b8bb' + }, + 'SHA-1': { + '1': '1e437a1c79d75be61e91141dae20affc489' + + '2cc99abcc3fe753887bccc8920176', + '1000': '6e40910ac02ec89cebb9d898b13a09d1' + + 'cd7adf6f8cc08cc473302c8973aa2e19', + '100000': 'a9e1bebb36bc26d7c997d5483cbc8d' + + 'e4a419d1e706571342632586ec330a7290' + }, + 'SHA-256': { + '1': 'f7ce0b653d2d72a4108cf5abe912ffdd777' + + '616dbbb27a70e8204f3ae2d0f6fad', + '1000': '4fc58a21c100ce1835b8f9991d738b56' + + '965d14b24e1761fbdffc69ac5e0b667a', + '100000': '64a868d4b23af696d3734d0b814d04' + + 'cdd1ac280128e97653a05f32b49c13a29a' + } + } + } }; async function setupBaseKeys() { @@ -448,15 +447,18 @@ async function testDeriveBitsBadLengths( return Promise.all([ assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], 0), { - message: /length cannot be zero/ + message: /length cannot be zero/, + name: 'OperationError', }), assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], null), { - code: 'ERR_INVALID_ARG_TYPE' + message: 'length cannot be null', + name: 'OperationError', }), assert.rejects( subtle.deriveBits(algorithm, baseKeys[size], 15), { - message: /length must be a multiple of 8/ + message: /length must be a multiple of 8/, + name: 'OperationError', }), ]); } diff --git a/test/report/test-report-fatal-error.js b/test/report/test-report-fatal-error.js deleted file mode 100644 index c913240c4bc7ee9..000000000000000 --- a/test/report/test-report-fatal-error.js +++ /dev/null @@ -1,121 +0,0 @@ -'use strict'; - -// Testcases for situations involving fatal errors, like Javascript heap OOM - -require('../common'); -const assert = require('assert'); -const fs = require('fs'); -const helper = require('../common/report.js'); -const spawnSync = require('child_process').spawnSync; -const tmpdir = require('../common/tmpdir'); - -if (process.argv[2] === 'child') { - - const list = []; - while (true) { - const record = new MyRecord(); - list.push(record); - } - - function MyRecord() { - this.name = 'foo'; - this.id = 128; - this.account = 98454324; - } -} - -// Common args that will cause an out-of-memory error for child process. -const ARGS = [ - '--max-old-space-size=20', - __filename, - 'child', -]; - -{ - // Verify that --report-on-fatalerror is respected when set. - tmpdir.refresh(); - const args = ['--report-on-fatalerror', ...ARGS]; - const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); - assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); - - const reports = helper.findReports(child.pid, tmpdir.path); - assert.strictEqual(reports.length, 1); - - const report = reports[0]; - helper.validate(report); - - // Errors occur in a context where env is not available, so thread ID is - // unknown. Assert this, to verify that the underlying env-less situation is - // actually reached. - assert.strictEqual(require(report).header.threadId, null); -} - -{ - // Verify that --report-on-fatalerror is respected when not set. - const args = ARGS; - const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); - assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); - const reports = helper.findReports(child.pid, tmpdir.path); - assert.strictEqual(reports.length, 0); -} - -{ - // Verify that --report-directory is respected when set. - // Verify that --report-compact is respected when not set. - tmpdir.refresh(); - const dir = '--report-directory=' + tmpdir.path; - const args = ['--report-on-fatalerror', dir, ...ARGS]; - const child = spawnSync(process.execPath, args, { }); - assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); - - const reports = helper.findReports(child.pid, tmpdir.path); - assert.strictEqual(reports.length, 1); - - const report = reports[0]; - helper.validate(report); - assert.strictEqual(require(report).header.threadId, null); - const lines = fs.readFileSync(report, 'utf8').split('\n').length - 1; - assert(lines > 10); -} - -{ - // Verify that --report-compact is respected when set. - tmpdir.refresh(); - const args = ['--report-on-fatalerror', '--report-compact', ...ARGS]; - const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); - assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); - - const reports = helper.findReports(child.pid, tmpdir.path); - assert.strictEqual(reports.length, 1); - - const report = reports[0]; - helper.validate(report); - assert.strictEqual(require(report).header.threadId, null); - // Subtract 1 because "xx\n".split("\n") => [ 'xx', '' ]. - const lines = fs.readFileSync(report, 'utf8').split('\n').length - 1; - assert.strictEqual(lines, 1); -} - -{ - // Verify that --report-compact is respected when set. - // Verify that --report-filename is respected when set. - tmpdir.refresh(); - const args = [ - '--report-on-fatalerror', - '--report-compact', - '--report-filename=stderr', - ...ARGS, - ]; - const child = spawnSync(process.execPath, args, { encoding: 'utf8' }); - assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); - - const reports = helper.findReports(child.pid, tmpdir.path); - assert.strictEqual(reports.length, 0); - - const lines = child.stderr.split('\n'); - // Skip over unavoidable free-form output and gc log from V8. - const report = lines.find((i) => i.startsWith('{')); - const json = JSON.parse(report); - - assert.strictEqual(json.header.threadId, null); -} diff --git a/test/report/test-report-fatalerror-oomerror-compact.js b/test/report/test-report-fatalerror-oomerror-compact.js new file mode 100644 index 000000000000000..66bc1fa88e624dc --- /dev/null +++ b/test/report/test-report-fatalerror-oomerror-compact.js @@ -0,0 +1,39 @@ +'use strict'; + +// Testcases for situations involving fatal errors, like Javascript heap OOM + +require('../common'); +const assert = require('assert'); +const fs = require('fs'); +const helper = require('../common/report.js'); +const spawnSync = require('child_process').spawnSync; +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); + +// Common args that will cause an out-of-memory error for child process. +const ARGS = [ + '--max-heap-size=20', + fixtures.path('report-oom'), +]; +const REPORT_FIELDS = [ + ['header.trigger', 'OOMError'], + ['javascriptHeap.memoryLimit', 20 * 1024 * 1024 /* 20MB */], +]; + +{ + // Verify that --report-compact is respected when set. + tmpdir.refresh(); + const args = ['--report-on-fatalerror', '--report-compact', ...ARGS]; + const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); + assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); + + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 1); + + const report = reports[0]; + helper.validate(report, REPORT_FIELDS); + + // Subtract 1 because "xx\n".split("\n") => [ 'xx', '' ]. + const lines = fs.readFileSync(report, 'utf8').split('\n').length - 1; + assert.strictEqual(lines, 1); +} diff --git a/test/report/test-report-fatalerror-oomerror-directory.js b/test/report/test-report-fatalerror-oomerror-directory.js new file mode 100644 index 000000000000000..39ba7a1ca4b5169 --- /dev/null +++ b/test/report/test-report-fatalerror-oomerror-directory.js @@ -0,0 +1,40 @@ +'use strict'; + +// Testcases for situations involving fatal errors, like Javascript heap OOM + +require('../common'); +const assert = require('assert'); +const fs = require('fs'); +const helper = require('../common/report.js'); +const spawnSync = require('child_process').spawnSync; +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); + +// Common args that will cause an out-of-memory error for child process. +const ARGS = [ + '--max-heap-size=20', + fixtures.path('report-oom'), +]; +const REPORT_FIELDS = [ + ['header.trigger', 'OOMError'], + ['javascriptHeap.memoryLimit', 20 * 1024 * 1024 /* 20MB */], +]; + +{ + // Verify that --report-directory is respected when set. + // Verify that --report-compact is respected when not set. + tmpdir.refresh(); + const dir = '--report-directory=' + tmpdir.path; + const args = ['--report-on-fatalerror', dir, ...ARGS]; + const child = spawnSync(process.execPath, args, { }); + assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); + + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 1); + + const report = reports[0]; + helper.validate(report, REPORT_FIELDS); + + const lines = fs.readFileSync(report, 'utf8').split('\n').length - 1; + assert(lines > 10); +} diff --git a/test/report/test-report-fatalerror-oomerror-filename.js b/test/report/test-report-fatalerror-oomerror-filename.js new file mode 100644 index 000000000000000..9c3bb7e4d1a3ce6 --- /dev/null +++ b/test/report/test-report-fatalerror-oomerror-filename.js @@ -0,0 +1,42 @@ +'use strict'; + +// Testcases for situations involving fatal errors, like Javascript heap OOM + +require('../common'); +const assert = require('assert'); +const helper = require('../common/report.js'); +const spawnSync = require('child_process').spawnSync; +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); + +// Common args that will cause an out-of-memory error for child process. +const ARGS = [ + '--max-heap-size=20', + fixtures.path('report-oom'), +]; +const REPORT_FIELDS = [ + ['header.trigger', 'OOMError'], + ['javascriptHeap.memoryLimit', 20 * 1024 * 1024 /* 20MB */], +]; + +{ + // Verify that --report-compact is respected when set. + // Verify that --report-filename is respected when set. + tmpdir.refresh(); + const args = [ + '--report-on-fatalerror', + '--report-compact', + '--report-filename=stderr', + ...ARGS, + ]; + const child = spawnSync(process.execPath, args, { encoding: 'utf8' }); + assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); + + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 0); + + const lines = child.stderr.split('\n'); + // Skip over unavoidable free-form output and gc log from V8. + const report = lines.find((i) => i.startsWith('{')); + helper.validateContent(report, REPORT_FIELDS); +} diff --git a/test/report/test-report-fatalerror-oomerror-not-set.js b/test/report/test-report-fatalerror-oomerror-not-set.js new file mode 100644 index 000000000000000..a54003ac7192ce2 --- /dev/null +++ b/test/report/test-report-fatalerror-oomerror-not-set.js @@ -0,0 +1,26 @@ +'use strict'; + +// Testcases for situations involving fatal errors, like Javascript heap OOM + +require('../common'); +const assert = require('assert'); +const helper = require('../common/report.js'); +const spawnSync = require('child_process').spawnSync; +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); + +// Common args that will cause an out-of-memory error for child process. +const ARGS = [ + '--max-heap-size=20', + fixtures.path('report-oom'), +]; + +{ + tmpdir.refresh(); + // Verify that --report-on-fatalerror is respected when not set. + const args = ARGS; + const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); + assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 0); +} diff --git a/test/report/test-report-fatalerror-oomerror-set.js b/test/report/test-report-fatalerror-oomerror-set.js new file mode 100644 index 000000000000000..1a05f83d4e3b50b --- /dev/null +++ b/test/report/test-report-fatalerror-oomerror-set.js @@ -0,0 +1,34 @@ +'use strict'; + +// Testcases for situations involving fatal errors, like Javascript heap OOM + +require('../common'); +const assert = require('assert'); +const helper = require('../common/report.js'); +const spawnSync = require('child_process').spawnSync; +const tmpdir = require('../common/tmpdir'); +const fixtures = require('../common/fixtures'); + +// Common args that will cause an out-of-memory error for child process. +const ARGS = [ + '--max-heap-size=20', + fixtures.path('report-oom'), +]; +const REPORT_FIELDS = [ + ['header.trigger', 'OOMError'], + ['javascriptHeap.memoryLimit', 20 * 1024 * 1024 /* 20MB */], +]; + +{ + // Verify that --report-on-fatalerror is respected when set. + tmpdir.refresh(); + const args = ['--report-on-fatalerror', ...ARGS]; + const child = spawnSync(process.execPath, args, { cwd: tmpdir.path }); + assert.notStrictEqual(child.status, 0, 'Process exited unexpectedly'); + + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 1); + + const report = reports[0]; + helper.validate(report, REPORT_FIELDS); +} diff --git a/test/report/test-report-uncaught-exception-compat.js b/test/report/test-report-uncaught-exception-compat.js index 9fe690595e89a0d..91989f6ecda9942 100644 --- a/test/report/test-report-uncaught-exception-compat.js +++ b/test/report/test-report-uncaught-exception-compat.js @@ -1,5 +1,32 @@ -// Flags: --experimental-report --report-uncaught-exception --report-compact 'use strict'; -// Test producing a compact report on uncaught exception. -require('../common'); -require('./test-report-uncaught-exception.js'); +// Test producing a report on uncaught exception. +const common = require('../common'); +const assert = require('assert'); +const childProcess = require('child_process'); +const helper = require('../common/report'); +const tmpdir = require('../common/tmpdir'); + +if (process.argv[2] === 'child') { + throw new Error('test error'); +} + +tmpdir.refresh(); +const child = childProcess.spawn(process.execPath, [ + '--report-uncaught-exception', + '--report-compact', + __filename, + 'child', +], { + cwd: tmpdir.path +}); +child.on('exit', common.mustCall((code) => { + assert.strictEqual(code, 1); + const reports = helper.findReports(child.pid, tmpdir.path); + assert.strictEqual(reports.length, 1); + + helper.validate(reports[0], [ + ['header.event', 'Exception'], + ['header.trigger', 'Exception'], + ['javascriptStack.message', 'Error: test error'], + ]); +})); diff --git a/test/report/test-report-uncaught-exception-handled.js b/test/report/test-report-uncaught-exception-handled.js new file mode 100644 index 000000000000000..fffe5ef333f9c35 --- /dev/null +++ b/test/report/test-report-uncaught-exception-handled.js @@ -0,0 +1,23 @@ +// Flags: --report-uncaught-exception +'use strict'; +// Test report is suppressed on uncaught exception hook. +const common = require('../common'); +const assert = require('assert'); +const helper = require('../common/report'); +const tmpdir = require('../common/tmpdir'); +const error = new Error('test error'); + +tmpdir.refresh(); +process.report.directory = tmpdir.path; + +// Make sure the uncaughtException listener is called. +process.on('uncaughtException', common.mustCall()); + +process.on('exit', (code) => { + assert.strictEqual(code, 0); + // Make sure no reports are generated. + const reports = helper.findReports(process.pid, tmpdir.path); + assert.strictEqual(reports.length, 0); +}); + +throw error; diff --git a/test/report/test-report-uncaught-exception-override.js b/test/report/test-report-uncaught-exception-override.js index df4f8a1958114b3..007e8a234cfcb43 100644 --- a/test/report/test-report-uncaught-exception-override.js +++ b/test/report/test-report-uncaught-exception-override.js @@ -12,9 +12,7 @@ process.report.directory = tmpdir.path; // First, install an uncaught exception hook. process.setUncaughtExceptionCaptureCallback(common.mustCall()); - -// Make sure this is ignored due to the above override. -process.on('uncaughtException', common.mustNotCall()); +// Do not install process uncaughtException handler. process.on('exit', (code) => { assert.strictEqual(code, 0); diff --git a/test/report/test-report-uncaught-exception-primitives.js b/test/report/test-report-uncaught-exception-primitives.js index 8de67eeb6a2747c..8e78ad3317d6f2e 100644 --- a/test/report/test-report-uncaught-exception-primitives.js +++ b/test/report/test-report-uncaught-exception-primitives.js @@ -1,25 +1,32 @@ -// Flags: --report-uncaught-exception 'use strict'; // Test producing a report on uncaught exception. const common = require('../common'); const assert = require('assert'); +const childProcess = require('child_process'); const helper = require('../common/report'); const tmpdir = require('../common/tmpdir'); -const exception = 1; +if (process.argv[2] === 'child') { + // eslint-disable-next-line no-throw-literal + throw 1; +} tmpdir.refresh(); -process.report.directory = tmpdir.path; - -process.on('uncaughtException', common.mustCall((err) => { - assert.strictEqual(err, exception); - const reports = helper.findReports(process.pid, tmpdir.path); +const child = childProcess.spawn(process.execPath, [ + '--report-uncaught-exception', + __filename, + 'child', +], { + cwd: tmpdir.path, +}); +child.on('exit', common.mustCall((code) => { + assert.strictEqual(code, 1); + const reports = helper.findReports(child.pid, tmpdir.path); assert.strictEqual(reports.length, 1); helper.validate(reports[0], [ ['header.event', 'Exception'], - ['javascriptStack.message', `${exception}`], + ['header.trigger', 'Exception'], + ['javascriptStack.message', '1'], ]); })); - -throw exception; diff --git a/test/report/test-report-uncaught-exception-symbols.js b/test/report/test-report-uncaught-exception-symbols.js index b1656172851f663..09dd46536095da0 100644 --- a/test/report/test-report-uncaught-exception-symbols.js +++ b/test/report/test-report-uncaught-exception-symbols.js @@ -1,25 +1,31 @@ -// Flags: --report-uncaught-exception 'use strict'; // Test producing a report on uncaught exception. const common = require('../common'); const assert = require('assert'); +const childProcess = require('child_process'); const helper = require('../common/report'); const tmpdir = require('../common/tmpdir'); -const exception = Symbol('foobar'); +if (process.argv[2] === 'child') { + throw Symbol('foobar'); +} tmpdir.refresh(); -process.report.directory = tmpdir.path; - -process.on('uncaughtException', common.mustCall((err) => { - assert.strictEqual(err, exception); - const reports = helper.findReports(process.pid, tmpdir.path); +const child = childProcess.spawn(process.execPath, [ + '--report-uncaught-exception', + __filename, + 'child', +], { + cwd: tmpdir.path, +}); +child.on('exit', common.mustCall((code) => { + assert.strictEqual(code, 1); + const reports = helper.findReports(child.pid, tmpdir.path); assert.strictEqual(reports.length, 1); helper.validate(reports[0], [ ['header.event', 'Exception'], + ['header.trigger', 'Exception'], ['javascriptStack.message', 'Symbol(foobar)'], ]); })); - -throw exception; diff --git a/test/report/test-report-uncaught-exception.js b/test/report/test-report-uncaught-exception.js index 10dcccb090019ce..5809104165be9e5 100644 --- a/test/report/test-report-uncaught-exception.js +++ b/test/report/test-report-uncaught-exception.js @@ -1,20 +1,31 @@ -// Flags: --report-uncaught-exception 'use strict'; // Test producing a report on uncaught exception. const common = require('../common'); const assert = require('assert'); +const childProcess = require('child_process'); const helper = require('../common/report'); const tmpdir = require('../common/tmpdir'); -const error = new Error('test error'); -tmpdir.refresh(); -process.report.directory = tmpdir.path; +if (process.argv[2] === 'child') { + throw new Error('test error'); +} -process.on('uncaughtException', common.mustCall((err) => { - assert.strictEqual(err, error); - const reports = helper.findReports(process.pid, tmpdir.path); +tmpdir.refresh(); +const child = childProcess.spawn(process.execPath, [ + '--report-uncaught-exception', + __filename, + 'child', +], { + cwd: tmpdir.path, +}); +child.on('exit', common.mustCall((code) => { + assert.strictEqual(code, 1); + const reports = helper.findReports(child.pid, tmpdir.path); assert.strictEqual(reports.length, 1); - helper.validate(reports[0]); -})); -throw error; + helper.validate(reports[0], [ + ['header.event', 'Exception'], + ['header.trigger', 'Exception'], + ['javascriptStack.message', 'Error: test error'], + ]); +})); diff --git a/test/report/test-report-uv-handles.js b/test/report/test-report-uv-handles.js index daa2cc2c8f58022..eff3cbe841b6f75 100644 --- a/test/report/test-report-uv-handles.js +++ b/test/report/test-report-uv-handles.js @@ -260,6 +260,8 @@ if (process.argv[2] === 'child') { found_udp.push('connected'); } assert(handle.is_referenced); + assert.strictEqual(handle.writeQueueSize, 0); + assert.strictEqual(handle.writeQueueCount, 0); }, 2), }; diff --git a/test/sequential/test-child-process-execsync.js b/test/sequential/test-child-process-execsync.js index 5512eaeed7af35c..75acbc34a902bd9 100644 --- a/test/sequential/test-child-process-execsync.js +++ b/test/sequential/test-child-process-execsync.js @@ -30,7 +30,13 @@ const { execFileSync, execSync, spawnSync } = require('child_process'); const { getSystemErrorName } = require('util'); const TIMER = 200; -const SLEEP = 2000; +let SLEEP = 2000; +if (common.isWindows) { + // Some of the windows machines in the CI need more time to launch + // and receive output from child processes. + // https://github.com/nodejs/build/issues/3014 + SLEEP = 10000; +} const execOpts = { encoding: 'utf8', shell: true }; diff --git a/test/sequential/test-heap-prof.js b/test/sequential/test-heap-prof.js deleted file mode 100644 index 1dda8f367433e85..000000000000000 --- a/test/sequential/test-heap-prof.js +++ /dev/null @@ -1,375 +0,0 @@ -'use strict'; - -// This tests that --heap-prof, --heap-prof-dir and --heap-prof-name works. - -const common = require('../common'); - -const fixtures = require('../common/fixtures'); -common.skipIfInspectorDisabled(); - -const assert = require('assert'); -const fs = require('fs'); -const path = require('path'); -const { spawnSync } = require('child_process'); - -const tmpdir = require('../common/tmpdir'); - -function getHeapProfiles(dir) { - const list = fs.readdirSync(dir); - return list - .filter((file) => file.endsWith('.heapprofile')) - .map((file) => path.join(dir, file)); -} - -function findFirstFrameInNode(root, func) { - const first = root.children.find( - (child) => child.callFrame.functionName === func - ); - if (first) { - return first; - } - for (const child of root.children) { - const first = findFirstFrameInNode(child, func); - if (first) { - return first; - } - } - return undefined; -} - -function findFirstFrame(file, func) { - const data = fs.readFileSync(file, 'utf8'); - const profile = JSON.parse(data); - const first = findFirstFrameInNode(profile.head, func); - return { frame: first, roots: profile.head.children }; -} - -function verifyFrames(output, file, func) { - const { frame, roots } = findFirstFrame(file, func); - if (!frame) { - // Show native debug output and the profile for debugging. - console.log(output.stderr.toString()); - console.log(roots); - } - assert.notStrictEqual(frame, undefined); -} - -// We need to set --heap-prof-interval to a small enough value to make -// sure we can find our workload in the samples, so we need to set -// TEST_ALLOCATION > kHeapProfInterval. -const kHeapProfInterval = 128; -const TEST_ALLOCATION = kHeapProfInterval * 2; - -const env = { - ...process.env, - TEST_ALLOCATION, - NODE_DEBUG_NATIVE: 'INSPECTOR_PROFILER' -}; - -// Test --heap-prof without --heap-prof-interval. Here we just verify that -// we manage to generate a profile. -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof', - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - console.log(output); - } - assert.strictEqual(output.status, 0); - const profiles = getHeapProfiles(tmpdir.path); - assert.strictEqual(profiles.length, 1); -} - -// Outputs heap profile when event loop is drained. -// TODO(joyeecheung): share the fixutres with v8 coverage tests -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - console.log(output); - } - assert.strictEqual(output.status, 0); - const profiles = getHeapProfiles(tmpdir.path); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// Outputs heap profile when process.exit(55) exits process. -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation-exit.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 55) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 55); - const profiles = getHeapProfiles(tmpdir.path); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// Outputs heap profile when process.kill(process.pid, "SIGINT"); exits process. -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation-sigint.js'), - ], { - cwd: tmpdir.path, - env - }); - if (!common.isWindows) { - if (output.signal !== 'SIGINT') { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.signal, 'SIGINT'); - } - const profiles = getHeapProfiles(tmpdir.path); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// Outputs heap profile from worker when execArgv is set. -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - fixtures.path('workload', 'allocation-worker-argv.js'), - ], { - cwd: tmpdir.path, - env: { - ...process.env, - HEAP_PROF_INTERVAL: '128' - } - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - const profiles = getHeapProfiles(tmpdir.path); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// --heap-prof-name without --heap-prof -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof-name', - 'test.heapprofile', - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - const stderr = output.stderr.toString().trim(); - if (output.status !== 9) { - console.log(stderr); - } - assert.strictEqual(output.status, 9); - assert.strictEqual( - stderr, - `${process.execPath}: --heap-prof-name must be used with --heap-prof`); -} - -// --heap-prof-dir without --heap-prof -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof-dir', - 'prof', - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - const stderr = output.stderr.toString().trim(); - if (output.status !== 9) { - console.log(stderr); - } - assert.strictEqual(output.status, 9); - assert.strictEqual( - stderr, - `${process.execPath}: --heap-prof-dir must be used with --heap-prof`); -} - -// --heap-prof-interval without --heap-prof -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - const stderr = output.stderr.toString().trim(); - if (output.status !== 9) { - console.log(stderr); - } - assert.strictEqual(output.status, 9); - assert.strictEqual( - stderr, - `${process.execPath}: ` + - '--heap-prof-interval must be used with --heap-prof'); -} - -// --heap-prof-name -{ - tmpdir.refresh(); - const file = path.join(tmpdir.path, 'test.heapprofile'); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-name', - 'test.heapprofile', - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - const profiles = getHeapProfiles(tmpdir.path); - assert.deepStrictEqual(profiles, [file]); - verifyFrames(output, file, 'runAllocation'); -} - -// relative --heap-prof-dir -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-dir', - 'prof', - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - const dir = path.join(tmpdir.path, 'prof'); - assert(fs.existsSync(dir)); - const profiles = getHeapProfiles(dir); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// absolute --heap-prof-dir -{ - tmpdir.refresh(); - const dir = path.join(tmpdir.path, 'prof'); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-dir', - dir, - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - assert(fs.existsSync(dir)); - const profiles = getHeapProfiles(dir); - assert.strictEqual(profiles.length, 1); - verifyFrames(output, profiles[0], 'runAllocation'); -} - -// --heap-prof-dir and --heap-prof-name -{ - tmpdir.refresh(); - const dir = path.join(tmpdir.path, 'prof'); - const file = path.join(dir, 'test.heapprofile'); - const output = spawnSync(process.execPath, [ - '--heap-prof', - '--heap-prof-name', - 'test.heapprofile', - '--heap-prof-dir', - dir, - '--heap-prof-interval', - kHeapProfInterval, - fixtures.path('workload', 'allocation.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - assert(fs.existsSync(dir)); - const profiles = getHeapProfiles(dir); - assert.deepStrictEqual(profiles, [file]); - verifyFrames(output, file, 'runAllocation'); -} - -{ - tmpdir.refresh(); - const output = spawnSync(process.execPath, [ - '--heap-prof-interval', - kHeapProfInterval, - '--heap-prof-dir', - 'prof', - '--heap-prof', - fixtures.path('workload', 'allocation-worker.js'), - ], { - cwd: tmpdir.path, - env - }); - if (output.status !== 0) { - console.log(output.stderr.toString()); - } - assert.strictEqual(output.status, 0); - const dir = path.join(tmpdir.path, 'prof'); - assert(fs.existsSync(dir)); - const profiles = getHeapProfiles(dir); - assert.strictEqual(profiles.length, 2); - const profile1 = findFirstFrame(profiles[0], 'runAllocation'); - const profile2 = findFirstFrame(profiles[1], 'runAllocation'); - if (!profile1.frame && !profile2.frame) { - // Show native debug output and the profile for debugging. - console.log(output.stderr.toString()); - console.log('heap path: ', profiles[0]); - console.log(profile1.roots); - console.log('heap path: ', profiles[1]); - console.log(profile2.roots); - } - assert(profile1.frame || profile2.frame); -} diff --git a/test/sequential/test-inspector-open.js b/test/sequential/test-inspector-open.js index 847f0ab6926f670..93a2c74a0e41567 100644 --- a/test/sequential/test-inspector-open.js +++ b/test/sequential/test-inspector-open.js @@ -32,13 +32,12 @@ let firstPort; function firstOpen(msg) { assert.strictEqual(msg.cmd, 'url'); const port = url.parse(msg.url).port; - ping(port, (err) => { - assert.ifError(err); + ping(port, common.mustSucceed(() => { // Inspector is already open, and won't be reopened, so args don't matter. child.send({ cmd: 'open', args: [kOpenWhileOpen] }); child.once('message', common.mustCall(tryToOpenWhenOpen)); firstPort = port; - }); + })); } function tryToOpenWhenOpen(msg) { @@ -46,11 +45,10 @@ function tryToOpenWhenOpen(msg) { const port = url.parse(msg.url).port; // Reopen didn't do anything, the port was already open, and has not changed. assert.strictEqual(port, firstPort); - ping(port, (err) => { - assert.ifError(err); + ping(port, common.mustSucceed(() => { child.send({ cmd: 'close' }); child.once('message', common.mustCall(closeWhenOpen)); - }); + })); } function closeWhenOpen(msg) { @@ -73,10 +71,9 @@ function tryToCloseWhenClosed(msg) { function reopenAfterClose(msg) { assert.strictEqual(msg.cmd, 'url'); const port = url.parse(msg.url).port; - ping(port, (err) => { - assert.ifError(err); + ping(port, common.mustSucceed(() => { process.exit(); - }); + })); } function ping(port, callback) { diff --git a/test/wpt/status/WebCryptoAPI.json b/test/wpt/status/WebCryptoAPI.json index 14e1cd0e3e222ab..9f101f6cdd92c9a 100644 --- a/test/wpt/status/WebCryptoAPI.json +++ b/test/wpt/status/WebCryptoAPI.json @@ -1,3432 +1,6 @@ { - "derive_bits_keys/hkdf.https.any.js": { - "fail": { - "expected": [ - "short derivedKey, normal salt, SHA-384, with normal info with null length", - "short derivedKey, normal salt, SHA-384, with empty info with null length", - "short derivedKey, normal salt, SHA-512, with normal info with null length", - "short derivedKey, normal salt, SHA-512, with empty info with null length", - "short derivedKey, normal salt, SHA-1, with normal info with null length", - "short derivedKey, normal salt, SHA-1, with empty info with null length", - "short derivedKey, normal salt, SHA-256, with normal info with null length", - "short derivedKey, normal salt, SHA-256, with empty info with null length", - "short derivedKey, empty salt, SHA-384, with normal info with null length", - "short derivedKey, empty salt, SHA-384, with empty info with null length", - "short derivedKey, empty salt, SHA-512, with normal info with null length", - "short derivedKey, empty salt, SHA-512, with empty info with null length", - "short derivedKey, empty salt, SHA-1, with normal info with null length", - "short derivedKey, empty salt, SHA-1, with empty info with null length", - "short derivedKey, empty salt, SHA-256, with normal info with null length", - "short derivedKey, empty salt, SHA-256, with empty info with null length", - "long derivedKey, normal salt, SHA-384, with normal info with null length", - "long derivedKey, normal salt, SHA-384, with empty info with null length", - "long derivedKey, normal salt, SHA-512, with normal info with null length", - "long derivedKey, normal salt, SHA-512, with empty info with null length", - "long derivedKey, normal salt, SHA-1, with normal info with null length", - "long derivedKey, normal salt, SHA-1, with empty info with null length", - "long derivedKey, normal salt, SHA-256, with normal info with null length", - "long derivedKey, normal salt, SHA-256, with empty info with null length", - "long derivedKey, empty salt, SHA-384, with normal info with null length", - "long derivedKey, empty salt, SHA-384, with empty info with null length", - "long derivedKey, empty salt, SHA-512, with normal info with null length", - "long derivedKey, empty salt, SHA-512, with empty info with null length", - "long derivedKey, empty salt, SHA-1, with normal info with null length", - "long derivedKey, empty salt, SHA-1, with empty info with null length", - "long derivedKey, empty salt, SHA-256, with normal info with null length", - "long derivedKey, empty salt, SHA-256, with empty info with null length", - "empty derivedKey, normal salt, SHA-384, with normal info", - "empty derivedKey, normal salt, SHA-384, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with normal info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-384, with normal info with null length", - "empty derivedKey, normal salt, SHA-384, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-384, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-384, with empty info", - "empty derivedKey, normal salt, SHA-384, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-384, with empty info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-384, with empty info with null length", - "empty derivedKey, normal salt, SHA-384, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-384, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-512, with normal info", - "empty derivedKey, normal salt, SHA-512, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with normal info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-512, with normal info with null length", - "empty derivedKey, normal salt, SHA-512, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-512, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-512, with empty info", - "empty derivedKey, normal salt, SHA-512, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-512, with empty info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-512, with empty info with null length", - "empty derivedKey, normal salt, SHA-512, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-512, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-1, with normal info", - "empty derivedKey, normal salt, SHA-1, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with normal info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-1, with normal info with null length", - "empty derivedKey, normal salt, SHA-1, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-1, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-1, with empty info", - "empty derivedKey, normal salt, SHA-1, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-1, with empty info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-1, with empty info with null length", - "empty derivedKey, normal salt, SHA-1, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-1, with empty info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-256, with normal info", - "empty derivedKey, normal salt, SHA-256, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with normal info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-256, with normal info with null length", - "empty derivedKey, normal salt, SHA-256, with normal info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-256, with normal info with missing deriveBits usage", - "empty derivedKey, normal salt, SHA-256, with empty info", - "empty derivedKey, normal salt, SHA-256, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, normal salt, SHA-256, with empty info with missing deriveKey usage", - "empty derivedKey, normal salt, SHA-256, with empty info with null length", - "empty derivedKey, normal salt, SHA-256, with empty info with non-multiple of 8 length", - "empty derivedKey, normal salt, SHA-256, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-384, with normal info", - "empty derivedKey, empty salt, SHA-384, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with normal info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-384, with normal info with null length", - "empty derivedKey, empty salt, SHA-384, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-384, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-384, with empty info", - "empty derivedKey, empty salt, SHA-384, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-384, with empty info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-384, with empty info with null length", - "empty derivedKey, empty salt, SHA-384, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-384, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-512, with normal info", - "empty derivedKey, empty salt, SHA-512, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with normal info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-512, with normal info with null length", - "empty derivedKey, empty salt, SHA-512, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-512, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-512, with empty info", - "empty derivedKey, empty salt, SHA-512, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-512, with empty info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-512, with empty info with null length", - "empty derivedKey, empty salt, SHA-512, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-512, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-1, with normal info", - "empty derivedKey, empty salt, SHA-1, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with normal info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-1, with normal info with null length", - "empty derivedKey, empty salt, SHA-1, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-1, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-1, with empty info", - "empty derivedKey, empty salt, SHA-1, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-1, with empty info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-1, with empty info with null length", - "empty derivedKey, empty salt, SHA-1, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-1, with empty info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-256, with normal info", - "empty derivedKey, empty salt, SHA-256, with normal info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with normal info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-256, with normal info with null length", - "empty derivedKey, empty salt, SHA-256, with normal info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-256, with normal info with missing deriveBits usage", - "empty derivedKey, empty salt, SHA-256, with empty info", - "empty derivedKey, empty salt, SHA-256, with empty info with 0 length", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CBC length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-CTR length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-GCM length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 128 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 192 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: AES-KW length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty derivedKey, empty salt, SHA-256, with empty info with missing deriveKey usage", - "empty derivedKey, empty salt, SHA-256, with empty info with null length", - "empty derivedKey, empty salt, SHA-256, with empty info with non-multiple of 8 length", - "empty derivedKey, empty salt, SHA-256, with empty info with missing deriveBits usage" - ] - } - }, - "derive_bits_keys/pbkdf2.https.any.js": { - "fail": { - "expected": [ - "short password, short salt, SHA-384, with 1 iterations with null length", - "short password, short salt, SHA-384, with 1000 iterations with null length", - "short password, short salt, SHA-384, with 100000 iterations with null length", - "short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, short salt, SHA-384, with 0 iterations", - "short password, short salt, SHA-512, with 1 iterations with null length", - "short password, short salt, SHA-512, with 1000 iterations with null length", - "short password, short salt, SHA-512, with 100000 iterations with null length", - "short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, short salt, SHA-512, with 0 iterations", - "short password, short salt, SHA-1, with 1 iterations with null length", - "short password, short salt, SHA-1, with 1000 iterations with null length", - "short password, short salt, SHA-1, with 100000 iterations with null length", - "short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, short salt, SHA-1, with 0 iterations", - "short password, short salt, SHA-256, with 1 iterations with null length", - "short password, short salt, SHA-256, with 1000 iterations with null length", - "short password, short salt, SHA-256, with 100000 iterations with null length", - "short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, short salt, SHA-256, with 0 iterations", - "short password, long salt, SHA-384, with 1 iterations with null length", - "short password, long salt, SHA-384, with 1000 iterations with null length", - "short password, long salt, SHA-384, with 100000 iterations with null length", - "short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, long salt, SHA-384, with 0 iterations", - "short password, long salt, SHA-512, with 1 iterations with null length", - "short password, long salt, SHA-512, with 1000 iterations with null length", - "short password, long salt, SHA-512, with 100000 iterations with null length", - "short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, long salt, SHA-512, with 0 iterations", - "short password, long salt, SHA-1, with 1 iterations with null length", - "short password, long salt, SHA-1, with 1000 iterations with null length", - "short password, long salt, SHA-1, with 100000 iterations with null length", - "short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, long salt, SHA-1, with 0 iterations", - "short password, long salt, SHA-256, with 1 iterations with null length", - "short password, long salt, SHA-256, with 1000 iterations with null length", - "short password, long salt, SHA-256, with 100000 iterations with null length", - "short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, long salt, SHA-256, with 0 iterations", - "short password, empty salt, SHA-384, with 1 iterations with null length", - "short password, empty salt, SHA-384, with 1000 iterations with null length", - "short password, empty salt, SHA-384, with 100000 iterations with null length", - "short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, empty salt, SHA-384, with 0 iterations", - "short password, empty salt, SHA-512, with 1 iterations with null length", - "short password, empty salt, SHA-512, with 1000 iterations with null length", - "short password, empty salt, SHA-512, with 100000 iterations with null length", - "short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, empty salt, SHA-512, with 0 iterations", - "short password, empty salt, SHA-1, with 1 iterations with null length", - "short password, empty salt, SHA-1, with 1000 iterations with null length", - "short password, empty salt, SHA-1, with 100000 iterations with null length", - "short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, empty salt, SHA-1, with 0 iterations", - "short password, empty salt, SHA-256, with 1 iterations with null length", - "short password, empty salt, SHA-256, with 1000 iterations with null length", - "short password, empty salt, SHA-256, with 100000 iterations with null length", - "short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using short password, empty salt, SHA-256, with 0 iterations", - "long password, short salt, SHA-384, with 1 iterations with null length", - "long password, short salt, SHA-384, with 1000 iterations with null length", - "long password, short salt, SHA-384, with 100000 iterations with null length", - "long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, short salt, SHA-384, with 0 iterations", - "long password, short salt, SHA-512, with 1 iterations with null length", - "long password, short salt, SHA-512, with 1000 iterations with null length", - "long password, short salt, SHA-512, with 100000 iterations with null length", - "long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, short salt, SHA-512, with 0 iterations", - "long password, short salt, SHA-1, with 1 iterations with null length", - "long password, short salt, SHA-1, with 1000 iterations with null length", - "long password, short salt, SHA-1, with 100000 iterations with null length", - "long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, short salt, SHA-1, with 0 iterations", - "long password, short salt, SHA-256, with 1 iterations with null length", - "long password, short salt, SHA-256, with 1000 iterations with null length", - "long password, short salt, SHA-256, with 100000 iterations with null length", - "long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, short salt, SHA-256, with 0 iterations", - "long password, long salt, SHA-384, with 1 iterations with null length", - "long password, long salt, SHA-384, with 1000 iterations with null length", - "long password, long salt, SHA-384, with 100000 iterations with null length", - "long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, long salt, SHA-384, with 0 iterations", - "long password, long salt, SHA-512, with 1 iterations with null length", - "long password, long salt, SHA-512, with 1000 iterations with null length", - "long password, long salt, SHA-512, with 100000 iterations with null length", - "long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, long salt, SHA-512, with 0 iterations", - "long password, long salt, SHA-1, with 1 iterations with null length", - "long password, long salt, SHA-1, with 1000 iterations with null length", - "long password, long salt, SHA-1, with 100000 iterations with null length", - "long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, long salt, SHA-1, with 0 iterations", - "long password, long salt, SHA-256, with 1 iterations with null length", - "long password, long salt, SHA-256, with 1000 iterations with null length", - "long password, long salt, SHA-256, with 100000 iterations with null length", - "long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, long salt, SHA-256, with 0 iterations", - "long password, empty salt, SHA-384, with 1 iterations with null length", - "long password, empty salt, SHA-384, with 1000 iterations with null length", - "long password, empty salt, SHA-384, with 100000 iterations with null length", - "long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, empty salt, SHA-384, with 0 iterations", - "long password, empty salt, SHA-512, with 1 iterations with null length", - "long password, empty salt, SHA-512, with 1000 iterations with null length", - "long password, empty salt, SHA-512, with 100000 iterations with null length", - "long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, empty salt, SHA-512, with 0 iterations", - "long password, empty salt, SHA-1, with 1 iterations with null length", - "long password, empty salt, SHA-1, with 1000 iterations with null length", - "long password, empty salt, SHA-1, with 100000 iterations with null length", - "long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, empty salt, SHA-1, with 0 iterations", - "long password, empty salt, SHA-256, with 1 iterations with null length", - "long password, empty salt, SHA-256, with 1000 iterations with null length", - "long password, empty salt, SHA-256, with 100000 iterations with null length", - "long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using long password, empty salt, SHA-256, with 0 iterations", - "empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1 iterations with missing deriveKey usage", - "empty password, short salt, SHA-384, with 1 iterations with null length", - "empty password, short salt, SHA-384, with 1 iterations with 0 length", - "empty password, short salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 1 iterations with missing deriveBits usage", - "empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-384, with 1000 iterations with null length", - "empty password, short salt, SHA-384, with 1000 iterations with 0 length", - "empty password, short salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-384, with 100000 iterations with null length", - "empty password, short salt, SHA-384, with 100000 iterations with 0 length", - "empty password, short salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-384, with 100000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-384, with 0 iterations", - "empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1 iterations with missing deriveKey usage", - "empty password, short salt, SHA-512, with 1 iterations with null length", - "empty password, short salt, SHA-512, with 1 iterations with 0 length", - "empty password, short salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 1 iterations with missing deriveBits usage", - "empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-512, with 1000 iterations with null length", - "empty password, short salt, SHA-512, with 1000 iterations with 0 length", - "empty password, short salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-512, with 100000 iterations with null length", - "empty password, short salt, SHA-512, with 100000 iterations with 0 length", - "empty password, short salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-512, with 100000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-512, with 0 iterations", - "empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1 iterations with missing deriveKey usage", - "empty password, short salt, SHA-1, with 1 iterations with null length", - "empty password, short salt, SHA-1, with 1 iterations with 0 length", - "empty password, short salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 1 iterations with missing deriveBits usage", - "empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-1, with 1000 iterations with null length", - "empty password, short salt, SHA-1, with 1000 iterations with 0 length", - "empty password, short salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-1, with 100000 iterations with null length", - "empty password, short salt, SHA-1, with 100000 iterations with 0 length", - "empty password, short salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-1, with 100000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-1, with 0 iterations", - "empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1 iterations with missing deriveKey usage", - "empty password, short salt, SHA-256, with 1 iterations with null length", - "empty password, short salt, SHA-256, with 1 iterations with 0 length", - "empty password, short salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 1 iterations with missing deriveBits usage", - "empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-256, with 1000 iterations with null length", - "empty password, short salt, SHA-256, with 1000 iterations with 0 length", - "empty password, short salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "empty password, short salt, SHA-256, with 100000 iterations with null length", - "empty password, short salt, SHA-256, with 100000 iterations with 0 length", - "empty password, short salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, short salt, SHA-256, with 100000 iterations with missing deriveBits usage", - "empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, short salt, SHA-256, with 0 iterations", - "empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1 iterations with missing deriveKey usage", - "empty password, long salt, SHA-384, with 1 iterations with null length", - "empty password, long salt, SHA-384, with 1 iterations with 0 length", - "empty password, long salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 1 iterations with missing deriveBits usage", - "empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-384, with 1000 iterations with null length", - "empty password, long salt, SHA-384, with 1000 iterations with 0 length", - "empty password, long salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-384, with 100000 iterations with null length", - "empty password, long salt, SHA-384, with 100000 iterations with 0 length", - "empty password, long salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-384, with 100000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-384, with 0 iterations", - "empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1 iterations with missing deriveKey usage", - "empty password, long salt, SHA-512, with 1 iterations with null length", - "empty password, long salt, SHA-512, with 1 iterations with 0 length", - "empty password, long salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 1 iterations with missing deriveBits usage", - "empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-512, with 1000 iterations with null length", - "empty password, long salt, SHA-512, with 1000 iterations with 0 length", - "empty password, long salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-512, with 100000 iterations with null length", - "empty password, long salt, SHA-512, with 100000 iterations with 0 length", - "empty password, long salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-512, with 100000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-512, with 0 iterations", - "empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1 iterations with missing deriveKey usage", - "empty password, long salt, SHA-1, with 1 iterations with null length", - "empty password, long salt, SHA-1, with 1 iterations with 0 length", - "empty password, long salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 1 iterations with missing deriveBits usage", - "empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-1, with 1000 iterations with null length", - "empty password, long salt, SHA-1, with 1000 iterations with 0 length", - "empty password, long salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-1, with 100000 iterations with null length", - "empty password, long salt, SHA-1, with 100000 iterations with 0 length", - "empty password, long salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-1, with 100000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-1, with 0 iterations", - "empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1 iterations with missing deriveKey usage", - "empty password, long salt, SHA-256, with 1 iterations with null length", - "empty password, long salt, SHA-256, with 1 iterations with 0 length", - "empty password, long salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 1 iterations with missing deriveBits usage", - "empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-256, with 1000 iterations with null length", - "empty password, long salt, SHA-256, with 1000 iterations with 0 length", - "empty password, long salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "empty password, long salt, SHA-256, with 100000 iterations with null length", - "empty password, long salt, SHA-256, with 100000 iterations with 0 length", - "empty password, long salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, long salt, SHA-256, with 100000 iterations with missing deriveBits usage", - "empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, long salt, SHA-256, with 0 iterations", - "empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-384, with 1 iterations with null length", - "empty password, empty salt, SHA-384, with 1 iterations with 0 length", - "empty password, empty salt, SHA-384, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 1 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 1000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-384, with 1000 iterations with null length", - "empty password, empty salt, SHA-384, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-384, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 1000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 100000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-384, with 100000 iterations with null length", - "empty password, empty salt, SHA-384, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-384, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-384, with 100000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-384, with 0 iterations", - "empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-512, with 1 iterations with null length", - "empty password, empty salt, SHA-512, with 1 iterations with 0 length", - "empty password, empty salt, SHA-512, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 1 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 1000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-512, with 1000 iterations with null length", - "empty password, empty salt, SHA-512, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-512, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 1000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 100000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-512, with 100000 iterations with null length", - "empty password, empty salt, SHA-512, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-512, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-512, with 100000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-512, with 0 iterations", - "empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-1, with 1 iterations with null length", - "empty password, empty salt, SHA-1, with 1 iterations with 0 length", - "empty password, empty salt, SHA-1, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 1 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 1000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-1, with 1000 iterations with null length", - "empty password, empty salt, SHA-1, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-1, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 1000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 100000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-1, with 100000 iterations with null length", - "empty password, empty salt, SHA-1, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-1, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-1, with 100000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-1, with 0 iterations", - "empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-256, with 1 iterations with null length", - "empty password, empty salt, SHA-256, with 1 iterations with 0 length", - "empty password, empty salt, SHA-256, with 1 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 1 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 1000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-256, with 1000 iterations with null length", - "empty password, empty salt, SHA-256, with 1000 iterations with 0 length", - "empty password, empty salt, SHA-256, with 1000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 1000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 100000 iterations with missing deriveKey usage", - "empty password, empty salt, SHA-256, with 100000 iterations with null length", - "empty password, empty salt, SHA-256, with 100000 iterations with 0 length", - "empty password, empty salt, SHA-256, with 100000 iterations with non-multiple of 8 length", - "empty password, empty salt, SHA-256, with 100000 iterations with missing deriveBits usage", - "empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CBC length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-CTR length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-GCM length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 128 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 192 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: AES-KW length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-1 length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-256 length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-384 length: 256 using empty password, empty salt, SHA-256, with 0 iterations", - "Derived key of type name: HMAC hash: SHA-512 length: 256 using empty password, empty salt, SHA-256, with 0 iterations" - ] - } - }, - "encrypt_decrypt/aes_cbc.https.any.js": { - "fail": { - "expected": [ - "AES-CBC 128-bit key, zeroPadChar", - "AES-CBC 128-bit key, bigPadChar", - "AES-CBC 128-bit key, inconsistentPadChars", - "AES-CBC 192-bit key, zeroPadChar", - "AES-CBC 192-bit key, bigPadChar", - "AES-CBC 192-bit key, inconsistentPadChars", - "AES-CBC 256-bit key, zeroPadChar", - "AES-CBC 256-bit key, bigPadChar", - "AES-CBC 256-bit key, inconsistentPadChars" - ] - } - }, - "encrypt_decrypt/rsa_oaep.https.any.js": { - "fail": { - "expected": [ - "RSA-OAEP with SHA-1 and no label too long plaintext", - "RSA-OAEP with SHA-256 and no label too long plaintext", - "RSA-OAEP with SHA-384 and no label too long plaintext", - "RSA-OAEP with SHA-512 and no label too long plaintext", - "RSA-OAEP with SHA-1 and empty label too long plaintext", - "RSA-OAEP with SHA-256 and empty label too long plaintext", - "RSA-OAEP with SHA-384 and empty label too long plaintext", - "RSA-OAEP with SHA-512 and empty label too long plaintext", - "RSA-OAEP with SHA-1 and a label too long plaintext", - "RSA-OAEP with SHA-256 and a label too long plaintext", - "RSA-OAEP with SHA-384 and a label too long plaintext", - "RSA-OAEP with SHA-512 and a label too long plaintext" - ] - } - }, - "generateKey/failures_AES-CBC.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CBC}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])" - ] - } - }, - "generateKey/failures_AES-CTR.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-CTR}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])" - ] - } - }, - "generateKey/failures_AES-GCM.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, encrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, decrypt])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, false, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-GCM}, true, [encrypt, decrypt, wrapKey, unwrapKey, encrypt, decrypt, wrapKey, unwrapKey])" - ] - } - }, - "generateKey/failures_AES-KW.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 64, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 127, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 129, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 255, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 257, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, false, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, true, [wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, false, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, true, [unwrapKey, wrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, false, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, true, [unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, false, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, true, [])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, false, [wrapKey, unwrapKey, wrapKey, unwrapKey])", - "Bad algorithm property: generateKey({length: 512, name: AES-KW}, true, [wrapKey, unwrapKey, wrapKey, unwrapKey])" - ] - } - }, - "generateKey/failures_ECDH.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, false, [deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, true, [deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, false, [deriveBits, deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, true, [deriveBits, deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, false, [deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, true, [deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, false, [])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, true, [])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, false, [deriveKey, deriveBits, deriveKey, deriveBits, deriveKey, deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: P-512}, true, [deriveKey, deriveBits, deriveKey, deriveBits, deriveKey, deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, false, [deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, true, [deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, false, [deriveBits, deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, true, [deriveBits, deriveKey])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, false, [deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, true, [deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, false, [])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, true, [])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, false, [deriveKey, deriveBits, deriveKey, deriveBits, deriveKey, deriveBits])", - "Bad algorithm property: generateKey({name: ECDH, namedCurve: Curve25519}, true, [deriveKey, deriveBits, deriveKey, deriveBits, deriveKey, deriveBits])" - ] - } - }, - "generateKey/failures_ECDSA.https.any.js": { - "fail": { - "expected": [ - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, false, [sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, true, [sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, false, [verify, sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, true, [verify, sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, false, [])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, true, [])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, false, [sign, verify, sign, sign, verify])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: P-512}, true, [sign, verify, sign, sign, verify])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, false, [sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, true, [sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, false, [verify, sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, true, [verify, sign])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, false, [])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, true, [])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, false, [sign, verify, sign, sign, verify])", - "Bad algorithm property: generateKey({name: ECDSA, namedCurve: Curve25519}, true, [sign, verify, sign, sign, verify])" - ] - } + "algorithm-discards-context.https.window.js": { + "skip": "Not relevant in Node.js context" }, "historical.any.js": { "skip": "Not relevant in Node.js context" diff --git a/test/wpt/status/streams.json b/test/wpt/status/streams.json index e6fd391a6208851..6f9a806a33abf10 100644 --- a/test/wpt/status/streams.json +++ b/test/wpt/status/streams.json @@ -1,16 +1,89 @@ { + "piping/abort.any.js": { + "fail": { + "expected": [ + "pipeTo on a teed readable byte stream should only be aborted when both branches are aborted" + ] + } + }, "queuing-strategies-size-function-per-global.window.js": { "skip": "Browser-specific test" }, - "transferable/deserialize-error.window.js": { - "skip": "Browser-specific test" + "queuing-strategies.any.js": { + "fail": { + "expected": [ + "CountQueuingStrategy: size should not have a prototype property", + "ByteLengthQueuingStrategy: size should not have a prototype property", + "CountQueuingStrategy: size should not be a constructor", + "ByteLengthQueuingStrategy: size should not be a constructor" + ] + } + }, + "readable-byte-streams/general.any.js": { + "fail": { + "expected": [ + "ReadableStream with byte source: enqueue() discards auto-allocated BYOB request", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader, respond()", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader with 1 element Uint16Array, respond(1)", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader with 2 element Uint8Array, respond(3)", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader, respondWithNewView()", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader, enqueue()", + "ReadableStream with byte source: releaseLock() with pending read(view), read(view) on second reader, close(), respond(0)", + "ReadableStream with byte source: autoAllocateChunkSize, releaseLock() with pending read(), read() on second reader, respond()", + "ReadableStream with byte source: autoAllocateChunkSize, releaseLock() with pending read(), read() on second reader, enqueue()", + "ReadableStream with byte source: autoAllocateChunkSize, releaseLock() with pending read(), read(view) on second reader, respond()", + "ReadableStream with byte source: autoAllocateChunkSize, releaseLock() with pending read(), read(view) on second reader, enqueue()", + "ReadableStream with byte source: read(view) with 1 element Uint16Array, respond(1), releaseLock(), read(view) on second reader with 1 element Uint16Array, respond(1)", + "ReadableStream with byte source: read(view) with 1 element Uint16Array, respond(1), releaseLock(), read() on second reader, enqueue()" + ] + } }, - "readable-byte-streams/bad-buffers-and-views.any.js": { + "readable-byte-streams/tee.any.js": { "fail": { - "note": "TODO: implement detached ArrayBuffer support", "expected": [ - "ReadableStream with byte source: respondWithNewView() throws if the supplied view's buffer is zero-length (in the readable state)" + "ReadableStream teeing with byte source: should be able to read one branch to the end without affecting the other", + "ReadableStream teeing with byte source: chunks should be cloned for each branch", + "ReadableStream teeing with byte source: chunks for BYOB requests from branch 1 should be cloned to branch 2", + "ReadableStream teeing with byte source: errors in the source should propagate to both branches", + "ReadableStream teeing with byte source: closing the original should close the branches", + "ReadableStream teeing with byte source: erroring the original should immediately error the branches", + "ReadableStream teeing with byte source: erroring the original should error pending reads from BYOB reader", + "ReadableStream teeing with byte source: canceling branch1 should finish when branch2 reads until end of stream", + "ReadableStream teeing with byte source: canceling branch1 should finish when original stream errors", + "ReadableStream teeing with byte source: should not pull any chunks if no branches are reading", + "ReadableStream teeing with byte source: should only pull enough to fill the emptiest queue", + "ReadableStream teeing with byte source: should not pull when original is already errored", + "ReadableStream teeing with byte source: stops pulling when original stream errors while branch 1 is reading", + "ReadableStream teeing with byte source: stops pulling when original stream errors while branch 2 is reading", + "ReadableStream teeing with byte source: stops pulling when original stream errors while both branches are reading", + "ReadableStream teeing with byte source: canceling both branches in sequence with delay", + "ReadableStream teeing with byte source: failing to cancel when canceling both branches in sequence with delay", + "ReadableStream teeing with byte source: read from branch1 and branch2, cancel branch1, cancel branch2", + "ReadableStream teeing with byte source: read from branch1 and branch2, cancel branch2, cancel branch1", + "ReadableStream teeing with byte source: read from branch1 and branch2, cancel branch2, enqueue to branch1", + "ReadableStream teeing with byte source: read from branch1 and branch2, cancel branch1, respond to branch2", + "ReadableStream teeing with byte source: pull with BYOB reader, then pull with default reader", + "ReadableStream teeing with byte source: pull with default reader, then pull with BYOB reader", + "ReadableStream teeing with byte source: read from branch2, then read from branch1", + "ReadableStream teeing with byte source: read from branch1 with default reader, then close while branch2 has pending BYOB read", + "ReadableStream teeing with byte source: read from branch2 with default reader, then close while branch1 has pending BYOB read", + "ReadableStream teeing with byte source: close when both branches have pending BYOB reads", + "ReadableStream teeing with byte source: respond() and close() while both branches are pulling" ] } + }, + "readable-streams/cross-realm-crash.window.js": { + "skip": "Browser-specific test" + }, + "transferable/deserialize-error.window.js": { + "skip": "Browser-specific test" + }, + "transferable/transfer-with-messageport.window.js": { + "skip": "Browser-specific test" + }, + "writable-streams/aborting.any.js": { + "fail": { + "expected": ["WritableStreamDefaultController.signal"] + } } } diff --git a/tools/doc/package-lock.json b/tools/doc/package-lock.json index cfaa859e9878712..e3ea0455b4575b0 100644 --- a/tools/doc/package-lock.json +++ b/tools/doc/package-lock.json @@ -23,7 +23,7 @@ "to-vfile": "^7.2.3", "unified": "^10.1.2", "unist-util-select": "^4.0.1", - "unist-util-visit": "^4.1.0" + "unist-util-visit": "^4.1.1" }, "engines": { "node": ">=14.8.0" @@ -677,9 +677,9 @@ } }, "node_modules/mdast-util-to-hast": { - "version": "12.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.1.2.tgz", - "integrity": "sha512-Wn6Mcj04qU4qUXHnHpPATYMH2Jd8RlntdnloDfYLe1ErWRHo6+pvSl/DzHp6sCZ9cBSYlc8Sk8pbwb8xtUoQhQ==", + "version": "12.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.2.1.tgz", + "integrity": "sha512-dyindR2P7qOqXO1hQirZeGtVbiX7xlNQbw7gGaAwN4A1dh4+X8xU/JyYmRoyB8Fu1uPXzp7mlL5QwW7k+knvgA==", "dev": true, "dependencies": { "@types/hast": "^2.0.0", @@ -1642,14 +1642,14 @@ } }, "node_modules/unist-util-visit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz", + "integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==", "dev": true, "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.0.0" + "unist-util-visit-parents": "^5.1.1" }, "funding": { "type": "opencollective", @@ -1657,9 +1657,9 @@ } }, "node_modules/unist-util-visit-parents": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz", + "integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==", "dev": true, "dependencies": { "@types/unist": "^2.0.0", @@ -2223,9 +2223,9 @@ } }, "mdast-util-to-hast": { - "version": "12.1.2", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.1.2.tgz", - "integrity": "sha512-Wn6Mcj04qU4qUXHnHpPATYMH2Jd8RlntdnloDfYLe1ErWRHo6+pvSl/DzHp6sCZ9cBSYlc8Sk8pbwb8xtUoQhQ==", + "version": "12.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-12.2.1.tgz", + "integrity": "sha512-dyindR2P7qOqXO1hQirZeGtVbiX7xlNQbw7gGaAwN4A1dh4+X8xU/JyYmRoyB8Fu1uPXzp7mlL5QwW7k+knvgA==", "dev": true, "requires": { "@types/hast": "^2.0.0", @@ -2845,20 +2845,20 @@ } }, "unist-util-visit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz", + "integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==", "dev": true, "requires": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.0.0" + "unist-util-visit-parents": "^5.1.1" } }, "unist-util-visit-parents": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz", + "integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==", "dev": true, "requires": { "@types/unist": "^2.0.0", diff --git a/tools/doc/package.json b/tools/doc/package.json index cc4cec07dbc59d0..69c4d03726cd335 100644 --- a/tools/doc/package.json +++ b/tools/doc/package.json @@ -19,7 +19,7 @@ "to-vfile": "^7.2.3", "unified": "^10.1.2", "unist-util-select": "^4.0.1", - "unist-util-visit": "^4.1.0" + "unist-util-visit": "^4.1.1" }, "bin": { "node-doc-generator": "generate.js" diff --git a/tools/doc/type-parser.mjs b/tools/doc/type-parser.mjs index edeac7728504ccf..84a065416716484 100644 --- a/tools/doc/type-parser.mjs +++ b/tools/doc/type-parser.mjs @@ -206,6 +206,8 @@ const customTypesMap = { 'Timeout': 'timers.html#class-timeout', 'Timer': 'timers.html#timers', + 'TapStream': 'test.html#class-tapstream', + 'tls.SecureContext': 'tls.html#tlscreatesecurecontextoptions', 'tls.Server': 'tls.html#class-tlsserver', 'tls.TLSSocket': 'tls.html#class-tlstlssocket', diff --git a/tools/eslint-rules/avoid-prototype-pollution.js b/tools/eslint-rules/avoid-prototype-pollution.js index d59b62f95028cc1..f7e7fbe7da0287b 100644 --- a/tools/eslint-rules/avoid-prototype-pollution.js +++ b/tools/eslint-rules/avoid-prototype-pollution.js @@ -1,5 +1,7 @@ 'use strict'; +const CallExpression = (fnName) => `CallExpression[callee.name=${fnName}]`; + function checkProperties(context, node) { if ( node.type === 'CallExpression' && @@ -64,8 +66,10 @@ function checkPropertyDescriptor(context, node) { } function createUnsafeStringMethodReport(context, name, lookedUpProperty) { + const lastDotPosition = '$String.prototype.'.length; + const unsafePrimordialName = `StringPrototype${name.charAt(lastDotPosition).toUpperCase()}${name.slice(lastDotPosition + 1, -1)}`; return { - [`${CallExpression}[expression.callee.name=${JSON.stringify(name)}]`](node) { + [CallExpression(unsafePrimordialName)](node) { context.report({ node, message: `${name} looks up the ${lookedUpProperty} property on the first argument`, @@ -74,31 +78,46 @@ function createUnsafeStringMethodReport(context, name, lookedUpProperty) { }; } -const CallExpression = 'ExpressionStatement[expression.type="CallExpression"]'; +function createUnsafeStringMethodOnRegexReport(context, name, lookedUpProperty) { + const dotPosition = 'Symbol.'.length; + const safePrimordialName = `RegExpPrototypeSymbol${lookedUpProperty.charAt(dotPosition).toUpperCase()}${lookedUpProperty.slice(dotPosition + 1)}`; + const lastDotPosition = '$String.prototype.'.length; + const unsafePrimordialName = `StringPrototype${name.charAt(lastDotPosition).toUpperCase()}${name.slice(lastDotPosition + 1, -1)}`; + return { + [[ + `${CallExpression(unsafePrimordialName)}[arguments.1.type=Literal][arguments.1.regex]`, + `${CallExpression(unsafePrimordialName)}[arguments.1.type=NewExpression][arguments.1.callee.name=RegExp]`, + ].join(',')](node) { + context.report({ + node, + message: `${name} looks up the ${lookedUpProperty} property of the passed regex, use ${safePrimordialName} directly`, + }); + } + }; +} + module.exports = { meta: { hasSuggestions: true }, create(context) { return { - [`${CallExpression}[expression.callee.name=${/^(Object|Reflect)DefinePropert(ies|y)$/}]`]( - node - ) { - switch (node.expression.callee.name) { + [CallExpression(/^(Object|Reflect)DefinePropert(ies|y)$/)](node) { + switch (node.callee.name) { case 'ObjectDefineProperties': - checkProperties(context, node.expression.arguments[1]); + checkProperties(context, node.arguments[1]); break; case 'ReflectDefineProperty': case 'ObjectDefineProperty': - checkPropertyDescriptor(context, node.expression.arguments[2]); + checkPropertyDescriptor(context, node.arguments[2]); break; default: throw new Error('Unreachable'); } }, - [`${CallExpression}[expression.callee.name="ObjectCreate"][expression.arguments.length=2]`](node) { - checkProperties(context, node.expression.arguments[1]); + [`${CallExpression('ObjectCreate')}[arguments.length=2]`](node) { + checkProperties(context, node.arguments[1]); }, - [`${CallExpression}[expression.callee.name="RegExpPrototypeTest"]`](node) { + [CallExpression('RegExpPrototypeTest')](node) { context.report({ node, message: '%RegExp.prototype.test% looks up the "exec" property of `this` value', @@ -116,18 +135,18 @@ module.exports = { }], }); }, - [`${CallExpression}[expression.callee.name=${/^RegExpPrototypeSymbol(Match|MatchAll|Search)$/}]`](node) { + [CallExpression(/^RegExpPrototypeSymbol(Match|MatchAll|Search)$/)](node) { context.report({ node, - message: node.expression.callee.name + ' looks up the "exec" property of `this` value', + message: node.callee.name + ' looks up the "exec" property of `this` value', }); }, - ...createUnsafeStringMethodReport(context, 'StringPrototypeMatch', 'Symbol.match'), - ...createUnsafeStringMethodReport(context, 'StringPrototypeMatchAll', 'Symbol.matchAll'), - ...createUnsafeStringMethodReport(context, 'StringPrototypeReplace', 'Symbol.replace'), - ...createUnsafeStringMethodReport(context, 'StringPrototypeReplaceAll', 'Symbol.replace'), - ...createUnsafeStringMethodReport(context, 'StringPrototypeSearch', 'Symbol.search'), - ...createUnsafeStringMethodReport(context, 'StringPrototypeSplit', 'Symbol.split'), + ...createUnsafeStringMethodReport(context, '%String.prototype.match%', 'Symbol.match'), + ...createUnsafeStringMethodReport(context, '%String.prototype.matchAll%', 'Symbol.matchAll'), + ...createUnsafeStringMethodOnRegexReport(context, '%String.prototype.replace%', 'Symbol.replace'), + ...createUnsafeStringMethodOnRegexReport(context, '%String.prototype.replaceAll%', 'Symbol.replace'), + ...createUnsafeStringMethodReport(context, '%String.prototype.search%', 'Symbol.search'), + ...createUnsafeStringMethodOnRegexReport(context, '%String.prototype.split%', 'Symbol.split'), 'NewExpression[callee.name="Proxy"][arguments.1.type="ObjectExpression"]'(node) { for (const { key, value } of node.arguments[1].properties) { @@ -146,27 +165,27 @@ module.exports = { }); }, - [`${CallExpression}[expression.callee.name=PromisePrototypeCatch]`](node) { + [CallExpression('PromisePrototypeCatch')](node) { context.report({ node, - message: '%Promise.prototype.catch% look up the `then` property of ' + + message: '%Promise.prototype.catch% looks up the `then` property of ' + 'the `this` argument, use PromisePrototypeThen instead', }); }, - [`${CallExpression}[expression.callee.name=PromisePrototypeFinally]`](node) { + [CallExpression('PromisePrototypeFinally')](node) { context.report({ node, - message: '%Promise.prototype.finally% look up the `then` property of ' + + message: '%Promise.prototype.finally% looks up the `then` property of ' + 'the `this` argument, use SafePromisePrototypeFinally or ' + 'try/finally instead', }); }, - [`${CallExpression}[expression.callee.name=${/^Promise(All(Settled)?|Any|Race)/}]`](node) { + [CallExpression(/^Promise(All(Settled)?|Any|Race)/)](node) { context.report({ node, - message: `Use Safe${node.expression.callee.name} instead of ${node.expression.callee.name}`, + message: `Use Safe${node.callee.name} instead of ${node.callee.name}`, }); }, }; diff --git a/tools/install.py b/tools/install.py index ebf4b8afbf9dc65..4b01d67da54e1f3 100755 --- a/tools/install.py +++ b/tools/install.py @@ -169,14 +169,14 @@ def files(action): # install libnode.version.so so_name = 'libnode.' + re.sub(r'\.x$', '.so', variables.get('shlib_suffix')) - action([output_prefix + so_name], 'lib/' + so_name) + action([output_prefix + so_name], variables.get('libdir') + '/' + so_name) # create symlink of libnode.so -> libnode.version.so (C++ addons compat) link_path = abspath(install_path, 'lib/libnode.so') try_symlink(so_name, link_path) else: output_lib = 'libnode.' + variables.get('shlib_suffix') - action([output_prefix + output_lib], 'lib/' + output_lib) + action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib) action(['deps/v8/tools/gdbinit'], 'share/doc/node/') action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/') diff --git a/tools/lint-md/package-lock.json b/tools/lint-md/package-lock.json index d237e2ad208351c..a6afedbecf298ff 100644 --- a/tools/lint-md/package-lock.json +++ b/tools/lint-md/package-lock.json @@ -18,7 +18,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^22.0.2", "@rollup/plugin-node-resolve": "^13.3.0", - "rollup": "^2.77.2", + "rollup": "^2.79.0", "rollup-plugin-cleanup": "^3.2.1" } }, @@ -129,9 +129,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "node_modules/@types/node": { - "version": "18.6.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", - "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==", + "version": "18.7.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz", + "integrity": "sha512-6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==", "dev": true }, "node_modules/@types/resolve": { @@ -2212,9 +2212,9 @@ } }, "node_modules/rollup": { - "version": "2.77.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.2.tgz", - "integrity": "sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==", + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.0.tgz", + "integrity": "sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA==", "dev": true, "bin": { "rollup": "dist/bin/rollup" @@ -2497,13 +2497,13 @@ } }, "node_modules/unist-util-visit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz", + "integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.0.0" + "unist-util-visit-parents": "^5.1.1" }, "funding": { "type": "opencollective", @@ -2511,9 +2511,9 @@ } }, "node_modules/unist-util-visit-parents": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz", + "integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==", "dependencies": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" @@ -2744,9 +2744,9 @@ "integrity": "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==" }, "@types/node": { - "version": "18.6.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.4.tgz", - "integrity": "sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==", + "version": "18.7.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz", + "integrity": "sha512-6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA==", "dev": true }, "@types/resolve": { @@ -4202,9 +4202,9 @@ } }, "rollup": { - "version": "2.77.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.77.2.tgz", - "integrity": "sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==", + "version": "2.79.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.0.tgz", + "integrity": "sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA==", "dev": true, "requires": { "fsevents": "~2.3.2" @@ -4399,19 +4399,19 @@ } }, "unist-util-visit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.0.tgz", - "integrity": "sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.1.tgz", + "integrity": "sha512-n9KN3WV9k4h1DxYR1LoajgN93wpEi/7ZplVe02IoB4gH5ctI1AaF2670BLHQYbwj+pY83gFtyeySFiyMHJklrg==", "requires": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0", - "unist-util-visit-parents": "^5.0.0" + "unist-util-visit-parents": "^5.1.1" } }, "unist-util-visit-parents": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz", - "integrity": "sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.1.tgz", + "integrity": "sha512-gks4baapT/kNRaWxuGkl5BIhoanZo7sC/cUT/JToSRNL1dYoXRFl75d++NkjYk4TAu2uv2Px+l8guMajogeuiw==", "requires": { "@types/unist": "^2.0.0", "unist-util-is": "^5.0.0" diff --git a/tools/lint-md/package.json b/tools/lint-md/package.json index 17583b18acd00d8..ffba6771011a30f 100644 --- a/tools/lint-md/package.json +++ b/tools/lint-md/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@rollup/plugin-commonjs": "^22.0.2", "@rollup/plugin-node-resolve": "^13.3.0", - "rollup": "^2.77.2", + "rollup": "^2.79.0", "rollup-plugin-cleanup": "^3.2.1" } } diff --git a/tools/node_modules/eslint/bin/eslint.js b/tools/node_modules/eslint/bin/eslint.js index 0f76fc92e1f35de..7094ac77bc4bda9 100755 --- a/tools/node_modules/eslint/bin/eslint.js +++ b/tools/node_modules/eslint/bin/eslint.js @@ -9,9 +9,6 @@ "use strict"; -// to use V8's code cache to speed up instantiation time -require("v8-compile-cache"); - // must do this initialization *before* other requires in order to work if (process.argv.includes("--debug")) { require("debug").enable("eslint:*,-eslint:code-path,eslintrc:*"); @@ -137,6 +134,7 @@ ${message}`); // Otherwise, call the CLI. process.exitCode = await require("../lib/cli").execute( process.argv, - process.argv.includes("--stdin") ? await readStdin() : null + process.argv.includes("--stdin") ? await readStdin() : null, + true ); }()).catch(onFatalError); diff --git a/tools/node_modules/eslint/conf/globals.js b/tools/node_modules/eslint/conf/globals.js index 076ffb2af94229c..6018b7af15c2eae 100644 --- a/tools/node_modules/eslint/conf/globals.js +++ b/tools/node_modules/eslint/conf/globals.js @@ -124,6 +124,10 @@ const es2022 = { ...es2021 }; +const es2023 = { + ...es2022 +}; + //----------------------------------------------------------------------------- // Exports @@ -140,5 +144,6 @@ module.exports = { es2019, es2020, es2021, - es2022 + es2022, + es2023 }; diff --git a/tools/node_modules/eslint/lib/cli.js b/tools/node_modules/eslint/lib/cli.js index f09d143d2557851..2fca65c1908b048 100644 --- a/tools/node_modules/eslint/lib/cli.js +++ b/tools/node_modules/eslint/lib/cli.js @@ -6,7 +6,7 @@ "use strict"; /* - * The CLI object should *not* call process.exit() directly. It should only return + * NOTE: The CLI object should *not* call process.exit() directly. It should only return * exit codes. This allows other programs to use the CLI object and still control * when the program exits. */ @@ -19,9 +19,14 @@ const fs = require("fs"), path = require("path"), { promisify } = require("util"), { ESLint } = require("./eslint"), - CLIOptions = require("./options"), + { FlatESLint } = require("./eslint/flat-eslint"), + createCLIOptions = require("./options"), log = require("./shared/logging"), RuntimeInfo = require("./shared/runtime-info"); +const { Legacy: { naming } } = require("@eslint/eslintrc"); +const { findFlatConfigFile } = require("./eslint/flat-eslint"); +const { gitignoreToMinimatch } = require("@humanwhocodes/gitignore-to-minimatch"); +const { ModuleImporter } = require("@humanwhocodes/module-importer"); const debug = require("debug")("eslint:cli"); @@ -54,17 +59,20 @@ function quietFixPredicate(message) { } /** - * Translates the CLI options into the options expected by the CLIEngine. + * Translates the CLI options into the options expected by the ESLint constructor. * @param {ParsedCLIOptions} cliOptions The CLI options to translate. - * @returns {ESLintOptions} The options object for the CLIEngine. + * @param {"flat"|"eslintrc"} [configType="eslintrc"] The format of the + * config to generate. + * @returns {Promise} The options object for the ESLint constructor. * @private */ -function translateOptions({ +async function translateOptions({ cache, cacheFile, cacheLocation, cacheStrategy, config, + configLookup, env, errorOnUnmatchedPattern, eslintrc, @@ -85,19 +93,66 @@ function translateOptions({ resolvePluginsRelativeTo, rule, rulesdir -}) { - return { - allowInlineConfig: inlineConfig, - cache, - cacheLocation: cacheLocation || cacheFile, - cacheStrategy, - errorOnUnmatchedPattern, - extensions: ext, - fix: (fix || fixDryRun) && (quiet ? quietFixPredicate : true), - fixTypes: fixType, - ignore, - ignorePath, - overrideConfig: { +}, configType) { + + let overrideConfig, overrideConfigFile; + const importer = new ModuleImporter(); + + if (configType === "flat") { + overrideConfigFile = (typeof config === "string") ? config : !configLookup; + if (overrideConfigFile === false) { + overrideConfigFile = void 0; + } + + let globals = {}; + + if (global) { + globals = global.reduce((obj, name) => { + if (name.endsWith(":true")) { + obj[name.slice(0, -5)] = "writable"; + } else { + obj[name] = "readonly"; + } + return obj; + }, globals); + } + + overrideConfig = [{ + languageOptions: { + globals, + parserOptions: parserOptions || {} + }, + rules: rule ? rule : {} + }]; + + if (parser) { + overrideConfig[0].languageOptions.parser = await importer.import(parser); + } + + if (plugin) { + const plugins = {}; + + for (const pluginName of plugin) { + + const shortName = naming.getShorthandName(pluginName, "eslint-plugin"); + const longName = naming.normalizePackageName(pluginName, "eslint-plugin"); + + plugins[shortName] = await importer.import(longName); + } + + overrideConfig[0].plugins = plugins; + } + + if (ignorePattern) { + overrideConfig.push({ + ignores: ignorePattern.map(gitignoreToMinimatch) + }); + } + + } else { + overrideConfigFile = config; + + overrideConfig = { env: env && env.reduce((obj, name) => { obj[name] = true; return obj; @@ -115,13 +170,32 @@ function translateOptions({ parserOptions, plugins: plugin, rules: rule - }, - overrideConfigFile: config, - reportUnusedDisableDirectives: reportUnusedDisableDirectives ? "error" : void 0, - resolvePluginsRelativeTo, - rulePaths: rulesdir, - useEslintrc: eslintrc + }; + } + + const options = { + allowInlineConfig: inlineConfig, + cache, + cacheLocation: cacheLocation || cacheFile, + cacheStrategy, + errorOnUnmatchedPattern, + fix: (fix || fixDryRun) && (quiet ? quietFixPredicate : true), + fixTypes: fixType, + ignore, + ignorePath, + overrideConfig, + overrideConfigFile, + reportUnusedDisableDirectives: reportUnusedDisableDirectives ? "error" : void 0 }; + + if (configType !== "flat") { + options.resolvePluginsRelativeTo = resolvePluginsRelativeTo; + options.rulePaths = rulesdir; + options.useEslintrc = eslintrc; + options.extensions = ext; + } + + return options; } /** @@ -218,19 +292,34 @@ const cli = { * Executes the CLI based on an array of arguments that is passed in. * @param {string|Array|Object} args The arguments to process. * @param {string} [text] The text to lint (used for TTY). + * @param {boolean} [allowFlatConfig] Whether or not to allow flat config. * @returns {Promise} The exit code for the operation. */ - async execute(args, text) { + async execute(args, text, allowFlatConfig) { if (Array.isArray(args)) { debug("CLI args: %o", args.slice(2)); } + /* + * Before doing anything, we need to see if we are using a + * flat config file. If so, then we need to change the way command + * line args are parsed. This is temporary, and when we fully + * switch to flat config we can remove this logic. + */ + + const usingFlatConfig = allowFlatConfig && !!(await findFlatConfigFile(process.cwd())); + + debug("Using flat config?", usingFlatConfig); + + const CLIOptions = createCLIOptions(usingFlatConfig); + /** @type {ParsedCLIOptions} */ let options; try { options = CLIOptions.parse(args); } catch (error) { + debug("Error parsing CLI options:", error.message); log.error(error.message); return 2; } @@ -251,6 +340,7 @@ const cli = { log.info(RuntimeInfo.environment()); return 0; } catch (err) { + debug("Error retrieving environment info"); log.error(err.message); return 2; } @@ -266,7 +356,9 @@ const cli = { return 2; } - const engine = new ESLint(translateOptions(options)); + const engine = usingFlatConfig + ? new FlatESLint(await translateOptions(options, "flat")) + : new ESLint(await translateOptions(options)); const fileConfig = await engine.calculateConfigForFile(options.printConfig); @@ -289,7 +381,9 @@ const cli = { return 2; } - const engine = new ESLint(translateOptions(options)); + const ActiveESLint = usingFlatConfig ? FlatESLint : ESLint; + + const engine = new ActiveESLint(await translateOptions(options, usingFlatConfig ? "flat" : "eslintrc")); let results; if (useStdin) { @@ -303,14 +397,14 @@ const cli = { if (options.fix) { debug("Fix mode enabled - applying fixes"); - await ESLint.outputFixes(results); + await ActiveESLint.outputFixes(results); } let resultsToPrint = results; if (options.quiet) { debug("Quiet mode enabled - filtering out warnings"); - resultsToPrint = ESLint.getErrorResults(resultsToPrint); + resultsToPrint = ActiveESLint.getErrorResults(resultsToPrint); } if (await printResults(engine, resultsToPrint, options.format, options.outputFile)) { diff --git a/tools/node_modules/eslint/lib/config/flat-config-array.js b/tools/node_modules/eslint/lib/config/flat-config-array.js index becf1e10b095227..ad8986f516ef9c9 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-array.js +++ b/tools/node_modules/eslint/lib/config/flat-config-array.js @@ -139,31 +139,72 @@ class FlatConfigArray extends ConfigArray { [ConfigArraySymbol.finalizeConfig](config) { const { plugins, languageOptions, processor } = config; + let parserName, processorName; + let invalidParser = false, + invalidProcessor = false; // Check parser value - if (languageOptions && languageOptions.parser && typeof languageOptions.parser === "string") { - const { pluginName, objectName: parserName } = splitPluginIdentifier(languageOptions.parser); + if (languageOptions && languageOptions.parser) { + if (typeof languageOptions.parser === "string") { + const { pluginName, objectName: localParserName } = splitPluginIdentifier(languageOptions.parser); - if (!plugins || !plugins[pluginName] || !plugins[pluginName].parsers || !plugins[pluginName].parsers[parserName]) { - throw new TypeError(`Key "parser": Could not find "${parserName}" in plugin "${pluginName}".`); - } + parserName = languageOptions.parser; + + if (!plugins || !plugins[pluginName] || !plugins[pluginName].parsers || !plugins[pluginName].parsers[localParserName]) { + throw new TypeError(`Key "parser": Could not find "${localParserName}" in plugin "${pluginName}".`); + } - languageOptions.parser = plugins[pluginName].parsers[parserName]; + languageOptions.parser = plugins[pluginName].parsers[localParserName]; + } else { + invalidParser = true; + } } // Check processor value - if (processor && typeof processor === "string") { - const { pluginName, objectName: processorName } = splitPluginIdentifier(processor); + if (processor) { + if (typeof processor === "string") { + const { pluginName, objectName: localProcessorName } = splitPluginIdentifier(processor); - if (!plugins || !plugins[pluginName] || !plugins[pluginName].processors || !plugins[pluginName].processors[processorName]) { - throw new TypeError(`Key "processor": Could not find "${processorName}" in plugin "${pluginName}".`); - } + processorName = processor; + + if (!plugins || !plugins[pluginName] || !plugins[pluginName].processors || !plugins[pluginName].processors[localProcessorName]) { + throw new TypeError(`Key "processor": Could not find "${localProcessorName}" in plugin "${pluginName}".`); + } - config.processor = plugins[pluginName].processors[processorName]; + config.processor = plugins[pluginName].processors[localProcessorName]; + } else { + invalidProcessor = true; + } } ruleValidator.validate(config); + // apply special logic for serialization into JSON + /* eslint-disable object-shorthand -- shorthand would change "this" value */ + Object.defineProperty(config, "toJSON", { + value: function() { + + if (invalidParser) { + throw new Error("Caching is not supported when parser is an object."); + } + + if (invalidProcessor) { + throw new Error("Caching is not supported when processor is an object."); + } + + return { + ...this, + plugins: Object.keys(plugins), + languageOptions: { + ...languageOptions, + parser: parserName + }, + processor: processorName + }; + } + }); + /* eslint-enable object-shorthand -- ok to enable now */ + return config; } /* eslint-enable class-methods-use-this -- Desired as instance method */ diff --git a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js index bf5c32a646da516..442686e56bf939a 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js +++ b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js @@ -104,6 +104,8 @@ function isGlobPattern(pattern) { * false to not interpret glob patterns. * @param {string} args.cwd The current working directory to find from. * @param {FlatConfigArray} args.configs The configs for the current run. + * @param {boolean} args.errorOnUnmatchedPattern Determines if an unmatched pattern + * should throw an error. * @returns {Promise>} The fully resolved file paths. * @throws {AllFilesIgnoredError} If there are no results due to an ignore pattern. * @throws {NoFilesFoundError} If no files matched the given patterns. @@ -112,7 +114,8 @@ async function findFiles({ patterns, globInputPaths, cwd, - configs + configs, + errorOnUnmatchedPattern }) { const results = []; @@ -222,14 +225,16 @@ async function findFiles({ } // no files were found - throw new NoFilesFoundError(globbyPattern, globInputPaths); + if (errorOnUnmatchedPattern) { + throw new NoFilesFoundError(globbyPattern, globInputPaths); + } } /* eslint-enable no-unreachable-loop -- Go back to normal. */ } // there were patterns that didn't match anything, tell the user - if (missingPatterns.length) { + if (errorOnUnmatchedPattern && missingPatterns.length) { throw new NoFilesFoundError(missingPatterns[0], globInputPaths); } @@ -322,6 +327,7 @@ function createIgnoreResult(filePath, baseDir) { message } ], + suppressedMessages: [], errorCount: 0, warningCount: 1, fatalErrorCount: 0, @@ -378,7 +384,6 @@ function processOptions({ cacheStrategy = "metadata", cwd = process.cwd(), errorOnUnmatchedPattern = true, - extensions = null, // ← should be null by default because if it's an array then it suppresses RFC20 feature. fix = false, fixTypes = null, // ← should be null by default because if it's an array then it suppresses rules that don't have the `meta.type` property. globInputPaths = true, @@ -405,6 +410,9 @@ function processOptions({ if (unknownOptionKeys.includes("envs")) { errors.push("'envs' has been removed."); } + if (unknownOptionKeys.includes("extensions")) { + errors.push("'extensions' has been removed."); + } if (unknownOptionKeys.includes("resolvePluginsRelativeTo")) { errors.push("'resolvePluginsRelativeTo' has been removed."); } @@ -436,9 +444,6 @@ function processOptions({ if (typeof cache !== "boolean") { errors.push("'cache' must be a boolean."); } - if (cache) { - errors.push("'cache' option is not yet supported."); - } if (!isNonEmptyString(cacheLocation)) { errors.push("'cacheLocation' must be a non-empty string."); } @@ -454,9 +459,6 @@ function processOptions({ if (typeof errorOnUnmatchedPattern !== "boolean") { errors.push("'errorOnUnmatchedPattern' must be a boolean."); } - if (!isArrayOfNonEmptyString(extensions) && extensions !== null) { - errors.push("'extensions' must be an array of non-empty strings or null."); - } if (typeof fix !== "boolean" && typeof fix !== "function") { errors.push("'fix' must be a boolean or a function."); } @@ -510,7 +512,6 @@ function processOptions({ overrideConfig, cwd, errorOnUnmatchedPattern, - extensions, fix, fixTypes, globInputPaths, diff --git a/tools/node_modules/eslint/lib/eslint/flat-eslint.js b/tools/node_modules/eslint/lib/eslint/flat-eslint.js index 1867050e43f9b69..e436c464014ee88 100644 --- a/tools/node_modules/eslint/lib/eslint/flat-eslint.js +++ b/tools/node_modules/eslint/lib/eslint/flat-eslint.js @@ -30,6 +30,7 @@ const { const { fileExists, findFiles, + getCacheFile, isNonEmptyString, isArrayOfNonEmptyString, @@ -41,6 +42,7 @@ const { } = require("./eslint-helpers"); const { pathToFileURL } = require("url"); const { FlatConfigArray } = require("../config/flat-config-array"); +const LintResultCache = require("../cli-engine/lint-result-cache"); /* * This is necessary to allow overwriting writeFile for testing purposes. @@ -71,7 +73,6 @@ const { FlatConfigArray } = require("../config/flat-config-array"); * @property {"metadata" | "content"} [cacheStrategy] The strategy used to detect changed files. * @property {string} [cwd] The value to use for the current working directory. * @property {boolean} [errorOnUnmatchedPattern] If `false` then `ESLint#lintFiles()` doesn't throw even if no target files found. Defaults to `true`. - * @property {string[]} [extensions] An array of file extensions to check. * @property {boolean|Function} [fix] Execute in autofix mode. If a function, should return a boolean. * @property {string[]} [fixTypes] Array of rule types to apply fixes for. * @property {boolean} [globInputPaths] Set to false to skip glob resolution of input file paths to lint (default: true). If false, each input file paths is assumed to be a non-glob path to an existing file. @@ -319,8 +320,7 @@ async function calculateConfigArray(eslint, { configFile, ignore: shouldIgnore, ignorePath, - ignorePatterns, - extensions + ignorePatterns }) { // check for cached instance @@ -363,13 +363,6 @@ async function calculateConfigArray(eslint, { // add in any configured defaults configs.push(...slots.defaultConfigs); - // if there are any extensions, create configs for them for easier matching - if (extensions && extensions.length) { - configs.push({ - files: extensions.map(ext => `**/*${ext}`) - }); - } - let allIgnorePatterns = []; let ignoreFilePath; @@ -513,6 +506,7 @@ function verifyText({ const result = { filePath: filePath === "" ? filePath : path.resolve(filePath), messages, + suppressedMessages: linter.getSuppressedMessages(), ...calculateStatsPerFile(messages) }; @@ -606,9 +600,20 @@ class FlatESLint { configType: "flat" }); + const cacheFilePath = getCacheFile( + processedOptions.cacheLocation, + processedOptions.cwd + ); + + const lintResultCache = processedOptions.cache + ? new LintResultCache(cacheFilePath, processedOptions.cacheStrategy) + : null; + privateMembers.set(this, { options: processedOptions, linter, + cacheFilePath, + lintResultCache, defaultConfigs, defaultIgnores: () => false, configs: null @@ -676,11 +681,13 @@ class FlatESLint { results.forEach(result => { const filteredMessages = result.messages.filter(isErrorMessage); + const filteredSuppressedMessages = result.suppressedMessages.filter(isErrorMessage); if (filteredMessages.length > 0) { filtered.push({ ...result, messages: filteredMessages, + suppressedMessages: filteredSuppressedMessages, errorCount: filteredMessages.length, warningCount: 0, fixableErrorCount: result.fixableErrorCount, @@ -733,11 +740,12 @@ class FlatESLint { * calculated config for the given file. */ const config = configs.getConfig(filePath); + const allMessages = result.messages.concat(result.suppressedMessages); - for (const { ruleId } of result.messages) { + for (const { ruleId } of allMessages) { const rule = getRuleFromConfig(ruleId, config); - // ensure the rule exists exists + // ensure the rule exists if (!rule) { throw new TypeError(`Could not find the rule "${ruleId}".`); } @@ -773,8 +781,8 @@ class FlatESLint { fix, fixTypes, reportUnusedDisableDirectives, - extensions, - globInputPaths + globInputPaths, + errorOnUnmatchedPattern } = eslintOptions; const startTime = Date.now(); const usedConfigs = []; @@ -782,6 +790,8 @@ class FlatESLint { // Delete cache file; should this be done here? if (!cache && cacheFilePath) { + debug(`Deleting cache file at ${cacheFilePath}`); + try { await fs.unlink(cacheFilePath); } catch (error) { @@ -797,9 +807,9 @@ class FlatESLint { const filePaths = await findFiles({ patterns: typeof patterns === "string" ? [patterns] : patterns, cwd, - extensions, globInputPaths, - configs + configs, + errorOnUnmatchedPattern }); debug(`${filePaths.length} files found in: ${Date.now() - startTime}ms`); @@ -1112,6 +1122,7 @@ class FlatESLint { results.sort(compareResultsByFilePath); return formatter(results, { + cwd, get rulesMeta() { if (!rulesMeta) { rulesMeta = eslint.getRulesMetaForResults(results); @@ -1160,5 +1171,6 @@ class FlatESLint { //------------------------------------------------------------------------------ module.exports = { - FlatESLint + FlatESLint, + findFlatConfigFile }; diff --git a/tools/node_modules/eslint/lib/linter/config-comment-parser.js b/tools/node_modules/eslint/lib/linter/config-comment-parser.js index b88c5e6c8509298..643de8f2d312a7e 100644 --- a/tools/node_modules/eslint/lib/linter/config-comment-parser.js +++ b/tools/node_modules/eslint/lib/linter/config-comment-parser.js @@ -131,8 +131,7 @@ module.exports = class ConfigCommentParser { const items = {}; - // Collapse whitespace around commas - string.replace(/\s*,\s*/gu, ",").split(/,+/u).forEach(name => { + string.split(",").forEach(name => { const trimmedName = name.trim(); if (trimmedName) { diff --git a/tools/node_modules/eslint/lib/options.js b/tools/node_modules/eslint/lib/options.js index 6d06e3ddce1d500..0d95f2a635470aa 100644 --- a/tools/node_modules/eslint/lib/options.js +++ b/tools/node_modules/eslint/lib/options.js @@ -63,261 +63,309 @@ const optionator = require("optionator"); //------------------------------------------------------------------------------ // exports "parse(args)", "generateHelp()", and "generateHelpForOption(optionName)" -module.exports = optionator({ - prepend: "eslint [options] file.js [file.js] [dir]", - defaults: { - concatRepeatedArrays: true, - mergeRepeatedObjects: true - }, - options: [ - { - heading: "Basic configuration" - }, - { + +/** + * Creates the CLI options for ESLint. + * @param {boolean} usingFlatConfig Indicates if flat config is being used. + * @returns {Object} The opinionator instance. + */ +module.exports = function(usingFlatConfig) { + + let lookupFlag; + + if (usingFlatConfig) { + lookupFlag = { + option: "config-lookup", + type: "Boolean", + default: "true", + description: "Disable look up for eslint.config.js" + }; + } else { + lookupFlag = { option: "eslintrc", type: "Boolean", default: "true", description: "Disable use of configuration from .eslintrc.*" - }, - { - option: "config", - alias: "c", - type: "path::String", - description: "Use this configuration, overriding .eslintrc.* config options if present" - }, - { + }; + } + + let envFlag; + + if (!usingFlatConfig) { + envFlag = { option: "env", type: "[String]", description: "Specify environments" - }, - { + }; + } + + let extFlag; + + if (!usingFlatConfig) { + extFlag = { option: "ext", type: "[String]", description: "Specify JavaScript file extensions" - }, - { - option: "global", - type: "[String]", - description: "Define global variables" - }, - { - option: "parser", - type: "String", - description: "Specify the parser to be used" - }, - { - option: "parser-options", - type: "Object", - description: "Specify parser options" - }, - { + }; + } + + let resolvePluginsFlag; + + if (!usingFlatConfig) { + resolvePluginsFlag = { option: "resolve-plugins-relative-to", type: "path::String", description: "A folder where plugins should be resolved from, CWD by default" - }, - { - heading: "Specifying rules and plugins" - }, - { - option: "plugin", - type: "[String]", - description: "Specify plugins" - }, - { - option: "rule", - type: "Object", - description: "Specify rules" - }, - { + }; + } + + let rulesDirFlag; + + if (!usingFlatConfig) { + rulesDirFlag = { option: "rulesdir", type: "[path::String]", description: "Load additional rules from this directory. Deprecated: Use rules from plugins" - }, - { - heading: "Fixing problems" - }, - { - option: "fix", - type: "Boolean", - default: false, - description: "Automatically fix problems" - }, - { - option: "fix-dry-run", - type: "Boolean", - default: false, - description: "Automatically fix problems without saving the changes to the file system" - }, - { - option: "fix-type", - type: "Array", - description: "Specify the types of fixes to apply (directive, problem, suggestion, layout)" - }, - { - heading: "Ignoring files" - }, - { - option: "ignore-path", - type: "path::String", - description: "Specify path of ignore file" - }, - { - option: "ignore", - type: "Boolean", - default: "true", - description: "Disable use of ignore files and patterns" - }, - { - option: "ignore-pattern", - type: "[String]", - description: "Pattern of files to ignore (in addition to those in .eslintignore)", - concatRepeatedArrays: [true, { - oneValuePerFlag: true - }] - }, - { - heading: "Using stdin" - }, - { - option: "stdin", - type: "Boolean", - default: "false", - description: "Lint code provided on " - }, - { - option: "stdin-filename", - type: "String", - description: "Specify filename to process STDIN as" - }, - { - heading: "Handling warnings" - }, - { - option: "quiet", - type: "Boolean", - default: "false", - description: "Report errors only" - }, - { - option: "max-warnings", - type: "Int", - default: "-1", - description: "Number of warnings to trigger nonzero exit code" - }, - { - heading: "Output" - }, - { - option: "output-file", - alias: "o", - type: "path::String", - description: "Specify file to write report to" - }, - { - option: "format", - alias: "f", - type: "String", - default: "stylish", - description: "Use a specific output format" - }, - { - option: "color", - type: "Boolean", - alias: "no-color", - description: "Force enabling/disabling of color" - }, - { - heading: "Inline configuration comments" - }, - { - option: "inline-config", - type: "Boolean", - default: "true", - description: "Prevent comments from changing config or rules" - }, - { - option: "report-unused-disable-directives", - type: "Boolean", - default: void 0, - description: "Adds reported errors for unused eslint-disable directives" - }, - { - heading: "Caching" - }, - { - option: "cache", - type: "Boolean", - default: "false", - description: "Only check changed files" - }, - { - option: "cache-file", - type: "path::String", - default: ".eslintcache", - description: "Path to the cache file. Deprecated: use --cache-location" - }, - { - option: "cache-location", - type: "path::String", - description: "Path to the cache file or directory" - }, - { - option: "cache-strategy", - dependsOn: ["cache"], - type: "String", - default: "metadata", - enum: ["metadata", "content"], - description: "Strategy to use for detecting changed files in the cache" - }, - { - heading: "Miscellaneous" - }, - { - option: "init", - type: "Boolean", - default: "false", - description: "Run config initialization wizard" - }, - { - option: "env-info", - type: "Boolean", - default: "false", - description: "Output execution environment information" - }, - { - option: "error-on-unmatched-pattern", - type: "Boolean", - default: "true", - description: "Prevent errors when pattern is unmatched" - }, - { - option: "exit-on-fatal-error", - type: "Boolean", - default: "false", - description: "Exit with exit code 2 in case of fatal error" - }, - { - option: "debug", - type: "Boolean", - default: false, - description: "Output debugging information" - }, - { - option: "help", - alias: "h", - type: "Boolean", - description: "Show help" - }, - { - option: "version", - alias: "v", - type: "Boolean", - description: "Output the version number" - }, - { - option: "print-config", - type: "path::String", - description: "Print the configuration for the given file" - } - ] -}); + }; + } + + return optionator({ + prepend: "eslint [options] file.js [file.js] [dir]", + defaults: { + concatRepeatedArrays: true, + mergeRepeatedObjects: true + }, + options: [ + { + heading: "Basic configuration" + }, + lookupFlag, + { + option: "config", + alias: "c", + type: "path::String", + description: usingFlatConfig + ? "Use this configuration instead of eslint.config.js" + : "Use this configuration, overriding .eslintrc.* config options if present" + }, + envFlag, + extFlag, + { + option: "global", + type: "[String]", + description: "Define global variables" + }, + { + option: "parser", + type: "String", + description: "Specify the parser to be used" + }, + { + option: "parser-options", + type: "Object", + description: "Specify parser options" + }, + resolvePluginsFlag, + { + heading: "Specifying rules and plugins" + }, + { + option: "plugin", + type: "[String]", + description: "Specify plugins" + }, + { + option: "rule", + type: "Object", + description: "Specify rules" + }, + rulesDirFlag, + { + heading: "Fixing problems" + }, + { + option: "fix", + type: "Boolean", + default: false, + description: "Automatically fix problems" + }, + { + option: "fix-dry-run", + type: "Boolean", + default: false, + description: "Automatically fix problems without saving the changes to the file system" + }, + { + option: "fix-type", + type: "Array", + description: "Specify the types of fixes to apply (directive, problem, suggestion, layout)" + }, + { + heading: "Ignoring files" + }, + { + option: "ignore-path", + type: "path::String", + description: "Specify path of ignore file" + }, + { + option: "ignore", + type: "Boolean", + default: "true", + description: "Disable use of ignore files and patterns" + }, + { + option: "ignore-pattern", + type: "[String]", + description: "Pattern of files to ignore (in addition to those in .eslintignore)", + concatRepeatedArrays: [true, { + oneValuePerFlag: true + }] + }, + { + heading: "Using stdin" + }, + { + option: "stdin", + type: "Boolean", + default: "false", + description: "Lint code provided on " + }, + { + option: "stdin-filename", + type: "String", + description: "Specify filename to process STDIN as" + }, + { + heading: "Handling warnings" + }, + { + option: "quiet", + type: "Boolean", + default: "false", + description: "Report errors only" + }, + { + option: "max-warnings", + type: "Int", + default: "-1", + description: "Number of warnings to trigger nonzero exit code" + }, + { + heading: "Output" + }, + { + option: "output-file", + alias: "o", + type: "path::String", + description: "Specify file to write report to" + }, + { + option: "format", + alias: "f", + type: "String", + default: "stylish", + description: "Use a specific output format" + }, + { + option: "color", + type: "Boolean", + alias: "no-color", + description: "Force enabling/disabling of color" + }, + { + heading: "Inline configuration comments" + }, + { + option: "inline-config", + type: "Boolean", + default: "true", + description: "Prevent comments from changing config or rules" + }, + { + option: "report-unused-disable-directives", + type: "Boolean", + default: void 0, + description: "Adds reported errors for unused eslint-disable directives" + }, + { + heading: "Caching" + }, + { + option: "cache", + type: "Boolean", + default: "false", + description: "Only check changed files" + }, + { + option: "cache-file", + type: "path::String", + default: ".eslintcache", + description: "Path to the cache file. Deprecated: use --cache-location" + }, + { + option: "cache-location", + type: "path::String", + description: "Path to the cache file or directory" + }, + { + option: "cache-strategy", + dependsOn: ["cache"], + type: "String", + default: "metadata", + enum: ["metadata", "content"], + description: "Strategy to use for detecting changed files in the cache" + }, + { + heading: "Miscellaneous" + }, + { + option: "init", + type: "Boolean", + default: "false", + description: "Run config initialization wizard" + }, + { + option: "env-info", + type: "Boolean", + default: "false", + description: "Output execution environment information" + }, + { + option: "error-on-unmatched-pattern", + type: "Boolean", + default: "true", + description: "Prevent errors when pattern is unmatched" + }, + { + option: "exit-on-fatal-error", + type: "Boolean", + default: "false", + description: "Exit with exit code 2 in case of fatal error" + }, + { + option: "debug", + type: "Boolean", + default: false, + description: "Output debugging information" + }, + { + option: "help", + alias: "h", + type: "Boolean", + description: "Show help" + }, + { + option: "version", + alias: "v", + type: "Boolean", + description: "Output the version number" + }, + { + option: "print-config", + type: "path::String", + description: "Print the configuration for the given file" + } + ].filter(value => !!value) + }); +}; diff --git a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js index 19bd8e354f66f6b..f915924c78b6f99 100644 --- a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js @@ -4,7 +4,7 @@ */ "use strict"; -/* eslint-env mocha -- Mocha/Jest wrapper */ +/* globals describe, it -- Mocha globals */ //------------------------------------------------------------------------------ // Requirements 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 fe0e468916bac40..2af272bd25b358d 100644 --- a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js @@ -4,7 +4,7 @@ */ "use strict"; -/* eslint-env mocha -- Mocha wrapper */ +/* globals describe, it -- Mocha globals */ /* * This is a wrapper around mocha to allow for DRY unittests for eslint diff --git a/tools/node_modules/eslint/lib/rules/no-fallthrough.js b/tools/node_modules/eslint/lib/rules/no-fallthrough.js index b51faa87bae7dc7..536aa213f8a3f2c 100644 --- a/tools/node_modules/eslint/lib/rules/no-fallthrough.js +++ b/tools/node_modules/eslint/lib/rules/no-fallthrough.js @@ -76,6 +76,10 @@ module.exports = { commentPattern: { type: "string", default: "" + }, + allowEmptyCase: { + type: "boolean", + default: false } }, additionalProperties: false @@ -91,6 +95,7 @@ module.exports = { const options = context.options[0] || {}; let currentCodePath = null; const sourceCode = context.getSourceCode(); + const allowEmptyCase = options.allowEmptyCase || false; /* * We need to use leading comments of the next SwitchCase node because @@ -104,7 +109,6 @@ module.exports = { } else { fallthroughCommentPattern = DEFAULT_FALLTHROUGH_COMMENT; } - return { onCodePathStart(codePath) { currentCodePath = codePath; @@ -119,7 +123,8 @@ module.exports = { * Checks whether or not there is a fallthrough comment. * And reports the previous fallthrough node if that does not exist. */ - if (fallthroughCase && !hasFallthroughComment(fallthroughCase, node, context, fallthroughCommentPattern)) { + + if (fallthroughCase && (!hasFallthroughComment(fallthroughCase, node, context, fallthroughCommentPattern))) { context.report({ messageId: node.test ? "case" : "default", node @@ -137,7 +142,7 @@ module.exports = { * And allows empty cases and the last case. */ if (currentCodePath.currentSegments.some(isReachable) && - (node.consequent.length > 0 || hasBlankLinesBetween(node, nextToken)) && + (node.consequent.length > 0 || (!allowEmptyCase && hasBlankLinesBetween(node, nextToken))) && node.parent.cases[node.parent.cases.length - 1] !== node) { fallthroughCase = node; } diff --git a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js index 486a76ffdc9bc18..eb97f958c3c13ef 100644 --- a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js +++ b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js @@ -91,7 +91,7 @@ module.exports = { }; // ES6: report blocks without block-level bindings, or that's only child of another block - if (context.parserOptions.ecmaVersion >= 6) { + if (context.languageOptions.ecmaVersion >= 2015) { ruleDef = { BlockStatement(node) { if (isLoneBlock(node)) { diff --git a/tools/node_modules/eslint/lib/rules/no-warning-comments.js b/tools/node_modules/eslint/lib/rules/no-warning-comments.js index 4f867cbb707fe09..9754f50880b3725 100644 --- a/tools/node_modules/eslint/lib/rules/no-warning-comments.js +++ b/tools/node_modules/eslint/lib/rules/no-warning-comments.js @@ -37,6 +37,15 @@ module.exports = { }, location: { enum: ["start", "anywhere"] + }, + decoration: { + type: "array", + items: { + type: "string", + pattern: "^\\S$" + }, + minItems: 1, + uniqueItems: true } }, additionalProperties: false @@ -53,6 +62,7 @@ module.exports = { configuration = context.options[0] || {}, warningTerms = configuration.terms || ["todo", "fixme", "xxx"], location = configuration.location || "start", + decoration = [...configuration.decoration || []].join(""), selfConfigRegEx = /\bno-warning-comments\b/u; /** @@ -64,6 +74,7 @@ module.exports = { */ function convertToRegExp(term) { const escaped = escapeRegExp(term); + const escapedDecoration = escapeRegExp(decoration); /* * When matching at the start, ignore leading whitespace, and @@ -74,18 +85,23 @@ module.exports = { * e.g. terms ["TODO"] matches `//TODO something` * $ handles any terms at the end of a comment * e.g. terms ["TODO"] matches `// something TODO` - * \s* handles optional leading spaces (for "start" location only) - * e.g. terms ["TODO"] matches `// TODO something` * \b handles terms preceded/followed by word boundary * e.g. terms: ["!FIX", "FIX!"] matches `// FIX!something` or `// something!FIX` * terms: ["FIX"] matches `// FIX!` or `// !FIX`, but not `// fixed or affix` + * + * For location start: + * [\s]* handles optional leading spaces + * e.g. terms ["TODO"] matches `// TODO something` + * [\s\*]* (where "\*" is the escaped string of decoration) + * handles optional leading spaces or decoration characters (for "start" location only) + * e.g. terms ["TODO"] matches `/**** TODO something ... ` */ const wordBoundary = "\\b"; let prefix = ""; if (location === "start") { - prefix = "^\\s*"; + prefix = `^[\\s${escapedDecoration}]*`; } else if (/^\w/u.test(term)) { prefix = wordBoundary; } @@ -95,12 +111,15 @@ module.exports = { /* * For location "start", the typical regex is: - * /^\s*ESCAPED_TERM\b/iu. + * /^[\s]*ESCAPED_TERM\b/iu. + * Or if decoration characters are specified (e.g. "*"), then any of + * those characters may appear in any order at the start: + * /^[\s\*]*ESCAPED_TERM\b/iu. * * For location "anywhere" the typical regex is * /\bESCAPED_TERM\b/iu * - * If it starts or ends with non-word character, the prefix and suffix empty, respectively. + * If it starts or ends with non-word character, the prefix and suffix are empty, respectively. */ return new RegExp(`${prefix}${escaped}${suffix}`, flags); } diff --git a/tools/node_modules/eslint/lib/rules/object-shorthand.js b/tools/node_modules/eslint/lib/rules/object-shorthand.js index 8cd3978ca354c09..b755aea3f484275 100644 --- a/tools/node_modules/eslint/lib/rules/object-shorthand.js +++ b/tools/node_modules/eslint/lib/rules/object-shorthand.js @@ -78,6 +78,9 @@ module.exports = { ignoreConstructors: { type: "boolean" }, + methodsIgnorePattern: { + type: "string" + }, avoidQuotes: { type: "boolean" }, @@ -115,6 +118,9 @@ module.exports = { const PARAMS = context.options[1] || {}; const IGNORE_CONSTRUCTORS = PARAMS.ignoreConstructors; + const METHODS_IGNORE_PATTERN = PARAMS.methodsIgnorePattern + ? new RegExp(PARAMS.methodsIgnorePattern, "u") + : null; const AVOID_QUOTES = PARAMS.avoidQuotes; const AVOID_EXPLICIT_RETURN_ARROWS = !!PARAMS.avoidExplicitReturnArrows; const sourceCode = context.getSourceCode(); @@ -457,6 +463,15 @@ module.exports = { if (IGNORE_CONSTRUCTORS && node.key.type === "Identifier" && isConstructor(node.key.name)) { return; } + + if (METHODS_IGNORE_PATTERN) { + const propertyName = astUtils.getStaticPropertyName(node); + + if (propertyName !== null && METHODS_IGNORE_PATTERN.test(propertyName)) { + return; + } + } + if (AVOID_QUOTES && isStringLiteral(node.key)) { return; } 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 f919f5a26c86f8e..e6c4aaeca0a7398 100644 --- a/tools/node_modules/eslint/lib/rules/utils/ast-utils.js +++ b/tools/node_modules/eslint/lib/rules/utils/ast-utils.js @@ -1978,7 +1978,7 @@ module.exports = { if (comments.length) { const lastComment = comments[comments.length - 1]; - if (lastComment.range[0] > leftToken.range[0]) { + if (!leftToken || lastComment.range[0] > leftToken.range[0]) { leftToken = lastComment; } } @@ -1986,7 +1986,13 @@ module.exports = { leftToken = leftValue; } - if (leftToken.type === "Shebang") { + /* + * If a hashbang comment was passed as a token object from SourceCode, + * its type will be "Shebang" because of the way ESLint itself handles hashbangs. + * If a hashbang comment was passed in a string and then tokenized in this function, + * its type will be "Hashbang" because of the way Espree tokenizes hashbangs. + */ + if (leftToken.type === "Shebang" || leftToken.type === "Hashbang") { return false; } @@ -2007,7 +2013,7 @@ module.exports = { if (comments.length) { const firstComment = comments[0]; - if (firstComment.range[0] < rightToken.range[0]) { + if (!rightToken || firstComment.range[0] < rightToken.range[0]) { rightToken = firstComment; } } diff --git a/tools/node_modules/eslint/lib/shared/types.js b/tools/node_modules/eslint/lib/shared/types.js index 5d9a4e6cf2695ce..60f9f1d6afe9e29 100644 --- a/tools/node_modules/eslint/lib/shared/types.js +++ b/tools/node_modules/eslint/lib/shared/types.js @@ -21,7 +21,7 @@ module.exports = {}; /** * @typedef {Object} ParserOptions * @property {EcmaFeatures} [ecmaFeatures] The optional features. - * @property {3|5|6|7|8|9|10|11|12|13|2015|2016|2017|2018|2019|2020|2021|2022} [ecmaVersion] The ECMAScript version (or revision number). + * @property {3|5|6|7|8|9|10|11|12|13|14|2015|2016|2017|2018|2019|2020|2021|2022|2023} [ecmaVersion] The ECMAScript version (or revision number). * @property {"script"|"module"} [sourceType] The source code type. * @property {boolean} [allowReserved] Allowing the use of reserved words as identifiers in ES3. */ 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 6793cb26ea6d130..fe697b9362b9e44 100644 --- a/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/compat-data/package.json @@ -1,6 +1,6 @@ { "name": "@babel/compat-data", - "version": "7.18.8", + "version": "7.18.13", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "", diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js index 82d80b38b7ac910..990c68c6769106a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/config/config-descriptors.js @@ -17,6 +17,8 @@ function _gensync() { return data; } +var _functional = require("../gensync-utils/functional"); + var _files = require("./files"); var _item = require("./item"); @@ -55,27 +57,10 @@ function createCachedDescriptors(dirname, options, alias) { } function createUncachedDescriptors(dirname, options, alias) { - let plugins; - let presets; return { options: optionsWithResolvedBrowserslistConfigFile(options, dirname), - - *plugins() { - if (!plugins) { - plugins = yield* createPluginDescriptors(options.plugins || [], dirname, alias); - } - - return plugins; - }, - - *presets() { - if (!presets) { - presets = yield* createPresetDescriptors(options.presets || [], dirname, alias, !!options.passPerPreset); - } - - return presets; - } - + plugins: (0, _functional.once)(() => createPluginDescriptors(options.plugins || [], dirname, alias)), + presets: (0, _functional.once)(() => createPresetDescriptors(options.presets || [], dirname, alias, !!options.passPerPreset)) }; } diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/functional.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/functional.js new file mode 100644 index 000000000000000..73893e01a12bed8 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/gensync-utils/functional.js @@ -0,0 +1,35 @@ +"use strict"; + +Object.defineProperty(exports, "__esModule", { + value: true +}); +exports.once = once; + +var _async = require("./async"); + +function once(fn) { + let result; + let resultP; + return function* () { + if (result) return result; + if (!(yield* (0, _async.isAsync)())) return result = yield* fn(); + if (resultP) return yield* (0, _async.waitFor)(resultP); + let resolve, reject; + resultP = new Promise((res, rej) => { + resolve = res; + reject = rej; + }); + + try { + result = yield* fn(); + resultP = null; + resolve(result); + return result; + } catch (error) { + reject(error); + throw error; + } + }; +} + +0 && 0; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js index fcb635a0019a8dd..a98b8c7a679f7b9 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js @@ -247,7 +247,7 @@ var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -const version = "7.18.10"; +const version = "7.18.13"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; diff --git a/tools/node_modules/eslint/node_modules/@babel/core/package.json b/tools/node_modules/eslint/node_modules/@babel/core/package.json index 40f395a7e25e91e..9622693e570c002 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/core/package.json @@ -1,6 +1,6 @@ { "name": "@babel/core", - "version": "7.18.10", + "version": "7.18.13", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -48,14 +48,14 @@ "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", + "@babel/generator": "^7.18.13", "@babel/helper-compilation-targets": "^7.18.9", "@babel/helper-module-transforms": "^7.18.9", "@babel/helpers": "^7.18.9", - "@babel/parser": "^7.18.10", + "@babel/parser": "^7.18.13", "@babel/template": "^7.18.10", - "@babel/traverse": "^7.18.10", - "@babel/types": "^7.18.10", + "@babel/traverse": "^7.18.13", + "@babel/types": "^7.18.13", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js index 100dd3e7e723e8b..c7932f8a610aea1 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/generators/jsx.js @@ -68,9 +68,9 @@ function JSXText(node) { const raw = this.getPossibleRaw(node); if (raw !== undefined) { - this.token(raw); + this.token(raw, true); } else { - this.token(node.value); + this.token(node.value, true); } } 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 ee54a1a7c16a1f6..23ea8cacc74f6a0 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/generator/package.json @@ -1,6 +1,6 @@ { "name": "@babel/generator", - "version": "7.18.12", + "version": "7.18.13", "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.18.10", + "@babel/types": "^7.18.13", "@jridgewell/gen-mapping": "^0.3.2", "jsesc": "^2.5.1" }, "devDependencies": { "@babel/helper-fixtures": "^7.18.6", - "@babel/parser": "^7.18.11", + "@babel/parser": "^7.18.13", "@jridgewell/trace-mapping": "^0.3.8", "@types/jsesc": "^2.5.0", "charcodes": "^0.2.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/parser/lib/index.js index 3d841c89bf2832a..0b5d4b0f1321968 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 @@ -11699,7 +11699,7 @@ function getPluginOption(plugins, name, option) { } }); - if (plugin && Array.isArray(plugin)) { + if (plugin && Array.isArray(plugin) && plugin.length > 1) { return plugin[1][option]; } 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 0a13826d622bfd4..edb9ee939364138 100644 --- a/tools/node_modules/eslint/node_modules/@babel/parser/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/parser", - "version": "7.18.11", + "version": "7.18.13", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js index 9979356afc5e633..db93c51fe0e11a3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/evaluation.js @@ -267,6 +267,11 @@ function _evaluate(path, state) { state.confident = leftConfident && (!left || rightConfident); if (!state.confident) return; return left && right; + + case "??": + state.confident = leftConfident && (left != null || rightConfident); + if (!state.confident) return; + return left != null ? left : right; } } diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js index 36e4a4e324d9b66..b8e505e8b6b4c65 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js @@ -30,7 +30,7 @@ const hooks = [function (self, parent) { return true; } }, function (self, parent) { - if (parent.isIfStatement() && (self.key === "consequent" || self.key === "alternate") || self.key === "body" && (parent.isLoop() || parent.isArrowFunctionExpression())) { + if (parent.isIfStatement() && self.key === "consequent" || self.key === "body" && (parent.isLoop() || parent.isArrowFunctionExpression())) { self.replaceWith({ type: "BlockStatement", body: [] diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/visitors.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/visitors.js index e2d9e5b278f1c39..55e264664bb10b8 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/visitors.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/visitors.js @@ -159,7 +159,7 @@ function merge(visitors, states = [], wrapper) { visitorType = wrapWithStateOrWrapper(visitorType, state, wrapper); } - const nodeVisitor = rootVisitor[type] = rootVisitor[type] || {}; + const nodeVisitor = rootVisitor[type] || (rootVisitor[type] = {}); mergePair(nodeVisitor, visitorType); } } 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 b542467956a4315..17b859bb02154ea 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/package.json @@ -1,6 +1,6 @@ { "name": "@babel/traverse", - "version": "7.18.11", + "version": "7.18.13", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -17,13 +17,13 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.10", + "@babel/generator": "^7.18.13", "@babel/helper-environment-visitor": "^7.18.9", "@babel/helper-function-name": "^7.18.9", "@babel/helper-hoist-variables": "^7.18.6", "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.11", - "@babel/types": "^7.18.10", + "@babel/parser": "^7.18.13", + "@babel/types": "^7.18.13", "debug": "^4.1.0", "globals": "^11.1.0" }, diff --git a/tools/node_modules/eslint/node_modules/@babel/types/package.json b/tools/node_modules/eslint/node_modules/@babel/types/package.json index 818db7de6bee359..34a30e94514ea4a 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/types/package.json @@ -1,6 +1,6 @@ { "name": "@babel/types", - "version": "7.18.10", + "version": "7.18.13", "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", @@ -29,8 +29,8 @@ "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.18.10", - "@babel/parser": "^7.18.10", + "@babel/generator": "^7.18.13", + "@babel/parser": "^7.18.13", "chalk": "^4.1.0", "glob": "^7.2.0" }, diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json index 397ae855789b19a..97e3f1081776282 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/eslintrc", - "version": "1.3.0", + "version": "1.3.1", "description": "The legacy ESLintRC config file format for ESLint", "type": "module", "main": "./dist/eslintrc.cjs", @@ -38,6 +38,7 @@ "publish-release": "eslint-publish-release" }, "repository": "eslint/eslintrc", + "funding": "https://opencollective.com/eslint", "keywords": [ "ESLint", "ESLintRC", @@ -67,7 +68,7 @@ "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", + "espree": "^9.4.0", "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/LICENSE b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/LICENSE new file mode 100644 index 000000000000000..261eeb9e9f8b2b4 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs new file mode 100644 index 000000000000000..779e0cf6f5cf613 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs @@ -0,0 +1,22 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +var module$1 = require('module'); +var url = require('url'); +var path = require('path'); + +/** + * @fileoverview Universal module importer + */ + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +const __filename$1 = url.fileURLToPath((typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('module-importer.cjs', document.baseURI).href))); +const __dirname$1 = path.dirname(__filename$1); +const require$1 = module$1.createRequire(__dirname$1 + "/"); +const { ModuleImporter } = require$1("./module-importer.cjs"); + +exports.ModuleImporter = ModuleImporter; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts new file mode 100644 index 000000000000000..a1acbb6d38689de --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts @@ -0,0 +1,27 @@ +export class ModuleImporter { + /** + * Creates a new instance. + * @param {string} [cwd] The current working directory to resolve from. + */ + constructor(cwd?: string); + /** + * The base directory from which paths should be resolved. + * @type {string} + */ + cwd: string; + /** + * Resolves a module based on its name or location. + * @param {string} specifier Either an npm package name or + * relative file path. + * @returns {string|undefined} The location of the import. + * @throws {Error} If specifier cannot be located. + */ + resolve(specifier: string): string | undefined; + /** + * Imports a module based on its name or location. + * @param {string} specifier Either an npm package name or + * relative file path. + * @returns {Promise} The module's object. + */ + import(specifier: string): Promise; +} diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.js new file mode 100644 index 000000000000000..26e052da1f2b813 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/dist/module-importer.js @@ -0,0 +1,18 @@ +import { createRequire } from 'module'; +import { fileURLToPath } from 'url'; +import { dirname } from 'path'; + +/** + * @fileoverview Universal module importer + */ + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); +const require = createRequire(__dirname + "/"); +const { ModuleImporter } = require("./module-importer.cjs"); + +export { ModuleImporter }; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/package.json b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/package.json new file mode 100644 index 000000000000000..8ece071e94f384b --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/package.json @@ -0,0 +1,65 @@ +{ + "name": "@humanwhocodes/module-importer", + "version": "1.0.1", + "description": "Universal module importer for Node.js", + "main": "src/module-importer.cjs", + "module": "src/module-importer.js", + "type": "module", + "types": "dist/module-importer.d.ts", + "exports": { + "require": "./src/module-importer.cjs", + "import": "./src/module-importer.js" + }, + "files": [ + "dist", + "src" + ], + "publishConfig": { + "access": "public" + }, + "gitHooks": { + "pre-commit": "lint-staged" + }, + "lint-staged": { + "*.js": [ + "eslint --fix" + ] + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + }, + "scripts": { + "build": "rollup -c && tsc", + "prepare": "npm run build", + "lint": "eslint src/ tests/", + "test:unit": "c8 mocha tests/module-importer.test.js", + "test:build": "node tests/pkg.test.cjs && node tests/pkg.test.mjs", + "test": "npm run test:unit && npm run test:build" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/humanwhocodes/module-importer.git" + }, + "keywords": [ + "modules", + "esm", + "commonjs" + ], + "engines": { + "node": ">=12.22" + }, + "author": "Nicholas C. Zaks", + "license": "Apache-2.0", + "devDependencies": { + "@types/node": "^18.7.6", + "c8": "7.12.0", + "chai": "4.3.6", + "eslint": "8.22.0", + "lint-staged": "13.0.3", + "mocha": "9.2.2", + "rollup": "2.78.0", + "typescript": "4.7.4", + "yorkie": "2.0.0" + } +} diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs new file mode 100644 index 000000000000000..3efb095e11af65a --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs @@ -0,0 +1,81 @@ +/** + * @fileoverview Universal module importer + */ + +//----------------------------------------------------------------------------- +// Imports +//----------------------------------------------------------------------------- + +const { createRequire } = require("module"); +const { pathToFileURL } = require("url"); + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +const SLASHES = new Set(["/", "\\"]); + +/** + * Normalizes directories to have a trailing slash. + * Resolve is pretty finicky -- if the directory name doesn't have + * a trailing slash then it tries to look in the parent directory. + * i.e., if the directory is "/usr/nzakas/foo" it will start the + * search in /usr/nzakas. However, if the directory is "/user/nzakas/foo/", + * then it will start the search in /user/nzakas/foo. + * @param {string} directory The directory to check. + * @returns {string} The normalized directory. + */ +function normalizeDirectory(directory) { + if (!SLASHES.has(directory[directory.length-1])) { + return directory + "/"; + } + + return directory; +} + +//----------------------------------------------------------------------------- +// Exports +//----------------------------------------------------------------------------- + +/** + * Class for importing both CommonJS and ESM modules in Node.js. + */ +exports.ModuleImporter = class ModuleImporter { + + /** + * Creates a new instance. + * @param {string} [cwd] The current working directory to resolve from. + */ + constructor(cwd = process.cwd()) { + + /** + * The base directory from which paths should be resolved. + * @type {string} + */ + this.cwd = normalizeDirectory(cwd); + } + + /** + * Resolves a module based on its name or location. + * @param {string} specifier Either an npm package name or + * relative file path. + * @returns {string|undefined} The location of the import. + * @throws {Error} If specifier cannot be located. + */ + resolve(specifier) { + const require = createRequire(this.cwd); + return require.resolve(specifier); + } + + /** + * Imports a module based on its name or location. + * @param {string} specifier Either an npm package name or + * relative file path. + * @returns {Promise} The module's object. + */ + import(specifier) { + const location = this.resolve(specifier); + return import(pathToFileURL(location).href); + } + +} diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.js new file mode 100644 index 000000000000000..f5464e18deccb1c --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/module-importer/src/module-importer.js @@ -0,0 +1,22 @@ +/** + * @fileoverview Universal module importer + */ + +//----------------------------------------------------------------------------- +// Imports +//----------------------------------------------------------------------------- + +import { createRequire } from "module"; +import { fileURLToPath } from "url"; +import { dirname } from "path"; + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); +const require = createRequire(__dirname + "/"); +const { ModuleImporter } = require("./module-importer.cjs"); + +export { ModuleImporter }; diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs index 38ad09ab19da814..594471ce30fabf0 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs @@ -342,9 +342,6 @@ let decodedMap; let encodedMap; class TraceMap { constructor(map, mapUrl) { - this._decodedMemo = memoizedState(); - this._bySources = undefined; - this._bySourceMemos = undefined; const isString = typeof map === 'string'; if (!isString && map._decodedMemo) return map; @@ -367,6 +364,9 @@ class TraceMap { this._encoded = undefined; this._decoded = maybeSort(mappings, isString); } + this._decodedMemo = memoizedState(); + this._bySources = undefined; + this._bySourceMemos = undefined; } } (() => { @@ -467,35 +467,28 @@ class TraceMap { return index === -1 ? null : sourcesContent[index]; }; presortedDecodedMap = (map, mapUrl) => { - const clone = Object.assign({}, map); - clone.mappings = []; - const tracer = new TraceMap(clone, mapUrl); + const tracer = new TraceMap(clone(map, []), mapUrl); tracer._decoded = map.mappings; return tracer; }; decodedMap = (map) => { - return { - version: 3, - file: map.file, - names: map.names, - sourceRoot: map.sourceRoot, - sources: map.sources, - sourcesContent: map.sourcesContent, - mappings: decodedMappings(map), - }; + return clone(map, decodedMappings(map)); }; encodedMap = (map) => { - return { - version: 3, - file: map.file, - names: map.names, - sourceRoot: map.sourceRoot, - sources: map.sources, - sourcesContent: map.sourcesContent, - mappings: encodedMappings(map), - }; + return clone(map, encodedMappings(map)); }; })(); +function clone(map, mappings) { + return { + version: map.version, + file: map.file, + names: map.names, + sourceRoot: map.sourceRoot, + sources: map.sources, + sourcesContent: map.sourcesContent, + mappings, + }; +} function OMapping(source, line, column, name) { return { source, line, column, name }; } diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js index 1b30d8fbac83387..d0741e03b610b93 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js @@ -349,9 +349,6 @@ exports.encodedMap = void 0; class TraceMap { constructor(map, mapUrl) { - this._decodedMemo = memoizedState(); - this._bySources = undefined; - this._bySourceMemos = undefined; const isString = typeof map === 'string'; if (!isString && map._decodedMemo) return map; @@ -374,6 +371,9 @@ this._encoded = undefined; this._decoded = maybeSort(mappings, isString); } + this._decodedMemo = memoizedState(); + this._bySources = undefined; + this._bySourceMemos = undefined; } } (() => { @@ -474,35 +474,28 @@ return index === -1 ? null : sourcesContent[index]; }; exports.presortedDecodedMap = (map, mapUrl) => { - const clone = Object.assign({}, map); - clone.mappings = []; - const tracer = new TraceMap(clone, mapUrl); + const tracer = new TraceMap(clone(map, []), mapUrl); tracer._decoded = map.mappings; return tracer; }; exports.decodedMap = (map) => { - return { - version: 3, - file: map.file, - names: map.names, - sourceRoot: map.sourceRoot, - sources: map.sources, - sourcesContent: map.sourcesContent, - mappings: exports.decodedMappings(map), - }; + return clone(map, exports.decodedMappings(map)); }; exports.encodedMap = (map) => { - return { - version: 3, - file: map.file, - names: map.names, - sourceRoot: map.sourceRoot, - sources: map.sources, - sourcesContent: map.sourcesContent, - mappings: exports.encodedMappings(map), - }; + return clone(map, exports.encodedMappings(map)); }; })(); + function clone(map, mappings) { + return { + version: map.version, + file: map.file, + names: map.names, + sourceRoot: map.sourceRoot, + sources: map.sources, + sourcesContent: map.sourcesContent, + mappings, + }; + } function OMapping(source, line, column, name) { return { source, line, column, name }; } diff --git a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json index b8429300b191f0f..c84a200894e716b 100644 --- a/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json +++ b/tools/node_modules/eslint/node_modules/@jridgewell/trace-mapping/package.json @@ -1,6 +1,6 @@ { "name": "@jridgewell/trace-mapping", - "version": "0.3.14", + "version": "0.3.15", "description": "Trace the original position through a source map", "keywords": [ "source", @@ -10,8 +10,7 @@ "module": "dist/trace-mapping.mjs", "typings": "dist/types/trace-mapping.d.ts", "files": [ - "dist", - "src" + "dist" ], "exports": { ".": [ 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 9cef37d18fd7d47..b0284acce56d164 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.022212,F:0.059232,A:0.00556471,B:0.466452,zB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","zB","J","D","E","F","A","B","","",""],E:"IE",F:{zB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.003702,K:0.004267,L:0.004268,G:0.007404,M:0.003702,N:0.007404,O:0.022212,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.003702,U:0.003702,V:0.003801,W:0.007404,X:0.004318,Y:0.003702,Z:0.004118,c:0.003939,d:0.007404,e:0.004118,f:0.003939,g:0.003801,h:0.007404,i:0.007404,j:0.007404,k:0.011106,l:0.014808,a:0.066636,m:0.12957,H:3.72421},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,a:1651190400,m:1653955200,H:1655942400},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.008928,"1":0.004471,"2":0.009284,"3":0.004707,"4":0.009076,"5":0.007404,"6":0.004783,"7":0.004271,"8":0.004783,"9":0.00487,"0B":0.004118,mB:0.004271,I:0.01851,n:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007404,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,o:0.004443,p:0.004283,q:0.008322,r:0.013698,s:0.004161,t:0.008786,u:0.004118,v:0.004317,w:0.004393,x:0.004418,y:0.008834,z:0.008322,AB:0.005029,BB:0.0047,CB:0.09255,DB:0.007404,EB:0.003867,FB:0.004525,GB:0.004293,HB:0.003702,IB:0.004538,JB:0.008282,KB:0.011601,LB:0.059232,MB:0.011601,NB:0.007602,OB:0.003801,PB:0.007404,QB:0.011601,RB:0.003939,nB:0.003702,SB:0.003801,oB:0.004356,TB:0.004425,UB:0.008322,b:0.00415,VB:0.004267,WB:0.003801,XB:0.004267,YB:0.007404,ZB:0.00415,aB:0.004293,bB:0.004425,cB:0.003702,dB:0.00415,eB:0.00415,fB:0.004318,gB:0.004356,hB:0.003702,iB:0.03702,P:0.003702,Q:0.003702,R:0.014808,pB:0.003702,S:0.003702,T:0.003702,U:0.004268,V:0.003801,W:0.007404,X:0.011106,Y:0.007404,Z:0.007404,c:0.085146,d:0.003801,e:0.003702,f:0.022212,g:0.011106,h:0.007404,i:0.007404,j:0.007404,k:0.022212,l:0.029616,a:0.12957,m:2.01019,H:0.248034,qB:0,rB:0,"1B":0.008786,"2B":0.00487},B:"moz",C:["0B","mB","1B","2B","I","n","J","D","E","F","A","B","C","K","L","G","M","N","O","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","nB","SB","oB","TB","UB","b","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","pB","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","H","qB","rB",""],E:"Firefox",F:{"0":1405987200,"1":1409616000,"2":1413244800,"3":1417392000,"4":1421107200,"5":1424736000,"6":1428278400,"7":1431475200,"8":1435881600,"9":1439251200,"0B":1161648000,mB:1213660800,"1B":1246320000,"2B":1264032000,I:1300752000,n:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,o:1357603200,p:1361232000,q:1364860800,r:1368489600,s:1372118400,t:1375747200,u:1379376000,v:1386633600,w:1391472000,x:1395100800,y:1398729600,z:1402358400,AB:1442880000,BB:1446508800,CB:1450137600,DB:1453852800,EB:1457395200,FB:1461628800,GB:1465257600,HB:1470096000,IB:1474329600,JB:1479168000,KB:1485216000,LB:1488844800,MB:1492560000,NB:1497312000,OB:1502150400,PB:1506556800,QB:1510617600,RB:1516665600,nB:1520985600,SB:1525824000,oB:1529971200,TB:1536105600,UB:1540252800,b:1544486400,VB:1548720000,WB:1552953600,XB:1558396800,YB:1562630400,ZB:1567468800,aB:1571788800,bB:1575331200,cB:1578355200,dB:1581379200,eB:1583798400,fB:1586304000,gB:1588636800,hB:1591056000,iB:1593475200,P:1595894400,Q:1598313600,R:1600732800,pB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,a:1653955200,m:1656374400,H:1658793600,qB:null,rB:null}},D:{A:{"0":0.008596,"1":0.004566,"2":0.004118,"3":0.007404,"4":0.003702,"5":0.004335,"6":0.004464,"7":0.01851,"8":0.003867,"9":0.014808,I:0.004706,n:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,o:0.008322,p:0.004393,q:0.004317,r:0.007404,s:0.008786,t:0.003939,u:0.004461,v:0.004141,w:0.004326,x:0.0047,y:0.004538,z:0.008322,AB:0.003702,BB:0.007734,CB:0.003702,DB:0.003867,EB:0.003867,FB:0.003867,GB:0.011106,HB:0.01851,IB:0.051828,JB:0.003867,KB:0.003801,LB:0.007404,MB:0.011106,NB:0.003867,OB:0.003702,PB:0.033318,QB:0.003702,RB:0.003702,nB:0.003702,SB:0.011106,oB:0.011106,TB:0.007404,UB:0.011106,b:0.003702,VB:0.011106,WB:0.025914,XB:0.011106,YB:0.007404,ZB:0.066636,aB:0.033318,bB:0.014808,cB:0.022212,dB:0.007404,eB:0.040722,fB:0.048126,gB:0.05553,hB:0.014808,iB:0.033318,P:0.173994,Q:0.051828,R:0.03702,S:0.096252,T:0.044424,U:0.07404,V:0.066636,W:0.085146,X:0.022212,Y:0.044424,Z:0.029616,c:0.059232,d:0.059232,e:0.044424,f:0.048126,g:0.029616,h:0.085146,i:0.088848,j:0.103656,k:0.103656,l:0.16659,a:0.25914,m:1.23647,H:18.8913,qB:0.022212,rB:0.01851,"3B":0.007404,"4B":0},B:"webkit",C:["","","","","I","n","J","D","E","F","A","B","C","K","L","G","M","N","O","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","nB","SB","oB","TB","UB","b","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","H","qB","rB","3B","4B"],E:"Chrome",F:{"0":1384214400,"1":1389657600,"2":1392940800,"3":1397001600,"4":1400544000,"5":1405468800,"6":1409011200,"7":1412640000,"8":1416268800,"9":1421798400,I:1264377600,n:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,o:1332892800,p:1337040000,q:1340668800,r:1343692800,s:1348531200,t:1352246400,u:1357862400,v:1361404800,w:1364428800,x:1369094400,y:1374105600,z:1376956800,AB:1425513600,BB:1429401600,CB:1432080000,DB:1437523200,EB:1441152000,FB:1444780800,GB:1449014400,HB:1453248000,IB:1456963200,JB:1460592000,KB:1464134400,LB:1469059200,MB:1472601600,NB:1476230400,OB:1480550400,PB:1485302400,QB:1489017600,RB:1492560000,nB:1496707200,SB:1500940800,oB:1504569600,TB:1508198400,UB:1512518400,b:1516752000,VB:1520294400,WB:1523923200,XB:1527552000,YB:1532390400,ZB:1536019200,aB:1539648000,bB:1543968000,cB:1548720000,dB:1552348800,eB:1555977600,fB:1559606400,gB:1564444800,hB:1568073600,iB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,a:1650931200,m:1653350400,H:1655769600,qB:1659398400,rB:null,"3B":null,"4B":null}},E:{A:{I:0,n:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003801,K:0.029616,L:0.125868,G:0.03702,"5B":0,sB:0.008692,"6B":0.007404,"7B":0.00456,"8B":0.004283,"9B":0.014808,tB:0.007404,jB:0.022212,kB:0.040722,AC:0.251736,BC:0.359094,CC:0.066636,uB:0.066636,vB:0.251736,wB:1.77696,DC:0.077742,lB:0.011106,EC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","5B","sB","I","n","6B","J","7B","D","8B","E","F","9B","A","tB","B","jB","C","kB","K","AC","L","BC","G","CC","uB","vB","wB","DC","lB","EC",""],E:"Safari",F:{"5B":1205798400,sB:1226534400,I:1244419200,n:1275868800,"6B":1311120000,J:1343174400,"7B":1382400000,D:1382400000,"8B":1410998400,E:1413417600,F:1443657600,"9B":1458518400,A:1474329600,tB:1490572800,B:1505779200,jB:1522281600,C:1537142400,kB:1553472000,K:1568851200,AC:1585008000,L:1600214400,BC:1619395200,G:1632096000,CC:1635292800,uB:1639353600,vB:1647216000,wB:1652745600,DC:1658275200,lB:null,EC:null}},F:{A:{"0":0.003702,"1":0.005152,"2":0.005014,"3":0.009758,"4":0.004879,"5":0.003702,"6":0.004283,"7":0.004367,"8":0.004534,"9":0.007404,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,o:0.006015,p:0.004879,q:0.006597,r:0.006597,s:0.013434,t:0.006702,u:0.006015,v:0.005595,w:0.004393,x:0.007404,y:0.004879,z:0.004879,AB:0.004227,BB:0.004418,CB:0.004161,DB:0.004227,EB:0.004725,FB:0.011106,GB:0.008942,HB:0.004707,IB:0.004827,JB:0.004707,KB:0.004707,LB:0.004326,MB:0.008922,NB:0.014349,OB:0.004425,PB:0.00472,QB:0.004425,RB:0.004425,SB:0.00472,TB:0.004532,UB:0.004566,b:0.02283,VB:0.00867,WB:0.004656,XB:0.004642,YB:0.003867,ZB:0.00944,aB:0.004293,bB:0.003867,cB:0.004298,dB:0.096692,eB:0.004201,fB:0.004141,gB:0.004257,hB:0.003939,iB:0.008236,P:0.003702,Q:0.003939,R:0.008514,pB:0.003939,S:0.003939,T:0.003702,U:0.025914,V:0.011106,W:0.029616,X:0.681168,Y:0.266544,Z:0,FC:0.00685,GC:0,HC:0.008392,IC:0.004706,jB:0.006229,xB:0.004879,JC:0.008786,kB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","F","FC","GC","HC","IC","B","jB","xB","JC","C","kB","G","M","N","O","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","b","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","P","Q","R","pB","S","T","U","V","W","X","Y","Z","",""],E:"Opera",F:{"0":1438646400,"1":1442448000,"2":1445904000,"3":1449100800,"4":1454371200,"5":1457308800,"6":1462320000,"7":1465344000,"8":1470096000,"9":1474329600,F:1150761600,FC:1223424000,GC:1251763200,HC:1267488000,IC:1277942400,B:1292457600,jB:1302566400,xB:1309219200,JC:1323129600,C:1323129600,kB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,o:1390867200,p:1393891200,q:1399334400,r:1401753600,s:1405987200,t:1409616000,u:1413331200,v:1417132800,w:1422316800,x:1425945600,y:1430179200,z:1433808000,AB:1477267200,BB:1481587200,CB:1486425600,DB:1490054400,EB:1494374400,FB:1498003200,GB:1502236800,HB:1506470400,IB:1510099200,JB:1515024000,KB:1517961600,LB:1521676800,MB:1525910400,NB:1530144000,OB:1534982400,PB:1537833600,QB:1543363200,RB:1548201600,SB:1554768000,TB:1561593600,UB:1566259200,b:1570406400,VB:1573689600,WB:1578441600,XB:1583971200,YB:1587513600,ZB:1592956800,aB:1595894400,bB:1600128000,cB:1603238400,dB:1613520000,eB:1612224000,fB:1616544000,gB:1619568000,hB:1623715200,iB:1627948800,P:1631577600,Q:1633392000,R:1635984000,pB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:null},D:{F:"o",B:"o",C:"o",FC:"o",GC:"o",HC:"o",IC:"o",jB:"o",xB:"o",JC:"o",kB:"o"}},G:{A:{E:0,sB:0,KC:0,yB:0.00311971,LC:0.00467956,MC:0.00467956,NC:0.0140387,OC:0.00623942,PC:0.0187183,QC:0.074873,RC:0.00779927,SC:0.0873518,TC:0.0421161,UC:0.0311971,VC:0.0296372,WC:0.547509,XC:0.0233978,YC:0.0124788,ZC:0.0545949,aC:0.180943,bC:0.508512,cC:1.15273,dC:0.355647,uB:0.608343,vB:1.01079,wB:10.4105,lB:0.0701934},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","sB","KC","yB","LC","MC","NC","E","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","bC","cC","dC","uB","vB","wB","lB","",""],E:"Safari on iOS",F:{sB:1270252800,KC:1283904000,yB:1299628800,LC:1331078400,MC:1359331200,NC:1394409600,E:1410912000,OC:1413763200,PC:1442361600,QC:1458518400,RC:1473724800,SC:1490572800,TC:1505779200,UC:1522281600,VC:1537142400,WC:1553472000,XC:1568851200,YC:1572220800,ZC:1580169600,aC:1585008000,bC:1600214400,cC:1619395200,dC:1632096000,uB:1639353600,vB:1647216000,wB:1652659200,lB:null}},H:{A:{eC:0.954006},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eC","","",""],E:"Opera Mini",F:{eC:1426464000}},I:{A:{mB:0,I:0.0241567,H:0,fC:0,gC:0,hC:0,iC:0.0362351,yB:0.066431,jC:0,kC:0.314037},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fC","gC","hC","mB","I","iC","yB","jC","kC","H","","",""],E:"Android Browser",F:{fC:1256515200,gC:1274313600,hC:1291593600,mB:1298332800,I:1318896000,iC:1341792000,yB:1374624000,jC:1386547200,kC:1401667200,H:1655856000}},J:{A:{D:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,b:0.0111391,jB:0,xB:0,kB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","jB","xB","C","kB","b","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,jB:1314835200,xB:1318291200,C:1330300800,kB:1349740800,b:1613433600},D:{b:"webkit"}},L:{A:{H:42.8703},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1655769600}},M:{A:{a:0.3149},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","a","","",""],E:"Firefox for Android",F:{a:1653955200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{lC:1.01398},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lC","","",""],E:"UC Browser for Android",F:{lC:1471392000},D:{lC:"webkit"}},P:{A:{I:0.20822,mC:0.0103543,nC:0.010304,oC:0.0728769,pC:0.0103584,qC:0.010411,tB:0.0105043,rC:0.0416439,sC:0.020822,tC:0.0832878,uC:0.0728769,vC:0.0832878,lB:0.166576,wC:2.30083},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","mC","nC","oC","pC","qC","tB","rC","sC","tC","uC","vC","lB","wC","","",""],E:"Samsung Internet",F:{I:1461024000,mC:1481846400,nC:1509408000,oC:1528329600,pC:1546128000,qC:1554163200,tB:1567900800,rC:1582588800,sC:1593475200,tC:1605657600,uC:1618531200,vC:1629072000,lB:1640736000,wC:1651708800}},Q:{A:{xC:0.239324},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","xC","","",""],E:"QQ Browser",F:{xC:1589846400}},R:{A:{yC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","yC","","",""],E:"Baidu Browser",F:{yC:1491004800}},S:{A:{zC:0.03149},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","zC","","",""],E:"KaiOS Browser",F:{zC:1527811200}}}; +module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.022212,F:0.059232,A:0.00556471,B:0.466452,"1B":0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","1B","J","D","E","F","A","B","","",""],E:"IE",F:{"1B":962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.003702,K:0.004267,L:0.004268,G:0.007404,M:0.003702,N:0.007404,O:0.022212,P:0,Q:0.004298,R:0.00944,S:0.004043,T:0.003702,U:0.003702,V:0.003801,W:0.007404,X:0.004318,Y:0.003702,Z:0.004118,c:0.003939,d:0.007404,e:0.004118,f:0.003939,g:0.003801,h:0.007404,i:0.007404,j:0.007404,k:0.011106,l:0.014808,a:0.066636,m:0.12957,n:3.72421,H:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","n","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,c:1622073600,d:1626912000,e:1630627200,f:1632441600,g:1634774400,h:1637539200,i:1641427200,j:1643932800,k:1646265600,l:1649635200,a:1651190400,m:1653955200,n:1655942400,H:1659657600},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.008322,"1":0.008928,"2":0.004471,"3":0.009284,"4":0.004707,"5":0.009076,"6":0.007404,"7":0.004783,"8":0.004271,"9":0.004783,"2B":0.004118,nB:0.004271,I:0.01851,o:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.007404,C:0.004471,K:0.004486,L:0.00453,G:0.008322,M:0.004417,N:0.004425,O:0.004161,p:0.004443,q:0.004283,r:0.008322,s:0.013698,t:0.004161,u:0.008786,v:0.004118,w:0.004317,x:0.004393,y:0.004418,z:0.008834,AB:0.00487,BB:0.005029,CB:0.0047,DB:0.09255,EB:0.007404,FB:0.003867,GB:0.004525,HB:0.004293,IB:0.003702,JB:0.004538,KB:0.008282,LB:0.011601,MB:0.059232,NB:0.011601,OB:0.007602,PB:0.003801,QB:0.007404,RB:0.011601,SB:0.003939,oB:0.003702,TB:0.003801,pB:0.004356,UB:0.004425,VB:0.008322,b:0.00415,WB:0.004267,XB:0.003801,YB:0.004267,ZB:0.007404,aB:0.00415,bB:0.004293,cB:0.004425,dB:0.003702,eB:0.00415,fB:0.00415,gB:0.004318,hB:0.004356,iB:0.003702,jB:0.03702,P:0.003702,Q:0.003702,R:0.014808,qB:0.003702,S:0.003702,T:0.003702,U:0.004268,V:0.003801,W:0.007404,X:0.011106,Y:0.007404,Z:0.007404,c:0.085146,d:0.003801,e:0.003702,f:0.022212,g:0.011106,h:0.007404,i:0.007404,j:0.007404,k:0.022212,l:0.029616,a:0.12957,m:2.01019,n:0.248034,H:0,rB:0,sB:0,"3B":0.008786,"4B":0.00487},B:"moz",C:["2B","nB","3B","4B","I","o","J","D","E","F","A","B","C","K","L","G","M","N","O","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","oB","TB","pB","UB","VB","b","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","P","Q","R","qB","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","n","H","rB","sB",""],E:"Firefox",F:{"0":1402358400,"1":1405987200,"2":1409616000,"3":1413244800,"4":1417392000,"5":1421107200,"6":1424736000,"7":1428278400,"8":1431475200,"9":1435881600,"2B":1161648000,nB:1213660800,"3B":1246320000,"4B":1264032000,I:1300752000,o: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,p:1357603200,q:1361232000,r:1364860800,s:1368489600,t:1372118400,u:1375747200,v:1379376000,w:1386633600,x:1391472000,y:1395100800,z:1398729600,AB:1439251200,BB:1442880000,CB:1446508800,DB:1450137600,EB:1453852800,FB:1457395200,GB:1461628800,HB:1465257600,IB:1470096000,JB:1474329600,KB:1479168000,LB:1485216000,MB:1488844800,NB:1492560000,OB:1497312000,PB:1502150400,QB:1506556800,RB:1510617600,SB:1516665600,oB:1520985600,TB:1525824000,pB:1529971200,UB:1536105600,VB:1540252800,b:1544486400,WB:1548720000,XB:1552953600,YB:1558396800,ZB:1562630400,aB:1567468800,bB:1571788800,cB:1575331200,dB:1578355200,eB:1581379200,fB:1583798400,gB:1586304000,hB:1588636800,iB:1591056000,jB:1593475200,P:1595894400,Q:1598313600,R:1600732800,qB:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,c:1628553600,d:1630972800,e:1633392000,f:1635811200,g:1638835200,h:1641859200,i:1644364800,j:1646697600,k:1649116800,l:1651536000,a:1653955200,m:1656374400,n:1658793600,H:1661212800,rB:null,sB:null}},D:{A:{"0":0.008322,"1":0.008596,"2":0.004566,"3":0.004118,"4":0.007404,"5":0.003702,"6":0.004335,"7":0.004464,"8":0.01851,"9":0.003867,I:0.004706,o: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,p:0.008322,q:0.004393,r:0.004317,s:0.007404,t:0.008786,u:0.003939,v:0.004461,w:0.004141,x:0.004326,y:0.0047,z:0.004538,AB:0.014808,BB:0.003702,CB:0.007734,DB:0.003702,EB:0.003867,FB:0.003867,GB:0.003867,HB:0.011106,IB:0.01851,JB:0.051828,KB:0.003867,LB:0.003801,MB:0.007404,NB:0.011106,OB:0.003867,PB:0.003702,QB:0.033318,RB:0.003702,SB:0.003702,oB:0.003702,TB:0.011106,pB:0.011106,UB:0.007404,VB:0.011106,b:0.003702,WB:0.011106,XB:0.025914,YB:0.011106,ZB:0.007404,aB:0.066636,bB:0.033318,cB:0.014808,dB:0.022212,eB:0.007404,fB:0.040722,gB:0.048126,hB:0.05553,iB:0.014808,jB:0.033318,P:0.173994,Q:0.051828,R:0.03702,S:0.096252,T:0.044424,U:0.07404,V:0.066636,W:0.085146,X:0.022212,Y:0.044424,Z:0.029616,c:0.059232,d:0.059232,e:0.044424,f:0.048126,g:0.029616,h:0.085146,i:0.088848,j:0.103656,k:0.103656,l:0.16659,a:0.25914,m:1.23647,n:18.8913,H:0.022212,rB:0.01851,sB:0.007404,"5B":0},B:"webkit",C:["","","","","","I","o","J","D","E","F","A","B","C","K","L","G","M","N","O","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","oB","TB","pB","UB","VB","b","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","P","Q","R","S","T","U","V","W","X","Y","Z","c","d","e","f","g","h","i","j","k","l","a","m","n","H","rB","sB","5B"],E:"Chrome",F:{"0":1376956800,"1":1384214400,"2":1389657600,"3":1392940800,"4":1397001600,"5":1400544000,"6":1405468800,"7":1409011200,"8":1412640000,"9":1416268800,I:1264377600,o: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,p:1332892800,q:1337040000,r:1340668800,s:1343692800,t:1348531200,u:1352246400,v:1357862400,w:1361404800,x:1364428800,y:1369094400,z:1374105600,AB:1421798400,BB:1425513600,CB:1429401600,DB:1432080000,EB:1437523200,FB:1441152000,GB:1444780800,HB:1449014400,IB:1453248000,JB:1456963200,KB:1460592000,LB:1464134400,MB:1469059200,NB:1472601600,OB:1476230400,PB:1480550400,QB:1485302400,RB:1489017600,SB:1492560000,oB:1496707200,TB:1500940800,pB:1504569600,UB:1508198400,VB:1512518400,b:1516752000,WB:1520294400,XB:1523923200,YB:1527552000,ZB:1532390400,aB:1536019200,bB:1539648000,cB:1543968000,dB:1548720000,eB:1552348800,fB:1555977600,gB:1559606400,hB:1564444800,iB:1568073600,jB:1571702400,P:1575936000,Q:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,c:1621987200,d:1626739200,e:1630368000,f:1632268800,g:1634601600,h:1637020800,i:1641340800,j:1643673600,k:1646092800,l:1648512000,a:1650931200,m:1653350400,n:1655769600,H:1659398400,rB:null,sB:null,"5B":null}},E:{A:{I:0,o:0.008322,J:0.004656,D:0.004465,E:0.004356,F:0.004891,A:0.004425,B:0.004318,C:0.003801,K:0.029616,L:0.125868,G:0.03702,"6B":0,tB:0.008692,"7B":0.007404,"8B":0.00456,"9B":0.004283,AC:0.014808,uB:0.007404,kB:0.022212,lB:0.040722,BC:0.251736,CC:0.359094,DC:0.066636,vB:0.066636,wB:0.251736,xB:1.77696,yB:0.077742,mB:0.011106,EC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6B","tB","I","o","7B","J","8B","D","9B","E","F","AC","A","uB","B","kB","C","lB","K","BC","L","CC","G","DC","vB","wB","xB","yB","mB","EC",""],E:"Safari",F:{"6B":1205798400,tB:1226534400,I:1244419200,o:1275868800,"7B":1311120000,J:1343174400,"8B":1382400000,D:1382400000,"9B":1410998400,E:1413417600,F:1443657600,AC:1458518400,A:1474329600,uB:1490572800,B:1505779200,kB:1522281600,C:1537142400,lB:1553472000,K:1568851200,BC:1585008000,L:1600214400,CC:1619395200,G:1632096000,DC:1635292800,vB:1639353600,wB:1647216000,xB:1652745600,yB:1658275200,mB:null,EC:null}},F:{A:{"0":0.004879,"1":0.003702,"2":0.005152,"3":0.005014,"4":0.009758,"5":0.004879,"6":0.003702,"7":0.004283,"8":0.004367,"9":0.004534,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,p:0.006015,q:0.004879,r:0.006597,s:0.006597,t:0.013434,u:0.006702,v:0.006015,w:0.005595,x:0.004393,y:0.007404,z:0.004879,AB:0.007404,BB:0.004227,CB:0.004418,DB:0.004161,EB:0.004227,FB:0.004725,GB:0.011106,HB:0.008942,IB:0.004707,JB:0.004827,KB:0.004707,LB:0.004707,MB:0.004326,NB:0.008922,OB:0.014349,PB:0.004425,QB:0.00472,RB:0.004425,SB:0.004425,TB:0.00472,UB:0.004532,VB:0.004566,b:0.02283,WB:0.00867,XB:0.004656,YB:0.004642,ZB:0.003867,aB:0.00944,bB:0.004293,cB:0.003867,dB:0.004298,eB:0.096692,fB:0.004201,gB:0.004141,hB:0.004257,iB:0.003939,jB:0.008236,P:0.003702,Q:0.003939,R:0.008514,qB:0.003939,S:0.003939,T:0.003702,U:0.025914,V:0.011106,W:0.029616,X:0.681168,Y:0.266544,Z:0,FC:0.00685,GC:0,HC:0.008392,IC:0.004706,kB:0.006229,zB:0.004879,JC:0.008786,lB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","F","FC","GC","HC","IC","B","kB","zB","JC","C","lB","G","M","N","O","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","b","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","P","Q","R","qB","S","T","U","V","W","X","Y","Z","","",""],E:"Opera",F:{"0":1433808000,"1":1438646400,"2":1442448000,"3":1445904000,"4":1449100800,"5":1454371200,"6":1457308800,"7":1462320000,"8":1465344000,"9":1470096000,F:1150761600,FC:1223424000,GC:1251763200,HC:1267488000,IC:1277942400,B:1292457600,kB:1302566400,zB:1309219200,JC:1323129600,C:1323129600,lB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,p:1390867200,q:1393891200,r:1399334400,s:1401753600,t:1405987200,u:1409616000,v:1413331200,w:1417132800,x:1422316800,y:1425945600,z:1430179200,AB:1474329600,BB:1477267200,CB:1481587200,DB:1486425600,EB:1490054400,FB:1494374400,GB:1498003200,HB:1502236800,IB:1506470400,JB:1510099200,KB:1515024000,LB:1517961600,MB:1521676800,NB:1525910400,OB:1530144000,PB:1534982400,QB:1537833600,RB:1543363200,SB:1548201600,TB:1554768000,UB:1561593600,VB:1566259200,b:1570406400,WB:1573689600,XB:1578441600,YB:1583971200,ZB:1587513600,aB:1592956800,bB:1595894400,cB:1600128000,dB:1603238400,eB:1613520000,fB:1612224000,gB:1616544000,hB:1619568000,iB:1623715200,jB:1627948800,P:1631577600,Q:1633392000,R:1635984000,qB:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800},D:{F:"o",B:"o",C:"o",FC:"o",GC:"o",HC:"o",IC:"o",kB:"o",zB:"o",JC:"o",lB:"o"}},G:{A:{E:0,tB:0,KC:0,"0B":0.00311971,LC:0.00467956,MC:0.00467956,NC:0.0140387,OC:0.00623942,PC:0.0187183,QC:0.074873,RC:0.00779927,SC:0.0873518,TC:0.0421161,UC:0.0311971,VC:0.0296372,WC:0.547509,XC:0.0233978,YC:0.0124788,ZC:0.0545949,aC:0.180943,bC:0.508512,cC:1.15273,dC:0.355647,vB:0.608343,wB:1.01079,xB:10.4105,yB:0,mB:0.0701934},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","tB","KC","0B","LC","MC","NC","E","OC","PC","QC","RC","SC","TC","UC","VC","WC","XC","YC","ZC","aC","bC","cC","dC","vB","wB","xB","yB","mB","",""],E:"Safari on iOS",F:{tB:1270252800,KC:1283904000,"0B":1299628800,LC:1331078400,MC:1359331200,NC:1394409600,E:1410912000,OC:1413763200,PC:1442361600,QC:1458518400,RC:1473724800,SC:1490572800,TC:1505779200,UC:1522281600,VC:1537142400,WC:1553472000,XC:1568851200,YC:1572220800,ZC:1580169600,aC:1585008000,bC:1600214400,cC:1619395200,dC:1632096000,vB:1639353600,wB:1647216000,xB:1652659200,yB:1658275200,mB:null}},H:{A:{eC:0.954006},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eC","","",""],E:"Opera Mini",F:{eC:1426464000}},I:{A:{nB:0,I:0.0241567,H:0,fC:0,gC:0,hC:0,iC:0.0362351,"0B":0.066431,jC:0,kC:0.314037},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fC","gC","hC","nB","I","iC","0B","jC","kC","H","","",""],E:"Android Browser",F:{fC:1256515200,gC:1274313600,hC:1291593600,nB:1298332800,I:1318896000,iC:1341792000,"0B":1374624000,jC:1386547200,kC:1401667200,H:1659484800}},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,b:0.0111391,kB:0,zB:0,lB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","kB","zB","C","lB","b","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,kB:1314835200,zB:1318291200,C:1330300800,lB:1349740800,b:1613433600},D:{b:"webkit"}},L:{A:{H:42.8703},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1659484800}},M:{A:{a:0.3149},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","a","","",""],E:"Firefox for Android",F:{a:1653955200}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{lC:1.01398},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lC","","",""],E:"UC Browser for Android",F:{lC:1471392000},D:{lC:"webkit"}},P:{A:{I:0.20822,mC:0.0103543,nC:0.010304,oC:0.0728769,pC:0.0103584,qC:0.010411,uB:0.0105043,rC:0.0416439,sC:0.020822,tC:0.0832878,uC:0.0728769,vC:0.0832878,mB:0.166576,wC:2.30083,xC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","mC","nC","oC","pC","qC","uB","rC","sC","tC","uC","vC","mB","wC","xC","","",""],E:"Samsung Internet",F:{I:1461024000,mC:1481846400,nC:1509408000,oC:1528329600,pC:1546128000,qC:1554163200,uB:1567900800,rC:1582588800,sC:1593475200,tC:1605657600,uC:1618531200,vC:1629072000,mB:1640736000,wC:1651708800,xC:1659657600}},Q:{A:{yC:0.239324},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","yC","","",""],E:"QQ Browser",F:{yC:1589846400}},R:{A:{zC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","zC","","",""],E:"Baidu Browser",F:{zC:1491004800}},S:{A:{"0C":0.03149},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","0C","","",""],E:"KaiOS Browser",F:{"0C":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 a87a9023243e151..b94a731fc3ac49a 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":"31","1":"32","2":"33","3":"34","4":"35","5":"36","6":"37","7":"38","8":"39","9":"40",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"103",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"101",b:"64",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"102",n:"5",o:"19",p:"20",q:"21",r:"22",s:"23",t:"24",u:"25",v:"26",w:"27",x:"28",y:"29",z:"30",AB:"41",BB:"42",CB:"43",DB:"44",EB:"45",FB:"46",GB:"47",HB:"48",IB:"49",JB:"50",KB:"51",LB:"52",MB:"53",NB:"54",OB:"55",PB:"56",QB:"57",RB:"58",SB:"60",TB:"62",UB:"63",VB:"65",WB:"66",XB:"67",YB:"68",ZB:"69",aB:"70",bB:"71",cB:"72",dB:"73",eB:"74",fB:"75",gB:"76",hB:"77",iB:"78",jB:"11.1",kB:"12.1",lB:"16.0",mB:"3",nB:"59",oB:"61",pB:"82",qB:"104",rB:"105",sB:"3.2",tB:"10.1",uB:"15.2-15.3",vB:"15.4",wB:"15.5",xB:"11.5",yB:"4.2-4.3",zB:"5.5","0B":"2","1B":"3.5","2B":"3.6","3B":"106","4B":"107","5B":"3.1","6B":"5.1","7B":"6.1","8B":"7.1","9B":"9.1",AC:"13.1",BC:"14.1",CC:"15.1",DC:"15.6",EC:"TP",FC:"9.5-9.6",GC:"10.0-10.1",HC:"10.5",IC:"10.6",JC:"11.6",KC:"4.0-4.1",LC:"5.0-5.1",MC:"6.0-6.1",NC:"7.0-7.1",OC:"8.1-8.4",PC:"9.0-9.2",QC:"9.3",RC:"10.0-10.2",SC:"10.3",TC:"11.0-11.2",UC:"11.3-11.4",VC:"12.0-12.1",WC:"12.2-12.5",XC:"13.0-13.1",YC:"13.2",ZC:"13.3",aC:"13.4-13.7",bC:"14.0-14.4",cC:"14.5-14.8",dC:"15.0-15.1",eC:"all",fC:"2.1",gC:"2.2",hC:"2.3",iC:"4.1",jC:"4.4",kC:"4.4.3-4.4.4",lC:"12.12",mC:"5.0-5.4",nC:"6.2-6.4",oC:"7.2-7.4",pC:"8.2",qC:"9.2",rC:"11.1-11.2",sC:"12.0",tC:"13.0",uC:"14.0",vC:"15.0",wC:"17.0",xC:"10.4",yC:"7.12",zC:"2.5"}; +module.exports={"0":"30","1":"31","2":"32","3":"33","4":"34","5":"35","6":"36","7":"37","8":"38","9":"39",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"104",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"101",b:"64",c:"91",d:"92",e:"93",f:"94",g:"95",h:"96",i:"97",j:"98",k:"99",l:"100",m:"102",n:"103",o:"5",p:"19",q:"20",r:"21",s:"22",t:"23",u:"24",v:"25",w:"26",x:"27",y:"28",z:"29",AB:"40",BB:"41",CB:"42",DB:"43",EB:"44",FB:"45",GB:"46",HB:"47",IB:"48",JB:"49",KB:"50",LB:"51",MB:"52",NB:"53",OB:"54",PB:"55",QB:"56",RB:"57",SB:"58",TB:"60",UB:"62",VB:"63",WB:"65",XB:"66",YB:"67",ZB:"68",aB:"69",bB:"70",cB:"71",dB:"72",eB:"73",fB:"74",gB:"75",hB:"76",iB:"77",jB:"78",kB:"11.1",lB:"12.1",mB:"16.0",nB:"3",oB:"59",pB:"61",qB:"82",rB:"105",sB:"106",tB:"3.2",uB:"10.1",vB:"15.2-15.3",wB:"15.4",xB:"15.5",yB:"15.6",zB:"11.5","0B":"4.2-4.3","1B":"5.5","2B":"2","3B":"3.5","4B":"3.6","5B":"107","6B":"3.1","7B":"5.1","8B":"6.1","9B":"7.1",AC:"9.1",BC:"13.1",CC:"14.1",DC:"15.1",EC:"TP",FC:"9.5-9.6",GC:"10.0-10.1",HC:"10.5",IC:"10.6",JC:"11.6",KC:"4.0-4.1",LC:"5.0-5.1",MC:"6.0-6.1",NC:"7.0-7.1",OC:"8.1-8.4",PC:"9.0-9.2",QC:"9.3",RC:"10.0-10.2",SC:"10.3",TC:"11.0-11.2",UC:"11.3-11.4",VC:"12.0-12.1",WC:"12.2-12.5",XC:"13.0-13.1",YC:"13.2",ZC:"13.3",aC:"13.4-13.7",bC:"14.0-14.4",cC:"14.5-14.8",dC:"15.0-15.1",eC:"all",fC:"2.1",gC:"2.2",hC:"2.3",iC:"4.1",jC:"4.4",kC:"4.4.3-4.4.4",lC:"12.12",mC:"5.0-5.4",nC:"6.2-6.4",oC:"7.2-7.4",pC:"8.2",qC:"9.2",rC:"11.1-11.2",sC:"12.0",tC:"13.0",uC:"14.0",vC:"15.0",wC:"17.0",xC:"18.0",yC:"10.4",zC:"7.12","0C":"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 ccc66d95ce90602..3b26be31ebf70cc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features.js @@ -1 +1 @@ -module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; +module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr-v1":require("./features/colr-v1"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-autofill":require("./features/css-autofill"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-container-query-units":require("./features/css-container-query-units"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-file-selector-button":require("./features/css-file-selector-button"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-palette":require("./features/css-font-palette"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid-animation":require("./features/css-grid-animation"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-lch-lab":require("./features/css-lch-lab"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-range-syntax":require("./features/css-media-range-syntax"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-print-color-adjust":require("./features/css-print-color-adjust"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-when-else":require("./features/css-when-else"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-width-stretch":require("./features/css-width-stretch"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"declarative-shadow-dom":require("./features/declarative-shadow-dom"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-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"),"webtransport":require("./features/webtransport"),"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 6ea27deffdd1e2e..c2921e2f3786d38 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F","16":"A B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"132":"a"},N:{"1":"A","2":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"132":"zC"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F","16":"A B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"132":"a"},N:{"1":"A","2":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"132":"0C"}},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 20e10964e560305..547b150e86098db 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 1B 2B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","130":"C jB"},F:{"1":"MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB 3B 4B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","130":"C kB"},F:{"1":"NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 04a7ead09df99a7..329d5b00d00780a 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","132":"A"},K:{"2":"A B C b jB xB","132":"kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},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 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC","132":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","132":"A"},K:{"2":"A B C b kB zB","132":"lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 eabfdff5bb103ec..b714a4870cea21c 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b VB WB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","194":"SB oB TB pB UB VB b WB XB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 204d80aa66164d6..7798cf31d6a3d5b 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","257":"0B mB I n J 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"F A B","130":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","257":"2B nB I o J 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 471204b8e7981a2..835d73e7ef57c1c 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"F B C FC GC HC IC jB xB JC kB","16":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"2":"b","16":"A B C jB xB kB"},L:{"16":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"16":"yC"},S:{"1":"zC"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"F B C FC GC HC IC kB zB JC lB","16":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"2":"b","16":"A B C kB zB lB"},L:{"16":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"16":"zC"},S:{"1":"0C"}},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 59678ce2436d731..f3df684b37d3383 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 zB"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","194":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","322":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB FC GC HC IC jB xB JC kB","322":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"132":"zC"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K","132":"L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB","194":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","322":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB FC GC HC IC kB zB JC lB","322":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"132":"0C"}},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 577b78602ebe036..8cc0e8bf9d0aeac 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"1":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B 8B"},F:{"1":"B C FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O o p q r s t u v w x y z AB BB CB DB EB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"1":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B 9B"},F:{"1":"B C GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"0 1 2 3 4 5 6 7 8 9 F G M N O p q r s t u v w x y z AB BB CB DB EB FB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 20ee3eb1729c0d0..aabe937391ec4e5 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 94b62e41a32d7cf..a31a2dcb0d04419 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 31832ba780269e2..6b88a73a700f731 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB 1B 2B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB FC GC HC IC jB xB JC kB"},G:{"1":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB 3B 4B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB kB"},F:{"1":"QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB FC GC HC IC kB zB JC lB"},G:{"1":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 04dc203653dc0b7..34ca09b90d7ee09 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 1B 2B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9301684032e4d52..d37a89a9b380d88 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 0c2b7747222c477..10f7e953927bc0c 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 zB"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u v w","132":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","132":"b"},L:{"132":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","132":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"2":"I o J D E F A B C K L G 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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","132":"b"},L:{"132":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","132":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 2f727df84977c6d..89e78448e001cc3 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B","132":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","66":"RB nB SB oB"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","260":"bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","260":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","260":"b"},L:{"1":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC","260":"qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B","132":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","66":"SB oB TB pB"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","260":"bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","260":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","260":"b"},L:{"1":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC","260":"qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fa960c74a80effd..8e041c7dbba86eb 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K","194":"L"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B"},D:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B","514":"tB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC","514":"SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K","194":"L"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC","514":"uB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC","514":"SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fb7e2a733f23370..0071c075d797af3 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC GC","16":"HC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC GC","16":"HC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 624aacac6e2c887..9efaa21cc440d56 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K","33":"0 1 2 L G M N O o p q r s t u v w x y z"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J D E F A B C K L 7B 8B 9B tB jB kB AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"G M N O o p q"},G:{"1":"cC dC uB vB wB lB","2":"sB KC yB LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K","33":"0 1 2 3 L G M N O p q r s t u v w x y z"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J D E F A B C K L 8B 9B AC uB kB lB BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"G M N O p q r"},G:{"1":"cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8394075715900f0..71f7639dd5135dc 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","132":"I n J D E F A B C K L G M N O o 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F","4":"FC GC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","2":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","132":"I o J D E F A B C K L G M N O p 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F","4":"FC GC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","2":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 274592c7791954c..ba55197fcf26e04 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 zB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB","322":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B"},F:{"2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"322":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B"},F:{"2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"322":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 634f695955cb912..18f9bdb1d372123 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 e62289678c50eff..8c924299782b63f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B","129":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B","129":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 a7a28f75f2e94e0..44f9a1fd657411c 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 zB"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 1B 2B","66":"OB PB QB RB nB SB oB TB UB b","260":"VB","516":"WB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB","66":"XB YB ZB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1090":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I mC nC oC pC qC tB rC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N","194":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB 3B 4B","66":"PB QB RB SB oB TB pB UB VB b","260":"WB","516":"XB"},D:{"1":"bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB","66":"YB ZB aB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1090":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 bf5b4b63337f338..f22ca41a25da943 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB 1B 2B","194":"hB iB P Q R pB S T U V W X Y Z c d","257":"e f g h i j k l a m H qB rB"},D:{"1":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC","516":"lB EC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB FC GC HC IC jB xB JC kB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB 3B 4B","194":"iB jB P Q R qB S T U V W X Y Z c d","257":"e f g h i j k l a m n H rB sB"},D:{"1":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB","516":"mB EC"},F:{"1":"cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB","1281":"mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3e1d4fe11556a5c..ff95bca833ccdc5 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C 6B 7B 8B 9B tB jB kB","132":"I K 5B sB AC","2050":"L G BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","132":"F FC GC"},G:{"2":"sB KC yB","772":"E LC MC NC OC PC QC RC SC TC UC VC WC","2050":"XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC jC kC","132":"iC yB"},J:{"260":"D A"},K:{"1":"B C jB xB kB","2":"b","132":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"2":"I","1028":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1028":"yC"},S:{"1":"zC"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C 7B 8B 9B AC uB kB lB","132":"I K 6B tB BC","2050":"L G CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","132":"F FC GC"},G:{"2":"tB KC 0B","772":"E LC MC NC OC PC QC RC SC TC UC VC WC","2050":"XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC jC kC","132":"iC 0B"},J:{"260":"D A"},K:{"1":"B C kB zB lB","2":"b","132":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"2":"I","1028":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1028":"zC"},S:{"1":"0C"}},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 a85afcfb6343a07..92a53b15999a35e 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 zB"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"L G BC CC uB vB wB DC lB EC","16":"5B sB","33":"I n J D E F A B C K 6B 7B 8B 9B tB jB kB AC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"bC cC dC uB vB wB lB","16":"sB KC yB LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"16":"mB fC gC hC","33":"I H iC yB jC kC"},J:{"33":"D A"},K:{"16":"A B C jB xB kB","33":"b"},L:{"33":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"1":"zC"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O","33":"C K L P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"L G CC DC vB wB xB yB mB EC","16":"6B tB","33":"I o J D E F A B C K 7B 8B 9B AC uB kB lB BC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"bC cC dC vB wB xB yB mB","16":"tB KC 0B LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"16":"nB fC gC hC","33":"I H iC 0B jC kC"},J:{"33":"D A"},K:{"16":"A B C kB zB lB","33":"b"},L:{"33":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"1":"0C"}},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 894589a2ad073a1..c09aafaec64b64c 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","36":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","516":"I n J D E F A B C K L"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","772":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC","36":"GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","4":"sB KC yB MC","516":"LC"},H:{"132":"eC"},I:{"1":"H jC kC","36":"fC","516":"mB I iC yB","548":"gC hC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","36":"4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","516":"I o J D E F A B C K L"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","772":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC","36":"GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","4":"tB KC 0B MC","516":"LC"},H:{"132":"eC"},I:{"1":"H jC kC","36":"fC","516":"nB I iC 0B","548":"gC hC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 3ff88bf875034d7..6aa02d7fcce0cc5 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 f170406c880f225..027570a0772d2f3 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 zB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F G M N O FC GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J D E 1B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 I o J D E F A B C K L G 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 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F G M N O FC GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 e45cea83ed0fdda..66ece67c8210f21 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 1B 2B","16":"qB rB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 3B 4B","16":"rB sB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 51144d38c40c49c..cab54febf6eabf6 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"CB DB EB FB GB HB IB JB KB","2":"0B mB I n J D E F LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB","164":"A B C K L G"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z","66":"6"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB","2":"2B nB I o J D E F MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","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","164":"A B C K L G"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z","66":"7"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ee1339ff86a1b5a..65a2fc7f53b6eed 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Beacon API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 efd081b270b76b9..96500494baa5fda 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B"},D:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"2":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B"},D:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"2":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 6bb79ba6127b96f..bd9ad7e34ea7107 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b 1B 2B","194":"VB WB XB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB AC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b 3B 4B","194":"WB XB YB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB BC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 717b06ac115e4fc..097b44bef8ca338 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D","36":"E F A B C K L G M N O o"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","36":"mB I iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D","36":"E F A B C K L G M N O p"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","36":"nB I iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 90bf524791814c1..b0beaf4dc677657 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 zB","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D","33":"E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB fC gC hC","33":"I iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J D E F 1B","129":"A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D","33":"E F A B C K L G M N O p q r s"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB fC gC hC","33":"I iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 5aa66fc44d3eb7f..8c413454ebc2c5f 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","260":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","804":"I n J D E F A B C K L 1B 2B"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","260":"KB LB MB NB OB","388":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB","1412":"G M N O o p q r s t u v w x y","1956":"I n J D E F A B C K L"},E:{"1":"vB wB DC lB EC","129":"A B C K L G 9B tB jB kB AC BC CC uB","1412":"J D E F 7B 8B","1956":"I n 5B sB 6B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC","260":"7 8 9 AB BB","388":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","1796":"HC IC","1828":"B C jB xB JC kB"},G:{"1":"vB wB lB","129":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB","1412":"E MC NC OC PC","1956":"sB KC yB LC"},H:{"1828":"eC"},I:{"1":"H","388":"jC kC","1956":"mB I fC gC hC iC yB"},J:{"1412":"A","1924":"D"},K:{"1":"b","2":"A","1828":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"388":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","260":"mC nC","388":"I"},Q:{"260":"xC"},R:{"260":"yC"},S:{"260":"zC"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","260":"0 1 2 3 4 5 6 7 8 9 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","804":"I o J D E F A B C K L 3B 4B"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","260":"LB MB NB OB PB","388":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB","1412":"G M N O p q r s t u v w x y z","1956":"I o J D E F A B C K L"},E:{"1":"wB xB yB mB EC","129":"A B C K L G AC uB kB lB BC CC DC vB","1412":"J D E F 8B 9B","1956":"I o 6B tB 7B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC","260":"8 9 AB BB CB","388":"0 1 2 3 4 5 6 7 G M N O p q r s t u v w x y z","1796":"HC IC","1828":"B C kB zB JC lB"},G:{"1":"wB xB yB mB","129":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB","1412":"E MC NC OC PC","1956":"tB KC 0B LC"},H:{"1828":"eC"},I:{"1":"H","388":"jC kC","1956":"nB I fC gC hC iC 0B"},J:{"1412":"A","1924":"D"},K:{"1":"b","2":"A","1828":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"388":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","260":"mC nC","388":"I"},Q:{"260":"yC"},R:{"260":"zC"},S:{"260":"0C"}},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 0a2d5905b9dac83..508b0a6a000c73b 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","257":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","289":"mB 1B 2B","292":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"I"},E:{"1":"n D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"I 5B sB","129":"J 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"sB"},H:{"2":"eC"},I:{"1":"mB I H gC hC iC yB jC kC","33":"fC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"257":"zC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","257":"0 1 2 3 4 5 6 7 8 9 I o 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","289":"nB 3B 4B","292":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"I"},E:{"1":"o D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"I 6B tB","129":"J 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"tB"},H:{"2":"eC"},I:{"1":"nB I H gC hC iC 0B jC kC","33":"fC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"257":"0C"}},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 1c650e7e887aa69..cc08a9cde4935e2 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB FC GC HC IC kB zB JC lB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 90789d1b11ddbf1..3593f8acb8f48e1 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 1B 2B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB","257":"JB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","513":"B C jB kB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"5 6"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"JB","257":"KB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","513":"B C kB lB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"6 7"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 a03da3284390ca0..18455a1926f5988 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 zB","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"I n J D E F A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O","33":"o p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"MC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","132":"jC kC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J D E 1B","260":"F","516":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"I o J D E F A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O","33":"p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"MC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","132":"jC kC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 deac2771b0f4fef..e8cae623137489e 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G 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 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 bfb0b3dd2a4a447..686474149a2dad2 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":"zB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","8":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","8":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","8":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","8":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 735a6845e24fca5..19ecc3556c00b21 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":"zB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","132":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","132":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"260":"eC"},I:{"1":"mB I H iC yB jC kC","132":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","132":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","132":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"260":"eC"},I:{"1":"nB I H iC 0B jC kC","132":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 443fd9646e7a62d..d5e7aea1ffa15e8 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 zB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J D E 1B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 bdbe6e90fda9f7c..8ebaf1841596a14 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z","129":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC","16":"kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 I o J D E F A B C K L G M N O p q r s t u v w x y z","129":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC","16":"kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 87a47356e504ecd..29445173f69b311 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u 1B 2B","194":"0 1 2 3 4 5 6 7 8 9 v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC GC","16":"HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v 3B 4B","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC GC","16":"HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 fe28b28d995a5ba..f97911f13eef033 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e2c0f82cc21968e..e97611fc0394997 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 zB","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0B mB 1B","516":"t u","772":"I n J D E F A B C K L G M N O o p q r s 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I n J D","516":"t u v w","772":"s","900":"E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I n 5B sB","900":"J 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","8":"F B FC GC HC IC jB","900":"C xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB","900":"LC MC"},H:{"900":"eC"},I:{"1":"H jC kC","8":"fC gC hC","900":"mB I iC yB"},J:{"1":"A","900":"D"},K:{"1":"b","8":"A B","900":"C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"900":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J D E F 1B","1924":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"2B nB 3B","516":"u v","772":"I o J D E F A B C K L G M N O p q r s t 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I o J D","516":"u v w x","772":"t","900":"E F A B C K L G M N O p q r s"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I o 6B tB","900":"J 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","8":"F B FC GC HC IC kB","900":"C zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B","900":"LC MC"},H:{"900":"eC"},I:{"1":"H jC kC","8":"fC gC hC","900":"nB I iC 0B"},J:{"1":"A","900":"D"},K:{"1":"b","8":"A B","900":"C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"900":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1ed678d4b89b468..bd505844d2b808a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 be8e39cdbf600a3..4f512b744768e78 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 zB"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","772":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z","4100":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I n J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB","8196":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","10244":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","16":"5B sB","2308":"A B tB jB","2820":"I n J D E F 6B 7B 8B 9B"},F:{"2":"F B FC GC HC IC jB xB JC","16":"C","516":"kB","2564":"G M N O o p q r s t u v w x y","8196":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","10244":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB"},G:{"1":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","2820":"E LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","260":"H","2308":"jC kC"},J:{"2":"D","2308":"A"},K:{"2":"A B C jB xB","16":"kB","260":"b"},L:{"8196":"H"},M:{"1028":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2052":"mC nC","2308":"I","8196":"oC pC qC tB rC sC tC uC vC lB wC"},Q:{"10244":"xC"},R:{"2052":"yC"},S:{"4100":"zC"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J D E F A B 1B"},B:{"260":"N O","2436":"C K L G M","8196":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","772":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB","4100":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I o J D E F A B C","2564":"0 1 2 3 4 5 6 7 8 9 K L G M N O p q r s t u v w x y z AB BB CB","8196":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","10244":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","16":"6B tB","2308":"A B uB kB","2820":"I o J D E F 7B 8B 9B AC"},F:{"2":"F B FC GC HC IC kB zB JC","16":"C","516":"lB","2564":"G M N O p q r s t u v w x y z","8196":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","10244":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB"},G:{"1":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","2820":"E LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","260":"H","2308":"jC kC"},J:{"2":"D","2308":"A"},K:{"2":"A B C kB zB","16":"lB","260":"b"},L:{"8196":"H"},M:{"1028":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2052":"mC nC","2308":"I","8196":"oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"10244":"yC"},R:{"2052":"zC"},S:{"4100":"0C"}},B:5,C:"Synchronous Clipboard API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js index a719f46030e068a..73feaad805e29da 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"1":"j k l a m H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i 1B 2B","258":"j k l a m H qB rB"},D:{"1":"j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y","194":"Z c d e f g h i"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"j k l a m n H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i 3B 4B","258":"j k l a m n H rB sB"},D:{"1":"j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y","194":"Z c d e f g h i"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"1":"xC","2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:6,C:"COLR/CPAL(v1) Font Formats"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js index 647a2309bb0f51d..492507edcf0dc16 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 zB","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB","513":"bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","129":"B C K jB kB AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB FC GC HC IC jB xB JC kB","513":"RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"1":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J D E 1B","257":"F A B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB","513":"cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","129":"B C K kB lB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB FC GC HC IC kB zB JC lB","513":"SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"1":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8657bfae37c9ceb..ca9a49016929e98 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","132":"G M N O o p q r s t u v w x y"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n J 5B sB","132":"D E F 7B 8B 9B","260":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","16":"F B FC GC HC IC jB xB","132":"G M"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB","132":"E KC yB LC MC NC OC PC QC"},H:{"1":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"mB I hC iC yB"},J:{"132":"D A"},K:{"1":"C b kB","16":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","132":"G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o J 6B tB","132":"D E F 8B 9B AC","260":"7B"},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 PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","16":"F B FC GC HC IC kB zB","132":"G M"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB","132":"E KC 0B LC MC NC OC PC QC"},H:{"1":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"nB I hC iC 0B"},J:{"132":"D A"},K:{"1":"C b lB","16":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d1ea4b3637f2923..90b9f60d5d09904 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 zB","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F FC GC HC IC"},G:{"1":"sB KC yB LC","513":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"4097":"eC"},I:{"1025":"mB I H fC gC hC iC yB jC kC"},J:{"258":"D A"},K:{"2":"A","258":"B C jB xB kB","1025":"b"},L:{"1025":"H"},M:{"2049":"a"},N:{"258":"A B"},O:{"258":"lC"},P:{"1025":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1025":"yC"},S:{"1":"zC"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J D 1B","132":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F FC GC HC IC"},G:{"1":"tB KC 0B LC","513":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"4097":"eC"},I:{"1025":"nB I H fC gC hC iC 0B jC kC"},J:{"258":"D A"},K:{"2":"A","258":"B C kB zB lB","1025":"b"},L:{"1025":"H"},M:{"2049":"a"},N:{"258":"A B"},O:{"258":"lC"},P:{"1025":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1025":"zC"},S:{"1":"0C"}},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 8045e9233999388..2b581013aa40fb9 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F FC GC HC IC","16":"B"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"b","16":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F FC GC HC IC","16":"B"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"b","16":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c4452ab71a6d64f..df136eaad44ff71 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 zB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0B mB I n J D E F A B C 1B 2B","260":"0 1 2 3 4 K L G M N O o p q r s t u v w x y z"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","260":"I n J D E F A B C K L G M N O o p","772":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z","1028":"AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","260":"I n A 5B sB tB","772":"J D E F 6B 7B 8B 9B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC","132":"B GC HC IC jB xB","644":"C JC kB","772":"G M N O o p q r s t u v w","1028":"0 1 2 3 4 x y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","260":"sB KC yB RC SC","772":"E LC MC NC OC PC QC"},H:{"644":"eC"},I:{"1":"H","16":"fC gC","260":"hC","772":"mB I iC yB jC kC"},J:{"772":"D A"},K:{"1":"b","132":"A B jB xB","644":"C kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","1028":"I"},Q:{"1":"xC"},R:{"1028":"yC"},S:{"1":"zC"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J D E F A 1B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"2B nB I o J D E F A B C 3B 4B","260":"0 1 2 3 4 5 K L G M N O p q r s t u v w x y z"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","260":"I o J D E F A B C K L G M N O p q","772":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB","1028":"BB CB DB EB FB GB HB IB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","260":"I o A 6B tB uB","772":"J D E F 7B 8B 9B AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC","132":"B GC HC IC kB zB","644":"C JC lB","772":"G M N O p q r s t u v w x","1028":"0 1 2 3 4 5 y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","260":"tB KC 0B RC SC","772":"E LC MC NC OC PC QC"},H:{"644":"eC"},I:{"1":"H","16":"fC gC","260":"hC","772":"nB I iC 0B jC kC"},J:{"772":"D A"},K:{"1":"b","132":"A B kB zB","644":"C lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","1028":"I"},Q:{"1":"yC"},R:{"1028":"zC"},S:{"1":"0C"}},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 ce9e9bc5e764aea..19252b9c2a06a38 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 zB","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","388":"L G M","900":"C K"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","260":"IB JB","388":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB","900":"I n J D E F A B C K L G M N O o p q r s t u v w x"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","388":"0 1 2 3 4 5 6 7 8 u v w x y z","900":"G M N O o p q r s t"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB","388":"E F 8B 9B","900":"J D 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B FC GC HC IC jB xB","388":"G M N O o p q r s t u v","900":"C JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB","388":"E NC OC PC QC","900":"LC MC"},H:{"2":"eC"},I:{"1":"H","16":"mB fC gC hC","388":"jC kC","900":"I iC yB"},J:{"16":"D","388":"A"},K:{"1":"b","16":"A B jB xB","900":"C kB"},L:{"1":"H"},M:{"1":"a"},N:{"900":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"388":"zC"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J D E F 1B","900":"A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","388":"L G M","900":"C K"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","260":"JB KB","388":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB","900":"I o J D E F A B C K L G M N O p q r s t u v w x y"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","388":"0 1 2 3 4 5 6 7 8 9 v w x y z","900":"G M N O p q r s t u"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB","388":"E F 9B AC","900":"J D 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B FC GC HC IC kB zB","388":"G M N O p q r s t u v w","900":"C JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B","388":"E NC OC PC QC","900":"LC MC"},H:{"2":"eC"},I:{"1":"H","16":"nB fC gC hC","388":"jC kC","900":"I iC 0B"},J:{"16":"D","388":"A"},K:{"1":"b","16":"A B kB zB","900":"C lB"},L:{"1":"H"},M:{"1":"a"},N:{"900":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"388":"0C"}},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 1d92023bd7a4919..82a2a252d318609 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B","4":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B","4":"nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7770741ed25d5e2..ae33961d88ee1e9 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 zB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","129":"I n J D E F A B C K L G M N O o p q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K","257":"L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","257":"J 7B","260":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","257":"MC","260":"LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D","257":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"257":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","129":"I o J D E F A B C K L G M N O p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K","257":"L G M N O p q r s t u"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","257":"J 8B","260":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","257":"MC","260":"LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D","257":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"257":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1f400b1a7b56e8f..290fd05e5c5857f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","4100":"G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","132":"0 1 2 3","260":"4","516":"5 6 7 8 9 AB BB CB DB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","1028":"5 6 7","2052":"8"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r FC GC HC IC jB xB JC kB","1028":"s t u","2052":"v"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","4100":"G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","132":"1 2 3 4","260":"5","516":"6 7 8 9 AB BB CB DB EB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z","1028":"6 7 8","2052":"9"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s FC GC HC IC kB zB JC lB","1028":"t u v","2052":"w"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d1417568c9036a1..7c5a9c03493cf2c 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 zB"},B:{"1":"W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB","194":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC jB xB JC kB","194":"KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","194":"P Q R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB","194":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC kB zB JC lB","194":"LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 e92770ad6c5d000..dcebf5d547019e6 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 zB","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB","1025":"oB TB UB b VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C"},E:{"2":"5B sB","513":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","644":"I n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC"},G:{"513":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","644":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"H jC kC","132":"mB I fC gC hC iC yB"},J:{"1":"A","132":"D"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","132":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J D 1B","132":"A","260":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB","1025":"pB UB VB b WB XB YB ZB aB bB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C"},E:{"2":"6B tB","513":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","644":"I o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC"},G:{"513":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","644":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"H jC kC","132":"nB I fC gC hC iC 0B"},J:{"1":"A","132":"D"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","132":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 0464605b32c410e..fd1f938451b8eee 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB 1B 2B","1028":"e f g h i j k l a m H qB rB","3076":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d"},D:{"1":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB","260":"LB MB","516":"NB OB PB QB RB"},E:{"2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC BC","4100":"G CC uB vB wB DC lB EC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","132":"6 7","260":"8 9","516":"AB BB CB DB EB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","4100":"dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"3076":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","16":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"3076":"zC"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","1028":"e f g h i j k l a m n H rB sB","3076":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d"},D:{"1":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","132":"KB LB","260":"MB NB","516":"OB PB QB RB SB"},E:{"2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC CC","4100":"G DC vB wB xB yB mB EC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","132":"7 8","260":"9 AB","516":"BB CB DB EB FB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","4100":"dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"3076":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"3076":"0C"}},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 ac1c829c543e312..47fe672dcdbee54 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","66":"HB IB JB","129":"KB LB MB NB OB PB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB FC GC HC IC jB xB JC kB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","66":"IB JB KB","129":"LB MB NB OB PB QB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FC GC HC IC kB zB JC lB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 bd4916a1bfd1ebb..124775cdcbd6e5c 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":"zB","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","513":"C K L G M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","66":"1 2"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","8":"I n J D 5B sB 6B 7B","289":"E F A 8B 9B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","8":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB LC MC NC","289":"E OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","8":"mB I fC gC hC iC yB jC kC"},J:{"8":"D A"},K:{"1":"b","8":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","164":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"1B","8":"J D E F A","164":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","513":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","66":"2 3"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","8":"I o J D 6B tB 7B 8B","289":"E F A 9B AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","8":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B LC MC NC","289":"E OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","8":"nB I fC gC hC iC 0B jC kC"},J:{"8":"D A"},K:{"1":"b","8":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","164":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9a0ae24f7dcfc65..4f5a75df23e3763 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v 1B 2B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB jC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS all property"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w 3B 4B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B jC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9b87d6d8f1afc04..eacc247850422b2 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I 1B 2B","33":"n J D E F A B C K L G"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB","33":"J D E 6B 7B 8B","292":"I n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC","33":"C G M N O o p q r s t u v w x y"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"E MC NC OC","164":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"H","33":"I iC yB jC kC","164":"mB fC gC hC"},J:{"33":"D A"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I 3B 4B","33":"o J D E F A B C K L G"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB","33":"J D E 7B 8B 9B","292":"I o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC","33":"C G M N O p q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"E MC NC OC","164":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"H","33":"I iC 0B jC kC","164":"nB fC gC hC"},J:{"33":"D A"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 bebbca2da589dc8..7301b9f1abd03bf 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 1B 2B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n J 5B sB 6B","33":"D E 7B 8B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC","33":"E MC NC OC"},H:{"2":"eC"},I:{"1":"H","16":"mB I fC gC hC iC yB","33":"jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","16":"I","33":"mC nC oC pC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"33":"zC"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B","33":"0 1 2 3 4 5 6 7 8 9 nB I o 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 3B 4B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o J 6B tB 7B","33":"D E 8B 9B"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC","33":"E MC NC OC"},H:{"2":"eC"},I:{"1":"H","16":"nB I fC gC hC iC 0B","33":"jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","16":"I","33":"mC nC oC pC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"33":"0C"}},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 fe6dee391f9a6a1..a15cf8691605edd 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 zB"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","164":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","676":"0 1 2 3 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R"},E:{"1":"vB wB DC lB EC","164":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"aB bB cB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB"},G:{"1":"vB wB lB","164":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","164":"mB I fC gC hC iC yB jC kC"},J:{"164":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","388":"B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"164":"zC"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m n H","33":"S","164":"P Q R","388":"C K L G M N O"},C:{"1":"Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","164":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","676":"0 1 2 3 4 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"S","164":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R"},E:{"1":"wB xB yB mB EC","164":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"bB cB dB","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB"},G:{"1":"wB xB yB mB","164":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","164":"nB I fC gC hC iC 0B jC kC"},J:{"164":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","388":"B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"164":"0C"}},B:5,C:"CSS Appearance"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js index 53adc523fdabf5f..4cdbb9582fd7ae3 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"c d e f g h i j k l a m H"},C:{"2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z","132":"c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB FC GC HC IC jB xB JC kB","132":"hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","132":"b"},L:{"132":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC","132":"lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"132":"zC"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","132":"c d e f g h i j k l a m n H"},C:{"2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z","132":"c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB FC GC HC IC kB zB JC lB","132":"iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","132":"b"},L:{"132":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC","132":"mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"132":"0C"}},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 614b72592bb00bf..7c0a939b53d7621 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js @@ -1 +1 @@ -module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U 1B 2B"},M:{"1":"a"},A:{"2":"J D E F A B zB"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},K:{"2":"A B C jB xB kB","33":"b"},E:{"1":"G CC uB vB wB DC lB","2":"EC","33":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC BC"},G:{"1":"dC uB vB wB lB","33":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},I:{"2":"mB I fC gC hC iC yB","33":"H jC kC"}},B:6,C:":autofill CSS pseudo-class"}; +module.exports={A:{D:{"33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U 3B 4B"},M:{"1":"a"},A:{"2":"J D E F A B 1B"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},K:{"2":"A B C kB zB lB","33":"b"},E:{"1":"G DC vB wB xB yB mB","2":"EC","33":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC CC"},G:{"1":"dC vB wB xB yB mB","33":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},I:{"2":"nB I fC gC hC iC 0B","33":"H jC kC"}},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 7aacb52a5564112..efec0ad830918eb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M","257":"N O"},C:{"1":"H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB 1B 2B","578":"aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m"},D:{"1":"gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB"},E:{"2":"I n J D E 5B sB 6B 7B 8B","33":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E sB KC yB LC MC NC OC","33":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"578":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I","194":"mC nC oC pC qC tB rC"},Q:{"194":"xC"},R:{"194":"yC"},S:{"2":"zC"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M","257":"N O"},C:{"1":"n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB 3B 4B","578":"bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m"},D:{"1":"hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB"},E:{"2":"I o J D E 6B tB 7B 8B 9B","33":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E tB KC 0B LC MC NC OC","33":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"578":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I","194":"mC nC oC pC qC uB rC"},Q:{"194":"yC"},R:{"194":"zC"},S:{"2":"0C"}},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 f9f84c04d2c2924..7a300d9d0d19dc9 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 028d280f468ca2f..481ba8a4cddcdeb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y 1B 2B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"FB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","132":"E F A 8B 9B"},F:{"1":"0 1 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q FC GC HC IC jB xB JC kB","260":"2"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","132":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 I o J D E F A B C K L G M N O p q r s t u v w x y z","260":"GB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","132":"E F A 9B AC"},F:{"1":"0 1 2 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r FC GC HC IC kB zB JC lB","260":"3"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","132":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6c5b8ffdff9e344..32c46324dc18e75 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 zB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"2":"I n J D E F A B C K L G M N O o p q","164":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J 5B sB 6B","164":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F FC GC HC IC","129":"B C jB xB JC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB LC MC","164":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"132":"eC"},I:{"2":"mB I fC gC hC iC yB","164":"H jC kC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C jB xB kB","164":"b"},L:{"164":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"1":"zC"}},B:5,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"2":"I o J D E F A B C K L G M N O p q r","164":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J 6B tB 7B","164":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F FC GC HC IC","129":"B C kB zB JC lB","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B LC MC","164":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"132":"eC"},I:{"2":"nB I fC gC hC iC 0B","164":"H jC kC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C kB zB lB","164":"b"},L:{"164":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"1":"0C"}},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 cebc66b007c4bc8..493cc4ca7135d86 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","33":"1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"I n J D E F"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"n","164":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"KC yB","164":"sB"},H:{"2":"eC"},I:{"1":"I H iC yB jC kC","164":"mB fC gC hC"},J:{"1":"A","33":"D"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","33":"3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"I o J D E F"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"o","164":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"KC 0B","164":"tB"},H:{"2":"eC"},I:{"1":"I H iC 0B jC kC","164":"nB fC gC hC"},J:{"1":"A","33":"D"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 4e6239be0eb6438..e9d6b6f9332908f 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"5B sB","33":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"4 5 6 7 8 9 F B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"33":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"H","33":"mB I fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"mC nC oC pC qC tB rC sC tC uC vC lB wC","33":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"2":"6B tB","33":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"5 6 7 8 9 F B C AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 G M N O p q r s t u v w x y z"},G:{"33":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"H","33":"nB I fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","33":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1112c90c5354411..07441864d02fb49 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 c6acd2a46e30d3f..cd2aa4508fbc63a 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 zB"},B:{"1":"k l a m H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g","322":"h i j"},C:{"1":"i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e 1B 2B","194":"f g h"},D:{"1":"k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g","322":"h i j"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U FC GC HC IC jB xB JC kB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Cascade Layers"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"k l a m n H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g","322":"h i j"},C:{"1":"i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e 3B 4B","194":"f g h"},D:{"1":"k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g","322":"h i j"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U FC GC HC IC kB zB JC lB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"xC","2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 a112ad132e63535..bb53c20680973b1 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 8ac5003f959988a..52a626a02ece3d0 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 zB"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","3138":"O"},C:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","132":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B","644":"GB HB IB JB KB LB MB"},D:{"2":"I n J D E F A B C K L G M N O o p q r s","260":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","292":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"I n J 5B sB 6B 7B","260":"L G AC BC CC uB vB wB DC lB EC","292":"D E F A B C K 8B 9B tB jB kB"},F:{"2":"F B C FC GC HC IC jB xB JC kB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB"},G:{"2":"sB KC yB LC MC","260":"XC YC ZC aC bC cC dC uB vB wB lB","292":"E NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","260":"H","292":"jC kC"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","260":"b"},L:{"260":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"292":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"292":"xC"},R:{"260":"yC"},S:{"644":"zC"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N","260":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","3138":"O"},C:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","132":"0 1 2 3 4 5 6 7 8 9 I o 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 3B 4B","644":"HB IB JB KB LB MB NB"},D:{"2":"I o J D E F A B C K L G M N O p q r s t","260":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","292":"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"},E:{"2":"I o J 6B tB 7B 8B","260":"L G BC CC DC vB wB xB yB mB EC","292":"D E F A B C K 9B AC uB kB lB"},F:{"2":"F B C FC GC HC IC kB zB JC lB","260":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","292":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z AB BB"},G:{"2":"tB KC 0B LC MC","260":"XC YC ZC aC bC cC dC vB wB xB yB mB","292":"E NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","260":"H","292":"jC kC"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","260":"b"},L:{"260":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"292":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"292":"yC"},R:{"260":"zC"},S:{"644":"0C"}},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 0709aba448f14dd..66af2788ce7cf82 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 zB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B"},D:{"16":"I n J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n 5B sB 6B","33":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"16":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"16":"mB I fC gC hC iC yB jC kC","33":"H"},J:{"16":"D A"},K:{"2":"A B C jB xB kB","33":"b"},L:{"16":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"16":"yC"},S:{"1":"zC"}},B:5,C:"CSS color-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"16":"I o J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o 6B tB 7B","33":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"16":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"16":"nB I fC gC hC iC 0B jC kC","33":"H"},J:{"16":"D A"},K:{"2":"A B C kB zB lB","33":"b"},L:{"16":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"16":"zC"},S:{"1":"0C"}},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 69a4b6ffab83da6..4f332c544c5b3ab 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B","132":"B C K L tB jB kB AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC","132":"SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC","132":"B C K L uB kB lB BC CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC","132":"SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6887b672e3706ef..b7d35c70c0b5de2 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB 1B 2B","578":"fB gB hB iB P Q R pB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"nB SB oB TB UB b VB WB XB YB"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FC GC HC IC jB xB JC kB","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB 3B 4B","578":"gB hB iB jB P Q R qB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB","194":"oB TB pB UB VB b WB XB YB ZB"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC kB zB JC lB","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 e8048b92c7882b9..9db07b42cab6b7c 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c","194":"e f g h i j k l a m H qB","450":"d","516":"rB"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB FC GC HC IC jB xB JC kB","194":"P Q R pB S T U V W X Y Z"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Container Queries (Size)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c","194":"e f g h i j k l a m n H","450":"d","516":"rB"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB FC GC HC IC kB zB JC lB","194":"P Q R qB S T U V W X Y Z"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"CSS Container Queries (Size)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js index 6a0be22d3810cec..17a1964fc0b2751 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d","194":"a m H qB","450":"e f g h i j k l"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB FC GC HC IC jB xB JC kB","194":"P Q R pB S T U V W X Y Z"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Container Query Units"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d","194":"a m n H","450":"e f g h i j k l"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB FC GC HC IC kB zB JC lB","194":"P Q R qB S T U V W X Y Z"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"CSS Container Query Units"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js index db8a27c5c1a5815..f5236d2e5aaa3a4 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB"},D:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","66":"KB"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","66":"7 8"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","194":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB"},D:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","66":"LB"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","66":"8 9"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 9bba98f958c77c7..3288f4fda9ad234 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 zB"},B:{"1":"U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3df42661710349a..f97c2c5caf5c237 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 697baa161f93481..6423a0145a86252 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 zB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"e f g h i j k l a m H qB rB","2":"0B mB 1B","513":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d","545":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","1025":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","164":"J","4644":"D E F 7B 8B 9B"},F:{"2":"F B G M N O o p q r s t u v w FC GC HC IC jB xB","545":"C JC kB","1025":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","4260":"LC MC","4644":"E NC OC PC QC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B jB xB","545":"C kB","1025":"b"},L:{"1025":"H"},M:{"545":"a"},N:{"2340":"A B"},O:{"1":"lC"},P:{"1025":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1025":"xC"},R:{"1025":"yC"},S:{"4097":"zC"}},B:7,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J 1B","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"e f g h i j k l a m n H rB sB","2":"2B nB 3B","513":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d","545":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","1025":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","164":"J","4644":"D E F 8B 9B AC"},F:{"2":"F B G M N O p q r s t u v w x FC GC HC IC kB zB","545":"C JC lB","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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","4260":"LC MC","4644":"E NC OC PC QC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B kB zB","545":"C lB","1025":"b"},L:{"1025":"H"},M:{"545":"a"},N:{"2340":"A B"},O:{"1":"lC"},P:{"1025":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1025":"yC"},R:{"1025":"zC"},S:{"4097":"0C"}},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 1e51e4c60766f1b..5e808fb7f4deaf9 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 zB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"I n J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","33":"J D E F 6B 7B 8B 9B"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","33":"E LC MC NC OC PC QC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","33":"H jC kC"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","33":"b"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"2":"zC"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"I o J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","33":"J D E F 7B 8B 9B AC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","33":"E LC MC NC OC PC QC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","33":"H jC kC"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","33":"b"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"2":"0C"}},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 702d399d5a14637..1f8ec250cc81c68 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB","132":"J D E F A 6B 7B 8B 9B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B FC GC HC IC jB xB","132":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","260":"C JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC MC","132":"E NC OC PC QC RC"},H:{"260":"eC"},I:{"1":"H","16":"mB fC gC hC","132":"I iC yB jC kC"},J:{"16":"D","132":"A"},K:{"1":"b","16":"A B C jB xB","260":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","132":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:7,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B"},D:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB","132":"J D E F A 7B 8B 9B AC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B FC GC HC IC kB zB","132":"0 1 2 3 4 5 6 7 G M N O p q r s t u v w x y z","260":"C JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC","132":"E NC OC PC QC RC"},H:{"260":"eC"},I:{"1":"H","16":"nB fC gC hC","132":"I iC 0B jC kC"},J:{"16":"D","132":"A"},K:{"1":"b","16":"A B C kB zB","260":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","132":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 71c9b4c094d6e1d..f811b3c580452ef 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 zB"},B:{"2":"C K L G M N O Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"B","2":"I n J D E F A C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"B","2":"I o J D E F A C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6e9475cb5686f90..b3b17602f7e46d0 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 zB","164":"A B"},B:{"66":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u v w x","66":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","66":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"292":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A b","292":"B C jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"164":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"66":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J D E F 1B","164":"A B"},B:{"66":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"I o J D E F A B C K L G M N O p q r s t u v w x y","66":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","66":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"292":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A b","292":"B C kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"164":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"66":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 7c0b338e7707f8c..d1311e21b0fab15 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z","194":"c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"33":"zC"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z","194":"c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB","322":"EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"33":"0C"}},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 7558cefe6fc7157..39b797b9781c4c1 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O","260":"P Q R S T U V W X"},C:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","260":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b","260":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X"},E:{"1":"lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","260":"L G AC BC CC uB vB wB DC","772":"C K jB kB"},F:{"1":"gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC jB xB JC kB","260":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC","260":"aC bC cC dC uB vB wB","772":"UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC lB wC","2":"I mC nC oC pC","260":"qC tB rC sC tC uC"},Q:{"260":"xC"},R:{"2":"yC"},S:{"260":"zC"}},B:5,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","260":"P Q R S T U V W X"},C:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","194":"SB oB TB pB UB VB b","260":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X"},E:{"1":"mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","260":"L G BC CC DC vB wB xB yB","772":"C K kB lB"},F:{"1":"hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC kB zB JC lB","260":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC","260":"aC bC cC dC vB wB xB yB","772":"UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC mB wC xC","2":"I mC nC oC pC","260":"qC uB rC sC tC uC"},Q:{"260":"yC"},R:{"2":"zC"},S:{"260":"0C"}},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 5561d5f6f25ff13..6213cb9203b888b 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","164":"0B mB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"33":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"33":"zC"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","164":"2B nB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"33":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"33":"0C"}},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 d83d45452ecf3bb..192d6007a198777 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b 1B 2B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","132":"B"},F:{"1":"PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC","132":"TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b 3B 4B"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","132":"B"},F:{"1":"QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC","132":"TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 b1a0c55ad21013b..1a4c1af4d77fdca 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 zB","33":"A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"33":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J D E F 1B","33":"A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"33":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 5be2c267a0154d9..43d0d90e900e23a 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1b1d8743b351bca..e34b2972d8907bc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z c d e f g h i j k l a m H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R 1B 2B"},M:{"1":"a"},A:{"2":"J D E F zB","33":"A B"},F:{"1":"fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB"},K:{"1":"b","2":"A B C jB xB kB"},E:{"1":"G BC CC uB vB wB DC lB","2":"EC","33":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC"},G:{"1":"cC dC uB vB wB lB","33":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},P:{"1":"vC lB wC","33":"I mC nC oC pC qC tB rC sC tC uC"},I:{"1":"H","2":"mB I fC gC hC iC yB","33":"jC kC"}},B:6,C:"::file-selector-button CSS pseudo-element"}; +module.exports={A:{D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X"},L:{"1":"H"},B:{"1":"Y Z c d e f g h i j k l a m n H","33":"C K L G M N O P Q R S T U V W X"},C:{"1":"qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R 3B 4B"},M:{"1":"a"},A:{"2":"J D E F 1B","33":"A B"},F:{"1":"gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB"},K:{"1":"b","2":"A B C kB zB lB"},E:{"1":"G CC DC vB wB xB yB mB","2":"EC","33":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC"},G:{"1":"cC dC vB wB xB yB mB","33":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},P:{"1":"vC mB wC xC","33":"I mC nC oC pC qC uB rC sC tC uC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","33":"jC kC"}},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 7245c2a4d0c492f..23f974e2b461106 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC","33":"PC QC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC","33":"PC QC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 94dbd14805b257b..12aee6d4b37e07f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","1028":"K L G M N O","1346":"C"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","196":"3","516":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z 2B"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J D E F 7B 8B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 G M N O o p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"E MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","33":"jC kC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","33":"I mC nC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","1028":"K L G M N O","1346":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","196":"4","516":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z 4B"},D:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J D E F 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"E MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","33":"jC kC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","33":"I mC nC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7d90fc53e4d77b3..103a3c6a98c3ca1 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":"zB","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","132":"mB","260":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"n J D E","132":"I"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"n 5B","132":"I sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","16":"F FC","260":"B GC HC IC jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"1":"eC"},I:{"1":"mB I H iC yB jC kC","16":"fC gC","132":"hC"},J:{"1":"D A"},K:{"1":"C b kB","260":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"F A B","16":"1B","516":"E","1540":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","132":"nB","260":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"o J D E","132":"I"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"o 6B","132":"I tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","16":"F FC","260":"B GC HC IC kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"1":"eC"},I:{"1":"nB I H iC 0B jC kC","16":"fC gC","132":"hC"},J:{"1":"D A"},K:{"1":"C b lB","260":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d00dc999b94cd8c..dce4c433ff024a0 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 dda569c5df5860b..3006168aad9368b 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":"zB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B tB jB kB AC BC CC uB vB wB DC lB EC","1025":"9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","132":"LC MC NC"},H:{"2":"eC"},I:{"1":"mB H jC kC","260":"fC gC hC","513":"I iC yB"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"D E F A B","2":"1B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B uB kB lB BC CC DC vB wB xB yB mB EC","1025":"AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","132":"LC MC NC"},H:{"2":"eC"},I:{"1":"nB H jC kC","260":"fC gC hC","513":"I iC 0B"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e4c7892acf8e2e2..6f054607a172ff2 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 zB"},B:{"1":"V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","161":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T"},D:{"1":"V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB","328":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC BC","578":"G CC uB"},F:{"1":"cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB FC GC HC IC jB xB JC kB","328":"WB XB YB ZB aB bB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","578":"dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"161":"zC"}},B:7,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","328":"P Q R S T U"},C:{"1":"U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","161":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T"},D:{"1":"V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB","328":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC CC","578":"G DC vB"},F:{"1":"dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB FC GC HC IC kB zB JC lB","328":"XB YB ZB aB bB cB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC","578":"dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"161":"0C"}},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 afb23b5452d7a4c..29de1e632355174 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B"},D:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"nB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FC GC HC IC jB xB JC kB","194":"FB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB","194":"oB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC kB zB JC lB","194":"GB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"16":"zC"},S:{"2":"0C"}},B:7,C:":focus-within CSS pseudo-class"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js index ce0bf649f598eb1..3f173d392a29893 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V FC GC HC IC jB xB JC kB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS font-palette"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V FC GC HC IC kB zB JC lB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"CSS font-palette"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js index fd4149a3ca08483..ad216d0de50ae2f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB 1B 2B","194":"FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB","66":"IB JB KB LB MB NB OB PB QB RB nB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","66":"5 6 7 8 9 AB BB CB DB EB FB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I","66":"mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","194":"GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","66":"JB KB LB MB NB OB PB QB RB SB oB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","66":"6 7 8 9 AB BB CB DB EB FB GB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I","66":"mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 e04e9c8fbfad384..2c7f839bb3a3aac 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E 1B 2B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E 3B 4B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b0fff5e91fcc3a6..a6042d3805576e8 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 zB","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"F A B","2":"J D 1B","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 acbd30f57fd27ff..8fe57ee012bc67d 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","260":"0 1 2 3 4 M N O o p q r s t u v w x y z","292":"I n J D E F A B C K L G 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"A B C K L G M N O o p q r s t u","548":"I n J D E F"},E:{"1":"vB wB DC lB EC","2":"5B sB","260":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB","292":"J 6B","804":"I n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC","33":"C JC","164":"jB xB"},G:{"1":"vB wB lB","260":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB","292":"LC MC","804":"sB KC yB"},H:{"2":"eC"},I:{"1":"H jC kC","33":"I iC yB","548":"mB fC gC hC"},J:{"1":"A","548":"D"},K:{"1":"b kB","2":"A B","33":"C","164":"jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","260":"0 1 2 3 4 5 M N O p q r s t u v w x y z","292":"I o J D E F A B C K L G 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"A B C K L G M N O p q r s t u v","548":"I o J D E F"},E:{"1":"wB xB yB mB EC","2":"6B tB","260":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB","292":"J 7B","804":"I o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC","33":"C JC","164":"kB zB"},G:{"1":"wB xB yB mB","260":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB","292":"LC MC","804":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H jC kC","33":"I iC 0B","548":"nB fC gC hC"},J:{"1":"A","548":"D"},K:{"1":"b lB","2":"A B","33":"C","164":"kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},B:4,C:"CSS Gradients"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js index 1503aaba9f4c667..8c02d118411e104 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"CSS Grid animation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:4,C:"CSS Grid animation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js index e5ea01ec8c6579d..76c813bb72242b4 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 zB","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","292":"C K L G"},C:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O 1B 2B","8":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z","584":"9 AB BB CB DB EB FB GB HB IB JB KB","1025":"LB MB"},D:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t","8":"u v w x","200":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","1025":"QB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","8":"J D E F A 7B 8B 9B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB","200":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","8":"E MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC","8":"yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"292":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"mC","8":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J D E 1B","8":"F","292":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","292":"C K L G"},C:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O 3B 4B","8":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z","584":"AB BB CB DB EB FB GB HB IB JB KB LB","1025":"MB NB"},D:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u","8":"v w x y","200":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","1025":"RB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","8":"J D E F A 8B 9B AC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB","200":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","8":"E MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC","8":"0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"292":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"mC","8":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 b762c4a8515ce52..5c58ad78fa025c4 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 ebfa3f38f550ad4..459322609916cb0 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l","194":"a m H qB"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m 3B 4B","322":"n H rB sB"},D:{"1":"rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l","194":"a m n H"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 e7a9b9f215b808f..d1aa7ffed8f6026 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"16":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"16":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"16":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"16":"A B C b jB xB kB"},L:{"16":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"16":"zC"}},B:5,C:"CSS4 Hyphenation"}; +module.exports={A:{A:{"16":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB"},E:{"16":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"16":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"16":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"16":"A B C b kB zB lB"},L:{"16":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"16":"0C"}},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 b7b5b2ebe61f259..da377bd6bc9790b 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 zB","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"X Y Z c d e f g h i j k l a m H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},D:{"1":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"2":"I n 5B sB","33":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC","33":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"4":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I","132":"mC"},Q:{"2":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:5,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J D E F 1B","33":"A B"},B:{"33":"C K L G M N O","132":"P Q R S T U V W","260":"X Y Z c d e f g h i j k l a m n H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 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"},D:{"1":"X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB","132":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W"},E:{"2":"I o 6B tB","33":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC","33":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"4":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","132":"mC"},Q:{"2":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 db168d9c0d290b3..e29a618684c0526 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u 1B 2B"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q","257":"R S T U V W X"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB FC GC HC IC jB xB JC kB","257":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"bC cC dC uB vB wB lB","132":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC lB wC","2":"I mC nC oC pC qC tB rC sC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v 3B 4B"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q","257":"R S T U V W X"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB FC GC HC IC kB zB JC lB","257":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"bC cC dC vB wB xB yB mB","132":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 b74af451cfafe64..7b8336836ca88fd 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 zB"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U 1B 2B","66":"V W","257":"Y Z c d e f g h i j k l a m H qB rB","772":"X"},D:{"2":"I n J D E F A B C K L G M N O o p","164":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n 5B sB 6B","132":"A B C K tB jB kB AC","164":"J D E F 7B 8B 9B","516":"L G BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB LC","132":"RC SC TC UC VC WC XC YC ZC aC","164":"E MC NC OC PC QC","516":"bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","164":"H jC kC"},J:{"2":"D","164":"A"},K:{"2":"A B C jB xB kB","164":"b"},L:{"164":"H"},M:{"257":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"2":"zC"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U 3B 4B","66":"V W","257":"Y Z c d e f g h i j k l a m n H rB sB","772":"X"},D:{"2":"I o J D E F A B C K L G M N O p q","164":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o 6B tB 7B","132":"A B C K uB kB lB BC","164":"J D E F 8B 9B AC","516":"L G CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B LC","132":"RC SC TC UC VC WC XC YC ZC aC","164":"E MC NC OC PC QC","516":"bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","164":"H jC kC"},J:{"2":"D","164":"A"},K:{"2":"A B C kB zB lB","164":"b"},L:{"164":"H"},M:{"257":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"2":"0C"}},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 be013d0ee95fb07..c244d5e6349a553 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C","260":"K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","516":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I","16":"n J D E F A B C K L","260":"LB","772":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n","772":"J D E F A 6B 7B 8B 9B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F FC","260":"8 B C GC HC IC jB xB JC kB","772":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","772":"E LC MC NC OC PC QC RC"},H:{"132":"eC"},I:{"1":"H","2":"mB fC gC hC","260":"I iC yB jC kC"},J:{"2":"D","260":"A"},K:{"1":"b","260":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","260":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"516":"zC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C","260":"K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","516":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I","16":"o J D E F A B C K L","260":"MB","772":"0 1 2 3 4 5 6 7 8 9 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o","772":"J D E F A 7B 8B 9B AC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F FC","260":"9 B C GC HC IC kB zB JC lB","772":"0 1 2 3 4 5 6 7 8 G M N O p q r s t u v w x y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","772":"E LC MC NC OC PC QC RC"},H:{"132":"eC"},I:{"1":"H","2":"nB fC gC hC","260":"I iC 0B jC kC"},J:{"2":"D","260":"A"},K:{"1":"b","260":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","260":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"516":"0C"}},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 2ac57133c151354..47a7adc789e636a 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 zB","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","388":"I n"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n J 5B sB","132":"D E F A 7B 8B 9B","388":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B FC GC HC IC jB xB","132":"G M N O o p q r s t u","516":"C JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC MC","132":"E NC OC PC QC RC"},H:{"516":"eC"},I:{"1":"H","16":"mB fC gC hC kC","132":"jC","388":"I iC yB"},J:{"16":"D","132":"A"},K:{"1":"b","16":"A B C jB xB","516":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"132":"zC"}},B:7,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E 1B","132":"A B","388":"F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 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","388":"I o"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 G M N O p q r s t u v w x y z"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o J 6B tB","132":"D E F A 8B 9B AC","388":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B FC GC HC IC kB zB","132":"G M N O p q r s t u v","516":"C JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC","132":"E NC OC PC QC RC"},H:{"516":"eC"},I:{"1":"H","16":"nB fC gC hC kC","132":"jC","388":"I iC 0B"},J:{"16":"D","132":"A"},K:{"1":"b","16":"A B C kB zB","516":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"132":"0C"}},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 85919b64c2ed248..cfa541a3939489b 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E 5B sB 6B 7B 8B","4":"F","164":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC","164":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E 6B tB 7B 8B 9B","4":"F","164":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC","164":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 93a33d1e32868e7..a79577d5f7f812f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"I n J D E F A B C K L G M N O 1B 2B","164":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"I o J D E F A B C K L G M N O 3B 4B","164":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 49abcb64501e07e..e92b39de6489c4b 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"LCH and Lab color values"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:4,C:"LCH and Lab color values"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js index 4856c64099c789c..cc35782231b33e1 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":"zB","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B","132":"I n J sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F FC","132":"B C G M GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"2":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"mB I hC iC yB"},J:{"132":"D A"},K:{"1":"b","132":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"F A B","16":"1B","132":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G 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 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B","132":"I o J tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F FC","132":"B C G M GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"2":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"nB I hC iC 0B"},J:{"132":"D A"},K:{"1":"b","132":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 f2f43de93d4c27d..84b291382d24460 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 zB"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB 1B 2B","33":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"16":"I n J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I 5B sB","33":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB","33":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"16":"fC gC","33":"mB I H hC iC yB jC kC"},J:{"33":"D A"},K:{"2":"A B C jB xB kB","33":"b"},L:{"33":"H"},M:{"33":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"2":"zC"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB 3B 4B","33":"ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"16":"I o J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I 6B tB","33":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B","33":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"16":"fC gC","33":"nB I H hC iC 0B jC kC"},J:{"33":"D A"},K:{"2":"A B C kB zB lB","33":"b"},L:{"33":"H"},M:{"33":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"2":"0C"}},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 83fe25c2826fa78..2b45ca8545a9a56 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","164":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","1540":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","292":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB","1028":"W X","1540":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V"},E:{"1":"G CC uB vB wB DC lB EC","292":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","1028":"BC","1540":"K L kB AC"},F:{"1":"gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","1028":"eB fB","1540":"PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB"},G:{"1":"dC uB vB wB lB","292":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC","1028":"cC","1540":"WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","292":"mB I fC gC hC iC yB jC kC"},J:{"292":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"1":"vC lB wC","292":"I mC nC oC pC qC","1540":"tB rC sC tC uC"},Q:{"1540":"xC"},R:{"1540":"yC"},S:{"1540":"zC"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","1028":"W X","1540":"P Q R S T U V"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","164":"0 1 2 3 4 5 6 7 8 9 nB I o 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 3B 4B","1540":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","292":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB","1028":"W X","1540":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V"},E:{"1":"G DC vB wB xB yB mB EC","292":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","1028":"CC","1540":"K L lB BC"},F:{"1":"hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","292":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB","1028":"fB gB","1540":"QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB"},G:{"1":"dC vB wB xB yB mB","292":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC","1028":"cC","1540":"WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","292":"nB I fC gC hC iC 0B jC kC"},J:{"292":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"1":"vC mB wC xC","292":"I mC nC oC pC qC","1540":"uB rC sC tC uC"},Q:{"1540":"yC"},R:{"1540":"zC"},S:{"1540":"0C"}},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 7dab42d61f523f3..edfd25e24e2dcb3 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 zB"},B:{"1":"V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S T U"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB 1B 2B"},D:{"1":"V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U"},E:{"1":"EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","129":"C K L G jB kB AC BC CC uB vB wB DC lB"},F:{"1":"cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S T U"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB 3B 4B"},D:{"1":"V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U"},E:{"1":"EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","129":"C K L G kB lB BC CC DC vB wB xB yB mB"},F:{"1":"dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 accd9be1c249ae3..acf7f1f12b31339 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 zB"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","3138":"N","12292":"O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"vB wB DC lB EC","2":"5B sB","164":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"2":"F B C FC GC HC IC jB xB JC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"vB wB lB","164":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"164":"H jC kC","676":"mB I fC gC hC iC yB"},J:{"164":"D A"},K:{"2":"A B C jB xB kB","164":"b"},L:{"164":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"260":"zC"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M","164":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","3138":"N","12292":"O"},C:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","260":"0 1 2 3 4 5 6 7 8 9 I o 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 MB 3B 4B"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"wB xB yB mB EC","2":"6B tB","164":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"2":"F B C FC GC HC IC kB zB JC lB","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"wB xB yB mB","164":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"164":"H jC kC","676":"nB I fC gC hC iC 0B"},J:{"164":"D A"},K:{"2":"A B C kB zB lB","164":"b"},L:{"164":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"260":"0C"}},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 33598487c1fa1ed..46520a7fee873cd 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 zB"},B:{"1":"X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B","548":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b","196":"VB WB XB","1220":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n","164":"J D E 6B 7B 8B","260":"F A B C K 9B tB jB kB AC"},F:{"1":"fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","196":"LB MB NB","1220":"OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"bC cC dC uB vB wB lB","16":"sB KC yB LC MC","164":"E NC OC","260":"PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","16":"mB fC gC hC","164":"I iC yB jC kC"},J:{"16":"D","164":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"1":"vC lB wC","164":"I mC nC oC pC qC tB rC sC tC uC"},Q:{"1220":"xC"},R:{"164":"yC"},S:{"548":"zC"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","1220":"P Q R S T U V W"},C:{"1":"jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B","548":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB"},D:{"1":"X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b","196":"WB XB YB","1220":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o","164":"J D E 7B 8B 9B","260":"F A B C K AC uB kB lB BC"},F:{"1":"gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","164":"0 1 2 3 4 5 6 7 8 9 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","196":"MB NB OB","1220":"PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC","164":"E NC OC","260":"PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"1":"H","16":"nB fC gC hC","164":"I iC 0B jC kC"},J:{"16":"D","164":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"1":"vC mB wC xC","164":"I mC nC oC pC qC uB rC sC tC uC"},Q:{"1220":"yC"},R:{"164":"zC"},S:{"548":"0C"}},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 65a84d6ecb19627..2688962c19e272b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB 1B 2B"},D:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","132":"C K jB kB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB FC GC HC IC jB xB JC kB"},G:{"1":"aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC","132":"UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I mC nC oC pC qC tB rC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB 3B 4B"},D:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","132":"C K kB lB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB FC GC HC IC kB zB JC lB"},G:{"1":"aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC","132":"UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 ede695411ade6c8..a76deae28133e51 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},B:5,C:"Media Queries: interaction media features"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js index a8124960ad46d6a..95edf093aeaa922 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B"},D:{"1":"qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Media Queries: Range Syntax"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B"},D:{"1":"H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:4,C:"Media Queries: Range Syntax"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js index 3f2c1873945c046..a2cce42938badb0 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 zB","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","1028":"C K L G M N O"},C:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","260":"I n J D E F A B C K L G 1B 2B","1028":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","548":"I n J D E F A B C K L G M N O o p q r s t u v w x","1028":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB"},E:{"1":"lB EC","2":"5B sB","548":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F","548":"B C FC GC HC IC jB xB JC","1028":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"lB","16":"sB","548":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"132":"eC"},I:{"1":"H","16":"fC gC","548":"mB I hC iC yB","1028":"jC kC"},J:{"548":"D A"},K:{"1":"b kB","548":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","1028":"I mC nC oC pC qC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J D E 1B","132":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","1028":"C K L G M N O"},C:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","260":"I o J D E F A B C K L G 3B 4B","1028":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","548":"I o J D E F A B C K L G M N O p q r s t u v w x y","1028":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB"},E:{"1":"mB EC","2":"6B tB","548":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"1":"PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F","548":"B C FC GC HC IC kB zB JC","1028":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB"},G:{"1":"mB","16":"tB","548":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"132":"eC"},I:{"1":"H","16":"fC gC","548":"nB I hC iC 0B","1028":"jC kC"},J:{"548":"D A"},K:{"1":"b lB","548":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","1028":"I mC nC oC pC qC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},B:4,C:"Media Queries: resolution feature"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js index 5e46a609ae3e85a..f2c2f3a03ae49b0 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 zB"},B:{"16":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B","16":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB","16":"rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"16":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","16":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 289660744359367..a449f014f46f544 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 zB","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","129":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","129":"I n J 6B","388":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","129":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","129":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J D E 1B","129":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","129":"I o J D E F A B C K L G M N O p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","129":"I o J 7B","388":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","129":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","129":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 57b84e3409a0760..6257df47d6df3de 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x","194":"0 1 2 3 4 5 6 7 8 9 y z"},E:{"2":"I n J D 5B sB 6B 7B","260":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB LC MC NC","260":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y","194":"0 1 2 3 4 5 6 7 8 9 z AB"},E:{"2":"I o J D 6B tB 7B 8B","260":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B LC MC NC","260":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 42988ad9e83c59c..ffaccf955503129 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB 1B 2B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","194":"CB DB EB"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB","194":"0 1 z"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB 3B 4B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"DB EB FB"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC 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 OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"0 1 2"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 50a56f6bdf59d37..a8a19de97f0ade2 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e665a096e6bdd74..b71c6f0bd461faf 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Nesting"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 573a7631a7e083b..c57c7d6ac0128a3 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 zB"},B:{"1":"X Y Z c d e f g h i j k l a m H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S 1B 2B"},D:{"1":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC lB wC","2":"I mC nC oC pC qC tB rC sC tC uC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O Q R S T U V W","16":"P"},C:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S 3B 4B"},D:{"1":"X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC uC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 b643136289b1d35..0483893ddd991e5 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js index da72ad9cad774a1..156c3e552755853 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"F A B","4":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7bae38329f0513d..ed622c2e05189ed 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F FC","132":"B C GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"132":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","132":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F FC","132":"B C GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"132":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","132":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d005864e8e4290d..e8918705a0226eb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB 1B 2B"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB 3B 4B"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 8cbe240ef284b72..886a22b2b532d1f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"I n J D E F A B 6B 7B 8B 9B tB jB","16":"5B sB","130":"C K L G kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC","16":"sB","130":"VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"I o J D E F A B 7B 8B 9B AC uB kB","16":"6B tB","130":"C K L G lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC","16":"tB","130":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 1e82eabb3df6da2..b632425b3305d3a 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 zB"},B:{"1":"Z c d e f g h i j k l a m H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","260":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q","388":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB 1B 2B"},D:{"1":"Z c d e f g h i j k l a m H qB rB 3B 4B","260":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB"},E:{"1":"lB EC","260":"L G AC BC CC uB vB wB DC","388":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"gB hB iB P Q R pB S T U V W X Y Z","260":"OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC jB xB JC kB"},G:{"1":"lB","260":"aC bC cC dC uB vB wB","388":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"388":"eC"},I:{"1":"H","388":"mB I fC gC hC iC yB jC kC"},J:{"388":"D A"},K:{"1":"b","388":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"388":"A B"},O:{"388":"lC"},P:{"1":"vC lB wC","388":"I mC nC oC pC qC tB rC sC tC uC"},Q:{"388":"xC"},R:{"388":"yC"},S:{"388":"zC"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J D E F A B 1B"},B:{"1":"Z c d e f g h i j k l a m n H","260":"P Q R S T U V W X Y","388":"C K L G M N O"},C:{"1":"R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","260":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q","388":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB 3B 4B"},D:{"1":"Z c d e f g h i j k l a m n H rB sB 5B","260":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y","388":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB"},E:{"1":"mB EC","260":"L G BC CC DC vB wB xB yB","388":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"hB iB jB P Q R qB S T U V W X Y Z","260":"PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB","388":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB FC GC HC IC kB zB JC lB"},G:{"1":"mB","260":"aC bC cC dC vB wB xB yB","388":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"388":"eC"},I:{"1":"H","388":"nB I fC gC hC iC 0B jC kC"},J:{"388":"D A"},K:{"1":"b","388":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"388":"A B"},O:{"388":"lC"},P:{"1":"vC mB wC xC","388":"I mC nC oC pC qC uB rC sC tC uC"},Q:{"388":"yC"},R:{"388":"zC"},S:{"388":"0C"}},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 201200652e2a22d..db76f5fe366e0cb 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 zB","132":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N","516":"O"},C:{"1":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 1B 2B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB","260":"UB b"},E:{"1":"lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC","1090":"G BC CC uB vB wB DC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC jB xB JC kB","260":"JB KB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","1090":"cC dC uB vB wB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N","516":"O"},C:{"1":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB 3B 4B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB","260":"VB b"},E:{"1":"mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC","1090":"G CC DC vB wB xB yB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC kB zB JC lB","260":"KB LB"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","1090":"cC dC vB wB xB yB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"CSS overscroll-behavior"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js index 390783158f852c6..6914e0bc401443b 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 zB"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"772":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","900":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b 1B 2B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"772":"A","900":"I n J D E F B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"16":"F FC","129":"B C GC HC IC jB xB JC kB","900":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"900":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"129":"eC"},I:{"900":"mB I H fC gC hC iC yB jC kC"},J:{"900":"D A"},K:{"129":"A B C jB xB kB","900":"b"},L:{"900":"H"},M:{"900":"a"},N:{"388":"A B"},O:{"900":"lC"},P:{"900":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"900":"xC"},R:{"900":"yC"},S:{"900":"zC"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J D E F 1B"},B:{"388":"C K L G M N O","900":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"772":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","900":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b 3B 4B"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"772":"A","900":"I o J D E F B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"16":"F FC","129":"B C GC HC IC kB zB JC lB","900":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"900":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"129":"eC"},I:{"900":"nB I H fC gC hC iC 0B jC kC"},J:{"900":"D A"},K:{"129":"A B C kB zB lB","900":"b"},L:{"900":"H"},M:{"900":"a"},N:{"388":"A B"},O:{"900":"lC"},P:{"900":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"900":"yC"},R:{"900":"zC"},S:{"900":"0C"}},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 ef2905148f7d9dd..06bac281f4eaa0b 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 zB","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"2":"0B mB I n J D E F A B C K L G M N O 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","132":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"16":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"16":"A B C b jB xB kB"},L:{"1":"H"},M:{"132":"a"},N:{"258":"A B"},O:{"258":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"132":"zC"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J D 1B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N O"},C:{"2":"2B nB I o J D E F A B C K L G M N O 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","132":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"16":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"16":"A B C b kB zB lB"},L:{"1":"H"},M:{"132":"a"},N:{"258":"A B"},O:{"258":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"132":"0C"}},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 2553aaa325d2365..a11240ed46ed94e 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b"},E:{"2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","194":"K L G kB AC BC CC uB vB wB DC lB EC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b"},E:{"2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","194":"K L G lB BC CC DC vB wB xB yB mB EC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f7bc6d9e826dc80..1ccdf60cc67abac 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 zB","292":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"164":"zC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J D E F 1B","292":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","164":"0 1 2 3 4 5 6 7 8 9 I o 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"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"164":"0C"}},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 b60583b72a1803d..40d6a1ad3d3a882 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","36":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","36":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","36":"n J D E F A 6B 7B 8B 9B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","36":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC","36":"E yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","36":"mB I fC gC hC iC yB jC kC"},J:{"36":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","36":"I mC nC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"33":"zC"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","36":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","36":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","36":"o J D E F A 7B 8B 9B AC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","36":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z AB BB CB DB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC","36":"E 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","36":"nB I fC gC hC iC 0B jC kC"},J:{"36":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","36":"I mC nC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"33":"0C"}},B:5,C:"::placeholder CSS pseudo-element"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js index b9a8f6c3fad8c0d..0dfddab9d4fdde1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"I n J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B","33":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h"},M:{"1":"a"},A:{"2":"J D E F A B zB"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},K:{"2":"A B C jB xB kB","33":"b"},E:{"1":"vB wB DC lB","2":"I n 5B sB 6B EC","33":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB"},G:{"1":"vB wB lB","2":"sB KC yB LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},I:{"2":"mB I fC gC hC iC yB","33":"H jC kC"}},B:6,C:"print-color-adjust property"}; +module.exports={A:{D:{"2":"I o J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","33":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h"},M:{"1":"a"},A:{"2":"J D E F A B 1B"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},K:{"2":"A B C kB zB lB","33":"b"},E:{"1":"wB xB yB mB","2":"I o 6B tB 7B EC","33":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB"},G:{"1":"wB xB yB mB","2":"tB KC 0B LC","33":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},I:{"2":"nB I fC gC hC iC 0B","33":"H jC kC"}},B:6,C:"print-color-adjust property"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js index 517ba3c77523f93..e04d045dd52d2df 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB 1B 2B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","132":"0 1 2 3 4 G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB","132":"I n J D E 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B FC GC HC IC jB","132":"C G M N O o p q r xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC","132":"E yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","16":"fC gC","132":"mB I hC iC yB jC kC"},J:{"1":"A","132":"D"},K:{"1":"b","2":"A B jB","132":"C xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"33":"zC"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B","33":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB 3B 4B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","132":"0 1 2 3 4 5 G M N O p q r s t u v w x y z"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB","132":"I o J D E 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B FC GC HC IC kB","132":"C G M N O p q r s zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC","132":"E 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","16":"fC gC","132":"nB I hC iC 0B jC kC"},J:{"1":"A","132":"D"},K:{"1":"b","2":"A B kB","132":"C zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"33":"0C"}},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 f73a5589f75e8ab..f3bba428c17811a 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 zB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B","16":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G 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 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B","16":"8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},B:4,C:"Rebeccapurple color"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js index 6ba2d30bca4761c..15d812e05b91672 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 zB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"5B sB","33":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"33":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"33":"mB I H fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"2":"A B C jB xB kB","33":"b"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"2":"zC"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"6B tB","33":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"33":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"33":"nB I H fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"2":"A B C kB zB lB","33":"b"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"2":"0C"}},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 edfa13e772526d2..05f5b287dfe2fa3 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 zB","420":"A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"4 5 6 7 8 9 I n J D E F A B C K L AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","36":"G M N O","66":"0 1 2 3 o p q r s t u v w x y z"},E:{"2":"I n J C K L G 5B sB 6B jB kB AC BC CC uB vB wB DC lB EC","33":"D E F A B 7B 8B 9B tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB LC MC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"E NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"420":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J D E F 1B","420":"A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"5 6 7 8 9 I o J D E F A B C K L AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","36":"G M N O","66":"0 1 2 3 4 p q r s t u v w x y z"},E:{"2":"I o J C K L G 6B tB 7B kB lB BC CC DC vB wB xB yB mB EC","33":"D E F A B 8B 9B AC uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B LC MC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"E NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"420":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6d33587dc4d042c..f9ef9a29f8d8e26 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","33":"I n J D E F A B C K L G 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F","33":"A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","33":"J 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC","33":"C JC","36":"jB xB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","33":"LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB fC gC hC","33":"I iC yB"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B","33":"C","36":"jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","33":"I o J D E F A B C K L G 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F","33":"A B C K L G M N O p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","33":"J 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC","33":"C JC","36":"kB zB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","33":"LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB fC gC hC","33":"I iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B","33":"C","36":"kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d8f329e514b3b6e..bf2318b5c60f898 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC","132":"kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:4,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC","132":"lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 f9dbe5e2a6e41f9..cd3af29042eaf28 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 zB"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB 1B 2B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB FC GC HC IC jB xB JC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB 3B 4B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB FC GC HC IC kB zB JC lB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3d5a5428ee47e6e..1dcb3b34be7210b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB NB OB PB QB RB nB SB oB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I","194":"mC nC oC"},Q:{"2":"xC"},R:{"194":"yC"},S:{"2":"zC"}},B:5,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"MB NB OB PB QB RB SB oB TB pB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I","194":"mC nC oC"},Q:{"2":"yC"},R:{"194":"zC"},S:{"2":"0C"}},B:5,C:"#rrggbbaa hex color notation"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js index 1c56e2617dbe504..07a40395ef763b2 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 zB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","129":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","450":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB AC","578":"L G BC CC uB"},F:{"2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB","129":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","450":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","578":"cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"129":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"129":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Scroll-behavior"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","129":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","450":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB BC","578":"L G CC DC vB"},F:{"2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB","129":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","450":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","578":"cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"129":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"129":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"CSS Scroll-behavior"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js index 7f10f955162f952..380bfd23975bf3e 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","194":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B","322":"U V W"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB FC GC HC IC jB xB JC kB","194":"fB gB hB iB P Q R pB S T U V W X Y Z","322":"dB eB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y","194":"Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","194":"X Y Z c d e f g h i j k l a m n H rB sB 5B","322":"U V W"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB FC GC HC IC kB zB JC lB","194":"gB hB iB jB P Q R qB S T U V W X Y Z","322":"eB fB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 d286c982cd72f43..71e6295b45d210d 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 zB"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B","3074":"UB","4100":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"16":"I n 5B sB","292":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","292":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"bC cC dC uB vB wB lB","16":"sB KC yB LC MC","292":"NC","804":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"16":"fC gC","292":"mB I H hC iC yB jC kC"},J:{"292":"D A"},K:{"2":"A B C jB xB kB","292":"b"},L:{"292":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"292":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"292":"xC"},R:{"292":"yC"},S:{"2":"zC"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"2":"C K L G M N O","292":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B","3074":"VB","4100":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"16":"I o 6B tB","292":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","292":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC","292":"NC","804":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"16":"fC gC","292":"nB I H hC iC 0B jC kC"},J:{"292":"D A"},K:{"2":"A B C kB zB lB","292":"b"},L:{"292":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"292":"lC"},P:{"292":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"292":"yC"},R:{"292":"zC"},S:{"2":"0C"}},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 ff458ce6435b8c8..e8629f6fd906443 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":"zB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"D E F A B","2":"1B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 0838ce36f500004..e738ccfae0f40cd 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":"zB","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 35c20d435172713..048b2548338433c 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"C b xB kB","16":"A B jB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"33":"zC"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"C b zB lB","16":"A B kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"33":"0C"}},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 24de80a4f01d2aa..cd7a5d1055850eb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 1B 2B","322":"KB LB MB NB OB PB QB RB nB SB oB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z","194":"3 4 5"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","33":"E F A 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","33":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","322":"LB MB NB OB PB QB RB SB oB TB pB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z","194":"4 5 6"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","33":"E F A 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","33":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 b1b15e25e04e385..422c36ec42c572c 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 zB","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","6436":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","2052":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB","8258":"WB XB YB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B","3108":"F A 9B tB"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB","8258":"NB OB PB QB RB SB TB UB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC","3108":"PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2052":"zC"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J D E F 1B","6308":"A","6436":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","6436":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","2052":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB","8258":"XB YB ZB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B","3108":"F A AC uB"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB","8258":"OB PB QB RB SB TB UB VB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC","3108":"PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2052":"0C"}},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 e0391b33db11c44..f5e85c879ce1880 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 zB"},B:{"1":"c d e f g h i j k l a m H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u 1B 2B","194":"0 v w x y z","516":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"c d e f g h i j k l a m H qB rB 3B 4B","2":"6 7 8 9 I n J D E F A B C K L G M N O o p q r AB BB CB DB EB FB GB HB IB JB KB","322":"0 1 2 3 4 5 s t u v w x y z LB MB NB OB","1028":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B","33":"E F A B C 8B 9B tB jB kB","2084":"D 7B"},F:{"1":"iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","322":"8 9 AB","1028":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"E OC PC QC RC SC TC UC VC WC","2084":"MC NC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1028":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1028":"xC"},R:{"2":"yC"},S:{"516":"zC"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"c d e f g h i j k l a m n H","2":"C K L G","1028":"P Q R S T U V W X Y Z","4100":"M N O"},C:{"1":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v 3B 4B","194":"0 1 w x y z","516":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"c d e f g h i j k l a m n H rB sB 5B","2":"7 8 9 I o J D E F A B C K L G M N O p q r s AB BB CB DB EB FB GB HB IB JB KB LB","322":"0 1 2 3 4 5 6 t u v w x y z MB NB OB PB","1028":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B","33":"E F A B C 9B AC uB kB lB","2084":"D 8B"},F:{"1":"jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"9 AB BB","1028":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"E OC PC QC RC SC TC UC VC WC","2084":"MC NC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1028":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1028":"yC"},R:{"2":"zC"},S:{"516":"0C"}},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 44edc610978726e..70284954b070d80 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 2bdf1034fef6a2e..f900eae68428f3a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N O"},C:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o 1B 2B","66":"p q","260":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC","132":"kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"132":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB","132":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N O"},C:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p 3B 4B","66":"q r","260":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC","132":"lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"132":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB","132":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7722d6e1f929c20..62d74b58b9054bc 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","132":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","132":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b191608ac782131..a568abff7bd7c09 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","4":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","322":"4 5 6 7 8 9 AB BB CB DB EB FB"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q FC GC HC IC jB xB JC kB","578":"0 1 2 r s t u v w x y z"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"1":"yC"},S:{"33":"zC"}},B:5,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","4":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 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"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 I o J D E F A B C K L G 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"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC 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 OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r FC GC HC IC kB zB JC lB","578":"0 1 2 3 s t u v w x y z"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"1":"zC"},S:{"33":"0C"}},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 93ea80ea0d14670..efc88beefbd29d4 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 zB"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"132":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z","388":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"lB EC","132":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"132":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB","388":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"lB","132":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"132":"eC"},I:{"132":"mB I fC gC hC iC yB jC kC","388":"H"},J:{"132":"D A"},K:{"132":"A B C jB xB kB","388":"b"},L:{"388":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I","388":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"388":"xC"},R:{"388":"yC"},S:{"132":"zC"}},B:5,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"132":"C K L G M N O","388":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"132":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z","388":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"mB EC","132":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"132":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB","388":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"mB","132":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"132":"eC"},I:{"132":"nB I fC gC hC iC 0B jC kC","388":"H"},J:{"132":"D A"},K:{"132":"A B C kB zB lB","388":"b"},L:{"388":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I","388":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"388":"yC"},R:{"388":"zC"},S:{"132":"0C"}},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 8dda25a475dfe72..d612d156562af8e 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 zB","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 1B 2B","1025":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","1602":"NB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","322":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB","322":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","322":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","322":"b"},L:{"322":"H"},M:{"1025":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"2":"I","322":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"322":"xC"},R:{"322":"yC"},S:{"2":"zC"}},B:5,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J D 1B","132":"E F A B"},B:{"132":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB 3B 4B","1025":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","1602":"OB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","322":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","322":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","322":"b"},L:{"322":"H"},M:{"1025":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"2":"I","322":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"322":"yC"},R:{"322":"zC"},S:{"2":"0C"}},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 0e78b60e08273f8..0f8612bc42f5aeb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"7 8 9"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","16":"A","33":"B C K tB jB kB AC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"8 9 AB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","16":"A","33":"B C K uB kB lB BC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 36fea69b77a04f7..d097b6a2cd0b601 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 zB","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J D 1B","161":"E F A B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 aafec46fdc8c07b..64e90c73dcbc77c 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 zB","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","260":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"4":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"A","4":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J D E F 1B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","260":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"4":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"A","4":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 f8025316e272673..fd7bac09f8a8826 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 zB","132":"B","164":"A"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","260":"OB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB","260":"BB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"132":"B","164":"A"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"CSS touch-action level 2 values"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"B","164":"A"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB","260":"PB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB","260":"CB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"132":"B","164":"A"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 79dfccd5ae369c8..8f9c61a1d6681fa 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 zB","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB","1025":"LB MB NB OB PB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC","516":"QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","289":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"194":"zC"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J D E F 1B","289":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB","1025":"MB NB OB PB QB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC","516":"QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","289":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"194":"0C"}},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 4b0c3feee8d8585..05b197226bccff5 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"n J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"J 6B","164":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F FC GC","33":"C","164":"B HC IC jB xB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"MC","164":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"H jC kC","33":"mB I fC gC hC iC yB"},J:{"1":"A","33":"D"},K:{"1":"b kB","33":"C","164":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"o J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"I o J D E F A B C K L G M N O p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"J 7B","164":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F FC GC","33":"C","164":"B HC IC kB zB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"MC","164":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"H jC kC","33":"nB I fC gC hC iC 0B"},J:{"1":"A","33":"D"},K:{"1":"b lB","33":"C","164":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 5ac5b8e0efa97f8..f98eb3829683ac8 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"0B mB I n J D E F 1B 2B","292":"A B C K L G M"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M","548":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"132":"I n J D E 5B sB 6B 7B 8B","548":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"132":"E sB KC yB LC MC NC OC","548":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"1":"H","16":"mB I fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"1":"b","16":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"16":"xC"},R:{"16":"yC"},S:{"33":"zC"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","132":"2B nB I o J D E F 3B 4B","292":"A B C K L G M"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G M","548":"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:{"132":"I o J D E 6B tB 7B 8B 9B","548":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"132":"E tB KC 0B LC MC NC OC","548":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"1":"H","16":"nB I fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"1":"b","16":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"16":"yC"},R:{"16":"zC"},S:{"33":"0C"}},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 93cca618b1e5451..081b455267812f5 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 399b7a7e74ee6c6..9b7e602e6b49268 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","260":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"HB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B","260":"9B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"4"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC","260":"QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","260":"G"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"IB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B","260":"AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"5"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC","260":"QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},B:4,C:"CSS Variables (Custom Properties)"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js index 5827b5e4786c511..0e9152f06ee4b15 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"CSS @when / @else conditional rules"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 675759a8e59fffe..a7518cd846767f0 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 zB","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","129":"F B FC GC HC IC jB xB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J D 1B","129":"E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","129":"F B FC GC HC IC kB zB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},B:2,C:"CSS widows & orphans"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js index 5a2a4c5f6a7ad7d..c32d32d133a4726 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"I n J D E F A B C K L G M N O o p q","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B","33":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},M:{"33":"a"},A:{"2":"J D E F A B zB"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},K:{"2":"A B C jB xB kB","33":"b"},E:{"2":"I n J 5B sB 6B 7B EC","33":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB"},G:{"2":"sB KC yB LC MC","33":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},P:{"2":"I","33":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},I:{"2":"mB I fC gC hC iC yB","33":"H jC kC"}},B:6,C:"width: stretch property"}; +module.exports={A:{D:{"2":"I o J D E F A B C K L G M N O p q r","33":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},L:{"33":"H"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B","33":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},M:{"33":"a"},A:{"2":"J D E F A B 1B"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},K:{"2":"A B C kB zB lB","33":"b"},E:{"2":"I o J 6B tB 7B 8B EC","33":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB"},G:{"2":"tB KC 0B LC MC","33":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},P:{"2":"I","33":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},I:{"2":"nB I fC gC hC iC 0B","33":"H jC kC"}},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 fe17f22fd754543..5568f89f6e38b8d 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","322":"5 6 7 8 9"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J","16":"D","33":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n","33":"J D E F A 6B 7B 8B 9B tB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB","33":"E LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","33":"mB I iC yB jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","33":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","322":"6 7 8 9 AB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o 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 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 kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o","33":"J D E F A 7B 8B 9B AC uB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 G M N O p q r s t u v w x y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B","33":"E LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","33":"nB I iC 0B jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","33":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7db4477acfa5fbb..56a3a564feb1d16 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 zB","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J D 1B","129":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 a32ce85f9680778..5eb60c86fe53d35 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:7,C:"CSS3 attr() function for all properties"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js index 6ddd9e3611c30ca..2c577f25c0f305f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"I n J D E F"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"sB KC yB"},H:{"1":"eC"},I:{"1":"I H iC yB jC kC","33":"mB fC gC hC"},J:{"1":"A","33":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"E F A B","8":"J D 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"I o J D E F"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"tB KC 0B"},H:{"1":"eC"},I:{"1":"I H iC 0B jC kC","33":"nB fC gC hC"},J:{"1":"A","33":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 cae072ccc0ab6b2..ce000403577ffaa 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","4":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","2":"F","4":"FC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","4":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","2":"F","4":"FC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 12f1a6962bcc516..95065c8db1f0548 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0B mB I n J D E F A B C K L G M N O o p q r s t u v 1B 2B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","33":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"C OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:3,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"2B nB I o J D E F A B C K L G M N O p q r s t u v w 3B 4B"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","33":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"C PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 7250b0002683134..3b4557606d42bbc 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0B mB I n J D E F A B C K L G M N O o p q r s 1B 2B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB","33":"G M N O o p q r s"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"2B nB I o J D E F A B C K L G M N O p q r s t 3B 4B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB","33":"G M N O p q r s t"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 73101783573f97f..728e809137e2f52 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","4":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"I"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","4":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","260":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","4":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"I"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","4":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","260":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 8d5422b54a46c56..aea40d0b69f0a92 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p","132":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B","132":"D E F A B C K 7B 8B 9B tB jB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC HC","132":"G M N O o p q r s t u v w x","164":"B C IC jB xB JC kB"},G:{"1":"aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC","132":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"164":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","132":"jC kC"},J:{"132":"D A"},K:{"1":"b","2":"A","164":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"164":"zC"}},B:4,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","164":"0 1 2 3 4 5 6 7 8 9 I o 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 MB"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G 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"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B","132":"D E F A B C K 8B 9B AC uB kB lB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC HC","132":"G M N O p q r s t u v w x y","164":"B C IC kB zB JC lB"},G:{"1":"aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC","132":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"164":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","132":"jC kC"},J:{"132":"D A"},K:{"1":"b","2":"A","164":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"164":"0C"}},B:4,C:"CSS3 tab-size"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js index 7eabe9c63bdd3a7..b62b8521d5a2def 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 4a1e94da53ce9c3..ad18e8b3c26730b 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 zB","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M N O"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","66":"s t u v w x y","72":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t u v Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","66":"0 1 w x y z"},E:{"2":"I n 5B sB 6B","8":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB","2":"F B C XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","66":"G M N O o"},G:{"2":"sB KC yB LC MC","8":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"kC","2":"mB I H fC gC hC iC yB jC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC","2":"tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"72":"zC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F 1B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M N O"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","66":"t u v w x y z","72":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","2":"I o J D E F A B C K L G M N O p q r s t u v w Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","66":"0 1 2 x y z"},E:{"2":"I o 6B tB 7B","8":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB","2":"F B C YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","66":"G M N O p"},G:{"2":"tB KC 0B LC MC","8":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"kC","2":"nB I H fC gC hC iC 0B jC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC","2":"tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"72":"0C"}},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 2a50ea8b1843dc2..cd0825756845e24 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 zB","8":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M N O"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y 1B 2B","8":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB","456":"JB KB LB MB NB OB PB QB RB","712":"nB SB oB TB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","8":"LB MB","132":"NB OB PB QB RB nB SB oB TB UB b VB WB"},E:{"2":"I n J D 5B sB 6B 7B 8B","8":"E F A 9B","132":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z FC GC HC IC jB xB JC kB","132":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC","132":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I","132":"mC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"8":"zC"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J D E F 1B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M N O"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","8":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","456":"KB LB MB NB OB PB QB RB SB","712":"oB TB pB UB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","8":"MB NB","132":"OB PB QB RB SB oB TB pB UB VB b WB XB"},E:{"2":"I o J D 6B tB 7B 8B 9B","8":"E F A AC","132":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB FC GC HC IC kB zB JC lB","132":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC","132":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","132":"mC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"8":"0C"}},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 19d09af0bf941c2..3e5d8c70ce3cdbf 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 zB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I","16":"n J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n J","388":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F FC GC HC IC","132":"B jB xB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"KC","16":"sB yB","388":"LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","388":"mB I iC yB"},J:{"1":"A","388":"D"},K:{"1":"C b kB","2":"A","132":"B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J D E 1B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I","16":"o J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o J","388":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F FC GC HC IC","132":"B kB zB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"KC","16":"tB 0B","388":"LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","388":"nB I iC 0B"},J:{"1":"A","388":"D"},K:{"1":"C b lB","2":"A","132":"B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c69c17a0d63d45d..36cf74dd2fc18e7 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":"zB","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G","1284":"M N O"},C:{"8":"0B mB 1B 2B","516":"m H qB rB","4612":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I n J D E F A B C K L G M N O o","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","8":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"F B C b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"8":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC","2049":"WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H kC","8":"mB I fC gC hC iC yB jC"},J:{"1":"A","8":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"516":"a"},N:{"8":"A B"},O:{"8":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"1B","8":"J D E F","260":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G","1284":"M N O"},C:{"8":"2B nB 3B 4B","516":"m n H rB sB","4612":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I o J D E F A B C K L G 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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","8":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"1":"F B C b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB"},G:{"8":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC","2049":"WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H kC","8":"nB I fC gC hC iC 0B jC"},J:{"1":"A","8":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"516":"a"},N:{"8":"A B"},O:{"8":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 125c1d789202df6..6ab469ad8cdefd8 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 zB"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","4":"0B mB I n 1B 2B","129":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB","4":"I n J","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"4":"I n 5B sB","129":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"1 2 3 4 5 6 7 8 9 C AB jB xB JC kB","4":"F B FC GC HC IC","129":"0 G M N O o p q r s t u v w x y z BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"4":"sB KC yB","129":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"4":"eC"},I:{"4":"fC gC hC","129":"mB I H iC yB jC kC"},J:{"129":"D A"},K:{"1":"C jB xB kB","4":"A B","129":"b"},L:{"129":"H"},M:{"129":"a"},N:{"1":"B","4":"A"},O:{"129":"lC"},P:{"129":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"129":"yC"},S:{"1":"zC"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J D E F A 1B"},B:{"1":"C K L G M","129":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","4":"2B nB I o 3B 4B","129":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB","4":"I o J","129":"0 1 2 3 4 5 6 7 8 9 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 PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"4":"I o 6B tB","129":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"2 3 4 5 6 7 8 9 C AB BB kB zB JC lB","4":"F B FC GC HC IC","129":"0 1 G M N O p q r s t u v w x y z CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"4":"tB KC 0B","129":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"4":"eC"},I:{"4":"fC gC hC","129":"nB I H iC 0B jC kC"},J:{"129":"D A"},K:{"1":"C kB zB lB","4":"A B","129":"b"},L:{"129":"H"},M:{"129":"a"},N:{"1":"B","4":"A"},O:{"129":"lC"},P:{"129":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"129":"zC"},S:{"1":"0C"}},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 51c84b7926cb864..95a7903e71b012c 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 zB","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J D 1B","132":"E","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d29f4f7c3de0f65..9619674051efe2f 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":"zB","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N"},C:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","260":"LB MB NB OB","772":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s","260":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB","772":"0 1 2 3 4 5 6 t u v w x y z"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB","132":"J D E F A 6B 7B 8B 9B","260":"B tB jB"},F:{"1":"QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B C FC GC HC IC jB xB JC","132":"kB","260":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","772":"G M N O o p q r s t"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC","132":"E MC NC OC PC QC RC"},H:{"132":"eC"},I:{"1":"H","16":"mB fC gC hC","132":"I iC yB","772":"jC kC"},J:{"132":"D A"},K:{"1":"b","16":"A B C jB xB","132":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"260":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","260":"I mC nC oC pC"},Q:{"260":"xC"},R:{"132":"yC"},S:{"132":"zC"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"1B","132":"J D E F A B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N"},C:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","260":"MB NB OB PB","772":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB"},D:{"1":"bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G M N O p q r s t","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB","772":"0 1 2 3 4 5 6 7 u v w x y z"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB","132":"J D E F A 7B 8B 9B AC","260":"B uB kB"},F:{"1":"RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B C FC GC HC IC kB zB JC","132":"lB","260":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","772":"G M N O p q r s t u"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC","132":"E MC NC OC PC QC RC"},H:{"132":"eC"},I:{"1":"H","16":"nB fC gC hC","132":"I iC 0B","772":"jC kC"},J:{"132":"D A"},K:{"1":"b","16":"A B C kB zB","132":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"260":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","260":"I mC nC oC pC"},Q:{"260":"yC"},R:{"132":"zC"},S:{"132":"0C"}},B:6,C:"Date.prototype.toLocaleDateString"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js index 5ecaad373a42d28..ff4222c6175a0cd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B zB"},B:{"1":"Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","66":"U V W X Y"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB","16":"EC"},F:{"1":"hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC lB wC","2":"I mC nC oC pC qC tB rC sC tC uC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:7,C:"Declarative Shadow DOM"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","66":"U V W X Y"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB","16":"EC"},F:{"1":"iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC uC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},B:7,C:"Declarative Shadow DOM"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js index 72c0392b69f9875..1e0e1f3f2b60893 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Decorators"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 06510d55f56fe6c..3c4ae1280218d62 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 zB","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","8":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B","194":"GB HB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I n J D E F A B","257":"0 1 2 3 4 o p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","8":"I n 5B sB 6B","257":"J D E F A 7B 8B 9B","1025":"B tB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"C jB xB JC kB","8":"F B FC GC HC IC"},G:{"1":"E MC NC OC PC QC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB LC","1025":"RC SC TC"},H:{"8":"eC"},I:{"1":"I H iC yB jC kC","8":"mB fC gC hC"},J:{"1":"A","8":"D"},K:{"1":"b","8":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"769":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"F A B 1B","8":"J D E"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","8":"0 1 2 3 4 5 6 7 8 9 nB I o 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 3B 4B","194":"HB IB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I o J D E F A B","257":"0 1 2 3 4 5 p q r s t u v w x y z","769":"C K L G M N O"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","8":"I o 6B tB 7B","257":"J D E F A 8B 9B AC","1025":"B uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"C kB zB JC lB","8":"F B FC GC HC IC"},G:{"1":"E MC NC OC PC QC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B LC","1025":"RC SC TC"},H:{"8":"eC"},I:{"1":"I H iC 0B jC kC","8":"nB fC gC hC"},J:{"1":"A","8":"D"},K:{"1":"b","8":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"769":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e1658e21e58e83d..193a05eb302101f 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 zB","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB 1B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"I n 2B"},D:{"2":"I n J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC","4":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"fC gC hC","4":"mB I H iC yB jC kC"},J:{"2":"D","4":"A"},K:{"1":"C kB","2":"A B jB xB","4":"b"},L:{"4":"H"},M:{"4":"a"},N:{"1":"B","2":"A"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"4":"yC"},S:{"4":"zC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB 3B","4":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"I o 4B"},D:{"2":"I o J","4":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","4":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC","4":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"fC gC hC","4":"nB I H iC 0B jC kC"},J:{"2":"D","4":"A"},K:{"1":"C lB","2":"A B kB zB","4":"b"},L:{"4":"H"},M:{"4":"a"},N:{"1":"B","2":"A"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"4":"zC"},S:{"4":"0C"}},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 f05925f293b14b2..fe62e0115528826 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 810f53138f9d105..c16fea783e8d9ab 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B","194":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","1218":"Q R pB S T U V W X Y Z c d e f g h i"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z","322":"1 2 3 4 5"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O FC GC HC IC jB xB JC kB","578":"o p q r s"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B","194":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","1218":"Q R qB S T U V W X Y Z c d e f g h i"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 I o J D E F A B C K L G M N O p q r s t u v w x y z","322":"2 3 4 5 6"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O FC GC HC IC kB zB JC lB","578":"p q r s t"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 67fc9f1cd581f1e..c882aa854b58440 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":"zB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","129":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"1B","129":"F A","130":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","129":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 72bee2d0ddd3184..e55960381c11908 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 zB"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I n AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","388":"J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"132":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"132":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"132":"eC"},I:{"132":"mB I H fC gC hC iC yB jC kC"},J:{"132":"D A"},K:{"132":"A B C b jB xB kB"},L:{"132":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"132":"zC"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J D E F A B 1B"},B:{"132":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"132":"1 2 3 4 5 6 7 8 9 I o AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","388":"0 J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"132":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"132":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"132":"eC"},I:{"132":"nB I H fC gC hC iC 0B jC kC"},J:{"132":"D A"},K:{"132":"A B C b kB zB lB"},L:{"132":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"132":"0C"}},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 beb7fe65c9ceda4..a7c26b4d1df4700 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 zB","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E 1B 2B","516":"0 F A B C K L G M N O o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r"},E:{"1":"J A B C 6B 9B tB jB","2":"I n K L G 5B sB kB AC BC CC uB vB wB DC lB EC","1028":"D E F 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC"},G:{"1":"PC QC RC SC TC UC VC","2":"sB KC yB LC MC WC XC YC ZC aC bC cC dC uB vB wB lB","1028":"E NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"16":"D","1028":"A"},K:{"1":"b kB","16":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"164":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J D E 1B","164":"F A","260":"B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E 3B 4B","516":"0 1 F A B C K L G M N O p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s"},E:{"1":"J A B C 7B AC uB kB","2":"I o K L G 6B tB lB BC CC DC vB wB xB yB mB EC","1028":"D E F 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC"},G:{"1":"PC QC RC SC TC UC VC","2":"tB KC 0B LC MC WC XC YC ZC aC bC cC dC vB wB xB yB mB","1028":"E NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"16":"D","1028":"A"},K:{"1":"b lB","16":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"164":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b1d39287c53f379..77bb6942689ef0a 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 a1317118305e489..6f23e39926e1f3f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","16":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","16":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 4f37029a78a8996..312e03ef6fff8d1 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","16":"F FC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC","16":"yB LC MC"},H:{"2":"eC"},I:{"1":"H iC yB jC kC","2":"mB I fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","16":"F FC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC","16":"0B LC MC"},H:{"2":"eC"},I:{"1":"H iC 0B jC kC","2":"nB I fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e88fe13a521403e..bcb028345a8159e 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 zB"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","132":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB FC GC HC IC jB xB JC kB","132":"bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","132":"b"},L:{"132":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T","132":"U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","132":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB FC GC HC IC kB zB JC lB","132":"cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","132":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","132":"b"},L:{"132":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 b42c45adbfdb736..cea5941b0d26ab7 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C K"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 69acc0f5024f18d..7ed58292ef607be 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F FC GC HC IC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F FC GC HC IC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 953ab982f65da3f..53eb2e6e19efb8b 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","194":"LB MB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"9"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"194":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"MB NB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"AB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"194":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 0d31a87b865b77b..bc50a0322d4eb2c 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":"zB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 535241a2c36c5c3..e8ed22cdf13e565 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2171c809715b557..0a84a3fb715a35a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","16":"F B FC GC HC IC jB xB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC MC"},H:{"16":"eC"},I:{"1":"I H iC yB jC kC","16":"mB fC gC hC"},J:{"16":"D A"},K:{"1":"b","16":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L G M N O p q r s t u v"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","16":"F B FC GC HC IC kB zB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC"},H:{"16":"eC"},I:{"1":"I H iC 0B jC kC","16":"nB fC gC hC"},J:{"16":"D A"},K:{"1":"b","16":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 c94778d2968c9a9..685c53d891e862f 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 zB","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","1028":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2564":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB","3076":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB"},D:{"16":"I n J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB","388":"E","1028":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"16":"I 5B sB","132":"n J D E F A 6B 7B 8B 9B tB","1028":"B C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"16":"sB KC yB","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"132":"I iC yB jC kC","292":"mB fC gC hC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C jB xB kB","1028":"b"},L:{"1028":"H"},M:{"1028":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"2564":"zC"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","1028":"aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2564":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB","3076":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB"},D:{"16":"I o J D","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB","388":"E","1028":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"16":"I 6B tB","132":"o J D E F A 7B 8B 9B AC uB","1028":"B C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB","1028":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"16":"tB KC 0B","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"132":"I iC 0B jC kC","292":"nB fC gC hC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C kB zB lB","1028":"b"},L:{"1028":"H"},M:{"1028":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"2564":"0C"}},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 1a647932de36517..3f3ab9334e0c2d4 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1220e9c9c62f818..eb8e4536aacfa31 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 zB","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","8":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","8":"F B FC GC HC IC jB xB JC"},G:{"1":"dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","1025":"H"},J:{"2":"D A"},K:{"1":"kB","8":"A B C jB xB","1025":"b"},L:{"1025":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J D E F 1B","772":"A B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","8":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","8":"F B FC GC HC IC kB zB JC"},G:{"1":"dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","1025":"H"},J:{"2":"D A"},K:{"1":"lB","8":"A B C kB zB","1025":"b"},L:{"1025":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3963905c1b9bd7a..beef0aaaff894bf 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e9e2abf4a883c45..25044cd0c9c66f9 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","16":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","16":"F FC GC HC IC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"C b kB","16":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","16":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","16":"F FC GC HC IC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"C b lB","16":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 3e93372f437408f..7af875ecf539006 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","132":"A B C K tB jB kB AC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC jB xB JC kB"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC","132":"RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","132":"A B C K uB kB lB BC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB FC GC HC IC kB zB JC lB"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC","132":"RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 f648eea81afe091..56c33c8da30c4a0 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 zB","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"4 5 6 7 8 9 AB"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B","164":"D E F A B 8B 9B tB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q FC GC HC IC jB xB JC kB","132":"r s t u v w x"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"16":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J D E F A 1B","164":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 I o J D E F A B C K L G M N O p q r s t u v w x y z","132":"5 6 7 8 9 AB BB"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B","164":"D E F A B 9B AC uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r FC GC HC IC kB zB JC lB","132":"s t u v w x y"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"16":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 c9b719f09796c90..b52ffd77a519c8f 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":"zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J D E F A B","2":"1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 8032c0c5667bc17..fe77f74f9faa9cc 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 zB","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","4":"0B mB 1B 2B","132":"I n J D E F A B C K L G M N O o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"I n J D E F A B C K L G M N O","132":"o p q r"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","4":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","4":"F B C FC GC HC IC jB xB JC","132":"kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","4":"sB KC yB LC"},H:{"132":"eC"},I:{"1":"H jC kC","4":"mB fC gC hC","132":"iC yB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"b","4":"A B C jB xB","132":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J D 1B","260":"F","1026":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","4":"2B nB 3B 4B","132":"I o J D E F A B C K L G M N O p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"I o J D E F A B C K L G M N O","132":"p q r s"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","4":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","4":"F B C FC GC HC IC kB zB JC","132":"lB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","4":"tB KC 0B LC"},H:{"132":"eC"},I:{"1":"H jC kC","4":"nB fC gC hC","132":"iC 0B","900":"I"},J:{"1":"A","4":"D"},K:{"1":"b","4":"A B C kB zB","132":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 17cab3f4af1c59f..878d50954d4ead8 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB","132":"BB CB DB EB FB GB HB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","132":"CB DB EB FB GB HB IB"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 110aaf86b0fb79d..4bab38aa36267c9 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u 1B 2B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v 3B 4B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 33032623a5c8e4a..27c3b7a96203f76 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB 1B 2B","194":"WB"},D:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB 3B 4B","194":"XB"},D:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 593036679e87fdb..6e2d10d1a6ed030 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 1B 2B","322":"NB OB PB QB RB nB"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","194":"SB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B","3076":"tB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC jB xB JC kB","194":"GB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC","3076":"SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB 3B 4B","322":"OB PB QB RB SB oB"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB","194":"TB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC","3076":"uB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC kB zB JC lB","194":"HB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC","3076":"SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9a7d49f6490ba30..f73b93cad53532a 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G 1B 2B","132":"M N O o p q r s t","260":"u v w x y z","516":"0"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O","1028":"0 1 2 o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","1028":"G M N O o p"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC","1028":"iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G 3B 4B","132":"M N O p q r s t u","260":"0 v w x y z","516":"1"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O","1028":"0 1 2 3 p q r s t u v w x y z"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","1028":"G M N O p q"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC","1028":"iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1284ca60e4be1c0..3ea054820719252 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 a89ee7888976b4a..bac69f3f708cf0b 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 zB","388":"B"},B:{"257":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L","769":"G M N O"},C:{"2":"0B mB I n 1B 2B","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","257":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I n J D E F A B C K L G M N O o p","4":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","257":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","4":"E F 8B 9B"},F:{"2":"F B C FC GC HC IC jB xB JC kB","4":"0 1 2 3 4 5 6 G M N O o p q r s t u v w x y z","257":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC","4":"E NC OC PC QC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","4":"jC kC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C jB xB kB","257":"b"},L:{"257":"H"},M:{"257":"a"},N:{"2":"A","388":"B"},O:{"257":"lC"},P:{"4":"I","257":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"257":"xC"},R:{"4":"yC"},S:{"4":"zC"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J D E F A 1B","388":"B"},B:{"257":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L","769":"G M N O"},C:{"2":"2B nB I o 3B 4B","4":"0 1 2 3 4 5 6 7 8 9 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 MB NB","257":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I o J D E F A B C K L G M N O p q","4":"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","257":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","4":"E F 9B AC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","4":"0 1 2 3 4 5 6 7 G M N O p q r s t u v w x y z","257":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC","4":"E NC OC PC QC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","4":"jC kC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C kB zB lB","257":"b"},L:{"257":"H"},M:{"257":"a"},N:{"2":"A","388":"B"},O:{"257":"lC"},P:{"4":"I","257":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"257":"yC"},R:{"4":"zC"},S:{"4":"0C"}},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 a0137419fee02f6..bfd4fedbd660e15 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","4":"F FC GC HC IC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"C b jB xB kB","4":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B"},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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","4":"F FC GC HC IC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"C b kB zB lB","4":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ca7a059a72bd634..60e3861c66e7416 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},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 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 cd062ce295f0111..6c56f98353cede1 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 zB"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB 1B 2B","260":"eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"eB fB gB hB iB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","132":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB","1025":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","772":"C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC jB xB JC kB","132":"GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC","772":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1025":"H"},M:{"260":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC","132":"pC qC tB"},Q:{"132":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W","2":"C K L G M N O","1025":"X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB 3B 4B","260":"fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"fB gB hB iB jB P Q R S T U V W","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB","132":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB","1025":"X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","772":"C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC kB zB JC lB","132":"HB IB JB KB LB MB NB OB PB QB RB SB TB","1025":"gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC","772":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1025":"H"},M:{"260":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC","132":"pC qC uB"},Q:{"132":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 a7c4c51d80dd489..fd65cb87d9d5ce2 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","1025":"8","1218":"3 4 5 6 7"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"9","772":"AB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v FC GC HC IC jB xB JC kB","260":"w","772":"x"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","1025":"9","1218":"4 5 6 7 8"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N O p q r s t u v w x y z","260":"AB","772":"BB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w FC GC HC IC kB zB JC lB","260":"x","772":"y"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 255ae7e608bccbf..aef2d22ce921c8b 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":"zB","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G","16":"M N O o"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","16":"F FC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"388":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"1B","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G","16":"M N O p"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","16":"F FC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"388":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 dfe39208085a9a9..424e15e69eb4e1a 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 zB","260":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","260":"I n J D E F A B C K L G M N O o p q r s t u v w 2B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n","260":"0 1 2 3 4 5 6 K L G M N O o p q r s t u v w x y z","388":"J D E F A B C"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","260":"J D E F 7B 8B 9B","388":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B FC GC HC IC","260":"C G M N O o p q r s t jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","260":"E MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H kC","2":"fC gC hC","260":"jC","388":"mB I iC yB"},J:{"260":"A","388":"D"},K:{"1":"b","2":"A B","260":"C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J D E F 1B","260":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","260":"I o J D E F A B C K L G M N O p q r s t u v w x 4B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o","260":"0 1 2 3 4 5 6 7 K L G 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 uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","260":"J D E F 8B 9B AC","388":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B FC GC HC IC","260":"C G M N O p q r s t u kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","260":"E MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H kC","2":"fC gC hC","260":"jC","388":"nB I iC 0B"},J:{"260":"A","388":"D"},K:{"1":"b","2":"A B","260":"C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6a6c6e898a136c7..2b840d3d4664b58 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 zB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F B FC GC HC IC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b jB xB kB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F B FC GC HC IC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b kB zB lB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b67174d0b237f59..bbf0b679d318ff8 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F FC GC","16":"B HC IC jB xB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"C b xB kB","2":"A","16":"B jB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F FC GC","16":"B HC IC kB zB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"C b zB lB","2":"A","16":"B kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9d49992cbeede14..ce763f35f09db8e 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 zB"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"I n J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","36":"E F A B C"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","33":"A"},K:{"2":"A B C b jB xB kB"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","33":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"I o J D","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","36":"E F A B C"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","33":"A"},K:{"2":"A B C b kB zB lB"},L:{"33":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","33":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 e8564e4f90fa1a5..c31333b5c06f0c5 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 1B 2B"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","16":"DB EB FB","388":"GB HB IB JB KB LB MB NB OB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","516":"B C jB kB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","16":"mB I iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"b kB","16":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","129":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","16":"EB FB GB","388":"HB IB JB KB LB MB NB OB PB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","516":"B C kB lB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","16":"nB I iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"b lB","16":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","129":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 84e0b4d40261344..ebb8382f014778b 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 zB"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC"},F:{"1":"aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB FC GC HC IC jB xB JC kB"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC"},F:{"1":"bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB FC GC HC IC kB zB JC lB"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3df5137023559de..63c04bdc2fc0a44 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 zB","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","164":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","516":"r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"q r s t u v w x","164":"I n J D E F A B C K L G M N O o p"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"D E 7B 8B","164":"I n J 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC","33":"G M"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"E NC OC","164":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","164":"mB I fC gC hC iC yB"},J:{"1":"A","164":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","292":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J D E F 1B","1028":"B","1316":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","164":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","516":"s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"r s t u v w x y","164":"I o J D E F A B C K L G M N O p q"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"D E 8B 9B","164":"I o J 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC","33":"G M"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"E NC OC","164":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"H jC kC","164":"nB I fC gC hC iC 0B"},J:{"1":"A","164":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","292":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8f92973d8fa5b3f..56638c6e1ee1f2d 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B"},D:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B"},D:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 2d993d4527c0df5..02bc6ceb0655cb0 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F FC GC HC IC","16":"B jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"I H iC yB jC kC","2":"fC gC hC","16":"mB"},J:{"1":"D A"},K:{"1":"C b kB","2":"A","16":"B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J D E F A B","2":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F FC GC HC IC","16":"B kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"I H iC 0B jC kC","2":"fC gC hC","16":"nB"},J:{"1":"D A"},K:{"1":"C b lB","2":"A","16":"B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 397ef003704ac70..466242c395baff2 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"preventScroll support in focus"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1658e354ab81b32..895e7684ec188ab 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 1B 2B","132":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","260":"MB NB OB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B","16":"F","132":"A 9B tB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC","132":"PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"132":"zC"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","132":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB","260":"NB OB PB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B","16":"F","132":"A AC uB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC","132":"PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"132":"0C"}},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 cf60e64b1385242..49ef2803aa3914f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"0 1 2 G M N O o p q r s t u v w x y z","164":"I n J D E F A B C K L"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB","292":"M N O o p"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"D E F 5B sB 7B 8B","4":"I n J 6B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 G M N O o p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E NC OC PC","4":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","33":"jC kC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","33":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"0 1 2 3 G M N O p q r s t u v w x y z","164":"I o J D E F A B C K L"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB","292":"M N O p q"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"D E F 6B tB 8B 9B","4":"I o J 7B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 G M N O p q r s t u v w x y z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E NC OC PC","4":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","33":"jC kC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","33":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2e15fdc6b3137cc..5f13c6acffee7eb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s 1B 2B","194":"0 1 2 t u v w x y z"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x","33":"0 1 y z"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B","33":"D E F 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G FC GC HC IC jB xB JC kB","33":"M N O o"},G:{"1":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","33":"E OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB","33":"jC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t 3B 4B","194":"0 1 2 3 u v w x y z"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y","33":"0 1 2 z"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B","33":"D E F 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G FC GC HC IC kB zB JC lB","33":"M N O p"},G:{"1":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","33":"E OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B","33":"jC"},J:{"2":"D","33":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 50bc6cd0daa6611..55ea1306ff2117e 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"4 5 6 7 8 9"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"5 6 7 8 9 AB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d3b3096d20d9d14..eb0dc479da3ee23 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U","194":"V"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"@font-face metrics overrides"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U","194":"V"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 7a2124a6074bc3e..94a4216237d7da8 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 zB"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"258":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"194":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","194":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"258":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"194":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fb1f4bb36bb58f6..10a7312a7fbf70a 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 zB"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B","804":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"5B sB","676":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","676":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"804":"zC"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","676":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B","804":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"6B tB","676":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","676":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"804":"0C"}},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 4c8b03c7b500a3c..b917fc42e596b90 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 zB","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","4":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"5 6 7 8 9 AB BB CB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","4":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","4":"G M N O o p q r"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","4":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","4":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","4":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","4":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J D E 1B","4":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","4":"C K L G M"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"6 7 8 9 AB BB CB DB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","4":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","4":"G M N O p q r s"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","4":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","4":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","4":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","4":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 f840eeba705cce0..376f7731ff09e73 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 zB","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","130":"I n J D E F A B C K L G M N O o p q r s","322":"0 1 2 t u v w x y z"},D:{"2":"I n J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"D E F 5B sB 7B 8B","130":"I n J 6B"},F:{"2":"F B C FC GC HC IC jB xB JC kB","130":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB NC OC PC","130":"KC yB LC MC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","130":"H jC kC"},J:{"2":"D","130":"A"},K:{"2":"A B C jB xB kB","130":"b"},L:{"130":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"130":"lC"},P:{"130":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"130":"xC"},R:{"130":"yC"},S:{"1":"zC"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J D E F 1B","130":"A B"},B:{"130":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","130":"I o J D E F A B C K L G M N O p q r s t","322":"0 1 2 3 u v w x y z"},D:{"2":"I o J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"D E F 6B tB 8B 9B","130":"I o J 7B"},F:{"2":"F B C FC GC HC IC kB zB JC lB","130":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB NC OC PC","130":"KC 0B LC MC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","130":"H jC kC"},J:{"2":"D","130":"A"},K:{"2":"A B C kB zB lB","130":"b"},L:{"130":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"130":"lC"},P:{"130":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"130":"yC"},R:{"130":"zC"},S:{"1":"0C"}},B:5,C:"CSS font-variant-alternates"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js index c5d307031d6d0d8..2f4f5a3047f11ec 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 d71fc5cada837f9..611fe26b577d3b4 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","2":"F FC"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","260":"sB KC"},H:{"2":"eC"},I:{"1":"I H iC yB jC kC","2":"fC","4":"mB gC hC"},J:{"1":"A","4":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"F A B","132":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","2":"F FC"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","260":"tB KC"},H:{"2":"eC"},I:{"1":"I H iC 0B jC kC","2":"fC","4":"nB gC hC"},J:{"1":"A","4":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9febf8819f06ef6..51112138839377b 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ebfe99302f87af0..30c2f7d5e74890e 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC","16":"GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"I H iC yB jC kC","2":"fC gC hC","16":"mB"},J:{"1":"A","2":"D"},K:{"1":"B C b jB xB kB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC","16":"GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"I H iC 0B jC kC","2":"fC gC hC","16":"nB"},J:{"1":"A","2":"D"},K:{"1":"B C b kB zB lB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 23ee799e90b06bf..d1bb90cbe7ea950 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","132":"n J D E F A 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","2":"F FC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB","132":"E KC yB LC MC NC OC PC QC RC"},H:{"516":"eC"},I:{"1":"H kC","2":"mB fC gC hC","132":"I iC yB jC"},J:{"1":"A","132":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"132":"zC"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","132":"o J D E F A 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","2":"F FC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB","132":"E KC 0B LC MC NC OC PC QC RC"},H:{"516":"eC"},I:{"1":"H kC","2":"nB fC gC hC","132":"I iC 0B jC"},J:{"1":"A","132":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"132":"0C"}},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 2a1c56402e188b8..543ca67c7b2ca7e 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":"zB","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0B mB 1B 2B"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"4":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"5B sB"},F:{"1":"F B C LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},G:{"2":"sB","4":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","4":"jC kC"},J:{"2":"D","4":"A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","4":"I mC nC oC"},Q:{"1":"xC"},R:{"4":"yC"},S:{"4":"zC"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"1B","4":"A B","8":"J D E F"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"2B nB 3B 4B"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB"},E:{"4":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"6B tB"},F:{"1":"F B C MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","4":"0 1 2 3 4 5 6 7 8 9 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"},G:{"2":"tB","4":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","4":"jC kC"},J:{"2":"D","4":"A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","4":"I mC nC oC"},Q:{"1":"yC"},R:{"4":"zC"},S:{"4":"0C"}},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 fae0f0db1413ae6..988aa2863b5d90c 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 zB","548":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","516":"C K L G M N O"},C:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F 1B 2B","676":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB","1700":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB"},D:{"1":"bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L","676":"G M N O o","804":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB"},E:{"2":"I n 5B sB","548":"vB wB DC lB EC","676":"6B","804":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC","804":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC","2052":"VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","292":"A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","548":"B"},O:{"804":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","804":"I mC nC oC pC qC"},Q:{"804":"xC"},R:{"804":"yC"},S:{"1":"zC"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J D E F A 1B","548":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","516":"C K L G M N O"},C:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F 3B 4B","676":"0 1 2 3 4 5 6 7 8 9 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","1700":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB"},D:{"1":"cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L","676":"G M N O p","804":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB"},E:{"2":"I o 6B tB","548":"wB xB yB mB EC","676":"7B","804":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC","804":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC","2052":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","292":"A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","548":"B"},O:{"804":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","804":"I mC nC oC pC qC"},Q:{"804":"yC"},R:{"804":"zC"},S:{"1":"0C"}},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 08bd02d165a6932..453dac243d6e9a0 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p","33":"q r s t"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q","33":"r s t u"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 820136d2b1d3cdb..b70e4d03149a2e1 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":"zB","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 1B 2B","8":"0B mB","129":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","4":"I","129":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I 5B sB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 B C M N O o p q r s t u v w x y z IC jB xB JC kB","2":"F G FC","8":"GC HC","129":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"E sB KC yB LC MC NC OC PC QC","129":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I fC gC hC iC yB jC kC","129":"H"},J:{"1":"D A"},K:{"1":"B C jB xB kB","8":"A","129":"b"},L:{"129":"H"},M:{"129":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I","129":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"129":"xC"},R:{"129":"yC"},S:{"1":"zC"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D E"},B:{"1":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB 3B 4B","8":"2B nB","129":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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","4":"I","129":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I 6B tB","129":"A"},F:{"1":"0 1 2 3 4 5 6 7 8 B C M N O p q r s t u v w x y z IC kB zB JC lB","2":"F G FC","8":"GC HC","129":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"E tB KC 0B LC MC NC OC PC QC","129":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I fC gC hC iC 0B jC kC","129":"H"},J:{"1":"D A"},K:{"1":"B C kB zB lB","8":"A","129":"b"},L:{"129":"H"},M:{"129":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I","129":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"129":"yC"},R:{"129":"zC"},S:{"1":"0C"}},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 cac282775383c6d..8a809232a0e3aff 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 zB","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","260":"I n J D E F A B","1156":"mB","1284":"1B","1796":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","16":"F FC","132":"GC HC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","132":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2049":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J D 1B","2049":"F A B","2692":"E"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","260":"I o J D E F A B","1156":"nB","1284":"3B","1796":"4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","16":"F FC","132":"GC HC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","132":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2049":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ff40d664d1b426b..fdbae9567b267bf 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","132":"mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","260":"I n J D E F A"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","260":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","260":"F FC GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","260":"sB KC yB"},H:{"260":"eC"},I:{"1":"I H iC yB jC kC","260":"mB fC gC hC"},J:{"1":"A","260":"D"},K:{"1":"B C b jB xB kB","260":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","132":"nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","260":"I o J D E F A"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","260":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","260":"F FC GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","260":"tB KC 0B"},H:{"260":"eC"},I:{"1":"I H iC 0B jC kC","260":"nB fC gC hC"},J:{"1":"A","260":"D"},K:{"1":"B C b kB zB lB","260":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 4743fa6085047be..63a29e968f9446b 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":"zB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","8":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","8":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 84cfedbb0c0d322..ee647220e969ae4 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 zB","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","33":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J D E F A 1B","33":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","33":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 756d704ae4e6c51..d73f4f249ac85be 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b VB WB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","194":"SB oB TB pB UB VB b WB XB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f8ba5192c1ca18d..a8dfc7414537f59 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D 5B sB 6B 7B 8B","129":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","194":"E F A 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB LC MC NC","129":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","194":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D 6B tB 7B 8B 9B","129":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","194":"E F A AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B LC MC NC","129":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","194":"E OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ceb4330a6a5ba2a..170d13a2581eda4 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","8":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","8":"F FC GC HC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"mB I H gC hC iC yB jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"E F A B","8":"J D 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","8":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","8":"F FC GC HC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"nB I H gC hC iC 0B jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 0629eaf5e378537..3d0ad92132cf429 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","130":"B C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC","130":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A 6B tB 7B 8B 9B AC uB","130":"B C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC","130":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 a8cee0fbeb00a8c..d44b589c1154afd 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 zB","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","516":"B C jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","258":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","258":"b"},L:{"258":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","258":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"132":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","516":"B C kB lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","258":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","258":"b"},L:{"258":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","258":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9b057d83bc399da..c38619968d6038b 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F B FC GC HC IC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"I H iC yB jC kC","2":"mB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b jB xB kB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F B FC GC HC IC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"I H iC 0B jC kC","2":"nB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b kB zB lB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 5081f7e8e785d6a..d75d561332aa0d6 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o","33":"p q r s"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p","33":"q r s t"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 afa108a5a3f6c38..c2d52c6edc6ae1b 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","4":"n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z xB JC kB","2":"F B FC GC HC IC jB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC","4":"yB"},H:{"2":"eC"},I:{"1":"H gC hC yB jC kC","2":"mB I fC iC"},J:{"1":"D A"},K:{"1":"C b jB xB kB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","4":"o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z zB JC lB","2":"F B FC GC HC IC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC","4":"0B"},H:{"2":"eC"},I:{"1":"H gC hC 0B jC kC","2":"nB I fC iC"},J:{"1":"D A"},K:{"1":"C b kB zB lB","2":"A B"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 3d9ef35727e63fc..f30110ea2e252a0 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB LC","129":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC","257":"gC hC"},J:{"1":"A","16":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"516":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"16":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:4,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B LC","129":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC","257":"gC hC"},J:{"1":"A","16":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"516":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"16":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 c68d0ef2105586e..3343abe0bfb3f80 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":"zB","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","132":"mB 1B 2B","260":"I n J D E F A B C K L G M N O o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n","260":"J D E F A B C K L G M N O o p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","132":"I 5B sB","260":"n J 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","132":"F B FC GC HC IC","260":"C jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"sB","260":"KC yB LC MC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"fC","260":"mB I gC hC iC yB"},J:{"260":"D A"},K:{"1":"b","132":"A","260":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"1B","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","132":"nB 3B 4B","260":"I o J D E F A B C K L G M N O p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o","260":"J D E F A B C K L G M N O p q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","132":"I 6B tB","260":"o J 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","132":"F B FC GC HC IC","260":"C kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"tB","260":"KC 0B LC MC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"fC","260":"nB I gC hC iC 0B"},J:{"260":"D A"},K:{"1":"b","132":"A","260":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 449ead67b4b8096..719390c2e1823cc 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 5facd54a90e2437..fc30ce75191833a 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 zB","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","513":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","513":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B","260":"F A 9B tB"},F:{"1":"0 1 2 3 4 5 6 x y z","2":"F B C G M N O o p q r s t u v w FC GC HC IC jB xB JC kB","513":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","513":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","513":"b"},L:{"513":"H"},M:{"513":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I","513":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"513":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","513":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"BB CB DB EB FB GB HB IB JB KB","2":"0 1 2 3 4 5 6 7 8 9 I o 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","513":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B","260":"F A AC uB"},F:{"1":"0 1 2 3 4 5 6 7 y z","2":"F B C G M N O p q r s t u v w x FC GC HC IC kB zB JC lB","513":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","513":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","513":"b"},L:{"513":"H"},M:{"513":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I","513":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"513":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2e37e623d8079a3..dfdd5c073be8e4c 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 zB"},B:{"1":"W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB 1B 2B","194":"cB dB eB fB gB hB iB P Q R pB S T U V W"},D:{"1":"W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","322":"P Q R S T","578":"U V"},E:{"2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB AC","1090":"L G BC CC uB vB wB DC lB EC"},F:{"1":"eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB FC GC HC IC jB xB JC kB","578":"dB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","66":"bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","322":"P Q R S T","578":"U V"},C:{"1":"X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB 3B 4B","194":"dB eB fB gB hB iB jB P Q R qB S T U V W"},D:{"1":"W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","322":"P Q R S T","578":"U V"},E:{"2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB BC","1090":"L G CC DC vB wB xB yB mB EC"},F:{"1":"fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB FC GC HC IC kB zB JC lB","578":"eB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC","66":"bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 42e1e134fc03006..e8c848de5375738 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M 1B 2B","4":"N O o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC"},H:{"2":"eC"},I:{"1":"mB I H gC hC iC yB jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M 3B 4B","4":"N O p q r s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC"},H:{"2":"eC"},I:{"1":"nB I H gC hC iC 0B jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e4c289e3e1a51e8..26aae5b8351c498 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","66":"p q r s t u v"},E:{"2":"I n J E F A B C K L G 5B sB 6B 7B 9B tB jB kB AC BC CC uB vB wB DC lB EC","130":"D 8B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","130":"NC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N O p x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","66":"q r s t u v w"},E:{"2":"I o J E F A B C K L G 6B tB 7B 8B AC uB kB lB BC CC DC vB wB xB yB mB EC","130":"D 9B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","130":"NC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 0c7721564595f38..c73dd77892e02b1 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":"zB","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B","8":"mB I n J D E F A B C K L G M N O o p q r s t 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K","8":"L G M N O o"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB","8":"I n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B FC GC HC IC","8":"C jB xB JC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB","8":"KC yB LC"},H:{"2":"eC"},I:{"1":"H jC kC","8":"mB I fC gC hC iC yB"},J:{"1":"A","8":"D"},K:{"1":"b","2":"A B","8":"C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"1B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B","8":"nB I o J D E F A B C K L G M N O p q r s t u 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K","8":"L G M N O p"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB","8":"I o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B FC GC HC IC","8":"C kB zB JC lB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB","8":"KC 0B LC"},H:{"2":"eC"},I:{"1":"H jC kC","8":"nB I fC gC hC iC 0B"},J:{"1":"A","8":"D"},K:{"1":"b","2":"A B","8":"C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d3fb12ebba6571e..29a5b3873bd7f01 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 zB"},B:{"2":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","322":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","322":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"322":"xC"},R:{"1":"yC"},S:{"194":"zC"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB","322":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"322":"yC"},R:{"1":"zC"},S:{"194":"0C"}},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 537ffef7dfb5aca..2ae0de724815ed1 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 zB","161":"B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A","161":"B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J D E F A 1B","161":"B"},B:{"2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A","161":"B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f5ecb6f6252fdd4..61cc62c5fea86a3 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 841d866d8c7b954..309df12285d273a 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a 1B 2B","322":"m H qB rB"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB iB P Q R S T U V W X"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB","194":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC lB wC","2":"I mC nC oC pC qC tB rC sC tC uC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","194":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a 3B 4B","322":"m n H rB sB"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB","194":"fB gB hB iB jB P Q R S T U V W X"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB","194":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC uC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 bde7514b7bcaec9..29af25ba8797a4b 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 zB","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M N O"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y 1B 2B","8":"0 z PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","72":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","66":"0 1 2 3 z","72":"4"},E:{"2":"I n 5B sB 6B","8":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB","2":"F B C G M XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","66":"N O o p q","72":"r"},G:{"2":"sB KC yB LC MC","8":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"8":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC","2":"tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J D E F 1B","8":"A B"},B:{"1":"P","2":"Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M N O"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","8":"0 1 QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","72":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","2":"I o J D E F A B C K L G M N O p q r s t u v w x y z Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","66":"0 1 2 3 4","72":"5"},E:{"2":"I o 6B tB 7B","8":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB","2":"F B C G M YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","66":"N O p q r","72":"s"},G:{"2":"tB KC 0B LC MC","8":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"8":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC","2":"tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 23c41c5c472e4e6..8a439f70593ddad 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB","16":"1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB","16":"3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7c713e0c1abe249..2aff7c4da33fff8 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 zB","132":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"A B C K L G","36":"I n J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"A","8":"I n J D E F","33":"s","36":"B C K L G M N O o p q r"},E:{"1":"A B C K L G tB jB kB AC CC uB vB wB DC lB EC","8":"I n J D 5B sB 6B 7B","260":"E F 8B 9B","516":"BC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC","8":"B C HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC dC uB vB wB lB","8":"sB KC yB LC MC NC","260":"E OC PC QC","516":"cC"},H:{"2":"eC"},I:{"1":"H jC kC","8":"mB I fC gC hC iC yB"},J:{"1":"A","8":"D"},K:{"1":"b","2":"A","8":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"A B C K L G","36":"I o J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"A","8":"I o J D E F","33":"t","36":"B C K L G M N O p q r s"},E:{"1":"A B C K L G uB kB lB BC DC vB wB xB yB mB EC","8":"I o J D 6B tB 7B 8B","260":"E F 9B AC","516":"CC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC","8":"B C HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC dC vB wB xB yB mB","8":"tB KC 0B LC MC NC","260":"E OC PC QC","516":"cC"},H:{"2":"eC"},I:{"1":"H jC kC","8":"nB I fC gC hC iC 0B"},J:{"1":"A","8":"D"},K:{"1":"b","2":"A","8":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c9435371b0ab3cc..69b31752f9322af 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 1B 2B","132":"DB EB FB","260":"GB HB IB JB"},D:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"HB IB JB KB","260":"LB MB NB OB PB QB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","132":"4 5 6 7","260":"8 9 AB BB CB DB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC","16":"RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I","260":"mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"260":"zC"}},B:4,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","132":"EB FB GB","260":"HB IB JB KB"},D:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","132":"IB JB KB LB","260":"MB NB OB PB QB RB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","132":"5 6 7 8","260":"9 AB BB CB DB EB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC","16":"RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","260":"mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"260":"0C"}},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 35535f17ca36ebd..2f9ce6d0eae1915 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":"zB","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","36":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"E F A B","4":"1B","132":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","36":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2a6ed4e08024699..292dacc1e14d77f 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 036d9b3afe76f40..e6b5c008ed677d0 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 zB","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y 1B 2B","516":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"N O o p q r s t u v","2":"I n J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 9 w x y z","260":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J 6B 7B","2":"I n 5B sB","2052":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB","1025":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1025":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2052":"A B"},O:{"1025":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"260":"xC"},R:{"1":"yC"},S:{"516":"zC"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J D E F A 1B","132":"B"},B:{"132":"C K L G M N O","260":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","516":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"N O p q r s t u v w","2":"I o J D E F A B C K L G M","132":"0 1 2 3 4 5 6 7 8 9 x y z AB","260":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J 7B 8B","2":"I o 6B tB","2052":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B","1025":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1025":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2052":"A B"},O:{"1025":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"260":"yC"},R:{"1":"zC"},S:{"516":"0C"}},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 4fffa66c66b382b..061e9ba2ec3d4da 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F G M FC GC HC IC"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC","129":"WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F G M FC GC HC IC"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC","129":"WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 7d02404a1c037cb..7d8908bb521b744 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B","1090":"MB NB OB PB","2052":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d","4100":"e f g h i j k l a m H 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 LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o","2052":"p q r s t"},E:{"2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC","4100":"G BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB","260":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB fC gC hC","514":"I iC yB"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2052":"zC"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B","1090":"NB OB PB QB","2052":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d","4100":"e f g h i j k l a m n H 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p","2052":"q r s t u"},E:{"2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC","4100":"G CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B","260":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB fC gC hC","514":"I iC 0B"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2052":"0C"}},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 0490d5079cf1493..4c3defa84dde43f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","132":"fC gC hC"},J:{"1":"A","132":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","132":"fC gC hC"},J:{"1":"A","132":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 f58cf0361a44639..6cbb857f6b779ed 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 zB","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2561":"C K L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B","1537":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 2B","1796":"mB 1B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L","1025":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB","1537":"0 1 2 3 G M N O o p q r s t u v w x y z"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","16":"I n J 5B sB","1025":"D E F A B C 7B 8B 9B tB jB","1537":"6B","4097":"K kB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","16":"F B C FC GC HC IC jB xB","260":"JC","1025":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","1537":"G M N O o p q"},G:{"1":"YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB","1025":"E OC PC QC RC SC TC UC VC","1537":"LC MC NC","4097":"WC XC"},H:{"2":"eC"},I:{"16":"fC gC","1025":"H kC","1537":"mB I hC iC yB jC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C jB xB kB","1025":"b"},L:{"1":"H"},M:{"1537":"a"},N:{"2561":"A B"},O:{"1537":"lC"},P:{"1025":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1025":"xC"},R:{"1025":"yC"},S:{"1537":"zC"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J D E 1B","2561":"A B","2692":"F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2561":"C K L G M N O"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B","1537":"0 1 2 3 4 5 6 7 8 9 I o 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 4B","1796":"nB 3B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L","1025":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB","1537":"0 1 2 3 4 G M N O p q r s t u v w x y z"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","16":"I o J 6B tB","1025":"D E F A B C 8B 9B AC uB kB","1537":"7B","4097":"K lB"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","16":"F B C FC GC HC IC kB zB","260":"JC","1025":"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","1537":"G M N O p q r"},G:{"1":"YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B","1025":"E OC PC QC RC SC TC UC VC","1537":"LC MC NC","4097":"WC XC"},H:{"2":"eC"},I:{"16":"fC gC","1025":"H kC","1537":"nB I hC iC 0B jC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C kB zB lB","1025":"b"},L:{"1":"H"},M:{"1537":"a"},N:{"2561":"A B"},O:{"1537":"lC"},P:{"1025":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1025":"yC"},R:{"1025":"zC"},S:{"1537":"0C"}},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 98d2ba5101a2b47..3f14111e26bfdbe 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","132":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I","16":"n J D E q r s t u","132":"F A B C K L G M N O o p"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","132":"J D E F A B 7B 8B 9B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"MC NC","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","514":"sB KC yB LC"},H:{"2":"eC"},I:{"2":"fC gC hC","260":"mB I iC yB","514":"H jC kC"},J:{"132":"A","260":"D"},K:{"2":"A B C jB xB kB","514":"b"},L:{"260":"H"},M:{"2":"a"},N:{"514":"A","1028":"B"},O:{"2":"lC"},P:{"260":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"260":"xC"},R:{"260":"yC"},S:{"1":"zC"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","132":"0 1 2 3 4 5 6 I o J D E F A B C K L G 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 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I","16":"o J D E r s t u v","132":"F A B C K L G M N O p q"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","132":"J D E F A B 8B 9B AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"MC NC","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","514":"tB KC 0B LC"},H:{"2":"eC"},I:{"2":"fC gC hC","260":"nB I iC 0B","514":"H jC kC"},J:{"132":"A","260":"D"},K:{"2":"A B C kB zB lB","514":"b"},L:{"260":"H"},M:{"2":"a"},N:{"514":"A","1028":"B"},O:{"2":"lC"},P:{"260":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"260":"yC"},R:{"260":"zC"},S:{"1":"0C"}},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 e4d8812c54362f9..a77ad78a46df8d7 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1a600e24f5e1bb6..f470c91c6391540 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC GC HC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"130":"eC"},I:{"130":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"130":"A B C b jB xB kB"},L:{"132":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"130":"lC"},P:{"130":"I","132":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"2":"zC"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC GC HC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"130":"eC"},I:{"130":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"130":"A B C b kB zB lB"},L:{"132":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"130":"lC"},P:{"130":"I","132":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"2":"0C"}},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 de5fd4b4835cab2..0a8bc2326d62e91 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M 1B 2B","4":"N O o p","194":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","66":"PB QB RB nB SB oB TB UB b VB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB FC GC HC IC jB xB JC kB","66":"CB DB EB FB GB HB IB JB KB LB"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M 3B 4B","4":"N O p q","194":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB","66":"QB RB SB oB TB pB UB VB b WB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB FC GC HC IC kB zB JC lB","66":"DB EB FB GB HB IB JB KB LB MB"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 def83a93cbf0f20..acc99bffc1541c0 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 1B 2B"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 aa167be1b39a881..0c05db197013e35 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 zB","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K","1025":"L G M N O"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","513":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"388":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB fC gC hC","388":"I H iC yB jC kC"},J:{"2":"D","388":"A"},K:{"1":"A B C jB xB kB","388":"b"},L:{"388":"H"},M:{"641":"a"},N:{"388":"A B"},O:{"388":"lC"},P:{"388":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"388":"xC"},R:{"388":"yC"},S:{"513":"zC"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J D E F 1B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K","1025":"L G M N O"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","513":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"388":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB fC gC hC","388":"I H iC 0B jC kC"},J:{"2":"D","388":"A"},K:{"1":"A B C kB zB lB","388":"b"},L:{"388":"H"},M:{"641":"a"},N:{"388":"A B"},O:{"388":"lC"},P:{"388":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"388":"yC"},R:{"388":"zC"},S:{"513":"0C"}},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 5853b2261ec28ae..b298bb7794395f9 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n","388":"J D E F A 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB","388":"E LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB jC"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o","388":"J D E F A 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B","388":"E LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B jC"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 a575518b92357d0..22c258c14358cf8 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","132":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z xB JC kB","2":"F FC GC HC IC","132":"B jB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB H fC gC hC yB jC kC","4":"I iC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","132":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z zB JC lB","2":"F FC GC HC IC","132":"B kB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB H fC gC hC 0B jC kC","4":"I iC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d2e7fbb98e1dd29..059daad553d3129 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"H yB jC kC","4":"mB I fC gC hC iC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H 0B jC kC","4":"nB I fC gC hC iC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9c6568d88db4f1b..9e72677389e8e5d 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 zB","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L G M N O"},C:{"2":"0B mB 1B 2B","129":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 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 LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L q r s t u","129":"G M N O o p"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F FC GC HC IC","16":"B jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"129":"eC"},I:{"1":"H jC kC","16":"fC gC","129":"mB I hC iC yB"},J:{"1":"D","129":"A"},K:{"1":"C b","2":"A","16":"B jB xB","129":"kB"},L:{"1":"H"},M:{"129":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"129":"zC"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J D E F 1B","129":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L G M N O"},C:{"2":"2B nB 3B 4B","129":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L r s t u v","129":"G M N O p q"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F FC GC HC IC","16":"B kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"129":"eC"},I:{"1":"H jC kC","16":"fC gC","129":"nB I hC iC 0B"},J:{"1":"D","129":"A"},K:{"1":"C b","2":"A","16":"B kB zB","129":"lB"},L:{"1":"H"},M:{"129":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"129":"0C"}},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 1177fbdb9716acf..df40c2756c5ce58 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","16":"F FC GC HC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","16":"F FC GC HC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 5ac4c6c26ec34df..373e9af1fd7e799 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 48c19b4835b68ec..3d772bcd6256f3d 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":"zB","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","16":"F FC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"1B","132":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","16":"F FC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d4909047cc40882..ec0f1f4f55ce44f 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 4245fe1406994ac..a74cf331a799131 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC pC qC tB"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 8b7e816144d7462..08d737608ee830e 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 zB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B","194":"LB MB NB"},D:{"1":"RB nB SB oB TB UB b","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","516":"KB LB MB NB OB PB QB","1025":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","516":"7 8 9 AB BB CB DB","1025":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","1025":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"516":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I","516":"mC nC"},Q:{"1025":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O","2":"C K L","516":"G","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","194":"MB NB OB"},D:{"1":"SB oB TB pB UB VB b","2":"0 1 2 3 4 5 6 7 8 9 I o 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","516":"LB MB NB OB PB QB RB","1025":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2":"0 1 2 3 4 5 6 7 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","516":"8 9 AB BB CB DB EB","1025":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","1025":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"516":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","516":"mC nC"},Q:{"1025":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 2f4f77e97f57dd9..23cf74f7acb08e6 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N","130":"O"},C:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 1B 2B"},D:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N","130":"O"},C:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB 3B 4B"},D:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 e71afa9cc5075f7..b477f0e07233322 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 zB"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B","932":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB 1B 2B","2308":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I n J D E F A B C K L G M N O o p q","545":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB","1537":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J 5B sB 6B","516":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","548":"F A 9B tB","676":"D E 7B 8B"},F:{"2":"F B C FC GC HC IC jB xB JC kB","513":"3","545":"0 1 G M N O o p q r s t u v w x y z","1537":"2 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB LC MC","516":"bC cC dC uB vB wB lB","548":"PC QC RC SC TC UC VC WC XC YC ZC aC","676":"E NC OC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","545":"jC kC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C jB xB kB","1537":"b"},L:{"1537":"H"},M:{"2308":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"545":"I","1537":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"545":"xC"},R:{"1537":"yC"},S:{"932":"zC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","1537":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B","932":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB 3B 4B","2308":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I o J D E F A B C K L G M N O p q r","545":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB","1537":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J 6B tB 7B","516":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","548":"F A AC uB","676":"D E 8B 9B"},F:{"2":"F B C FC GC HC IC kB zB JC lB","513":"4","545":"0 1 2 G M N O p q r s t u v w x y z","1537":"3 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B LC MC","516":"bC cC dC vB wB xB yB mB","548":"PC QC RC SC TC UC VC WC XC YC ZC aC","676":"E NC OC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","545":"jC kC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C kB zB lB","1537":"b"},L:{"1537":"H"},M:{"2308":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"545":"I","1537":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"545":"yC"},R:{"1537":"zC"},S:{"932":"0C"}},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 9a3af1dc3826397..00229f28fbff004 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","129":"n 6B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","129":"o 7B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 3295fe13bca4f18..6ae1e177769cf9b 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","578":"c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y 1B 2B","322":"Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z","194":"c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB FC GC HC IC jB xB JC kB","194":"hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z","578":"c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y 3B 4B","322":"Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z","194":"c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB FC GC HC IC kB zB JC lB","194":"iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1e390a1293111e6..7794064205731ca 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 63c287b862d8c57..319b0604784782f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB 1B 2B"},D:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB 3B 4B"},D:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1eef453baee694c..d9161b4f65e6a23 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 zB","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"F A B","2":"J D 1B","129":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e7e51c5272da3c6..405e39a3e051803 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G","132":"M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B"},D:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB nB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B","132":"tB"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB FC GC HC IC jB xB JC kB","132":"DB EB FB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC","132":"SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC","132":"oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"132":"zC"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G","132":"M N O"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB","132":"RB SB oB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC","132":"uB"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB FC GC HC IC kB zB JC lB","132":"EB FB GB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC","132":"SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC","132":"oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"132":"0C"}},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 83132de7c7b6232..664bfa0eb83f54b 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"mB I iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"nB I iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 d4aa7fde55056ca..1a8aac24ecae379 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","16":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC","16":"C"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b kB","2":"A B jB xB","16":"C"},L:{"1":"H"},M:{"130":"a"},N:{"130":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","16":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC","16":"C"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b lB","2":"A B kB zB","16":"C"},L:{"1":"H"},M:{"130":"a"},N:{"130":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ca1f24110bfb98a..03a24623d792722 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x FC GC HC IC jB xB JC kB","194":"0 1 2 3 y z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"194":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","194":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"194":"yC"},S:{"1":"zC"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"CB DB EB FB GB HB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y FC GC HC IC kB zB JC lB","194":"0 1 2 3 4 z"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"194":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I","194":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"194":"zC"},S:{"1":"0C"}},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 35afdb9c460d49d..8e61621560e63a6 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B G M FC GC HC IC jB xB JC","16":"C"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b kB","2":"A B jB xB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B G M FC GC HC IC kB zB JC","16":"C"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b lB","2":"A B kB zB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 64be2d9596e98b3..5d3f8d41285d5d3 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 zB","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r 1B 2B","132":"s t u v w x"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"0 1 2 3 4 5 6 F B G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC","16":"C"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"1":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b kB","2":"A B jB xB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J D E 1B","260":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s 3B 4B","132":"t u v w x y"},D:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"0 1 2 3 4 5 6 7 F B G M N O p q r s t u v w x y z FC GC HC IC kB zB JC","16":"C"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"1":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b lB","2":"A B kB zB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 44dc9a9fd76c13c..299f0c536e0940e 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"J 5B sB","132":"I n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC","16":"C","132":"G M"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB","132":"LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"mB I hC iC yB"},J:{"132":"D A"},K:{"1":"b kB","2":"A B jB xB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G 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 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"J 6B tB","132":"I o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC","16":"C","132":"G M"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B","132":"LC MC NC"},H:{"2":"eC"},I:{"1":"H jC kC","16":"fC gC","132":"nB I hC iC 0B"},J:{"132":"D A"},K:{"1":"b lB","2":"A B kB zB","16":"C"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 9d8f5872198015f..64edde66e2cc276 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","16":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","16":"F FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB","16":"fC gC","132":"jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"132":"H"},M:{"132":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"2":"I","132":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","16":"o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","16":"F FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B","16":"fC gC","132":"jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"132":"H"},M:{"132":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"2":"I","132":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 10bc10091253cae..8fa7deba99fd1f6 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 ec879c93212d57d..8805213eec23a97 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 zB","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","194":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z","516":"AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","1028":"A tB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","322":"G M N O o p q r s t u v w","516":"0 1 2 3 4 x y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC","1028":"RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","516":"I"},Q:{"1":"xC"},R:{"516":"yC"},S:{"1":"zC"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J D E F A 1B","2052":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","194":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O","322":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB","516":"BB CB DB EB FB GB HB IB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","1028":"A uB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","322":"G M N O p q r s t u v w x","516":"0 1 2 3 4 5 y z"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC","1028":"RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","516":"I"},Q:{"1":"yC"},R:{"516":"zC"},S:{"1":"0C"}},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 1324268f5fab5b5..62e8775239e09e2 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","130":"E sB KC yB LC MC NC OC PC QC RC SC TC UC"},H:{"130":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D","130":"A"},K:{"1":"b","130":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"130":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","130":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC"},H:{"130":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D","130":"A"},K:{"1":"b","130":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"130":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1f4d0e36597fda5..82f69ea95985de4 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 zB"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB 1B 2B","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z","513":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","1537":"Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB NB OB PB QB RB SB TB UB b VB WB FC GC HC IC jB xB JC kB","1537":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","130":"E sB KC yB LC MC NC OC PC QC RC SC TC UC"},H:{"130":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","130":"A"},K:{"2":"b","130":"A B C jB xB kB"},L:{"1537":"H"},M:{"2":"a"},N:{"130":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC","1537":"tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"513":"zC"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P","1537":"Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB 3B 4B","260":"0 1 2 3 4 5 6 7 8 9 I o 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","513":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","1537":"Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB CB DB OB PB QB RB SB TB UB VB b WB XB FC GC HC IC kB zB JC lB","1537":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","130":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC"},H:{"130":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","130":"A"},K:{"2":"b","130":"A B C kB zB lB"},L:{"1537":"H"},M:{"2":"a"},N:{"130":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC","1537":"tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"513":"0C"}},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 59fec7b16cdb760..2f5515583b2f62d 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 zB","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB","260":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"16":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"16":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"16":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J D E 1B","132":"F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB","260":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"16":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"16":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"16":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2e557d419f11614..d2f744376e60470 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},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 2148f542435ec08..f684dc680d15609 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","260":"G M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","129":"8"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"16":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","260":"G M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","129":"9"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"16":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 0d522d029dc6b1f..353724f575220d6 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB","194":"L G AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","194":"aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"I H jC kC","2":"mB fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB","194":"L G BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","194":"aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"I H jC kC","2":"nB fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6c1f355f6357d28..712b0ee1cce3044 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB 1B 2B","132":"PB","578":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T"},D:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","322":"B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC","322":"TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M","1028":"N O"},C:{"1":"U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB 3B 4B","132":"QB","578":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T"},D:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","322":"B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC","322":"TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 2f9d8be122cf91e..8c6efc40ab2c2cb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 4a8ab92210c248e..924a73a9f69ad6b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB 1B 2B","132":"fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB","66":"fB gB"},E:{"2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB","322":"L G AC BC CC uB","580":"vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB","66":"TB UB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","322":"aC bC cC dC uB","580":"vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I mC nC oC pC qC tB rC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB 3B 4B","132":"gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB","66":"gB hB"},E:{"1":"EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB","322":"L G BC CC DC vB","580":"wB xB yB mB"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB","66":"UB VB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","322":"aC bC cC dC vB","580":"wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"132":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 78964baf81355fe..abc791ff992df53 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":"zB","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","132":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F B C FC GC HC IC jB xB JC","132":"kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"E sB KC yB LC MC NC OC PC QC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"mB I fC gC hC iC yB"},J:{"132":"D A"},K:{"1":"b","16":"A B C jB xB","132":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","132":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","132":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"4":"zC"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"1B","132":"J D E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G M N O p q r s t"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","132":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F B C FC GC HC IC kB zB JC","132":"lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"E tB KC 0B LC MC NC OC PC QC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"nB I fC gC hC iC 0B"},J:{"132":"D A"},K:{"1":"b","16":"A B C kB zB","132":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","132":"A"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","132":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"4":"0C"}},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 ff08e084e21373a..42638dd932a38e6 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b VB WB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"194":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","194":"SB oB TB pB UB VB b WB XB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"194":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f310873783233a1..96da1a3ef2254b1 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 zB","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","36":"C K L"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B","36":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z 2B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","36":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","36":"n J D 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B FC GC HC IC jB","36":"C G M N O o p xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB","36":"KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"fC","36":"mB I gC hC iC yB jC kC"},J:{"36":"D A"},K:{"1":"b","2":"A B","36":"C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","36":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J D E 1B","36":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","36":"C K L"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B","36":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z 4B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","36":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","36":"o J D 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B FC GC HC IC kB","36":"C G M N O p q zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB","36":"KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"fC","36":"nB I gC hC iC 0B jC kC"},J:{"36":"D A"},K:{"1":"b","2":"A B","36":"C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"36":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","36":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6ee5a665cf44728..8c738422a6db099 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 fd85ab1d15526ce..fb823ec3157c3f7 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 zB","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z c d e f g h","584":"i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","129":"0B mB 1B 2B"},D:{"1":"t","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h","584":"i j k l a m H qB rB","1025":"3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","260":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB","584":"S T U V W X Y Z","2052":"B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB"},H:{"8":"eC"},I:{"8":"mB I H fC gC hC iC yB jC kC"},J:{"1":"A","8":"D"},K:{"8":"A B C b jB xB kB"},L:{"8":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"4":"lC"},P:{"8":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"8":"xC"},R:{"8":"yC"},S:{"1":"zC"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"F A B 1B","8":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z c d e f g h","584":"i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","129":"2B nB 3B 4B"},D:{"1":"u","8":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N O p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h","584":"i j k l a m n H rB","1025":"sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","260":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"2":"F","8":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB","584":"S T U V W X Y Z","2052":"B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B"},H:{"8":"eC"},I:{"8":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"A","8":"D"},K:{"8":"A B C b kB zB lB"},L:{"8":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"4":"lC"},P:{"8":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"8":"yC"},R:{"8":"zC"},S:{"1":"0C"}},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 1029220f6863b79..3cb9cbeb7023514 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":"zB","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","1025":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","900":"0B mB 1B 2B","1025":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"n 5B","900":"I sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F","132":"B C FC GC HC IC jB xB JC kB"},G:{"1":"KC yB LC MC NC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB","2052":"E OC"},H:{"132":"eC"},I:{"1":"mB I hC iC yB jC kC","16":"fC gC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C jB xB kB","4097":"b"},L:{"4097":"H"},M:{"4097":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"4097":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1025":"zC"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"1B","900":"J D E F"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","1025":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","900":"2B nB 3B 4B","1025":"0 1 2 3 4 5 6 7 8 9 I o 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"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"o 6B","900":"I tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F","132":"B C FC GC HC IC kB zB JC lB"},G:{"1":"KC 0B LC MC NC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB","2052":"E OC"},H:{"132":"eC"},I:{"1":"nB I hC iC 0B jC kC","16":"fC gC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C kB zB lB","4097":"b"},L:{"4097":"H"},M:{"4097":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"4097":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1025":"0C"}},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 46bf61a6b838cd0..926103818340c60 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 zB"},B:{"1":"C K L G M N O","16":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z","2":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB","16":"rB 3B 4B"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"B C G M N O o p q r s t GC HC IC jB xB JC kB","2":"0 1 2 3 4 5 6 7 8 9 F u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"16":"eC"},I:{"1":"I H iC yB jC kC","16":"mB fC gC hC"},J:{"16":"D A"},K:{"1":"C b kB","16":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Media attribute"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O","16":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z","2":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"rB sB 5B"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"B C G M N O p q r s t u GC HC IC kB zB JC lB","2":"0 1 2 3 4 5 6 7 8 9 F v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"16":"eC"},I:{"1":"I H iC 0B jC kC","16":"nB fC gC hC"},J:{"16":"D A"},K:{"1":"C b lB","16":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 fe82e70440b0816..b211b988f286810 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 zB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I n J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n 5B sB 6B","132":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB LC MC NC","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","132":"H jC kC"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","132":"b"},L:{"132":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"2":"I mC","132":"nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"132":"zC"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I o J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o 6B tB 7B","132":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B LC MC NC","132":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","132":"H jC kC"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","132":"b"},L:{"132":"H"},M:{"132":"a"},N:{"132":"A B"},O:{"2":"lC"},P:{"2":"I mC","132":"nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"132":"0C"}},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 5941badbfce9d7f..7dc13854963d60f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB","16":"L G AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Media Session API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB"},E:{"2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB","16":"L G BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 d78cfc236aeea9c..ea10a448722039c 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 1B 2B","260":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","324":"KB LB MB NB OB PB QB RB nB SB oB"},E:{"2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","132":"B C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","324":"5 6 7 8 9 AB BB CB DB EB FB GB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"260":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I","132":"mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"260":"zC"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","260":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","324":"LB MB NB OB PB QB RB SB oB TB pB"},E:{"2":"I o J D E F A 6B tB 7B 8B 9B AC uB","132":"B C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","324":"6 7 8 9 AB BB CB DB EB FB GB HB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"260":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I","132":"mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"260":"0C"}},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 cd9f491c81ec6e3..559837df0c9ea19 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB HB"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","322":"K L kB AC"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"3 4"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC","578":"VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"HB IB"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","322":"K L lB BC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"4 5"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC","578":"VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 b9d1ad0cfb9d877..46320b57937b84c 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 zB","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B","66":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M","33":"s t u v w x y z","66":"N O o p q r"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC","260":"XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB jC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B","66":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M","33":"0 t u v w x y z","66":"N O p q r s"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC","260":"XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B jC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 013cad2c9c4b14c..89b0e6b778a8198 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T","450":"U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","66":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","66":"4 5 6 7 8 9 AB BB CB DB EB FB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"450":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T","450":"U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","66":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","66":"5 6 7 8 9 AB BB CB DB EB FB GB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"450":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6a71272e61a8232..951999593b0bbd0 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","258":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"513":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I","16":"mC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 I o J D E F A B C K L G M N O p q r s t u v w x y z","132":"eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","258":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC CC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"513":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","16":"mC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 444d94aa3d333eb..c69fedbf0cc146c 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F FC GC HC IC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F FC GC HC IC"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ff438b2972355af..f0acaff085e541f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 61b4c8285ac87a4..5a32efb77502783 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 zB","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"F A B","8":"J 1B","129":"D","257":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e3f1524e65ab697..424345b989a8e67 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","132":"I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","2":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","132":"I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","2":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e1110bbfc295841..1643ea3220d576f 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","386":"q r"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o J D E F A B C K L G M N O p q t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","386":"r s"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fa542fb4d70f4e3..bfee40f8222dd3e 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p 1B 2B","4":"0 1 2 3 q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","4":"mB I fC gC iC yB","132":"hC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"260":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q 3B 4B","4":"0 1 2 3 4 r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","4":"nB I fC gC iC 0B","132":"hC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"260":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c8a400b97dc4244..d7bcf1884473ba7 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e702a8764eeb254..9afcfa26f6cb32b 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 zB"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"132":"LB MB NB OB PB QB RB nB SB oB TB UB b","164":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B","516":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c","1028":"d e f g h i j k l a m H qB rB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","516":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","132":"F 9B","164":"D E 8B","420":"I n J 5B sB 6B 7B"},F:{"1":"C jB xB JC kB","2":"F B FC GC HC IC","420":"0 1 2 3 4 5 G M N O o p q r s t u v w x y z","516":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"PC QC","164":"E NC OC","420":"sB KC yB LC MC"},H:{"1":"eC"},I:{"420":"mB I fC gC hC iC yB jC kC","516":"H"},J:{"420":"D A"},K:{"1":"C jB xB kB","2":"A B","516":"b"},L:{"516":"H"},M:{"516":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","420":"I"},Q:{"132":"xC"},R:{"132":"yC"},S:{"164":"zC"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O","516":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"132":"MB NB OB PB QB RB SB oB TB pB UB VB b","164":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","516":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c","1028":"d e f g h i j k l a m n H rB sB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I o 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","516":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","132":"F AC","164":"D E 9B","420":"I o J 6B tB 7B 8B"},F:{"1":"C kB zB JC lB","2":"F B FC GC HC IC","420":"0 1 2 3 4 5 6 G M N O p q r s t u v w x y z","516":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"PC QC","164":"E NC OC","420":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"420":"nB I fC gC hC iC 0B jC kC","516":"H"},J:{"420":"D A"},K:{"1":"C kB zB lB","2":"A B","516":"b"},L:{"516":"H"},M:{"516":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","420":"I"},Q:{"132":"yC"},R:{"132":"zC"},S:{"164":"0C"}},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 44480a172cb6c59..2ea1486ef28f760 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 zB","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N O"},C:{"2":"0B mB I n 1B 2B","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"16":"I n J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"16":"5B sB","132":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"C JC kB","2":"F FC GC HC IC","16":"B jB xB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"16":"sB KC","132":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"16":"fC gC","132":"mB I H hC iC yB jC kC"},J:{"132":"D A"},K:{"1":"C kB","2":"A","16":"B jB xB","132":"b"},L:{"132":"H"},M:{"260":"a"},N:{"260":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"260":"zC"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J D E 1B","260":"F A B"},B:{"132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N O"},C:{"2":"2B nB I o 3B 4B","260":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"16":"I o J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"16":"6B tB","132":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"C JC lB","2":"F FC GC HC IC","16":"B kB zB","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"16":"tB KC","132":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"16":"fC gC","132":"nB I H hC iC 0B jC kC"},J:{"132":"D A"},K:{"1":"C lB","2":"A","16":"B kB zB","132":"b"},L:{"132":"H"},M:{"260":"a"},N:{"260":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"260":"0C"}},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 d9f86d34f088727..53615c4990c988d 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 zB","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N","33":"O o p q r s t u v"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB fC gC hC","8":"I iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","8":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J D E 1B","8":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N","33":"O p q r s t u v w"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB fC gC hC","8":"I iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","8":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 06ee933c18dbc1f..6e92353c5dc4cb9 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":"zB","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","4":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"E F A B","2":"1B","8":"J D"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","4":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 94a0728e25dd16d..25238a3fda5c1ae 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 zB"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB iB P Q R S T U","260":"V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC","516":"uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB","194":"TB UB b VB WB XB YB ZB aB bB","260":"cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","516":"uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","194":"P Q R S T U","260":"V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB","194":"fB gB hB iB jB P Q R S T U","260":"V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC","516":"vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB","194":"UB VB b WB XB YB ZB aB bB cB","260":"dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC","516":"vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 782bd78a308eaf3..7b705ec7efb486d 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n","33":"J D E F A B C"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"I H iC yB jC kC","2":"mB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o","33":"J D E F A B C"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"I H iC 0B jC kC","2":"nB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 da6fa062301a6dd..c7f2552ac05ff11 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"16":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"1":"zC"}},B:2,C:"Navigator Language API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"16":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"1":"0C"}},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 7c5a20b2f9dfe20..82623c50eca72d7 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 zB"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB","1028":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC jB xB JC kB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"fC jC kC","132":"mB I gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","132":"I","516":"mC nC oC"},Q:{"1":"xC"},R:{"516":"yC"},S:{"260":"zC"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","1028":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB","1028":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB FC GC HC IC kB zB JC lB","1028":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"fC jC kC","132":"nB I gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","132":"I","516":"mC nC oC"},Q:{"1":"yC"},R:{"516":"zC"},S:{"260":"0C"}},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 1b70cd9c18a21d0..0c79f90439a3389 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I","36":"n J D E F A B C K L G M N O o p q"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","36":"H jC kC"},J:{"1":"A","2":"D"},K:{"2":"A B C jB xB kB","36":"b"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"36":"I","258":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"258":"yC"},S:{"1":"zC"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I","36":"o J D E F A B C K L G M N O p q r"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","36":"H jC kC"},J:{"1":"A","2":"D"},K:{"2":"A B C kB zB lB","36":"b"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"36":"I","258":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"258":"zC"},S:{"1":"0C"}},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 4b75e41152d2e72..6b6d4958e993e1c 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","16":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 8b72f11fd88792b..4d3ecc8a1476f3d 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G","260":"M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","132":"E F 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F G M N O FC GC HC","33":"B C IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","132":"E OC PC QC"},H:{"33":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB jC"},J:{"2":"D A"},K:{"1":"b","2":"A","33":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G","260":"M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","132":"E F 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F G M N O FC GC HC","33":"B C IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","132":"E OC PC QC"},H:{"33":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B jC"},J:{"2":"D A"},K:{"1":"b","2":"A","33":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 dc060e59d6c0ffc..bb6fae1dd804ede 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 s t u v w x y z","2":"6 7 8 9 F B C G M N O o p q r AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 t u v w x y z","2":"7 8 9 F B C G M N O p q r s AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 799ec7ab1dcd6f7..1071901bed39a03 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","8":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"E sB KC yB LC MC NC OC PC QC RC"},H:{"8":"eC"},I:{"1":"H","8":"mB I fC gC hC iC yB jC kC"},J:{"8":"D A"},K:{"1":"b","8":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","8":"I mC"},Q:{"1":"xC"},R:{"8":"yC"},S:{"1":"zC"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","8":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"8":"eC"},I:{"1":"H","8":"nB I fC gC hC iC 0B jC kC"},J:{"8":"D A"},K:{"1":"b","8":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","8":"I mC"},Q:{"1":"yC"},R:{"8":"zC"},S:{"1":"0C"}},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 07569e4882183a3..ab3f30559471cf4 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 zB"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","130":"A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O","2":"C P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","130":"A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 5a7b9cbd1ffa06c..f4be391b0bf6af2 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 zB","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S 1B 2B","2":"T U V W X Y Z c d e f g h i j k l a m H qB rB","4":"mB","8":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB IC jB xB JC kB","2":"F dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC","8":"GC HC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I fC gC hC iC yB jC kC","2":"H"},J:{"1":"D A"},K:{"1":"B C jB xB kB","2":"A b"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"F 1B","8":"J D E"},B:{"1":"C K L G M N O P Q R S T","2":"U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S 3B 4B","2":"T U V W X Y Z c d e f g h i j k l a m n H rB sB","4":"nB","8":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","2":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB IC kB zB JC lB","2":"F eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC","8":"GC HC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I fC gC hC iC 0B jC kC","2":"H"},J:{"1":"D A"},K:{"1":"B C kB zB lB","2":"A b"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 fac5e3aa65bc948..897bc883f561533 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 1B 2B","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","322":"RB nB SB oB TB UB b VB WB XB YB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB FC GC HC IC jB xB JC kB","322":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H"},D:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","322":"SB oB TB pB UB VB b WB XB YB ZB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FC GC HC IC kB zB JC lB","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 341839f9556a059..d7471edef60ceef 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC","132":"G BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"A","2":"D"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC","132":"G CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"A","2":"D"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 899d8a4edc87e57..6d3ca88a07edd91 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 zB","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J D E 1B","8":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 98287b2aba287c6..121085961dc3f1c 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G","16":"M N O o"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC","16":"C"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G","16":"M N O p"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC","16":"C"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e010b73ecf1dc43..d2baa9eed58dfdf 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 1B 2B"},D:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 251fdddc9ed4002..03fc7fb151ed327 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 zB","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB","516":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC","4":"kB"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"A","132":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"F A B","2":"J D 1B","260":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB","516":"0 1 2 3 4 5 6 7 8 9 I o 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"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC","4":"lB"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"A","132":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6944c94accb09ac..0003ddbc1b99606 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","132":"B C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC","132":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D E F A 6B tB 7B 8B 9B AC uB","132":"B C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC","132":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 895f39542ba322c..97b09f65eaf1a4a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b VB WB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB","194":"SB oB TB pB UB VB b WB XB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 c004d23ee473cd0..8bcad1d513b4a0c 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 zB","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC","129":"kB","260":"F B FC GC HC IC jB xB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"C b kB","260":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"388":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J D 1B","260":"E","388":"F A B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC","129":"lB","260":"F B FC GC HC IC kB zB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"C b lB","260":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"388":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 1e1ce87e6c1639c..ca1cfaaa875114b 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 fafe403fc043666..efab9faa1e1bf73 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 71552953b034a7d..e94f2ead1067001 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F 1B 2B","33":"A B C K L G M N"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K","33":"0 1 L G M N O o p q r s t u v w x y z"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B C FC GC HC IC jB xB JC","33":"G M N O o"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","33":"jC kC"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","33":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F 3B 4B","33":"A B C K L G M N"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K","33":"0 1 2 L G 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 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B C FC GC HC IC kB zB JC","33":"G M N O p"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","33":"jC kC"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","33":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7e6910abdf9ffc4..ae5307ba84a7880 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 12564c87c162020..265cb2f9c6d0c0a 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 zB"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 1B 2B","16":"qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB","16":"rB 3B 4B"},E:{"1":"C K kB","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB jB","16":"L G AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC jB xB JC kB","16":"MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C jB xB kB","16":"b"},L:{"16":"H"},M:{"16":"a"},N:{"2":"A","16":"B"},O:{"16":"lC"},P:{"2":"I mC nC","16":"oC pC qC tB rC sC tC uC vC lB wC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","16":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 3B 4B","16":"rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"rB sB 5B"},E:{"1":"C K lB","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB kB","16":"L G BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB FC GC HC IC kB zB JC lB","16":"NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C kB zB lB","16":"b"},L:{"16":"H"},M:{"16":"a"},N:{"2":"A","16":"B"},O:{"16":"lC"},P:{"2":"I mC nC","16":"oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},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 5281a02ef637f3f..d14702aae98773e 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K","132":"L G M N O"},C:{"1":"HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","132":"E F 8B"},F:{"1":"OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","16":"E","132":"OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","132":"I mC nC oC pC qC"},Q:{"132":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K","132":"L G M N O"},C:{"1":"IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","132":"E F 9B"},F:{"1":"PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","16":"E","132":"OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","132":"I mC nC oC pC qC"},Q:{"132":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 450173e1ba2329f..3c82ac9d0c83433 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB 1B 2B","4162":"OB PB QB RB nB SB oB TB UB b VB","16452":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","194":"MB NB OB PB QB RB","1090":"nB SB","8196":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","514":"A B tB","8196":"C jB"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"9 AB BB CB DB EB FB GB","8196":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC","514":"RC SC TC","8196":"UC VC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"2049":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I","8196":"mC nC oC pC qC tB rC"},Q:{"8196":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB 3B 4B","4162":"PB QB RB SB oB TB pB UB VB b WB","16452":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB","194":"NB OB PB QB RB SB","1090":"oB TB","8196":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","514":"A B uB","8196":"C kB"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"AB BB CB DB EB FB GB HB","8196":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC","514":"RC SC TC","8196":"UC VC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"2049":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I","8196":"mC nC oC pC qC uB rC"},Q:{"8196":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 4b80ed88a21288d..5350a5bdb57468f 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 zB","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"16":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fe46a7065d5dd40..37155f1deb02759 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB 1B 2B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB"},G:{"1":"lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:7,C:"Permissions API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC 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 OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 b4adc6bc6c7fb96..7d133c2496c8ca2 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 zB"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB 1B 2B","258":"eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","258":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U","322":"V W","388":"X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","258":"C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC jB xB JC kB","258":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB","322":"cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC","258":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","258":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","258":"b"},L:{"388":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC","258":"pC qC tB rC sC tC uC vC lB wC"},Q:{"258":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","258":"P Q R S T U","322":"V W","388":"X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB 3B 4B","258":"fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB","258":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U","322":"V W","388":"X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","258":"C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC kB zB JC lB","258":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB","322":"dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC","258":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","258":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","258":"b"},L:{"388":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC","258":"pC qC uB rC sC tC uC vC mB wC xC"},Q:{"258":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 c210eb9dbf1530c..1ff88ffb6a3998b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB 1B 2B","132":"cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","1090":"XB","1412":"bB","1668":"YB ZB aB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB","2114":"ZB"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","4100":"A B C K tB jB kB"},F:{"1":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","8196":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC","4100":"PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"16388":"H"},M:{"16388":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB 3B 4B","132":"dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","1090":"YB","1412":"cB","1668":"ZB aB bB"},D:{"1":"bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB","2114":"aB"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","4100":"A B C K uB kB lB"},F:{"1":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","8196":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC","4100":"PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"16388":"H"},M:{"16388":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 09d2498e0118527..d136a978304c808 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","578":"3 4 5 6"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 I n J D E F A B C K L G M N O o p q r s t u v w x y z","194":"6"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB","322":"t"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","578":"4 5 6 7"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 I o J D E F A B C K L G M N O p q r s t u v w x y z","194":"7"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB","322":"u"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c335ac5a2a72d43..44af65eb914cb2e 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"2":"0B","194":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"194":"zC"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"2":"2B","194":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"194":"0C"}},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 e9c918657a0a2f5..3a2fed0323417dd 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":"zB","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"D E F A B","2":"1B","8":"J"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 98e83f282e85de9..a173e09b2df0088 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8de2414091da733..d936eb7f828dd6b 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 zB","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B","8":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z","328":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},D:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q","8":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","584":"LB MB NB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B","8":"D E F A B C 7B 8B 9B tB jB","1096":"kB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","8":"0 1 2 3 4 5 6 7 G M N O o p q r s t u v w x y z","584":"8 9 AB"},G:{"1":"YC ZC aC bC cC dC uB vB wB lB","8":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC","6148":"XC"},H:{"2":"eC"},I:{"1":"H","8":"mB I fC gC hC iC yB jC kC"},J:{"8":"D A"},K:{"1":"b","2":"A","8":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","36":"A"},O:{"8":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"mC","8":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"328":"zC"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J D E F 1B","164":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B","8":"0 1 2 3 4 5 6 7 8 9 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","328":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r","8":"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","584":"MB NB OB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B","8":"D E F A B C 8B 9B AC uB kB","1096":"lB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","8":"0 1 2 3 4 5 6 7 8 G M N O p q r s t u v w x y z","584":"9 AB BB"},G:{"1":"YC ZC aC bC cC dC vB wB xB yB mB","8":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC","6148":"XC"},H:{"2":"eC"},I:{"1":"H","8":"nB I fC gC hC iC 0B jC kC"},J:{"8":"D A"},K:{"1":"b","2":"A","8":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","36":"A"},O:{"8":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"mC","8":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"328":"0C"}},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 86d6da180318cf0..175fdce79a073f3 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C"},C:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 L G M N O o p q r s t u v w x y z"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G","33":"0 1 2 3 4 5 r s t u v w x y z","66":"M N O o p q"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"G M N O o p q r s"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 L G M N O p q r s t u v w x y z AB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G","33":"0 1 2 3 4 5 6 s t u v w x y z","66":"M N O p q r"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"G M N O p q r s t"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 6e6cce8e1f4986b..583331d49a8b51e 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 zB"},B:{"2":"C K L G M N O P Q R S T","322":"Z c d e f g h i j k l a m H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB","194":"fB gB hB iB P Q R S T","322":"V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","450":"U"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB","194":"TB UB b VB WB XB YB ZB aB bB cB","322":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"450":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T","322":"Z c d e f g h i j k l a m n H","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB","194":"gB hB iB jB P Q R S T","322":"V W X Y Z c d e f g h i j k l a m n H rB sB 5B","450":"U"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB","194":"UB VB b WB XB YB ZB aB bB cB dB","322":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"450":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 1fc179c18dc8ccc..e913fcb7a95b96b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB 1B 2B"},D:{"1":"gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC lB wC","2":"I mC nC oC pC qC tB rC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB 3B 4B"},D:{"1":"hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 090c9c0ec4c7857..e87a965cf554725 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B"},D:{"1":"eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC pC qC tB"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B"},D:{"1":"fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fbefb8b8ac6045d..e76c5a645ed59fb 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC"},F:{"1":"TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC jB xB JC kB"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC pC qC tB"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Private class fields"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC"},F:{"1":"UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB FC GC HC IC kB zB JC lB"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 cf2a7a94a3265e4..cff9dd50c3eb0c3 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 zB"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC"},F:{"1":"aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB FC GC HC IC jB xB JC kB"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R S"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC"},F:{"1":"bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB FC GC HC IC kB zB JC lB"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 98eea3bd5b24523..8c43b5dd22e3ba5 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F FC GC HC IC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC","132":"NC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F FC GC HC IC"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC","132":"NC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 37c0b68bddad7f6..5c01b1c0bdc67a6 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N"},C:{"1":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 1B 2B"},D:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N"},C:{"1":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB 3B 4B"},D:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 5fe1deb00ae4907..126728f6bc24080 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","4":"w x","8":"0B mB I n J D E F A B C K L G M N O o p q r s t u v 1B 2B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"1","8":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I n J D 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","4":"o","8":"F B C G M N O FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB LC MC NC"},H:{"8":"eC"},I:{"1":"H kC","8":"mB I fC gC hC iC yB jC"},J:{"8":"D A"},K:{"1":"b","8":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","4":"x y","8":"2B nB I o J D E F A B C K L G M N O p q r s t u v w 3B 4B"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"2","8":"0 1 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I o J D 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","4":"p","8":"F B C G M N O FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B LC MC NC"},H:{"8":"eC"},I:{"1":"H kC","8":"nB I fC gC hC iC 0B jC"},J:{"8":"D A"},K:{"1":"b","8":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 336064c91ccbe80..9e96d2dfac7d194 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 2083dac5f73504d..909f9f514dc40ac 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"7 8 9 I n J D E F A B C K L G M N O AB BB CB DB EB FB GB HB","66":"0 1 2 3 4 5 6 o p q r s t u v w x y z"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C u v w x y z FC GC HC IC jB xB JC kB","66":"G M N O o p q r s t"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"8 9 I o J D E F A B C K L G M N O AB BB CB DB EB FB GB HB IB","66":"0 1 2 3 4 5 6 7 p q r s t u v w x y z"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C v w x y z FC GC HC IC kB zB JC lB","66":"G M N O p q r s t u"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 076ce6d727bed17..1cc40efa10cdc9a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB 1B 2B","4":"aB bB cB dB eB","132":"ZB"},D:{"1":"cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB AC","260":"L"},F:{"1":"SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB FC GC HC IC jB xB JC kB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC pC qC tB"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB 3B 4B","4":"bB cB dB eB fB","132":"aB"},D:{"1":"dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB BC","260":"L"},F:{"1":"TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB FC GC HC IC kB zB JC lB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6d38f7a46a61604..c7334cfa4932974 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB","2":"0 1 2 3 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB","2":"F B C G M N O o WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","4":"s","16":"p q r t"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB","2":"rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB","2":"0 1 2 3 4 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB","2":"F B C G M N O p XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","4":"t","16":"q r s u"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB","2":"rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2ffb30e765000b3..6ac2d797c602d8e 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 zB"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB 1B 2B","257":"DB FB GB HB IB JB KB MB NB OB PB QB RB nB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","1281":"EB LB SB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","257":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","388":"DB EB FB GB HB IB"},E:{"2":"I n J D E F 5B sB 6B 7B 8B","514":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC","4100":"lB EC"},F:{"2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","16":"6 7 8 9 AB","257":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"257":"zC"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O","2":"C K L G M","257":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","257":"EB GB HB IB JB KB LB NB OB PB QB RB SB oB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","1281":"FB MB TB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","257":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","388":"EB FB GB HB IB JB"},E:{"2":"I o J D E F 6B tB 7B 8B 9B","514":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB","4100":"mB EC"},F:{"2":"0 1 2 3 4 5 6 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","16":"7 8 9 AB BB","257":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"257":"0C"}},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 0c0a9dbc8bd4d44..04e563ac5bed063 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":"zB","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","8":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","8":"F FC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"F A B","2":"1B","8":"J D","132":"E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","8":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","8":"F FC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7d57bd29ab75e56..e42d19937dfd71a 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F FC","132":"B C GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC MC"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","132":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"257":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J D E F A B","16":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L G M N O p q r s t u v"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F FC","132":"B C GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","132":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"257":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2142f872ea2fd2c..151f446897078ce 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 zB","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V","2":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","513":"W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"I n J D E F A B C K L G M N O o p","260":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB","513":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"C jB kB","2":"I n J D 5B sB 6B 7B","132":"E F A B 8B 9B tB","1025":"K L G AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB","2":"F B C FC GC HC IC jB xB JC kB","513":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"VC WC XC YC","2":"sB KC yB LC MC NC","132":"E OC PC QC RC SC TC UC","1025":"ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"P Q R S","132":"C K L G M N O","513":"T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V","2":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","513":"W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","2":"I o J D E F A B C K L G 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 MB NB OB PB QB RB SB oB TB","513":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"C kB lB","2":"I o J D 6B tB 7B 8B","132":"E F A B 9B AC uB","1025":"K L G BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB","2":"F B C FC GC HC IC kB zB JC lB","513":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"VC WC XC YC","2":"tB KC 0B LC MC NC","132":"E OC PC QC RC SC TC UC","1025":"ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 27873e7602edf8d..d9c44f78edf67cb 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 zB"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"2":"I n J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B FC GC HC IC jB xB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D","129":"A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","129":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"2":"I o J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B FC GC HC IC kB zB","129":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D","129":"A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9dcea911e469c4a..579b4f6feb3550e 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 e94e4f08232ac91..8c895d6f40d07f1 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 zB","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L G"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J D E F A 1B","132":"B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L G"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 a07fa5425ec5689..d7123b46ff540a2 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M","132":"N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y 1B 2B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","132":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I","132":"mC nC oC pC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M","132":"N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","132":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"132":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I","132":"mC nC oC pC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 29f03beabb540bc..7529d110e88591f 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 zB","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"E KC yB MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB","260":"LC"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J D E 1B","132":"F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"E KC 0B MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB","260":"LC"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e437bf487c5f360..16d01604d0083b7 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","33":"B C K L G M N O o p q r","164":"I n J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F","33":"r s","164":"O o p q","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","33":"B C K L G M N O p q r s","164":"I o J D 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F","33":"s t","164":"O p q r","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","33":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 02cf50d8001b8c7..53fc361fcfabeba 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B","194":"MB NB"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB","322":"L G AC BC CC uB vB wB DC lB EC"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","322":"aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B","194":"NB OB"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB","322":"L G BC CC DC vB wB xB yB mB EC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC","322":"aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 f7e42e88ae82052..5a8c5c4b0caca7f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB 1B 2B"},D:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","194":"NB OB PB QB RB nB SB oB TB UB"},E:{"1":"L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB","66":"K"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"AB BB CB DB EB FB GB HB IB JB KB"},G:{"1":"aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC tB rC sC tC uC vC lB wC","2":"I mC nC oC pC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB 3B 4B"},D:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB","194":"OB PB QB RB SB oB TB pB UB VB"},E:{"1":"L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB","66":"K"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB FC GC HC IC kB zB JC lB","194":"BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 fe8044a40fe2c94..c72abe694e49ccb 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"0 1 2 3"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"1 2 3 4"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 f1a9ae68d030a1f..ba81be9418022ac 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB","194":"DB EB FB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","194":"0 1 2"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"EB FB GB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","194":"1 2 3"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c21ebf001efb8c3..8030ead07a10225 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","516":"G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","33":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r","33":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","130":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"1":"zC"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","516":"G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s","33":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N FC GC HC IC kB zB JC lB","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"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","130":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"1":"0C"}},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 0a50112181589d6..ad566a2f52f96b0 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 zB"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I"},E:{"4":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I 5B sB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","8":"F B C FC GC HC IC jB xB JC kB"},G:{"4":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB"},H:{"8":"eC"},I:{"4":"mB I H iC yB jC kC","8":"fC gC hC"},J:{"4":"A","8":"D"},K:{"4":"b","8":"A B C jB xB kB"},L:{"4":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"4":"yC"},S:{"1":"zC"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J D E F A B 1B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I"},E:{"4":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I 6B tB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","8":"F B C FC GC HC IC kB zB JC lB"},G:{"4":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B"},H:{"8":"eC"},I:{"4":"nB I H iC 0B jC kC","8":"fC gC hC"},J:{"4":"A","8":"D"},K:{"4":"b","8":"A B C kB zB lB"},L:{"4":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"4":"zC"},S:{"1":"0C"}},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 2f187cb1e21056e..9d9c326828cb14a 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 I n J D E F A B C K L G M N O o p q r s t u v w x y z","2":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J 6B","2":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"7B","129":"I 5B sB"},F:{"1":"F B C G M N O FC GC HC IC jB xB JC kB","2":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"KC yB LC MC NC","2":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","129":"sB"},H:{"1":"eC"},I:{"1":"mB I fC gC hC iC yB jC","2":"H kC"},J:{"1":"D A"},K:{"1":"A B C jB xB kB","2":"b"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"display: run-in"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 I o J D E F A B C K L G M N O p q r s t u v w x y z","2":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J 7B","2":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"8B","129":"I 6B tB"},F:{"1":"F B C G M N O FC GC HC IC kB zB JC lB","2":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"KC 0B LC MC NC","2":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","129":"tB"},H:{"1":"eC"},I:{"1":"nB I fC gC hC iC 0B jC","2":"H kC"},J:{"1":"D A"},K:{"1":"A B C kB zB lB","2":"b"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9ca9c9025049344..fe9ce5c313e9353 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 zB","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z c d e f g h i j k l a m H"},C:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB 1B 2B"},D:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","513":"Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"G BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB jB","2052":"L","3076":"C K kB AC"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","513":"bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC","2052":"VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"16":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J D E F A 1B","388":"B"},B:{"1":"O P Q R S T U","2":"C K L G","129":"M N","513":"V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB 3B 4B"},D:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","2":"0 1 2 3 4 5 6 7 8 9 I o 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","513":"Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"G CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB kB","2052":"L","3076":"C K lB BC"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","513":"cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC","2052":"VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"513":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"16":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 9f6a8088466a9b4..c5d8762983ca520 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 zB","164":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","36":"C K L G M N O"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N 1B 2B","36":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","36":"B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J D E F A 1B","164":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","36":"C K L G M N O"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N 3B 4B","36":"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"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A","36":"B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 afae6da9225fa39..b92174958b68ceb 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","132":"n"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","132":"o"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ec06365f22c323e..c45dbce9cf24447 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","257":"I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","257":"0 I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ad732391623cc83..ae4ca34bce77d8e 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 zB","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","132":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0 1 2 3 4 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},E:{"1":"lB EC","2":"I n 5B sB","132":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC HC IC","16":"B jB xB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB JC kB"},G:{"1":"lB","16":"sB KC yB","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"1":"H","16":"fC gC","132":"mB I hC iC yB jC kC"},J:{"132":"D A"},K:{"1":"b","132":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J D 1B","132":"E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","132":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"0 1 2 3 4 5 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB"},E:{"1":"mB EC","2":"I o 6B tB","132":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC HC IC","16":"B kB zB","132":"0 1 2 3 4 5 6 7 8 9 C G M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB JC lB"},G:{"1":"mB","16":"tB KC 0B","132":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"1":"H","16":"fC gC","132":"nB I hC iC 0B jC kC"},J:{"132":"D A"},K:{"1":"b","132":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"132":"lC"},P:{"132":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 b5e234f82efe1b0..9eb2b294d126f87 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 95c754891e8c787..9a853299c046c94 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","2":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB","2":"F B C dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB","2":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB","2":"F B C eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 81648ec989c0b40..22fe1d7d2ec39d0 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":"zB","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 1B 2B","2180":"CB DB EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","132":"F B C FC GC HC IC jB xB JC kB"},G:{"16":"yB","132":"sB KC","516":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","16":"mB I fC gC hC iC","1025":"yB"},J:{"1":"A","16":"D"},K:{"1":"b","16":"A B C jB xB","132":"kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","16":"A"},O:{"1025":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2180":"zC"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"F A B","16":"1B","260":"J D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","2180":"DB EB FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","132":"F B C FC GC HC IC kB zB JC lB"},G:{"16":"0B","132":"tB KC","516":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","16":"nB I fC gC hC iC","1025":"0B"},J:{"1":"A","16":"D"},K:{"1":"b","16":"A B C kB zB","132":"lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","16":"A"},O:{"1025":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2180":"0C"}},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 1bc45bc1a7a582c..1452507891c8df2 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB 1B 2B"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","196":"SB oB TB UB","324":"b"},E:{"2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","516":"K L G kB AC BC CC uB vB wB DC lB EC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB 3B 4B"},D:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB","196":"TB pB UB VB","324":"b"},E:{"2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","516":"K L G lB BC CC DC vB wB xB yB mB EC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f157c3b20567bd0..5e292a2dd73c14e 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","322":"G M"},C:{"1":"DB FB GB HB IB JB KB MB NB OB PB QB RB nB oB TB UB b VB WB XB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"2 3 4 5 6 7 8 9 AB BB CB","513":"EB LB SB YB"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 I n J D E F A B C K L G M N O o p q r s t u v w x y z","4":"9 AB BB CB DB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v FC GC HC IC jB xB JC kB","4":"0 w x y z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","4":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","4":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"4":"yC"},S:{"2":"zC"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","322":"G M"},C:{"1":"EB GB HB IB JB KB LB NB OB PB QB RB SB oB pB UB VB b WB XB YB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"3 4 5 6 7 8 9 AB BB CB DB","513":"FB MB TB ZB"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N O p q r s t u v w x y z","4":"AB BB CB DB EB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B 6B tB 7B 8B 9B AC uB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w FC GC HC IC kB zB JC lB","4":"0 1 x y z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","4":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","4":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"4":"zC"},S:{"2":"0C"}},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 4c31459a7c8785b..c127875f03e1d3f 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 zB"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O","2":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 48b54754ca6e713..654412e0af8a52b 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"1":"mB I H gC hC iC yB jC kC","260":"fC"},J:{"1":"D A"},K:{"1":"b","16":"A B C jB xB kB"},L:{"1":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","16":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"SHA-2 SSL certificates"}; +module.exports={A:{A:{"1":"J D E F A B","2":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"1":"nB I H gC hC iC 0B jC kC","260":"fC"},J:{"1":"D A"},K:{"1":"b","16":"A B C kB zB lB"},L:{"1":"H"},M:{"16":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","16":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c4dcdbb97365be7..3e08b91e5c2d958 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 zB"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","66":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","2":"I n J D E F A B C K L G M N O o p q r s t Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 u v w x y z"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB","2":"F B C XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","33":"G M N O o p q"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB","33":"jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC","2":"tC uC vC lB wC","33":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P","2":"C K L G M N O Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","66":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","2":"I o J D E F A B C K L G M N O p q r s t u Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB","2":"F B C YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","33":"G M N O p q r"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B","33":"jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC","2":"tC uC vC mB wC xC","33":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 02411c53dba4c34..013f44d59b1870d 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB 1B 2B","322":"RB","578":"nB SB oB TB"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"A B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC","132":"RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I","4":"mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB 3B 4B","322":"SB","578":"oB TB pB UB"},D:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB"},E:{"1":"A B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC","132":"RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I","4":"mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 6d12e047d22bfe5..ea5486360023f2e 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 zB"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 1B 2B","194":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB","450":"eB fB gB hB iB","513":"P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB","194":"SB oB TB UB b VB WB XB","513":"c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A 5B sB 6B 7B 8B 9B","194":"B C K L G tB jB kB AC BC CC","513":"uB vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB FC GC HC IC jB xB JC kB","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC","194":"SC TC UC VC WC XC YC ZC aC bC cC dC","513":"uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"513":"H"},M:{"513":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z","2":"C K L G","194":"M N O","513":"c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB 3B 4B","194":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB","450":"fB gB hB iB jB","513":"P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB","194":"TB pB UB VB b WB XB YB","513":"c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A 6B tB 7B 8B 9B AC","194":"B C K L G uB kB lB BC CC DC","513":"vB wB xB yB mB EC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB FC GC HC IC kB zB JC lB","194":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC","194":"SC TC UC VC WC XC YC ZC aC bC cC dC","513":"vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"513":"H"},M:{"513":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 b4a672895908267..a90773211f8210b 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"n J 6B lB EC","2":"I D E F A B C K L G 5B sB 7B 8B 9B tB jB kB AC BC CC uB vB wB DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC GC HC"},G:{"1":"LC MC lB","2":"E sB KC yB NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C jB xB kB","2":"b","16":"A"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"o J 7B mB EC","2":"I D E F A B C K L G 6B tB 8B 9B AC uB kB lB BC CC DC vB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC GC HC"},G:{"1":"LC MC mB","2":"E tB KC 0B NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C kB zB lB","2":"b","16":"A"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 8df6b5977f4dc96..f84022a0a2330bb 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 zB","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB"},H:{"1":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"F A B","2":"J 1B","132":"D E"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB"},H:{"1":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 3ec052c4618ef74..cfbbe0f11ae9f22 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","2":"0B mB I n J D E F A B C KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","2":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"E F A B C 9B tB jB","2":"I n J D 5B sB 6B 7B 8B","129":"K L G kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 G M N O o p q r s t u v w x y z BB DB kB","2":"9 F B C AB CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC"},G:{"1":"E OC PC QC RC SC TC UC VC","2":"sB KC yB LC MC NC","257":"WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I iC yB jC kC","2":"H fC gC hC"},J:{"2":"D A"},K:{"1":"kB","2":"A B C b jB xB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"16":"yC"},S:{"1":"zC"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J D E F A 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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","2":"2B nB I o J D E F A B C LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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","2":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"E F A B C AC uB kB","2":"I o J D 6B tB 7B 8B 9B","129":"K L G lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z CB EB lB","2":"F B C AB BB DB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC"},G:{"1":"E OC PC QC RC SC TC UC VC","2":"tB KC 0B LC MC NC","257":"WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I iC 0B jC kC","2":"H fC gC hC"},J:{"2":"D A"},K:{"1":"lB","2":"A B C b kB zB"},L:{"2":"H"},M:{"2":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I","2":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"16":"zC"},S:{"1":"0C"}},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 eec8838c372f3b3..425f99bdf7e90e5 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 zB"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B","322":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t","164":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L 5B sB 6B 7B 8B 9B tB jB kB AC","2084":"G BC CC uB vB wB DC lB EC"},F:{"2":"F B C G M N O o p q r s t u v FC GC HC IC jB xB JC kB","1026":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","2084":"cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"164":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"322":"zC"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","1026":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B","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 OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"I o J D E F A B C K L G M N O p q r s t u","164":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L 6B tB 7B 8B 9B AC uB kB lB BC","2084":"G CC DC vB wB xB yB mB EC"},F:{"2":"F B C G M N O p q r s t u v w FC GC HC IC kB zB JC lB","1026":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC","2084":"cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"164":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"322":"0C"}},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 7cbb0d5451b9e82..aebc6e28d3524dd 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 zB"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2":"0 1 I n J D E F A B C K L G M N O o p q r s t u v w x y z","257":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","2":"F B C G M N O o p q r s t u v FC GC HC IC jB xB JC kB","257":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O","2":"C K","257":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","2":"0 1 2 I o J D E F A B C K L G M N O p q r s t u v w x y z","257":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2":"F B C G M N O p q r s t u v w FC GC HC IC kB zB JC lB","257":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 897da185a0fd89a..e58e92d3e74af68 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"4":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"4":"eC"},I:{"4":"mB I H fC gC hC iC yB jC kC"},J:{"1":"A","4":"D"},K:{"4":"A B C b jB xB kB"},L:{"4":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"4":"yC"},S:{"2":"zC"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"4":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"4":"eC"},I:{"4":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"A","4":"D"},K:{"4":"A B C b kB zB lB"},L:{"4":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"4":"zC"},S:{"2":"0C"}},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 b602b86f4316ee2..1d5ef58a1fd7980 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB","129":"rB 3B 4B"},E:{"1":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB","2":"K L G AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC","2":"XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"rB sB 5B"},E:{"1":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB","2":"K L G BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC","2":"XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 5de2f6214b516fb..7b6c3f3c519fbd6 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C","514":"K L G"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"1 2 3 4 5 6"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 I n J D E F A B C K L G M N O o p q r s t u v w x y z","260":"3 4 5 6"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B 7B","260":"E 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p FC GC HC IC jB xB JC kB","260":"q r s t"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","260":"E OC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C","514":"K L G"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"2 3 4 5 6 7"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 I o J D E F A B C K L G M N O p q r s t u v w x y z","260":"4 5 6 7"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B 8B","260":"E 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q FC GC HC IC kB zB JC lB","260":"r s t u"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","260":"E OC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 364bf5b7c268462..599aff4423f2bb9 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M 1B 2B","129":"5 6 7 8 9 AB","420":"0 1 2 3 4 N O o p q r s t u v w x y z"},D:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p","420":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B G M N FC GC HC IC jB xB JC","420":"0 1 2 3 4 5 6 7 8 C O o p q r s t u v w x y z kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC","513":"aC bC cC dC uB vB wB lB","1537":"TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","420":"A"},K:{"1":"b","2":"A B jB xB","420":"C kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","420":"I mC"},Q:{"1":"xC"},R:{"420":"yC"},S:{"2":"zC"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M 3B 4B","129":"6 7 8 9 AB BB","420":"0 1 2 3 4 5 N O p q r s t u v w x y z"},D:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q","420":"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"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B G M N FC GC HC IC kB zB JC","420":"0 1 2 3 4 5 6 7 8 9 C O p q r s t u v w x y z lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC","513":"aC bC cC dC vB wB xB yB mB","1537":"TC UC VC WC XC YC ZC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","420":"A"},K:{"1":"b","2":"A B kB zB","420":"C lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","420":"I mC"},Q:{"1":"yC"},R:{"420":"zC"},S:{"2":"0C"}},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 2e2c8f2eb08c10f..009cf29ab67b4cf 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 zB","130":"B"},B:{"1":"Y Z c d e f g h i j k l a m H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB 1B 2B","5124":"l a","7172":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k","7746":"QB RB nB SB oB TB UB b"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB","260":"LB MB NB OB PB QB RB","1028":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X"},E:{"2":"I n J D E F 5B sB 6B 7B 8B 9B","1028":"G BC CC uB vB wB DC lB EC","3076":"A B C K L tB jB kB AC"},F:{"1":"gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","260":"8 9 AB BB CB DB EB","1028":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E sB KC yB LC MC NC OC PC QC","16":"RC","1028":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"5124":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC lB wC","2":"I mC nC","1028":"oC pC qC tB rC sC tC uC"},Q:{"1028":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J D E F A 1B","130":"B"},B:{"1":"Y Z c d e f g h i j k l a m n H","16":"C K","260":"L G","1028":"P Q R S T U V W X","5124":"M N O"},C:{"1":"m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB 3B 4B","5124":"l a","7172":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k","7746":"RB SB oB TB pB UB VB b"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","260":"MB NB OB PB QB RB SB","1028":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X"},E:{"2":"I o J D E F 6B tB 7B 8B 9B AC","1028":"G CC DC vB wB xB yB mB EC","3076":"A B C K L uB kB lB BC"},F:{"1":"hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 8 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","260":"9 AB BB CB DB EB FB","1028":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC","16":"RC","1028":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"5124":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"vC mB wC xC","2":"I mC nC","1028":"oC pC qC uB rC sC tC uC"},Q:{"1028":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 5966d322daac9ff..12468785dad1028 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 zB","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J D E F A 1B","129":"B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2e5fea9047aef5a..c1a5a2d7e7c6f86 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB","2":"0B mB I n J D E F A B C K L G M N O o p oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","322":"OB PB QB RB nB SB"},D:{"2":"6 7 8 9 I n J D E F A B C K L G M N O o AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","194":"0 1 2 3 4 5 p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","2":"2B nB I o J D E F A B C K L G M N O p q pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","322":"PB QB RB SB oB TB"},D:{"2":"7 8 9 I o J D E F A B C K L G M N O p AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","194":"0 1 2 3 4 5 6 q r s t u v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 304597a498cf96f..de41a7d31c07287 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB 1B 2B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC","194":"TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC","194":"TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 6bae928ac251975..178912b97f8dc00 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","516":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","260":"I n J D E F A B C K L G M N O o p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"I"},E:{"1":"n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B","132":"I sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"sB KC"},H:{"260":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","260":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","516":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","260":"I o J D E F A B C K L G M N O p q r s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"I"},E:{"1":"o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B","132":"I tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"tB KC"},H:{"260":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"b","260":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 ed68449fc3fda2a..49f4a0b8c6bf4a0 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I","4":"n J D"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I","4":"o J D"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 fa6eaaa457a090e..d9ca979c95f50cf 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 zB","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z","2":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","130":"7 8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B"},F:{"1":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB","2":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","130":"0 1 2 3 4 5 u v w x y z"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"258":"eC"},I:{"1":"mB I iC yB jC kC","2":"H fC gC hC"},J:{"1":"D A"},K:{"1":"A B C jB xB kB","2":"b"},L:{"130":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","130":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"130":"yC"},S:{"2":"zC"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"F A B 1B","8":"J D E"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z","2":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","130":"8 9 AB BB CB DB EB FB GB HB IB JB KB"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B"},F:{"1":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB","2":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","130":"0 1 2 3 4 5 6 v w x y z"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"258":"eC"},I:{"1":"nB I iC 0B jC kC","2":"H fC gC hC"},J:{"1":"D A"},K:{"1":"A B C kB zB lB","2":"b"},L:{"130":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I","130":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"130":"zC"},S:{"2":"0C"}},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 1adb04b003f1ecc..c58b33a39bfdb2b 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 zB","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D F A B 5B sB 6B 7B 9B tB","132":"E 8B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"G M N O o p q r","4":"B C GC HC IC jB xB JC","16":"F FC","132":"0 1 2 3 4 5 s t u v w x y z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC PC QC RC SC TC","132":"E OC"},H:{"1":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D","132":"A"},K:{"1":"b kB","4":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","132":"I"},Q:{"1":"xC"},R:{"132":"yC"},S:{"1":"zC"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J D E 1B","260":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z","132":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},E:{"1":"C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D F A B 6B tB 7B 8B AC uB","132":"E 9B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"G M N O p q r s","4":"B C GC HC IC kB zB JC","16":"F FC","132":"0 1 2 3 4 5 6 t u v w x y z"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC PC QC RC SC TC","132":"E OC"},H:{"1":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D","132":"A"},K:{"1":"b lB","4":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","132":"I"},Q:{"1":"yC"},R:{"132":"zC"},S:{"1":"0C"}},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 2d1b141f80107fe..2e4a3300862bfaa 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 zB","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B","4":"mB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"5B sB","4":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"4":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB","4":"H jC kC"},J:{"1":"A","2":"D"},K:{"4":"A B C b jB xB kB"},L:{"4":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"4":"yC"},S:{"1":"zC"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J D E 1B","388":"F A B"},B:{"4":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B","4":"nB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"6B tB","4":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"4":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B","4":"H jC kC"},J:{"1":"A","2":"D"},K:{"4":"A B C b kB zB lB"},L:{"4":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"4":"zC"},S:{"1":"0C"}},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 4d2464c9deead2a..21a6fab27308c0d 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":"zB","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","8":"I n J"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"I n 5B sB","129":"J D E 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"B IC jB xB","8":"F FC GC HC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","8":"sB KC yB","129":"E LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","129":"mB I iC yB"},J:{"1":"A","129":"D"},K:{"1":"C b kB","8":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"1B","8":"J D E","129":"F A B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","8":"I o J"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"I o 6B tB","129":"J D E 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"B IC kB zB","8":"F FC GC HC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","8":"tB KC 0B","129":"E LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","129":"nB I iC 0B"},J:{"1":"A","129":"D"},K:{"1":"C b lB","8":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"129":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 61daf0c0612fdc7..951c780208e3342 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s t u v w"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B","4":"sB","132":"I n J D E 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"E sB KC yB LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"mB I iC yB"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L G M N O p q r s t u v w x"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B","4":"tB","132":"I o J D E 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"E tB KC 0B LC MC NC OC"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"nB I iC 0B"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8c63103a304edfa..69171bd40bbf90e 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":"zB","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"I"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"5B sB","132":"I n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"sB KC yB LC"},H:{"2":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"1B","8":"J D E F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"I"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"6B tB","132":"I o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"tB KC 0B LC"},H:{"2":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b6cc7b5fffdf9e7..c023f95edd0d05c 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":"zB","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","4":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","4":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"mB I iC yB"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"257":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"1B","8":"J D E","772":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","4":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","4":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"H jC kC","2":"fC gC hC","132":"nB I iC 0B"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"257":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e83b9a251a441a3..ebb4adac570f839 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB","132":"bB cB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"rC sC tC uC vC lB wC","2":"I mC nC oC pC qC tB"},Q:{"16":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB","132":"cB dB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC uB"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},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 6058906b6a0e3fe..7b8b1b3a32fd53c 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"16":"0B mB 1B 2B","129":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"16":"I n 5B sB","257":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"769":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"16":"mB I H fC gC hC iC yB jC kC"},J:{"16":"D A"},K:{"16":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"16":"yC"},S:{"129":"zC"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"D E F A B","16":"J 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"16":"2B nB 3B 4B","129":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"16":"I o 6B tB","257":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"769":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"16":"nB I H fC gC hC iC 0B jC kC"},J:{"16":"D A"},K:{"16":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"16":"A B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"16":"zC"},S:{"129":"0C"}},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 b00fd74d21d3813..e1039e8e161f2a1 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 zB"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","16":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x FC GC HC IC jB xB JC kB"},G:{"1":"PC QC RC SC TC UC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC","129":"VC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","16":"C"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"A B K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y FC GC HC IC kB zB JC lB"},G:{"1":"PC QC RC SC TC UC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC","129":"VC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 593e03276f0c97e..fea797d6cc36369 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 zB"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q 1B 2B"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u","132":"0 1 2 3 v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D 5B sB 6B","388":"E 8B","514":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","132":"G M N O o p q"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC","388":"E OC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r 3B 4B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v","132":"0 1 2 3 4 w x y z"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D 6B tB 7B","388":"E 9B","514":"8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","132":"G M N O p q r"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC","388":"E OC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 4a14cbd856d9752..59c06f9a83d1894 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f6bc32221090af5..c8e82c69797ddb3 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 zB","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","16":"I n"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"B C"},E:{"2":"I J 5B sB 6B","16":"n D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC xB JC kB","16":"jB"},G:{"2":"sB KC yB LC MC","16":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC iC yB jC kC","16":"hC"},J:{"2":"A","16":"D"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J D E A B 1B","16":"F"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","16":"I o"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"B C"},E:{"2":"I J 6B tB 7B","16":"o D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC zB JC lB","16":"kB"},G:{"2":"tB KC 0B LC MC","16":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC iC 0B jC kC","16":"hC"},J:{"2":"A","16":"D"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 95c337a85500481..f5ba3c428b12ebc 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 zB"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n 1B 2B","1028":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","1060":"0 1 2 3 4 J D E F A B C K L G M N O o p q r s t u v w x y z"},D:{"2":"I n J D E F A B C K L G M N O o p q r s t u","226":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB","2052":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D 5B sB 6B 7B","772":"K L G kB AC BC CC uB vB wB DC lB EC","804":"E F A B C 9B tB jB","1316":"8B"},F:{"2":"0 1 2 3 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","226":"4 5 6 7 8 9 AB BB CB","2052":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"sB KC yB LC MC NC","292":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"2052":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2052":"lC"},P:{"2":"I mC nC","2052":"oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"1":"yC"},S:{"1028":"zC"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","2052":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o 3B 4B","1028":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","1060":"0 1 2 3 4 5 J D E F A B C K L G M N O p q r s t u v w x y z"},D:{"2":"I o J D E F A B C K L G M N O p q r s t u v","226":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","2052":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D 6B tB 7B 8B","772":"K L G lB BC CC DC vB wB xB yB mB EC","804":"E F A B C AC uB kB","1316":"9B"},F:{"2":"0 1 2 3 4 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","226":"5 6 7 8 9 AB BB CB DB","2052":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"tB KC 0B LC MC NC","292":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"2052":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2052":"lC"},P:{"2":"I mC nC","2052":"oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"1":"zC"},S:{"1028":"0C"}},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 5ee5725a3ccf4db..03f8de6146d2bf3 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 zB"},B:{"1":"k l a m H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j"},C:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB 1B 2B","322":"EB"},D:{"1":"k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t","164":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B","164":"D 7B"},F:{"1":"V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","164":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB","164":"jC kC"},J:{"2":"D","164":"A"},K:{"2":"A B C jB xB kB","164":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"164":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"164":"xC"},R:{"164":"yC"},S:{"1":"zC"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"k l a m n H","2":"C K L G M N O","164":"P Q R S T U V W X Y Z c d e f g h i j"},C:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","322":"FB"},D:{"1":"k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u","164":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B","164":"D 8B"},F:{"1":"V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","164":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B","164":"jC kC"},J:{"2":"D","164":"A"},K:{"2":"A B C kB zB lB","164":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"164":"lC"},P:{"1":"xC","164":"I mC nC oC pC qC uB rC sC tC uC vC mB wC"},Q:{"164":"yC"},R:{"164":"zC"},S:{"1":"0C"}},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 516db569fd0f22f..2dda319137bd65c 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":"zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","8":"0B mB I n J 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","33":"F FC GC HC IC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"b kB","33":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J D E F A B","2":"1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","8":"2B nB I o J 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","33":"F FC GC HC IC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"b lB","33":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 408c355f6883b3b..39e101afea3d9b3 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","258":"v"},E:{"2":"I n J D E F A B C K L G 5B sB 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","258":"6B"},F:{"1":"CB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB DB FC GC HC IC jB xB JC kB"},G:{"2":"sB KC yB","33":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"33":"a"},N:{"161":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G 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","258":"w"},E:{"2":"I o J D E F A B C K L G 6B tB 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","258":"7B"},F:{"1":"DB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB EB FC GC HC IC kB zB JC lB"},G:{"2":"tB KC 0B","33":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"33":"a"},N:{"161":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 bc1de6e78b149f0..3ec71f1874a4bb7 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 zB"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB 1B 2B","161":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","450":"HB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"33":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"33":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","36":"sB"},H:{"2":"eC"},I:{"2":"mB","33":"I H fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"2":"A B C jB xB kB","33":"b"},L:{"33":"H"},M:{"161":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"33":"xC"},R:{"33":"yC"},S:{"161":"zC"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L","33":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","161":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","450":"IB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"33":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"33":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","36":"tB"},H:{"2":"eC"},I:{"2":"nB","33":"I H fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"2":"A B C kB zB lB","33":"b"},L:{"33":"H"},M:{"161":"a"},N:{"2":"A B"},O:{"33":"lC"},P:{"33":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"33":"yC"},R:{"33":"zC"},S:{"161":"0C"}},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 da55f5924edb9f4..6bd416485c592b9 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB 1B 2B","130":"ZB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"text-underline-offset"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB 3B 4B","130":"aB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 15195266b040148..1f14e6fae39a666 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 05ee4a3ca3bd3ca..59a694478df2d98 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O 1B 2B","132":"o"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O 3B 4B","132":"p"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 147d612e5b5b379..45058798e7560de 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 zB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB","2":"0B mB I n J D E F A B C K L G M N O o p q r 1B 2B","66":"s","129":"YB ZB aB bB cB dB eB fB gB hB","388":"iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 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 LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T","2":"I n J D E F A B C K L G M N O o p q","1540":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"D E F A B C K 8B 9B tB jB kB","2":"I n J 5B sB 6B 7B","513":"L G AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB kB","2":"F B C FC GC HC IC jB xB JC","1540":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"129":"a"},N:{"1":"B","66":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J D 1B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB","2":"2B nB I o J D E F A B C K L G M N O p q r s 3B 4B","66":"t","129":"ZB aB bB cB dB eB fB gB hB iB","388":"jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T","2":"I o J D E F A B C K L G M N O p q r","1540":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"D E F A B C K 9B AC uB kB lB","2":"I o J 6B tB 7B 8B","513":"L G BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB lB","2":"F B C FC GC HC IC kB zB JC","1540":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"129":"a"},N:{"1":"B","66":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 e6521c961af0f24..2a9449193fea570 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 zB","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s 1B 2B","66":"t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F G FC","66":"B C GC HC IC jB xB JC kB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"b kB","2":"A B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","66":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J D 1B","66":"E F A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t 3B 4B","66":"u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F G FC","66":"B C GC HC IC kB zB JC lB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"b lB","2":"A B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","66":"A"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c444002e536a43e..fc5f969ce6a6d1c 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB 1B 2B","132":"SB oB TB","450":"KB LB MB NB OB PB QB RB nB"},D:{"1":"aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","706":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","1028":"K kB AC"},F:{"1":"QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB","706":"NB OB PB"},G:{"1":"WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tB rC sC tC uC vC lB wC","2":"I mC nC oC pC qC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","132":"TB pB UB","450":"LB MB NB OB PB QB RB SB oB"},D:{"1":"bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB","706":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","1028":"K lB BC"},F:{"1":"RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB","706":"OB PB QB"},G:{"1":"WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uB rC sC tC uC vC mB wC xC","2":"I mC nC oC pC qC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 32af627d9e0639b..8b5b35de9d03f1b 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 zB"},B:{"2":"C K L","194":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H 1B 2B","16":"qB rB"},D:{"2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z","16":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E 5B sB 6B 7B 8B","16":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB","16":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC","16":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"16":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","16":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","16":"b"},L:{"16":"H"},M:{"16":"a"},N:{"2":"A","16":"B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"16":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:6,C:"Token Binding"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L","194":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 3B 4B","16":"rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 I o J D E F A B C K L G M N O p q r s t u v w x y z","16":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","194":"SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E 6B tB 7B 8B 9B","16":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","16":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC","16":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"16":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","16":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","16":"b"},L:{"16":"H"},M:{"16":"a"},N:{"2":"A","16":"B"},O:{"16":"lC"},P:{"16":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},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 5ade6abec413a6d..ff159f7a4d51079 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 zB","8":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","578":"C K L G M N O"},C:{"1":"O o p q r s t LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","4":"I n J D E F A B C K L G M N","194":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J D E F 1B","8":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","578":"C K L G M N O"},C:{"1":"O p q r s t u MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","4":"I o J D E F A B C K L G M N","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 LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","260":"B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 26cb20c377d32f3..77afc843bfc6dbe 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":"zB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","33":"I n J D E F A B C K L G 1B 2B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","33":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F FC GC","33":"B C G M N O o p q r HC IC jB xB JC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","33":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","33":"mB I fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"1B","8":"J D E","129":"A B","161":"F"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","33":"I o J D E F A B C K L G 3B 4B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","33":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F FC GC","33":"B C G M N O p q r s HC IC kB zB JC"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","33":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","33":"nB I fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b819050ee43ddc4..bcf96482abc7fb0 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 zB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F 1B 2B","33":"A B C K L G"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B","33":"0 1 2 3 4 C K L G M N O o p q r s t u v w x y z"},E:{"1":"vB wB DC lB EC","2":"5B sB","33":"I n J D E 6B 7B 8B","257":"F A B C K L G 9B tB jB kB AC BC CC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"G M N O o p q r"},G:{"1":"vB wB lB","33":"E sB KC yB LC MC NC OC","257":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","33":"mB I iC yB jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F 3B 4B","33":"A B C K L G"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B","33":"0 1 2 3 4 5 C K L G M N O p q r s t u v w x y z"},E:{"1":"wB xB yB mB EC","2":"6B tB","33":"I o J D E 7B 8B 9B","257":"F A B C K L G AC uB kB lB BC CC DC vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"G M N O p q r s"},G:{"1":"wB xB yB mB","33":"E tB KC 0B LC MC NC OC","257":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"1":"H","2":"fC gC hC","33":"nB I iC 0B jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2a66d95b7a869f0..5ca67dc6fa21de6 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 zB"},B:{"1":"S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC lB wC","2":"I mC nC oC pC qC tB rC sC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 bcbb3e3b7fa6c9f..fda0444a5b4e135 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 zB","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z GC HC IC jB xB JC kB","2":"F FC"},G:{"1":"E yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC"},H:{"2":"eC"},I:{"1":"mB I H gC hC iC yB jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J D E 1B","132":"F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z GC HC IC kB zB JC lB","2":"F FC"},G:{"1":"E 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC"},H:{"2":"eC"},I:{"1":"nB I H gC hC iC 0B jC kC","2":"fC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7bb0780a313bb96..e32ee3cd9a9d942 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 zB","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","260":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC","260":"yB"},H:{"1":"eC"},I:{"1":"I H iC yB jC kC","2":"mB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J D E F 1B","132":"A"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","260":"7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC","260":"0B"},H:{"1":"eC"},I:{"1":"I H iC 0B jC kC","2":"nB fC gC hC"},J:{"1":"A","2":"D"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 c61161120eceaff..ef7e7cd82321ee6 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 zB"},B:{"2":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B","322":"GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB"},D:{"2":"0 1 2 3 4 5 6 I n J D E F A B C K L G M N O o p q r s t u v w x y z 3B 4B","130":"7 8 9","513":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i","578":"j k l a m H qB rB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB"},F:{"2":"0 1 2 3 4 5 6 7 8 F B C G M N O o p q r s t u v w x y z AB FC GC HC IC jB xB JC kB","513":"9 BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"322":"zC"}},B:7,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","513":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","322":"HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB"},D:{"2":"0 1 2 3 4 5 6 7 I o J D E F A B C K L G M N O p q r s t u v w x y z sB 5B","130":"8 9 AB","513":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i","578":"j k l a m n H rB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z BB FC GC HC IC kB zB JC lB","513":"AB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"322":"0C"}},B:7,C:"FIDO U2F API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js index aaa3f148deacf2d..1a3e6bd3c5b6122 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB 1B 2B"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC","16":"TC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB 3B 4B"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC","16":"TC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 d4d71928b2c8684..c04cbb7bdf2ccf4 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB 1B 2B"},D:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s t u v w x y FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8aa660082ba056a..5ebffc856f758f9 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 zB"},B:{"1":"S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","66":"P Q R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB","66":"eB fB gB hB iB P Q"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB FC GC HC IC jB xB JC kB","66":"WB XB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC lB wC","2":"I mC nC oC pC qC tB rC sC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"S T U V W X Y Z c d e f g h i j k l a m n 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 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB","66":"fB gB hB iB jB P Q"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB FC GC HC IC kB zB JC lB","66":"XB YB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"tC uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 ff4debd4f1c33f0..bc8c31e0a5152c6 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u 1B 2B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r","130":"0 s t u v w x y z"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B 7B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","130":"G M N O"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC","130":"NC"},H:{"2":"eC"},I:{"1":"H kC","2":"mB I fC gC hC iC yB","130":"jC"},J:{"2":"D","130":"A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v 3B 4B"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s","130":"0 1 t u v w x y z"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B 8B","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","130":"G M N O"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC","130":"NC"},H:{"2":"eC"},I:{"1":"H kC","2":"nB I fC gC hC iC 0B","130":"jC"},J:{"2":"D","130":"A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b5c4739d8fcdabf..ceb0f04d640bf5f 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB"},D:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L G tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","2":"I"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB"},D:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"B C K L G uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB"},G:{"1":"SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 646a1d5919eca62..867e7c656e41d17 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","132":"n 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"1":"eC"},I:{"1":"mB I H iC yB jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"C b xB kB","2":"A B jB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","132":"o 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"1":"eC"},I:{"1":"nB I H iC 0B jC kC","2":"fC gC hC"},J:{"1":"D A"},K:{"1":"C b zB lB","2":"A B kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 f0c4da0ba81ba9f..a949fef5917e146 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 zB","33":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","33":"C K L G M N O"},C:{"1":"ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","33":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB 1B 2B"},D:{"1":"NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","33":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},E:{"1":"EC","33":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","33":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z"},G:{"33":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","33":"mB I fC gC hC iC yB jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"33":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","33":"I mC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"33":"zC"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J D E F 1B","33":"A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","33":"C K L G M N O"},C:{"1":"aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","33":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB 3B 4B"},D:{"1":"OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","33":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB"},E:{"1":"EC","33":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","33":"0 1 2 3 4 5 6 7 8 9 G M N O p q r s t u v w x y z AB"},G:{"33":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","33":"nB I fC gC hC iC 0B jC kC"},J:{"33":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"33":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","33":"I mC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"33":"0C"}},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 6a202f5c567d966..1fcd1856b4658fd 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 b0a3a78b1e8f8c0..871cc91d07befd1 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 zB"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB 1B 2B","4609":"TB UB b VB WB XB YB ZB aB","4674":"oB","5698":"SB","7490":"MB NB OB PB QB","7746":"RB nB","8705":"bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","4097":"WB","4290":"nB SB oB","6148":"TB UB b VB"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","4609":"B C jB kB","8193":"K L AC BC"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB FC GC HC IC jB xB JC kB","4097":"MB","6148":"IB JB KB LB"},G:{"1":"XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC","4097":"TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"4097":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC","4097":"pC qC tB rC sC tC uC vC lB wC"},Q:{"4097":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB 3B 4B","4609":"UB VB b WB XB YB ZB aB bB","4674":"pB","5698":"TB","7490":"NB OB PB QB RB","7746":"SB oB","8705":"cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB","4097":"XB","4290":"oB TB pB","6148":"UB VB b WB"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","4609":"B C kB lB","8193":"K L BC CC"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB FC GC HC IC kB zB JC lB","4097":"NB","6148":"JB KB LB MB"},G:{"1":"XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC","4097":"TC UC VC WC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"4097":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC","4097":"pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4097":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 f94f91094bc370f..1e4f251fb3cb22a 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","2":"F B FC GC HC IC jB xB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"1":"eC"},I:{"1":"H jC kC","16":"mB I fC gC hC iC yB"},J:{"16":"D A"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","2":"F B FC GC HC IC kB zB"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"1":"eC"},I:{"1":"H jC kC","16":"nB I fC gC hC iC 0B"},J:{"16":"D A"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 733b0fb70e2ba9b..5f9fc7caae549ec 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A 1B 2B","33":"B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o p q r s t u v w x y"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A 3B 4B","33":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 005304d776e00bf..b29cf974dc848dd 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","260":"I n J D E F A B C K L G M N O o 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A 6B 7B 8B 9B tB","2":"5B sB","513":"B C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC","513":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","132":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","260":"I o J D E F A B C K L G M N O p 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A 7B 8B 9B AC uB","2":"6B tB","513":"B C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC","513":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","132":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 3bf032a4daa1684..3ce0c6a3b527db3 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 zB"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB","322":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J 5B sB 6B"},F:{"2":"0 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"322":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O","322":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","322":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J 6B tB 7B"},F:{"2":"0 1 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"322":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 0120dda20ce804e..64bf66d53579464 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 zB"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k","194":"l a m H qB rB 3B 4B"},E:{"1":"vB wB DC lB EC","2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"Large, Small, and Dynamic viewport units"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k","194":"l a m n H rB sB 5B"},E:{"1":"wB xB yB mB EC","2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:5,C:"Large, Small, and Dynamic viewport units"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js index c1c1a0fb36014fe..772325d0787526d 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 zB","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N O o","260":"p q r s t u"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC","516":"NC","772":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J D E 1B","132":"F","260":"A B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N O p","260":"q r s t u v"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC","516":"NC","772":"MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"260":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 727ca2ba69c7a02..cb8264698bd9433 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 zB","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"5B sB","4":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"4":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"4":"eC"},I:{"2":"mB I fC gC hC iC yB","4":"H jC kC"},J:{"2":"D A"},K:{"4":"A B C b jB xB kB"},L:{"4":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"2":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"4":"yC"},S:{"4":"zC"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J D 1B","4":"E F A B"},B:{"4":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"6B tB","4":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"4":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"4":"eC"},I:{"2":"nB I fC gC hC iC 0B","4":"H jC kC"},J:{"2":"D A"},K:{"4":"A B C b kB zB lB"},L:{"4":"H"},M:{"4":"a"},N:{"4":"A B"},O:{"2":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"4":"zC"},S:{"4":"0C"}},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 8c6953ecafb02b6..f2303bd06268bbf 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 zB"},B:{"1":"Z c d e f g h i j k l a m H","2":"C K L G M N O","194":"P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB","194":"bB cB dB eB fB gB hB iB P Q R S T"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB FC GC HC IC jB xB JC kB","194":"RB SB TB UB b VB WB XB YB ZB aB bB cB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC lB wC","2":"I mC nC oC pC qC tB rC sC tC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Z c d e f g h i j k l a m n H","2":"C K L G M N O","194":"P Q R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB","194":"cB dB eB fB gB hB iB jB P Q R S T"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB FC GC HC IC kB zB JC lB","194":"SB TB UB VB b WB XB YB ZB aB bB cB dB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"uC vC mB wC xC","2":"I mC nC oC pC qC uB rC sC tC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9d1dea0e692e08f..d3edd4296428a34 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 zB"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L","578":"G"},C:{"1":"MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB 1B 2B","194":"GB HB IB JB KB","1025":"LB"},D:{"1":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","322":"KB LB MB NB OB PB"},E:{"1":"B C K L G jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"0 1 2 3 4 5 6 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","322":"7 8 9 AB BB CB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"194":"zC"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L","578":"G"},C:{"1":"NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 3B 4B","194":"HB IB JB KB LB","1025":"MB"},D:{"1":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","322":"LB MB NB OB PB QB"},E:{"1":"B C K L G kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"0 1 2 3 4 5 6 7 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","322":"8 9 AB BB CB DB"},G:{"1":"TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"194":"0C"}},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 ffce8ce79b4fd8b..0a6395f40d9fead 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z HC IC jB xB JC kB","2":"F FC GC"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z HC IC kB zB JC lB","2":"F FC GC"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","16":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 8205b315282cf2b..e90ccb5f082f6de 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 zB","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"5B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","16":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB"},H:{"1":"eC"},I:{"1":"mB I H hC iC yB jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J D 1B","2":"E F A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","16":"F"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B"},H:{"1":"eC"},I:{"1":"nB I H hC iC 0B jC kC","16":"fC gC"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 85060eb62a4d381..52afaeff1c59c5b 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 zB"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B","260":"nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB","516":"GB HB IB JB KB LB MB NB OB PB QB RB","580":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB","2049":"fB gB hB iB P Q"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z","132":"5 6 7","260":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B tB","1090":"B C K jB kB","2049":"L AC BC"},F:{"1":"bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r FC GC HC IC jB xB JC kB","132":"s t u","260":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC","1090":"TC UC VC WC XC YC ZC","2049":"aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"260":"lC"},P:{"260":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"260":"xC"},R:{"260":"yC"},S:{"516":"zC"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","260":"P Q R S"},C:{"1":"R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B","260":"oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB","516":"HB IB JB KB LB MB NB OB PB QB RB SB","580":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB","2049":"gB hB iB jB P Q"},D:{"1":"T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z","132":"6 7 8","260":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC uB","1090":"B C K kB lB","2049":"L BC CC"},F:{"1":"cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s FC GC HC IC kB zB JC lB","132":"t u v","260":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC","1090":"TC UC VC WC XC YC ZC","2049":"aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"260":"lC"},P:{"260":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"260":"yC"},R:{"260":"zC"},S:{"516":"0C"}},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 41ffc0c2259497c..0b3247ed719350f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","578":"gB hB iB P Q R pB S T U"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC","260":"UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"2":"zC"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","578":"hB iB jB P Q R qB S T U"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC","260":"UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"2":"0C"}},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 db1a922d9c9d56c..c8d90cce6d8d59f 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 zB"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB","194":"EB FB GB HB IB JB KB LB","706":"MB NB OB","1025":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 F B C G M N O o p q r s t u v w x y z FC GC HC IC jB xB JC kB","450":"5 6 7 8","706":"9 AB BB","1025":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC kC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","1025":"b"},L:{"1025":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC tB rC sC tC uC vC lB wC","2":"I mC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","1025":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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","194":"FB GB HB IB JB KB LB MB","706":"NB OB PB","1025":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 F B C G M N O p q r s t u v w x y z FC GC HC IC kB zB JC lB","450":"6 7 8 9","706":"AB BB CB","1025":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC kC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","1025":"b"},L:{"1025":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"nC oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 420fb357758100e..c7248bb6b111ead 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB P Q R S T U V W X"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b FC GC HC IC jB xB JC kB","66":"VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB","66":"jB P Q R S T U V W X"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b FC GC HC IC kB zB JC lB","66":"WB XB YB ZB aB bB cB dB eB fB gB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 4ccb3a8f766bd6f..2e9e90e79ea22a7 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 zB"},B:{"1":"g h i j k l a m H","2":"C K L G M N O P Q","516":"R S T U V W X Y Z c d e f"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X","130":"O o p q r s t","1028":"Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"L G BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","2049":"K kB AC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC","2049":"WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"mB I fC gC hC iC yB jC","258":"H kC"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","258":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I","258":"mC nC oC"},Q:{"2":"xC"},R:{"16":"yC"},S:{"2":"zC"}},B:5,C:"Web Share API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"g h i j k l a m n H","2":"C K L G M N O P Q","516":"R S T U V W X Y Z c d e f"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o J D E F A B C K L G M N v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X","130":"O p q r s t u","1028":"Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"L G CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","2049":"K lB BC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC","2049":"WC XC YC ZC aC"},H:{"2":"eC"},I:{"2":"nB I fC gC hC iC 0B jC","258":"H kC"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","258":"b"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I","258":"mC nC oC"},Q:{"2":"yC"},R:{"16":"zC"},S:{"2":"0C"}},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 b9d1e0aedd235f4..f1890b87b7eb9f1 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C","226":"K L G M N"},C:{"1":"SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB 1B 2B"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB"},E:{"1":"K L G AC BC CC uB vB wB DC lB EC","2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB","322":"kB"},F:{"1":"NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB FC GC HC IC jB xB JC kB"},G:{"1":"cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC","578":"YC","2052":"bC","3076":"ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"wC","2":"I mC nC oC pC qC tB rC sC tC uC vC lB"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C","226":"K L G M N"},C:{"1":"TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB 3B 4B"},D:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB"},E:{"1":"K L G BC CC DC vB wB xB yB mB EC","2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB","322":"lB"},F:{"1":"OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB FC GC HC IC kB zB JC lB"},G:{"1":"cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC","578":"YC","2052":"bC","3076":"ZC aC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"wC xC","2":"I mC nC oC pC qC uB rC sC tC uC vC mB"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 8ac86c602108bb6..72e1b8d7aef8b3d 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":"zB","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","129":"I n J D E F A B C K L G M N O o p q r s"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D","129":"0 1 E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB","129":"J D 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B FC GC HC IC jB xB JC","129":"C G M N O kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"1":"A","2":"D"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","129":"B"},O:{"129":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"129":"zC"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"1B","8":"J D E F A","129":"B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","129":"I o J D E F A B C K L G M N O p q r s t"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D","129":"0 1 2 E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"E F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB","129":"J D 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B FC GC HC IC kB zB JC","129":"C G M N O lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC NC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"1":"A","2":"D"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A","129":"B"},O:{"129":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"129":"0C"}},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 e6f520d61de98a0..2996a9e12acfe7f 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t 1B 2B","194":"BB CB DB","450":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB","2242":"EB FB GB HB IB JB"},D:{"1":"PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB","578":"CB DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"G CC uB vB wB DC lB EC","2":"I n J D E F A 5B sB 6B 7B 8B 9B","1090":"B C K L tB jB kB AC BC"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB FC GC HC IC jB xB JC kB"},G:{"1":"dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC","1090":"VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC tB rC sC tC uC vC lB wC","2":"I mC nC"},Q:{"578":"xC"},R:{"2":"yC"},S:{"2242":"zC"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u 3B 4B","194":"CB DB EB","450":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB","2242":"FB GB HB IB JB KB"},D:{"1":"QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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","578":"DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"G DC vB wB xB yB mB EC","2":"I o J D E F A 6B tB 7B 8B 9B AC","1090":"B C K L uB kB lB BC CC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB FC GC HC IC kB zB JC lB"},G:{"1":"dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC","1090":"VC WC XC YC ZC aC bC cC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"oC pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC"},Q:{"578":"yC"},R:{"2":"zC"},S:{"2242":"0C"}},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 8d0f8a22b5dcbcd..f100c695c08e947 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 zB"},B:{"2":"C K L G M N O P","578":"Q R S T U V W X Y Z c d e","1602":"f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB 1B 2B","194":"UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P","578":"Q R S T U V W X Y Z c d e","1602":"f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B 5B sB 6B 7B 8B 9B tB","322":"C K L G jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB FC GC HC IC jB xB JC kB","578":"dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:5,C:"WebGPU"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P","578":"Q R S T U V W X Y Z c d e","1602":"f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB 3B 4B","194":"VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P","578":"Q R S T U V W X Y Z c d e","1602":"f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B 6B tB 7B 8B 9B AC uB","322":"C K L G kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB FC GC HC IC kB zB JC lB","578":"eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"194":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 9a655cfb0ede9d8..33115505c4b9286 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 zB"},B:{"1":"Y Z c d e f g h i j k l a m H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB P Q R S T U V W X"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"gB hB iB P Q R pB 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 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB FC GC HC IC jB xB JC kB","66":"WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"Y Z c d e f g h i j k l a m n H","2":"C K L G M N O","66":"P Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB","66":"jB P Q R S T U V W X"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"hB iB jB P Q R qB 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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB FC GC HC IC kB zB JC lB","66":"XB YB ZB aB bB cB dB eB fB gB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 cfea9b7fc93a9d5..fbdf7bca87983b5 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 zB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"16":"I n J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"F B C FC GC HC IC jB xB JC kB","132":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"16":"I o J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"F B C FC GC HC IC kB zB JC lB","132":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 2c453d0f72fd88a..4624484bca99352 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 zB","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","8":"C K","388":"L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","132":"I n J D E F A B C K L G M N O o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n","132":"J D E F A B C K L G M N O o p q r s t"},E:{"1":"lB EC","2":"5B","8":"I n sB 6B","520":"J D E F A B C 7B 8B 9B tB jB","1028":"K kB AC","7172":"L","8196":"G BC CC uB vB wB DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC HC","132":"B C G IC jB xB JC kB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC","1028":"WC XC YC ZC aC","3076":"bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"1":"H","2":"fC gC","132":"mB I hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC tB rC sC tC uC vC lB wC","132":"I"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J D E 1B","520":"F A B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","8":"C K","388":"L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","132":"I o J D E F A B C K L G M N O p q r s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o","132":"J D E F A B C K L G M N O p q r s t u"},E:{"1":"mB EC","2":"6B","8":"I o tB 7B","520":"J D E F A B C 8B 9B AC uB kB","1028":"K lB BC","7172":"L","8196":"G CC DC 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 OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC HC","132":"B C G IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC","1028":"WC XC YC ZC aC","3076":"bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"fC gC","132":"nB I hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"8":"A B"},O:{"1":"lC"},P:{"1":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC","132":"I"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 bd146a2c93b7730..c7235fcae1ff9de 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 zB"},B:{"2":"C K L G M N O P Y Z c d e f g h i j k l a m H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Y Z c d e f g h i j k l a m H qB rB 3B 4B","450":"Q R S T U V W X"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB FC GC HC IC jB xB JC kB","450":"XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"257":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O P Y Z c d e f g h i j k l a m n H","450":"Q R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Y Z c d e f g h i j k l a m n H rB sB 5B","450":"Q R S T U V W X"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB FC GC HC IC kB zB JC lB","450":"YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"257":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 54e15a52c19befd..f9d4e55f8857736 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N"},C:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n","8":"J D E","132":"F A B C K L G M N O o p q r","260":"0 s t u v w x y z"},E:{"1":"lB EC","2":"I n J D E F A B C K 5B sB 6B 7B 8B 9B tB jB kB AC","516":"L G BC CC uB vB wB DC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F FC GC HC","8":"B IC","132":"jB xB JC","260":"C G M N O kB"},G:{"1":"bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"1":"eC"},I:{"1":"H yB jC kC","2":"mB fC gC hC","132":"I iC"},J:{"2":"D A"},K:{"1":"C b jB xB kB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"8":"zC"}},B:6,C:"WebP image format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N"},C:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","8":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o","8":"J D E","132":"F A B C K L G M N O p q r s","260":"0 1 t u v w x y z"},E:{"1":"mB EC","2":"I o J D E F A B C K 6B tB 7B 8B 9B AC uB kB lB BC","516":"L G CC DC 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 OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F FC GC HC","8":"B IC","132":"kB zB JC","260":"C G M N O lB"},G:{"1":"bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC"},H:{"1":"eC"},I:{"1":"H 0B jC kC","2":"nB fC gC hC","132":"I iC"},J:{"2":"D A"},K:{"1":"C b kB zB lB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"8":"0C"}},B:6,C:"WebP image format"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js index f6e0cdb8020a9a9..5da328abe1632e8 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB 1B 2B","132":"I n","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","132":"n 6B","260":"J 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F FC GC HC IC","132":"B C jB xB JC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC","132":"yB LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","129":"D"},K:{"1":"b kB","2":"A","132":"B C jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB 3B 4B","132":"I o","292":"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 LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"I o J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","132":"o 7B","260":"J 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F FC GC HC IC","132":"B C kB zB JC"},G:{"1":"E MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC","132":"0B LC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","129":"D"},K:{"1":"b lB","2":"A","132":"B C kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},B:1,C:"Web Sockets"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js new file mode 100644 index 000000000000000..6bb03664afa4b9d --- /dev/null +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"j k l a m n H","2":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z g h","66":"c d e f"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"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 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB FC GC HC IC kB zB JC lB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"16":"lC"},P:{"1":"xC","2":"I mC nC oC pC qC uB rC sC tC uC vC mB wC"},Q:{"16":"yC"},R:{"16":"zC"},S:{"2":"0C"}},B:5,C:"WebTransport"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js index 8297cd9659b40f7..8989066766fc6e8 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB","66":"NB OB PB QB RB nB SB"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB 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 o p q r s t u v w x y z FC GC HC IC jB xB JC kB","66":"AB BB CB DB EB FB GB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC tB rC sC tC uC vC lB wC","2":"I mC nC oC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB","66":"OB PB QB RB SB oB TB"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB 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 p q r s t u v w x y z AB FC GC HC IC kB zB JC lB","66":"BB CB DB EB FB GB HB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"1":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"1":"pC qC uB rC sC tC uC vC mB wC xC","2":"I mC nC oC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"2":"0C"}},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 7393cf6235105d6..2b04c78bc50123d 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 zB"},B:{"2":"C K L Q R S T U V W X Y Z c d e f g h i j k l a m H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB 1B 2B","129":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","194":"NB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","66":"QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P"},E:{"2":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","66":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C b jB xB kB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"513":"I","516":"mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"66":"yC"},S:{"2":"zC"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L Q R S T U V W X Y Z c d e f g h i j k l a m n H","66":"P","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB 3B 4B","129":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","194":"OB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","66":"RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P"},E:{"2":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O p q r s t u v w x y z AB BB CB DB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","66":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C b kB zB lB"},L:{"2":"H"},M:{"2":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"513":"I","516":"mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"66":"zC"},S:{"2":"0C"}},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 7b1d76781063f49..8b2e4b8d02709f3 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0B mB I n J D E F A B C K L G M N O o p q r s 1B 2B","66":"t u v w x y z","129":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB","257":"OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I n J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB I fC gC hC iC yB"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"129":"zC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"2B nB I o J D E F A B C K L G M N O p q r s t 3B 4B","66":"0 u v w x y z","129":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB","257":"PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I o J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB I fC gC hC iC 0B"},J:{"1":"A","2":"D"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"B","2":"A"},O:{"2":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"129":"0C"}},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 2531080e0a5980f..67c0614b428f80b 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":"zB","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","8":"0B mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","8":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z IC jB xB JC kB","2":"F FC","8":"GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"H fC jC kC","2":"mB I gC hC iC yB"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"1B","8":"J D E F"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","8":"2B nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","8":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z IC kB zB JC lB","2":"F FC","8":"GC HC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H fC jC kC","2":"nB I gC hC iC 0B"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","8":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 499361f80561724..a6eb475186be834 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 zB"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB 1B 2B","322":"hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b","66":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"2":"I n J D E F A B C 5B sB 6B 7B 8B 9B tB jB kB","578":"K L G AC BC CC uB vB wB DC lB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB FC GC HC IC jB xB JC kB","66":"LB MB NB OB PB QB RB SB TB UB b VB","132":"WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z"},G:{"2":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"2":"eC"},I:{"2":"mB I H fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"2":"A B C jB xB kB","132":"b"},L:{"132":"H"},M:{"322":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC tB rC","132":"sC tC uC vC lB wC"},Q:{"2":"xC"},R:{"2":"yC"},S:{"2":"zC"}},B:4,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"2":"C K L G M N O","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB 3B 4B","322":"iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b","66":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","132":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"2":"I o J D E F A B C 6B tB 7B 8B 9B AC uB kB lB","578":"K L G BC CC DC vB wB xB yB mB EC"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C 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 FC GC HC IC kB zB JC lB","66":"MB NB OB PB QB RB SB TB UB VB b WB","132":"XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z"},G:{"2":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"2":"eC"},I:{"2":"nB I H fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"2":"A B C kB zB lB","132":"b"},L:{"132":"H"},M:{"322":"a"},N:{"2":"A B"},O:{"2":"lC"},P:{"2":"I mC nC oC pC qC uB rC","132":"sC tC uC vC mB wC xC"},Q:{"2":"yC"},R:{"2":"zC"},S:{"2":"0C"}},B:4,C:"WebXR Device API"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js index 4b75c50f6db5c10..5341b46b1f825e8 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 zB"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L G M N O o p q r s t u v w x 1B 2B","194":"0 1 2 3 4 y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r s FC GC HC IC jB xB JC kB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L G M N O p q r s t u v w x y 3B 4B","194":"0 1 2 3 4 5 z"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s t FC GC HC IC kB zB JC lB"},G:{"1":"QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 5a9fa69b5613a1a..e9785b2755ac7e1 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 2B","2":"0B mB 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"I"},E:{"1":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I n 5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z jB xB JC kB","2":"F B FC GC HC IC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB"},H:{"2":"eC"},I:{"1":"H jC kC","2":"mB fC gC hC iC yB","130":"I"},J:{"1":"D A"},K:{"1":"B C b jB xB kB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 4B","2":"2B nB 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"I"},E:{"1":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I o 6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z kB zB JC lB","2":"F B FC GC HC IC"},G:{"1":"E LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B"},H:{"2":"eC"},I:{"1":"H jC kC","2":"nB fC gC hC iC 0B","130":"I"},J:{"1":"D A"},K:{"1":"B C b kB zB lB","2":"A"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 08b4ca7b74e84e3..816a4f4731a0ce8 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 zB"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0 1 2 3 4 5 6 7 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z 1B 2B"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","2":"0 1 2 3 4 I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"C K L G kB AC BC CC uB vB wB DC lB EC","2":"I n J D E F 5B sB 6B 7B 8B 9B","132":"A B tB jB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C G M N O o p q r FC GC HC IC jB xB JC kB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"E sB KC yB LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"mB I fC gC hC iC yB jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J D E F A B 1B"},B:{"1":"L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","2":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"0 1 2 3 4 5 6 7 8 2B nB I o J D E F A B C K L G M N O p q r s t u v w x y z 3B 4B"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","2":"0 1 2 3 4 5 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"C K L G lB BC CC DC vB wB xB yB mB EC","2":"I o J D E F 6B tB 7B 8B 9B AC","132":"A B uB kB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C G M N O p q r s FC GC HC IC kB zB JC lB"},G:{"1":"RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"E tB KC 0B LC MC NC OC PC QC"},H:{"2":"eC"},I:{"1":"H","2":"nB I fC gC hC iC 0B jC kC"},J:{"2":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"2":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 13d102cd65110dd..01597abcf909c33 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB I n J D E F A B C K L 1B 2B"},D:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB"},E:{"1":"F A B C K L G 9B tB jB kB AC BC CC uB vB wB DC lB EC","4":"I n J D E 5B sB 6B 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","2":"F B C FC GC HC IC jB xB JC kB","4":"G M N O o p q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","4":"E sB KC yB LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","4":"mB I fC gC hC iC yB jC kC"},J:{"4":"D A"},K:{"1":"b","2":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:5,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J D E F A B 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB I o J D E F A B C K L 3B 4B"},D:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"0 1 2 3 4 5 6 7 8 9 I o 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"},E:{"1":"F A B C K L G AC uB kB lB BC CC DC vB wB xB yB mB EC","4":"I o J D E 6B tB 7B 8B 9B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","2":"F B C FC GC HC IC kB zB JC lB","4":"0 G M N O p q r s t u v w x y z"},G:{"1":"PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","4":"E tB KC 0B LC MC NC OC"},H:{"2":"eC"},I:{"1":"H","4":"nB I fC gC hC iC 0B jC kC"},J:{"4":"D A"},K:{"1":"b","2":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 2558427cfe28a15..84b493ac771ffe2 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 zB"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m H","4":"C K L G M N"},C:{"1":"IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","4":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","4":"I n J D E F A B C K L G M N O o p q r"},E:{"1":"D E F A B C K L G 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","4":"I n J 5B sB 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F FC GC","4":"B C HC IC jB xB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","4":"sB KC yB LC MC"},H:{"4":"eC"},I:{"1":"H jC kC","4":"mB I fC gC hC iC yB"},J:{"1":"A","4":"D"},K:{"1":"b","4":"A B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"4":"zC"}},B:5,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J D E F A B 1B"},B:{"1":"O P Q R S T U V W X Y Z c d e f g h i j k l a m n H","4":"C K L G M N"},C:{"1":"JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","4":"0 1 2 3 4 5 6 7 8 9 I o 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 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","4":"I o J D E F A B C K L G M N O p q r s"},E:{"1":"D E F A B C K L G 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","4":"I o J 6B tB 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F FC GC","4":"B C HC IC kB zB JC"},G:{"1":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","4":"tB KC 0B LC MC"},H:{"4":"eC"},I:{"1":"H jC kC","4":"nB I fC gC hC iC 0B"},J:{"1":"A","4":"D"},K:{"1":"b","4":"A B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"4":"0C"}},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 aae1ab70ebc920f..7f9a6a111fe7abf 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 zB","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B","2":"0B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"5B sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB","2":"F"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J D 1B","132":"E F","260":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B","2":"2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"6B tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB","2":"F"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"4":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 34ac4e8c0d68064..cfeae6e9687d4b8 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 zB"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB","4":"I n J D E F A B C K L G M N aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","16":"0B mB 1B 2B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J D E F A B C K L G M N O o p q r s t u"},E:{"4":"J D E F A B C K L G 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","16":"I n 5B sB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z JC kB","16":"F B FC GC HC IC jB xB"},G:{"4":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","16":"sB KC yB LC MC"},H:{"2":"eC"},I:{"4":"I H iC yB jC kC","16":"mB fC gC hC"},J:{"4":"D A"},K:{"4":"b kB","16":"A B C jB xB"},L:{"4":"H"},M:{"4":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"4":"xC"},R:{"4":"yC"},S:{"1":"zC"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"E F A B","2":"J D 1B"},B:{"1":"C K L G M N O","4":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB","4":"I o J D E F A B C K L G M N bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","16":"2B nB 3B 4B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J D E F A B C K L G M N O p q r s t u v"},E:{"4":"J D E F A B C K L G 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","16":"I o 6B tB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z JC lB","16":"F B FC GC HC IC kB zB"},G:{"4":"E NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","16":"tB KC 0B LC MC"},H:{"2":"eC"},I:{"4":"I H iC 0B jC kC","16":"nB fC gC hC"},J:{"4":"D A"},K:{"4":"b lB","16":"A B C kB zB"},L:{"4":"H"},M:{"4":"a"},N:{"1":"A B"},O:{"4":"lC"},P:{"4":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"4":"yC"},R:{"4":"zC"},S:{"1":"0C"}},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 dfbf5d176b492e9..5edc6b041b482f2 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 zB","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","2":"0B mB","260":"A B","388":"J D E F","900":"I n 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","16":"I n J","132":"y z","388":"D E F A B C K L G M N O o p q r s t u v w x"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","2":"I 5B sB","132":"D 7B","388":"n J 6B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z kB","2":"F B FC GC HC IC jB xB JC","132":"G M N"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","2":"sB KC yB","132":"NC","388":"LC MC"},H:{"2":"eC"},I:{"1":"H kC","2":"fC gC hC","388":"jC","900":"mB I iC yB"},J:{"132":"A","388":"D"},K:{"1":"C b kB","2":"A B jB xB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J D E F 1B","132":"A B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","2":"2B nB","260":"A B","388":"J D E F","900":"I o 3B 4B"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","16":"I o J","132":"0 z","388":"D E F A B C K L G M N O p q r s t u v w x y"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","2":"I 6B tB","132":"D 8B","388":"o J 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z lB","2":"F B FC GC HC IC kB zB JC","132":"G M N"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","2":"tB KC 0B","132":"NC","388":"LC MC"},H:{"2":"eC"},I:{"1":"H kC","2":"fC gC hC","388":"jC","900":"nB I iC 0B"},J:{"132":"A","388":"D"},K:{"1":"C b lB","2":"A B kB zB"},L:{"1":"H"},M:{"1":"a"},N:{"132":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 7ed04e68ab5b742..69e9ade63841c1d 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"1":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"1":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"1":"eC"},I:{"1":"mB I H fC gC hC iC yB jC kC"},J:{"1":"D A"},K:{"1":"A B C b jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"2":"yC"},S:{"1":"zC"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"F A B","2":"J D E 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"1":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"1":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"1":"eC"},I:{"1":"nB I H fC gC hC iC 0B jC kC"},J:{"1":"D A"},K:{"1":"A B C b kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"2":"zC"},S:{"1":"0C"}},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 17ffb0069d476f1..bc337f30ca68160 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 zB","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 0B mB I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB 1B 2B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I n J D E F A B C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B"},E:{"8":"I n J D E F A B C K L G 5B sB 6B 7B 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z FC GC HC IC jB xB JC kB"},G:{"8":"E sB KC yB LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB"},H:{"8":"eC"},I:{"8":"mB I H fC gC hC iC yB jC kC"},J:{"8":"D A"},K:{"8":"A B C b jB xB kB"},L:{"8":"H"},M:{"8":"a"},N:{"2":"A B"},O:{"8":"lC"},P:{"8":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"8":"xC"},R:{"8":"yC"},S:{"8":"zC"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"F A B 1B","4":"J D E"},B:{"2":"C K L G M N O","8":"P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 2B nB I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB 3B 4B"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I o 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B"},E:{"8":"I o J D E F A B C K L G 6B tB 7B 8B 9B AC uB kB lB BC CC DC vB wB xB yB mB EC"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C 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 MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z FC GC HC IC kB zB JC lB"},G:{"8":"E tB KC 0B LC MC NC OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB"},H:{"8":"eC"},I:{"8":"nB I H fC gC hC iC 0B jC kC"},J:{"8":"D A"},K:{"8":"A B C b kB zB lB"},L:{"8":"H"},M:{"8":"a"},N:{"2":"A B"},O:{"8":"lC"},P:{"8":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"8":"yC"},R:{"8":"zC"},S:{"8":"0C"}},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 16084be0339982a..1d55bfb7853f8ff 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 zB"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z c d e f g h i j k l a m H qB rB","132":"B","260":"0B mB I n J D 1B 2B","516":"E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB nB SB oB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R S T U V W X Y Z c d e f g h i j k l a m H qB rB 3B 4B","132":"I n J D E F A B C K L G M N O o p q r s t u v w x y z"},E:{"1":"E F A B C K L G 8B 9B tB jB kB AC BC CC uB vB wB DC lB EC","132":"I n J D 5B sB 6B 7B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB b VB WB XB YB ZB aB bB cB dB eB fB gB hB iB P Q R pB S T U V W X Y Z","16":"F FC","132":"B C G M N GC HC IC jB xB JC kB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC uB vB wB lB","132":"sB KC yB LC MC NC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"mB I fC gC hC iC yB"},J:{"132":"D A"},K:{"1":"b","16":"A","132":"B C jB xB kB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC tB rC sC tC uC vC lB wC"},Q:{"1":"xC"},R:{"1":"yC"},S:{"1":"zC"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J D E F 1B"},B:{"1":"C K L G M N O P Q R S T U V W X Y Z c d e f g h i j k l a m n H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 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 MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z c d e f g h i j k l a m n H rB sB","132":"B","260":"2B nB I o J D 3B 4B","516":"E F A"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB oB TB pB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R S T U V W X Y Z c d e f g h i j k l a m n H rB sB 5B","132":"0 I o J D E F A B C K L G M N O p q r s t u v w x y z"},E:{"1":"E F A B C K L G 9B AC uB kB lB BC CC DC vB wB xB yB mB EC","132":"I o J D 6B tB 7B 8B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB b WB XB YB ZB aB bB cB dB eB fB gB hB iB jB P Q R qB S T U V W X Y Z","16":"F FC","132":"B C G M N GC HC IC kB zB JC lB"},G:{"1":"E OC PC QC RC SC TC UC VC WC XC YC ZC aC bC cC dC vB wB xB yB mB","132":"tB KC 0B LC MC NC"},H:{"132":"eC"},I:{"1":"H jC kC","132":"nB I fC gC hC iC 0B"},J:{"132":"D A"},K:{"1":"b","16":"A","132":"B C kB zB lB"},L:{"1":"H"},M:{"1":"a"},N:{"1":"A B"},O:{"1":"lC"},P:{"1":"I mC nC oC pC qC uB rC sC tC uC vC mB wC xC"},Q:{"1":"yC"},R:{"1":"zC"},S:{"1":"0C"}},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 bef298e9bf309be..b5dcbe070974910 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:{"52":0.0077,"59":0.00385,"60":0.01539,"61":0.0077,"62":0.0077,"63":0.0077,"65":0.00385,"67":0.00385,"68":0.01539,"70":0.00385,"72":0.01539,"73":0.00385,"78":0.06926,"84":0.01154,"90":0.01539,"91":0.03463,"95":0.15007,"96":0.0077,"99":0.01924,"100":0.01539,"101":0.0885,"102":1.73545,"103":0.2886,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 64 66 69 71 74 75 76 77 79 80 81 82 83 85 86 87 88 89 92 93 94 97 98 104 105 3.5 3.6"},D:{"28":0.00385,"49":0.23473,"67":0.0077,"69":0.01539,"70":0.00385,"76":0.00385,"77":0.01154,"79":0.11929,"80":0.00385,"81":0.0077,"83":0.01924,"84":0.01924,"85":0.0077,"86":0.01924,"87":0.03848,"89":0.03078,"90":0.01924,"91":0.0077,"92":0.08081,"93":0.00385,"94":0.0077,"95":0.0077,"96":0.02309,"97":0.01924,"98":0.01154,"99":0.20394,"100":0.15392,"101":0.43098,"102":1.00818,"103":14.69551,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 71 72 73 74 75 78 88 104 105 106"},F:{"83":0.01924,"85":0.05387,"86":0.02309,"88":0.46946,"89":0.21934,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.05387,"92":0.01539,"97":0.06926,"101":0.02309,"102":0.03848,"103":2.7975,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100"},E:{"4":0,"12":0.00385,"13":0.02309,"14":0.11159,"15":0.04233,_:"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.01539,"12.1":0.02309,"13.1":0.33478,"14.1":0.41943,"15.1":0.3848,"15.2-15.3":0.38865,"15.4":1.12362,"15.5":9.60846,"15.6":0.62338,"16.0":0.15392},G:{"8":0,"3.2":0,"4.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.00795,"9.0-9.2":0,"9.3":0.03575,"10.0-10.2":0,"10.3":0.05164,"11.0-11.2":0,"11.3-11.4":0.04767,"12.0-12.1":0,"12.2-12.5":0.30192,"13.0-13.1":0,"13.2":0,"13.3":0.00795,"13.4-13.7":0.1311,"14.0-14.4":0.12712,"14.5-14.8":0.66343,"15.0-15.1":0.53631,"15.2-15.3":1.68837,"15.4":2.85235,"15.5":32.22598,"16.0":0.31384},P:{"4":0.0317,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.13584,"8.2":0.04044,"9.2":0.04185,"10.1":0.03033,"11.1-11.2":0.05231,"12.0":0.02092,"13.0":0.10462,"14.0":0.0209,"15.0":0.05231,"16.0":0.0317,"17.0":1.3208},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00127,"4.4":0,"4.4.3-4.4.4":0.03564},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02694,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.28914},Q:{"10.4":0},O:{"0":0.0123},H:{"0":0.11066},L:{"0":21.0463}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00395,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00395,"60":0.0079,"61":0.00395,"62":0.00395,"63":0.00395,"64":0,"65":0,"66":0,"67":0,"68":0.0079,"69":0,"70":0.00395,"71":0,"72":0.00395,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02764,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00395,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00395,"91":0.01185,"92":0,"93":0,"94":0,"95":0.05924,"96":0.00395,"97":0,"98":0.00395,"99":0.01185,"100":0.00395,"101":0.05134,"102":0.76216,"103":0.11847,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.09083,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00395,"68":0,"69":0.00395,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00395,"77":0.00395,"78":0,"79":0.04739,"80":0,"81":0.01185,"83":0.0079,"84":0.0079,"85":0.00395,"86":0.0079,"87":0.0158,"88":0,"89":0.01185,"90":0.0079,"91":0.00395,"92":0.03159,"93":0,"94":0.00395,"95":0.0079,"96":0.0079,"97":0.01975,"98":0.00395,"99":0.08293,"100":0.05924,"101":0.16981,"102":0.39885,"103":5.82478,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0158,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.0079,"84":0,"85":0.01975,"86":0.0079,"87":0,"88":0.1856,"89":0.08688,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01975,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0079,"93":0,"94":0,"95":0,"96":0,"97":0.02764,"98":0,"99":0,"100":0,"101":0.0079,"102":0.0158,"103":1.11362,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0079,"14":0.04344,"15":0.0158,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00395,"12.1":0.0079,"13.1":0.13032,"14.1":0.16586,"15.1":0.15006,"15.2-15.3":0.15401,"15.4":0.44229,"15.5":3.79499,"15.6":0.24484,"16.0":0.06318},G:{"8":0,"3.2":0,"4.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.01102,"9.0-9.2":0,"9.3":0.0496,"10.0-10.2":0,"10.3":0.07165,"11.0-11.2":0,"11.3-11.4":0.06614,"12.0-12.1":0,"12.2-12.5":0.41888,"13.0-13.1":0,"13.2":0,"13.3":0.01102,"13.4-13.7":0.18188,"14.0-14.4":0.17637,"14.5-14.8":0.92043,"15.0-15.1":0.74406,"15.2-15.3":2.34241,"15.4":3.9573,"15.5":44.70972,"16.0":0.43541},P:{"4":0.05196,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0.01039,"16.0":0.03118,"17.0":1.26794,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00343,"4.4":0,"4.4.3-4.4.4":0.09606},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01185,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":28.20516},S:{"2.5":0},R:{_:"0"},M:{"0":0.2844},Q:{"10.4":0},O:{"0":0.0121},H:{"0":0.10885}}; 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 7ed2c6b25487cd8..11262e95435f85a 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.00314,"42":0.00314,"51":0.00314,"52":0.00942,"68":0.05966,"77":0.00314,"78":0.0157,"79":0.00628,"80":0.00942,"81":0.00628,"82":0.00314,"83":0.00942,"84":0.00314,"91":0.01884,"93":0.00314,"98":0.00314,"99":0.00942,"100":0.01256,"101":0.05024,"102":0.68766,"103":0.0785,"104":0.01256,_:"2 3 4 5 6 7 8 9 10 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 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 85 86 87 88 89 90 92 94 95 96 97 105 3.5 3.6"},D:{"22":0.00314,"34":0.00314,"35":0.49926,"38":0.02198,"49":0.02512,"56":0.00628,"58":0.00628,"63":0.00628,"65":0.00942,"66":0.00628,"67":0.00314,"68":0.00314,"69":0.0157,"70":0.00314,"71":0.00628,"73":0.00628,"74":0.00628,"75":0.03768,"76":0.0471,"78":0.00628,"79":0.06594,"80":0.02198,"81":0.0157,"83":0.04082,"84":0.0628,"85":0.0785,"86":0.06908,"87":0.11932,"88":0.00628,"89":0.01884,"90":0.01256,"91":0.03454,"92":0.05338,"93":0.0785,"94":0.02512,"95":0.02198,"96":0.05024,"97":0.03768,"98":0.03768,"99":0.05338,"100":0.1256,"101":0.16642,"102":1.21832,"103":19.22936,"104":0.0157,"105":0.0157,_:"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 60 61 62 64 72 77 106 107"},F:{"28":0.01256,"36":0.00628,"46":0.01256,"68":0.00314,"69":0.00314,"71":0.00942,"72":0.00314,"81":0.00628,"84":0.01256,"85":0.00942,"86":0.01256,"87":0.0471,"88":0.47728,"89":0.16014,_:"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 73 74 75 76 77 78 79 80 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02198,"84":0.00628,"85":0.00628,"87":0.00314,"89":0.00314,"92":0.00942,"96":0.00314,"98":0.00314,"99":0.00314,"100":0.00628,"101":0.05338,"102":0.06594,"103":2.32674,_:"12 13 14 15 16 17 79 80 81 83 86 88 90 91 93 94 95 97"},E:{"4":0,"12":0.00628,"13":0.02198,"14":0.13188,"15":0.0471,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00628,"11.1":0.00942,"12.1":0.03454,"13.1":0.13816,"14.1":0.38308,"15.1":0.08164,"15.2-15.3":0.06594,"15.4":0.26062,"15.5":1.40358,"15.6":0.06908,"16.0":0.01256},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00317,"6.0-6.1":0,"7.0-7.1":0.00952,"8.1-8.4":0.00159,"9.0-9.2":0,"9.3":0.17132,"10.0-10.2":0.00635,"10.3":0.13325,"11.0-11.2":0.01745,"11.3-11.4":0.01428,"12.0-12.1":0.02062,"12.2-12.5":0.47112,"13.0-13.1":0.01586,"13.2":0.00793,"13.3":0.03331,"13.4-13.7":0.1269,"14.0-14.4":0.40767,"14.5-14.8":1.05329,"15.0-15.1":0.35691,"15.2-15.3":0.56154,"15.4":1.07232,"15.5":10.75337,"16.0":0.13325},P:{"4":0.12448,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.04149,"8.2":0.01017,"9.2":0.07666,"10.1":0.03917,"11.1-11.2":0.02075,"12.0":0.01037,"13.0":0.04149,"14.0":0.03112,"15.0":0.02075,"16.0":0.10374,"17.0":2.1162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00638,"4.4":0,"4.4.3-4.4.4":0.04849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.007,"11":0.11546,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.13032},Q:{"10.4":0},O:{"0":3.1277},H:{"0":0.57144},L:{"0":47.85413},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00319,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01916,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00639,"79":0.00319,"80":0.00319,"81":0.00319,"82":0,"83":0.00319,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00639,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00319,"99":0.00319,"100":0.00319,"101":0.01916,"102":0.24913,"103":0.02555,"104":0.00319,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.1597,"36":0,"37":0,"38":0.00639,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00958,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00319,"57":0,"58":0.00319,"59":0,"60":0,"61":0,"62":0,"63":0.00319,"64":0,"65":0.00319,"66":0.00319,"67":0,"68":0,"69":0.00319,"70":0,"71":0.00319,"72":0,"73":0.00319,"74":0.00319,"75":0.01278,"76":0.01597,"77":0,"78":0.00319,"79":0.02236,"80":0.00639,"81":0.00958,"83":0.01278,"84":0.01916,"85":0.02555,"86":0.02236,"87":0.03833,"88":0.00319,"89":0.00639,"90":0.00319,"91":0.01278,"92":0.02236,"93":0.02555,"94":0.00639,"95":0.00639,"96":0.01597,"97":0.01278,"98":0.01278,"99":0.01597,"100":0.04152,"101":0.0543,"102":0.39286,"103":6.18358,"104":0.00639,"105":0.00319,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00319,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00319,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00319,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01916,"64":0.00319,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00319,"71":0.00319,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00319,"82":0,"83":0,"84":0.00319,"85":0.00319,"86":0.00319,"87":0.01597,"88":0.15331,"89":0.0511,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00639,"79":0,"80":0,"81":0,"83":0,"84":0.00319,"85":0.00319,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00319,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00319,"100":0.00319,"101":0.01597,"102":0.02555,"103":0.75378,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00319,"13":0.00639,"14":0.04152,"15":0.01597,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00319,"11.1":0.00319,"12.1":0.00958,"13.1":0.04472,"14.1":0.12137,"15.1":0.02555,"15.2-15.3":0.02236,"15.4":0.08304,"15.5":0.44716,"15.6":0.02236,"16.0":0.00319},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00435,"6.0-6.1":0,"7.0-7.1":0.01305,"8.1-8.4":0.00217,"9.0-9.2":0,"9.3":0.23486,"10.0-10.2":0.0087,"10.3":0.18267,"11.0-11.2":0.02392,"11.3-11.4":0.01957,"12.0-12.1":0.02827,"12.2-12.5":0.64585,"13.0-13.1":0.02175,"13.2":0.01087,"13.3":0.04567,"13.4-13.7":0.17397,"14.0-14.4":0.55887,"14.5-14.8":1.44392,"15.0-15.1":0.48928,"15.2-15.3":0.7698,"15.4":1.47002,"15.5":14.7415,"16.0":0.18267},P:{"4":0.12352,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04117,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.03088,"12.0":0.01029,"13.0":0.05147,"14.0":0.04117,"15.0":0.02059,"16.0":0.10293,"17.0":2.05867,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0119,"4.4":0,"4.4.3-4.4.4":0.09046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00348,"10":0,"11":0.03484,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.40129},S:{"2.5":0.00681},R:{_:"0"},M:{"0":0.12931},Q:{"10.4":0.00681},O:{"0":3.10354},H:{"0":0.56703}}; 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 5fd891ee3d53ccf..844d904821f7037 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js @@ -1 +1 @@ -module.exports={C:{"18":0.0041,"24":0.0082,"29":0.0082,"33":0.0041,"38":0.0041,"39":0.00205,"41":0.00205,"43":0.01025,"44":0.00615,"47":0.00615,"48":0.0041,"50":0.0574,"52":0.01025,"56":0.00615,"57":0.00615,"72":0.01025,"78":0.0123,"82":0.00205,"87":0.0041,"88":0.0041,"89":0.01025,"91":0.0205,"94":0.0041,"95":0.0164,"97":0.00615,"98":0.0369,"99":0.0328,"100":0.0123,"101":0.0861,"102":0.8405,"103":0.15375,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 25 26 27 28 30 31 32 34 35 36 37 40 42 45 46 49 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 90 92 93 96 104 105 3.5 3.6"},D:{"18":0.00615,"20":0.0041,"33":0.00205,"34":0.0041,"35":0.0041,"36":0.00205,"37":0.0041,"38":0.0041,"39":0.0041,"40":0.00615,"41":0.00205,"42":0.00205,"43":0.0082,"44":0.00615,"46":0.0082,"47":0.01435,"48":0.0041,"49":0.0041,"50":0.0041,"51":0.0041,"52":0.0205,"54":0.0041,"55":0.00615,"56":0.0041,"57":0.00615,"58":0.0041,"61":0.0123,"62":0.01025,"63":0.00615,"64":0.0041,"65":0.01845,"66":0.00205,"67":0.00615,"68":0.00615,"69":0.00615,"70":0.0041,"71":0.01025,"72":0.01025,"73":0.0082,"74":0.0082,"75":0.00615,"76":0.0082,"77":0.0164,"78":0.06765,"79":0.0123,"80":0.0533,"81":0.0328,"83":0.0779,"84":0.01435,"85":0.0082,"86":0.0451,"87":0.05535,"88":0.03485,"89":0.0287,"90":0.0082,"91":0.01025,"92":0.0451,"94":0.0164,"95":0.0164,"96":0.0492,"97":0.04305,"98":0.05535,"99":0.08405,"100":0.0656,"101":0.082,"102":0.5781,"103":9.6719,"104":0.01845,"105":0.03075,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 21 22 23 24 25 26 27 28 29 30 31 32 45 53 59 60 93 106"},F:{"42":0.0041,"79":0.0287,"82":0.00205,"84":0.01025,"85":0.02665,"86":0.01025,"87":0.01025,"88":0.19475,"89":0.205,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0164,"13":0.0123,"14":0.01845,"15":0.0287,"16":0.03895,"17":0.03895,"18":0.15375,"81":0.0205,"84":0.0246,"85":0.00615,"87":0.0041,"88":0.00205,"89":0.02665,"90":0.041,"92":0.0574,"94":0.0041,"96":0.00205,"97":0.00205,"98":0.0164,"99":0.00615,"100":0.01025,"101":0.06765,"102":0.06355,"103":0.9143,_:"79 80 83 86 91 93 95"},E:{"4":0,"13":0.02255,"14":0.0287,"15":0.0041,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 12.1","5.1":0.0123,"10.1":0.0041,"11.1":0.0041,"13.1":0.0041,"14.1":0.0246,"15.1":0.0656,"15.2-15.3":0.041,"15.4":0.27675,"15.5":1.56005,"15.6":0.19065,"16.0":0.0328},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01007,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01511,"10.0-10.2":0,"10.3":0.14273,"11.0-11.2":0.01343,"11.3-11.4":0.05541,"12.0-12.1":0.03022,"12.2-12.5":0.78079,"13.0-13.1":0.01679,"13.2":0.02351,"13.3":0.06213,"13.4-13.7":0.14776,"14.0-14.4":0.6028,"14.5-14.8":0.68676,"15.0-15.1":0.539,"15.2-15.3":1.14012,"15.4":1.65057,"15.5":10.3014,"16.0":0.19814},P:{"4":1.20302,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.67733,"8.2":0.04044,"9.2":0.3235,"10.1":0.03033,"11.1-11.2":0.17186,"12.0":0.04044,"13.0":0.13142,"14.0":0.37405,"15.0":0.14153,"16.0":0.79864,"17.0":1.55685},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00693,"4.2-4.3":0.03117,"4.4":0,"4.4.3-4.4.4":0.14476},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01902,"11":0.39098,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.1113},Q:{"10.4":0},O:{"0":1.431},H:{"0":1.0763},L:{"0":56.90635}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00206,"25":0,"26":0,"27":0,"28":0,"29":0.00206,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00206,"44":0.00206,"45":0,"46":0,"47":0.00206,"48":0,"49":0,"50":0.01238,"51":0,"52":0.00206,"53":0,"54":0,"55":0,"56":0.00206,"57":0.00206,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00206,"69":0,"70":0,"71":0,"72":0.00206,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00206,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00206,"90":0,"91":0.00413,"92":0,"93":0,"94":0.00206,"95":0.00413,"96":0,"97":0.00206,"98":0.00825,"99":0.00825,"100":0.00413,"101":0.02269,"102":0.18361,"103":0.03301,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00206,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00206,"41":0,"42":0,"43":0.00206,"44":0.00206,"45":0,"46":0.00206,"47":0.00413,"48":0,"49":0,"50":0,"51":0,"52":0.00413,"53":0,"54":0,"55":0.00206,"56":0,"57":0.00206,"58":0,"59":0,"60":0,"61":0.00206,"62":0.00206,"63":0.00206,"64":0.00206,"65":0.00413,"66":0,"67":0.00206,"68":0.00206,"69":0.00206,"70":0,"71":0.00206,"72":0.00206,"73":0.00206,"74":0.00206,"75":0.00206,"76":0.00206,"77":0.00413,"78":0.01444,"79":0.00206,"80":0.01032,"81":0.01032,"83":0.0165,"84":0.00206,"85":0.00206,"86":0.01032,"87":0.01238,"88":0.00619,"89":0.00619,"90":0.00206,"91":0.00206,"92":0.01032,"93":0,"94":0.00413,"95":0.00413,"96":0.01032,"97":0.00825,"98":0.01238,"99":0.0165,"100":0.01444,"101":0.0165,"102":0.12172,"103":1.99698,"104":0.00413,"105":0.00619,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00206,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00206,"60":0.00206,"62":0,"63":0.06602,"64":0.00619,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00619,"80":0,"81":0,"82":0,"83":0,"84":0.00206,"85":0.00619,"86":0.00206,"87":0.00206,"88":0.0392,"89":0.04332,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00413,"13":0.00206,"14":0.00413,"15":0.00619,"16":0.00825,"17":0.00825,"18":0.03095,"79":0,"80":0,"81":0.00413,"83":0,"84":0.00413,"85":0.00206,"86":0,"87":0,"88":0,"89":0.00619,"90":0.00825,"91":0,"92":0.01238,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00413,"99":0.00206,"100":0.00206,"101":0.01444,"102":0.01238,"103":0.19186,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00413,"14":0.00619,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00206,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00413,"15.1":0.01444,"15.2-15.3":0.00825,"15.4":0.05776,"15.5":0.32183,"15.6":0.0392,"16.0":0.00619},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01225,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01837,"10.0-10.2":0,"10.3":0.17352,"11.0-11.2":0.01633,"11.3-11.4":0.06737,"12.0-12.1":0.03675,"12.2-12.5":0.94926,"13.0-13.1":0.02041,"13.2":0.02858,"13.3":0.07553,"13.4-13.7":0.17964,"14.0-14.4":0.73287,"14.5-14.8":0.83494,"15.0-15.1":0.65529,"15.2-15.3":1.38612,"15.4":2.00671,"15.5":12.52407,"16.0":0.24089},P:{"4":1.21325,"5.0-5.4":0.21232,"6.2-6.4":0.13144,"7.2-7.4":0.66729,"8.2":0.04044,"9.2":0.33364,"10.1":0.03033,"11.1-11.2":0.18199,"12.0":0.05055,"13.0":0.13144,"14.0":0.37408,"15.0":0.14155,"16.0":0.7785,"17.0":1.54689,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01043,"4.2-4.3":0.04694,"4.4":0,"4.4.3-4.4.4":0.21801},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00423,"10":0,"11":0.08035,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.69681},S:{"2.5":0},R:{_:"0"},M:{"0":0.11112},Q:{"10.4":0},O:{"0":1.42866},H:{"0":1.07454}}; 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 c6014c61b848ca3..080b9444ea2e8cc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"52":0.00324,"78":0.00972,"79":0.01296,"91":0.00648,"95":0.00324,"96":0.00648,"98":0.00648,"100":0.00324,"101":0.05186,"102":0.60283,"103":0.0713,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 92 93 94 97 99 104 105 3.5 3.6"},D:{"47":0.00324,"49":0.00324,"53":0.04537,"55":0.00324,"62":0.01621,"65":0.00648,"67":0.00972,"70":0.00324,"76":0.08103,"77":0.01621,"78":0.00324,"79":0.12964,"85":0.00648,"86":0.05834,"87":0.02269,"88":0.03565,"89":0.00972,"90":0.00648,"91":0.02269,"92":0.01621,"93":0.12316,"95":0.01296,"96":0.00648,"97":0.00648,"98":0.02269,"99":0.01621,"100":0.08103,"101":0.11668,"102":1.54272,"103":17.14813,"104":0.01945,"105":0.00648,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 63 64 66 68 69 71 72 73 74 75 80 81 83 84 94 106"},F:{"28":0.00972,"87":0.03565,"88":0.48615,"89":0.09075,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00324,"16":0.00324,"17":0.00972,"18":0.01296,"84":0.00972,"85":0.00648,"92":0.01296,"94":0.00648,"98":0.00324,"99":0.00972,"100":0.00648,"101":0.07454,"102":0.22039,"103":4.98142,_:"12 14 15 79 80 81 83 86 87 88 89 90 91 93 95 96 97"},E:{"4":0,"13":0.02269,"14":0.12316,"15":0.03241,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.18474,"10.1":0.09075,"11.1":0.01296,"12.1":0.03889,"13.1":0.10371,"14.1":0.42457,"15.1":0.0551,"15.2-15.3":0.02593,"15.4":0.1815,"15.5":1.10842,"15.6":0.06806,"16.0":0.01296},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01077,"6.0-6.1":0,"7.0-7.1":0.00923,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.20624,"10.0-10.2":0,"10.3":0.04002,"11.0-11.2":0.01693,"11.3-11.4":0.0077,"12.0-12.1":0.01693,"12.2-12.5":0.49868,"13.0-13.1":0.00462,"13.2":0,"13.3":0.05079,"13.4-13.7":0.15237,"14.0-14.4":0.33553,"14.5-14.8":0.72032,"15.0-15.1":0.27243,"15.2-15.3":0.30321,"15.4":0.61104,"15.5":11.79749,"16.0":0.07234},P:{"4":0.24784,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.35111,"8.2":0.07179,"9.2":0.02065,"10.1":0.02051,"11.1-11.2":0.25817,"12.0":0.02065,"13.0":0.08261,"14.0":0.1136,"15.0":0.07229,"16.0":0.48536,"17.0":4.63676},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00285,"4.4":0,"4.4.3-4.4.4":0.01743},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02917,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.65562},Q:{"10.4":0.12842},O:{"0":0.0338},H:{"0":0.08319},L:{"0":48.24093}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00344,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00344,"79":0.00344,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00344,"87":0,"88":0,"89":0,"90":0,"91":0.00344,"92":0,"93":0,"94":0,"95":0,"96":0.00344,"97":0,"98":0.00344,"99":0,"100":0,"101":0.01718,"102":0.40201,"103":0.02405,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01718,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00687,"63":0,"64":0,"65":0.00687,"66":0,"67":0.00344,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02749,"77":0.00687,"78":0,"79":0.04467,"80":0,"81":0.00344,"83":0,"84":0,"85":0.00344,"86":0.02062,"87":0.01031,"88":0.01374,"89":0.00344,"90":0.00344,"91":0.00687,"92":0.00687,"93":0.04123,"94":0,"95":0.00344,"96":0.00344,"97":0.00344,"98":0.00687,"99":0.00687,"100":0.02749,"101":0.04123,"102":0.53258,"103":5.89961,"104":0.00687,"105":0.00344,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00344,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00687,"64":0.00344,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01031,"88":0.16836,"89":0.03092,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00344,"18":0.00344,"79":0,"80":0,"81":0,"83":0,"84":0.00344,"85":0.00344,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00344,"93":0,"94":0.00344,"95":0,"96":0,"97":0,"98":0,"99":0.00344,"100":0.00344,"101":0.02405,"102":0.07903,"103":1.718,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00687,"14":0.04123,"15":0.01031,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.06185,"10.1":0.03092,"11.1":0.00344,"12.1":0.01374,"13.1":0.03436,"14.1":0.14431,"15.1":0.02062,"15.2-15.3":0.01031,"15.4":0.06185,"15.5":0.3814,"15.6":0.02405,"16.0":0.00344},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01452,"6.0-6.1":0,"7.0-7.1":0.01244,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.27792,"10.0-10.2":0,"10.3":0.05393,"11.0-11.2":0.02281,"11.3-11.4":0.01037,"12.0-12.1":0.02281,"12.2-12.5":0.67199,"13.0-13.1":0.00622,"13.2":0,"13.3":0.06844,"13.4-13.7":0.20533,"14.0-14.4":0.45214,"14.5-14.8":0.97065,"15.0-15.1":0.36711,"15.2-15.3":0.40859,"15.4":0.82339,"15.5":15.89753,"16.0":0.09748},P:{"4":0.22382,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.35171,"8.2":0,"9.2":0.02132,"10.1":0,"11.1-11.2":0.25579,"12.0":0.02132,"13.0":0.08526,"14.0":0.10658,"15.0":0.07461,"16.0":0.46895,"17.0":4.49764,"18.0":0.01066},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.18312,"4.4":0,"4.4.3-4.4.4":1.12163},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01031,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.81597},S:{"2.5":0},R:{_:"0"},M:{"0":0.63671},Q:{"10.4":0.12472},O:{"0":0.03282},H:{"0":0.08079}}; 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 b86559a986d0731..93e02985a32af2e 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:{"68":0.01556,"91":0.01556,"92":0.01946,"95":0.01946,"100":0.00778,"101":0.02335,"102":0.62256,"103":0.18288,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 96 97 98 99 104 105 3.5 3.6"},D:{"65":0.00389,"68":0.00389,"69":0.03113,"74":0.08171,"75":0.00778,"76":0.05837,"79":0.40077,"81":0.00389,"85":0.22957,"86":0.00389,"87":0.02335,"90":0.00389,"91":0.01946,"95":0.06226,"96":0.00778,"97":0.03113,"99":0.01946,"100":0.09728,"101":0.03502,"102":0.83657,"103":13.75079,"104":0.01946,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 70 71 72 73 77 78 80 83 84 88 89 92 93 94 98 105 106"},F:{"88":0.6926,"89":0.44747,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.07004,"89":0.10117,"95":0.00778,"101":0.03113,"102":0.08949,"103":8.97265,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100"},E:{"4":0,"13":0.06226,"14":0.03502,"15":0.36965,_:"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.01946,"13.1":1.63811,"14.1":0.17899,"15.1":0.20233,"15.2-15.3":0.19455,"15.4":0.47081,"15.5":3.52525,"15.6":0.23346,"16.0":0.07004},G:{"8":0,"3.2":0,"4.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.00443,"10.3":0.01992,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.1755,"13.0-13.1":0,"13.2":0,"13.3":0.0155,"13.4-13.7":0.00885,"14.0-14.4":0.06863,"14.5-14.8":1.10245,"15.0-15.1":0.50031,"15.2-15.3":1.07145,"15.4":2.25359,"15.5":15.49844,"16.0":0.13282},P:{"4":0.27555,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.66768,"8.2":0.07179,"9.2":0.07179,"10.1":0.02051,"11.1-11.2":0.11658,"12.0":0.58289,"13.0":0.03179,"14.0":0.21196,"15.0":0.05299,"16.0":0.11658,"17.0":2.66012},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.02444},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01556,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.04276},Q:{"10.4":0},O:{"0":0.01833},H:{"0":0.02313},L:{"0":38.79999}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0042,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0042,"92":0.0084,"93":0,"94":0,"95":0.0084,"96":0,"97":0,"98":0,"99":0,"100":0.0042,"101":0.0084,"102":0.27707,"103":0.07556,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.01259,"70":0,"71":0,"72":0,"73":0,"74":0.03358,"75":0.0042,"76":0.02519,"77":0,"78":0,"79":0.16792,"80":0,"81":0.0042,"83":0,"84":0,"85":0.09655,"86":0,"87":0.0084,"88":0,"89":0,"90":0,"91":0.0084,"92":0,"93":0,"94":0,"95":0.02519,"96":0.0042,"97":0.01259,"98":0,"99":0.0084,"100":0.04198,"101":0.01679,"102":0.35263,"103":5.77225,"104":0.0084,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.28966,"89":0.18891,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02939,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.04198,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0042,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01259,"102":0.03778,"103":3.79079,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02519,"14":0.01679,"15":0.15533,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0084,"13.1":0.68847,"14.1":0.07556,"15.1":0.08396,"15.2-15.3":0.08396,"15.4":0.19731,"15.5":1.48189,"15.6":0.09655,"16.0":0.02939},G:{"8":0,"3.2":0,"4.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.00641,"10.3":0.02884,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.70154,"13.0-13.1":0,"13.2":0,"13.3":0.02243,"13.4-13.7":0.01282,"14.0-14.4":0.09934,"14.5-14.8":1.5958,"15.0-15.1":0.7242,"15.2-15.3":1.55094,"15.4":3.26209,"15.5":22.4341,"16.0":0.19226},P:{"4":0.25966,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.62751,"8.2":0,"9.2":0.01082,"10.1":0,"11.1-11.2":0.10819,"12.0":0.55178,"13.0":0.04328,"14.0":0.19475,"15.0":0.0541,"16.0":0.11901,"17.0":2.51005,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.44721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0042,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.03058},S:{"2.5":0},R:{_:"0"},M:{"0":0.04061},Q:{"10.4":0},O:{"0":0.01741},H:{"0":0.02197}}; 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 3a01b87b422bd72..4fbb3db5711e79b 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.00306,"52":0.03825,"60":0.00153,"66":0.02295,"67":0.00918,"73":0.00612,"78":0.00765,"82":0.00153,"83":0.00306,"84":0.00765,"87":0.00153,"88":0.00612,"89":0.00612,"91":0.00459,"97":0.00612,"98":0.00153,"99":0.00918,"100":0.00765,"101":0.05202,"102":0.56304,"103":0.06273,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 68 69 70 71 72 74 75 76 77 79 80 81 85 86 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"11":0.00306,"38":0.00765,"43":0.00306,"47":0.00612,"49":0.02448,"53":0.00459,"55":0.00153,"56":0.00612,"58":0.00918,"63":0.00612,"66":0.00153,"67":0.00153,"68":0.03519,"69":0.00153,"71":0.02142,"72":0.00765,"73":0.00306,"74":0.00153,"76":0.00459,"77":0.00306,"78":0.00918,"79":0.05661,"80":0.00918,"81":0.01377,"83":0.02295,"84":0.03825,"85":0.01836,"86":0.01377,"87":0.05049,"88":0.01071,"89":0.00765,"90":0.00918,"91":0.01377,"92":0.01224,"93":0.0306,"94":0.00765,"95":0.00612,"96":0.01989,"97":0.04284,"98":0.01377,"99":0.02907,"100":0.04131,"101":0.12087,"102":0.4284,"103":9.88839,"104":0.00459,"105":0.00153,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 51 52 54 57 59 60 61 62 64 65 70 75 106"},F:{"36":0.00459,"40":0.00153,"46":0.00153,"79":0.00306,"85":0.00306,"86":0.00306,"87":0.00612,"88":0.22338,"89":0.10251,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00153,"17":0.00153,"18":0.00306,"84":0.00306,"89":0.00153,"92":0.00306,"96":0.00765,"97":0.00306,"100":0.00153,"101":0.01377,"102":0.03519,"103":0.75429,_:"13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 94 95 98 99"},E:{"4":0,"12":0.00612,"13":0.01683,"14":0.02448,"15":0.01224,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00306,"11.1":0.00612,"12.1":0.02448,"13.1":0.05661,"14.1":0.07191,"15.1":0.03366,"15.2-15.3":0.03213,"15.4":0.15606,"15.5":0.9639,"15.6":0.09027,"16.0":0.00918},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.04479,"7.0-7.1":0.03665,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04479,"10.0-10.2":0.00814,"10.3":0.08551,"11.0-11.2":0.02443,"11.3-11.4":0.06515,"12.0-12.1":0.03257,"12.2-12.5":1.55131,"13.0-13.1":0.03665,"13.2":0.01629,"13.3":0.15472,"13.4-13.7":0.46417,"14.0-14.4":1.22557,"14.5-14.8":4.53991,"15.0-15.1":0.65554,"15.2-15.3":1.18078,"15.4":2.61808,"15.5":26.96258,"16.0":0.26466},P:{"4":0.25495,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.07139,"8.2":0.04044,"9.2":0.3235,"10.1":0.03033,"11.1-11.2":0.05099,"12.0":0.0204,"13.0":0.08158,"14.0":0.06119,"15.0":0.10198,"16.0":0.12238,"17.0":2.28435},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01072,"4.2-4.3":0.00256,"4.4":0,"4.4.3-4.4.4":0.01212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01377,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18634},Q:{"10.4":0},O:{"0":0.02541},H:{"0":0.10425},L:{"0":41.61664}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00615,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00308,"67":0.00154,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00154,"74":0,"75":0,"76":0,"77":0,"78":0.00154,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00154,"85":0,"86":0,"87":0,"88":0.00154,"89":0.00154,"90":0,"91":0.00154,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00154,"98":0,"99":0.00154,"100":0.00154,"101":0.00923,"102":0.10612,"103":0.01077,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00154,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00154,"48":0,"49":0.00308,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00154,"57":0,"58":0.00154,"59":0,"60":0,"61":0,"62":0,"63":0.00154,"64":0,"65":0,"66":0,"67":0,"68":0.00461,"69":0,"70":0,"71":0.00308,"72":0.00154,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00154,"79":0.00923,"80":0.00154,"81":0.00308,"83":0.00308,"84":0.00615,"85":0.00308,"86":0.00154,"87":0.00769,"88":0.00154,"89":0.00154,"90":0.00154,"91":0.00154,"92":0.00154,"93":0.00461,"94":0.00154,"95":0.00154,"96":0.00308,"97":0.00615,"98":0.00154,"99":0.00461,"100":0.00615,"101":0.01846,"102":0.06613,"103":1.5257,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00154,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00308,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00154,"88":0.03384,"89":0.01538,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00154,"97":0,"98":0,"99":0,"100":0,"101":0.00154,"102":0.00615,"103":0.11843,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00154,"13":0.00308,"14":0.00308,"15":0.00154,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00154,"12.1":0.00308,"13.1":0.00923,"14.1":0.01077,"15.1":0.00461,"15.2-15.3":0.00461,"15.4":0.02461,"15.5":0.14765,"15.6":0.01384,"16.0":0.00154},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.05198,"7.0-7.1":0.04253,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05198,"10.0-10.2":0.00945,"10.3":0.09923,"11.0-11.2":0.02835,"11.3-11.4":0.0756,"12.0-12.1":0.0378,"12.2-12.5":1.80028,"13.0-13.1":0.04253,"13.2":0.0189,"13.3":0.17956,"13.4-13.7":0.53867,"14.0-14.4":1.42227,"14.5-14.8":5.26855,"15.0-15.1":0.76075,"15.2-15.3":1.37029,"15.4":3.03827,"15.5":31.28997,"16.0":0.30714},P:{"4":0.25135,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07038,"8.2":0,"9.2":0.02011,"10.1":0,"11.1-11.2":0.06032,"12.0":0.03016,"13.0":0.08043,"14.0":0.06032,"15.0":0.10054,"16.0":0.12065,"17.0":2.24201,"18.0":0.01005},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0211,"4.2-4.3":0.00505,"4.4":0,"4.4.3-4.4.4":0.02385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00154,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":47.12503},S:{"2.5":0},R:{_:"0"},M:{"0":0.18616},Q:{"10.4":0},O:{"0":0.02539},H:{"0":0.10415}}; 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 2ca6ca0119fb76c..a0020af75cd65a2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js @@ -1 +1 @@ -module.exports={C:{"52":40.36835,"56":0.00714,"78":0.00714,"91":0.01427,"99":0.02141,"100":0.00714,"101":0.08563,"102":0.6351,"103":0.06422,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"22":0.00714,"41":0.00714,"47":0.00714,"49":0.11418,"57":0.01427,"63":0.02854,"67":0.02854,"69":0.00714,"70":0.00714,"74":0.03568,"75":0.02141,"76":0.02854,"79":0.02141,"80":0.04282,"83":0.00714,"84":0.02854,"85":0.03568,"86":0.04282,"87":0.02141,"88":0.02141,"89":0.02141,"90":0.02141,"91":0.00714,"92":0.0785,"93":0.01427,"94":0.01427,"95":0.02141,"96":0.03568,"97":0.05709,"98":0.1784,"99":0.12131,"100":0.20694,"101":0.31398,"102":2.03376,"103":22.24291,"104":0.00714,"105":0.02141,_:"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 42 43 44 45 46 48 50 51 52 53 54 55 56 58 59 60 61 62 64 65 66 68 71 72 73 77 78 81 106"},F:{"28":0.00714,"29":0.02141,"52":0.01427,"85":0.04282,"87":0.01427,"88":0.36394,"89":0.1784,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"98":0.00714,"100":0.02854,"101":0.00714,"102":0.02854,"103":0.84918,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99"},E:{"4":0,"14":0.03568,"15":0.02854,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.04282,"13.1":0.07136,"14.1":0.08563,"15.1":0.04995,"15.2-15.3":0.02854,"15.4":0.17126,"15.5":0.52093,"15.6":0.02141,"16.0":0.00714},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00072,"6.0-6.1":0,"7.0-7.1":0.00505,"8.1-8.4":0.00072,"9.0-9.2":0.00072,"9.3":0.07285,"10.0-10.2":0.00144,"10.3":0.02957,"11.0-11.2":0.00649,"11.3-11.4":0.01298,"12.0-12.1":0.00866,"12.2-12.5":0.33902,"13.0-13.1":0.00793,"13.2":0.00433,"13.3":0.03174,"13.4-13.7":0.09305,"14.0-14.4":0.34912,"14.5-14.8":0.69751,"15.0-15.1":0.14138,"15.2-15.3":0.36787,"15.4":0.50348,"15.5":4.27884,"16.0":0.0981},P:{"4":0.01098,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.07685,"8.2":0.07179,"9.2":0.01029,"10.1":0.02051,"11.1-11.2":0.04392,"12.0":0.01029,"13.0":0.02196,"14.0":0.0549,"15.0":0.04117,"16.0":0.0549,"17.0":0.93323},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00036,"4.2-4.3":0.00394,"4.4":0,"4.4.3-4.4.4":0.01288},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08563,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0.00286},R:{_:"0"},M:{"0":0.04867},Q:{"10.4":0},O:{"0":0.04008},H:{"0":0.18431},L:{"0":20.29003}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":29.03007,"53":0,"54":0,"55":0,"56":0.00719,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00719,"79":0,"80":0,"81":0,"82":0.00719,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00719,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01438,"100":0.00719,"101":0.06472,"102":0.4818,"103":0.05034,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00719,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00719,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00719,"48":0,"49":0.0791,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00719,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.02157,"64":0,"65":0,"66":0,"67":0.02157,"68":0,"69":0.00719,"70":0.00719,"71":0.00719,"72":0,"73":0,"74":0.02876,"75":0.01438,"76":0.02157,"77":0.00719,"78":0.00719,"79":0.01438,"80":0.02876,"81":0.01438,"83":0.00719,"84":0.02157,"85":0.02876,"86":0.02876,"87":0.01438,"88":0.01438,"89":0.02157,"90":0.01438,"91":0.00719,"92":0.05753,"93":0.00719,"94":0.01438,"95":0.01438,"96":0.02157,"97":0.04315,"98":0.12944,"99":0.09348,"100":0.15101,"101":0.23011,"102":1.46696,"103":16.0575,"104":0.00719,"105":0.01438,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00719,"29":0.01438,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01438,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01438,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.03596,"86":0,"87":0.00719,"88":0.25888,"89":0.12944,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00719,"99":0.00719,"100":0.02157,"101":0.00719,"102":0.02157,"103":0.61843,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02157,"15":0.02157,_:"0","3.1":0,"3.2":0,"5.1":0.02876,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00719,"12.1":0,"13.1":0.05034,"14.1":0.06472,"15.1":0.03596,"15.2-15.3":0.02157,"15.4":0.12225,"15.5":0.37393,"15.6":0.01438,"16.0":0.00719},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00133,"6.0-6.1":0,"7.0-7.1":0.00932,"8.1-8.4":0.00133,"9.0-9.2":0.00133,"9.3":0.13441,"10.0-10.2":0.00266,"10.3":0.05456,"11.0-11.2":0.01198,"11.3-11.4":0.02395,"12.0-12.1":0.01597,"12.2-12.5":0.62545,"13.0-13.1":0.01464,"13.2":0.00798,"13.3":0.05855,"13.4-13.7":0.17167,"14.0-14.4":0.64408,"14.5-14.8":1.28683,"15.0-15.1":0.26083,"15.2-15.3":0.67868,"15.4":0.92886,"15.5":7.89397,"16.0":0.18098},P:{"4":0.0309,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0618,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.0515,"12.0":0.0103,"13.0":0.0206,"14.0":0.0618,"15.0":0.0103,"16.0":0.0515,"17.0":0.86517,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0014,"4.2-4.3":0.0154,"4.4":0,"4.4.3-4.4.4":0.05039},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06472,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.89298},S:{"2.5":0.00281},R:{_:"0"},M:{"0":0.04775},Q:{"10.4":0},O:{"0":0.03933},H:{"0":0.18084}}; 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 8ba21854f1b7a59..4ffb7ba6b2cd5ac 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js @@ -1 +1 @@ -module.exports={C:{"34":0.01197,"41":0.00798,"47":0.00798,"52":0.00798,"54":0.02393,"55":0.00798,"60":0.00399,"64":0.00798,"72":0.00399,"76":0.00399,"78":0.01197,"89":0.00399,"91":0.01596,"97":0.01995,"99":0.01995,"100":0.01197,"101":0.04787,"102":1.02916,"103":0.15557,_:"2 3 4 5 6 7 8 9 10 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 56 57 58 59 61 62 63 65 66 67 68 69 70 71 73 74 75 77 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"11":0.03191,"33":0.00798,"38":0.00399,"40":0.02393,"42":0.05585,"43":0.0359,"46":0.15956,"47":0.00399,"48":0.00399,"49":0.02792,"50":0.00399,"53":0.04388,"55":0.01197,"58":0.01197,"63":0.03191,"68":0.00798,"69":0.01197,"70":0.00798,"71":0.00399,"72":0.0718,"74":0.03191,"75":0.00798,"76":0.01197,"77":0.02393,"78":0.01596,"79":0.05984,"80":0.00399,"81":0.14759,"83":0.01596,"84":0.05984,"85":0.00798,"86":0.08776,"87":0.19945,"88":0.01995,"89":0.04388,"90":0.02393,"91":0.0718,"92":0.01197,"93":0.01197,"94":0.01995,"95":0.01995,"96":0.03989,"97":0.13164,"98":0.05585,"99":0.05585,"100":0.11169,"101":0.20344,"102":0.63425,"103":16.12753,"104":0.11967,"105":0.00399,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 44 45 51 52 54 56 57 59 60 61 62 64 65 66 67 73 106"},F:{"32":0.00798,"42":0.01197,"79":0.05186,"82":0.02792,"84":0.00399,"85":0.0359,"86":0.00798,"87":0.14759,"88":0.71802,"89":0.56644,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.10371,"13":0.0359,"14":0.03191,"15":0.01197,"16":0.00798,"17":0.06781,"18":0.06382,"84":0.05585,"85":0.01596,"89":0.01596,"90":0.07978,"92":0.02792,"93":0.01596,"96":0.02393,"97":0.01197,"98":0.01596,"99":0.01197,"100":0.01995,"101":0.04388,"102":0.16355,"103":3.30688,_:"79 80 81 83 86 87 88 91 94 95"},E:{"4":0,"8":0.00798,"12":0.00399,"14":0.01197,"15":0.01995,_:"0 5 6 7 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.00399,"11.1":0.00399,"12.1":0.00798,"13.1":0.06382,"14.1":0.07579,"15.1":0.00399,"15.2-15.3":0.01197,"15.4":0.02792,"15.5":0.20344,"15.6":0.01995},G:{"8":0.00189,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0,"6.0-6.1":0.00095,"7.0-7.1":0.25146,"8.1-8.4":0.00378,"9.0-9.2":0.00567,"9.3":0.30346,"10.0-10.2":0.01418,"10.3":0.53413,"11.0-11.2":0.12479,"11.3-11.4":0.08886,"12.0-12.1":0.04254,"12.2-12.5":2.42768,"13.0-13.1":0.06617,"13.2":0.06617,"13.3":0.1333,"13.4-13.7":0.05956,"14.0-14.4":0.35451,"14.5-14.8":0.58801,"15.0-15.1":0.27321,"15.2-15.3":0.40461,"15.4":0.46322,"15.5":3.02987,"16.0":0.02458},P:{"4":1.07686,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.26665,"8.2":0.07179,"9.2":0.07179,"10.1":0.02051,"11.1-11.2":0.02051,"12.0":0.08205,"13.0":0.08205,"14.0":0.08205,"15.0":0.03077,"16.0":0.16409,"17.0":0.77944},I:{"0":0,"3":0,"4":0.0005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01957,"4.2-4.3":0.04711,"4.4":0,"4.4.3-4.4.4":0.14324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13164,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01804},N:{_:"10 11"},S:{"2.5":0.01202},R:{_:"0"},M:{"0":0.20441},Q:{"10.4":0.01202},O:{"0":0.43286},H:{"0":2.53853},L:{"0":56.94403}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00406,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00406,"42":0,"43":0,"44":0.00406,"45":0,"46":0,"47":0.00406,"48":0,"49":0,"50":0,"51":0,"52":0.04055,"53":0,"54":0.00811,"55":0.00406,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00406,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00406,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00406,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00406,"85":0,"86":0,"87":0,"88":0.01217,"89":0.00406,"90":0,"91":0.00406,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00811,"98":0,"99":0.00811,"100":0.00406,"101":0.02839,"102":0.42172,"103":0.06083,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01622,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00406,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00406,"34":0,"35":0,"36":0,"37":0,"38":0.00406,"39":0,"40":0.01217,"41":0,"42":0.03244,"43":0.01622,"44":0,"45":0,"46":0.06488,"47":0.00406,"48":0,"49":0.01217,"50":0,"51":0.00406,"52":0,"53":0.01622,"54":0,"55":0.00406,"56":0,"57":0,"58":0.00406,"59":0,"60":0,"61":0,"62":0,"63":0.01217,"64":0,"65":0,"66":0,"67":0,"68":0.00406,"69":0.00406,"70":0.00406,"71":0.00406,"72":0.02839,"73":0,"74":0.01217,"75":0.00406,"76":0.00406,"77":0.00811,"78":0.00811,"79":0.02433,"80":0,"81":0.07705,"83":0.00406,"84":0.02433,"85":0.00406,"86":0.0365,"87":0.0811,"88":0.00811,"89":0.01622,"90":0.01217,"91":0.02839,"92":0.00406,"93":0.00406,"94":0.01217,"95":0.00811,"96":0.01622,"97":0.05272,"98":0.02028,"99":0.02433,"100":0.04461,"101":0.0811,"102":0.31224,"103":6.5691,"104":0.04866,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00406,"33":0,"34":0,"35":0.06894,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00406,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00406,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00406,"57":0.00406,"58":0,"60":0.17031,"62":0,"63":0.08921,"64":0.00406,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02028,"80":0,"81":0,"82":0.01217,"83":0,"84":0.00406,"85":0.01622,"86":0.00406,"87":0.06083,"88":0.29196,"89":0.22708,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.04055,"13":0.01217,"14":0.01217,"15":0.00811,"16":0.00406,"17":0.02839,"18":0.02433,"79":0,"80":0,"81":0,"83":0,"84":0.02433,"85":0.00811,"86":0,"87":0,"88":0,"89":0.00811,"90":0.03244,"91":0,"92":0.01217,"93":0.00406,"94":0,"95":0,"96":0.01217,"97":0.00406,"98":0.00811,"99":0.00406,"100":0.00811,"101":0.02028,"102":0.07299,"103":1.34221,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00406,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00406,"15":0.00811,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00406,"12.1":0.00406,"13.1":0.02433,"14.1":0.02839,"15.1":0.00406,"15.2-15.3":0.00406,"15.4":0.01217,"15.5":0.0811,"15.6":0.00811,"16.0":0},G:{"8":0.00271,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00271,"5.0-5.1":0,"6.0-6.1":0.00135,"7.0-7.1":0.36005,"8.1-8.4":0.00541,"9.0-9.2":0.00812,"9.3":0.43449,"10.0-10.2":0.0203,"10.3":0.76476,"11.0-11.2":0.17867,"11.3-11.4":0.12723,"12.0-12.1":0.06091,"12.2-12.5":3.47595,"13.0-13.1":0.09475,"13.2":0.09475,"13.3":0.19085,"13.4-13.7":0.08527,"14.0-14.4":0.50759,"14.5-14.8":0.84192,"15.0-15.1":0.39118,"15.2-15.3":0.57932,"15.4":0.66325,"15.5":4.33817,"16.0":0.03519},P:{"4":1.04597,"5.0-5.4":0.02051,"6.2-6.4":0.04102,"7.2-7.4":0.26662,"8.2":0.07178,"9.2":0.07178,"10.1":0.02051,"11.1-11.2":0.03076,"12.0":0.07178,"13.0":0.07178,"14.0":0.08204,"15.0":0.03076,"16.0":0.16407,"17.0":0.76909,"18.0":0},I:{"0":0,"3":0,"4":0.00101,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03934,"4.2-4.3":0.0947,"4.4":0,"4.4.3-4.4.4":0.28794},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05677,"5.5":0},J:{"7":0,"10":0.01784},N:{"10":0,"11":0},L:{"0":66.44557},S:{"2.5":0.01189},R:{_:"0"},M:{"0":0.20213},Q:{"10.4":0.01189},O:{"0":0.42804},H:{"0":2.51024}}; 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 43257908354d285..cf557aeb7a83d9d 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:{"52":0.0609,"59":0.01142,"66":0.01142,"68":0.00761,"72":0.00381,"73":0.00761,"78":0.01522,"80":0.00761,"84":0.00381,"86":0.03425,"88":0.02664,"89":0.01142,"90":0.01522,"91":0.20172,"94":0.00381,"95":0.00761,"97":0.00761,"98":0.01142,"99":0.03425,"100":0.01522,"101":0.07993,"102":1.17225,"103":0.14463,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 67 69 70 71 74 75 76 77 79 81 82 83 85 87 92 93 96 104 105 3.5 3.6"},D:{"22":0.00761,"34":0.00761,"38":0.01903,"47":0.00381,"49":0.1903,"51":0.00381,"58":0.00761,"63":0.01142,"65":0.00381,"66":0.04948,"67":0.00761,"68":0.00381,"69":0.01522,"70":0.00761,"71":0.00381,"72":0.00381,"73":0.00761,"74":0.00761,"75":0.00761,"76":0.00761,"77":0.01142,"78":0.01522,"79":0.03806,"80":0.01903,"81":0.02284,"83":0.01522,"84":0.01903,"85":0.01522,"86":0.03425,"87":0.04187,"88":0.01142,"89":0.02664,"90":0.02284,"91":0.03425,"92":0.02664,"93":0.01903,"94":0.02284,"95":0.03806,"96":0.07612,"97":0.0609,"98":0.05709,"99":0.11799,"100":0.1294,"101":0.20552,"102":1.04284,"103":26.65342,"104":0.01522,"105":0.00381,_:"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 55 56 57 59 60 61 62 64 106"},F:{"28":0.00761,"36":0.00761,"85":0.01903,"86":0.00761,"87":0.03425,"88":1.37016,"89":0.37299,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00381,"17":0.00761,"18":0.01142,"92":0.00761,"96":0.00381,"99":0.00381,"100":0.01142,"101":0.02664,"102":0.05328,"103":2.158,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98"},E:{"4":0,"13":0.00761,"14":0.02284,"15":0.01142,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.01522,"12.1":0.00761,"13.1":0.04187,"14.1":0.07612,"15.1":0.01522,"15.2-15.3":0.01903,"15.4":0.05328,"15.5":0.34635,"15.6":0.01903},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0106,"6.0-6.1":0.00177,"7.0-7.1":0.00442,"8.1-8.4":0.00044,"9.0-9.2":0,"9.3":0.02076,"10.0-10.2":0.00088,"10.3":0.01943,"11.0-11.2":0.00265,"11.3-11.4":0.05345,"12.0-12.1":0.00398,"12.2-12.5":0.15592,"13.0-13.1":0.00574,"13.2":0.00221,"13.3":0.01237,"13.4-13.7":0.03666,"14.0-14.4":0.08304,"14.5-14.8":0.26988,"15.0-15.1":0.05035,"15.2-15.3":0.13074,"15.4":0.20053,"15.5":3.24078,"16.0":0.0106},P:{"4":0.1235,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.22642,"8.2":0.07179,"9.2":0.01029,"10.1":0.02051,"11.1-11.2":0.05146,"12.0":0.01029,"13.0":0.08234,"14.0":0.08234,"15.0":0.04117,"16.0":0.14409,"17.0":1.93488},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00191,"4.2-4.3":0.00334,"4.4":0,"4.4.3-4.4.4":0.03192},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10657,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.1053},Q:{"10.4":0},O:{"0":0.02478},H:{"0":0.17592},L:{"0":56.00729}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02299,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00383,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00383,"67":0,"68":0.00383,"69":0,"70":0,"71":0,"72":0,"73":0.00383,"74":0,"75":0,"76":0,"77":0,"78":0.00383,"79":0,"80":0.00383,"81":0,"82":0,"83":0,"84":0.00383,"85":0,"86":0.0115,"87":0,"88":0.0115,"89":0.00383,"90":0.0115,"91":0.07664,"92":0,"93":0,"94":0,"95":0.00383,"96":0,"97":0.00383,"98":0.00383,"99":0.0115,"100":0.00766,"101":0.03449,"102":0.47517,"103":0.05748,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00383,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00383,"35":0,"36":0,"37":0,"38":0.00766,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00383,"48":0,"49":0.07281,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00383,"59":0,"60":0,"61":0,"62":0,"63":0.00383,"64":0,"65":0,"66":0.01916,"67":0.00383,"68":0,"69":0.00766,"70":0.00383,"71":0.00383,"72":0,"73":0.00383,"74":0.00383,"75":0.00383,"76":0.00383,"77":0.00383,"78":0.00383,"79":0.01533,"80":0.00766,"81":0.0115,"83":0.00383,"84":0.00766,"85":0.00766,"86":0.01533,"87":0.01533,"88":0.00383,"89":0.0115,"90":0.0115,"91":0.01533,"92":0.0115,"93":0.00766,"94":0.00766,"95":0.01533,"96":0.03066,"97":0.02299,"98":0.02299,"99":0.04598,"100":0.04982,"101":0.08047,"102":0.40236,"103":10.25826,"104":0.00383,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00383,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00383,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01533,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00766,"86":0.00383,"87":0.0115,"88":0.52498,"89":0.14178,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00383,"16":0,"17":0.00383,"18":0.00383,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00383,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00383,"101":0.0115,"102":0.02299,"103":0.83921,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00383,"14":0.00766,"15":0.00383,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00383,"12.1":0.00383,"13.1":0.01533,"14.1":0.03066,"15.1":0.00766,"15.2-15.3":0.00766,"15.4":0.01916,"15.5":0.13412,"15.6":0.00766,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0156,"6.0-6.1":0.0026,"7.0-7.1":0.0065,"8.1-8.4":0.00065,"9.0-9.2":0,"9.3":0.03055,"10.0-10.2":0.0013,"10.3":0.0286,"11.0-11.2":0.0039,"11.3-11.4":0.07865,"12.0-12.1":0.00585,"12.2-12.5":0.22945,"13.0-13.1":0.00845,"13.2":0.00325,"13.3":0.0182,"13.4-13.7":0.05395,"14.0-14.4":0.1222,"14.5-14.8":0.39715,"15.0-15.1":0.0741,"15.2-15.3":0.1924,"15.4":0.2951,"15.5":4.76901,"16.0":0.0156},P:{"4":0.15315,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22462,"8.2":0.01021,"9.2":0.01021,"10.1":0,"11.1-11.2":0.05105,"12.0":0.01021,"13.0":0.07147,"14.0":0.08168,"15.0":0.04084,"16.0":0.14294,"17.0":1.89904,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00524,"4.2-4.3":0.00917,"4.4":0,"4.4.3-4.4.4":0.08775},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04215,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.95188},S:{"2.5":0},R:{_:"0"},M:{"0":0.10486},Q:{"10.4":0},O:{"0":0.02467},H:{"0":0.17518}}; 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 55c197ab3979678..24283c2d87e4a1b 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:{"4":0.01225,"102":0.10205,"103":0.02857,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 3.5 3.6"},D:{"38":0.00816,"47":0.00408,"49":0.00816,"53":0.12654,"58":0.13471,"66":0.00408,"75":0.00816,"77":0.04082,"79":0.32248,"80":0.11838,"84":0.01225,"85":0.00816,"86":0.00816,"87":0.04898,"91":0.01225,"92":0.02041,"93":0.16736,"98":0.02857,"99":0.00816,"100":0.02857,"101":0.1592,"102":1.31032,"103":10.26215,"104":0.03266,_:"4 5 6 7 8 9 10 11 12 13 14 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 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 76 78 81 83 88 89 90 94 95 96 97 105 106"},F:{"87":0.01225,"88":0.10205,"89":0.02857,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"101":0.06531,"102":0.02041,"103":1.0205,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},E:{"4":0,"13":0.04082,"14":0.64904,"15":0.00816,_:"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.03674,"14.1":0.35513,"15.1":0.39187,"15.2-15.3":0.65312,"15.4":2.10223,"15.5":18.39349,"15.6":0.64087,"16.0":0.05307},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03129,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.08344,"9.0-9.2":0,"9.3":0.05737,"10.0-10.2":0,"10.3":0.01043,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.73014,"13.0-13.1":0,"13.2":0,"13.3":0.01043,"13.4-13.7":0.01565,"14.0-14.4":0.11474,"14.5-14.8":0.6832,"15.0-15.1":0.55803,"15.2-15.3":1.07956,"15.4":3.52552,"15.5":44.0168,"16.0":0.16167},P:{"4":0.08359,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.13584,"8.2":0.04044,"9.2":0.04185,"10.1":0.03033,"11.1-11.2":0.05231,"12.0":0.02092,"13.0":0.10462,"14.0":0.0209,"15.0":0.05231,"16.0":0.0418,"17.0":0.38661},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00845,"4.4":0,"4.4.3-4.4.4":0.02114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.01775},Q:{"10.4":0},O:{"0":0.01184},H:{"0":0.02241},L:{"0":9.48668}}; +module.exports={C:{"2":0,"3":0,"4":0.00421,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.05046,"103":0.01262,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00421,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00421,"48":0,"49":0.00421,"50":0,"51":0,"52":0,"53":0.05467,"54":0,"55":0,"56":0,"57":0,"58":0.05467,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00421,"76":0,"77":0.01682,"78":0,"79":0.13456,"80":0.05046,"81":0,"83":0,"84":0.00421,"85":0.00421,"86":0.00421,"87":0.02103,"88":0,"89":0.00841,"90":0,"91":0.00421,"92":0.00841,"93":0.07149,"94":0,"95":0,"96":0,"97":0,"98":0.01262,"99":0.00421,"100":0.01262,"101":0.06728,"102":0.55506,"103":4.31433,"104":0.01262,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00421,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00421,"88":0.04205,"89":0.01262,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00421,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02523,"102":0.01262,"103":0.42891,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01682,"14":0.27333,"15":0.00421,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01682,"14.1":0.14718,"15.1":0.164,"15.2-15.3":0.27333,"15.4":0.88305,"15.5":7.733,"15.6":0.26912,"16.0":0.02103},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04373,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.11661,"9.0-9.2":0,"9.3":0.08017,"10.0-10.2":0,"10.3":0.01458,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.02037,"13.0-13.1":0,"13.2":0,"13.3":0.01458,"13.4-13.7":0.02187,"14.0-14.4":0.16034,"14.5-14.8":0.95478,"15.0-15.1":0.77986,"15.2-15.3":1.50869,"15.4":4.92693,"15.5":61.5138,"16.0":0.22594},P:{"4":0.08185,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12278,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.01023,"14.0":0.02046,"15.0":0,"16.0":0.05116,"17.0":0.36834,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05754,"4.4":0,"4.4.3-4.4.4":0.14384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":11.10373},S:{"2.5":0},R:{_:"0"},M:{"0":0.01739},Q:{"10.4":0},O:{"0":0.01159},H:{"0":0.02195}}; 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 7b55a9a8e84f295..d6a80ac0c8d0510 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.00922,"52":0.0507,"56":0.00922,"60":0.08296,"61":0.00922,"62":0.00461,"68":0.01383,"72":0.01844,"78":0.07835,"80":0.00922,"81":0.00461,"82":0.00461,"83":0.00461,"84":0.00461,"85":0.00922,"88":0.01383,"89":0.00922,"90":0.00922,"91":0.35489,"94":0.01383,"95":0.01844,"96":0.01383,"97":0.01383,"98":0.02305,"99":0.04609,"100":0.06453,"101":0.40559,"102":5.83499,"103":0.57152,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 66 67 69 70 71 73 74 75 76 77 79 86 87 92 93 104 105 3.5 3.6"},D:{"34":0.00461,"38":0.01383,"47":0.01383,"49":0.02765,"53":0.00922,"60":0.00461,"63":0.00922,"65":0.00922,"67":0.00922,"69":0.00922,"70":0.00922,"75":0.01844,"76":0.03226,"77":0.00922,"79":0.36411,"80":0.11062,"81":0.00922,"83":0.01844,"84":0.01844,"85":0.02305,"86":0.02305,"87":0.07835,"88":0.01383,"89":0.06453,"90":0.01383,"91":0.02305,"92":0.03226,"93":0.01383,"94":0.02765,"95":0.01844,"96":0.13827,"97":0.14749,"98":0.12905,"99":0.08296,"100":0.11062,"101":0.21201,"102":1.12921,"103":18.25625,"104":0.01844,"105":0.01383,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 61 62 64 66 68 71 72 73 74 78 106"},F:{"46":0.00922,"79":0.04609,"82":0.01383,"84":0.00922,"85":0.72361,"86":0.01383,"87":0.11062,"88":1.47949,"89":0.28115,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01844,"85":0.00461,"90":0.00461,"92":0.00922,"94":0.00461,"95":0.00922,"96":0.00922,"97":0.01383,"98":0.01383,"99":0.02305,"100":0.02305,"101":0.13827,"102":0.37794,"103":7.0656,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 91 93"},E:{"4":0,"8":0.00461,"12":0.00922,"13":0.04148,"14":0.19358,"15":0.06914,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00922,"11.1":0.03687,"12.1":0.05531,"13.1":0.29959,"14.1":0.54847,"15.1":0.13366,"15.2-15.3":0.14749,"15.4":0.46551,"15.5":2.69627,"15.6":0.12905,"16.0":0.01844},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00196,"6.0-6.1":0,"7.0-7.1":0.00392,"8.1-8.4":0.00196,"9.0-9.2":0,"9.3":0.07052,"10.0-10.2":0,"10.3":0.06464,"11.0-11.2":0.01959,"11.3-11.4":0.01567,"12.0-12.1":0.03134,"12.2-12.5":0.34866,"13.0-13.1":0.01175,"13.2":0.02155,"13.3":0.06072,"13.4-13.7":0.10773,"14.0-14.4":0.45639,"14.5-14.8":1.27124,"15.0-15.1":0.3232,"15.2-15.3":0.62289,"15.4":1.30453,"15.5":14.33226,"16.0":0.0999},P:{"4":0.19766,"5.0-5.4":0.0104,"6.2-6.4":0.04102,"7.2-7.4":0.16298,"8.2":0.07179,"9.2":0.05093,"10.1":0.02051,"11.1-11.2":0.03121,"12.0":0.04161,"13.0":0.08322,"14.0":0.08322,"15.0":0.07282,"16.0":0.19766,"17.0":4.46294},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0283,"4.2-4.3":0.00087,"4.4":0,"4.4.3-4.4.4":0.01935},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00461,"11":0.18897,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.77091},Q:{"10.4":0},O:{"0":0.06469},H:{"0":0.35727},L:{"0":28.84953}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00472,"49":0,"50":0,"51":0,"52":0.02362,"53":0,"54":0,"55":0,"56":0.00472,"57":0,"58":0,"59":0,"60":0.03778,"61":0.00472,"62":0.00472,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00945,"69":0,"70":0,"71":0,"72":0.00945,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03778,"79":0,"80":0.00472,"81":0.00472,"82":0.00472,"83":0.00472,"84":0.00472,"85":0.00472,"86":0,"87":0,"88":0.00472,"89":0.00472,"90":0.00472,"91":0.16531,"92":0,"93":0.00472,"94":0.00945,"95":0.00945,"96":0.00945,"97":0.00472,"98":0.01417,"99":0.02834,"100":0.03306,"101":0.21254,"102":2.92826,"103":0.36839,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00472,"35":0,"36":0,"37":0,"38":0.00472,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00472,"48":0,"49":0.01417,"50":0,"51":0,"52":0,"53":0.00472,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00472,"61":0,"62":0,"63":0.00472,"64":0,"65":0.00472,"66":0,"67":0.00472,"68":0,"69":0.00472,"70":0.00472,"71":0,"72":0,"73":0,"74":0,"75":0.00945,"76":0.01417,"77":0.00472,"78":0,"79":0.17003,"80":0.05195,"81":0.02362,"83":0.00945,"84":0.00945,"85":0.00945,"86":0.00945,"87":0.03778,"88":0.00945,"89":0.03306,"90":0.00472,"91":0.00945,"92":0.02362,"93":0.00945,"94":0.01417,"95":0.00945,"96":0.06612,"97":0.07085,"98":0.0614,"99":0.03778,"100":0.05195,"101":0.09918,"102":0.52898,"103":8.6856,"104":0.00945,"105":0.00472,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00472,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01417,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02362,"80":0,"81":0,"82":0.00472,"83":0,"84":0.00472,"85":0.34006,"86":0.00472,"87":0.05195,"88":0.68011,"89":0.15586,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00472,"16":0,"17":0,"18":0.00945,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00472,"86":0,"87":0,"88":0.00472,"89":0,"90":0.00472,"91":0,"92":0.00472,"93":0,"94":0.00472,"95":0.00472,"96":0.00472,"97":0.00472,"98":0.00472,"99":0.00945,"100":0.00945,"101":0.06612,"102":0.18892,"103":3.37222,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00472,"13":0.01889,"14":0.08974,"15":0.03306,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00472,"11.1":0.01889,"12.1":0.02362,"13.1":0.14169,"14.1":0.25977,"15.1":0.0614,"15.2-15.3":0.06612,"15.4":0.21726,"15.5":1.26104,"15.6":0.07085,"16.0":0.00945},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0029,"6.0-6.1":0,"7.0-7.1":0.0058,"8.1-8.4":0.0029,"9.0-9.2":0,"9.3":0.10437,"10.0-10.2":0,"10.3":0.09567,"11.0-11.2":0.02899,"11.3-11.4":0.02319,"12.0-12.1":0.04639,"12.2-12.5":0.51606,"13.0-13.1":0.0174,"13.2":0.03189,"13.3":0.08988,"13.4-13.7":0.15946,"14.0-14.4":0.67552,"14.5-14.8":1.88159,"15.0-15.1":0.47837,"15.2-15.3":0.92195,"15.4":1.93088,"15.5":21.21358,"16.0":0.14786},P:{"4":0.2072,"5.0-5.4":0.01036,"6.2-6.4":0,"7.2-7.4":0.01036,"8.2":0,"9.2":0,"10.1":0.01036,"11.1-11.2":0.04144,"12.0":0.04144,"13.0":0.08288,"14.0":0.07252,"15.0":0.06216,"16.0":0.19684,"17.0":4.33038,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.11587,"4.2-4.3":0.00355,"4.4":0,"4.4.3-4.4.4":0.07922},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00472,"9":0,"10":0,"11":0.08974,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.32643},S:{"2.5":0},R:{_:"0"},M:{"0":0.75461},Q:{"10.4":0},O:{"0":0.06332},H:{"0":0.35471}}; 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 be9dadbbfcab5a7..235ab497771ecb2 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:{"11":0.00581,"52":0.02906,"54":0.01743,"66":0.00581,"78":0.0523,"79":0.01162,"80":0.01162,"81":0.01162,"82":0.00581,"83":0.00581,"84":0.00581,"87":0.01162,"88":0.00581,"89":0.00581,"91":0.05811,"93":0.01162,"94":0.1046,"95":0.00581,"96":0.00581,"97":0.01162,"98":0.00581,"99":0.01743,"100":0.02906,"101":0.1569,"102":1.92925,"103":0.11622,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 85 86 90 92 104 105 3.5 3.6"},D:{"25":0.01162,"26":0.01162,"34":0.02906,"38":0.07554,"48":0.00581,"49":0.04068,"53":0.00581,"56":0.00581,"59":0.03487,"60":0.05811,"63":0.01162,"65":0.01743,"66":0.01162,"67":0.01162,"68":0.01162,"69":0.01743,"70":0.00581,"72":0.00581,"73":0.01162,"74":0.02324,"75":0.01162,"76":0.01162,"77":0.01162,"78":0.01743,"79":0.1569,"80":0.05811,"81":0.04649,"83":0.04649,"84":0.06392,"85":0.08717,"86":0.1046,"87":0.13946,"88":0.02324,"89":0.01743,"90":0.01743,"91":0.05811,"92":0.04649,"93":0.04068,"94":0.05811,"95":0.0523,"96":0.19176,"97":0.17433,"98":0.13946,"99":0.2092,"100":0.30798,"101":0.52299,"102":3.04496,"103":30.25207,"104":0.02906,"105":0.01743,_:"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 50 51 52 54 55 57 58 61 62 64 71 106"},F:{"46":0.02906,"86":0.01162,"87":0.04068,"88":0.52299,"89":0.11041,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00581,"16":0.00581,"18":0.02324,"85":0.01743,"86":0.01162,"88":0.00581,"90":0.00581,"92":0.01743,"94":0.00581,"95":0.01743,"96":0.03487,"98":0.01162,"99":0.03487,"100":0.02324,"101":0.13946,"102":0.40677,"103":7.69376,_:"12 13 14 17 79 80 81 83 84 87 89 91 93 97"},E:{"4":0,"12":0.01162,"13":0.08135,"14":0.32542,"15":0.09879,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01162,"10.1":0.01743,"11.1":0.04649,"12.1":0.09879,"13.1":0.41258,"14.1":1.03436,"15.1":0.16271,"15.2-15.3":0.15109,"15.4":0.63921,"15.5":4.67786,"15.6":0.09298,"16.0":0.01162},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01296,"6.0-6.1":0.00864,"7.0-7.1":0.01296,"8.1-8.4":0.01728,"9.0-9.2":0.01296,"9.3":0.18571,"10.0-10.2":0.01296,"10.3":0.19435,"11.0-11.2":0.04535,"11.3-11.4":0.06478,"12.0-12.1":0.05183,"12.2-12.5":0.90698,"13.0-13.1":0.03023,"13.2":0.01296,"13.3":0.0799,"13.4-13.7":0.19651,"14.0-14.4":0.57226,"14.5-14.8":1.55914,"15.0-15.1":0.38007,"15.2-15.3":0.63488,"15.4":1.08621,"15.5":15.23506,"16.0":0.05831},P:{"4":0.24941,"5.0-5.4":0.01084,"6.2-6.4":0.04102,"7.2-7.4":0.16298,"8.2":0.07179,"9.2":0.05093,"10.1":0.02051,"11.1-11.2":0.02169,"12.0":0.02169,"13.0":0.04338,"14.0":0.06506,"15.0":0.04338,"16.0":0.14097,"17.0":2.64588},I:{"0":0,"3":0,"4":0.00196,"2.1":0,"2.2":0.00098,"2.3":0.00098,"4.1":0.00294,"4.2-4.3":0.00686,"4.4":0,"4.4.3-4.4.4":0.03235},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01937,"9":0.03874,"11":0.2615,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.37701},Q:{"10.4":0.00838},O:{"0":0.06284},H:{"0":0.13087},L:{"0":17.17793}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00604,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01812,"53":0,"54":0.01208,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00604,"67":0,"68":0.00604,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03021,"79":0.00604,"80":0.00604,"81":0.00604,"82":0.00604,"83":0.00604,"84":0.00604,"85":0.00604,"86":0,"87":0.00604,"88":0.00604,"89":0.00604,"90":0,"91":0.03625,"92":0,"93":0.00604,"94":0.06645,"95":0.00604,"96":0.00604,"97":0.00604,"98":0.00604,"99":0.01208,"100":0.02416,"101":0.1027,"102":1.24445,"103":0.14498,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00604,"26":0.00604,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01812,"35":0,"36":0,"37":0,"38":0.04833,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00604,"49":0.02416,"50":0,"51":0,"52":0,"53":0.00604,"54":0,"55":0,"56":0.00604,"57":0,"58":0,"59":0.02416,"60":0.03625,"61":0,"62":0,"63":0.00604,"64":0,"65":0.01208,"66":0.00604,"67":0.00604,"68":0.00604,"69":0.01208,"70":0.00604,"71":0.00604,"72":0.00604,"73":0.00604,"74":0.01208,"75":0.00604,"76":0.00604,"77":0.00604,"78":0.01208,"79":0.09666,"80":0.03625,"81":0.03021,"83":0.03021,"84":0.04229,"85":0.05437,"86":0.06645,"87":0.08457,"88":0.01208,"89":0.01208,"90":0.01208,"91":0.03625,"92":0.03021,"93":0.02416,"94":0.03625,"95":0.03021,"96":0.11478,"97":0.1027,"98":0.08457,"99":0.12082,"100":0.18123,"101":0.30809,"102":1.76397,"103":18.35256,"104":0.01812,"105":0.01208,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01812,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00604,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00604,"87":0.02416,"88":0.29601,"89":0.08457,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00604,"16":0.00604,"17":0,"18":0.01208,"79":0,"80":0,"81":0,"83":0,"84":0.00604,"85":0.01208,"86":0.00604,"87":0,"88":0.00604,"89":0,"90":0.00604,"91":0,"92":0.00604,"93":0,"94":0.00604,"95":0.01208,"96":0.01812,"97":0.00604,"98":0.00604,"99":0.02416,"100":0.01208,"101":0.08457,"102":0.25976,"103":4.68782,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00604,"13":0.04833,"14":0.19935,"15":0.06041,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00604,"10.1":0.01208,"11.1":0.03021,"12.1":0.06041,"13.1":0.24768,"14.1":0.62222,"15.1":0.09666,"15.2-15.3":0.09062,"15.4":0.38058,"15.5":2.80302,"15.6":0.09062,"16.0":0.00604},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02124,"6.0-6.1":0.01416,"7.0-7.1":0.02124,"8.1-8.4":0.02832,"9.0-9.2":0.02124,"9.3":0.30444,"10.0-10.2":0.02124,"10.3":0.3186,"11.0-11.2":0.07434,"11.3-11.4":0.1062,"12.0-12.1":0.08496,"12.2-12.5":1.4868,"13.0-13.1":0.04956,"13.2":0.02124,"13.3":0.13098,"13.4-13.7":0.32214,"14.0-14.4":0.9381,"14.5-14.8":2.55587,"15.0-15.1":0.62304,"15.2-15.3":1.04076,"15.4":1.78062,"15.5":24.97465,"16.0":0.09558},P:{"4":0.23156,"5.0-5.4":0.02105,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01053,"10.1":0,"11.1-11.2":0.03158,"12.0":0.02105,"13.0":0.05263,"14.0":0.05263,"15.0":0.0421,"16.0":0.12631,"17.0":2.46296,"18.0":0},I:{"0":0,"3":0,"4":0.00613,"2.1":0,"2.2":0.00307,"2.3":0.00307,"4.1":0.0092,"4.2-4.3":0.02147,"4.4":0,"4.4.3-4.4.4":0.10122},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01017,"9":0.02035,"10":0,"11":0.16279,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.0198},L:{"0":24.13999},S:{"2.5":0},R:{_:"0"},M:{"0":0.35631},Q:{"10.4":0.00792},O:{"0":0.06334},H:{"0":0.12369}}; 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 c55d11ac379d2b0..124fa3839e148db 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:{"48":0.00325,"78":0.15252,"90":0.00649,"91":0.01623,"99":0.00974,"100":0.00974,"101":0.0357,"102":0.68794,"103":0.12007,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"47":0.00325,"49":0.03894,"53":0.00325,"56":0.00325,"63":0.01947,"65":0.00649,"70":0.02272,"72":0.00325,"73":0.00325,"76":0.00325,"79":0.01947,"80":0.00649,"83":0.01298,"84":0.00325,"85":0.01623,"86":0.00974,"87":0.02921,"89":0.00325,"91":0.01298,"92":0.01298,"93":0.11682,"94":0.00974,"95":0.00649,"96":0.08113,"97":0.01298,"98":0.04543,"99":0.09086,"100":0.04868,"101":0.30179,"102":1.27853,"103":16.04977,"104":0.01947,"105":0.01623,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 60 61 62 64 66 67 68 69 71 74 75 77 78 81 88 90 106"},F:{"88":0.32775,"89":0.11033,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00325,"18":0.00974,"84":0.06166,"85":0.02921,"92":0.00974,"96":0.00974,"97":0.00325,"99":0.01298,"100":0.01298,"101":0.02272,"102":0.13629,"103":5.53922,_:"13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 98"},E:{"4":0,"11":0.00649,"13":0.01623,"14":0.11682,"15":0.05517,_:"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.07464,"12.1":0.03894,"13.1":0.3245,"14.1":0.67496,"15.1":0.08113,"15.2-15.3":0.34397,"15.4":0.49649,"15.5":3.18335,"15.6":0.08437,"16.0":0.0357},G:{"8":0,"3.2":0,"4.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.01483,"10.0-10.2":0.0089,"10.3":0.05042,"11.0-11.2":0.00297,"11.3-11.4":0.02669,"12.0-12.1":0.00297,"12.2-12.5":0.3648,"13.0-13.1":0.00593,"13.2":0,"13.3":0.0089,"13.4-13.7":0.09194,"14.0-14.4":0.51903,"14.5-14.8":2.32525,"15.0-15.1":0.27286,"15.2-15.3":0.69698,"15.4":1.37617,"15.5":23.19317,"16.0":0.07118},P:{"4":0.21391,"5.0-5.4":0.22241,"6.2-6.4":0.04102,"7.2-7.4":0.16298,"8.2":0.07179,"9.2":0.05093,"10.1":0.02051,"11.1-11.2":0.11205,"12.0":0.01029,"13.0":0.06112,"14.0":0.11205,"15.0":0.0713,"16.0":0.20373,"17.0":7.31382},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.00676},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03894,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.30398},Q:{"10.4":0},O:{"0":0.02027},H:{"0":0.06395},L:{"0":30.27729}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04997,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00333,"91":0.00666,"92":0,"93":0,"94":0,"95":0,"96":0.00666,"97":0,"98":0,"99":0.00333,"100":0.00666,"101":0.01332,"102":0.2898,"103":0.04997,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01332,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00666,"64":0,"65":0.00333,"66":0,"67":0,"68":0,"69":0,"70":0.00666,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00666,"80":0.00333,"81":0.00666,"83":0.00333,"84":0,"85":0.00333,"86":0.00333,"87":0.00999,"88":0,"89":0.00333,"90":0,"91":0.00333,"92":0.00333,"93":0.03997,"94":0.00333,"95":0.00333,"96":0.02665,"97":0.00333,"98":0.01666,"99":0.02998,"100":0.01666,"101":0.09993,"102":0.42637,"103":5.34959,"104":0.00666,"105":0.00666,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00333,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00333,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.10992,"89":0.03664,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00333,"79":0,"80":0,"81":0,"83":0,"84":0.01999,"85":0.00999,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00333,"93":0,"94":0,"95":0.00333,"96":0.00333,"97":0,"98":0,"99":0.00333,"100":0.00666,"101":0.00666,"102":0.06662,"103":1.87535,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00333,"12":0,"13":0.00666,"14":0.03997,"15":0.01999,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02665,"12.1":0.01332,"13.1":0.10992,"14.1":0.22318,"15.1":0.02665,"15.2-15.3":0.11325,"15.4":0.16655,"15.5":1.05926,"15.6":0.02998,"16.0":0.01332},G:{"8":0,"3.2":0,"4.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.01989,"10.0-10.2":0.01193,"10.3":0.06762,"11.0-11.2":0.00398,"11.3-11.4":0.0358,"12.0-12.1":0.00398,"12.2-12.5":0.48928,"13.0-13.1":0.00796,"13.2":0,"13.3":0.01193,"13.4-13.7":0.12331,"14.0-14.4":0.69613,"14.5-14.8":3.11866,"15.0-15.1":0.36597,"15.2-15.3":0.9348,"15.4":1.84574,"15.5":31.10705,"16.0":0.09547},P:{"4":0.21596,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15426,"8.2":0,"9.2":0.05142,"10.1":0.01028,"11.1-11.2":0.11312,"12.0":0.02057,"13.0":0.07199,"14.0":0.11312,"15.0":0.07199,"16.0":0.20568,"17.0":7.16782,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01332,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.66691},S:{"2.5":0},R:{_:"0"},M:{"0":0.30011},Q:{"10.4":0},O:{"0":0.02001},H:{"0":0.06314}}; 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 4b4934e734b58f1..f73e3c8a598711d 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.00494,"52":0.28675,"78":0.02472,"91":0.05438,"99":0.01483,"100":0.09888,"101":0.15821,"102":3.92554,"103":0.39058,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"49":0.01483,"58":0.02966,"75":0.00989,"76":0.18787,"84":0.03955,"87":0.02472,"88":0.06922,"92":0.00494,"95":0.00989,"96":0.00494,"98":0.0445,"99":0.01978,"100":0.38069,"101":0.11866,"102":1.11734,"103":29.89637,"104":0.00989,"105":0.00494,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 77 78 79 80 81 83 85 86 89 90 91 93 94 97 106"},F:{"84":0.00494,"87":0.00494,"88":0.71194,"89":0.15326,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00494,"86":0.00494,"99":0.69216,"101":0.07416,"102":0.09888,"103":4.60286,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 100"},E:{"4":0,"12":0.05933,"13":0.07416,"14":0.46968,"15":0.10382,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 16.0","9.1":0.02472,"11.1":0.00989,"12.1":0.06427,"13.1":0.51912,"14.1":0.96408,"15.1":0.09394,"15.2-15.3":0.02472,"15.4":0.47462,"15.5":1.74523,"15.6":0.0445},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00258,"8.1-8.4":0,"9.0-9.2":0.00258,"9.3":0.02837,"10.0-10.2":0.00516,"10.3":0.33016,"11.0-11.2":0,"11.3-11.4":0.00645,"12.0-12.1":0.27728,"12.2-12.5":1.84683,"13.0-13.1":0.10962,"13.2":0.00129,"13.3":0.03095,"13.4-13.7":0.06964,"14.0-14.4":0.44623,"14.5-14.8":0.66935,"15.0-15.1":0.24117,"15.2-15.3":0.25794,"15.4":0.75447,"15.5":7.73296,"16.0":0.00645},P:{"4":0.02234,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.03351,"8.2":0.04044,"9.2":0.3235,"10.1":0.03033,"11.1-11.2":0.01117,"12.0":0.04044,"13.0":0.13142,"14.0":0.01117,"15.0":0.14153,"16.0":0.1117,"17.0":4.65786},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.09605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11371,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":4.06422},Q:{"10.4":0},O:{"0":0},H:{"0":0.07657},L:{"0":29.4745}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00544,"49":0,"50":0,"51":0,"52":0.15773,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01632,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0272,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01088,"100":0.05983,"101":0.33178,"102":3.57342,"103":0.33178,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01088,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01632,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00544,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00544,"76":0.10334,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0.02176,"85":0,"86":0.01088,"87":0.01632,"88":0.03807,"89":0,"90":0,"91":0,"92":0.00544,"93":0,"94":0,"95":0.01088,"96":0.00544,"97":0,"98":0.0272,"99":0.01088,"100":0.21212,"101":0.06527,"102":0.60917,"103":16.42034,"104":0.00544,"105":0.00544,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00544,"70":0.01088,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00544,"85":0,"86":0,"87":0.00544,"88":0.38617,"89":0.08159,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00544,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00544,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.37529,"100":0.01088,"101":0.04351,"102":0.05983,"103":2.51826,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.03263,"13":0.04351,"14":0.25563,"15":0.05983,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01088,"10.1":0,"11.1":0.00544,"12.1":0.03807,"13.1":0.28283,"14.1":0.52214,"15.1":0.04895,"15.2-15.3":0.01088,"15.4":0.26107,"15.5":0.95183,"15.6":0.0272,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00458,"8.1-8.4":0,"9.0-9.2":0.00458,"9.3":0.05035,"10.0-10.2":0.00915,"10.3":0.5859,"11.0-11.2":0,"11.3-11.4":0.01144,"12.0-12.1":0.49206,"12.2-12.5":3.27736,"13.0-13.1":0.19454,"13.2":0.00229,"13.3":0.05493,"13.4-13.7":0.12359,"14.0-14.4":0.79188,"14.5-14.8":1.18781,"15.0-15.1":0.42798,"15.2-15.3":0.45773,"15.4":1.33887,"15.5":13.72281,"16.0":0.01144},P:{"4":0.03297,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02198,"8.2":0,"9.2":0,"10.1":0.01099,"11.1-11.2":0.01099,"12.0":0.01099,"13.0":0.01099,"14.0":0.01099,"15.0":0,"16.0":0.09891,"17.0":4.16519,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.18456},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05983,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.20479},S:{"2.5":0},R:{_:"0"},M:{"0":3.66704},Q:{"10.4":0},O:{"0":0},H:{"0":0.06909}}; 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 62952e291683487..de38eefbba73a94 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:{"68":0.00714,"78":0.16784,"79":0.00357,"84":0.00357,"88":0.00357,"91":0.00714,"99":0.01071,"100":0.00714,"101":0.01428,"102":0.29996,"103":0.01786,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 80 81 82 83 85 86 87 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"38":0.01428,"49":0.01071,"50":0.01071,"53":0.06785,"55":0.00714,"56":0.00714,"65":0.00714,"66":0.00357,"67":0.00714,"68":0.025,"69":0.00714,"70":0.00357,"72":0.00357,"74":0.01428,"77":0.01071,"78":0.02143,"79":1.08201,"80":0.01071,"81":0.00357,"83":0.01786,"84":0.01071,"85":0.01786,"86":0.02857,"87":0.08928,"88":0.00714,"89":0.025,"90":0.01071,"91":0.03571,"92":0.04642,"93":0.01428,"94":0.01428,"95":0.01428,"96":0.03928,"97":0.04999,"98":0.08213,"99":0.03571,"100":0.16784,"101":0.14641,"102":1.28913,"103":23.28292,"104":0.03571,_:"4 5 6 7 8 9 10 11 12 13 14 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 58 59 60 61 62 63 64 71 73 75 76 105 106"},F:{"25":0.00714,"28":0.1107,"36":0.00357,"40":0.00357,"46":0.025,"62":0.03214,"73":0.00357,"77":0.00357,"78":0.00357,"79":0.01071,"80":0.00714,"81":0.00357,"82":0.03571,"84":0.02857,"85":0.12856,"86":0.01071,"87":0.09999,"88":2.24616,"89":1.24985,_:"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 74 75 76 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01428,"84":0.00714,"99":0.00357,"101":0.00714,"102":0.11784,"103":1.13201,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100"},E:{"4":0,"14":0.03928,"15":0.00714,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.0","5.1":0.01071,"12.1":0.01071,"13.1":0.04285,"14.1":0.10356,"15.1":0.04999,"15.2-15.3":0.04999,"15.4":0.09285,"15.5":0.37853,"15.6":0.01786},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01474,"6.0-6.1":0,"7.0-7.1":0.01908,"8.1-8.4":0,"9.0-9.2":0.00173,"9.3":0.00607,"10.0-10.2":0.00173,"10.3":0.08931,"11.0-11.2":0.01387,"11.3-11.4":0.03642,"12.0-12.1":0.00607,"12.2-12.5":0.42922,"13.0-13.1":0.0052,"13.2":0.00173,"13.3":0.03642,"13.4-13.7":0.08931,"14.0-14.4":0.25493,"14.5-14.8":0.51507,"15.0-15.1":0.20898,"15.2-15.3":0.25407,"15.4":0.79428,"15.5":5.57645,"16.0":0.19077},P:{"4":0.66045,"5.0-5.4":0.0104,"6.2-6.4":0.04102,"7.2-7.4":0.09145,"8.2":0.07179,"9.2":0.01016,"10.1":0.02051,"11.1-11.2":0.07113,"12.0":0.03048,"13.0":0.14225,"14.0":0.12193,"15.0":0.08129,"16.0":0.22354,"17.0":4.01353},I:{"0":0,"3":0,"4":0.00113,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00076,"4.2-4.3":0.00189,"4.4":0,"4.4.3-4.4.4":0.01551},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01786,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.09645},Q:{"10.4":0},O:{"0":0.50797},H:{"0":0.57831},L:{"0":49.95861}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00361,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.06132,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00361,"90":0,"91":0.00361,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00361,"100":0.00361,"101":0.00721,"102":0.12985,"103":0.01082,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00361,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00361,"50":0.00361,"51":0,"52":0,"53":0.02164,"54":0,"55":0.00361,"56":0.00361,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00361,"66":0.00361,"67":0.00361,"68":0.01082,"69":0.00361,"70":0.00361,"71":0,"72":0,"73":0,"74":0.00721,"75":0,"76":0,"77":0.00361,"78":0.00721,"79":0.39316,"80":0.00361,"81":0.00721,"83":0.00721,"84":0.00361,"85":0.00721,"86":0.01082,"87":0.03607,"88":0.00361,"89":0.00721,"90":0.00361,"91":0.01082,"92":0.02525,"93":0.00721,"94":0.00361,"95":0.01082,"96":0.01443,"97":0.01804,"98":0.02886,"99":0.01082,"100":0.05771,"101":0.05411,"102":0.4653,"103":8.44759,"104":0.01082,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00361,"26":0,"27":0,"28":0.03968,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01082,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.01082,"63":0.03968,"64":0.00721,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00361,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00361,"80":0.00361,"81":0,"82":0.01443,"83":0,"84":0.01082,"85":0.04689,"86":0.00361,"87":0.03607,"88":0.78633,"89":0.47973,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00361,"79":0,"80":0,"81":0,"83":0,"84":0.00361,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00361,"102":0.04328,"103":0.40759,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01443,"15":0.00361,_:"0","3.1":0,"3.2":0,"5.1":0.00361,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00361,"13.1":0.01443,"14.1":0.03607,"15.1":0.01804,"15.2-15.3":0.01804,"15.4":0.03246,"15.5":0.13707,"15.6":0.00721,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02157,"6.0-6.1":0,"7.0-7.1":0.02792,"8.1-8.4":0,"9.0-9.2":0.00254,"9.3":0.00888,"10.0-10.2":0.00254,"10.3":0.13072,"11.0-11.2":0.02031,"11.3-11.4":0.0533,"12.0-12.1":0.00888,"12.2-12.5":0.62819,"13.0-13.1":0.00761,"13.2":0.00254,"13.3":0.0533,"13.4-13.7":0.13072,"14.0-14.4":0.37311,"14.5-14.8":0.75383,"15.0-15.1":0.30585,"15.2-15.3":0.37184,"15.4":1.16248,"15.5":8.16145,"16.0":0.2792},P:{"4":0.66174,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09162,"8.2":0,"9.2":0.01018,"10.1":0,"11.1-11.2":0.08144,"12.0":0.03054,"13.0":0.14253,"14.0":0.11199,"15.0":0.08144,"16.0":0.22397,"17.0":3.95005,"18.0":0.01018},I:{"0":0,"3":0,"4":0.00283,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00188,"4.2-4.3":0.00471,"4.4":0,"4.4.3-4.4.4":0.03862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00721,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.69823},S:{"2.5":0},R:{_:"0"},M:{"0":0.0959},Q:{"10.4":0},O:{"0":0.51144},H:{"0":0.58104}}; 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 91ce9cf45de6926..a756eacec8caa04 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:{"29":0.0055,"34":0.00275,"45":0.528,"52":0.473,"56":0.00275,"68":0.0055,"78":0.00825,"85":0.00275,"88":0.0055,"89":0.00275,"91":0.0165,"94":0.00275,"95":0.0275,"96":0.00275,"97":0.022,"98":0.0055,"99":0.0495,"100":0.01925,"101":0.08525,"102":1.6005,"103":0.20625,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 90 92 93 104 105 3.5 3.6"},D:{"26":0.011,"34":0.0055,"38":0.00825,"43":0.00825,"47":0.00275,"49":0.09075,"53":0.01375,"55":0.00275,"63":0.0055,"65":0.00275,"68":0.0165,"70":0.0055,"71":0.0055,"72":0.00275,"73":0.0055,"74":0.00275,"75":0.00275,"76":0.011,"77":0.0165,"78":0.00825,"79":0.11825,"80":0.0055,"81":0.01375,"83":0.0165,"84":0.022,"85":0.011,"86":0.01375,"87":0.033,"88":0.011,"89":0.033,"90":0.00825,"91":0.022,"92":0.02475,"93":0.02475,"94":0.0275,"95":0.01925,"96":0.05225,"97":0.055,"98":0.033,"99":0.0605,"100":0.0825,"101":0.121,"102":0.8745,"103":17.5285,"104":0.01375,"105":0.00825,_:"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 44 45 46 48 50 51 52 54 56 57 58 59 60 61 62 64 66 67 69 106"},F:{"28":0.02475,"36":0.00825,"40":0.00825,"46":0.0055,"85":0.044,"86":0.0055,"87":0.0495,"88":0.8635,"89":0.33275,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.0055,"18":0.00275,"85":0.0275,"90":0.0055,"92":0.00825,"100":0.0055,"101":0.01375,"102":0.04675,"103":1.4025,_:"12 13 15 16 17 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 99"},E:{"4":0,"13":0.00825,"14":0.03025,"15":0.01925,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00275,"12.1":0.00825,"13.1":0.04675,"14.1":0.0935,"15.1":0.022,"15.2-15.3":0.0165,"15.4":0.05775,"15.5":0.2915,"15.6":0.011},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00889,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06003,"10.0-10.2":0.00148,"10.3":0.09782,"11.0-11.2":0.01037,"11.3-11.4":0.00815,"12.0-12.1":0.00815,"12.2-12.5":0.39869,"13.0-13.1":0.00741,"13.2":0.00148,"13.3":0.02446,"13.4-13.7":0.05854,"14.0-14.4":0.18008,"14.5-14.8":0.54172,"15.0-15.1":0.09412,"15.2-15.3":0.20305,"15.4":0.43723,"15.5":5.08371,"16.0":0.03187},P:{"4":0.18584,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.0413,"8.2":0.07179,"9.2":0.01032,"10.1":0.02051,"11.1-11.2":0.08259,"12.0":0.01032,"13.0":0.07227,"14.0":0.06195,"15.0":0.05162,"16.0":0.14454,"17.0":2.261},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01004,"4.2-4.3":0.01434,"4.4":0,"4.4.3-4.4.4":0.10612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04675,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.1595},Q:{"10.4":0},O:{"0":0.029},H:{"0":0.28828},L:{"0":62.69375}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00279,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.14771,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.13099,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00279,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00279,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00279,"89":0,"90":0,"91":0.00557,"92":0,"93":0,"94":0,"95":0.00836,"96":0,"97":0.00557,"98":0.00279,"99":0.01672,"100":0.00557,"101":0.02508,"102":0.47658,"103":0.06131,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00279,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00279,"39":0,"40":0,"41":0,"42":0,"43":0.00279,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02508,"50":0,"51":0,"52":0,"53":0.00279,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00279,"64":0,"65":0,"66":0,"67":0,"68":0.00557,"69":0,"70":0.00279,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00279,"77":0.00557,"78":0.00279,"79":0.03344,"80":0.00279,"81":0.00836,"83":0.00557,"84":0.00557,"85":0.00279,"86":0.00557,"87":0.00836,"88":0.00279,"89":0.00836,"90":0.00279,"91":0.00557,"92":0.00836,"93":0.00836,"94":0.00836,"95":0.00557,"96":0.01672,"97":0.01672,"98":0.00836,"99":0.01672,"100":0.0223,"101":0.03344,"102":0.24804,"103":4.93856,"104":0.00279,"105":0.00279,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00557,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00279,"37":0,"38":0,"39":0,"40":0.00279,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00279,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00279,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01394,"86":0,"87":0.01394,"88":0.23968,"89":0.09197,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00279,"15":0.00279,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00836,"86":0,"87":0,"88":0,"89":0,"90":0.00279,"91":0,"92":0.00279,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00279,"101":0.00279,"102":0.01394,"103":0.39575,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00279,"14":0.00836,"15":0.00557,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00279,"13.1":0.01394,"14.1":0.02508,"15.1":0.00557,"15.2-15.3":0.00557,"15.4":0.01672,"15.5":0.08082,"15.6":0.00279,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01168,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07881,"10.0-10.2":0.00195,"10.3":0.12843,"11.0-11.2":0.01362,"11.3-11.4":0.0107,"12.0-12.1":0.0107,"12.2-12.5":0.52343,"13.0-13.1":0.00973,"13.2":0.00195,"13.3":0.03211,"13.4-13.7":0.07686,"14.0-14.4":0.23642,"14.5-14.8":0.71121,"15.0-15.1":0.12356,"15.2-15.3":0.26658,"15.4":0.57403,"15.5":6.67426,"16.0":0.04184},P:{"4":0.20399,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.051,"8.2":0,"9.2":0.0102,"10.1":0.0102,"11.1-11.2":0.10199,"12.0":0.0204,"13.0":0.0714,"14.0":0.0612,"15.0":0.0408,"16.0":0.14279,"17.0":2.19288,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02006,"4.2-4.3":0.02866,"4.4":0,"4.4.3-4.4.4":0.2121},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01394,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.26973},S:{"2.5":0},R:{_:"0"},M:{"0":0.15869},Q:{"10.4":0},O:{"0":0.02885},H:{"0":0.28681}}; 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 9e26d610da91d7b..6f62f438aaa32f6 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.00889,"78":0.01777,"87":0.01333,"91":0.01333,"101":0.13329,"102":1.34179,"103":0.13329,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 99 100 104 105 3.5 3.6"},D:{"49":0.00889,"65":0.00444,"70":0.00444,"74":0.00889,"75":0.00889,"76":0.02222,"77":0.00444,"79":0.23104,"80":0.04443,"81":0.01777,"83":0.07109,"85":0.00889,"86":0.10219,"87":0.05776,"88":0.00889,"89":0.0311,"91":0.00889,"93":0.09775,"94":0.01333,"95":0.00889,"96":0.05332,"97":0.01777,"98":0.08442,"99":0.07997,"100":0.14218,"101":0.11996,"102":1.65724,"103":23.34797,"104":0.01333,"105":0.00889,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 78 84 90 92 106"},F:{"86":0.01777,"87":0.02666,"88":0.73754,"89":0.37321,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01777,"18":0.00444,"99":0.02222,"101":0.01777,"102":0.10219,"103":8.70384,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100"},E:{"4":0.01333,"13":0.02666,"14":0.22215,"15":0.02666,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.01777,"9.1":0.05332,"11.1":0.03554,"12.1":0.01777,"13.1":0.16439,"14.1":0.32878,"15.1":0.05332,"15.2-15.3":0.18216,"15.4":0.27102,"15.5":2.1904,"15.6":0.07109,"16.0":0.01333},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00251,"6.0-6.1":0,"7.0-7.1":0.02137,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21375,"10.0-10.2":0,"10.3":0.05155,"11.0-11.2":0.00377,"11.3-11.4":0.0264,"12.0-12.1":0.00629,"12.2-12.5":0.56203,"13.0-13.1":0.0088,"13.2":0,"13.3":0.00629,"13.4-13.7":0.02515,"14.0-14.4":0.20243,"14.5-14.8":0.52557,"15.0-15.1":0.12196,"15.2-15.3":0.22129,"15.4":0.90529,"15.5":9.19873,"16.0":0.06664},P:{"4":0.23599,"5.0-5.4":0.0104,"6.2-6.4":0.03131,"7.2-7.4":0.23599,"8.2":0.07179,"9.2":0.01044,"10.1":0.02051,"11.1-11.2":0.07509,"12.0":0.02087,"13.0":0.05363,"14.0":0.04291,"15.0":0.06436,"16.0":0.30035,"17.0":6.84372},I:{"0":0,"3":0,"4":0.0017,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00227,"4.4":0,"4.4.3-4.4.4":0.04603},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04443,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01111},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.42233},Q:{"10.4":0},O:{"0":0.13893},H:{"0":0.15257},L:{"0":36.78941}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00478,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00478,"67":0,"68":0.00957,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00957,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00478,"88":0,"89":0,"90":0,"91":0.00478,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00478,"98":0.00478,"99":0,"100":0,"101":0.07176,"102":0.78458,"103":0.07654,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00478,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00478,"66":0,"67":0,"68":0,"69":0,"70":0.00478,"71":0,"72":0,"73":0,"74":0.00478,"75":0.00478,"76":0.00957,"77":0,"78":0,"79":0.11003,"80":0.02392,"81":0.02392,"83":0.03349,"84":0,"85":0.00478,"86":0.04784,"87":0.0287,"88":0.00478,"89":0.01435,"90":0,"91":0.00478,"92":0,"93":0.04784,"94":0.00478,"95":0.00478,"96":0.02392,"97":0.00957,"98":0.03827,"99":0.03827,"100":0.06698,"101":0.06219,"102":0.79893,"103":11.26154,"104":0.00478,"105":0.00478,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00478,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00957,"87":0.00957,"88":0.35402,"89":0.17701,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00957,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01914,"100":0.00478,"101":0.00957,"102":0.05262,"103":4.19557,_:"104"},E:{"4":0.00478,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01435,"14":0.10525,"15":0.01435,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00957,"7.1":0,"9.1":0.02392,"10.1":0,"11.1":0.01435,"12.1":0.00957,"13.1":0.07654,"14.1":0.15787,"15.1":0.02392,"15.2-15.3":0.08611,"15.4":0.12917,"15.5":1.0477,"15.6":0.03349,"16.0":0.00478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0037,"6.0-6.1":0,"7.0-7.1":0.03147,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.31465,"10.0-10.2":0,"10.3":0.07589,"11.0-11.2":0.00555,"11.3-11.4":0.03887,"12.0-12.1":0.00925,"12.2-12.5":0.82736,"13.0-13.1":0.01296,"13.2":0,"13.3":0.00925,"13.4-13.7":0.03702,"14.0-14.4":0.298,"14.5-14.8":0.77368,"15.0-15.1":0.17954,"15.2-15.3":0.32576,"15.4":1.33265,"15.5":13.54123,"16.0":0.0981},P:{"4":0.23775,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21614,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06484,"12.0":0.01081,"13.0":0.06484,"14.0":0.03242,"15.0":0.05403,"16.0":0.28098,"17.0":6.3976,"18.0":0.01081},I:{"0":0,"3":0,"4":0.05167,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06889,"4.4":0,"4.4.3-4.4.4":1.39507},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02392,"5.5":0},J:{"7":0,"10":0.01043},N:{"10":0,"11":0},L:{"0":48.33115},S:{"2.5":0},R:{_:"0"},M:{"0":0.39642},Q:{"10.4":0},O:{"0":0.1304},H:{"0":0.14321}}; 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 3752a74184f54d4..7d71693fa207f4e 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.02209,"43":0.00552,"47":0.00552,"49":0.00276,"52":0.03865,"56":0.00276,"57":0.00276,"72":0.00552,"78":0.00552,"79":0.00552,"80":0.00552,"81":0.00552,"82":0.00276,"84":0.00828,"86":0.00276,"88":0.00552,"89":0.01104,"91":0.03037,"92":0.00276,"93":0.00276,"94":0.00276,"95":0.00552,"96":0.00552,"97":0.00552,"98":0.00552,"99":0.02209,"100":0.03037,"101":0.12425,"102":2.12045,"103":0.40587,"104":0.02209,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 48 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 83 85 87 90 105 3.5 3.6"},D:{"38":0.00552,"41":0.00552,"49":0.00828,"50":0.00828,"56":0.00552,"62":0.00276,"63":0.00552,"64":0.00276,"65":0.00276,"66":0.00276,"67":0.00552,"69":0.01104,"70":0.00552,"71":0.00552,"72":0.00828,"73":0.01381,"74":0.02209,"75":0.00552,"76":0.00828,"77":0.00828,"78":0.01381,"79":0.03589,"80":0.01657,"81":0.02761,"83":0.02761,"84":0.03313,"85":0.04418,"86":0.06626,"87":0.0497,"88":0.00828,"89":0.03313,"90":0.01104,"91":0.01933,"92":0.02485,"93":0.00828,"94":0.02209,"95":0.03037,"96":0.05246,"97":0.04694,"98":0.03313,"99":0.05246,"100":0.07179,"101":0.11044,"102":0.48318,"103":15.88403,"104":0.04694,"105":0.02209,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 51 52 53 54 55 57 58 59 60 61 68 106"},F:{"28":0.00552,"29":0.00552,"36":0.00552,"46":0.00828,"68":0.00828,"79":0.00828,"85":0.01933,"86":0.00828,"87":0.00828,"88":0.35065,"89":0.22916,_:"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 66 67 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00828,"13":0.00552,"16":0.00552,"18":0.01933,"84":0.00552,"85":0.00276,"89":0.00552,"90":0.00276,"92":0.01104,"100":0.00276,"101":0.01381,"102":0.01933,"103":1.04642,_:"14 15 17 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99"},E:{"4":0,"13":0.00552,"14":0.01104,"15":0.00276,_:"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.00276,"13.1":0.01381,"14.1":0.03037,"15.1":0.00828,"15.2-15.3":0.00552,"15.4":0.03865,"15.5":0.18775,"15.6":0.01381,"16.0":0.00276},G:{"8":0,"3.2":0.00073,"4.0-4.1":0,"4.2-4.3":0.00024,"5.0-5.1":0.00441,"6.0-6.1":0.00024,"7.0-7.1":0.0421,"8.1-8.4":0.00073,"9.0-9.2":0.00196,"9.3":0.02595,"10.0-10.2":0.00122,"10.3":0.02081,"11.0-11.2":0.00269,"11.3-11.4":0.00318,"12.0-12.1":0.00343,"12.2-12.5":0.17136,"13.0-13.1":0.00269,"13.2":0.00343,"13.3":0.00588,"13.4-13.7":0.02742,"14.0-14.4":0.06267,"14.5-14.8":0.11824,"15.0-15.1":0.06169,"15.2-15.3":0.13072,"15.4":0.21101,"15.5":1.43597,"16.0":0.02081},P:{"4":0.33392,"5.0-5.4":0.0104,"6.2-6.4":0.03131,"7.2-7.4":0.18783,"8.2":0.07179,"9.2":0.01044,"10.1":0.02051,"11.1-11.2":0.04174,"12.0":0.02087,"13.0":0.06261,"14.0":0.07305,"15.0":0.03131,"16.0":0.10435,"17.0":0.80351},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00302,"4.2-4.3":0.00604,"4.4":0,"4.4.3-4.4.4":0.12845},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00276,"11":0.05522,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.13028},Q:{"10.4":0},O:{"0":2.29445},H:{"0":2.39836},L:{"0":67.79675}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00557,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00279,"48":0,"49":0,"50":0,"51":0,"52":0.01114,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00279,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00279,"79":0.00279,"80":0,"81":0,"82":0,"83":0,"84":0.00279,"85":0,"86":0,"87":0,"88":0,"89":0.00557,"90":0,"91":0.00836,"92":0,"93":0,"94":0,"95":0.00279,"96":0.00279,"97":0.00279,"98":0.00279,"99":0.00557,"100":0.00836,"101":0.03899,"102":0.6127,"103":0.11419,"104":0.00557,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00279,"39":0,"40":0.00279,"41":0.00279,"42":0.00279,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00279,"50":0.00279,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00279,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00279,"64":0.00279,"65":0,"66":0,"67":0,"68":0,"69":0.00279,"70":0.00279,"71":0.00279,"72":0.00279,"73":0.00279,"74":0.00557,"75":0,"76":0.00279,"77":0.00279,"78":0.00557,"79":0.01114,"80":0.00557,"81":0.01671,"83":0.00836,"84":0.00836,"85":0.01114,"86":0.0195,"87":0.01393,"88":0.00279,"89":0.01114,"90":0.00279,"91":0.00557,"92":0.00836,"93":0.00279,"94":0.00836,"95":0.01114,"96":0.01671,"97":0.01393,"98":0.00836,"99":0.01393,"100":0.0195,"101":0.03342,"102":0.13647,"103":4.44765,"104":0.01393,"105":0.00557,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00279,"29":0.00279,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00279,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00279,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00279,"55":0,"56":0,"57":0,"58":0.00557,"60":0.00557,"62":0,"63":0.28686,"64":0.02228,"65":0,"66":0,"67":0,"68":0.00279,"69":0.00279,"70":0.00279,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00279,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00557,"86":0.00279,"87":0.00279,"88":0.09748,"89":0.06406,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00279,"13":0,"14":0,"15":0,"16":0.00279,"17":0,"18":0.00557,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00279,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00557,"102":0.00836,"103":0.298,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00279,"14":0.00279,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00279,"14.1":0.00836,"15.1":0.00279,"15.2-15.3":0.00279,"15.4":0.01114,"15.5":0.05292,"15.6":0.00279,"16.0":0},G:{"8":0,"3.2":0.00099,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0.00596,"6.0-6.1":0.00033,"7.0-7.1":0.05698,"8.1-8.4":0.00099,"9.0-9.2":0.00265,"9.3":0.03512,"10.0-10.2":0.00166,"10.3":0.02816,"11.0-11.2":0.00364,"11.3-11.4":0.00431,"12.0-12.1":0.00464,"12.2-12.5":0.23189,"13.0-13.1":0.00364,"13.2":0.00464,"13.3":0.00795,"13.4-13.7":0.0371,"14.0-14.4":0.08481,"14.5-14.8":0.16001,"15.0-15.1":0.08348,"15.2-15.3":0.1769,"15.4":0.28556,"15.5":1.94326,"16.0":0.02816},P:{"4":0.31855,"5.0-5.4":0.01028,"6.2-6.4":0.03083,"7.2-7.4":0.18497,"8.2":0,"9.2":0.02055,"10.1":0,"11.1-11.2":0.05138,"12.0":0.02055,"13.0":0.06166,"14.0":0.07193,"15.0":0.03083,"16.0":0.10276,"17.0":0.79125,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00485,"4.2-4.3":0.0097,"4.4":0,"4.4.3-4.4.4":0.20609},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01393,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.44316},S:{"2.5":0.00722},R:{_:"0"},M:{"0":0.12987},Q:{"10.4":0.00722},O:{"0":2.28716},H:{"0":2.39074}}; 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 b7b2f6ba04b8ce3..bebec19dd511d49 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:{"50":0.00679,"52":0.04071,"53":0.00679,"56":0.00679,"75":0.00679,"78":0.0475,"87":0.1832,"91":0.08821,"94":0.14927,"95":0.00679,"97":0.01357,"99":0.00679,"100":0.02036,"101":0.14249,"102":2.20513,"103":0.26462,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 96 98 104 105 3.5 3.6"},D:{"49":0.04071,"53":0.00679,"64":0.15606,"66":0.02036,"67":0.02714,"69":0.02036,"74":0.03393,"75":0.03393,"76":0.0475,"77":0.04071,"78":0.55637,"79":0.80063,"80":0.01357,"81":0.02036,"83":0.28497,"84":0.02036,"85":0.03393,"86":0.01357,"87":0.07464,"88":0.01357,"89":0.02714,"90":0.02036,"91":0.02036,"92":0.02714,"93":0.07464,"94":0.02036,"95":0.02714,"96":0.07464,"97":0.05428,"98":0.06107,"99":0.15606,"100":0.24426,"101":0.38675,"102":3.67747,"103":38.71521,"104":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 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 65 68 70 71 72 73 105 106"},F:{"86":0.01357,"87":0.02714,"88":0.56994,"89":0.17641,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00679,"86":0.00679,"92":0.00679,"96":0.01357,"97":0.04071,"98":0.00679,"99":0.02036,"100":0.04071,"101":0.09499,"102":0.52245,"103":12.03659,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 93 94 95"},E:{"4":0,"11":0.01357,"13":0.02714,"14":0.21034,"15":0.04071,_:"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.02714,"12.1":0.0475,"13.1":0.27819,"14.1":0.35282,"15.1":0.09499,"15.2-15.3":0.08142,"15.4":0.33925,"15.5":2.33404,"15.6":0.10178,"16.0":0.01357},G:{"8":0,"3.2":0,"4.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.00928,"9.0-9.2":0,"9.3":0.04244,"10.0-10.2":0.00398,"10.3":0.07826,"11.0-11.2":0.00663,"11.3-11.4":0.03051,"12.0-12.1":0.01326,"12.2-12.5":0.32364,"13.0-13.1":0.00928,"13.2":0.00398,"13.3":0.02785,"13.4-13.7":0.07693,"14.0-14.4":0.26395,"14.5-14.8":0.84093,"15.0-15.1":0.27854,"15.2-15.3":0.49872,"15.4":0.83165,"15.5":9.60438,"16.0":0.06367},P:{"4":0.06403,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.02134,"8.2":0.07179,"9.2":0.01044,"10.1":0.02051,"11.1-11.2":0.02134,"12.0":0.01067,"13.0":0.02134,"14.0":0.05336,"15.0":0.02134,"16.0":0.06403,"17.0":2.49709},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01372,"4.2-4.3":0.00211,"4.4":0,"4.4.3-4.4.4":0.01953},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12892,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.21541},Q:{"10.4":0},O:{"0":0.02572},H:{"0":0.07914},L:{"0":15.98768}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00692,"51":0,"52":0.02768,"53":0.00692,"54":0,"55":0,"56":0.00692,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00692,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00692,"76":0,"77":0,"78":0.0346,"79":0,"80":0.00692,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.13146,"88":0.00692,"89":0,"90":0,"91":0.06227,"92":0,"93":0,"94":0.10379,"95":0.00692,"96":0,"97":0.00692,"98":0.00692,"99":0.00692,"100":0.01384,"101":0.1107,"102":1.63288,"103":0.19373,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02768,"50":0,"51":0,"52":0,"53":0.00692,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.1107,"65":0,"66":0.01384,"67":0.02076,"68":0,"69":0.01384,"70":0,"71":0,"72":0,"73":0,"74":0.02768,"75":0.02768,"76":0.0346,"77":0.02768,"78":0.38746,"79":0.55352,"80":0.00692,"81":0.02076,"83":0.20065,"84":0.01384,"85":0.02076,"86":0.01384,"87":0.04843,"88":0.00692,"89":0.02076,"90":0.01384,"91":0.01384,"92":0.02076,"93":0.04843,"94":0.01384,"95":0.02076,"96":0.04843,"97":0.04151,"98":0.04151,"99":0.10379,"100":0.17298,"101":0.26984,"102":2.54619,"103":26.86648,"104":0.02076,"105":0.00692,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00692,"87":0.02076,"88":0.39438,"89":0.11762,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00692,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00692,"87":0.00692,"88":0,"89":0,"90":0.00692,"91":0,"92":0.00692,"93":0,"94":0,"95":0.00692,"96":0.00692,"97":0.02768,"98":0.00692,"99":0.01384,"100":0.02768,"101":0.06919,"102":0.37363,"103":8.35815,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00692,"12":0,"13":0.02076,"14":0.1453,"15":0.02768,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00692,"11.1":0.02076,"12.1":0.0346,"13.1":0.19373,"14.1":0.24217,"15.1":0.06227,"15.2-15.3":0.05535,"15.4":0.23525,"15.5":1.61213,"15.6":0.06919,"16.0":0.00692},G:{"8":0,"3.2":0,"4.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.01582,"9.0-9.2":0,"9.3":0.07233,"10.0-10.2":0.00678,"10.3":0.13335,"11.0-11.2":0.0113,"11.3-11.4":0.05199,"12.0-12.1":0.0226,"12.2-12.5":0.5515,"13.0-13.1":0.01582,"13.2":0.00678,"13.3":0.04747,"13.4-13.7":0.13109,"14.0-14.4":0.44979,"14.5-14.8":1.43299,"15.0-15.1":0.47465,"15.2-15.3":0.84985,"15.4":1.41717,"15.5":16.36639,"16.0":0.10849},P:{"4":0.09239,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02053,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02053,"12.0":0.01027,"13.0":0.02053,"14.0":0.05133,"15.0":0.02053,"16.0":0.0616,"17.0":2.35092,"18.0":0.01027},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0588,"4.2-4.3":0.00905,"4.4":0,"4.4.3-4.4.4":0.08367},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08995,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":25.16205},S:{"2.5":0},R:{_:"0"},M:{"0":0.20643},Q:{"10.4":0},O:{"0":0.02465},H:{"0":0.07584}}; 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 a762c36eafac60b..ab7c0b99969cc70 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:{"35":0.00556,"36":0.00278,"38":0.00834,"40":0.00278,"41":0.0278,"42":0.00278,"43":0.00556,"45":0.00556,"47":0.01668,"48":0.00834,"49":0.01112,"52":0.04448,"56":0.00556,"63":0.00556,"72":0.03058,"75":0.00278,"76":0.0695,"78":0.01112,"80":0.00834,"86":0.01112,"89":0.00556,"91":0.08896,"95":0.00556,"96":0.15568,"97":0.02224,"98":0.05838,"99":0.06394,"100":0.0417,"101":0.15568,"102":3.61678,"103":0.44202,"104":0.01668,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 39 44 46 50 51 53 54 55 57 58 59 60 61 62 64 65 66 67 68 69 70 71 73 74 77 79 81 82 83 84 85 87 88 90 92 93 94 105 3.5 3.6"},D:{"25":0.00278,"26":0.01946,"28":0.00278,"29":0.00278,"39":0.00278,"49":0.00834,"51":0.00278,"55":0.00556,"57":0.00278,"63":0.00834,"65":0.00278,"68":0.0139,"70":0.00556,"71":0.00834,"72":0.00278,"74":0.0834,"77":0.00834,"78":0.00556,"79":0.00556,"80":0.00278,"81":0.01946,"83":0.00278,"84":0.00278,"86":0.01946,"87":0.0139,"88":0.01112,"89":0.00556,"90":0.00556,"91":0.01112,"92":0.02224,"93":0.01112,"94":0.01112,"95":0.00556,"96":0.01946,"97":0.03892,"98":0.04448,"99":0.01946,"100":0.09452,"101":0.17792,"102":0.5421,"103":11.7872,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 52 53 54 56 58 59 60 61 62 64 66 67 69 73 75 76 85 104 105 106"},F:{"67":0.00834,"79":0.03614,"83":0.00278,"84":0.0278,"85":0.00556,"86":0.01668,"87":0.0139,"88":0.25298,"89":0.18904,"90":0.00278,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05004,"13":0.00556,"14":0.00834,"15":0.01112,"16":0.00834,"17":0.00834,"18":0.06394,"84":0.02224,"85":0.00834,"89":0.01112,"90":0.00556,"92":0.0278,"95":0.00556,"96":0.00834,"97":0.01112,"98":0.01112,"99":0.0139,"100":0.02502,"101":0.03336,"102":0.04726,"103":2.19064,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"9":0.00556,"11":0.00556,"14":0.0139,"15":0.0139,_:"0 5 6 7 8 10 12 13 3.1 3.2 6.1 10.1 11.1","5.1":0.00278,"7.1":0.00556,"9.1":0.00278,"12.1":0.01946,"13.1":0.00834,"14.1":0.03058,"15.1":0.01668,"15.2-15.3":0.00556,"15.4":0.01946,"15.5":0.28634,"15.6":0.01112,"16.0":0.00556},G:{"8":0.00873,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00919,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02896,"10.0-10.2":0.00138,"10.3":0.04366,"11.0-11.2":0.01287,"11.3-11.4":0.00643,"12.0-12.1":0.02804,"12.2-12.5":0.4711,"13.0-13.1":0.01655,"13.2":0.00184,"13.3":0.03493,"13.4-13.7":0.11582,"14.0-14.4":0.3709,"14.5-14.8":0.62323,"15.0-15.1":0.19212,"15.2-15.3":0.32954,"15.4":0.43709,"15.5":1.63942,"16.0":0.06067},P:{"4":0.01102,"5.0-5.4":0.0104,"6.2-6.4":0.03116,"7.2-7.4":0.04409,"8.2":0.07179,"9.2":0.03307,"10.1":0.02116,"11.1-11.2":0.06614,"12.0":0.02077,"13.0":0.06232,"14.0":0.04409,"15.0":0.02205,"16.0":0.08818,"17.0":0.71647},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0036,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.20794},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14178,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01444},N:{"11":0.02513,_:"10"},S:{"2.5":0.00722},R:{_:"0"},M:{"0":0.08663},Q:{"10.4":0.12272},O:{"0":0.95291},H:{"0":4.13486},L:{"0":66.53589}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0028,"39":0,"40":0,"41":0.00841,"42":0,"43":0,"44":0,"45":0.0028,"46":0,"47":0.00561,"48":0.0028,"49":0.0028,"50":0,"51":0,"52":0.01121,"53":0,"54":0,"55":0,"56":0.0028,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0028,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00841,"73":0,"74":0,"75":0,"76":0.01962,"77":0,"78":0.0028,"79":0,"80":0.0028,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0028,"87":0,"88":0,"89":0.0028,"90":0,"91":0.02523,"92":0,"93":0,"94":0,"95":0.0028,"96":0.04485,"97":0.00561,"98":0.01682,"99":0.01962,"100":0.01121,"101":0.05045,"102":1.0259,"103":0.12333,"104":0.00561,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0028,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00561,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01402,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0028,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0028,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0028,"64":0,"65":0,"66":0,"67":0,"68":0.0028,"69":0,"70":0,"71":0.0028,"72":0,"73":0,"74":0.02242,"75":0,"76":0,"77":0.0028,"78":0,"79":0.0028,"80":0,"81":0.01402,"83":0,"84":0,"85":0,"86":0.00561,"87":0.0028,"88":0.0028,"89":0.0028,"90":0.0028,"91":0.0028,"92":0.00561,"93":0.0028,"94":0.0028,"95":0.0028,"96":0.00561,"97":0.01121,"98":0.01121,"99":0.00561,"100":0.02803,"101":0.05045,"102":0.16538,"103":3.30754,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.0028,"28":0.0028,"29":0,"30":0.0028,"31":0,"32":0.0028,"33":0,"34":0,"35":0,"36":0,"37":0.0028,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03364,"47":0,"48":0,"49":0,"50":0,"51":0.0028,"52":0,"53":0,"54":0.0028,"55":0.0028,"56":0,"57":0.00561,"58":0.00561,"60":0.10651,"62":0,"63":0.20182,"64":0.00561,"65":0,"66":0,"67":0.0028,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01121,"80":0,"81":0,"82":0,"83":0,"84":0.00841,"85":0,"86":0.00561,"87":0.0028,"88":0.07008,"89":0.05326,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.0028,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0028},B:{"12":0.01402,"13":0.0028,"14":0.0028,"15":0.0028,"16":0.0028,"17":0.0028,"18":0.01682,"79":0,"80":0,"81":0,"83":0,"84":0.00561,"85":0.0028,"86":0,"87":0,"88":0,"89":0.0028,"90":0,"91":0,"92":0.00841,"93":0,"94":0,"95":0.0028,"96":0.0028,"97":0.0028,"98":0.0028,"99":0.0028,"100":0.00561,"101":0.01121,"102":0.01402,"103":0.63068,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.0028,"10":0,"11":0.0028,"12":0,"13":0,"14":0.0028,"15":0.0028,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.0028,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00561,"13.1":0.0028,"14.1":0.00841,"15.1":0.00561,"15.2-15.3":0.0028,"15.4":0.00561,"15.5":0.08129,"15.6":0.0028,"16.0":0},G:{"8":0.01148,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01209,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03808,"10.0-10.2":0.00181,"10.3":0.05742,"11.0-11.2":0.01692,"11.3-11.4":0.00846,"12.0-12.1":0.03687,"12.2-12.5":0.61951,"13.0-13.1":0.02176,"13.2":0.00242,"13.3":0.04593,"13.4-13.7":0.15231,"14.0-14.4":0.48775,"14.5-14.8":0.81957,"15.0-15.1":0.25264,"15.2-15.3":0.43336,"15.4":0.57479,"15.5":2.15591,"16.0":0.07978},P:{"4":0.03097,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04129,"8.2":0.01032,"9.2":0.03097,"10.1":0.01032,"11.1-11.2":0.07226,"12.0":0,"13.0":0.01032,"14.0":0.04129,"15.0":0.02065,"16.0":0.08258,"17.0":0.67099,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00573,"4.2-4.3":0.00802,"4.4":0,"4.4.3-4.4.4":0.3311},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03924,"5.5":0},J:{"7":0,"10":0.01439},N:{"10":0,"11":0},L:{"0":78.89763},S:{"2.5":0.0072},R:{_:"0"},M:{"0":0.08636},Q:{"10.4":0.12235},O:{"0":0.95},H:{"0":4.12226}}; 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 ce4ac8d771e836f..78c60409f092f37 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:{"52":0.1588,"56":0.00369,"60":0.00739,"66":0.02216,"67":0.00369,"68":0.06647,"72":0.01477,"78":0.02585,"80":0.02216,"81":0.00369,"82":0.00369,"83":0.01477,"84":0.01477,"85":0.00369,"86":0.00369,"87":0.01108,"88":0.02216,"89":0.01477,"90":0.00739,"91":0.11818,"93":0.00739,"94":0.01108,"95":0.01477,"96":0.01477,"97":0.01477,"98":0.01847,"99":0.04801,"100":0.05909,"101":0.27698,"102":4.10662,"103":0.38777,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 69 70 71 73 74 75 76 77 79 92 104 105 3.5 3.6"},D:{"38":0.00739,"49":0.18465,"54":0.00369,"56":0.00369,"58":0.00369,"63":0.00739,"65":0.00369,"66":0.00369,"67":0.00369,"68":0.00369,"69":0.06647,"70":0.00369,"71":0.01108,"73":0.00369,"74":0.01108,"75":0.00739,"76":0.00369,"77":0.00739,"78":0.00739,"79":0.23266,"80":0.01108,"81":0.02585,"83":0.01477,"84":0.01477,"85":0.01477,"86":0.03324,"87":0.04432,"88":0.01477,"89":0.02585,"90":0.01108,"91":0.01847,"92":0.04801,"93":0.01108,"94":0.01108,"95":0.02954,"96":0.0517,"97":0.04062,"98":0.03324,"99":0.07386,"100":0.08125,"101":0.25851,"102":1.38118,"103":21.22367,"104":0.01477,"105":0.01477,_:"4 5 6 7 8 9 10 11 12 13 14 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 55 57 59 60 61 62 64 72 106"},F:{"28":0.02216,"36":0.00739,"40":0.00369,"46":0.01847,"82":0.00739,"85":0.03324,"86":0.01108,"87":0.09233,"88":1.08574,"89":0.48378,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00369,"18":0.00739,"92":0.00369,"99":0.00369,"100":0.01847,"101":0.02216,"102":0.07386,"103":2.45585,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01477,"14":0.03693,"15":0.01477,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 16.0","9.1":0.00369,"11.1":0.00369,"12.1":0.01477,"13.1":0.04062,"14.1":0.08494,"15.1":0.02216,"15.2-15.3":0.01477,"15.4":0.05909,"15.5":0.39884,"15.6":0.01847},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00171,"6.0-6.1":0,"7.0-7.1":0.00342,"8.1-8.4":0.00085,"9.0-9.2":0,"9.3":0.01966,"10.0-10.2":0.00171,"10.3":0.03932,"11.0-11.2":0.02308,"11.3-11.4":0.00769,"12.0-12.1":0.01197,"12.2-12.5":0.23338,"13.0-13.1":0.00855,"13.2":0.00171,"13.3":0.01966,"13.4-13.7":0.08207,"14.0-14.4":0.20004,"14.5-14.8":0.61465,"15.0-15.1":0.14362,"15.2-15.3":0.2727,"15.4":0.50523,"15.5":6.07901,"16.0":0.08805},P:{"4":0.09347,"5.0-5.4":0.0104,"6.2-6.4":0.03116,"7.2-7.4":0.05289,"8.2":0.07179,"9.2":0.01032,"10.1":0.02116,"11.1-11.2":0.06232,"12.0":0.02077,"13.0":0.06232,"14.0":0.10386,"15.0":0.05193,"16.0":0.17656,"17.0":2.48223},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00985,"4.2-4.3":0.01642,"4.4":0,"4.4.3-4.4.4":0.09358},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00369,"11":0.27328,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18293},Q:{"10.4":0},O:{"0":0.03785},H:{"0":0.2568},L:{"0":51.65874}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05981,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00374,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00748,"67":0,"68":0.02617,"69":0,"70":0,"71":0,"72":0.00748,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01121,"79":0,"80":0.00748,"81":0.00374,"82":0.00374,"83":0.00748,"84":0.00748,"85":0.00374,"86":0,"87":0.00748,"88":0.00748,"89":0.00748,"90":0.00374,"91":0.04486,"92":0,"93":0.00374,"94":0.00374,"95":0.00748,"96":0.00374,"97":0.00748,"98":0.00748,"99":0.01869,"100":0.02243,"101":0.1084,"102":1.5737,"103":0.14952,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00374,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07102,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00374,"57":0,"58":0.00374,"59":0,"60":0,"61":0,"62":0,"63":0.00374,"64":0,"65":0.00374,"66":0,"67":0.00374,"68":0,"69":0.02617,"70":0.00374,"71":0.00374,"72":0,"73":0.00374,"74":0.00374,"75":0.00374,"76":0.00374,"77":0.00374,"78":0.00374,"79":0.08597,"80":0.00374,"81":0.02617,"83":0.00748,"84":0.00748,"85":0.00748,"86":0.01495,"87":0.01869,"88":0.00748,"89":0.01495,"90":0.00374,"91":0.00748,"92":0.02243,"93":0.00374,"94":0.00374,"95":0.01869,"96":0.02243,"97":0.01495,"98":0.01495,"99":0.0299,"100":0.03364,"101":0.10093,"102":0.52706,"103":8.02922,"104":0.00748,"105":0.00374,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00748,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00374,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00748,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00748,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00374,"83":0,"84":0,"85":0.01121,"86":0.00374,"87":0.03364,"88":0.4037,"89":0.17942,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00374,"16":0,"17":0,"18":0.00374,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00748,"101":0.00748,"102":0.03364,"103":0.92702,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00374,"14":0.01495,"15":0.00748,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00374,"13.1":0.01495,"14.1":0.03364,"15.1":0.00748,"15.2-15.3":0.00374,"15.4":0.02243,"15.5":0.14952,"15.6":0.00748,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0024,"6.0-6.1":0,"7.0-7.1":0.00481,"8.1-8.4":0.0012,"9.0-9.2":0,"9.3":0.02765,"10.0-10.2":0.0024,"10.3":0.05531,"11.0-11.2":0.03246,"11.3-11.4":0.01082,"12.0-12.1":0.01683,"12.2-12.5":0.32823,"13.0-13.1":0.01202,"13.2":0.0024,"13.3":0.02765,"13.4-13.7":0.11542,"14.0-14.4":0.28134,"14.5-14.8":0.86445,"15.0-15.1":0.20198,"15.2-15.3":0.38353,"15.4":0.71055,"15.5":8.54949,"16.0":0.12384},P:{"4":0.10207,"5.0-5.4":0,"6.2-6.4":0.03062,"7.2-7.4":0.01021,"8.2":0,"9.2":0.02041,"10.1":0.01021,"11.1-11.2":0.07145,"12.0":0.02041,"13.0":0.06124,"14.0":0.10207,"15.0":0.05104,"16.0":0.17352,"17.0":2.40887,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01838,"4.2-4.3":0.03064,"4.4":0,"4.4.3-4.4.4":0.17462},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00374,"10":0,"11":0.10093,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.47009},S:{"2.5":0},R:{_:"0"},M:{"0":0.1816},Q:{"10.4":0},O:{"0":0.03757},H:{"0":0.25492}}; 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 f2292ac29a1e982..ce6b9dff25ee867 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.02221,"36":0.00317,"52":0.02221,"78":0.00635,"88":0.00317,"89":0.00317,"91":0.01904,"99":0.00317,"100":0.01269,"101":0.04442,"102":0.77104,"103":0.07298,_:"2 3 4 5 6 7 8 9 10 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 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 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"5":0.00635,"11":0.00952,"34":0.00317,"38":0.01269,"47":0.00635,"49":0.03173,"55":0.01269,"56":0.00317,"63":0.00635,"64":0.00317,"65":0.4823,"67":0.00952,"68":0.00635,"73":0.01904,"74":0.00317,"76":0.00952,"77":0.00952,"79":0.13644,"80":0.01587,"81":0.01269,"83":0.02538,"84":0.01269,"85":0.01269,"86":0.01269,"87":0.02538,"88":0.0476,"89":0.01904,"90":0.00952,"91":0.01587,"92":0.02538,"93":0.04125,"94":0.00635,"95":0.01904,"96":0.08884,"97":0.01587,"98":0.0476,"99":0.05077,"100":0.07933,"101":0.12375,"102":1.01536,"103":19.85663,"104":0.02856,"105":0.00635,_:"4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 57 58 59 60 61 62 66 69 70 71 72 75 78 106"},F:{"28":0.00952,"46":0.00635,"62":0.00317,"79":0.00317,"82":0.00952,"84":0.01904,"85":0.05077,"86":0.07298,"87":0.06981,"88":0.16817,"89":0.02538,_:"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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01904,"18":0.01269,"84":0.00317,"86":0.00635,"87":0.00952,"89":0.00317,"92":0.00635,"93":0.00317,"96":0.00317,"97":0.00635,"98":0.01269,"99":0.00952,"100":0.00317,"101":0.0476,"102":0.1174,"103":2.86522,_:"12 13 15 16 17 79 80 81 83 85 88 90 91 94 95"},E:{"4":0,"13":0.02221,"14":0.12692,"15":0.04125,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05394,"11.1":0.00317,"12.1":0.02221,"13.1":0.09202,"14.1":0.36172,"15.1":0.11423,"15.2-15.3":0.16182,"15.4":0.28557,"15.5":1.31362,"15.6":0.07298,"16.0":0.01904},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00594,"6.0-6.1":0,"7.0-7.1":0.04158,"8.1-8.4":0.00594,"9.0-9.2":0,"9.3":0.06931,"10.0-10.2":0.00198,"10.3":0.07723,"11.0-11.2":0.00792,"11.3-11.4":0.03168,"12.0-12.1":0.02178,"12.2-12.5":0.33664,"13.0-13.1":0.0198,"13.2":0.0099,"13.3":0.06337,"13.4-13.7":0.14852,"14.0-14.4":0.41584,"14.5-14.8":1.27724,"15.0-15.1":0.42575,"15.2-15.3":0.77228,"15.4":1.39209,"15.5":13.96643,"16.0":0.12277},P:{"4":0.12262,"5.0-5.4":0.0104,"6.2-6.4":0.04102,"7.2-7.4":0.09196,"8.2":0.07179,"9.2":0.09196,"10.1":0.02051,"11.1-11.2":0.21458,"12.0":0.03065,"13.0":0.13284,"14.0":0.15327,"15.0":0.04087,"16.0":0.26567,"17.0":3.23915},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00827,"4.4":0,"4.4.3-4.4.4":0.03952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14913,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.27312},Q:{"10.4":0},O:{"0":2.32152},H:{"0":0.68522},L:{"0":42.57193}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00642,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00642,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00321,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00642,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00642,"101":0.01606,"102":0.32441,"103":0.0257,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0.00321,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00321,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00321,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00321,"48":0,"49":0.00964,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00321,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00321,"64":0,"65":0.15418,"66":0,"67":0.00321,"68":0.00321,"69":0,"70":0,"71":0,"72":0,"73":0.00642,"74":0.00321,"75":0,"76":0.00321,"77":0.00321,"78":0,"79":0.04497,"80":0.00642,"81":0.02891,"83":0.00964,"84":0.00321,"85":0.00321,"86":0.00642,"87":0.00642,"88":0.01606,"89":0.00642,"90":0.00321,"91":0.00642,"92":0.01285,"93":0.01285,"94":0.00321,"95":0.00642,"96":0.02891,"97":0.00642,"98":0.01606,"99":0.01606,"100":0.0257,"101":0.04176,"102":0.32762,"103":6.40794,"104":0.00964,"105":0.00321,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00321,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00321,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00321,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00321,"83":0,"84":0.00642,"85":0.01606,"86":0.02248,"87":0.02248,"88":0.0546,"89":0.00964,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00642,"15":0,"16":0,"17":0,"18":0.00321,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00321,"87":0.00321,"88":0,"89":0,"90":0,"91":0,"92":0.00321,"93":0,"94":0,"95":0,"96":0,"97":0.00321,"98":0.00321,"99":0.00321,"100":0,"101":0.01606,"102":0.04176,"103":0.92827,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00642,"14":0.04176,"15":0.01285,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01606,"11.1":0,"12.1":0.00642,"13.1":0.02891,"14.1":0.11563,"15.1":0.03854,"15.2-15.3":0.05139,"15.4":0.08994,"15.5":0.42077,"15.6":0.02248,"16.0":0.00642},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00804,"6.0-6.1":0,"7.0-7.1":0.05629,"8.1-8.4":0.00804,"9.0-9.2":0,"9.3":0.09381,"10.0-10.2":0.00268,"10.3":0.10453,"11.0-11.2":0.01072,"11.3-11.4":0.04289,"12.0-12.1":0.02948,"12.2-12.5":0.45566,"13.0-13.1":0.0268,"13.2":0.0134,"13.3":0.08577,"13.4-13.7":0.20102,"14.0-14.4":0.56287,"14.5-14.8":1.72881,"15.0-15.1":0.57627,"15.2-15.3":1.04533,"15.4":1.88427,"15.5":18.90436,"16.0":0.16618},P:{"4":0.1333,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09228,"8.2":0,"9.2":0.10254,"10.1":0,"11.1-11.2":0.22559,"12.0":0.03076,"13.0":0.1333,"14.0":0.15381,"15.0":0.04102,"16.0":0.25635,"17.0":3.18895,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01934,"4.4":0,"4.4.3-4.4.4":0.09241},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04818,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":53.74818},S:{"2.5":0},R:{_:"0"},M:{"0":0.27152},Q:{"10.4":0},O:{"0":2.30792},H:{"0":0.6812}}; 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 54f36f462e9ec95..8904c5161751f80 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:{"30":0.00263,"38":0.01577,"40":0.01577,"45":0.00526,"47":0.00526,"49":0.0184,"50":0.00526,"52":0.00263,"56":0.00789,"66":0.00526,"67":0.01052,"72":0.0184,"77":0.00263,"78":0.00526,"84":0.00263,"86":0.00526,"88":0.02103,"91":0.01577,"92":0.03155,"96":0.01052,"98":0.01052,"99":0.00526,"100":0.03418,"101":0.09464,"102":2.70524,"103":0.19455,"104":0.03155,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 41 42 43 44 46 48 51 53 54 55 57 58 59 60 61 62 63 64 65 68 69 70 71 73 74 75 76 79 80 81 82 83 85 87 89 90 93 94 95 97 105 3.5 3.6"},D:{"31":0.00263,"37":0.00526,"49":0.00263,"62":0.01052,"64":0.00526,"65":0.01052,"67":0.01052,"69":0.00526,"70":0.00263,"71":0.00526,"74":0.01052,"75":0.01052,"76":0.00263,"77":0.01052,"79":0.04206,"80":0.05784,"81":0.06835,"83":0.0815,"84":0.00526,"85":0.02103,"87":0.05521,"88":0.03418,"89":0.01052,"91":0.01315,"92":0.00526,"93":0.07361,"94":0.00526,"95":0.01052,"96":0.04732,"97":0.04732,"98":0.10516,"99":0.07624,"100":0.04469,"101":0.26027,"102":1.10944,"103":10.22155,"104":0.00263,"105":0.00526,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 63 66 68 72 73 78 86 90 106"},F:{"36":0.00263,"40":0.00263,"42":0.00526,"75":0.00526,"79":0.03418,"84":0.00789,"85":0.0184,"86":0.01577,"87":0.02892,"88":0.48899,"89":0.38383,_:"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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0631,"13":0.02103,"14":0.03155,"15":0.03155,"16":0.01577,"17":0.02366,"18":0.14985,"84":0.04469,"89":0.01315,"90":0.01577,"92":0.09464,"96":0.02629,"97":0.00789,"98":0.01315,"99":0.01052,"100":0.02629,"101":0.04732,"102":0.07624,"103":1.90077,_:"79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"12":0.41275,"13":0.00526,"14":0.00789,"15":0.00263,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00526,"10.1":0.01315,"11.1":0.00263,"12.1":0.02629,"13.1":0.02103,"14.1":0.04469,"15.1":0.12093,"15.2-15.3":0.0184,"15.4":0.02892,"15.5":0.11831,"15.6":0.00263,"16.0":0.00263},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02738,"8.1-8.4":0,"9.0-9.2":0.00054,"9.3":0.01193,"10.0-10.2":0.00054,"10.3":0.00732,"11.0-11.2":0,"11.3-11.4":0.00813,"12.0-12.1":0.00678,"12.2-12.5":0.33155,"13.0-13.1":0.00813,"13.2":0.00325,"13.3":0.03877,"13.4-13.7":0.05801,"14.0-14.4":0.18841,"14.5-14.8":0.53108,"15.0-15.1":0.16103,"15.2-15.3":0.1792,"15.4":0.22528,"15.5":0.89137,"16.0":0.01871},P:{"4":0.29807,"5.0-5.4":0.06167,"6.2-6.4":0.04111,"7.2-7.4":0.25695,"8.2":0.07179,"9.2":0.22612,"10.1":0.02116,"11.1-11.2":0.05139,"12.0":0.02077,"13.0":0.04111,"14.0":0.03083,"15.0":0.03083,"16.0":0.11306,"17.0":0.75031},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00144,"4.2-4.3":0.00287,"4.4":0,"4.4.3-4.4.4":0.07676},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16826,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.02211},R:{_:"0"},M:{"0":0.15477},Q:{"10.4":0},O:{"0":0.44957},H:{"0":13.59205},L:{"0":59.54709}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0053,"39":0,"40":0.00265,"41":0,"42":0,"43":0,"44":0,"45":0.00265,"46":0,"47":0.00265,"48":0,"49":0.0053,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00265,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00265,"67":0.00265,"68":0,"69":0,"70":0,"71":0,"72":0.0053,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00265,"87":0,"88":0.0053,"89":0,"90":0,"91":0.0053,"92":0.00795,"93":0,"94":0,"95":0,"96":0.00265,"97":0,"98":0.00265,"99":0.00265,"100":0.0106,"101":0.0477,"102":0.73405,"103":0.053,"104":0.00795,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00265,"38":0,"39":0,"40":0.00265,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00265,"63":0,"64":0.00265,"65":0.00265,"66":0,"67":0.00265,"68":0,"69":0.00265,"70":0,"71":0.00265,"72":0,"73":0,"74":0.00265,"75":0.00265,"76":0,"77":0.00265,"78":0,"79":0.0106,"80":0.0159,"81":0.02385,"83":0.0212,"84":0.00265,"85":0.0053,"86":0,"87":0.0159,"88":0.00795,"89":0.00265,"90":0,"91":0.00265,"92":0.00265,"93":0.01855,"94":0.00265,"95":0.00265,"96":0.01325,"97":0.01325,"98":0.02915,"99":0.0212,"100":0.0106,"101":0.0689,"102":0.2968,"103":2.71095,"104":0,"105":0.00265,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00265,"21":0,"22":0,"23":0,"24":0.01325,"25":0,"26":0.0053,"27":0,"28":0.01855,"29":0,"30":0.00795,"31":0,"32":0,"33":0.0053,"34":0,"35":0,"36":0,"37":0.053,"38":0,"39":0,"40":0,"41":0,"42":0.00265,"43":0,"44":0,"45":0,"46":0.00795,"47":0,"48":0,"49":0,"50":0.00265,"51":0.0053,"52":0,"53":0,"54":0.0053,"55":0,"56":0.00265,"57":0.00265,"58":0.0159,"60":0.1908,"62":0,"63":0.49555,"64":0.02385,"65":0,"66":0,"67":0,"68":0,"69":0.00265,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00795,"80":0,"81":0,"82":0,"83":0,"84":0.00265,"85":0.0053,"86":0.0053,"87":0.00795,"88":0.12985,"89":0.10335,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0053},B:{"12":0.0159,"13":0.0053,"14":0.00795,"15":0.01325,"16":0.0053,"17":0.0053,"18":0.03975,"79":0,"80":0,"81":0,"83":0,"84":0.0106,"85":0,"86":0,"87":0,"88":0,"89":0.00265,"90":0.0053,"91":0,"92":0.0265,"93":0,"94":0,"95":0,"96":0.00795,"97":0.00265,"98":0.00265,"99":0.00265,"100":0.00795,"101":0.01325,"102":0.02385,"103":0.5035,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.10865,"13":0.00265,"14":0.00265,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00265,"11.1":0,"12.1":0.0053,"13.1":0.0053,"14.1":0.0106,"15.1":0.0318,"15.2-15.3":0.0053,"15.4":0.00795,"15.5":0.0318,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03739,"8.1-8.4":0,"9.0-9.2":0.00074,"9.3":0.01629,"10.0-10.2":0.00074,"10.3":0.01,"11.0-11.2":0,"11.3-11.4":0.01111,"12.0-12.1":0.00926,"12.2-12.5":0.4528,"13.0-13.1":0.01111,"13.2":0.00444,"13.3":0.05294,"13.4-13.7":0.07923,"14.0-14.4":0.25731,"14.5-14.8":0.72529,"15.0-15.1":0.21992,"15.2-15.3":0.24473,"15.4":0.30767,"15.5":1.21734,"16.0":0.02555},P:{"4":0.29097,"5.0-5.4":0.0602,"6.2-6.4":0.05017,"7.2-7.4":0.25083,"8.2":0,"9.2":0.22073,"10.1":0,"11.1-11.2":0.0602,"12.0":0,"13.0":0.05017,"14.0":0.04013,"15.0":0.0301,"16.0":0.11037,"17.0":0.73243,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00303,"4.2-4.3":0.00606,"4.4":0,"4.4.3-4.4.4":0.16186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04505,"5.5":0},J:{"7":0,"10":0.00735},N:{"10":0,"11":0},L:{"0":69.23475},S:{"2.5":0.02205},R:{_:"0"},M:{"0":0.15435},Q:{"10.4":0.00735},O:{"0":0.44835},H:{"0":13.55517}}; 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 34c8d539aca65d5..9001f743ec1ac0a 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:{"45":0.0036,"47":0.01439,"51":0.0036,"52":0.0036,"56":0.0036,"60":0.0036,"68":0.02878,"69":0.0072,"72":0.03238,"74":0.0072,"76":0.04318,"78":0.03598,"84":0.04677,"85":0.05037,"87":0.0036,"89":0.0072,"91":0.07556,"92":0.0036,"93":0.0036,"96":0.0036,"97":0.0036,"98":0.0036,"99":0.05037,"100":0.05037,"101":0.16191,"102":1.6155,"103":0.21228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 53 54 55 57 58 59 61 62 63 64 65 66 67 70 71 73 75 77 79 80 81 82 83 86 88 90 94 95 104 105 3.5 3.6"},D:{"19":0.0072,"28":0.06836,"34":0.0072,"40":0.0072,"43":0.0036,"44":0.0072,"47":0.0072,"51":0.0072,"56":0.03958,"57":0.0036,"58":0.0036,"61":0.0072,"62":0.0072,"63":0.01439,"64":0.0072,"66":0.0072,"67":0.0072,"68":0.0036,"69":0.0072,"70":0.0072,"71":0.02159,"72":0.0072,"73":0.0036,"74":0.19789,"75":0.02519,"76":0.01439,"77":0.01439,"78":0.03958,"79":0.02878,"80":0.04677,"81":0.01439,"83":0.04318,"84":0.04677,"85":0.02878,"86":0.07556,"87":0.05397,"88":0.02519,"89":0.09355,"90":0.03598,"91":0.04318,"92":0.04677,"93":0.03238,"94":0.07196,"95":0.07196,"96":0.07916,"97":0.07556,"98":0.1727,"99":6.19576,"100":0.08635,"101":0.16551,"102":0.85632,"103":13.29821,"104":0.01079,"105":0.02519,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 38 39 41 42 45 46 48 49 50 52 53 54 55 59 60 65 106"},F:{"57":0.01079,"58":0.0072,"79":0.10074,"82":0.0036,"83":0.0036,"84":0.02519,"85":0.20868,"86":0.01439,"87":0.03238,"88":0.80235,"89":0.40298,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01439,"13":0.02159,"14":0.0072,"15":0.0036,"16":0.0036,"17":0.0072,"18":0.07916,"84":0.03958,"85":0.0036,"89":0.01079,"90":0.01079,"92":0.08635,"96":0.01079,"99":0.01439,"100":0.0036,"101":0.01439,"102":0.02878,"103":1.84218,_:"79 80 81 83 86 87 88 91 93 94 95 97 98"},E:{"4":0,"13":0.0072,"14":0.02159,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.0072,"12.1":0.0072,"13.1":0.03238,"14.1":0.03598,"15.1":0.0072,"15.2-15.3":0.0072,"15.4":0.01799,"15.5":0.16191,"15.6":0.0072},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00364,"6.0-6.1":0.00121,"7.0-7.1":0.06247,"8.1-8.4":0,"9.0-9.2":0.00303,"9.3":0.02426,"10.0-10.2":0,"10.3":0.01698,"11.0-11.2":0.01031,"11.3-11.4":0.00061,"12.0-12.1":0.00667,"12.2-12.5":0.82667,"13.0-13.1":0.00788,"13.2":0.00849,"13.3":0.07399,"13.4-13.7":0.1862,"14.0-14.4":0.33176,"14.5-14.8":0.7181,"15.0-15.1":0.2335,"15.2-15.3":0.45124,"15.4":0.64229,"15.5":2.28713,"16.0":0.09583},P:{"4":0.0112,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.0112,"8.2":0.07179,"9.2":0.01056,"10.1":0.02051,"11.1-11.2":0.02241,"12.0":0.01067,"13.0":0.04481,"14.0":0.0112,"15.0":0.02112,"16.0":0.05602,"17.0":0.42573},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.02307},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01112,"11":0.05004,_:"7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.04481},R:{_:"0"},M:{"0":0.16005},Q:{"10.4":0.0128},O:{"0":1.13315},H:{"0":3.72145},L:{"0":58.62166}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00363,"48":0,"49":0,"50":0,"51":0.00363,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01088,"69":0.00363,"70":0,"71":0,"72":0.01088,"73":0,"74":0.00363,"75":0,"76":0.01451,"77":0,"78":0.01088,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01814,"85":0.01814,"86":0,"87":0,"88":0,"89":0.00363,"90":0,"91":0.02902,"92":0.00363,"93":0.00363,"94":0,"95":0,"96":0,"97":0.00363,"98":0,"99":0.01814,"100":0.01814,"101":0.0653,"102":0.61676,"103":0.07619,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00363,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0254,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00363,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00363,"41":0,"42":0,"43":0,"44":0.00363,"45":0,"46":0,"47":0.00363,"48":0,"49":0,"50":0,"51":0.00363,"52":0,"53":0,"54":0,"55":0,"56":0.01451,"57":0.00363,"58":0.00363,"59":0,"60":0,"61":0.00363,"62":0.00363,"63":0.00363,"64":0.00363,"65":0,"66":0.00363,"67":0.00363,"68":0,"69":0.00363,"70":0.00363,"71":0.00726,"72":0.00363,"73":0,"74":0.07256,"75":0.00726,"76":0.00363,"77":0.00363,"78":0.01451,"79":0.01088,"80":0.01814,"81":0.01814,"83":0.01451,"84":0.01814,"85":0.01088,"86":0.02902,"87":0.01814,"88":0.01088,"89":0.03265,"90":0.01088,"91":0.01451,"92":0.01814,"93":0.01088,"94":0.0254,"95":0.02902,"96":0.02902,"97":0.02902,"98":0.06168,"99":2.24573,"100":0.03265,"101":0.05805,"102":0.31201,"103":4.8325,"104":0.00363,"105":0.00726,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01088,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00363,"36":0,"37":0.00726,"38":0,"39":0,"40":0,"41":0,"42":0.00363,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00726,"51":0,"52":0,"53":0,"54":0.06893,"55":0,"56":0.00363,"57":0.00726,"58":0.01088,"60":0.18503,"62":0,"63":0.21042,"64":0.05079,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.03628,"80":0,"81":0,"82":0.00363,"83":0,"84":0.01088,"85":0.07619,"86":0.00363,"87":0.01088,"88":0.29024,"89":0.14512,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00363,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00363},B:{"12":0.00363,"13":0.00726,"14":0.01814,"15":0.02902,"16":0,"17":0.00363,"18":0.02902,"79":0,"80":0,"81":0,"83":0,"84":0.01451,"85":0,"86":0,"87":0,"88":0,"89":0.00363,"90":0.00363,"91":0,"92":0.03265,"93":0,"94":0,"95":0.00363,"96":0.00363,"97":0,"98":0,"99":0.00363,"100":0.00363,"101":0.00726,"102":0.01814,"103":0.67844,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00363,"14":0.00726,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00363,"12.1":0.00363,"13.1":0.01088,"14.1":0.01451,"15.1":0.00363,"15.2-15.3":0.00363,"15.4":0.00726,"15.5":0.05805,"15.6":0.00363,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00526,"6.0-6.1":0.00175,"7.0-7.1":0.09032,"8.1-8.4":0,"9.0-9.2":0.00438,"9.3":0.03507,"10.0-10.2":0,"10.3":0.02455,"11.0-11.2":0.01491,"11.3-11.4":0.00088,"12.0-12.1":0.00965,"12.2-12.5":1.19517,"13.0-13.1":0.0114,"13.2":0.01228,"13.3":0.10698,"13.4-13.7":0.2692,"14.0-14.4":0.47965,"14.5-14.8":1.03821,"15.0-15.1":0.33759,"15.2-15.3":0.65239,"15.4":0.9286,"15.5":3.30666,"16.0":0.13854},P:{"4":0.02035,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03052,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.02035,"12.0":0,"13.0":0.04069,"14.0":0.02035,"15.0":0.01017,"16.0":0.05086,"17.0":0.3764,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00279,"4.2-4.3":0.00837,"4.4":0,"4.4.3-4.4.4":0.1014},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00544,"7":0,"8":0,"9":0,"10":0,"11":0.01633,"5.5":0},J:{"7":0,"10":0.00637},N:{"10":0,"11":0},L:{"0":72.28652},S:{"2.5":0.0446},R:{_:"0"},M:{"0":0.1593},Q:{"10.4":0.01274},O:{"0":1.12784},H:{"0":3.70402}}; 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 dd4c695cd7449cb..2bd9f2e1700fa05 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.00552,"101":0.04419,"102":0.23201,"103":0.01105,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 104 105 3.5 3.6"},D:{"49":0.00829,"63":0.00552,"67":0.00276,"75":0.00552,"77":0.01657,"83":0.01105,"85":0.00276,"87":0.00552,"91":0.01381,"92":0.00552,"96":0.00552,"97":0.00276,"98":0.00552,"99":0.00552,"100":0.03591,"101":0.10219,"102":0.45297,"103":4.93569,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 68 69 70 71 72 73 74 76 78 79 80 81 84 86 88 89 90 93 94 95 104 105 106"},F:{"86":0.00552,"87":0.01381,"88":0.18782,"89":0.01381,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00552,"99":0.00276,"101":0.04419,"102":0.08286,"103":1.75111,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100"},E:{"4":0,"13":0.01381,"14":0.09391,"15":0.04695,_:"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.00552,"12.1":0.03038,"13.1":0.22925,"14.1":0.35906,"15.1":0.08562,"15.2-15.3":0.14086,"15.4":0.91146,"15.5":15.93674,"15.6":0.7126,"16.0":0.09115},G:{"8":0,"3.2":0,"4.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.09006,"10.0-10.2":0,"10.3":0.02771,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01386,"12.2-12.5":0.10392,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.08313,"14.5-14.8":0.48495,"15.0-15.1":0.33254,"15.2-15.3":0.90062,"15.4":1.89823,"15.5":63.40377,"16.0":0.29097},P:{"4":0.05317,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.0112,"8.2":0.07179,"9.2":0.01056,"10.1":0.02051,"11.1-11.2":0.02127,"12.0":0.01067,"13.0":0.08507,"14.0":0.0112,"15.0":0.02112,"16.0":0.02127,"17.0":0.86135},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.0221,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.02895},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":3.76069}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00283,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01133,"102":0.07366,"103":0.00283,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00283,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00283,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00567,"78":0,"79":0,"80":0,"81":0,"83":0.00283,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00283,"92":0.00283,"93":0,"94":0,"95":0,"96":0.00283,"97":0,"98":0,"99":0.00283,"100":0.01133,"101":0.02833,"102":0.13032,"103":1.3995,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00567,"88":0.05383,"89":0.00283,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00283,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.01133,"102":0.0255,"103":0.49861,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00283,"14":0.0255,"15":0.01417,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0085,"13.1":0.06516,"14.1":0.10199,"15.1":0.0255,"15.2-15.3":0.03966,"15.4":0.2578,"15.5":4.5158,"15.6":0.20114,"16.0":0.0255},G:{"8":0,"3.2":0,"4.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.11478,"10.0-10.2":0,"10.3":0.03532,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01766,"12.2-12.5":0.13244,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.10595,"14.5-14.8":0.61805,"15.0-15.1":0.42381,"15.2-15.3":1.14781,"15.4":2.41923,"15.5":80.80597,"16.0":0.37083},P:{"4":0.07224,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01032,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02064,"12.0":0,"13.0":0.08256,"14.0":0,"15.0":0,"16.0":0.03096,"17.0":0.81532,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11482},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00567,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":4.52156},S:{"2.5":0},R:{_:"0"},M:{"0":0.02867},Q:{"10.4":0},O:{"0":0},H:{"0":0.00679}}; 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 2097555ac7d84ab..fe4a4e269fe9046 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:{"41":0.00779,"48":0.00779,"51":0.01168,"52":0.02336,"78":0.01168,"81":0.00389,"84":0.00779,"89":0.00389,"91":0.00779,"98":0.01168,"99":0.01558,"100":0.01168,"101":0.08567,"102":1.82629,"103":0.19859,"104":0.00389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 87 88 90 92 93 94 95 96 97 105 3.5 3.6"},D:{"34":0.00389,"38":0.07009,"47":0.03894,"49":0.23753,"50":0.00389,"55":0.01168,"56":0.01947,"60":0.00389,"62":0.02726,"63":0.00389,"65":0.00779,"67":0.00389,"68":0.00779,"69":0.01168,"70":0.00389,"72":0.01168,"73":0.00779,"74":0.00389,"75":0.02336,"78":0.03505,"79":0.25311,"80":0.01168,"81":0.02336,"83":0.02336,"84":0.02336,"87":0.08177,"88":0.01558,"89":0.03505,"91":0.05452,"92":0.09346,"93":0.01947,"94":0.00389,"95":0.02336,"96":0.03894,"97":0.07399,"98":0.03115,"99":0.0662,"100":0.08567,"101":0.13629,"102":1.04749,"103":24.02209,"104":0.05841,"105":0.01947,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 57 58 59 61 64 66 71 76 77 85 86 90 106"},F:{"28":0.02726,"36":0.00779,"46":0.07788,"79":0.01168,"85":0.00779,"86":0.01947,"87":0.01558,"88":0.77101,"89":0.19859,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00779,"97":0.00389,"99":0.00779,"100":0.00779,"101":0.02336,"102":0.05452,"103":2.00541,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98"},E:{"4":0,"10":0.00779,"12":0.01947,"13":0.05062,"14":0.16744,"15":0.07399,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.20249,"10.1":0.01168,"11.1":0.02336,"12.1":0.09735,"13.1":0.24143,"14.1":0.40887,"15.1":0.12461,"15.2-15.3":0.10124,"15.4":0.46339,"15.5":2.84651,"15.6":0.10124,"16.0":0.01558},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00654,"7.0-7.1":0.02288,"8.1-8.4":0.03758,"9.0-9.2":0.01634,"9.3":0.28267,"10.0-10.2":0.03431,"10.3":0.29738,"11.0-11.2":0.03268,"11.3-11.4":0.00654,"12.0-12.1":0.06209,"12.2-12.5":0.77776,"13.0-13.1":0.01144,"13.2":0.01634,"13.3":0.03431,"13.4-13.7":0.10457,"14.0-14.4":0.26306,"14.5-14.8":0.6258,"15.0-15.1":0.48691,"15.2-15.3":0.58985,"15.4":1.21402,"15.5":11.02258,"16.0":0.04248},P:{"4":0.52893,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.05289,"8.2":0.07179,"9.2":0.01032,"10.1":0.02116,"11.1-11.2":0.02116,"12.0":0.02116,"13.0":0.03174,"14.0":0.01058,"15.0":0.03174,"16.0":0.11637,"17.0":1.69258},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00698,"4.4":0,"4.4.3-4.4.4":0.02966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03505,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.20764},Q:{"10.4":0},O:{"0":1.64278},H:{"0":2.53239},L:{"0":38.89478}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00408,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00408,"49":0,"50":0,"51":0.00408,"52":0.01225,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00408,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00408,"85":0,"86":0,"87":0,"88":0,"89":0.00408,"90":0,"91":0.00408,"92":0,"93":0,"94":0.00408,"95":0,"96":0,"97":0,"98":0.00408,"99":0.01225,"100":0.00408,"101":0.04083,"102":0.80027,"103":0.08574,"104":0.00408,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.02858,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01633,"48":0,"49":0.09799,"50":0.00408,"51":0,"52":0,"53":0,"54":0,"55":0.00408,"56":0.00817,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.01225,"63":0,"64":0,"65":0.00408,"66":0,"67":0,"68":0.00408,"69":0.00408,"70":0.00408,"71":0,"72":0.00817,"73":0.00408,"74":0.00408,"75":0.00817,"76":0,"77":0,"78":0.01633,"79":0.10208,"80":0.00408,"81":0.02042,"83":0.00817,"84":0.0245,"85":0,"86":0.00408,"87":0.03266,"88":0.00817,"89":0.01225,"90":0,"91":0.02042,"92":0.04491,"93":0.00817,"94":0.00408,"95":0.00817,"96":0.01633,"97":0.02858,"98":0.01225,"99":0.02858,"100":0.03675,"101":0.05716,"102":0.4328,"103":9.86045,"104":0.0245,"105":0.00817,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01225,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00408,"37":0.00408,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03266,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00817,"55":0,"56":0.00408,"57":0,"58":0.00408,"60":0.00817,"62":0,"63":0.26131,"64":0.02858,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00408,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00408,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00408,"86":0.00817,"87":0.00408,"88":0.31439,"89":0.08166,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00408,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00408,"98":0,"99":0.00408,"100":0.00408,"101":0.00817,"102":0.0245,"103":0.82885,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00408,"11":0,"12":0.00817,"13":0.02042,"14":0.06941,"15":0.02858,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.08166,"10.1":0.00408,"11.1":0.00817,"12.1":0.04083,"13.1":0.09799,"14.1":0.1674,"15.1":0.049,"15.2-15.3":0.04083,"15.4":0.18782,"15.5":1.15957,"15.6":0.04083,"16.0":0.00817},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00937,"7.0-7.1":0.03281,"8.1-8.4":0.0539,"9.0-9.2":0.02343,"9.3":0.4054,"10.0-10.2":0.04921,"10.3":0.42649,"11.0-11.2":0.04687,"11.3-11.4":0.00937,"12.0-12.1":0.08905,"12.2-12.5":1.11545,"13.0-13.1":0.0164,"13.2":0.02343,"13.3":0.04921,"13.4-13.7":0.14998,"14.0-14.4":0.37728,"14.5-14.8":0.89751,"15.0-15.1":0.69833,"15.2-15.3":0.84596,"15.4":1.74113,"15.5":15.80841,"16.0":0.06093},P:{"4":0.50682,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06335,"8.2":0,"9.2":0.01056,"10.1":0.02112,"11.1-11.2":0.03168,"12.0":0.02112,"13.0":0.03168,"14.0":0.02112,"15.0":0.02112,"16.0":0.10559,"17.0":1.61549,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01765,"4.4":0,"4.4.3-4.4.4":0.07501},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01633,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.67859},S:{"2.5":0},R:{_:"0"},M:{"0":0.20118},Q:{"10.4":0},O:{"0":1.59167},H:{"0":2.4536}}; 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 01c5d42301a18dd..3d18cbc8ce0ba25 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:{"52":0.03787,"53":0.00379,"56":0.00757,"63":0.00379,"66":0.00379,"68":0.00379,"72":0.01136,"73":0.00379,"78":0.01894,"79":0.00379,"81":0.01136,"83":0.00379,"84":0.00379,"85":0.00379,"86":0.00757,"88":0.00757,"89":0.00757,"91":0.02651,"93":0.00757,"94":0.00379,"95":0.00379,"96":0.03787,"97":0.00757,"98":0.01515,"99":0.05681,"100":0.03787,"101":0.19692,"102":1.99575,"103":0.21586,"104":0.00379,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 55 57 58 59 60 61 62 64 65 67 69 70 71 74 75 76 77 80 82 87 90 92 105 3.5 3.6"},D:{"34":0.00379,"38":0.00757,"41":0.00757,"49":0.04166,"50":0.01894,"53":0.00379,"60":0.01515,"62":0.00757,"63":0.00757,"65":0.00379,"68":0.01515,"69":0.0303,"70":0.0303,"71":0.00379,"72":0.01136,"73":0.00757,"74":0.00757,"75":0.00757,"76":0.00757,"77":0.00379,"78":0.00757,"79":0.1174,"80":0.01894,"81":0.02651,"83":0.01515,"84":0.01894,"85":0.04544,"86":0.02272,"87":0.05681,"88":0.02272,"89":0.03408,"90":0.02272,"91":1.0793,"92":0.06438,"93":0.02272,"94":0.02651,"95":0.0303,"96":0.06817,"97":0.07953,"98":0.06059,"99":0.08331,"100":0.13633,"101":0.15905,"102":0.92024,"103":24.11183,"104":0.00757,"105":0.01136,_:"4 5 6 7 8 9 10 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 51 52 54 55 56 57 58 59 61 64 66 67 106"},F:{"28":0.03408,"79":0.00757,"82":0.00379,"84":0.00379,"85":0.02272,"86":0.00757,"87":0.0303,"88":1.21941,"89":0.39006,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01515,"18":0.02272,"84":0.00757,"89":0.00379,"91":0.00379,"92":0.01136,"96":0.00757,"97":0.00379,"98":0.00379,"99":0.00757,"100":0.01894,"101":0.02272,"102":0.0303,"103":1.7761,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90 93 94 95"},E:{"4":0,"13":0.00757,"14":0.11361,"15":0.00757,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00379,"11.1":0.01136,"12.1":0.00379,"13.1":0.03408,"14.1":0.04923,"15.1":0.00757,"15.2-15.3":0.01136,"15.4":0.04166,"15.5":0.29917,"15.6":0.01515,"16.0":0.00757},G:{"8":0.00031,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00214,"6.0-6.1":0.00061,"7.0-7.1":0.0095,"8.1-8.4":0.00092,"9.0-9.2":0.00521,"9.3":0.01593,"10.0-10.2":0.00061,"10.3":0.01133,"11.0-11.2":0.0046,"11.3-11.4":0.00337,"12.0-12.1":0.00123,"12.2-12.5":0.11426,"13.0-13.1":0.00184,"13.2":0.00184,"13.3":0.0049,"13.4-13.7":0.0291,"14.0-14.4":0.1691,"14.5-14.8":0.17584,"15.0-15.1":0.04901,"15.2-15.3":0.0772,"15.4":0.14674,"15.5":2.15447,"16.0":0.02083},P:{"4":0.36922,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.47178,"8.2":0.07179,"9.2":0.02051,"10.1":0.02051,"11.1-11.2":0.13333,"12.0":0.03077,"13.0":0.11282,"14.0":0.11282,"15.0":0.07179,"16.0":0.35896,"17.0":2.35891},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.02171,"4.4":0,"4.4.3-4.4.4":0.09227},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05681,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12426},Q:{"10.4":0},O:{"0":0.21746},H:{"0":0.48233},L:{"0":55.67376}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01534,"53":0,"54":0,"55":0,"56":0.00384,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00384,"67":0,"68":0.00384,"69":0,"70":0,"71":0,"72":0.00384,"73":0.00384,"74":0,"75":0,"76":0,"77":0,"78":0.00767,"79":0,"80":0,"81":0.00384,"82":0,"83":0.00384,"84":0,"85":0,"86":0.00384,"87":0,"88":0.00384,"89":0.00384,"90":0,"91":0.01151,"92":0,"93":0.00384,"94":0.00384,"95":0.00384,"96":0.01534,"97":0.00384,"98":0.00767,"99":0.02301,"100":0.01534,"101":0.08054,"102":0.79385,"103":0.08437,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00384,"39":0,"40":0,"41":0.00384,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01534,"50":0.00767,"51":0,"52":0,"53":0.00384,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00767,"61":0,"62":0.00384,"63":0.00384,"64":0,"65":0.00384,"66":0,"67":0,"68":0.00384,"69":0.01151,"70":0.01151,"71":0.00384,"72":0.00384,"73":0.00384,"74":0.00384,"75":0.00384,"76":0.00384,"77":0,"78":0.00384,"79":0.04602,"80":0.00767,"81":0.01151,"83":0.00767,"84":0.00767,"85":0.01918,"86":0.00767,"87":0.02685,"88":0.01151,"89":0.01534,"90":0.01151,"91":0.41418,"92":0.03068,"93":0.01151,"94":0.01534,"95":0.01151,"96":0.03068,"97":0.03068,"98":0.02685,"99":0.03452,"100":0.05753,"101":0.0652,"102":0.36433,"103":9.34206,"104":0.00384,"105":0.00384,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01151,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00384,"62":0,"63":0.04219,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00384,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00767,"86":0.00384,"87":0.01151,"88":0.46787,"89":0.14957,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00767,"18":0.00767,"79":0,"80":0,"81":0,"83":0,"84":0.00384,"85":0,"86":0,"87":0,"88":0,"89":0.00384,"90":0,"91":0,"92":0.00384,"93":0,"94":0,"95":0,"96":0.00384,"97":0,"98":0.00384,"99":0.00384,"100":0.00767,"101":0.00767,"102":0.01534,"103":0.6903,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00384,"14":0.04219,"15":0.00384,_:"0","3.1":0,"3.2":0,"5.1":0.00384,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00384,"12.1":0,"13.1":0.01151,"14.1":0.01918,"15.1":0.00384,"15.2-15.3":0.00384,"15.4":0.01534,"15.5":0.11505,"15.6":0.00384,"16.0":0.00384},G:{"8":0.00044,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00309,"6.0-6.1":0.00088,"7.0-7.1":0.01368,"8.1-8.4":0.00132,"9.0-9.2":0.0075,"9.3":0.02295,"10.0-10.2":0.00088,"10.3":0.01633,"11.0-11.2":0.00662,"11.3-11.4":0.00486,"12.0-12.1":0.00177,"12.2-12.5":0.16464,"13.0-13.1":0.00265,"13.2":0.00265,"13.3":0.00706,"13.4-13.7":0.04193,"14.0-14.4":0.24364,"14.5-14.8":0.25335,"15.0-15.1":0.07062,"15.2-15.3":0.11123,"15.4":0.21142,"15.5":3.10424,"16.0":0.03001},P:{"4":0.3756,"5.0-5.4":0.01015,"6.2-6.4":0.03045,"7.2-7.4":0.46696,"8.2":0,"9.2":0.03045,"10.1":0.01015,"11.1-11.2":0.14212,"12.0":0.04061,"13.0":0.10151,"14.0":0.11167,"15.0":0.07106,"16.0":0.335,"17.0":2.30437,"18.0":0.0203},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00827,"4.2-4.3":0.04411,"4.4":0,"4.4.3-4.4.4":0.18747},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02301,"5.5":0},J:{"7":0,"10":0.00617},N:{"10":0,"11":0},L:{"0":74.13907},S:{"2.5":0},R:{_:"0"},M:{"0":0.1233},Q:{"10.4":0},O:{"0":0.21578},H:{"0":0.4786}}; 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 b28fd81af1432b5..2ea013df3033186 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.00447,"52":0.01786,"68":0.00893,"72":0.00447,"78":0.0268,"79":0.00893,"80":0.00447,"81":0.00447,"88":0.00893,"89":0.00447,"90":0.00447,"91":0.06699,"94":0.03573,"95":0.00447,"96":0.00447,"97":0.0134,"98":0.00447,"99":0.02233,"100":0.01786,"101":0.08039,"102":1.43805,"103":0.1965,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 82 83 84 85 86 87 92 93 104 105 3.5 3.6"},D:{"38":0.00893,"41":0.00447,"47":0.00893,"49":0.02233,"51":0.0134,"53":0.00447,"55":0.00893,"58":0.00447,"63":0.00893,"65":0.00447,"67":0.00447,"68":0.00893,"69":0.01786,"70":0.00893,"71":0.00447,"72":0.00893,"74":0.0134,"75":0.01786,"76":0.0268,"77":0.00893,"78":0.0134,"79":0.09379,"80":0.02233,"81":0.04913,"83":0.04466,"84":0.08039,"85":0.06699,"86":0.07592,"87":0.08932,"88":0.02233,"89":0.04466,"90":0.04019,"91":0.76369,"92":0.03573,"93":0.03126,"94":0.0268,"95":0.02233,"96":0.06252,"97":0.05359,"98":0.05359,"99":0.10718,"100":0.14738,"101":0.2099,"102":1.09417,"103":29.30589,"104":0.06252,"105":0.0134,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 52 54 56 57 59 60 61 62 64 66 73 106"},F:{"36":0.00447,"82":0.00893,"85":0.02233,"86":0.0134,"87":0.08485,"88":2.94756,"89":0.67437,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.05806,"16":0.00447,"18":0.0134,"84":0.00447,"92":0.0134,"96":0.00447,"99":0.00447,"100":0.00893,"101":0.09379,"102":0.05359,"103":3.35843,_:"12 13 14 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 97 98"},E:{"4":0,"13":0.00893,"14":0.02233,"15":0.00893,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01786,"11.1":0.00447,"12.1":0.00893,"13.1":0.04913,"14.1":0.07592,"15.1":0.01786,"15.2-15.3":0.01786,"15.4":0.05806,"15.5":0.33048,"15.6":0.02233,"16.0":0.00447},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.00145,"8.1-8.4":0,"9.0-9.2":0.00072,"9.3":0.02899,"10.0-10.2":0.00072,"10.3":0.03769,"11.0-11.2":0.00507,"11.3-11.4":0.0145,"12.0-12.1":0.00797,"12.2-12.5":0.19207,"13.0-13.1":0.0058,"13.2":0.00435,"13.3":0.01595,"13.4-13.7":0.07321,"14.0-14.4":0.16163,"14.5-14.8":0.57405,"15.0-15.1":0.0993,"15.2-15.3":0.18555,"15.4":0.36313,"15.5":5.26788,"16.0":0.04131},P:{"4":0.10318,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.21669,"8.2":0.07179,"9.2":0.01032,"10.1":0.02051,"11.1-11.2":0.05159,"12.0":0.01032,"13.0":0.05159,"14.0":0.06191,"15.0":0.03096,"16.0":0.12382,"17.0":1.92954},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.01006,"4.4":0,"4.4.3-4.4.4":0.04151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00462,"9":0.01848,"11":0.11088,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.14388},Q:{"10.4":0},O:{"0":0.09961},H:{"0":0.22005},L:{"0":44.41452}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00449,"48":0,"49":0,"50":0,"51":0,"52":0.00899,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00449,"69":0,"70":0,"71":0,"72":0.00449,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01348,"79":0.00449,"80":0.00449,"81":0.00449,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00449,"89":0.00449,"90":0.00899,"91":0.03146,"92":0,"93":0,"94":0.01348,"95":0.00449,"96":0.00449,"97":0.00449,"98":0.00449,"99":0.00899,"100":0.00899,"101":0.04045,"102":0.69208,"103":0.09437,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00449,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00449,"48":0,"49":0.00899,"50":0,"51":0.00449,"52":0,"53":0.00449,"54":0,"55":0.00449,"56":0,"57":0,"58":0.00449,"59":0,"60":0,"61":0,"62":0,"63":0.00449,"64":0,"65":0.00449,"66":0,"67":0.00449,"68":0.00449,"69":0.00899,"70":0.00449,"71":0.00449,"72":0.00449,"73":0,"74":0.00449,"75":0.00899,"76":0.01348,"77":0.00449,"78":0.00449,"79":0.04045,"80":0.00899,"81":0.02247,"83":0.02247,"84":0.03595,"85":0.03146,"86":0.03595,"87":0.04045,"88":0.00899,"89":0.02247,"90":0.01798,"91":0.34154,"92":0.01798,"93":0.01348,"94":0.01348,"95":0.00899,"96":0.02696,"97":0.02696,"98":0.02247,"99":0.04943,"100":0.06741,"101":0.09437,"102":0.49883,"103":13.27078,"104":0.02696,"105":0.00449,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00899,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00449,"83":0,"84":0,"85":0.00899,"86":0.00449,"87":0.03595,"88":1.32573,"89":0.30559,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.02696,"16":0.00449,"17":0,"18":0.00899,"79":0,"80":0,"81":0,"83":0,"84":0.00449,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00449,"93":0,"94":0,"95":0,"96":0.00449,"97":0,"98":0,"99":0.00449,"100":0.00449,"101":0.04494,"102":0.02696,"103":1.52796,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00449,"14":0.00899,"15":0.00449,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00899,"10.1":0,"11.1":0,"12.1":0.00449,"13.1":0.02247,"14.1":0.03146,"15.1":0.00899,"15.2-15.3":0.00899,"15.4":0.02696,"15.5":0.1483,"15.6":0.00899,"16.0":0.00449},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00331,"6.0-6.1":0,"7.0-7.1":0.0022,"8.1-8.4":0,"9.0-9.2":0.0011,"9.3":0.04408,"10.0-10.2":0.0011,"10.3":0.0573,"11.0-11.2":0.00771,"11.3-11.4":0.02204,"12.0-12.1":0.01212,"12.2-12.5":0.292,"13.0-13.1":0.00882,"13.2":0.00661,"13.3":0.02424,"13.4-13.7":0.11129,"14.0-14.4":0.24572,"14.5-14.8":0.87269,"15.0-15.1":0.15096,"15.2-15.3":0.28208,"15.4":0.55204,"15.5":8.00849,"16.0":0.06281},P:{"4":0.10307,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21645,"8.2":0,"9.2":0.01031,"10.1":0,"11.1-11.2":0.05154,"12.0":0.01031,"13.0":0.05154,"14.0":0.06184,"15.0":0.03092,"16.0":0.12369,"17.0":1.91715,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01019,"4.2-4.3":0.02717,"4.4":0,"4.4.3-4.4.4":0.11208},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00449,"9":0.00899,"10":0,"11":0.04943,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.33124},S:{"2.5":0},R:{_:"0"},M:{"0":0.14316},Q:{"10.4":0},O:{"0":0.09911},H:{"0":0.21893}}; 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 51519ad5c8cb7bd..8927467e8d9733b 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:{"47":0.01707,"48":0.0384,"52":0.01707,"67":0.00427,"78":0.02134,"91":0.03414,"95":0.09814,"96":0.00853,"97":0.00427,"100":0.0128,"101":0.11521,"102":0.93447,"103":0.08534,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 98 99 104 105 3.5 3.6"},D:{"49":0.16215,"56":0.00853,"63":0.00427,"65":0.02987,"68":0.00853,"69":0.0128,"71":0.00853,"75":0.06827,"76":0.28162,"77":0.0128,"78":0.01707,"79":0.01707,"81":0.00427,"83":0.04267,"84":0.00853,"86":0.00853,"87":0.0256,"88":0.00853,"90":0.02987,"91":0.04694,"92":0.0128,"93":0.17921,"94":0.0128,"95":0.00427,"96":0.04267,"97":0.11521,"98":0.0256,"99":0.0384,"100":0.10241,"101":0.26882,"102":1.76654,"103":16.53036,"104":0.02134,"105":0.00853,"106":0.00427,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 67 70 72 73 74 80 85 89"},F:{"87":0.0128,"88":0.28589,"89":0.09814,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00427,"13":0.00427,"15":0.00427,"16":0.02134,"17":0.02134,"18":0.02987,"96":0.02987,"97":0.01707,"98":0.00427,"99":0.00853,"100":0.00853,"101":0.05974,"102":0.24749,"103":6.61812,_:"14 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95"},E:{"4":0,"13":0.02987,"14":0.13654,"15":0.07254,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00853,"11.1":0.02134,"12.1":0.13654,"13.1":0.55471,"14.1":0.60591,"15.1":0.19202,"15.2-15.3":0.18775,"15.4":0.64432,"15.5":4.16886,"15.6":0.15361,"16.0":0.02134},G:{"8":0,"3.2":0,"4.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.08203,"10.0-10.2":0,"10.3":0.09052,"11.0-11.2":0.03677,"11.3-11.4":0.01697,"12.0-12.1":0.0198,"12.2-12.5":0.41299,"13.0-13.1":0.01131,"13.2":0,"13.3":0.0396,"13.4-13.7":0.09052,"14.0-14.4":0.34793,"14.5-14.8":1.28705,"15.0-15.1":0.44693,"15.2-15.3":1.13147,"15.4":2.16111,"15.5":21.61397,"16.0":0.08486},P:{"4":0.05132,"5.0-5.4":0.0104,"6.2-6.4":0.04102,"7.2-7.4":0.29766,"8.2":0.07179,"9.2":0.06158,"10.1":0.02051,"11.1-11.2":0.26687,"12.0":0.05132,"13.0":0.28739,"14.0":0.26687,"15.0":0.06158,"16.0":0.22581,"17.0":4.57778},I:{"0":0,"3":0,"4":0.00328,"2.1":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.05405},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14081,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.09173},Q:{"10.4":0},O:{"0":0.01147},H:{"0":0.05428},L:{"0":29.17221}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00441,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00883,"48":0.01765,"49":0,"50":0,"51":0,"52":0.00883,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00441,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00883,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01765,"92":0,"93":0,"94":0,"95":0.04413,"96":0.00441,"97":0.00441,"98":0,"99":0,"100":0.00441,"101":0.04854,"102":0.43689,"103":0.03972,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00441,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.07061,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00441,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00441,"64":0,"65":0.01324,"66":0,"67":0,"68":0.00441,"69":0.00441,"70":0,"71":0.00441,"72":0,"73":0,"74":0,"75":0.03089,"76":0.12356,"77":0.00441,"78":0.00883,"79":0.00883,"80":0,"81":0.00441,"83":0.01765,"84":0.00441,"85":0,"86":0.00441,"87":0.01324,"88":0.00441,"89":0,"90":0.01324,"91":0.02207,"92":0.00441,"93":0.07943,"94":0.00441,"95":0,"96":0.01765,"97":0.04854,"98":0.01324,"99":0.01765,"100":0.04854,"101":0.11915,"102":0.7811,"103":7.30793,"104":0.00883,"105":0.00441,"106":0.00441,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00441,"88":0.12798,"89":0.04413,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00441,"14":0,"15":0,"16":0.00883,"17":0.00883,"18":0.01324,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01324,"97":0.00883,"98":0,"99":0.00441,"100":0.00441,"101":0.02648,"102":0.11915,"103":2.93906,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01324,"14":0.06178,"15":0.03089,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00441,"11.1":0.00883,"12.1":0.06178,"13.1":0.24272,"14.1":0.26919,"15.1":0.08385,"15.2-15.3":0.08385,"15.4":0.28243,"15.5":1.84022,"15.6":0.0662,"16.0":0.00883},G:{"8":0,"3.2":0,"4.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.11771,"10.0-10.2":0,"10.3":0.12989,"11.0-11.2":0.05277,"11.3-11.4":0.02435,"12.0-12.1":0.02841,"12.2-12.5":0.59261,"13.0-13.1":0.01624,"13.2":0,"13.3":0.05683,"13.4-13.7":0.12989,"14.0-14.4":0.49925,"14.5-14.8":1.84683,"15.0-15.1":0.64132,"15.2-15.3":1.62358,"15.4":3.10105,"15.5":31.01452,"16.0":0.12177},P:{"4":0.05165,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.28922,"8.2":0,"9.2":0.06198,"10.1":0.01033,"11.1-11.2":0.25823,"12.0":0.05165,"13.0":0.27889,"14.0":0.26856,"15.0":0.06198,"16.0":0.21691,"17.0":4.44157,"18.0":0.02066},I:{"0":0,"3":0,"4":0.03799,"2.1":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.62687},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06178,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.30132},S:{"2.5":0},R:{_:"0"},M:{"0":0.08939},Q:{"10.4":0},O:{"0":0.01117},H:{"0":0.05289}}; 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 022a2f79fb833ca..c496ae10a94fec4 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:{"44":0.00803,"52":0.00536,"76":0.00268,"78":0.01875,"84":0.00803,"88":0.00268,"91":0.00803,"94":0.00268,"95":0.00803,"96":0.01071,"99":0.1098,"100":0.00803,"101":0.07498,"102":0.69092,"103":0.09373,"104":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 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 85 86 87 89 90 92 93 97 98 105 3.5 3.6"},D:{"43":0.05624,"49":0.03481,"53":0.00803,"58":0.01071,"65":0.05892,"66":0.00536,"67":0.02678,"69":0.00268,"73":0.00536,"77":0.0241,"78":0.00803,"79":0.00268,"80":0.00536,"81":0.02142,"84":0.00268,"86":0.01071,"87":0.04285,"88":0.01071,"89":0.00536,"90":0.02142,"91":0.01339,"92":0.0241,"94":0.01607,"95":0.01875,"96":0.02678,"97":0.00803,"98":0.06427,"99":0.04017,"100":0.15265,"101":0.14997,"102":0.79804,"103":18.6121,"104":0.10444,"105":0.12319,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 54 55 56 57 59 60 61 62 63 64 68 70 71 72 74 75 76 83 85 93 106"},F:{"46":0.00268,"85":0.00268,"87":0.00536,"88":0.10712,"89":0.11248,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00268,"13":0.00536,"16":0.00536,"18":0.01339,"84":0.01071,"85":0.00268,"87":0.00536,"89":0.00268,"91":0.00536,"92":0.02142,"93":0.01071,"94":0.01607,"95":0.01339,"96":0.01339,"97":0.00536,"98":0.01071,"100":0.01607,"101":0.08302,"102":0.09373,"103":1.70321,_:"14 15 17 79 80 81 83 86 88 90 99"},E:{"4":0,"12":0.00268,"13":0.01607,"14":0.01607,"15":0.0241,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 16.0","9.1":0.00536,"11.1":0.00536,"12.1":0.00803,"13.1":0.10444,"14.1":0.13122,"15.1":0.00536,"15.2-15.3":0.01071,"15.4":0.05892,"15.5":0.40706,"15.6":0.01071},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00379,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01325,"10.0-10.2":0,"10.3":0.01325,"11.0-11.2":0.00379,"11.3-11.4":0.00473,"12.0-12.1":0.04448,"12.2-12.5":0.35772,"13.0-13.1":0.01703,"13.2":0.00852,"13.3":0.06246,"13.4-13.7":0.16277,"14.0-14.4":0.66908,"14.5-14.8":0.87254,"15.0-15.1":0.44573,"15.2-15.3":0.58864,"15.4":0.95582,"15.5":5.01192,"16.0":0.02555},P:{"4":0.20336,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.07118,"8.2":0.07179,"9.2":0.02034,"10.1":0.02051,"11.1-11.2":0.04067,"12.0":0.01067,"13.0":0.13218,"14.0":0.06101,"15.0":0.08134,"16.0":0.15252,"17.0":0.85412},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.01464},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01071,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.06589},Q:{"10.4":0},O:{"0":1.44224},H:{"0":0.50597},L:{"0":62.1882}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00269,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00269,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00539,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00269,"85":0,"86":0.01616,"87":0,"88":0,"89":0,"90":0,"91":0.00269,"92":0,"93":0,"94":0,"95":0.00269,"96":0.00269,"97":0,"98":0,"99":0.02963,"100":0.00269,"101":0.02155,"102":0.18858,"103":0.02425,"104":0.00269,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.01616,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00808,"50":0,"51":0,"52":0,"53":0.00269,"54":0,"55":0,"56":0,"57":0,"58":0.00269,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01616,"66":0.00269,"67":0.00808,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00269,"74":0,"75":0,"76":0,"77":0.00808,"78":0.00269,"79":0,"80":0,"81":0.00539,"83":0,"84":0,"85":0,"86":0.00269,"87":0.01078,"88":0.00269,"89":0,"90":0.00539,"91":0.00269,"92":0.00539,"93":0,"94":0.00539,"95":0.00539,"96":0.00808,"97":0.00269,"98":0.01616,"99":0.01078,"100":0.04041,"101":0.04041,"102":0.21552,"103":5.01623,"104":0.02963,"105":0.03233,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00269,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.09429,"64":0.00269,"65":0.00269,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02963,"89":0.02963,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00269,"17":0,"18":0.00269,"79":0,"80":0,"81":0,"83":0,"84":0.00269,"85":0,"86":0,"87":0.00269,"88":0,"89":0,"90":0,"91":0,"92":0.00539,"93":0.00269,"94":0.00269,"95":0.00269,"96":0.00269,"97":0.00269,"98":0.00269,"99":0,"100":0.00539,"101":0.02155,"102":0.02425,"103":0.46067,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00539,"14":0.00539,"15":0.00808,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00269,"13.1":0.02694,"14.1":0.03502,"15.1":0,"15.2-15.3":0.00269,"15.4":0.01616,"15.5":0.11045,"15.6":0.00269,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00494,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01729,"10.0-10.2":0,"10.3":0.01729,"11.0-11.2":0.00494,"11.3-11.4":0.00617,"12.0-12.1":0.05804,"12.2-12.5":0.46677,"13.0-13.1":0.02223,"13.2":0.01111,"13.3":0.0815,"13.4-13.7":0.21239,"14.0-14.4":0.87304,"14.5-14.8":1.13853,"15.0-15.1":0.58162,"15.2-15.3":0.76808,"15.4":1.2472,"15.5":6.53978,"16.0":0.03334},P:{"4":0.2017,"5.0-5.4":0,"6.2-6.4":0.01008,"7.2-7.4":0.07059,"8.2":0,"9.2":0.02017,"10.1":0,"11.1-11.2":0.05042,"12.0":0,"13.0":0.1311,"14.0":0.06051,"15.0":0.08068,"16.0":0.15127,"17.0":0.83705,"18.0":0.03025},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.03078},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00269,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.49753},S:{"2.5":0},R:{_:"0"},M:{"0":0.06575},Q:{"10.4":0},O:{"0":1.43928},H:{"0":0.50493}}; 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 d01d340d8fd074f..a56390a7c57ccf4 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:{"11":0.02294,"34":0.01529,"47":0.03058,"52":0.01912,"60":0.01529,"68":0.00382,"72":0.01912,"78":0.00765,"81":0.02676,"91":0.11087,"94":0.02294,"96":0.01147,"99":0.01529,"100":0.02676,"101":0.1988,"102":1.73564,"103":0.18733,"104":0.00382,_:"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 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 92 93 95 97 98 105 3.5 3.6"},D:{"38":0.01147,"43":0.01529,"49":0.04205,"53":0.00382,"57":0.01147,"60":0.00382,"61":0.00382,"62":0.01147,"63":0.00382,"65":0.00765,"67":0.00765,"69":0.00765,"70":0.00382,"71":0.00765,"74":0.02676,"77":0.00765,"78":0.01912,"79":0.04588,"80":0.03058,"81":0.01912,"83":0.03441,"84":0.00765,"85":0.00765,"86":0.03441,"87":0.03441,"88":0.01147,"89":0.03441,"90":0.02294,"91":0.02676,"92":0.02676,"93":0.03441,"94":0.01529,"95":0.04205,"96":0.05735,"97":0.06881,"98":0.03441,"99":0.0994,"100":0.09558,"101":0.28673,"102":1.54067,"103":20.37659,"104":0.01529,"105":0.00382,_:"4 5 6 7 8 9 10 11 12 13 14 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 58 59 64 66 68 72 73 75 76 106"},F:{"28":0.00765,"82":0.00765,"83":0.00382,"84":0.00765,"85":0.00765,"86":0.01529,"87":0.04205,"88":0.54669,"89":0.41671,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02294,"13":0.01912,"14":0.03058,"15":0.03058,"16":0.01529,"17":0.01912,"18":0.06117,"84":0.03823,"85":0.01147,"88":0.01147,"89":0.01147,"90":0.00765,"92":0.02676,"95":0.00765,"96":0.01912,"97":0.00382,"98":0.02294,"99":0.01529,"100":0.03058,"101":0.06881,"102":0.17204,"103":3.71213,_:"79 80 81 83 86 87 91 93 94"},E:{"4":0,"13":0.00765,"14":0.04205,"15":0.02294,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.02676,"12.1":0.00765,"13.1":0.06881,"14.1":0.11087,"15.1":0.01912,"15.2-15.3":0.07646,"15.4":0.07646,"15.5":0.48934,"15.6":0.01529},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00851,"6.0-6.1":0.00179,"7.0-7.1":0.02912,"8.1-8.4":0.00179,"9.0-9.2":0.00045,"9.3":0.03987,"10.0-10.2":0,"10.3":0.02195,"11.0-11.2":0.00134,"11.3-11.4":0.00493,"12.0-12.1":0.00672,"12.2-12.5":0.41836,"13.0-13.1":0.00806,"13.2":0.01523,"13.3":0.05062,"13.4-13.7":0.06137,"14.0-14.4":0.11646,"14.5-14.8":0.19037,"15.0-15.1":0.11691,"15.2-15.3":0.14468,"15.4":0.39328,"15.5":2.70951,"16.0":0.06361},P:{"4":0.30608,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.43872,"8.2":0.07179,"9.2":0.0102,"10.1":0.02051,"11.1-11.2":0.08162,"12.0":0.02041,"13.0":0.08162,"14.0":0.11223,"15.0":0.06122,"16.0":0.30608,"17.0":1.71406},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.00133,"4.4":0,"4.4.3-4.4.4":0.02923},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00765,"11":0.14145,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.03089},R:{_:"0"},M:{"0":0.16681},Q:{"10.4":0.01236},O:{"0":0.95141},H:{"0":0.90074},L:{"0":57.64768}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00777,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00388,"33":0,"34":0.00777,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01165,"48":0,"49":0,"50":0,"51":0,"52":0.00777,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00777,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00388,"69":0,"70":0,"71":0,"72":0.00777,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00388,"79":0,"80":0,"81":0.01165,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00388,"89":0,"90":0,"91":0.04271,"92":0,"93":0,"94":0.00777,"95":0,"96":0.00388,"97":0,"98":0,"99":0.00777,"100":0.01165,"101":0.07766,"102":0.71836,"103":0.07378,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00388,"39":0,"40":0.00777,"41":0,"42":0,"43":0.00388,"44":0,"45":0,"46":0.00388,"47":0,"48":0,"49":0.01553,"50":0,"51":0,"52":0,"53":0.00388,"54":0,"55":0,"56":0,"57":0.00388,"58":0.00388,"59":0,"60":0,"61":0.00388,"62":0.00388,"63":0.00388,"64":0,"65":0.00388,"66":0,"67":0.00388,"68":0,"69":0.00388,"70":0.00388,"71":0.00388,"72":0,"73":0,"74":0.01165,"75":0,"76":0,"77":0.00777,"78":0.00777,"79":0.01942,"80":0.01165,"81":0.09319,"83":0.01165,"84":0.00388,"85":0.00388,"86":0.01553,"87":0.01553,"88":0.00777,"89":0.01553,"90":0.00777,"91":0.01165,"92":0.01165,"93":0.01165,"94":0.00388,"95":0.02718,"96":0.0233,"97":0.02718,"98":0.01553,"99":0.03883,"100":0.03883,"101":0.11261,"102":0.62905,"103":7.9718,"104":0.00777,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00388,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01165,"62":0,"63":0.16309,"64":0.02718,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00388,"83":0.00388,"84":0.00388,"85":0.00388,"86":0.00388,"87":0.01553,"88":0.21357,"89":0.16309,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00777,"13":0.00777,"14":0.01165,"15":0.01165,"16":0.00777,"17":0.00777,"18":0.0233,"79":0,"80":0,"81":0,"83":0,"84":0.01553,"85":0.00388,"86":0,"87":0,"88":0.00388,"89":0.00388,"90":0.00388,"91":0,"92":0.01165,"93":0,"94":0,"95":0.00388,"96":0.00777,"97":0,"98":0.00777,"99":0.00777,"100":0.01165,"101":0.03106,"102":0.06989,"103":1.45224,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00388,"14":0.01553,"15":0.00777,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01165,"12.1":0.00388,"13.1":0.02718,"14.1":0.04271,"15.1":0.00777,"15.2-15.3":0.03106,"15.4":0.03106,"15.5":0.19027,"15.6":0.00777,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01279,"6.0-6.1":0.00269,"7.0-7.1":0.04377,"8.1-8.4":0.00269,"9.0-9.2":0.00067,"9.3":0.05992,"10.0-10.2":0,"10.3":0.03299,"11.0-11.2":0.00202,"11.3-11.4":0.00741,"12.0-12.1":0.0101,"12.2-12.5":0.62887,"13.0-13.1":0.01212,"13.2":0.02289,"13.3":0.07608,"13.4-13.7":0.09224,"14.0-14.4":0.17506,"14.5-14.8":0.28616,"15.0-15.1":0.17573,"15.2-15.3":0.21748,"15.4":0.59117,"15.5":4.07285,"16.0":0.09561},P:{"4":0.31522,"5.0-5.4":0,"6.2-6.4":0.01017,"7.2-7.4":0.42707,"8.2":0,"9.2":0.01017,"10.1":0.01017,"11.1-11.2":0.08135,"12.0":0.02034,"13.0":0.08135,"14.0":0.11185,"15.0":0.06101,"16.0":0.29488,"17.0":1.67776,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00091,"4.2-4.3":0.00365,"4.4":0,"4.4.3-4.4.4":0.08038},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00388,"10":0,"11":0.05436,"5.5":0},J:{"7":0,"10":0.00612},N:{"10":0,"11":0},L:{"0":73.1118},S:{"2.5":0.03059},R:{_:"0"},M:{"0":0.16516},Q:{"10.4":0.01223},O:{"0":0.94202},H:{"0":0.89184}}; 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 113f1d46308ae5e..79a45a636d7702e 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:{"50":0.04699,"52":0.17856,"55":0.0094,"65":0.0235,"68":0.0094,"72":0.0047,"78":0.0235,"80":0.0094,"81":0.0141,"82":0.0047,"84":0.0188,"86":0.0094,"88":0.04699,"89":0.0235,"91":0.09868,"94":0.0047,"95":0.0235,"96":0.02819,"97":0.07049,"98":0.04229,"99":0.0188,"100":0.14097,"101":0.15037,"102":2.12395,"103":0.22085,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 66 67 69 70 71 73 74 75 76 77 79 83 85 87 90 92 93 104 105 3.5 3.6"},D:{"22":0.0141,"38":0.03759,"49":0.10338,"51":0.0094,"53":0.08458,"55":0.0047,"61":0.0141,"63":0.0047,"68":0.0047,"69":0.17856,"70":0.0094,"71":0.0141,"72":0.0047,"73":0.0141,"74":0.03289,"75":0.0047,"77":0.0094,"78":0.0094,"79":0.05169,"80":0.03759,"81":0.0235,"83":0.04229,"84":0.11278,"85":0.06109,"86":0.14567,"87":0.16916,"88":0.05639,"89":0.07049,"90":0.05639,"91":0.04699,"92":0.12687,"93":0.0141,"94":0.0141,"95":0.03759,"96":0.06109,"97":0.09398,"98":0.05639,"99":0.12687,"100":0.24905,"101":0.4746,"102":1.28283,"103":20.24329,"104":0.0094,"105":0.0094,_:"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 52 54 56 57 58 59 60 62 64 65 66 67 76 106"},F:{"36":0.10808,"43":0.0047,"49":0.0094,"67":0.0047,"68":0.0188,"69":0.0094,"78":0.0047,"79":0.04699,"80":0.0047,"81":0.0141,"82":0.0235,"83":0.0188,"84":0.02819,"85":0.27724,"86":0.04229,"87":0.19266,"88":4.26669,"89":1.97828,"90":0.0094,_:"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 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 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.0188},B:{"18":0.0188,"86":0.0094,"99":0.03289,"101":0.03289,"102":0.05169,"103":1.77622,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 100"},E:{"4":0,"13":0.03759,"14":0.05169,"15":0.0141,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.11748,"10.1":0.0094,"11.1":0.0188,"12.1":0.0094,"13.1":0.05639,"14.1":0.09398,"15.1":0.05639,"15.2-15.3":0.06579,"15.4":0.22555,"15.5":2.65494,"15.6":0.12217,"16.0":0.0188},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00168,"8.1-8.4":0,"9.0-9.2":0.00168,"9.3":0.03875,"10.0-10.2":0.01179,"10.3":0.03033,"11.0-11.2":0.01179,"11.3-11.4":0.00674,"12.0-12.1":0.0219,"12.2-12.5":0.23924,"13.0-13.1":0.00842,"13.2":0.00674,"13.3":0.03033,"13.4-13.7":0.12467,"14.0-14.4":0.29147,"14.5-14.8":0.50375,"15.0-15.1":0.27799,"15.2-15.3":0.57114,"15.4":1.01087,"15.5":13.15817,"16.0":0.07413},P:{"4":0.02141,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.0107,"8.2":0.07179,"9.2":0.01044,"10.1":0.02051,"11.1-11.2":0.0107,"12.0":0.05351,"13.0":0.03211,"14.0":0.03211,"15.0":0.0107,"16.0":0.07492,"17.0":1.08096},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.00315,"4.4":0,"4.4.3-4.4.4":0.02644},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02888,"9":0.00963,"11":0.15885,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.15897},Q:{"10.4":0},O:{"0":0.17487},H:{"0":1.31941},L:{"0":31.99104}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.02373,"51":0,"52":0.08543,"53":0,"54":0,"55":0.00475,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00949,"66":0,"67":0,"68":0.00475,"69":0,"70":0,"71":0,"72":0.00475,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00949,"79":0,"80":0.00475,"81":0.00949,"82":0.00475,"83":0,"84":0.00949,"85":0,"86":0.00475,"87":0,"88":0.02373,"89":0.01424,"90":0,"91":0.04746,"92":0.00475,"93":0,"94":0.00475,"95":0.01424,"96":0.01424,"97":0.03322,"98":0.01898,"99":0.00949,"100":0.06644,"101":0.07594,"102":1.05361,"103":0.10916,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00475,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01898,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04746,"50":0,"51":0.00475,"52":0,"53":0.04271,"54":0,"55":0.00475,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00475,"62":0,"63":0.00475,"64":0.00475,"65":0,"66":0,"67":0,"68":0.00475,"69":0.08543,"70":0.00475,"71":0.00949,"72":0,"73":0.00475,"74":0.01898,"75":0.00475,"76":0,"77":0.00475,"78":0.00475,"79":0.02373,"80":0.01898,"81":0.01898,"83":0.01898,"84":0.05221,"85":0.02848,"86":0.07119,"87":0.08068,"88":0.02848,"89":0.03797,"90":0.02848,"91":0.02373,"92":0.07594,"93":0.00475,"94":0.00475,"95":0.02373,"96":0.02848,"97":0.04746,"98":0.02848,"99":0.0617,"100":0.14713,"101":0.23255,"102":0.62173,"103":9.69608,"104":0.00475,"105":0.00475,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.05221,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00475,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00475,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00475,"62":0,"63":0.05221,"64":0,"65":0,"66":0,"67":0.00475,"68":0.00949,"69":0.00475,"70":0.00475,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02373,"80":0.00475,"81":0.00475,"82":0.01424,"83":0.00949,"84":0.01424,"85":0.13289,"86":0.01898,"87":0.09017,"88":2.02654,"89":0.93971,"90":0.00475,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00949},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00949,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00475,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01424,"100":0,"101":0.01898,"102":0.02848,"103":0.86377,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01898,"14":0.02373,"15":0.00475,_:"0","3.1":0,"3.2":0,"5.1":0.05695,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00475,"11.1":0.00949,"12.1":0.00475,"13.1":0.02848,"14.1":0.04746,"15.1":0.02373,"15.2-15.3":0.02848,"15.4":0.10916,"15.5":1.25769,"15.6":0.05695,"16.0":0.00949},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00251,"8.1-8.4":0,"9.0-9.2":0.00251,"9.3":0.05764,"10.0-10.2":0.01754,"10.3":0.04511,"11.0-11.2":0.01754,"11.3-11.4":0.01002,"12.0-12.1":0.03258,"12.2-12.5":0.35586,"13.0-13.1":0.01253,"13.2":0.01002,"13.3":0.04511,"13.4-13.7":0.18545,"14.0-14.4":0.43354,"14.5-14.8":0.7493,"15.0-15.1":0.4135,"15.2-15.3":0.84954,"15.4":1.50362,"15.5":19.5721,"16.0":0.11027},P:{"4":0.05203,"5.0-5.4":0,"6.2-6.4":0.28097,"7.2-7.4":0.02081,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01041,"12.0":0.05203,"13.0":0.04163,"14.0":0.03122,"15.0":0.01041,"16.0":0.07284,"17.0":1.04063,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00515,"4.2-4.3":0.00735,"4.4":0,"4.4.3-4.4.4":0.06174},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01499,"9":0.005,"10":0,"11":0.07494,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":45.28426},S:{"2.5":0},R:{_:"0"},M:{"0":0.15762},Q:{"10.4":0.00525},O:{"0":0.17338},H:{"0":1.3082}}; 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 143d687e082bee0..91fb4addb6f7418 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:{"52":0.00381,"71":0.00381,"78":0.00381,"81":0.45315,"91":0.01904,"93":0.02285,"95":0.00381,"99":0.01523,"100":0.01142,"101":0.05331,"102":0.91392,"103":0.10282,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 82 83 84 85 86 87 88 89 90 92 94 96 97 98 104 105 3.5 3.6"},D:{"40":0.19802,"49":0.0495,"53":0.00381,"65":0.00381,"68":0.00762,"70":0.00762,"73":0.00381,"74":0.01523,"75":0.03046,"76":0.16374,"77":0.00762,"79":0.02285,"81":0.01142,"83":0.00762,"84":0.03427,"85":0.00762,"86":0.01904,"87":0.01142,"91":0.02285,"92":0.01523,"93":0.19802,"94":0.00762,"95":0.02666,"96":0.02285,"97":0.05331,"98":0.01142,"99":0.02285,"100":0.54835,"101":2.87504,"102":1.37469,"103":15.66992,"104":0.01142,"105":0.00381,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 67 69 71 72 78 80 88 89 90 106"},F:{"28":0.01523,"78":0.00762,"79":0.00381,"86":0.01523,"87":0.01523,"88":0.73875,"89":0.92154,_:"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 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00381,"15":0.00381,"17":0.00762,"18":0.01142,"89":0.00381,"92":0.00762,"93":0.03046,"101":0.06854,"102":0.11043,"103":3.07686,_:"13 14 16 79 80 81 83 84 85 86 87 88 90 91 94 95 96 97 98 99 100"},E:{"4":0,"12":0.00762,"13":0.01523,"14":0.12186,"15":0.01904,_:"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.01142,"12.1":0.06093,"13.1":0.22848,"14.1":0.11043,"15.1":0.20944,"15.2-15.3":0.11424,"15.4":1.44323,"15.5":4.19642,"15.6":0.20944,"16.0":0.03427},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00823,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0247,"9.0-9.2":0.0247,"9.3":0.13722,"10.0-10.2":0,"10.3":0.26894,"11.0-11.2":0,"11.3-11.4":0.18661,"12.0-12.1":0,"12.2-12.5":0.59552,"13.0-13.1":0.00549,"13.2":0,"13.3":0.08507,"13.4-13.7":0.04116,"14.0-14.4":0.14819,"14.5-14.8":0.5818,"15.0-15.1":0.50496,"15.2-15.3":1.46273,"15.4":3.33162,"15.5":19.45457,"16.0":0.13996},P:{"4":0.11614,"5.0-5.4":0.0104,"6.2-6.4":0.29967,"7.2-7.4":0.15837,"8.2":0.07179,"9.2":0.01056,"10.1":0.02051,"11.1-11.2":0.05279,"12.0":0.01067,"13.0":0.04223,"14.0":0.12669,"15.0":0.02112,"16.0":0.10558,"17.0":2.2277},I:{"0":0,"3":0,"4":0.00443,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00104,"4.2-4.3":0.0013,"4.4":0,"4.4.3-4.4.4":0.01799},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03046,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.06812},Q:{"10.4":0},O:{"0":0.22914},H:{"0":0.04691},L:{"0":34.03431}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00401,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00401,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.18059,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00803,"92":0,"93":0.00803,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00803,"100":0.00401,"101":0.02408,"102":0.38124,"103":0.04414,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.08026,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02007,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00401,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00401,"66":0,"67":0,"68":0.00401,"69":0,"70":0.00401,"71":0,"72":0,"73":0.00401,"74":0.00401,"75":0.01204,"76":0.06421,"77":0.00401,"78":0,"79":0.00803,"80":0,"81":0.00803,"83":0.00401,"84":0.01605,"85":0.00401,"86":0.00803,"87":0.00401,"88":0,"89":0,"90":0,"91":0.00803,"92":0.00803,"93":0.08026,"94":0.00401,"95":0.02007,"96":0.00803,"97":0.02809,"98":0.00401,"99":0.00803,"100":0.22072,"101":1.15574,"102":0.55379,"103":6.34455,"104":0.00401,"105":0.00401,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00401,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00803,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00401,"79":0.00401,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00803,"87":0.00803,"88":0.29696,"89":0.3692,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00401,"18":0.00401,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00401,"90":0,"91":0,"92":0.00401,"93":0.01204,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.02809,"102":0.04414,"103":1.236,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00401,"13":0.00401,"14":0.04816,"15":0.00803,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00401,"12.1":0.02408,"13.1":0.0923,"14.1":0.04414,"15.1":0.08427,"15.2-15.3":0.04816,"15.4":0.57787,"15.5":1.68546,"15.6":0.08427,"16.0":0.01204},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0113,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0339,"9.0-9.2":0.0339,"9.3":0.18835,"10.0-10.2":0,"10.3":0.36916,"11.0-11.2":0,"11.3-11.4":0.25615,"12.0-12.1":0,"12.2-12.5":0.81742,"13.0-13.1":0.00753,"13.2":0,"13.3":0.11677,"13.4-13.7":0.0565,"14.0-14.4":0.20341,"14.5-14.8":0.79859,"15.0-15.1":0.69312,"15.2-15.3":2.00777,"15.4":4.57305,"15.5":26.70377,"16.0":0.19211},P:{"4":0.13672,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15776,"8.2":0,"9.2":0.01052,"10.1":0,"11.1-11.2":0.05259,"12.0":0.01052,"13.0":0.04207,"14.0":0.12621,"15.0":0.02103,"16.0":0.10517,"17.0":2.10342,"18.0":0},I:{"0":0,"3":0,"4":0.18094,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04257,"4.2-4.3":0.05322,"4.4":0,"4.4.3-4.4.4":0.73441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01204,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.14834},S:{"2.5":0},R:{_:"0"},M:{"0":0.06586},Q:{"10.4":0},O:{"0":0.22152},H:{"0":0.04534}}; 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 15cd23b8645d299..b90a03b4cdca6f5 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.01619,"43":0.01619,"44":0.07014,"45":0.01619,"48":0.0054,"50":0.0054,"51":0.0054,"52":0.04856,"53":0.0054,"54":0.0054,"55":0.0054,"56":0.0054,"57":0.02158,"66":0.01079,"68":0.01079,"70":0.01079,"78":0.06474,"80":0.0054,"81":0.01079,"82":0.0054,"83":0.0054,"84":0.01079,"87":0.01079,"88":0.01079,"89":0.0054,"90":0.0054,"91":0.05935,"92":0.0054,"94":0.0054,"95":0.0054,"96":0.01619,"97":0.01079,"98":0.01079,"99":0.02698,"100":0.03237,"101":0.23199,"102":3.00502,"103":0.36147,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 58 59 60 61 62 63 64 65 67 69 71 72 73 74 75 76 77 79 85 86 93 104 105 3.5 3.6"},D:{"38":0.0054,"47":0.02158,"48":0.18883,"49":0.12409,"59":0.0054,"60":0.05935,"63":0.0054,"65":0.02158,"66":0.01079,"67":0.01619,"68":0.01079,"69":0.05395,"70":0.0054,"72":0.01619,"74":0.01619,"75":0.01079,"76":0.03237,"77":0.01079,"78":0.01619,"79":0.09172,"80":0.05935,"81":0.03777,"83":0.24817,"84":0.08632,"85":0.07553,"86":0.07553,"87":0.13488,"88":0.02158,"89":0.02158,"90":0.01619,"91":0.04316,"92":0.03237,"93":0.09172,"94":0.04316,"95":0.01619,"96":0.1079,"97":0.09711,"98":0.16185,"99":0.12948,"100":0.28594,"101":0.49634,"102":2.25511,"103":26.45708,"104":0.03237,"105":0.01079,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 55 56 57 58 61 62 64 71 73 106"},F:{"52":0.0054,"85":0.0054,"86":0.0054,"87":0.03237,"88":0.51253,"89":0.18883,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0054,"13":0.0054,"15":0.01079,"16":0.01079,"18":0.01619,"85":0.01079,"86":0.0054,"92":0.0054,"96":0.01079,"97":0.01079,"98":0.0054,"99":0.01079,"100":0.01619,"101":0.12948,"102":0.24817,"103":7.18075,_:"14 17 79 80 81 83 84 87 88 89 90 91 93 94 95"},E:{"4":0,"8":0.01079,"9":0.02698,"12":0.0054,"13":0.06474,"14":0.24278,"15":0.07014,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02158,"10.1":0.03237,"11.1":0.06474,"12.1":0.11869,"13.1":0.50174,"14.1":0.81465,"15.1":0.12948,"15.2-15.3":0.14027,"15.4":0.57187,"15.5":4.32679,"15.6":0.19422,"16.0":0.02158},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00244,"6.0-6.1":0.00244,"7.0-7.1":0.00974,"8.1-8.4":0.01705,"9.0-9.2":0.01218,"9.3":0.18753,"10.0-10.2":0.01218,"10.3":0.16805,"11.0-11.2":0.03166,"11.3-11.4":0.04627,"12.0-12.1":0.03166,"12.2-12.5":0.86458,"13.0-13.1":0.02435,"13.2":0.01218,"13.3":0.06332,"13.4-13.7":0.2265,"14.0-14.4":0.53093,"14.5-14.8":1.85581,"15.0-15.1":0.44082,"15.2-15.3":0.6868,"15.4":1.24208,"15.5":17.29656,"16.0":0.09742},P:{"4":0.1297,"5.0-5.4":0.02109,"6.2-6.4":0.01054,"7.2-7.4":0.10543,"8.2":0.05271,"9.2":0.04217,"10.1":0.02162,"11.1-11.2":0.05271,"12.0":0.01054,"13.0":0.04323,"14.0":0.02162,"15.0":0.02162,"16.0":0.10808,"17.0":3.19922},I:{"0":0,"3":0,"4":0.00156,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00078,"4.2-4.3":0.00469,"4.4":0,"4.4.3-4.4.4":0.0344},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01164,"9":0.03491,"11":0.25018,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.49263},Q:{"10.4":0},O:{"0":0.09668},H:{"0":0.1482},L:{"0":18.39235}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00565,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01129,"39":0,"40":0,"41":0,"42":0,"43":0.01129,"44":0.03952,"45":0.01129,"46":0,"47":0,"48":0.00565,"49":0,"50":0.00565,"51":0.00565,"52":0.02823,"53":0.00565,"54":0.00565,"55":0.00565,"56":0.00565,"57":0.01129,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00565,"67":0,"68":0.00565,"69":0,"70":0.00565,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00565,"78":0.03388,"79":0,"80":0.00565,"81":0.00565,"82":0.00565,"83":0.00565,"84":0.00565,"85":0,"86":0,"87":0.00565,"88":0.00565,"89":0.00565,"90":0.00565,"91":0.03388,"92":0.00565,"93":0,"94":0.00565,"95":0.00565,"96":0.01129,"97":0.00565,"98":0.00565,"99":0.01694,"100":0.02258,"101":0.1468,"102":1.87447,"103":0.22019,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00565,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01129,"48":0.10727,"49":0.06775,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00565,"60":0.03388,"61":0,"62":0,"63":0.00565,"64":0,"65":0.01129,"66":0.00565,"67":0.01129,"68":0.00565,"69":0.02823,"70":0.00565,"71":0,"72":0.00565,"73":0,"74":0.01129,"75":0.00565,"76":0.01694,"77":0.00565,"78":0.01129,"79":0.05081,"80":0.03388,"81":0.02258,"83":0.14115,"84":0.05081,"85":0.04517,"86":0.04517,"87":0.07904,"88":0.01129,"89":0.01129,"90":0.01129,"91":0.02258,"92":0.01694,"93":0.05081,"94":0.02258,"95":0.01129,"96":0.06211,"97":0.05646,"98":0.09034,"99":0.0734,"100":0.15809,"101":0.2823,"102":1.276,"103":14.97884,"104":0.01694,"105":0.00565,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00565,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01129,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00565,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00565,"86":0.00565,"87":0.01694,"88":0.28795,"89":0.10727,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00565,"13":0.00565,"14":0.00565,"15":0.00565,"16":0.00565,"17":0,"18":0.01129,"79":0,"80":0,"81":0,"83":0,"84":0.00565,"85":0.00565,"86":0.00565,"87":0,"88":0,"89":0.00565,"90":0,"91":0,"92":0.00565,"93":0,"94":0,"95":0,"96":0.00565,"97":0.00565,"98":0.00565,"99":0.00565,"100":0.01129,"101":0.0734,"102":0.15809,"103":4.099,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00565,"9":0.01694,"10":0,"11":0,"12":0.00565,"13":0.03952,"14":0.1355,"15":0.03952,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01129,"10.1":0.01694,"11.1":0.03388,"12.1":0.06775,"13.1":0.2823,"14.1":0.46297,"15.1":0.0734,"15.2-15.3":0.07904,"15.4":0.32182,"15.5":2.44472,"15.6":0.10727,"16.0":0.01129},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00383,"6.0-6.1":0.00383,"7.0-7.1":0.01532,"8.1-8.4":0.02681,"9.0-9.2":0.01915,"9.3":0.29488,"10.0-10.2":0.01915,"10.3":0.26425,"11.0-11.2":0.04979,"11.3-11.4":0.07276,"12.0-12.1":0.04979,"12.2-12.5":1.35953,"13.0-13.1":0.0383,"13.2":0.01915,"13.3":0.09957,"13.4-13.7":0.35616,"14.0-14.4":0.83487,"14.5-14.8":2.9182,"15.0-15.1":0.69317,"15.2-15.3":1.07996,"15.4":1.95313,"15.5":27.19827,"16.0":0.15319},P:{"4":0.14714,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.02102,"11.1-11.2":0.02102,"12.0":0.01051,"13.0":0.04204,"14.0":0.03153,"15.0":0.02102,"16.0":0.09459,"17.0":2.96372,"18.0":0},I:{"0":0,"3":0,"4":0.01064,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00532,"4.2-4.3":0.03192,"4.4":0,"4.4.3-4.4.4":0.23408},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00605,"9":0.01815,"10":0,"11":0.14518,"5.5":0},J:{"7":0,"10":0.00435},N:{"10":0,"11":0},L:{"0":25.38942},S:{"2.5":0},R:{_:"0"},M:{"0":0.46588},Q:{"10.4":0},O:{"0":0.09143},H:{"0":0.14015}}; 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 31d6b7c109b858e..eb6e49f00f41a46 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:{"30":0.00169,"43":0.00337,"47":0.00674,"49":0.00169,"52":0.00506,"56":0.00169,"57":0.00169,"58":0.01011,"63":0.00337,"64":0.00169,"65":0.00337,"69":0.00169,"72":0.00674,"76":0.00169,"78":0.00506,"88":0.00337,"89":0.00337,"90":0.00337,"91":0.01685,"95":0.00506,"96":0.00506,"98":0.00169,"99":0.0118,"100":0.00843,"101":0.07583,"102":0.63356,"103":0.08088,"104":0.00169,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 53 54 55 59 60 61 62 66 67 68 70 71 73 74 75 77 79 80 81 82 83 84 85 86 87 92 93 94 97 105 3.5 3.6"},D:{"11":0.01348,"18":0.00506,"22":0.00169,"25":0.00169,"29":0.00506,"33":0.00169,"35":0.00337,"37":0.00337,"43":0.00337,"49":0.00506,"55":0.00169,"57":0.00169,"58":0.00169,"63":0.00169,"64":0.00337,"65":0.00337,"67":0.00169,"69":0.00337,"70":0.00506,"74":0.00506,"75":0.00506,"76":0.00169,"77":0.00674,"79":0.02191,"80":0.00674,"81":0.00843,"83":0.00337,"84":0.00506,"85":0.00506,"86":0.02022,"87":0.00674,"88":0.01517,"89":0.01011,"90":0.01348,"91":0.00506,"92":0.02191,"93":0.00674,"94":0.01348,"95":0.01517,"96":0.0118,"97":0.0118,"98":0.0337,"99":0.03707,"100":0.03202,"101":0.06572,"102":0.38418,"103":4.0103,"104":0.00169,"105":0.00337,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 23 24 26 27 28 30 31 32 34 36 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 59 60 61 62 66 68 71 72 73 78 106"},F:{"34":0.00169,"40":0.00169,"42":0.00506,"47":0.00337,"49":0.00843,"65":0.00674,"79":0.04887,"80":0.00843,"81":0.00337,"82":0.00337,"83":0.00337,"84":0.01348,"85":0.02022,"86":0.0337,"87":0.01685,"88":0.23422,"89":0.16682,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 43 44 45 46 48 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 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00506},B:{"12":0.06909,"13":0.01685,"14":0.01011,"15":0.03539,"16":0.00674,"17":0.02865,"18":0.06403,"84":0.02191,"85":0.01011,"89":0.02359,"90":0.01517,"92":0.03707,"95":0.00169,"96":0.00843,"97":0.00169,"98":0.00674,"99":0.01011,"100":0.01348,"101":0.02528,"102":0.09436,"103":1.0447,_:"79 80 81 83 86 87 88 91 93 94"},E:{"4":0,"12":0.00169,"13":0.00337,"14":0.01517,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00169,"12.1":0.00506,"13.1":0.04718,"14.1":0.03539,"15.1":0.00169,"15.2-15.3":0.00337,"15.4":0.02191,"15.5":0.11121,"15.6":0.00337},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0007,"6.0-6.1":0,"7.0-7.1":0.01682,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02873,"10.0-10.2":0.0007,"10.3":0.1093,"11.0-11.2":0.04764,"11.3-11.4":0.0042,"12.0-12.1":0.02733,"12.2-12.5":1.56734,"13.0-13.1":0.03713,"13.2":0.04134,"13.3":0.24382,"13.4-13.7":0.14293,"14.0-14.4":0.58434,"14.5-14.8":0.76931,"15.0-15.1":0.72237,"15.2-15.3":0.58224,"15.4":0.57103,"15.5":1.36346,"16.0":0.04905},P:{"4":0.22949,"5.0-5.4":0.02186,"6.2-6.4":0.01093,"7.2-7.4":0.14207,"8.2":0.05271,"9.2":0.04371,"10.1":0.25764,"11.1-11.2":0.02186,"12.0":0.01031,"13.0":0.03278,"14.0":0.04371,"15.0":0.01093,"16.0":0.0765,"17.0":0.51363},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00406,"4.2-4.3":0.01697,"4.4":0,"4.4.3-4.4.4":0.08707},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08425,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.06652},R:{_:"0"},M:{"0":0.08315},Q:{"10.4":0.04158},O:{"0":0.98949},H:{"0":28.36319},L:{"0":51.97172}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0017,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0017,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0017,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0017,"79":0,"80":0,"81":0.00339,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00339,"92":0,"93":0,"94":0,"95":0,"96":0.0017,"97":0,"98":0,"99":0.00339,"100":0.0017,"101":0.01356,"102":0.11018,"103":0.01356,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00339,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.0017,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0017,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0017,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0017,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0017,"71":0,"72":0,"73":0,"74":0.0017,"75":0,"76":0,"77":0.0017,"78":0,"79":0.00339,"80":0.0017,"81":0.00678,"83":0,"84":0.0017,"85":0,"86":0.00339,"87":0.0017,"88":0.00339,"89":0.00339,"90":0.0017,"91":0.0017,"92":0.00339,"93":0.0017,"94":0.0017,"95":0.00339,"96":0.0017,"97":0.0017,"98":0.00509,"99":0.00678,"100":0.00509,"101":0.01187,"102":0.06441,"103":0.68139,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0.00509,"16":0.0017,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.01356,"25":0,"26":0.01017,"27":0.00678,"28":0.01187,"29":0.00339,"30":0.02204,"31":0.00509,"32":0.01526,"33":0.01017,"34":0,"35":0.0017,"36":0,"37":0.00339,"38":0.01695,"39":0,"40":0,"41":0.0017,"42":0.04746,"43":0,"44":0.0017,"45":0.00339,"46":0.00509,"47":0.00509,"48":0,"49":0.0017,"50":0.03051,"51":0.00848,"52":0,"53":0,"54":0.02034,"55":0.05594,"56":0.00509,"57":0.02204,"58":0.04407,"60":0.58817,"62":0.00339,"63":0.52545,"64":0.02882,"65":0.0017,"66":0,"67":0.0017,"68":0.0017,"69":0,"70":0.0017,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00848,"80":0.0017,"81":0,"82":0,"83":0,"84":0.0017,"85":0.00339,"86":0.00509,"87":0.00339,"88":0.04068,"89":0.02882,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02204},B:{"12":0.01187,"13":0.00339,"14":0.0017,"15":0.01017,"16":0.0017,"17":0.00509,"18":0.01017,"79":0,"80":0,"81":0,"83":0,"84":0.00339,"85":0.0017,"86":0,"87":0,"88":0,"89":0.00339,"90":0.00339,"91":0,"92":0.00678,"93":0,"94":0,"95":0,"96":0.0017,"97":0,"98":0.0017,"99":0.0017,"100":0.0017,"101":0.00509,"102":0.01695,"103":0.18137,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00339,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00848,"14.1":0.00678,"15.1":0,"15.2-15.3":0,"15.4":0.00339,"15.5":0.01865,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00084,"6.0-6.1":0,"7.0-7.1":0.02018,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03448,"10.0-10.2":0.00084,"10.3":0.13118,"11.0-11.2":0.05718,"11.3-11.4":0.00505,"12.0-12.1":0.0328,"12.2-12.5":1.88111,"13.0-13.1":0.04457,"13.2":0.04961,"13.3":0.29264,"13.4-13.7":0.17155,"14.0-14.4":0.70132,"14.5-14.8":0.92332,"15.0-15.1":0.86698,"15.2-15.3":0.6988,"15.4":0.68534,"15.5":1.63641,"16.0":0.05886},P:{"4":0.22715,"5.0-5.4":0.03098,"6.2-6.4":0.02065,"7.2-7.4":0.13423,"8.2":0,"9.2":0.0413,"10.1":0.01033,"11.1-11.2":0.02065,"12.0":0.02065,"13.0":0.03098,"14.0":0.0413,"15.0":0.01033,"16.0":0.07228,"17.0":0.48528,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00558,"4.2-4.3":0.02334,"4.4":0,"4.4.3-4.4.4":0.11973},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01526,"5.5":0},J:{"7":0,"10":0.00831},N:{"10":0,"11":0},L:{"0":52.24778},S:{"2.5":0.06644},R:{_:"0"},M:{"0":0.08305},Q:{"10.4":0.04153},O:{"0":0.9883},H:{"0":28.32908}}; 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 094b027ba8f2b50..68033d457b7194e 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:{"3":0.0038,"42":0.00759,"43":0.01139,"45":0.0038,"50":0.00569,"59":0.01329,"60":0.01139,"65":0.00949,"72":0.00759,"91":0.08731,"99":0.00759,"100":0.00949,"101":0.0911,"102":0.63393,"103":0.11198,_:"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 44 46 47 48 49 51 52 53 54 55 56 57 58 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"34":0.01518,"38":0.00949,"52":0.00949,"55":0.00569,"56":0.0038,"69":0.00569,"77":0.01708,"80":0.01329,"83":0.02657,"84":0.0038,"86":0.14235,"87":0.01329,"88":0.00759,"91":0.00759,"93":0.00759,"94":0.00569,"96":0.0038,"98":0.02467,"99":0.01139,"100":0.01139,"101":0.01898,"102":0.22207,"103":8.37777,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 79 81 85 89 90 92 95 97 104 105 106"},F:{"66":0.00949,"67":0.0038,"79":0.07972,"83":0.00759,"85":0.03227,"86":0.01139,"87":0.07592,"88":0.17082,"89":0.21258,"90":0.00569,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01898,"13":0.03606,"14":0.03227,"16":0.02278,"17":0.04745,"18":0.08351,"84":0.04935,"89":0.00949,"90":0.01329,"92":0.03986,"95":0.01898,"98":0.01708,"99":0.03227,"100":0.00569,"101":0.04555,"102":0.14994,"103":1.135,_:"15 79 80 81 83 85 86 87 88 91 93 94 96 97"},E:{"4":0,"14":0.0038,_:"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 15.1 15.6 16.0","12.1":0.04176,"13.1":0.0038,"14.1":0.04555,"15.2-15.3":0.00569,"15.4":0.0038,"15.5":0.01139},G:{"8":0.00954,"3.2":0,"4.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.03635,"9.3":0.00149,"10.0-10.2":0,"10.3":0.04589,"11.0-11.2":0.00149,"11.3-11.4":0.00149,"12.0-12.1":0.00328,"12.2-12.5":0.24673,"13.0-13.1":0.04738,"13.2":0.00805,"13.3":0.01907,"13.4-13.7":0.09804,"14.0-14.4":0.5602,"14.5-14.8":0.21514,"15.0-15.1":0.18654,"15.2-15.3":0.18505,"15.4":0.31795,"15.5":0.90825,"16.0":0.06496},P:{"4":0.20411,"5.0-5.4":0.02052,"6.2-6.4":0.10259,"7.2-7.4":0.10743,"8.2":0.05271,"9.2":0.0513,"10.1":0.02162,"11.1-11.2":0.03223,"12.0":0.0104,"13.0":0.02149,"14.0":0.17188,"15.0":0.0752,"16.0":0.05371,"17.0":0.32228},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00045,"4.2-4.3":0.00473,"4.4":0,"4.4.3-4.4.4":0.04343},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07972,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.41315},R:{_:"0"},M:{"0":0.06481},Q:{"10.4":0},O:{"0":0.25113},H:{"0":9.07302},L:{"0":72.54628}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00197,"43":0.00197,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00197,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00197,"60":0.00197,"61":0,"62":0,"63":0,"64":0,"65":0.00197,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00197,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00197,"88":0,"89":0,"90":0,"91":0.01772,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00394,"99":0.00197,"100":0.00197,"101":0.02166,"102":0.12602,"103":0.02166,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00197,"35":0,"36":0,"37":0,"38":0.00197,"39":0,"40":0.00197,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00197,"53":0,"54":0,"55":0.00197,"56":0.00197,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00197,"70":0.00788,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00394,"78":0,"79":0,"80":0.00197,"81":0,"83":0.00591,"84":0,"85":0,"86":0.02757,"87":0.00197,"88":0.00197,"89":0,"90":0,"91":0.00197,"92":0,"93":0.00197,"94":0.00197,"95":0,"96":0,"97":0,"98":0.00394,"99":0.00197,"100":0.00197,"101":0.00394,"102":0.04332,"103":1.65002,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00197,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00394,"52":0,"53":0,"54":0.00197,"55":0,"56":0,"57":0,"58":0,"60":0.04726,"62":0,"63":0.05513,"64":0.00197,"65":0,"66":0.00197,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01575,"80":0,"81":0,"82":0,"83":0.00197,"84":0,"85":0.00591,"86":0.00197,"87":0.01575,"88":0.03347,"89":0.04135,"90":0.00197,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00197,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00197},B:{"12":0.00394,"13":0.00788,"14":0.00591,"15":0,"16":0.00394,"17":0.00985,"18":0.01575,"79":0,"80":0,"81":0,"83":0,"84":0.00985,"85":0,"86":0,"87":0,"88":0,"89":0.00197,"90":0.00197,"91":0,"92":0.00788,"93":0,"94":0,"95":0.00394,"96":0,"97":0,"98":0.00394,"99":0.00591,"100":0.00197,"101":0.01181,"102":0.0315,"103":0.22644,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00788,"13.1":0,"14.1":0.00985,"15.1":0,"15.2-15.3":0.00197,"15.4":0,"15.5":0.00197,"15.6":0,"16.0":0},G:{"8":0.01166,"3.2":0,"4.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.04444,"9.3":0.00182,"10.0-10.2":0,"10.3":0.0561,"11.0-11.2":0.00182,"11.3-11.4":0.00182,"12.0-12.1":0.00401,"12.2-12.5":0.30161,"13.0-13.1":0.05792,"13.2":0.00984,"13.3":0.02331,"13.4-13.7":0.11984,"14.0-14.4":0.68481,"14.5-14.8":0.263,"15.0-15.1":0.22803,"15.2-15.3":0.22621,"15.4":0.38867,"15.5":1.11027,"16.0":0.07941},P:{"4":0.19804,"5.0-5.4":0.02085,"6.2-6.4":0,"7.2-7.4":0.10423,"8.2":0,"9.2":0.01042,"10.1":0.01042,"11.1-11.2":0.03127,"12.0":0,"13.0":0.02085,"14.0":0.15635,"15.0":0.07296,"16.0":0.05212,"17.0":0.30227,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0055,"4.2-4.3":0.05771,"4.4":0,"4.4.3-4.4.4":0.53039},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01575,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.67833},S:{"2.5":0.40958},R:{_:"0"},M:{"0":0.06425},Q:{"10.4":0},O:{"0":0.24896},H:{"0":8.99462}}; 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 9382783389ff85b..4890b68abf8d1ba 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:{"40":0.00365,"52":0.00731,"68":0.14616,"72":0.00365,"84":0.01096,"87":0.00731,"88":0.00731,"91":0.01827,"94":0.00731,"99":0.01096,"100":0.00365,"101":0.11693,"102":3.1936,"103":0.37271,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 85 86 89 90 92 93 95 96 97 98 104 105 3.5 3.6"},D:{"33":0.00731,"36":0.00365,"43":0.01096,"49":0.00365,"51":0.00365,"58":0.02192,"63":0.01096,"64":0.01096,"66":0.00365,"67":0.00731,"69":0.03654,"73":0.01462,"74":0.01462,"75":0.01462,"76":0.00365,"79":0.06943,"81":0.02923,"83":0.00731,"84":0.01462,"85":0.00731,"86":0.04019,"87":0.00731,"89":0.01462,"90":0.02192,"91":0.01462,"92":0.01096,"93":0.00365,"95":0.01096,"96":0.06943,"97":0.70522,"98":0.02923,"99":0.11327,"100":0.03654,"101":0.07308,"102":0.67599,"103":12.64649,_:"4 5 6 7 8 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 37 38 39 40 41 42 44 45 46 47 48 50 52 53 54 55 56 57 59 60 61 62 65 68 70 71 72 77 78 80 88 94 104 105 106"},F:{"28":0.00365,"42":0.00365,"79":0.06943,"81":0.01096,"82":0.01096,"83":0.04385,"84":0.00731,"85":0.05481,"86":0.01827,"87":0.0475,"88":1.0962,"89":0.71253,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01462,"14":0.01462,"16":0.01462,"17":0.04385,"18":0.13154,"84":0.01096,"89":0.00365,"90":0.01096,"92":0.02558,"95":0.00731,"97":0.01096,"98":0.00731,"99":0.01827,"100":0.08404,"101":0.02192,"102":0.05116,"103":4.97309,_:"13 15 79 80 81 83 85 86 87 88 91 93 94 96"},E:{"4":0,"12":0.01096,"14":0.00365,_:"0 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 15.2-15.3 16.0","10.1":0.16078,"11.1":0.00365,"12.1":0.00731,"13.1":0.20462,"14.1":0.05116,"15.1":0.00731,"15.4":0.01827,"15.5":0.06212,"15.6":0.00365},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00479,"5.0-5.1":0.01835,"6.0-6.1":0,"7.0-7.1":0.16755,"8.1-8.4":0,"9.0-9.2":0.00399,"9.3":0.05984,"10.0-10.2":0.00399,"10.3":0.21622,"11.0-11.2":0.01117,"11.3-11.4":0.00638,"12.0-12.1":0.01755,"12.2-12.5":3.16025,"13.0-13.1":0.00479,"13.2":0.01675,"13.3":0.00878,"13.4-13.7":0.07819,"14.0-14.4":0.39573,"14.5-14.8":0.5162,"15.0-15.1":0.23776,"15.2-15.3":0.23297,"15.4":0.37658,"15.5":2.11667,"16.0":0.20185},P:{"4":0.3142,"5.0-5.4":0.02186,"6.2-6.4":0.01093,"7.2-7.4":0.15168,"8.2":0.05271,"9.2":0.01083,"10.1":0.01083,"11.1-11.2":0.05417,"12.0":0.01031,"13.0":0.02167,"14.0":0.04371,"15.0":0.01083,"16.0":0.29254,"17.0":0.46589},I:{"0":0,"3":0,"4":0.00027,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.00959,"4.4":0,"4.4.3-4.4.4":0.10221},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05846,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00635},N:{"11":0.02513,_:"10"},S:{"2.5":0.27922},R:{_:"0"},M:{"0":0.03173},Q:{"10.4":0.03173},O:{"0":0.64729},H:{"0":1.58611},L:{"0":56.52732}}; +module.exports={C:{"40":0.00365,"52":0.00731,"68":0.14616,"72":0.00365,"84":0.01096,"87":0.00731,"88":0.00731,"91":0.01827,"94":0.00731,"99":0.01096,"100":0.00365,"101":0.11693,"102":3.1936,"103":0.37271,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 85 86 89 90 92 93 95 96 97 98 104 105 3.5 3.6"},D:{"33":0.00731,"36":0.00365,"43":0.01096,"49":0.00365,"51":0.00365,"58":0.02192,"63":0.01096,"64":0.01096,"66":0.00365,"67":0.00731,"69":0.03654,"73":0.01462,"74":0.01462,"75":0.01462,"76":0.00365,"79":0.06943,"81":0.02923,"83":0.00731,"84":0.01462,"85":0.00731,"86":0.04019,"87":0.00731,"89":0.01462,"90":0.02192,"91":0.01462,"92":0.01096,"93":0.00365,"95":0.01096,"96":0.06943,"97":0.70522,"98":0.02923,"99":0.11327,"100":0.03654,"101":0.07308,"102":0.67599,"103":12.64649,_:"4 5 6 7 8 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 37 38 39 40 41 42 44 45 46 47 48 50 52 53 54 55 56 57 59 60 61 62 65 68 70 71 72 77 78 80 88 94 104 105 106 107"},F:{"28":0.00365,"42":0.00365,"79":0.06943,"81":0.01096,"82":0.01096,"83":0.04385,"84":0.00731,"85":0.05481,"86":0.01827,"87":0.0475,"88":1.0962,"89":0.71253,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01462,"14":0.01462,"16":0.01462,"17":0.04385,"18":0.13154,"84":0.01096,"89":0.00365,"90":0.01096,"92":0.02558,"95":0.00731,"97":0.01096,"98":0.00731,"99":0.01827,"100":0.08404,"101":0.02192,"102":0.05116,"103":4.97309,_:"13 15 79 80 81 83 85 86 87 88 91 93 94 96 104"},E:{"4":0,"12":0.01096,"14":0.00365,_:"0 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 15.2-15.3 16.0","10.1":0.16078,"11.1":0.00365,"12.1":0.00731,"13.1":0.20462,"14.1":0.05116,"15.1":0.00731,"15.4":0.01827,"15.5":0.06212,"15.6":0.00365},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00479,"5.0-5.1":0.01835,"6.0-6.1":0,"7.0-7.1":0.16755,"8.1-8.4":0,"9.0-9.2":0.00399,"9.3":0.05984,"10.0-10.2":0.00399,"10.3":0.21622,"11.0-11.2":0.01117,"11.3-11.4":0.00638,"12.0-12.1":0.01755,"12.2-12.5":3.16025,"13.0-13.1":0.00479,"13.2":0.01675,"13.3":0.00878,"13.4-13.7":0.07819,"14.0-14.4":0.39573,"14.5-14.8":0.5162,"15.0-15.1":0.23776,"15.2-15.3":0.23297,"15.4":0.37658,"15.5":2.11667,"16.0":0.20185},P:{"4":0.3142,"5.0-5.4":0.03098,"6.2-6.4":0.02065,"7.2-7.4":0.15168,"8.2":0,"9.2":0.01083,"10.1":0.01083,"11.1-11.2":0.05417,"12.0":0.02065,"13.0":0.02167,"14.0":0.0413,"15.0":0.01083,"16.0":0.29254,"17.0":0.46589,"18.0":0},I:{"0":0,"3":0,"4":0.00027,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.00959,"4.4":0,"4.4.3-4.4.4":0.10221},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05846,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00635},N:{"10":0,"11":0},L:{"0":56.52732},S:{"2.5":0.27922},R:{_:"0"},M:{"0":0.03173},Q:{"10.4":0.03173},O:{"0":0.64729},H:{"0":1.58611}}; 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 8b9694e21efcfcf..93624ef86933424 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.0127,"50":0.00635,"52":0.03811,"53":0.00635,"54":0.0127,"55":0.0127,"56":0.0127,"60":0.00635,"66":0.00635,"71":0.0127,"78":0.11434,"81":0.00635,"82":0.00635,"83":0.0127,"88":0.0127,"90":0.00635,"91":0.21597,"94":0.00635,"95":0.01906,"96":0.0127,"97":0.0127,"98":0.0127,"99":0.03176,"100":0.05717,"101":0.27949,"102":4.10974,"103":0.47005,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 57 58 59 61 62 63 64 65 67 68 69 70 72 73 74 75 76 77 79 80 84 85 86 87 89 92 93 104 105 3.5 3.6"},D:{"38":0.00635,"41":0.0127,"49":0.03176,"52":0.22867,"53":0.00635,"65":0.0127,"66":0.06352,"68":0.00635,"77":0.0127,"78":0.01906,"79":0.19056,"80":0.02541,"81":0.00635,"83":0.02541,"84":0.06987,"85":0.05717,"86":0.06987,"87":0.13339,"88":0.01906,"89":0.02541,"90":0.01906,"91":0.03176,"92":0.06987,"93":0.01906,"94":0.02541,"95":0.0127,"96":0.13974,"97":0.06352,"98":0.08258,"99":0.09528,"100":0.19691,"101":0.4637,"102":1.97547,"103":29.24461,"104":0.01906,"105":0.00635,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 54 55 56 57 58 59 60 61 62 63 64 67 69 70 71 72 73 74 75 76 106 107"},F:{"71":0.00635,"85":0.00635,"86":0.0127,"87":0.04446,"88":0.66061,"89":0.25408,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.04446,"84":0.01906,"85":0.00635,"86":0.00635,"89":0.00635,"90":0.0127,"91":0.01906,"92":0.0127,"94":0.01906,"95":0.00635,"96":0.03176,"97":0.07622,"98":0.03811,"99":0.03176,"100":0.06352,"101":0.1715,"102":0.75589,"103":14.37458,_:"12 13 14 15 16 17 79 80 81 83 87 88 93"},E:{"4":0,"10":0.0127,"12":0.00635,"13":0.05082,"14":0.23502,"15":0.07622,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0127,"10.1":0.01906,"11.1":0.03811,"12.1":0.11434,"13.1":0.53357,"14.1":0.72413,"15.1":0.12069,"15.2-15.3":0.16515,"15.4":0.49546,"15.5":3.41102,"15.6":0.17786,"16.0":0.0127},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00933,"8.1-8.4":0.00373,"9.0-9.2":0.23512,"9.3":0.1101,"10.0-10.2":0.00373,"10.3":0.07464,"11.0-11.2":0.00933,"11.3-11.4":0.07278,"12.0-12.1":0.01679,"12.2-12.5":0.35269,"13.0-13.1":0.00933,"13.2":0.00933,"13.3":0.03546,"13.4-13.7":0.15488,"14.0-14.4":0.42919,"14.5-14.8":1.3361,"15.0-15.1":0.38628,"15.2-15.3":0.7315,"15.4":1.20175,"15.5":13.03259,"16.0":0.07278},P:{"4":0.1916,"5.0-5.4":0.03058,"6.2-6.4":0.07135,"7.2-7.4":1.94738,"8.2":0.02056,"9.2":0.01009,"10.1":0.01019,"11.1-11.2":0.14126,"12.0":0.03193,"13.0":0.03193,"14.0":0.05322,"15.0":0.03193,"16.0":0.11709,"17.0":3.04436},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0116,"4.2-4.3":0.00132,"4.4":0,"4.4.3-4.4.4":0.00897},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0065,"11":0.26663,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.59827},Q:{"10.4":0},O:{"0":0.04742},H:{"0":0.19686},L:{"0":14.16061},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00649,"49":0,"50":0.00649,"51":0,"52":0.02598,"53":0.00649,"54":0.00649,"55":0.00649,"56":0.00649,"57":0,"58":0,"59":0,"60":0.00649,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00649,"67":0,"68":0.00649,"69":0,"70":0,"71":0.00649,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.07143,"79":0.00649,"80":0.00649,"81":0.00649,"82":0.00649,"83":0.00649,"84":0.00649,"85":0,"86":0,"87":0,"88":0.01299,"89":0.00649,"90":0.00649,"91":0.14936,"92":0,"93":0,"94":0.00649,"95":0.01299,"96":0.00649,"97":0.01299,"98":0.01299,"99":0.01948,"100":0.03896,"101":0.2143,"102":2.90931,"103":0.3247,"104":0.00649,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00649,"39":0,"40":0,"41":0.00649,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01948,"50":0,"51":0,"52":0.14936,"53":0.00649,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00649,"66":0.03896,"67":0.00649,"68":0.00649,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00649,"78":0.01299,"79":0.12339,"80":0.01299,"81":0.00649,"83":0.01299,"84":0.04546,"85":0.03247,"86":0.04546,"87":0.08442,"88":0.01299,"89":0.01299,"90":0.01299,"91":0.01948,"92":0.05195,"93":0.01299,"94":0.01299,"95":0.01299,"96":0.09092,"97":0.03896,"98":0.05195,"99":0.06494,"100":0.12988,"101":0.30522,"102":1.28581,"103":19.04041,"104":0.01299,"105":0.00649,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00649,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00649,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00649,"71":0.00649,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00649,"86":0.00649,"87":0.03247,"88":0.4286,"89":0.16884,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02598,"79":0,"80":0,"81":0,"83":0,"84":0.01299,"85":0.00649,"86":0.00649,"87":0,"88":0,"89":0.00649,"90":0.00649,"91":0.01299,"92":0.00649,"93":0,"94":0.01299,"95":0.00649,"96":0.01948,"97":0.05195,"98":0.02598,"99":0.02598,"100":0.04546,"101":0.11689,"102":0.51303,"103":9.37734,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00649,"11":0,"12":0.00649,"13":0.03247,"14":0.14936,"15":0.05195,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00649,"10.1":0.01299,"11.1":0.02598,"12.1":0.07793,"13.1":0.35068,"14.1":0.47406,"15.1":0.07793,"15.2-15.3":0.1039,"15.4":0.3247,"15.5":2.21445,"15.6":0.11689,"16.0":0.01299},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01549,"8.1-8.4":0.0062,"9.0-9.2":0.39029,"9.3":0.18275,"10.0-10.2":0.0062,"10.3":0.1239,"11.0-11.2":0.01549,"11.3-11.4":0.1208,"12.0-12.1":0.02788,"12.2-12.5":0.58543,"13.0-13.1":0.01549,"13.2":0.01549,"13.3":0.05885,"13.4-13.7":0.25709,"14.0-14.4":0.71243,"14.5-14.8":2.21783,"15.0-15.1":0.64119,"15.2-15.3":1.21423,"15.4":1.99481,"15.5":21.63313,"16.0":0.1208},P:{"4":0.17498,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01029,"10.1":0,"11.1-11.2":0.01029,"12.0":0.04117,"13.0":0.04117,"14.0":0.05146,"15.0":0.03088,"16.0":0.11322,"17.0":2.882,"18.0":0.01029},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04214,"4.2-4.3":0.00479,"4.4":0,"4.4.3-4.4.4":0.03256},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00673,"10":0,"11":0.1751,"5.5":0},J:{"7":0,"10":0.00351},N:{"10":0,"11":0},L:{"0":21.42269},S:{"2.5":0},R:{_:"0"},M:{"0":0.57498},Q:{"10.4":0},O:{"0":0.04558},H:{"0":0.1892}}; 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 48371d76012cb85..00da36737df1952 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:{"52":0.06634,"56":0.00632,"58":0.03475,"59":0.00316,"65":0.00632,"68":0.00316,"71":0.00316,"72":0.00948,"78":0.00948,"84":0.01264,"89":0.00632,"91":0.06634,"93":0.00316,"94":0.01264,"95":0.00632,"96":0.00316,"97":0.01264,"98":0.00632,"99":0.0158,"100":0.03475,"101":0.08845,"102":2.18919,"103":0.19902,"104":0.0158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 60 61 62 63 64 66 67 69 70 73 74 75 76 77 79 80 81 82 83 85 86 87 88 90 92 105 3.5 3.6"},D:{"29":0.00632,"33":0.00948,"43":0.00316,"49":0.00948,"52":0.00316,"53":0.00316,"56":0.00316,"58":0.00632,"61":0.00632,"63":0.00316,"64":0.00316,"66":0.02843,"67":0.00948,"68":0.00632,"69":0.02211,"70":0.03791,"72":0.00632,"73":0.00632,"74":0.02211,"75":0.00632,"76":0.03791,"77":0.01895,"78":0.02843,"79":0.04107,"80":0.04423,"81":0.02211,"83":0.01895,"84":0.03159,"85":0.02211,"86":0.0695,"87":0.41699,"88":0.03475,"89":0.03791,"90":0.03475,"91":0.03791,"92":0.06002,"93":0.0695,"94":0.02527,"95":0.04423,"96":0.10741,"97":0.06634,"98":0.07898,"99":0.08213,"100":0.14847,"101":0.16427,"102":1.05827,"103":15.32431,"104":0.00632,"105":0.02527,"106":0.00632,_:"4 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 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 54 55 57 59 60 62 65 71"},F:{"76":0.00632,"79":0.0158,"81":0.00316,"82":0.03475,"84":0.00316,"85":0.0158,"86":0.02843,"87":0.01264,"88":0.38224,"89":0.27483,"90":0.00632,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00948,"13":0.00948,"14":0.00316,"15":0.00632,"16":0.00316,"17":0.00632,"18":0.03159,"84":0.11372,"85":0.00316,"89":0.01264,"90":0.00948,"92":0.02843,"94":0.00632,"96":0.00316,"97":0.00316,"98":0.00316,"99":0.00948,"100":0.00948,"101":0.03475,"102":0.08213,"103":2.12917,_:"79 80 81 83 86 87 88 91 93 95"},E:{"4":0,"8":0.00316,"13":0.01895,"14":0.02843,"15":0.00632,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.00632,"9.1":0.00948,"11.1":0.00316,"12.1":0.00316,"13.1":0.04739,"14.1":0.04739,"15.1":0.00948,"15.2-15.3":0.00948,"15.4":0.04423,"15.5":0.2464,"15.6":0.02211,"16.0":0.00316},G:{"8":0.00392,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01045,"8.1-8.4":0,"9.0-9.2":0.00131,"9.3":0.0457,"10.0-10.2":0,"10.3":0.11622,"11.0-11.2":0.09141,"11.3-11.4":0.03917,"12.0-12.1":0.11752,"12.2-12.5":2.8336,"13.0-13.1":0.02742,"13.2":0.01567,"13.3":0.20371,"13.4-13.7":0.16845,"14.0-14.4":0.91406,"14.5-14.8":1.04595,"15.0-15.1":0.73386,"15.2-15.3":0.85139,"15.4":1.01331,"15.5":4.1381,"16.0":0.4283},P:{"4":0.13482,"5.0-5.4":0.01037,"6.2-6.4":0.01093,"7.2-7.4":0.23853,"8.2":0.05271,"9.2":0.09334,"10.1":0.01083,"11.1-11.2":0.11408,"12.0":0.01037,"13.0":0.02074,"14.0":0.08297,"15.0":0.05185,"16.0":0.1763,"17.0":1.01633},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00186,"4.2-4.3":0.00278,"4.4":0,"4.4.3-4.4.4":0.05009},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04107,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01368},N:{"11":0.02513,_:"10"},S:{"2.5":0.01368},R:{_:"0"},M:{"0":0.34205},Q:{"10.4":0.02052},O:{"0":0.19155},H:{"0":1.91708},L:{"0":57.14661}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00318,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02228,"53":0,"54":0,"55":0,"56":0.00318,"57":0,"58":0.00955,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00318,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00318,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00318,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00318,"85":0,"86":0,"87":0,"88":0,"89":0.00318,"90":0,"91":0.02228,"92":0,"93":0,"94":0.00637,"95":0.00318,"96":0.00318,"97":0.00318,"98":0.00318,"99":0.00637,"100":0.02228,"101":0.09231,"102":0.71936,"103":0.06366,"104":0.00318,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00318,"30":0,"31":0,"32":0,"33":0.00318,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00318,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00318,"59":0,"60":0,"61":0.00318,"62":0,"63":0,"64":0.00318,"65":0,"66":0.00955,"67":0.00318,"68":0.00318,"69":0.00637,"70":0.01273,"71":0,"72":0.00318,"73":0.00318,"74":0.00637,"75":0.00318,"76":0.01273,"77":0.00637,"78":0.00955,"79":0.01273,"80":0.01592,"81":0.02865,"83":0.00637,"84":0.01273,"85":0.00637,"86":0.02228,"87":0.13369,"88":0.01273,"89":0.01273,"90":0.01273,"91":0.01273,"92":0.0191,"93":0.02228,"94":0.00955,"95":0.01592,"96":0.03501,"97":0.02228,"98":0.02546,"99":0.02546,"100":0.04775,"101":0.05411,"102":0.34058,"103":4.88909,"104":0.00318,"105":0.00955,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00318,"55":0,"56":0,"57":0,"58":0.00318,"60":0.02228,"62":0,"63":0.11141,"64":0.00637,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00318,"77":0,"78":0,"79":0.00637,"80":0,"81":0,"82":0.01273,"83":0,"84":0,"85":0.00637,"86":0.00955,"87":0.00318,"88":0.12095,"89":0.08594,"90":0.00318,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.04456,"10.6":0.00955,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00318},B:{"12":0.00318,"13":0.00318,"14":0.00318,"15":0.00318,"16":0,"17":0.00318,"18":0.00955,"79":0,"80":0,"81":0,"83":0,"84":0.0382,"85":0,"86":0,"87":0,"88":0,"89":0.00318,"90":0.00318,"91":0,"92":0.00955,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00318,"100":0.00318,"101":0.01273,"102":0.02865,"103":0.68435,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00637,"14":0.00955,"15":0.00318,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00318,"7.1":0,"9.1":0.00318,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01592,"14.1":0.01592,"15.1":0.00318,"15.2-15.3":0.00318,"15.4":0.01273,"15.5":0.07958,"15.6":0.00637,"16.0":0},G:{"8":0.00534,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01425,"8.1-8.4":0,"9.0-9.2":0.00178,"9.3":0.06234,"10.0-10.2":0,"10.3":0.15852,"11.0-11.2":0.12468,"11.3-11.4":0.05344,"12.0-12.1":0.16031,"12.2-12.5":3.86515,"13.0-13.1":0.0374,"13.2":0.02137,"13.3":0.27786,"13.4-13.7":0.22977,"14.0-14.4":1.24682,"14.5-14.8":1.42672,"15.0-15.1":1.00102,"15.2-15.3":1.16133,"15.4":1.38219,"15.5":5.64454,"16.0":0.58423},P:{"4":0.15338,"5.0-5.4":0.02045,"6.2-6.4":0,"7.2-7.4":0.23519,"8.2":0,"9.2":0.09203,"10.1":0,"11.1-11.2":0.10226,"12.0":0.01023,"13.0":0.03068,"14.0":0.0818,"15.0":0.05113,"16.0":0.17383,"17.0":0.99187,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00422,"4.2-4.3":0.00633,"4.4":0,"4.4.3-4.4.4":0.11401},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01273,"5.5":0},J:{"7":0,"10":0.01363},N:{"10":0,"11":0},L:{"0":68.1245},S:{"2.5":0.01363},R:{_:"0"},M:{"0":0.34085},Q:{"10.4":0.02045},O:{"0":0.19088},H:{"0":1.91035}}; 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 0c18f10d01be34e..80497745a7380e7 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.04659,"97":0.00424,"100":0.03388,"101":0.10588,"102":1.12228,"103":0.16517,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 104 105 3.5 3.6"},D:{"49":0.1567,"55":0.02118,"79":4.70932,"80":0.05082,"81":0.00424,"83":0.00424,"87":0.00424,"94":0.00847,"96":0.01694,"97":0.04659,"99":0.08894,"100":0.53785,"101":0.06776,"102":0.5082,"103":28.94623,"105":0.00847,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 68 69 70 71 72 73 74 75 76 77 78 84 85 86 88 89 90 91 92 93 95 98 104 106"},F:{"87":0.01694,"88":0.03812,"89":0.01271,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01271,"86":0.00847,"89":0.01271,"92":0.00847,"95":0.00424,"99":0.00847,"101":0.01694,"102":0.03812,"103":2.74852,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 90 91 93 94 96 97 98 100"},E:{"4":0,"13":0.00424,"14":0.10164,"15":0.02965,_:"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 16.0","12.1":0.02118,"13.1":0.072,"14.1":0.28375,"15.1":0.01271,"15.2-15.3":0.04235,"15.4":0.12282,"15.5":0.97829,"15.6":0.06776},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0336,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01344,"11.0-11.2":0.00896,"11.3-11.4":0.00448,"12.0-12.1":0.00672,"12.2-12.5":0.26878,"13.0-13.1":0.02688,"13.2":0,"13.3":0.03808,"13.4-13.7":0.21279,"14.0-14.4":0.7862,"14.5-14.8":2.10996,"15.0-15.1":0.81531,"15.2-15.3":1.03034,"15.4":1.59927,"15.5":15.19531,"16.0":0.0336},P:{"4":0.05061,"5.0-5.4":0.02186,"6.2-6.4":0.01093,"7.2-7.4":0.10122,"8.2":0.05271,"9.2":0.01083,"10.1":0.01083,"11.1-11.2":0.51622,"12.0":0.04049,"13.0":0.0911,"14.0":0.37451,"15.0":0.33403,"16.0":0.15183,"17.0":3.60344},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.12282,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.28249},Q:{"10.4":0},O:{"0":0.42661},H:{"0":0.09278},L:{"0":30.13804}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02137,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0171,"101":0.04701,"102":0.5428,"103":0.08121,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.06838,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00855,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":2.01305,"80":0.02137,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00427,"95":0,"96":0.00855,"97":0.0171,"98":0,"99":0.04274,"100":0.2308,"101":0.02992,"102":0.2308,"103":12.40742,"104":0,"105":0.00427,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00855,"88":0.0171,"89":0.00427,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00427,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00427,"87":0,"88":0,"89":0.00427,"90":0,"91":0,"92":0.00427,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00427,"100":0,"101":0.00855,"102":0.0171,"103":1.17962,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04274,"15":0.01282,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00855,"13.1":0.02992,"14.1":0.11967,"15.1":0.00427,"15.2-15.3":0.0171,"15.4":0.05129,"15.5":0.41885,"15.6":0.02992,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04939,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01976,"11.0-11.2":0.01317,"11.3-11.4":0.00659,"12.0-12.1":0.00988,"12.2-12.5":0.39513,"13.0-13.1":0.03951,"13.2":0,"13.3":0.05598,"13.4-13.7":0.31282,"14.0-14.4":1.15577,"14.5-14.8":3.10181,"15.0-15.1":1.19858,"15.2-15.3":1.51468,"15.4":2.35105,"15.5":22.33829,"16.0":0.04939},P:{"4":0.05076,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09136,"8.2":0,"9.2":0.01015,"10.1":0,"11.1-11.2":0.51771,"12.0":0.0406,"13.0":0.09136,"14.0":0.37559,"15.0":0.32484,"16.0":0.14212,"17.0":3.58335,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0171},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05129,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":40.93465},S:{"2.5":0},R:{_:"0"},M:{"0":0.28057},Q:{"10.4":0},O:{"0":0.42372},H:{"0":0.09216}}; 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 26321dfc60fe248..7926159e4e93dae 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js @@ -1 +1 @@ -module.exports={C:{"52":0.01276,"73":0.0085,"78":0.02126,"84":0.01276,"88":0.00425,"90":0.01701,"91":0.02551,"95":0.00425,"98":0.00425,"99":0.01276,"100":0.01701,"101":0.07228,"102":1.22032,"103":0.14032,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 96 97 104 105 3.5 3.6"},D:{"38":0.02126,"47":0.00425,"49":0.04677,"53":0.0085,"56":0.01276,"63":0.00425,"65":0.01276,"67":0.01276,"68":0.0085,"69":0.07228,"70":0.0085,"72":0.00425,"74":0.0085,"76":0.0085,"77":0.00425,"78":0.0085,"79":0.09354,"80":0.01276,"81":0.01701,"83":0.01276,"84":0.02976,"85":0.02126,"86":0.02976,"87":0.13606,"88":0.0085,"89":0.02976,"90":0.01701,"91":0.05102,"92":0.03402,"93":0.01276,"94":0.01276,"95":0.01701,"96":0.05528,"97":0.04677,"98":0.05102,"99":0.11906,"100":0.15732,"101":0.17858,"102":1.19056,"103":26.94918,"104":0.01276,"105":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 57 58 59 60 61 62 64 66 71 73 75 106"},F:{"28":0.00425,"85":0.01701,"86":0.01276,"87":0.11055,"88":3.71625,"89":0.77812,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00425,"18":0.02551,"92":0.01276,"98":0.00425,"99":0.00425,"100":0.01701,"101":0.05528,"102":0.06378,"103":3.02317,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97"},E:{"4":0,"13":0.01701,"14":0.05528,"15":0.02126,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00425,"11.1":0.0085,"12.1":0.01276,"13.1":0.08504,"14.1":0.21685,"15.1":0.03827,"15.2-15.3":0.04677,"15.4":0.14032,"15.5":0.7526,"15.6":0.03827,"16.0":0.00425},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00491,"6.0-6.1":0.00573,"7.0-7.1":0.00164,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04586,"10.0-10.2":0.00164,"10.3":0.01556,"11.0-11.2":0.00655,"11.3-11.4":0.00655,"12.0-12.1":0.01392,"12.2-12.5":0.24238,"13.0-13.1":0.00655,"13.2":0.00573,"13.3":0.02211,"13.4-13.7":0.08598,"14.0-14.4":0.19079,"14.5-14.8":0.65344,"15.0-15.1":0.12201,"15.2-15.3":0.25466,"15.4":0.47575,"15.5":5.79499,"16.0":0.04586},P:{"4":0.09313,"5.0-5.4":0.01014,"6.2-6.4":0.05069,"7.2-7.4":0.06209,"8.2":0.05271,"9.2":0.01035,"10.1":0.01014,"11.1-11.2":0.07244,"12.0":0.02028,"13.0":0.05174,"14.0":0.10348,"15.0":0.04139,"16.0":0.12418,"17.0":1.51084},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00497,"4.4":0,"4.4.3-4.4.4":0.04102},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00425,"11":0.08929,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18972},Q:{"10.4":0},O:{"0":0.02875},H:{"0":0.19594},L:{"0":48.35884}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0043,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.0043,"74":0,"75":0,"76":0,"77":0,"78":0.00859,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0043,"85":0,"86":0,"87":0,"88":0.0043,"89":0,"90":0.01718,"91":0.00859,"92":0,"93":0,"94":0.00859,"95":0.0043,"96":0,"97":0.0043,"98":0.0043,"99":0.00859,"100":0.00859,"101":0.03437,"102":0.56707,"103":0.06444,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00859,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0043,"48":0,"49":0.01718,"50":0,"51":0,"52":0,"53":0.0043,"54":0,"55":0,"56":0.0043,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0043,"64":0,"65":0.0043,"66":0,"67":0.0043,"68":0.0043,"69":0.03007,"70":0.0043,"71":0,"72":0.0043,"73":0,"74":0.0043,"75":0,"76":0.0043,"77":0,"78":0.0043,"79":0.04296,"80":0.0043,"81":0.00859,"83":0.0043,"84":0.01289,"85":0.00859,"86":0.01289,"87":0.06014,"88":0.0043,"89":0.01718,"90":0.00859,"91":0.02148,"92":0.02578,"93":0.0043,"94":0.0043,"95":0.00859,"96":0.02578,"97":0.02148,"98":0.02148,"99":0.05155,"100":0.07303,"101":0.08162,"102":0.51982,"103":11.65075,"104":0.0043,"105":0.0043,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0043,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0043,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00859,"86":0.0043,"87":0.04726,"88":1.59811,"89":0.33509,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00859,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0043,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0043,"99":0.0043,"100":0.00859,"101":0.02148,"102":0.03437,"103":1.31887,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00859,"14":0.02578,"15":0.00859,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0043,"10.1":0,"11.1":0.0043,"12.1":0.0043,"13.1":0.03437,"14.1":0.09451,"15.1":0.01718,"15.2-15.3":0.02148,"15.4":0.06014,"15.5":0.3222,"15.6":0.01718,"16.0":0.0043},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00738,"6.0-6.1":0.00861,"7.0-7.1":0.00246,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06888,"10.0-10.2":0.00246,"10.3":0.02337,"11.0-11.2":0.00984,"11.3-11.4":0.00984,"12.0-12.1":0.02091,"12.2-12.5":0.36409,"13.0-13.1":0.00984,"13.2":0.00861,"13.3":0.03321,"13.4-13.7":0.12915,"14.0-14.4":0.2866,"14.5-14.8":0.98157,"15.0-15.1":0.18328,"15.2-15.3":0.38254,"15.4":0.71465,"15.5":8.70498,"16.0":0.06888},P:{"4":0.10371,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05185,"8.2":0,"9.2":0.01037,"10.1":0,"11.1-11.2":0.0726,"12.0":0.01037,"13.0":0.05185,"14.0":0.09334,"15.0":0.04148,"16.0":0.12445,"17.0":1.49341,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01236,"4.4":0,"4.4.3-4.4.4":0.102},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03866,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.40837},S:{"2.5":0},R:{_:"0"},M:{"0":0.18823},Q:{"10.4":0},O:{"0":0.02852},H:{"0":0.19441}}; 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 335409291c42eff..834450235aac38e 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.00289,"34":0.00867,"37":0.00578,"38":0.00289,"43":0.00867,"47":0.00578,"48":0.00867,"50":0.01156,"51":0.00867,"52":0.09248,"56":0.00867,"58":0.00289,"60":0.00578,"62":0.00867,"64":0.00578,"65":0.01445,"68":0.00289,"70":0.00289,"72":0.05202,"73":0.00578,"78":0.02023,"81":0.00289,"82":0.00867,"84":0.00289,"85":0.00289,"88":0.00578,"89":0.00867,"91":0.04335,"92":0.00578,"93":0.00578,"94":0.00578,"95":0.00578,"96":0.01445,"97":0.01445,"98":0.01156,"99":0.07514,"100":0.03757,"101":0.26588,"102":2.56343,"103":0.23698,"104":0.00289,_:"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 39 40 41 42 44 45 46 49 53 54 55 57 59 61 63 66 67 69 71 74 75 76 77 79 80 83 86 87 90 105 3.5 3.6"},D:{"25":0.00578,"38":0.01156,"40":0.01156,"42":0.00867,"43":0.00578,"49":0.01156,"56":0.0578,"57":0.00867,"58":0.01445,"63":0.00867,"65":0.00289,"67":0.02023,"68":0.05202,"69":0.00867,"70":0.01445,"71":0.00289,"72":0.01156,"73":0.00289,"74":0.02312,"75":0.01156,"76":0.00867,"77":0.01445,"78":0.00578,"79":0.13583,"80":0.03179,"81":0.01734,"83":0.01156,"84":0.01445,"85":0.16762,"86":0.02601,"87":0.03179,"88":0.01445,"89":0.01445,"90":0.01445,"91":0.03179,"92":0.03468,"93":0.04624,"94":0.02023,"95":0.04913,"96":0.05202,"97":0.0578,"98":0.07225,"99":0.04913,"100":0.10982,"101":0.17051,"102":1.02306,"103":10.35487,"104":0.00578,"105":0.0289,_:"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 41 44 45 46 47 48 50 51 52 53 54 55 59 60 61 62 64 66 106"},F:{"42":0.00289,"44":0.00867,"67":0.00867,"72":0.00289,"79":0.04624,"81":0.00289,"83":0.00289,"84":0.01734,"85":0.01445,"86":0.02601,"87":0.03468,"88":0.41905,"89":0.31212,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 45 46 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 80 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04624,"13":0.01445,"14":0.03757,"15":0.02601,"16":0.01734,"17":0.03468,"18":0.06647,"83":0.00289,"84":0.01734,"85":0.01445,"89":0.02023,"90":0.01734,"92":0.02601,"96":0.00578,"97":0.00578,"98":0.01156,"99":0.02023,"100":0.04624,"101":0.03757,"102":0.09826,"103":1.37853,_:"79 80 81 86 87 88 91 93 94 95"},E:{"4":0,"10":0.00867,"13":0.00867,"14":0.01445,"15":0.00289,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.00578,"11.1":0.00867,"12.1":0.00578,"13.1":0.02312,"14.1":0.02312,"15.1":0.09248,"15.2-15.3":0.01445,"15.4":0.02312,"15.5":0.05202,"15.6":0.00867},G:{"8":0.0031,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00078,"6.0-6.1":0.04574,"7.0-7.1":0.01163,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02791,"10.0-10.2":0.02093,"10.3":0.30776,"11.0-11.2":0.17752,"11.3-11.4":0.03023,"12.0-12.1":0.17442,"12.2-12.5":1.31786,"13.0-13.1":0.05426,"13.2":0.06047,"13.3":0.13644,"13.4-13.7":0.37055,"14.0-14.4":0.86668,"14.5-14.8":0.87366,"15.0-15.1":0.70854,"15.2-15.3":0.55427,"15.4":0.50699,"15.5":1.3853,"16.0":0.05582},P:{"4":0.2214,"5.0-5.4":0.02109,"6.2-6.4":0.01054,"7.2-7.4":0.10543,"8.2":0.05271,"9.2":0.04217,"10.1":0.02116,"11.1-11.2":0.05271,"12.0":0.01054,"13.0":0.06326,"14.0":0.1476,"15.0":0.04217,"16.0":0.11597,"17.0":0.68528},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.00281,"4.4":0,"4.4.3-4.4.4":0.03853},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00867,"11":0.19652,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01422},N:{"11":0.02513,_:"10"},S:{"2.5":0.03554},R:{_:"0"},M:{"0":0.40516},Q:{"10.4":0.01422},O:{"0":0.90982},H:{"0":4.327},L:{"0":64.47522}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00292,"35":0,"36":0.00292,"37":0.00292,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00292,"44":0,"45":0,"46":0,"47":0.00292,"48":0.00292,"49":0,"50":0.00292,"51":0.00292,"52":0.02625,"53":0,"54":0,"55":0,"56":0.00292,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00292,"63":0,"64":0,"65":0.00583,"66":0,"67":0,"68":0.00292,"69":0,"70":0,"71":0,"72":0.01459,"73":0.00292,"74":0,"75":0,"76":0,"77":0,"78":0.00583,"79":0,"80":0,"81":0,"82":0.00292,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00292,"89":0.00292,"90":0,"91":0.01459,"92":0.00292,"93":0.00292,"94":0.00292,"95":0.01167,"96":0.00875,"97":0.00583,"98":0.00583,"99":0.02625,"100":0.01459,"101":0.09918,"102":0.79926,"103":0.07001,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00292,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00292,"39":0,"40":0.00583,"41":0,"42":0.00292,"43":0.00292,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00292,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.0175,"57":0.00292,"58":0.00583,"59":0,"60":0,"61":0,"62":0,"63":0.00292,"64":0,"65":0,"66":0.00292,"67":0.00583,"68":0.01459,"69":0.00292,"70":0.00583,"71":0,"72":0.00292,"73":0,"74":0.00583,"75":0.00292,"76":0.00292,"77":0.00583,"78":0.00292,"79":0.04084,"80":0.00875,"81":0.01459,"83":0.00292,"84":0.00292,"85":0.04959,"86":0.00875,"87":0.00875,"88":0.00292,"89":0.00583,"90":0.0175,"91":0.00875,"92":0.00875,"93":0.01459,"94":0.00583,"95":0.01459,"96":0.01459,"97":0.0175,"98":0.02042,"99":0.01459,"100":0.03209,"101":0.04959,"102":0.29753,"103":3.02493,"104":0.00292,"105":0.00875,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00292,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00292,"31":0,"32":0.00292,"33":0,"34":0,"35":0,"36":0,"37":0.00292,"38":0.00292,"39":0,"40":0,"41":0,"42":0.00583,"43":0,"44":0.00292,"45":0,"46":0.00583,"47":0,"48":0,"49":0,"50":0.00292,"51":0.00292,"52":0,"53":0,"54":0.00292,"55":0.00875,"56":0,"57":0.00583,"58":0.04376,"60":0.11376,"62":0,"63":0.1546,"64":0.00583,"65":0,"66":0,"67":0.00292,"68":0,"69":0,"70":0.01459,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01459,"80":0,"81":0,"82":0,"83":0,"84":0.00583,"85":0.00292,"86":0.00875,"87":0.01167,"88":0.12251,"89":0.09043,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00292},B:{"12":0.01459,"13":0.00583,"14":0.0175,"15":0.01167,"16":0.00583,"17":0.00875,"18":0.02042,"79":0,"80":0,"81":0,"83":0,"84":0.00583,"85":0.00292,"86":0,"87":0,"88":0,"89":0.00583,"90":0.00583,"91":0,"92":0.00875,"93":0,"94":0,"95":0,"96":0.00292,"97":0.00292,"98":0.00292,"99":0.00583,"100":0.01459,"101":0.01167,"102":0.02917,"103":0.40546,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00292,"11":0,"12":0,"13":0.00292,"14":0.00292,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00292,"11.1":0.00292,"12.1":0.00292,"13.1":0.00583,"14.1":0.00583,"15.1":0.02625,"15.2-15.3":0.00583,"15.4":0.00583,"15.5":0.01459,"15.6":0.00292,"16.0":0},G:{"8":0.00416,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00104,"6.0-6.1":0.06138,"7.0-7.1":0.01561,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03745,"10.0-10.2":0.02809,"10.3":0.41301,"11.0-11.2":0.23824,"11.3-11.4":0.04057,"12.0-12.1":0.23408,"12.2-12.5":1.76857,"13.0-13.1":0.07282,"13.2":0.08115,"13.3":0.1831,"13.4-13.7":0.49728,"14.0-14.4":1.1631,"14.5-14.8":1.17246,"15.0-15.1":0.95087,"15.2-15.3":0.74384,"15.4":0.68038,"15.5":1.85908,"16.0":0.0749},P:{"4":0.22656,"5.0-5.4":0.0206,"6.2-6.4":0.0206,"7.2-7.4":0.10298,"8.2":0.05149,"9.2":0.04119,"10.1":0,"11.1-11.2":0.06179,"12.0":0.0103,"13.0":0.06179,"14.0":0.14418,"15.0":0.04119,"16.0":0.11328,"17.0":0.66939,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0039,"4.2-4.3":0.00836,"4.4":0,"4.4.3-4.4.4":0.11483},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00292,"9":0,"10":0,"11":0.05834,"5.5":0},J:{"7":0,"10":0.01417},N:{"10":0,"11":0},L:{"0":73.80073},S:{"2.5":0.03542},R:{_:"0"},M:{"0":0.40373},Q:{"10.4":0.01417},O:{"0":0.90662},H:{"0":4.31178}}; 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 275d1141f077818..1fc5e7016b121b7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js @@ -1 +1 @@ -module.exports={C:{"4":0.00856,"36":0.02568,"43":2.29952,"52":0.01427,"56":0.00285,"57":0.00856,"63":0.00285,"76":0.00285,"78":0.00856,"82":0.00571,"83":0.00285,"88":0.00856,"89":0.00856,"90":0.01141,"91":0.01141,"94":0.00285,"96":0.00285,"97":0.00571,"98":0.00571,"99":0.00856,"100":0.01141,"101":0.04565,"102":0.60484,"103":0.02853,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 84 85 86 87 92 93 95 104 105 3.5 3.6"},D:{"11":0.00856,"17":0.00285,"31":0.00571,"34":0.00571,"39":0.00571,"40":0.00856,"41":0.00856,"42":0.00571,"43":0.00571,"44":0.00571,"45":0.01141,"46":0.00571,"47":0.01427,"48":0.08274,"49":0.06562,"50":0.00856,"51":0.00571,"52":0.00571,"53":0.02853,"54":0.01141,"55":0.04565,"56":0.01427,"57":0.06277,"58":0.01427,"59":0.01427,"60":0.00571,"61":0.00856,"62":0.04565,"63":0.02568,"64":0.00285,"65":0.01997,"66":0.00285,"67":0.01427,"68":0.01141,"69":1.04705,"70":0.56204,"71":0.01141,"72":0.30812,"73":0.03994,"74":0.56489,"75":0.07988,"76":0.01427,"77":0.07703,"78":0.25677,"79":0.17118,"80":0.07988,"81":0.0485,"83":0.15977,"84":0.05135,"85":0.05135,"86":0.25106,"87":0.07988,"88":0.0485,"89":0.03424,"90":0.07703,"91":0.03424,"92":0.35377,"93":0.01712,"94":0.0428,"95":0.05991,"96":0.194,"97":0.21112,"98":0.14265,"99":0.12553,"100":0.17118,"101":0.16547,"102":0.34807,"103":2.62191,"104":0.01427,"105":0.01997,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 38 106"},F:{"85":0.00285,"88":0.02282,"89":0.01141,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00856,"17":0.00856,"18":0.06562,"86":0.00285,"87":0.00285,"89":0.01141,"92":0.01141,"96":0.00571,"97":0.00571,"98":0.01712,"99":0.01997,"100":0.02282,"101":0.06847,"102":0.10556,"103":3.37795,_:"12 13 14 15 79 80 81 83 84 85 88 90 91 93 94 95"},E:{"4":0,"9":0.01427,"12":0.00285,"13":0.02568,"14":0.08559,"15":0.02282,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00571,"12.1":0.01427,"13.1":0.08844,"14.1":0.09986,"15.1":0.03424,"15.2-15.3":0.03709,"15.4":0.11127,"15.5":0.45648,"15.6":0.03424,"16.0":0.00856},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.04704,"5.0-5.1":0.02109,"6.0-6.1":0.02433,"7.0-7.1":0.00324,"8.1-8.4":0.00811,"9.0-9.2":0.11679,"9.3":0.02433,"10.0-10.2":0.02758,"10.3":0.15896,"11.0-11.2":0.39903,"11.3-11.4":0.07462,"12.0-12.1":0.13301,"12.2-12.5":0.43147,"13.0-13.1":0.06002,"13.2":0.04217,"13.3":0.16059,"13.4-13.7":0.94405,"14.0-14.4":1.39336,"14.5-14.8":1.55232,"15.0-15.1":0.94729,"15.2-15.3":1.28468,"15.4":2.1022,"15.5":5.63345,"16.0":0.06002},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 15.0","14.0":0.1322,"16.0":0.02203,"17.0":0.37457},I:{"0":0,"3":0,"4":0.13526,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03382,"4.2-4.3":0.02705,"4.4":0,"4.4.3-4.4.4":0.18261},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.09893,"8":0.27206,"9":1.01403,"10":0.0742,"11":5.71322,_:"7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.13577},Q:{"10.4":5.65249},O:{"0":13.82751},H:{"0":0.07442},L:{"0":35.63103}}; +module.exports={C:{"2":0,"3":0,"4":0.00288,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00864,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.63914,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00288,"53":0,"54":0,"55":0,"56":0,"57":0.00288,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00288,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00288,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00288,"89":0.00288,"90":0.00288,"91":0.00288,"92":0,"93":0,"94":0,"95":0,"96":0.00288,"97":0.00288,"98":0.00288,"99":0.00288,"100":0.00288,"101":0.0144,"102":0.19001,"103":0.01727,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00288,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00288,"35":0,"36":0,"37":0,"38":0,"39":0.00288,"40":0.00288,"41":0.00288,"42":0.00288,"43":0.00288,"44":0,"45":0.00288,"46":0,"47":0.00288,"48":0.02591,"49":0.02015,"50":0.00288,"51":0.00288,"52":0.00288,"53":0.00864,"54":0.00288,"55":0.0144,"56":0.00288,"57":0.01727,"58":0.00288,"59":0.00288,"60":0.00288,"61":0.00288,"62":0.0144,"63":0.00864,"64":0,"65":0.00576,"66":0,"67":0.00288,"68":0.00288,"69":0.30517,"70":0.1641,"71":0.00288,"72":0.08637,"73":0.01152,"74":0.16698,"75":0.02303,"76":0.00288,"77":0.02015,"78":0.07485,"79":0.04894,"80":0.02303,"81":0.0144,"83":0.04606,"84":0.0144,"85":0.0144,"86":0.07198,"87":0.02303,"88":0.0144,"89":0.00864,"90":0.02303,"91":0.01152,"92":0.11804,"93":0.00576,"94":0.01152,"95":0.01727,"96":0.05758,"97":0.06046,"98":0.04031,"99":0.03455,"100":0.04894,"101":0.04894,"102":0.09789,"103":0.76006,"104":0.00288,"105":0.00576,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00576,"89":0.00288,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00288,"17":0.00288,"18":0.02015,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00288,"90":0,"91":0,"92":0.00288,"93":0,"94":0,"95":0,"96":0.00288,"97":0.00288,"98":0.00576,"99":0.00576,"100":0.00864,"101":0.02303,"102":0.05758,"103":1.02492,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00576,"10":0,"11":0,"12":0,"13":0.00864,"14":0.02591,"15":0.00576,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00288,"12.1":0.00288,"13.1":0.02591,"14.1":0.02879,"15.1":0.00864,"15.2-15.3":0.01152,"15.4":0.03167,"15.5":0.12956,"15.6":0.01152,"16.0":0.00288},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.06102,"5.0-5.1":0.02735,"6.0-6.1":0.03156,"7.0-7.1":0.00421,"8.1-8.4":0.01052,"9.0-9.2":0.1515,"9.3":0.03156,"10.0-10.2":0.03577,"10.3":0.20621,"11.0-11.2":0.51764,"11.3-11.4":0.09679,"12.0-12.1":0.17255,"12.2-12.5":0.55972,"13.0-13.1":0.07786,"13.2":0.05471,"13.3":0.20832,"13.4-13.7":1.22465,"14.0-14.4":1.80752,"14.5-14.8":2.01373,"15.0-15.1":1.22886,"15.2-15.3":1.66653,"15.4":2.72705,"15.5":7.30792,"16.0":0.07786},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.11913,"15.0":0.01083,"16.0":0.02166,"17.0":0.36822,"18.0":0},I:{"0":0,"3":0,"4":0.1862,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04655,"4.2-4.3":0.03724,"4.4":0,"4.4.3-4.4.4":0.25137},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02552,"7":0,"8":0.07656,"9":0.28072,"10":0.02552,"11":1.6588,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.61228},S:{"2.5":0},R:{_:"0"},M:{"0":0.1353},Q:{"10.4":5.61847},O:{"0":13.77914},H:{"0":0.07416}}; 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 97e877def408882..f81b24f8c2a0a5a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js @@ -1 +1 @@ -module.exports={C:{"50":0.00868,"52":0.00868,"73":0.00434,"78":0.01737,"83":0.00868,"88":0.00868,"89":0.00434,"90":0.01737,"91":0.02605,"98":0.00434,"99":0.00868,"100":0.00868,"101":0.05645,"102":0.92485,"103":0.13026,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 67 68 69 70 71 72 74 75 76 77 79 80 81 82 84 85 86 87 92 93 94 95 96 97 104 105 3.5 3.6"},D:{"22":0.00868,"26":0.00434,"38":0.01737,"47":0.00868,"49":0.02605,"53":0.00434,"62":0.00434,"63":0.00434,"65":0.00434,"67":0.00434,"68":0.01303,"69":0.0825,"70":0.00868,"72":0.00868,"73":0.00868,"74":0.00868,"75":0.00868,"76":0.02605,"77":0.00868,"78":0.01303,"79":0.18236,"80":0.02171,"81":0.01737,"83":0.02171,"84":0.03039,"85":0.02605,"86":0.03908,"87":0.06947,"88":0.03039,"89":0.03908,"90":0.02171,"91":0.07816,"92":0.06079,"93":0.02171,"94":0.02171,"95":0.05645,"96":0.07816,"97":0.08684,"98":0.11289,"99":0.1346,"100":0.18236,"101":0.24315,"102":1.17668,"103":29.57336,"104":0.01737,"105":0.00868,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 64 66 71 106"},F:{"82":0.01303,"85":0.02171,"86":0.00868,"87":0.04776,"88":1.62391,"89":0.45591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01303,"89":0.00434,"92":0.01303,"98":0.00434,"99":0.00868,"100":0.00434,"101":0.06079,"102":0.06947,"103":2.5531,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97"},E:{"4":0,"13":0.00868,"14":0.04776,"15":0.01737,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 16.0","9.1":0.00434,"11.1":0.03908,"12.1":0.01303,"13.1":0.06513,"14.1":0.13026,"15.1":0.04776,"15.2-15.3":0.03039,"15.4":0.09118,"15.5":0.55143,"15.6":0.03039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00176,"6.0-6.1":0.00117,"7.0-7.1":0.00939,"8.1-8.4":0,"9.0-9.2":0.00059,"9.3":0.04226,"10.0-10.2":0,"10.3":0.02876,"11.0-11.2":0.00293,"11.3-11.4":0.00939,"12.0-12.1":0.00293,"12.2-12.5":0.23418,"13.0-13.1":0.00411,"13.2":0.00293,"13.3":0.01526,"13.4-13.7":0.04108,"14.0-14.4":0.1209,"14.5-14.8":0.4214,"15.0-15.1":0.09567,"15.2-15.3":0.17255,"15.4":0.31811,"15.5":4.18643,"16.0":0.02641},P:{"4":0.16439,"5.0-5.4":0.01014,"6.2-6.4":0.01027,"7.2-7.4":0.0822,"8.2":0.05271,"9.2":0.01035,"10.1":0.01014,"11.1-11.2":0.02055,"12.0":0.02028,"13.0":0.0411,"14.0":0.0411,"15.0":0.03082,"16.0":0.10274,"17.0":0.95553},I:{"0":0,"3":0,"4":0.00203,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00405,"4.2-4.3":0.00811,"4.4":0,"4.4.3-4.4.4":0.05372},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04342,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.16411},Q:{"10.4":0},O:{"0":0.05093},H:{"0":0.15001},L:{"0":51.11485}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00437,"51":0,"52":0.00437,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00437,"74":0,"75":0,"76":0,"77":0,"78":0.00875,"79":0,"80":0,"81":0,"82":0,"83":0.00437,"84":0,"85":0,"86":0,"87":0,"88":0.00437,"89":0.00437,"90":0.03498,"91":0.01312,"92":0,"93":0,"94":0,"95":0.00437,"96":0,"97":0,"98":0.00437,"99":0.00437,"100":0.00437,"101":0.02624,"102":0.4373,"103":0.06122,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00437,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00875,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00437,"48":0,"49":0.01312,"50":0,"51":0,"52":0,"53":0.00437,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00437,"66":0,"67":0,"68":0.00437,"69":0.03498,"70":0.00437,"71":0,"72":0.00437,"73":0.00437,"74":0.00437,"75":0.00437,"76":0.01312,"77":0.00437,"78":0.00437,"79":0.07871,"80":0.00875,"81":0.01312,"83":0.00875,"84":0.01312,"85":0.00875,"86":0.01749,"87":0.03061,"88":0.01312,"89":0.01749,"90":0.00875,"91":0.03498,"92":0.03061,"93":0.00875,"94":0.00875,"95":0.03061,"96":0.03498,"97":0.03936,"98":0.0481,"99":0.06122,"100":0.08309,"101":0.10933,"102":0.52476,"103":13.01405,"104":0.00875,"105":0.00437,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00875,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00437,"83":0,"84":0,"85":0.00875,"86":0.00437,"87":0.02187,"88":0.70843,"89":0.20116,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00437,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00437,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00437,"100":0.00437,"101":0.02624,"102":0.03498,"103":1.13261,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00437,"14":0.02187,"15":0.00875,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00437,"10.1":0,"11.1":0.01749,"12.1":0.00437,"13.1":0.03061,"14.1":0.05685,"15.1":0.02187,"15.2-15.3":0.01312,"15.4":0.03936,"15.5":0.24052,"15.6":0.01312,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00268,"6.0-6.1":0.00179,"7.0-7.1":0.01429,"8.1-8.4":0,"9.0-9.2":0.00089,"9.3":0.0643,"10.0-10.2":0,"10.3":0.04376,"11.0-11.2":0.00447,"11.3-11.4":0.01429,"12.0-12.1":0.00447,"12.2-12.5":0.35635,"13.0-13.1":0.00625,"13.2":0.00447,"13.3":0.02322,"13.4-13.7":0.06252,"14.0-14.4":0.18398,"14.5-14.8":0.64125,"15.0-15.1":0.14558,"15.2-15.3":0.26257,"15.4":0.48406,"15.5":6.37052,"16.0":0.04019},P:{"4":0.19007,"5.0-5.4":0,"6.2-6.4":0.01,"7.2-7.4":0.08003,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02001,"12.0":0.01,"13.0":0.04001,"14.0":0.04001,"15.0":0.03001,"16.0":0.10004,"17.0":0.92033,"18.0":0},I:{"0":0,"3":0,"4":0.00489,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00977,"4.2-4.3":0.01955,"4.4":0,"4.4.3-4.4.4":0.12952},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02187,"5.5":0},J:{"7":0,"10":0.00563},N:{"10":0,"11":0},L:{"0":69.47585},S:{"2.5":0},R:{_:"0"},M:{"0":0.16318},Q:{"10.4":0},O:{"0":0.05064},H:{"0":0.14916}}; 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 a2d2e7402585337..8147184634824ba 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.00829,"56":0.01658,"73":0.0539,"78":0.01658,"84":0.00829,"88":0.42704,"90":0.04146,"91":0.02902,"94":0.00415,"99":0.00829,"100":0.0539,"101":0.0995,"102":1.74547,"103":0.20315,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 95 96 97 98 104 105 3.5 3.6"},D:{"38":0.00415,"46":0.00829,"47":0.00829,"49":0.02073,"50":0.00415,"65":0.00829,"67":0.00415,"68":0.00415,"69":0.00415,"73":0.00415,"76":0.00829,"77":0.00829,"78":0.00829,"79":0.02902,"80":0.01244,"81":0.02488,"83":0.01244,"84":0.00829,"85":0.00829,"86":0.07048,"87":0.02902,"88":0.00829,"89":0.02073,"90":0.01244,"91":0.02902,"92":0.06219,"93":0.02902,"94":0.01244,"95":0.01244,"96":0.04146,"97":0.05804,"98":0.04146,"99":0.08707,"100":0.0995,"101":0.12853,"102":1.65425,"103":24.22508,"104":0.01658,"105":0.00415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 70 71 72 74 75 106"},F:{"28":0.01244,"72":0.00415,"85":0.00829,"86":0.01658,"87":0.04146,"88":1.5506,"89":0.37314,_:"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 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.02488,"18":0.01244,"92":0.01244,"95":0.00415,"97":0.00415,"99":0.01244,"100":0.00829,"101":0.04975,"102":0.08292,"103":3.89309,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 98"},E:{"4":0,"13":0.01244,"14":0.10365,"15":0.02488,_:"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.01658,"12.1":0.02488,"13.1":0.17413,"14.1":0.26534,"15.1":0.06219,"15.2-15.3":0.08707,"15.4":0.2612,"15.5":1.69571,"15.6":0.07877,"16.0":0.01658},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00341,"6.0-6.1":0.00682,"7.0-7.1":0.01818,"8.1-8.4":0,"9.0-9.2":0.00114,"9.3":0.04433,"10.0-10.2":0.00568,"10.3":0.02614,"11.0-11.2":0.00227,"11.3-11.4":0.00682,"12.0-12.1":0.00682,"12.2-12.5":0.29778,"13.0-13.1":0.00341,"13.2":0.00227,"13.3":0.05228,"13.4-13.7":0.0466,"14.0-14.4":0.18071,"14.5-14.8":0.6342,"15.0-15.1":0.11025,"15.2-15.3":0.30801,"15.4":0.56487,"15.5":8.67416,"16.0":0.10115},P:{"4":0.09301,"5.0-5.4":0.02186,"6.2-6.4":0.01093,"7.2-7.4":0.10335,"8.2":0.05271,"9.2":0.01033,"10.1":0.01083,"11.1-11.2":0.06201,"12.0":0.031,"13.0":0.05167,"14.0":0.07234,"15.0":0.04134,"16.0":0.12402,"17.0":2.36668},I:{"0":0,"3":0,"4":0.0141,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00403,"4.2-4.3":0.01007,"4.4":0,"4.4.3-4.4.4":0.0947},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06634,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.398},Q:{"10.4":0},O:{"0":0.03512},H:{"0":0.21611},L:{"0":42.49992}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.0042,"52":0.0042,"53":0,"54":0,"55":0,"56":0.00841,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02102,"74":0,"75":0,"76":0,"77":0,"78":0.00841,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0042,"85":0,"86":0,"87":0,"88":0.18077,"89":0,"90":0.04204,"91":0.01261,"92":0,"93":0,"94":0.0042,"95":0,"96":0,"97":0,"98":0.0042,"99":0.0042,"100":0.02522,"101":0.04624,"102":0.8408,"103":0.09249,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0042,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0042,"47":0.0042,"48":0,"49":0.00841,"50":0.0042,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0042,"66":0,"67":0,"68":0.0042,"69":0.0042,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0042,"77":0.0042,"78":0.0042,"79":0.01261,"80":0.0042,"81":0.01261,"83":0.0042,"84":0.0042,"85":0.0042,"86":0.02943,"87":0.01261,"88":0.00841,"89":0.00841,"90":0.0042,"91":0.01261,"92":0.03784,"93":0.01261,"94":0.0042,"95":0.0042,"96":0.02102,"97":0.02522,"98":0.02102,"99":0.03784,"100":0.04204,"101":0.05886,"102":0.70627,"103":10.24515,"104":0.00841,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0042,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02102,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.0042,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0042,"86":0.00841,"87":0.01682,"88":0.65162,"89":0.15555,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01261,"18":0.0042,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0042,"93":0,"94":0,"95":0,"96":0,"97":0.0042,"98":0,"99":0.0042,"100":0.0042,"101":0.02102,"102":0.04204,"103":1.66058,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0042,"14":0.04204,"15":0.00841,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00841,"12.1":0.00841,"13.1":0.07147,"14.1":0.11351,"15.1":0.02522,"15.2-15.3":0.03784,"15.4":0.1093,"15.5":0.71048,"15.6":0.03363,"16.0":0.00841},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00503,"6.0-6.1":0.01006,"7.0-7.1":0.02682,"8.1-8.4":0,"9.0-9.2":0.00168,"9.3":0.06537,"10.0-10.2":0.00838,"10.3":0.03855,"11.0-11.2":0.00335,"11.3-11.4":0.01006,"12.0-12.1":0.01006,"12.2-12.5":0.43916,"13.0-13.1":0.00503,"13.2":0.00335,"13.3":0.0771,"13.4-13.7":0.06872,"14.0-14.4":0.26651,"14.5-14.8":0.9353,"15.0-15.1":0.16259,"15.2-15.3":0.45424,"15.4":0.83306,"15.5":12.79254,"16.0":0.14918},P:{"4":0.11297,"5.0-5.4":0,"6.2-6.4":0.01027,"7.2-7.4":0.1027,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.06162,"12.0":0.03081,"13.0":0.06162,"14.0":0.07189,"15.0":0.04108,"16.0":0.11297,"17.0":2.31077,"18.0":0},I:{"0":0,"3":0,"4":0.03471,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00992,"4.2-4.3":0.02479,"4.4":0,"4.4.3-4.4.4":0.23306},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02943,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.75892},S:{"2.5":0},R:{_:"0"},M:{"0":0.39413},Q:{"10.4":0},O:{"0":0.03478},H:{"0":0.214}}; 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 a9fdc9daf42e9dc..59da20a5cf395a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js @@ -1 +1 @@ -module.exports={C:{"24":0.0094,"26":0.00235,"34":0.01409,"38":0.0047,"40":0.0094,"41":0.00235,"43":0.00705,"45":0.0047,"46":0.00235,"47":0.00705,"48":0.0047,"49":0.00235,"50":0.03289,"51":0.0047,"52":0.1104,"53":0.00705,"54":0.2443,"56":0.02114,"57":0.07047,"58":0.00705,"59":0.0047,"60":0.02819,"61":0.03758,"62":0.0094,"63":0.0047,"64":0.01879,"65":0.01409,"66":0.02584,"67":0.02819,"68":0.06107,"69":0.01409,"70":0.01879,"71":0.03524,"72":0.07987,"73":0.00705,"74":0.0094,"75":0.0094,"76":0.00705,"77":0.01644,"78":0.03054,"79":0.0094,"80":0.0094,"81":0.01879,"82":0.02349,"83":0.01409,"84":0.02819,"85":0.01409,"86":0.01175,"87":0.02114,"88":0.05403,"89":0.04463,"90":0.02114,"91":0.16913,"92":0.02349,"93":0.07282,"94":0.04933,"95":0.04933,"96":0.04228,"97":0.06342,"98":0.10101,"99":0.33121,"100":0.28658,"101":0.7,"102":4.89767,"103":0.41108,"104":0.0094,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 27 28 29 30 31 32 33 35 36 37 39 42 44 55 105 3.5 3.6"},D:{"26":0.0094,"43":0.05168,"49":0.00235,"54":0.00235,"56":0.01175,"60":0.03758,"61":0.01175,"62":0.01175,"63":0.0047,"66":0.00705,"67":0.0047,"68":0.0047,"69":0.04228,"70":0.01175,"71":0.02349,"72":0.01175,"73":0.00235,"74":0.0094,"75":0.01409,"76":0.00705,"77":0.03524,"78":0.0047,"79":0.02349,"80":0.02819,"81":0.02819,"83":0.0094,"84":0.00705,"85":0.02349,"86":0.07047,"87":0.06812,"88":0.10101,"89":0.04933,"90":0.05638,"91":0.02349,"92":0.02114,"93":0.01879,"94":0.04228,"95":0.04933,"96":0.13389,"97":0.15738,"98":0.06812,"99":0.09396,"100":0.09161,"101":0.16208,"102":0.74933,"103":4.97753,"104":0.01175,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 55 57 58 59 64 65 105 106"},F:{"36":0.00235,"48":0.00235,"64":0.0047,"69":0.00235,"78":0.00235,"79":0.03524,"80":0.00705,"82":0.0094,"83":0.0047,"84":0.01879,"85":0.03758,"86":0.02584,"87":0.02819,"88":0.41342,"89":0.15503,"90":0.00235,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 70 71 72 73 74 75 76 77 81 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0094,"13":0.01879,"14":0.01644,"15":0.0094,"16":0.01644,"17":0.02114,"18":0.08222,"84":0.02819,"85":0.00705,"89":0.02349,"90":0.04698,"92":0.03993,"94":0.00235,"95":0.0047,"96":0.0094,"97":0.01409,"98":0.01644,"99":0.01409,"100":0.01409,"101":0.03524,"102":0.07282,"103":0.84094,_:"79 80 81 83 86 87 88 91 93"},E:{"4":0,"13":0.00705,"14":0.01644,"15":0.00235,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.6 16.0","11.1":0.0047,"13.1":0.01409,"14.1":0.01175,"15.1":0.01409,"15.2-15.3":0.02349,"15.4":0.0094,"15.5":0.05873},G:{"8":0.00172,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03325,"8.1-8.4":0.07108,"9.0-9.2":0.00115,"9.3":0.02407,"10.0-10.2":0.00287,"10.3":0.05617,"11.0-11.2":0.0556,"11.3-11.4":0.00631,"12.0-12.1":0.02235,"12.2-12.5":0.63969,"13.0-13.1":0.02923,"13.2":0.0384,"13.3":0.16164,"13.4-13.7":0.23845,"14.0-14.4":0.73542,"14.5-14.8":0.58467,"15.0-15.1":0.52677,"15.2-15.3":0.70676,"15.4":0.3359,"15.5":1.3241,"16.0":0.03439},P:{"4":0.24629,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.42075,"8.2":0.03079,"9.2":0.0821,"10.1":0.01026,"11.1-11.2":0.11288,"12.0":0.01026,"13.0":0.11288,"14.0":0.19498,"15.0":0.09236,"16.0":0.42075,"17.0":1.21095},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00202,"4.2-4.3":0.03027,"4.4":0,"4.4.3-4.4.4":0.15134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00235,"11":0.03524,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.60443},Q:{"10.4":0},O:{"0":0.13772},H:{"0":0.84749},L:{"0":70.95425}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00237,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00237,"35":0.00237,"36":0.00237,"37":0,"38":0.00237,"39":0.00237,"40":0.00237,"41":0,"42":0,"43":0.00237,"44":0,"45":0.00237,"46":0,"47":0.00237,"48":0,"49":0.00237,"50":0.00946,"51":0,"52":0.02602,"53":0.00237,"54":0.05913,"55":0,"56":0.00473,"57":0.01656,"58":0.00237,"59":0.00237,"60":0.0071,"61":0.00946,"62":0.00946,"63":0.00237,"64":0.00473,"65":0.00473,"66":0.0071,"67":0.00946,"68":0.02838,"69":0.00237,"70":0.00473,"71":0.00946,"72":0.01892,"73":0.00237,"74":0.00237,"75":0.00237,"76":0.00237,"77":0.00473,"78":0.0071,"79":0.00237,"80":0.00237,"81":0.00473,"82":0.0071,"83":0.00473,"84":0.00946,"85":0.00473,"86":0.00473,"87":0.00473,"88":0.01419,"89":0.01183,"90":0.00473,"91":0.04021,"92":0.0071,"93":0.01892,"94":0.01656,"95":0.01419,"96":0.01892,"97":0.01656,"98":0.02602,"99":0.08278,"100":0.08041,"101":0.18447,"102":1.1825,"103":0.09933,"104":0.00237,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00237,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00237,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00237,"41":0,"42":0,"43":0.01183,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00237,"57":0,"58":0.00237,"59":0,"60":0.00946,"61":0.00237,"62":0.00237,"63":0,"64":0,"65":0,"66":0.00237,"67":0,"68":0.00237,"69":0.00946,"70":0.01419,"71":0.00473,"72":0.00237,"73":0,"74":0.00237,"75":0.00237,"76":0.00237,"77":0.00946,"78":0,"79":0.0071,"80":0.0071,"81":0.0071,"83":0.00237,"84":0.00237,"85":0.00473,"86":0.01656,"87":0.01656,"88":0.02365,"89":0.01183,"90":0.01419,"91":0.00473,"92":0.00473,"93":0.00473,"94":0.00946,"95":0.01183,"96":0.03075,"97":0.03784,"98":0.01656,"99":0.02129,"100":0.02129,"101":0.04021,"102":0.17974,"103":1.17777,"104":0.00237,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0.00237,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00237,"30":0,"31":0,"32":0,"33":0.00237,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00237,"51":0,"52":0,"53":0,"54":0,"55":0.00237,"56":0,"57":0,"58":0.00237,"60":0.00473,"62":0,"63":0.01419,"64":0.00237,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0071,"80":0.00237,"81":0,"82":0.00237,"83":0,"84":0.00473,"85":0.00946,"86":0.0071,"87":0.0071,"88":0.09697,"89":0.03784,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00237},B:{"12":0.00237,"13":0.00473,"14":0.00473,"15":0.00237,"16":0.00473,"17":0.00473,"18":0.01892,"79":0,"80":0,"81":0,"83":0,"84":0.0071,"85":0.00237,"86":0,"87":0,"88":0,"89":0.00473,"90":0.01183,"91":0,"92":0.00946,"93":0,"94":0,"95":0.00237,"96":0.00473,"97":0.00473,"98":0.00473,"99":0.00473,"100":0.00237,"101":0.00946,"102":0.02129,"103":0.21522,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00237,"14":0.00473,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00237,"14.1":0.00237,"15.1":0.00237,"15.2-15.3":0.00473,"15.4":0.00237,"15.5":0.01419,"15.6":0,"16.0":0},G:{"8":0.00217,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00145,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.04197,"8.1-8.4":0.08973,"9.0-9.2":0.00145,"9.3":0.03039,"10.0-10.2":0.00362,"10.3":0.07092,"11.0-11.2":0.0702,"11.3-11.4":0.00796,"12.0-12.1":0.02822,"12.2-12.5":0.80761,"13.0-13.1":0.03691,"13.2":0.04849,"13.3":0.20407,"13.4-13.7":0.30105,"14.0-14.4":0.92847,"14.5-14.8":0.73814,"15.0-15.1":0.66505,"15.2-15.3":0.89228,"15.4":0.42407,"15.5":1.67167,"16.0":0.04342},P:{"4":0.25172,"5.0-5.4":0.06041,"6.2-6.4":0.03021,"7.2-7.4":0.41283,"8.2":0.03021,"9.2":0.08055,"10.1":0.02014,"11.1-11.2":0.12083,"12.0":0.01007,"13.0":0.11076,"14.0":0.19131,"15.0":0.09062,"16.0":0.41283,"17.0":1.17807,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00334,"4.2-4.3":0.05009,"4.4":0,"4.4.3-4.4.4":0.25043},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00946,"5.5":0},J:{"7":0,"10":0.00764},N:{"10":0,"11":0},L:{"0":82.26688},S:{"2.5":0},R:{_:"0"},M:{"0":0.60317},Q:{"10.4":0.00764},O:{"0":0.13743},H:{"0":0.84571}}; 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 164419832596697..53f875ed6f7c213 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:{"30":0.00369,"52":0.05172,"58":0.08127,"61":0.02216,"76":0.01108,"78":0.00739,"84":0.01478,"89":0.00739,"91":0.01847,"98":0.00369,"99":0.01478,"101":0.04802,"102":0.92719,"103":0.09974,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 85 86 87 88 90 92 93 94 95 96 97 100 104 105 3.5 3.6"},D:{"31":0.00369,"43":0.02955,"49":0.09604,"52":0.01108,"56":0.01478,"60":0.01108,"62":0.00369,"63":0.00369,"65":0.01847,"70":0.00739,"72":0.00739,"73":0.00369,"74":0.00369,"75":0.00369,"76":0.08496,"77":0.00369,"78":0.04063,"79":0.07388,"80":0.03325,"81":0.01108,"83":0.00369,"84":0.01108,"85":0.02216,"86":0.02586,"87":0.01847,"88":0.02955,"89":0.07388,"90":0.00739,"91":0.35093,"92":0.01108,"93":0.00739,"94":0.01478,"95":0.01478,"96":0.08127,"97":0.05172,"98":0.01847,"99":0.09974,"100":0.09235,"101":0.1256,"102":0.87917,"103":23.13552,"104":0.06649,"105":0.00739,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 53 54 55 57 58 59 61 64 66 67 68 69 71 106"},F:{"31":0.00369,"79":0.14776,"84":0.00739,"85":0.22164,"87":0.01478,"88":0.62429,"89":0.38048,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00739,"13":0.00739,"14":0.00369,"15":0.00369,"16":0.00369,"18":0.03325,"81":0.00739,"84":0.00369,"85":0.00739,"87":0.01108,"89":0.00369,"90":0.00739,"91":0.00369,"92":0.00739,"99":0.02216,"100":0.02216,"101":0.03325,"102":0.07757,"103":4.54362,_:"17 79 80 83 86 88 93 94 95 96 97 98"},E:{"4":0,"13":0.01478,"14":0.15145,"15":0.01847,_:"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.01478,"12.1":0.01847,"13.1":0.06649,"14.1":0.1219,"15.1":0.05172,"15.2-15.3":0.05541,"15.4":0.04433,"15.5":0.4322,"15.6":0.03694,"16.0":0.01478},G:{"8":0.00383,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00287,"6.0-6.1":0,"7.0-7.1":0.00862,"8.1-8.4":0,"9.0-9.2":0.00096,"9.3":0.02587,"10.0-10.2":0.00479,"10.3":0.36512,"11.0-11.2":0.07187,"11.3-11.4":0.01437,"12.0-12.1":0.06325,"12.2-12.5":0.69191,"13.0-13.1":0.01342,"13.2":0.00671,"13.3":0.05367,"13.4-13.7":0.07379,"14.0-14.4":0.40824,"14.5-14.8":1.03307,"15.0-15.1":0.28462,"15.2-15.3":0.55678,"15.4":0.80595,"15.5":4.90563,"16.0":0.06996},P:{"4":0.57452,"5.0-5.4":0.02052,"6.2-6.4":0.10259,"7.2-7.4":0.21545,"8.2":0.05271,"9.2":0.0513,"10.1":0.02162,"11.1-11.2":0.15389,"12.0":0.01054,"13.0":0.07182,"14.0":0.17441,"15.0":0.15389,"16.0":0.17441,"17.0":1.66201},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00456,"4.2-4.3":0.01106,"4.4":0,"4.4.3-4.4.4":0.16725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04433,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.01892},R:{_:"0"},M:{"0":0.17026},Q:{"10.4":0.00631},O:{"0":0.16396},H:{"0":0.64477},L:{"0":51.18883}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0188,"53":0,"54":0,"55":0,"56":0.00376,"57":0,"58":0.03007,"59":0,"60":0,"61":0.00752,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00376,"77":0,"78":0.00376,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00752,"85":0,"86":0,"87":0,"88":0,"89":0.00376,"90":0,"91":0.00752,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00376,"99":0.01504,"100":0,"101":0.0188,"102":0.37966,"103":0.04135,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00376,"41":0,"42":0.00752,"43":0.01128,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0639,"50":0,"51":0,"52":0.00376,"53":0,"54":0,"55":0,"56":0.00752,"57":0,"58":0,"59":0.00376,"60":0.00376,"61":0,"62":0,"63":0,"64":0,"65":0.00752,"66":0,"67":0.00376,"68":0,"69":0.03383,"70":0.00376,"71":0,"72":0.00376,"73":0,"74":0.00376,"75":0,"76":0.03383,"77":0.00752,"78":0.0188,"79":0.03007,"80":0.01128,"81":0.2293,"83":0.00376,"84":0.00376,"85":0.00752,"86":0.01128,"87":0.01504,"88":0.01128,"89":0.02631,"90":0.00376,"91":0.13157,"92":0.02631,"93":0.00376,"94":0.00376,"95":0.00752,"96":0.04135,"97":0.0188,"98":0.00752,"99":0.04135,"100":0.03759,"101":0.05639,"102":0.33831,"103":8.7284,"104":0.02631,"105":0.00376,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02255,"64":0.00752,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.05639,"80":0,"81":0,"82":0,"83":0,"84":0.00376,"85":0.0827,"86":0,"87":0.00376,"88":0.23682,"89":0.14284,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00376,"13":0.00376,"14":0,"15":0.00376,"16":0,"17":0,"18":0.01128,"79":0,"80":0,"81":0.00376,"83":0,"84":0.00376,"85":0.00376,"86":0,"87":0.00376,"88":0,"89":0,"90":0.00376,"91":0,"92":0.00376,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00752,"100":0.00752,"101":0.01504,"102":0.0639,"103":1.72162,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00752,"14":0.05639,"15":0.00752,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00752,"12.1":0.00752,"13.1":0.02631,"14.1":0.04511,"15.1":0.0188,"15.2-15.3":0.02255,"15.4":0.01504,"15.5":0.16164,"15.6":0.01504,"16.0":0.00376},G:{"8":0.00537,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00403,"6.0-6.1":0,"7.0-7.1":0.01209,"8.1-8.4":0,"9.0-9.2":0.00134,"9.3":0.03626,"10.0-10.2":0.00672,"10.3":0.51172,"11.0-11.2":0.10073,"11.3-11.4":0.02015,"12.0-12.1":0.08864,"12.2-12.5":0.96972,"13.0-13.1":0.0188,"13.2":0.0094,"13.3":0.07521,"13.4-13.7":0.10342,"14.0-14.4":0.57216,"14.5-14.8":1.44786,"15.0-15.1":0.3989,"15.2-15.3":0.78034,"15.4":1.12955,"15.5":6.87534,"16.0":0.09805},P:{"4":0.5721,"5.0-5.4":0.02043,"6.2-6.4":0.11238,"7.2-7.4":0.20432,"8.2":0.01022,"9.2":0.05108,"10.1":0.01022,"11.1-11.2":0.15324,"12.0":0,"13.0":0.0613,"14.0":0.17367,"15.0":0.15324,"16.0":0.17367,"17.0":1.62435,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00994,"4.2-4.3":0.02414,"4.4":0,"4.4.3-4.4.4":0.36493},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0188,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.5782},S:{"2.5":0.01872},R:{_:"0"},M:{"0":0.16851},Q:{"10.4":0.00624},O:{"0":0.16227},H:{"0":0.63813}}; 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 8aa35bc9bd9fa5a..a8f7d821ff0c62f 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:{"102":7.89,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"102":6.58,"103":71.05,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"103":14.47,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0.09313,"5.0-5.4":0.01014,"6.2-6.4":0.05069,"7.2-7.4":0.06209,"8.2":0.05271,"9.2":0.01035,"10.1":0.01014,"11.1-11.2":0.07244,"12.0":0.02028,"13.0":0.05174,"14.0":0.10348,"15.0":0.04139,"16.0":0.12418,"17.0":1.51084},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:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":7.89,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":6.58,"103":71.05,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":14.47,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; 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 09e90e312f5576b..6126c7727bd27dd 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.14592,"78":0.02354,"79":0.00941,"84":0.00941,"88":0.00941,"91":0.01883,"94":0.00471,"100":0.00941,"101":0.06119,"102":1.13439,"103":0.11297,"104":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 29 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 89 90 92 93 95 96 97 98 99 105 3.5 3.6"},D:{"38":0.01412,"42":1.45446,"47":0.00471,"49":0.02824,"57":0.00941,"69":0.00941,"70":1.47329,"71":1.38857,"73":0.01412,"74":0.01883,"75":0.01883,"76":0.00471,"77":0.00941,"78":0.10355,"79":0.21182,"80":0.00941,"81":0.00471,"83":0.04707,"84":0.00941,"85":0.03295,"86":0.01883,"87":0.07061,"88":0.00471,"89":0.04236,"90":0.01412,"91":0.01412,"92":0.01412,"93":0.01412,"94":0.00941,"95":0.01412,"96":0.02824,"97":0.06119,"98":0.04236,"99":0.03295,"100":0.08943,"101":0.96964,"102":1.31325,"103":27.3665,"104":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 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 72 105 106"},F:{"28":0.04236,"40":0.01883,"46":0.00941,"82":0.01412,"85":0.00941,"86":0.00941,"87":0.07061,"88":1.64745,"89":0.80019,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00471,"15":0.01412,"18":0.01412,"101":0.01412,"102":0.05178,"103":4.06685,_:"12 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},E:{"4":0,"12":0.00941,"13":0.02824,"14":0.07531,"15":0.01883,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 16.0","9.1":0.00941,"11.1":0.00941,"12.1":0.01412,"13.1":0.37656,"14.1":0.26359,"15.1":0.10355,"15.2-15.3":0.03766,"15.4":0.11297,"15.5":0.88492,"15.6":0.06119},G:{"8":0.01537,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0048,"6.0-6.1":0.00288,"7.0-7.1":0.01441,"8.1-8.4":0,"9.0-9.2":0.00384,"9.3":0.04226,"10.0-10.2":0.00192,"10.3":0.07876,"11.0-11.2":0.01056,"11.3-11.4":0.01729,"12.0-12.1":0.01825,"12.2-12.5":0.33712,"13.0-13.1":0.00864,"13.2":0.00576,"13.3":0.02689,"13.4-13.7":0.09124,"14.0-14.4":0.29678,"14.5-14.8":0.90955,"15.0-15.1":0.21322,"15.2-15.3":0.28621,"15.4":0.56571,"15.5":6.42926,"16.0":0.0461},P:{"4":0.18571,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.0619,"8.2":0.03079,"9.2":0.0821,"10.1":0.01026,"11.1-11.2":0.02063,"12.0":0.01026,"13.0":0.04127,"14.0":0.0619,"15.0":0.02063,"16.0":0.11349,"17.0":3.35306},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00158,"4.4":0,"4.4.3-4.4.4":0.03547},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1365,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.17996},Q:{"10.4":0},O:{"0":0.35992},H:{"0":0.39086},L:{"0":38.53289}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0672,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0096,"79":0.0048,"80":0,"81":0,"82":0,"83":0,"84":0.0048,"85":0,"86":0,"87":0,"88":0.0048,"89":0,"90":0,"91":0.0096,"92":0,"93":0,"94":0.0048,"95":0,"96":0,"97":0,"98":0.0048,"99":0,"100":0.0048,"101":0.0336,"102":0.6048,"103":0.0576,"104":0.0048,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.0048,"36":0,"37":0,"38":0.0048,"39":0,"40":0,"41":0,"42":0.7008,"43":0,"44":0,"45":0,"46":0,"47":0.0048,"48":0,"49":0.0144,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.0048,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0048,"70":0.7056,"71":0.6672,"72":0,"73":0.0048,"74":0.0096,"75":0.0096,"76":0.0048,"77":0.0048,"78":0.0528,"79":0.1008,"80":0.0048,"81":0.0096,"83":0.024,"84":0.0048,"85":0.0144,"86":0.0096,"87":0.0336,"88":0.0048,"89":0.0192,"90":0.0048,"91":0.0048,"92":0.0096,"93":0.0096,"94":0.0048,"95":0.0096,"96":0.0144,"97":0.0288,"98":0.0192,"99":0.0144,"100":0.0432,"101":0.4656,"102":0.6336,"103":13.2528,"104":0.0048,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0192,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0096,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0048,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0384,"64":0.0048,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0048,"83":0,"84":0,"85":0.0048,"86":0.0048,"87":0.0336,"88":0.792,"89":0.384,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.0048,"16":0,"17":0,"18":0.0048,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0048,"102":0.0288,"103":1.9728,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0048,"13":0.0144,"14":0.0336,"15":0.0096,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.0048,"10.1":0,"11.1":0.0048,"12.1":0.0096,"13.1":0.1824,"14.1":0.1248,"15.1":0.048,"15.2-15.3":0.0192,"15.4":0.0528,"15.5":0.4224,"15.6":0.0288,"16.0":0},G:{"8":0.0241,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00753,"6.0-6.1":0.00452,"7.0-7.1":0.0226,"8.1-8.4":0,"9.0-9.2":0.00603,"9.3":0.06628,"10.0-10.2":0.00301,"10.3":0.12353,"11.0-11.2":0.01657,"11.3-11.4":0.02712,"12.0-12.1":0.02862,"12.2-12.5":0.52877,"13.0-13.1":0.01356,"13.2":0.00904,"13.3":0.04218,"13.4-13.7":0.14311,"14.0-14.4":0.4655,"14.5-14.8":1.42663,"15.0-15.1":0.33444,"15.2-15.3":0.44893,"15.4":0.88731,"15.5":10.08431,"16.0":0.07231},P:{"4":0.19414,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06131,"8.2":0,"9.2":0.01022,"10.1":0,"11.1-11.2":0.03065,"12.0":0.01022,"13.0":0.05109,"14.0":0.05109,"15.0":0.02044,"16.0":0.1124,"17.0":3.24926,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00686,"4.4":0,"4.4.3-4.4.4":0.15434},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0672,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.2268},S:{"2.5":0.0052},R:{_:"0"},M:{"0":0.1768},Q:{"10.4":0},O:{"0":0.3536},H:{"0":0.384}}; 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 3eaf7c004c5fa95..1047a717cf25f49 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.2119,"56":0.00986,"68":0.00493,"76":0.00986,"78":0.0345,"83":0.00493,"84":0.00986,"86":0.00493,"88":0.01971,"89":0.00986,"91":0.22176,"93":0.01478,"94":0.00986,"95":0.00986,"96":0.01478,"97":0.01478,"98":0.01478,"99":0.03942,"100":0.04435,"101":0.45338,"102":5.03149,"103":0.32032,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 79 80 81 82 85 87 90 92 104 105 3.5 3.6"},D:{"38":0.00986,"41":0.01478,"42":0.00493,"49":0.03942,"53":0.00493,"63":0.00493,"67":0.00493,"69":0.00493,"72":0.00986,"73":0.00493,"74":0.00986,"76":0.00493,"77":0.00986,"78":0.00986,"79":0.0887,"80":0.01478,"81":0.02957,"83":0.01478,"84":0.02957,"85":0.01478,"86":0.02464,"87":0.03942,"88":0.01478,"89":0.09363,"90":0.07392,"91":0.02464,"92":0.02957,"93":0.02464,"94":0.02464,"95":0.02464,"96":0.07885,"97":0.04435,"98":0.04435,"99":0.31539,"100":2.43443,"101":0.16755,"102":1.29606,"103":23.64454,"104":0.01478,"105":0.00493,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 68 70 71 75 106"},F:{"46":0.00986,"79":0.00986,"81":0.00493,"84":0.00493,"85":0.5815,"86":0.01478,"87":0.05914,"88":1.58189,"89":0.47309,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.04928},B:{"17":0.00493,"18":0.01478,"84":0.00493,"91":0.01971,"92":0.00986,"94":0.01478,"96":0.00986,"97":0.00986,"98":0.03942,"99":0.01478,"100":0.00986,"101":0.07885,"102":0.21683,"103":6.16493,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 90 93 95"},E:{"4":0,"13":0.01478,"14":0.07885,"15":0.02957,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.02464,"11.1":0.00986,"12.1":0.02464,"13.1":0.13798,"14.1":0.21683,"15.1":0.05914,"15.2-15.3":0.05421,"15.4":0.2119,"15.5":1.2665,"15.6":0.04928,"16.0":0.01478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00315,"6.0-6.1":0,"7.0-7.1":0.00525,"8.1-8.4":0.00105,"9.0-9.2":0.0021,"9.3":0.03988,"10.0-10.2":0.0021,"10.3":0.04932,"11.0-11.2":0.01049,"11.3-11.4":0.00944,"12.0-12.1":0.01049,"12.2-12.5":0.23295,"13.0-13.1":0.00839,"13.2":0.0063,"13.3":0.01469,"13.4-13.7":0.05562,"14.0-14.4":0.1553,"14.5-14.8":0.51943,"15.0-15.1":0.14586,"15.2-15.3":0.27178,"15.4":0.59918,"15.5":8.03378,"16.0":0.11963},P:{"4":0.10361,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.0619,"8.2":0.03079,"9.2":0.0821,"10.1":0.01026,"11.1-11.2":0.03108,"12.0":0.01026,"13.0":0.04144,"14.0":0.0518,"15.0":0.03108,"16.0":0.13469,"17.0":2.51763},I:{"0":0,"3":0,"4":0.00189,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01886,"4.2-4.3":0.01509,"4.4":0,"4.4.3-4.4.4":0.11126},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04435,"10":0.01971,"11":0.37453,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.43619},Q:{"10.4":0},O:{"0":0.15216},H:{"0":0.5234},L:{"0":36.61096}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.10473,"53":0,"54":0,"55":0,"56":0.00499,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01496,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00499,"77":0,"78":0.01995,"79":0,"80":0,"81":0,"82":0,"83":0.00499,"84":0.00499,"85":0,"86":0.00499,"87":0,"88":0.00997,"89":0.00499,"90":0,"91":0.10971,"92":0.00499,"93":0.00997,"94":0.00499,"95":0.00499,"96":0.00499,"97":0.00997,"98":0.00997,"99":0.01995,"100":0.02992,"101":0.2294,"102":2.52342,"103":0.30421,"104":0.00499,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00499,"39":0,"40":0,"41":0.00499,"42":0.00499,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01995,"50":0,"51":0,"52":0,"53":0.00499,"54":0,"55":0,"56":0.00499,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00499,"64":0,"65":0,"66":0,"67":0.00499,"68":0.00499,"69":0.00499,"70":0.00499,"71":0.00499,"72":0.00499,"73":0.00499,"74":0.00499,"75":0.00499,"76":0.00499,"77":0.00499,"78":0.00499,"79":0.04488,"80":0.00997,"81":0.03491,"83":0.00997,"84":0.01496,"85":0.00499,"86":0.01496,"87":0.01995,"88":0.00997,"89":0.05486,"90":0.03491,"91":0.01496,"92":0.01995,"93":0.01496,"94":0.00997,"95":0.02494,"96":0.04488,"97":0.02494,"98":0.02494,"99":0.15958,"100":1.20685,"101":0.08977,"102":0.64831,"103":12.05857,"104":0.00997,"105":0.00499,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00499,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00499,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01995,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00499,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00499,"80":0,"81":0,"82":0,"83":0,"84":0.00499,"85":0.28925,"86":0.00499,"87":0.02992,"88":0.73808,"89":0.29423,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02494},B:{"12":0,"13":0,"14":0,"15":0.00499,"16":0.00499,"17":0.00499,"18":0.00499,"79":0,"80":0,"81":0,"83":0,"84":0.00499,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00997,"92":0.00499,"93":0,"94":0.00499,"95":0,"96":0.00499,"97":0.00499,"98":0.01995,"99":0.00499,"100":0.00997,"101":0.0399,"102":0.1147,"103":3.1069,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00997,"14":0.0399,"15":0.01496,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00997,"10.1":0,"11.1":0.00499,"12.1":0.00997,"13.1":0.06982,"14.1":0.10971,"15.1":0.02992,"15.2-15.3":0.02494,"15.4":0.10473,"15.5":0.62338,"15.6":0.03491,"16.0":0.00997},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00493,"6.0-6.1":0,"7.0-7.1":0.00822,"8.1-8.4":0.00164,"9.0-9.2":0.00329,"9.3":0.06249,"10.0-10.2":0.00329,"10.3":0.07729,"11.0-11.2":0.01645,"11.3-11.4":0.0148,"12.0-12.1":0.01645,"12.2-12.5":0.36508,"13.0-13.1":0.01316,"13.2":0.00987,"13.3":0.02302,"13.4-13.7":0.08716,"14.0-14.4":0.24339,"14.5-14.8":0.81403,"15.0-15.1":0.22859,"15.2-15.3":0.42593,"15.4":0.93901,"15.5":12.59031,"16.0":0.18747},P:{"4":0.12266,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01022,"11.1-11.2":0.03066,"12.0":0.01022,"13.0":0.05111,"14.0":0.05111,"15.0":0.03066,"16.0":0.12266,"17.0":2.45317,"18.0":0},I:{"0":0,"3":0,"4":0.00359,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0359,"4.2-4.3":0.02872,"4.4":0,"4.4.3-4.4.4":0.21181},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01995,"9":0,"10":0.00997,"11":0.18452,"5.5":0},J:{"7":0,"10":0.00501},N:{"10":0,"11":0},L:{"0":51.93584},S:{"2.5":0},R:{_:"0"},M:{"0":0.42611},Q:{"10.4":0},O:{"0":0.14538},H:{"0":0.51731}}; 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 7cc0893f7c51e9c..5758e9ef1d6d70e 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.03689,"50":0.00461,"52":0.13372,"56":0.00922,"59":0.02306,"60":0.00922,"64":0.00461,"66":0.00922,"68":0.01844,"70":0.00461,"72":0.00922,"77":0.09683,"78":0.11066,"79":0.0415,"80":0.00922,"81":0.01383,"82":0.00922,"83":0.02767,"84":0.01844,"85":0.00461,"86":0.05994,"87":0.00922,"88":0.02306,"89":0.01844,"90":0.00922,"91":0.36427,"92":0.00922,"93":0.00922,"94":0.01383,"95":0.02306,"96":0.02306,"97":0.02306,"98":0.0415,"99":0.05072,"100":0.13833,"101":0.45188,"102":7.69576,"103":0.70087,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 65 67 69 71 73 74 75 76 104 105 3.5 3.6"},D:{"35":0.02306,"38":0.00461,"41":0.00461,"43":0.03228,"49":0.03228,"52":0.03228,"56":0.00461,"59":0.00461,"60":0.00922,"61":0.02767,"63":0.00922,"65":0.12911,"66":0.11989,"67":0.01383,"68":0.05533,"69":0.06917,"70":0.01383,"71":0.02767,"72":0.03228,"73":0.00461,"74":0.00922,"75":1.53085,"76":0.00922,"77":0.00922,"78":0.02767,"79":0.06917,"80":0.4611,"81":0.03689,"83":0.05533,"84":0.17061,"85":0.10144,"86":0.10605,"87":0.11528,"88":0.02306,"89":0.04611,"90":0.03689,"91":0.02767,"92":0.0415,"93":0.01844,"94":0.02306,"95":0.02306,"96":0.07378,"97":0.03228,"98":0.04611,"99":0.10605,"100":0.22133,"101":0.18905,"102":0.83459,"103":14.32177,"104":0.01383,"105":0.00461,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 42 44 45 46 47 48 50 51 53 54 55 57 58 62 64 106"},F:{"46":0.00461,"69":0.00461,"71":0.00922,"79":0.00461,"82":0.00461,"84":0.00461,"85":0.01844,"86":0.01844,"87":0.05994,"88":2.08417,"89":0.67321,_:"9 11 12 15 16 17 18 19 20 21 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 72 73 74 75 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01383,"18":0.02306,"84":0.00922,"85":0.00922,"86":0.00922,"89":0.00461,"90":0.00461,"91":0.00461,"92":0.00922,"94":0.00461,"95":0.00461,"96":0.01383,"97":0.01844,"98":0.01383,"99":0.01844,"100":0.03228,"101":0.10144,"102":0.23977,"103":6.16952,_:"12 13 14 15 16 79 80 81 83 87 88 93"},E:{"4":0,"7":0.00461,"12":0.00461,"13":0.02767,"14":0.14755,"15":0.05072,_:"0 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01844,"10.1":0.00461,"11.1":0.04611,"12.1":0.0415,"13.1":0.27205,"14.1":0.43805,"15.1":0.10144,"15.2-15.3":0.10605,"15.4":0.42882,"15.5":2.91876,"15.6":0.13372,"16.0":0.01844},G:{"8":0.00366,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00548,"6.0-6.1":0,"7.0-7.1":0.00366,"8.1-8.4":0,"9.0-9.2":0.01463,"9.3":0.07861,"10.0-10.2":0.00183,"10.3":0.07496,"11.0-11.2":0.02742,"11.3-11.4":0.09324,"12.0-12.1":0.01645,"12.2-12.5":0.53383,"13.0-13.1":0.01645,"13.2":0.00548,"13.3":0.04936,"13.4-13.7":0.15174,"14.0-14.4":0.41866,"14.5-14.8":1.19381,"15.0-15.1":0.29982,"15.2-15.3":0.5576,"15.4":1.1024,"15.5":13.07341,"16.0":0.10969},P:{"4":0.08335,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.08406,"8.2":0.021,"9.2":0.11282,"10.1":0.05305,"11.1-11.2":0.03125,"12.0":0.02084,"13.0":0.07293,"14.0":0.06251,"15.0":1.82318,"16.0":0.17711,"17.0":4.59442},I:{"0":0,"3":0,"4":0.00111,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03095,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.02653},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00936,"9":0.00936,"11":0.30406,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":1.05624},Q:{"10.4":0},O:{"0":0.15089},H:{"0":0.56632},L:{"0":27.32908}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00473,"48":0.01891,"49":0,"50":0.00473,"51":0,"52":0.06146,"53":0,"54":0,"55":0,"56":0.00473,"57":0,"58":0,"59":0.00946,"60":0.00473,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00473,"67":0,"68":0.01418,"69":0,"70":0.00473,"71":0,"72":0.00473,"73":0,"74":0,"75":0,"76":0,"77":0.04728,"78":0.05201,"79":0.01891,"80":0.00473,"81":0.00946,"82":0.00473,"83":0.01418,"84":0.00946,"85":0.00473,"86":0.02837,"87":0.00473,"88":0.01418,"89":0.00946,"90":0.00473,"91":0.17494,"92":0.00473,"93":0.00473,"94":0.00946,"95":0.01418,"96":0.01418,"97":0.01418,"98":0.02364,"99":0.02837,"100":0.07092,"101":0.2364,"102":3.88169,"103":0.46334,"104":0.00473,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00946,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00473,"42":0,"43":0.01418,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01418,"50":0,"51":0,"52":0.01418,"53":0,"54":0,"55":0,"56":0.00473,"57":0,"58":0,"59":0.00473,"60":0.00473,"61":0.01418,"62":0,"63":0.00473,"64":0,"65":0.06146,"66":0.05674,"67":0.00473,"68":0.02837,"69":0.0331,"70":0.00473,"71":0.01418,"72":0.01418,"73":0.00473,"74":0.00473,"75":0.72811,"76":0.00473,"77":0.00473,"78":0.01418,"79":0.0331,"80":0.21276,"81":0.02364,"83":0.02364,"84":0.08038,"85":0.04728,"86":0.05201,"87":0.05674,"88":0.00946,"89":0.02364,"90":0.01891,"91":0.01418,"92":0.02364,"93":0.00946,"94":0.00946,"95":0.01418,"96":0.03782,"97":0.01418,"98":0.02364,"99":0.05201,"100":0.10402,"101":0.08983,"102":0.39242,"103":6.83669,"104":0.00946,"105":0.00473,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00473,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01891,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00473,"70":0.00473,"71":0.00473,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00473,"80":0,"81":0,"82":0.00473,"83":0,"84":0.00473,"85":0.00946,"86":0.00946,"87":0.02837,"88":0.95506,"89":0.34987,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00473,"16":0,"17":0.00473,"18":0.00946,"79":0,"80":0,"81":0,"83":0,"84":0.00473,"85":0.00473,"86":0.00473,"87":0,"88":0,"89":0.00473,"90":0.00473,"91":0.00473,"92":0.00473,"93":0,"94":0.00473,"95":0.00473,"96":0.00946,"97":0.00946,"98":0.00473,"99":0.00946,"100":0.01418,"101":0.04728,"102":0.12293,"103":2.94082,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00473,"8":0,"9":0,"10":0,"11":0,"12":0.00473,"13":0.01418,"14":0.07092,"15":0.02364,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00946,"10.1":0.00473,"11.1":0.02364,"12.1":0.01891,"13.1":0.12766,"14.1":0.20803,"15.1":0.04728,"15.2-15.3":0.04728,"15.4":0.2033,"15.5":1.37112,"15.6":0.07565,"16.0":0.00946},G:{"8":0.00544,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00816,"6.0-6.1":0,"7.0-7.1":0.00544,"8.1-8.4":0,"9.0-9.2":0.02176,"9.3":0.11698,"10.0-10.2":0.00272,"10.3":0.11153,"11.0-11.2":0.04081,"11.3-11.4":0.13874,"12.0-12.1":0.02448,"12.2-12.5":0.79435,"13.0-13.1":0.02448,"13.2":0.00816,"13.3":0.07345,"13.4-13.7":0.22579,"14.0-14.4":0.62296,"14.5-14.8":1.7764,"15.0-15.1":0.44614,"15.2-15.3":0.82971,"15.4":1.64038,"15.5":19.45333,"16.0":0.16322},P:{"4":0.09271,"5.0-5.4":0.0103,"6.2-6.4":0,"7.2-7.4":0.0309,"8.2":0,"9.2":0.0103,"10.1":0.0103,"11.1-11.2":0.05151,"12.0":0.0206,"13.0":0.07211,"14.0":0.06181,"15.0":1.75118,"16.0":0.16482,"17.0":4.41915,"18.0":0.0103},I:{"0":0,"3":0,"4":0.00432,"2.1":0,"2.2":0,"2.3":0,"4.1":0.12106,"4.2-4.3":0.02378,"4.4":0,"4.4.3-4.4.4":0.10377},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00488,"9":0.00488,"10":0,"11":0.14627,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.07359},S:{"2.5":0},R:{_:"0"},M:{"0":1.03331},Q:{"10.4":0},O:{"0":0.14762},H:{"0":0.55402}}; 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 e625d8483b73571..879139eebfbbd72 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:{"42":0.01175,"43":0.00294,"67":0.00294,"78":0.01469,"91":0.01469,"96":0.01175,"97":0.00881,"99":0.08811,"100":0.01762,"101":0.04112,"102":1.90611,"103":0.17622,"104":0.00294,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 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 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 98 105 3.5 3.6"},D:{"34":0.00294,"35":0.00294,"46":0.00294,"47":0.00587,"49":0.00881,"53":0.00881,"58":0.00587,"70":0.00881,"71":0.01469,"76":0.01175,"79":0.01175,"80":0.01469,"86":0.02056,"87":0.01762,"88":0.00294,"89":0.01762,"90":0.01175,"94":0.01469,"95":0.00294,"96":0.09398,"97":0.02643,"98":0.01175,"99":0.05287,"100":0.17328,"101":0.02643,"102":1.18361,"103":19.66028,"105":0.03818,_:"4 5 6 7 8 9 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 48 50 51 52 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 72 73 74 75 77 78 81 83 84 85 91 92 93 104 106"},F:{"85":0.00881,"87":0.02056,"88":0.15566,"89":0.10573,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00294,"14":0.00294,"15":0.03231,"17":0.00294,"18":0.04993,"85":0.01469,"89":0.00881,"91":0.00587,"92":0.01469,"97":0.00587,"98":0.00587,"99":0.03231,"100":0.00294,"101":0.06461,"102":0.0235,"103":2.33785,_:"13 16 79 80 81 83 84 86 87 88 90 93 94 95 96"},E:{"4":0,"13":0.00881,"14":0.12923,"15":0.03231,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 15.6 16.0","9.1":0.00881,"10.1":0.00881,"11.1":0.04112,"12.1":0.01175,"13.1":0.1351,"14.1":0.07049,"15.1":0.04699,"15.2-15.3":0.00587,"15.4":0.0793,"15.5":0.54628},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.05499,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01447,"10.0-10.2":0,"10.3":0.02315,"11.0-11.2":0.00386,"11.3-11.4":0.00096,"12.0-12.1":0.00386,"12.2-12.5":0.31066,"13.0-13.1":0.01447,"13.2":0.02991,"13.3":0.02605,"13.4-13.7":0.07622,"14.0-14.4":0.60781,"14.5-14.8":0.95514,"15.0-15.1":0.5316,"15.2-15.3":0.50748,"15.4":0.88374,"15.5":5.09696,"16.0":0.06175},P:{"4":0.48566,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.60707,"8.2":0.03079,"9.2":0.01012,"10.1":0.02024,"11.1-11.2":1.01179,"12.0":0.02024,"13.0":0.15177,"14.0":0.15177,"15.0":0.08094,"16.0":0.59696,"17.0":3.0556},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00107,"4.4":0,"4.4.3-4.4.4":0.02012},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06755,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.10595},Q:{"10.4":0.38847},O:{"0":1.82932},H:{"0":1.01639},L:{"0":52.66736}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00297,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00594,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00297,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00594,"92":0,"93":0,"94":0,"95":0,"96":0.00297,"97":0.00297,"98":0,"99":0.02675,"100":0.00594,"101":0.01486,"102":0.58846,"103":0.0535,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00594,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00297,"48":0,"49":0.00297,"50":0,"51":0,"52":0,"53":0.00297,"54":0,"55":0,"56":0,"57":0,"58":0.00297,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00297,"71":0.00297,"72":0,"73":0,"74":0,"75":0,"76":0.00297,"77":0,"78":0,"79":0.00594,"80":0.00297,"81":0.08322,"83":0,"84":0,"85":0,"86":0.00594,"87":0.01189,"88":0,"89":0.00594,"90":0.00297,"91":0,"92":0,"93":0,"94":0.00297,"95":0,"96":0.02675,"97":0.00892,"98":0.00297,"99":0.01486,"100":0.05052,"101":0.00892,"102":0.35367,"103":5.84592,"104":0,"105":0.01189,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.07133,"64":0.01189,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00297,"86":0,"87":0.00594,"88":0.04755,"89":0.03269,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.0208,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00297},B:{"12":0,"13":0.00297,"14":0,"15":0.00892,"16":0,"17":0,"18":0.01486,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00297,"86":0,"87":0,"88":0,"89":0.00297,"90":0,"91":0.00297,"92":0.00594,"93":0,"94":0,"95":0.00297,"96":0,"97":0.00297,"98":0.00297,"99":0.00892,"100":0.00297,"101":0.01783,"102":0.01486,"103":0.70139,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00297,"14":0.03864,"15":0.00892,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00297,"10.1":0.00297,"11.1":0.01189,"12.1":0.00297,"13.1":0.04161,"14.1":0.0208,"15.1":0.01486,"15.2-15.3":0.00297,"15.4":0.02378,"15.5":0.16346,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07365,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01938,"10.0-10.2":0,"10.3":0.03101,"11.0-11.2":0.00517,"11.3-11.4":0.00129,"12.0-12.1":0.00517,"12.2-12.5":0.41607,"13.0-13.1":0.01938,"13.2":0.04006,"13.3":0.03489,"13.4-13.7":0.10208,"14.0-14.4":0.81404,"14.5-14.8":1.27921,"15.0-15.1":0.71196,"15.2-15.3":0.67966,"15.4":1.18359,"15.5":6.82633,"16.0":0.0827},P:{"4":0.49412,"5.0-5.4":0.01008,"6.2-6.4":0.01008,"7.2-7.4":0.59496,"8.2":0,"9.2":0.01008,"10.1":0.03025,"11.1-11.2":0.99833,"12.0":0.03025,"13.0":0.15126,"14.0":0.15126,"15.0":0.08067,"16.0":0.59496,"17.0":3.00508,"18.0":0.03025},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00242,"4.4":0,"4.4.3-4.4.4":0.04541},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0208,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.54919},S:{"2.5":0},R:{_:"0"},M:{"0":0.10542},Q:{"10.4":0.38654},O:{"0":1.82025},H:{"0":1.01136}}; 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 2fee83759527417..7d8bd004991a40a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js @@ -1 +1 @@ -module.exports={C:{"47":0.01124,"48":0.01124,"52":0.0281,"78":0.03934,"84":0.02248,"87":0.08992,"89":0.01124,"91":0.04496,"93":0.01686,"94":0.21356,"99":0.01686,"100":0.01686,"101":0.15174,"102":2.21428,"103":0.281,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 90 92 95 96 97 98 104 105 3.5 3.6"},D:{"38":0.01124,"46":0.00562,"49":0.0562,"52":0.00562,"53":0.00562,"59":0.01124,"65":0.00562,"66":0.0281,"67":0.00562,"69":0.24728,"75":0.00562,"76":0.01124,"77":0.00562,"79":0.11802,"80":0.01686,"81":0.00562,"83":0.01124,"84":0.02248,"85":0.01124,"86":0.01686,"87":0.07868,"88":0.00562,"89":0.03372,"90":0.01686,"91":0.01686,"92":0.0281,"93":0.0281,"94":0.03372,"95":0.0562,"96":0.07868,"97":0.06744,"98":0.1124,"99":0.14612,"100":0.24728,"101":0.53952,"102":2.3323,"103":31.37084,"104":0.01686,"105":0.00562,_:"4 5 6 7 8 9 10 11 12 13 14 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 54 55 56 57 58 60 61 62 63 64 68 70 71 72 73 74 78 106"},F:{"46":0.00562,"69":0.00562,"85":0.00562,"86":0.01686,"87":0.03934,"88":1.11276,"89":0.29224,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00562,"86":0.00562,"91":0.00562,"92":0.00562,"95":0.01124,"96":0.00562,"97":0.02248,"98":0.01124,"99":0.01124,"100":0.03934,"101":0.10678,"102":0.20794,"103":6.04712,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 93 94"},E:{"4":0,"13":0.0562,"14":0.32596,"15":0.09554,_:"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.01686,"12.1":0.06182,"13.1":0.37092,"14.1":1.00598,"15.1":0.15736,"15.2-15.3":0.12364,"15.4":0.6182,"15.5":4.29368,"15.6":0.17984,"16.0":0.01124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00499,"8.1-8.4":0,"9.0-9.2":0.06241,"9.3":0.09736,"10.0-10.2":0.00499,"10.3":0.13231,"11.0-11.2":0.01747,"11.3-11.4":0.01498,"12.0-12.1":0.01997,"12.2-12.5":0.53672,"13.0-13.1":0.00999,"13.2":0.0025,"13.3":0.02247,"13.4-13.7":0.12232,"14.0-14.4":0.39442,"14.5-14.8":1.7125,"15.0-15.1":0.37445,"15.2-15.3":0.76888,"15.4":1.45288,"15.5":18.65522,"16.0":0.07739},P:{"4":0.08472,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.0619,"8.2":0.03079,"9.2":0.0821,"10.1":0.01026,"11.1-11.2":0.04236,"12.0":0.01026,"13.0":0.02118,"14.0":0.02118,"15.0":0.01059,"16.0":0.06354,"17.0":2.26618},I:{"0":0,"3":0,"4":0.00237,"2.1":0,"2.2":0.00474,"2.3":0.00119,"4.1":0.02133,"4.2-4.3":0.0083,"4.4":0,"4.4.3-4.4.4":0.06281},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.01124,"8":0.0281,"9":0.00562,"10":0.10116,"11":0.38216,_:"6 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.57378},Q:{"10.4":0},O:{"0":0.01752},H:{"0":0.18245},L:{"0":16.03504}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00577,"48":0.00577,"49":0,"50":0,"51":0,"52":0.0173,"53":0.00577,"54":0,"55":0,"56":0.00577,"57":0.00577,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02306,"79":0,"80":0,"81":0.00577,"82":0,"83":0,"84":0.01153,"85":0,"86":0,"87":0.05189,"88":0.00577,"89":0.00577,"90":0,"91":0.02306,"92":0,"93":0.01153,"94":0.12683,"95":0,"96":0.00577,"97":0,"98":0,"99":0.01153,"100":0.02306,"101":0.1153,"102":1.4989,"103":0.17295,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00577,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00577,"47":0,"48":0,"49":0.02883,"50":0,"51":0,"52":0.00577,"53":0.00577,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00577,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00577,"66":0.0173,"67":0.00577,"68":0,"69":0.14413,"70":0.00577,"71":0,"72":0,"73":0.00577,"74":0.00577,"75":0.00577,"76":0.00577,"77":0.00577,"78":0,"79":0.06918,"80":0.00577,"81":0.01153,"83":0.00577,"84":0.0173,"85":0.00577,"86":0.01153,"87":0.04612,"88":0.00577,"89":0.02306,"90":0.01153,"91":0.01153,"92":0.02306,"93":0.0173,"94":0.0173,"95":0.03459,"96":0.04612,"97":0.04612,"98":0.06342,"99":0.08648,"100":0.14413,"101":0.32284,"102":1.35478,"103":18.20011,"104":0.01153,"105":0.00577,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00577,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00577,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00577,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00577,"86":0.00577,"87":0.02306,"88":0.63992,"89":0.16719,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00577,"16":0,"17":0,"18":0.00577,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00577,"87":0,"88":0,"89":0,"90":0,"91":0.00577,"92":0.00577,"93":0,"94":0,"95":0.00577,"96":0.00577,"97":0.01153,"98":0.00577,"99":0.00577,"100":0.02306,"101":0.06342,"102":0.1326,"103":3.53395,_:"104"},E:{"4":0,"5":0.00577,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00577,"13":0.02883,"14":0.19025,"15":0.05189,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01153,"12.1":0.03459,"13.1":0.21331,"14.1":0.58227,"15.1":0.09224,"15.2-15.3":0.07495,"15.4":0.35743,"15.5":2.47895,"15.6":0.10377,"16.0":0.00577},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00798,"8.1-8.4":0,"9.0-9.2":0.09972,"9.3":0.15557,"10.0-10.2":0.00798,"10.3":0.21142,"11.0-11.2":0.02792,"11.3-11.4":0.02393,"12.0-12.1":0.03191,"12.2-12.5":0.85763,"13.0-13.1":0.01596,"13.2":0.00399,"13.3":0.0359,"13.4-13.7":0.19546,"14.0-14.4":0.63026,"14.5-14.8":2.73644,"15.0-15.1":0.59835,"15.2-15.3":1.2286,"15.4":2.32158,"15.5":29.8096,"16.0":0.12366},P:{"4":0.09333,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02074,"10.1":0,"11.1-11.2":0.04148,"12.0":0,"13.0":0.02074,"14.0":0.02074,"15.0":0.01037,"16.0":0.05185,"17.0":2.15703,"18.0":0.01037},I:{"0":0,"3":0,"4":0.00433,"2.1":0,"2.2":0.00865,"2.3":0.00216,"4.1":0.03894,"4.2-4.3":0.01514,"4.4":0,"4.4.3-4.4.4":0.11465},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00577,"8":0.0173,"9":0.00577,"10":0.05765,"11":0.21907,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":22.9517},S:{"2.5":0},R:{_:"0"},M:{"0":0.55479},Q:{"10.4":0},O:{"0":0.01694},H:{"0":0.17641}}; 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 d705c09533b8463..472167c91263f92 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:{"52":0.00971,"84":0.00485,"100":0.10193,"101":0.05825,"102":1.24262,"103":0.02912,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"49":0.00971,"53":0.00971,"54":0.00971,"69":0.04369,"70":0.00485,"71":0.00485,"75":0.02912,"76":1.06788,"77":0.26212,"79":0.02912,"84":0.00971,"85":0.02912,"87":0.00485,"88":0.01942,"89":0.00971,"90":0.01942,"91":0.04369,"93":0.02912,"94":0.00485,"95":0.01456,"96":0.02912,"97":0.04369,"98":0.07766,"99":0.01942,"100":0.13591,"101":0.59219,"102":1.93189,"103":24.91558,"104":0.05339,"105":0.03883,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 72 73 74 78 80 81 83 86 92 106"},F:{"82":0.01456,"86":0.00971,"87":0.00971,"88":0.80576,"89":0.13591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00971,"15":0.02427,"16":0.2427,"18":0.01456,"80":0.00485,"85":0.00971,"92":1.13584,"99":0.00971,"100":0.00485,"101":0.12135,"102":0.19416,"103":4.39287,_:"13 14 17 79 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01942,"14":0.03883,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3","11.1":0.00485,"12.1":0.01456,"13.1":0.04854,"14.1":0.05825,"15.1":0.03398,"15.4":0.10193,"15.5":2.49981,"15.6":0.08737,"16.0":0.00971},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00117,"6.0-6.1":0,"7.0-7.1":0.0111,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01052,"10.0-10.2":0,"10.3":0.04149,"11.0-11.2":0.01461,"11.3-11.4":0.02104,"12.0-12.1":0.00117,"12.2-12.5":0.46051,"13.0-13.1":0.0076,"13.2":0,"13.3":0.00175,"13.4-13.7":0.02688,"14.0-14.4":0.14143,"14.5-14.8":0.16246,"15.0-15.1":0.24253,"15.2-15.3":0.11513,"15.4":0.23668,"15.5":4.17205,"16.0":0.04909},P:{"4":0.35276,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.16034,"8.2":0.03079,"9.2":0.01012,"10.1":0.01069,"11.1-11.2":0.07483,"12.0":0.02024,"13.0":0.07483,"14.0":0.02138,"15.0":0.05345,"16.0":0.05345,"17.0":3.90172},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01029,"4.2-4.3":0.00412,"4.4":0,"4.4.3-4.4.4":0.07822},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01456,"11":0.01942,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.14923},Q:{"10.4":0},O:{"0":0.24701},H:{"0":0.16077},L:{"0":47.50933}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00518,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00518,"97":0,"98":0,"99":0,"100":0.05183,"101":0.04146,"102":0.68934,"103":0.01555,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00518,"50":0,"51":0,"52":0,"53":0.00518,"54":0.00518,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.02073,"70":0.00518,"71":0,"72":0,"73":0,"74":0,"75":0.01555,"76":0.55458,"77":0.13476,"78":0,"79":0.01555,"80":0,"81":0.00518,"83":0,"84":0.00518,"85":0.01555,"86":0,"87":0,"88":0.01037,"89":0.00518,"90":0.01037,"91":0.02073,"92":0,"93":0.01555,"94":0,"95":0.01037,"96":0.01555,"97":0.02073,"98":0.04146,"99":0.01037,"100":0.07775,"101":0.3058,"102":1.01069,"103":12.94195,"104":0.02592,"105":0.02073,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00518,"62":0,"63":0.01555,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00518,"83":0,"84":0,"85":0,"86":0.00518,"87":0.00518,"88":0.41982,"89":0.07256,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00518,"13":0,"14":0,"15":0.01555,"16":0.12439,"17":0,"18":0.01037,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00518,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.59086,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00518,"100":0,"101":0.0622,"102":0.09848,"103":2.29089,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01037,"14":0.02073,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00518,"12.1":0.00518,"13.1":0.02592,"14.1":0.0311,"15.1":0.02073,"15.2-15.3":0,"15.4":0.05183,"15.5":1.29575,"15.6":0.04665,"16.0":0.00518},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0,"7.0-7.1":0.01793,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01699,"10.0-10.2":0,"10.3":0.06701,"11.0-11.2":0.0236,"11.3-11.4":0.03398,"12.0-12.1":0.00189,"12.2-12.5":0.74376,"13.0-13.1":0.01227,"13.2":0,"13.3":0.00283,"13.4-13.7":0.04342,"14.0-14.4":0.22841,"14.5-14.8":0.26239,"15.0-15.1":0.3917,"15.2-15.3":0.18594,"15.4":0.38226,"15.5":6.7382,"16.0":0.07928},P:{"4":0.33289,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.1396,"8.2":0,"9.2":0,"10.1":0.01074,"11.1-11.2":0.06443,"12.0":0,"13.0":0.07517,"14.0":0.02148,"15.0":0.04295,"16.0":0.05369,"17.0":3.66179,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.19219,"4.2-4.3":0.07688,"4.4":0,"4.4.3-4.4.4":1.46065},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00518,"11":0.01037,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.08395},S:{"2.5":0},R:{_:"0"},M:{"0":0.13969},Q:{"10.4":0},O:{"0":0.23122},H:{"0":0.15049}}; 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 b6e0050af27e5b8..a47dccc5663b698 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js @@ -1 +1 @@ -module.exports={C:{"52":0.0166,"68":0.00415,"73":0.04149,"78":0.01245,"82":0.00415,"84":0.01245,"88":0.01245,"89":0.0083,"90":0.0166,"91":0.01245,"92":0.01245,"93":0.00415,"99":0.02489,"100":0.0166,"101":0.09543,"102":1.03725,"103":0.12447,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 74 75 76 77 79 80 81 83 85 86 87 94 95 96 97 98 104 105 3.5 3.6"},D:{"38":0.0083,"42":0.00415,"47":0.01245,"48":0.0083,"49":0.07053,"55":0.0083,"63":0.01245,"64":0.02489,"65":0.0166,"68":0.0083,"70":0.0083,"72":0.0083,"73":0.0083,"74":0.0083,"75":0.0083,"76":0.03734,"79":0.05394,"80":0.02489,"81":0.02489,"83":0.07883,"84":0.07468,"85":0.06638,"86":0.11202,"87":0.15766,"88":0.02075,"89":0.06224,"90":0.03734,"91":0.05809,"92":0.03319,"93":0.04149,"94":0.02489,"95":0.03319,"96":0.08713,"97":0.04979,"98":0.06224,"99":0.10787,"100":0.12032,"101":0.17011,"102":1.38577,"103":25.27571,"104":0.0166,"105":0.0083,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 50 51 52 53 54 56 57 58 59 60 61 62 66 67 69 71 77 78 106"},F:{"69":0.00415,"84":0.00415,"85":0.02075,"86":0.01245,"87":0.04564,"88":1.34843,"89":0.46054,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00415,"15":0.00415,"16":0.00415,"17":0.00415,"18":0.12032,"83":0.00415,"84":0.0083,"89":0.01245,"92":0.02904,"94":0.0083,"95":0.00415,"96":0.00415,"97":0.00415,"99":0.0083,"100":0.01245,"101":0.05809,"102":0.07883,"103":3.38558,_:"13 14 79 80 81 85 86 87 88 90 91 93 98"},E:{"4":0,"9":0.00415,"13":0.02904,"14":0.11617,"15":0.05394,_:"0 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0083,"11.1":0.0166,"12.1":0.02075,"13.1":0.14522,"14.1":0.28628,"15.1":0.06224,"15.2-15.3":0.05394,"15.4":0.17011,"15.5":1.01651,"15.6":0.03734,"16.0":0.0083},G:{"8":0,"3.2":0.00352,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00176,"6.0-6.1":0.00176,"7.0-7.1":0.03873,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03697,"10.0-10.2":0,"10.3":0.06513,"11.0-11.2":0.00704,"11.3-11.4":0.0176,"12.0-12.1":0.02816,"12.2-12.5":0.51928,"13.0-13.1":0.01936,"13.2":0.02464,"13.3":0.08097,"13.4-13.7":0.17779,"14.0-14.4":0.59673,"14.5-14.8":1.48742,"15.0-15.1":0.34501,"15.2-15.3":0.57384,"15.4":1.08256,"15.5":11.9715,"16.0":0.16898},P:{"4":0.11652,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.09533,"8.2":0.03079,"9.2":0.02118,"10.1":0.01069,"11.1-11.2":0.18007,"12.0":0.02024,"13.0":0.04237,"14.0":0.03178,"15.0":0.03178,"16.0":0.14829,"17.0":1.17575},I:{"0":0,"3":0,"4":0.00758,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01137,"4.2-4.3":0.04549,"4.4":0,"4.4.3-4.4.4":0.2047},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0094,"10":0.0047,"11":0.05643,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.45638},Q:{"10.4":0},O:{"0":0.07606},H:{"0":0.27143},L:{"0":39.6638}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0086,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0043,"69":0,"70":0,"71":0,"72":0,"73":0.0172,"74":0,"75":0,"76":0,"77":0,"78":0.0043,"79":0,"80":0,"81":0,"82":0.0043,"83":0,"84":0.0043,"85":0,"86":0,"87":0,"88":0.0043,"89":0.0043,"90":0.13763,"91":0.0043,"92":0.0043,"93":0,"94":0,"95":0.0129,"96":0,"97":0.0043,"98":0,"99":0.0086,"100":0.0086,"101":0.04301,"102":0.47311,"103":0.05591,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0043,"39":0,"40":0,"41":0,"42":0.0043,"43":0,"44":0,"45":0,"46":0,"47":0.0043,"48":0.0043,"49":0.03011,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0043,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0043,"64":0.0129,"65":0.0086,"66":0,"67":0,"68":0.0043,"69":0,"70":0.0043,"71":0,"72":0.0043,"73":0.0043,"74":0.0043,"75":0.0043,"76":0.0172,"77":0,"78":0,"79":0.02151,"80":0.0086,"81":0.03871,"83":0.03441,"84":0.03011,"85":0.03011,"86":0.04731,"87":0.06882,"88":0.0086,"89":0.02581,"90":0.0172,"91":0.02581,"92":0.0172,"93":0.02151,"94":0.0129,"95":0.0172,"96":0.04731,"97":0.02151,"98":0.03011,"99":0.05161,"100":0.06021,"101":0.08602,"102":0.62365,"103":11.09228,"104":0.0043,"105":0.0043,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0086,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0043,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0086,"86":0.0043,"87":0.02151,"88":0.58064,"89":0.19785,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0043,"13":0,"14":0,"15":0.0043,"16":0.0043,"17":0.0043,"18":0.05161,"79":0,"80":0,"81":0,"83":0,"84":0.0043,"85":0,"86":0,"87":0,"88":0,"89":0.0043,"90":0,"91":0,"92":0.0129,"93":0,"94":0.0043,"95":0.0043,"96":0.0043,"97":0.0043,"98":0,"99":0.0043,"100":0.0043,"101":0.02581,"102":0.03871,"103":1.47524,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0129,"14":0.05161,"15":0.02151,_:"0","3.1":0,"3.2":0,"5.1":0.0043,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0086,"12.1":0.0086,"13.1":0.06452,"14.1":0.12473,"15.1":0.02581,"15.2-15.3":0.02151,"15.4":0.07312,"15.5":0.4344,"15.6":0.0172,"16.0":0.0043},G:{"8":0,"3.2":0.00506,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00253,"6.0-6.1":0.00253,"7.0-7.1":0.05561,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05308,"10.0-10.2":0,"10.3":0.09353,"11.0-11.2":0.01011,"11.3-11.4":0.02528,"12.0-12.1":0.04045,"12.2-12.5":0.74572,"13.0-13.1":0.02781,"13.2":0.03539,"13.3":0.11628,"13.4-13.7":0.25531,"14.0-14.4":0.85694,"14.5-14.8":2.13603,"15.0-15.1":0.49546,"15.2-15.3":0.82408,"15.4":1.55463,"15.5":17.19191,"16.0":0.24267},P:{"4":0.14444,"5.0-5.4":0.01032,"6.2-6.4":0.01032,"7.2-7.4":0.08254,"8.2":0,"9.2":0.02063,"10.1":0,"11.1-11.2":0.16507,"12.0":0.01032,"13.0":0.04127,"14.0":0.03095,"15.0":0.03095,"16.0":0.14444,"17.0":1.10394,"18.0":0},I:{"0":0,"3":0,"4":0.02871,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04306,"4.2-4.3":0.17225,"4.4":0,"4.4.3-4.4.4":0.77511},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00502,"9":0,"10":0,"11":0.02509,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.12321},S:{"2.5":0},R:{_:"0"},M:{"0":0.44452},Q:{"10.4":0},O:{"0":0.07409},H:{"0":0.26438}}; 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 d6236cf32496a16..c861aa8c9cce679 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.01499,"21":0.00375,"34":0.00375,"36":0.00375,"38":0.00375,"43":0.0075,"47":0.01124,"48":0.02624,"52":0.16866,"56":0.0075,"61":0.0075,"68":0.00375,"70":0.00375,"72":0.01499,"74":0.01124,"78":0.01874,"79":0.00375,"82":0.0075,"83":0.00375,"84":0.01124,"88":0.01124,"89":0.01499,"91":0.04872,"92":0.00375,"93":0.00375,"94":0.0075,"95":0.01874,"96":0.0075,"97":0.0075,"98":0.01874,"99":0.06372,"100":0.04872,"101":0.14617,"102":2.4362,"103":0.33357,"104":0.00375,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 60 62 63 64 65 66 67 69 71 73 75 76 77 80 81 85 86 87 90 105 3.5 3.6"},D:{"26":0.00375,"32":0.01499,"33":0.01124,"34":0.01499,"38":0.01874,"39":0.0075,"40":0.01499,"42":0.00375,"43":0.13868,"47":0.00375,"48":0.00375,"49":0.16491,"50":0.01874,"51":0.0075,"52":0.00375,"54":0.00375,"55":0.0075,"56":0.02249,"58":0.01124,"60":0.01124,"61":0.01124,"62":0.0075,"63":0.03373,"64":0.01124,"65":0.01499,"66":0.00375,"67":0.01874,"68":0.01124,"69":0.02249,"70":0.01499,"71":0.02624,"72":0.01874,"73":0.0075,"74":0.02624,"75":0.0075,"76":0.01499,"77":0.01874,"78":0.01874,"79":0.07121,"80":0.03373,"81":0.07121,"83":0.04498,"84":0.04498,"85":0.03373,"86":0.0937,"87":0.11619,"88":0.02624,"89":0.05247,"90":0.03373,"91":0.04872,"92":0.05247,"93":0.08246,"94":0.03748,"95":0.09745,"96":0.0937,"97":0.09745,"98":0.16116,"99":0.0862,"100":0.1874,"101":0.24737,"102":1.10566,"103":21.80961,"104":0.06372,"105":0.01874,_:"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 35 36 37 41 44 45 46 53 57 59 106"},F:{"28":0.01499,"36":0.00375,"77":0.00375,"79":0.03748,"82":0.0075,"83":0.0075,"84":0.01874,"85":0.13868,"86":0.02624,"87":0.04123,"88":1.27807,"89":0.62217,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0075},B:{"12":0.0075,"13":0.00375,"14":0.00375,"15":0.00375,"16":0.01499,"17":0.0075,"18":0.01499,"84":0.0075,"89":0.00375,"92":0.02249,"96":0.00375,"98":0.00375,"99":0.00375,"100":0.01124,"101":0.0862,"102":0.04872,"103":1.74657,_:"79 80 81 83 85 86 87 88 90 91 93 94 95 97"},E:{"4":0,"13":0.02249,"14":0.02624,"15":0.01124,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0075,"11.1":0.00375,"12.1":0.0075,"13.1":0.02249,"14.1":0.04872,"15.1":0.01874,"15.2-15.3":0.01874,"15.4":0.08246,"15.5":0.29234,"15.6":0.02249,"16.0":0.0075},G:{"8":0.00114,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00911,"6.0-6.1":0.00228,"7.0-7.1":0.05539,"8.1-8.4":0.00152,"9.0-9.2":0.0019,"9.3":0.09143,"10.0-10.2":0.00076,"10.3":0.04515,"11.0-11.2":0.00228,"11.3-11.4":0.01024,"12.0-12.1":0.00911,"12.2-12.5":0.20715,"13.0-13.1":0.00683,"13.2":0.00341,"13.3":0.03642,"13.4-13.7":0.05615,"14.0-14.4":0.1271,"14.5-14.8":0.24509,"15.0-15.1":0.1252,"15.2-15.3":0.19122,"15.4":0.36764,"15.5":2.07985,"16.0":0.02542},P:{"4":0.14646,"5.0-5.4":0.22241,"6.2-6.4":0.13142,"7.2-7.4":0.136,"8.2":0.04044,"9.2":0.04185,"10.1":0.03033,"11.1-11.2":0.05231,"12.0":0.02092,"13.0":0.10462,"14.0":0.09416,"15.0":0.05231,"16.0":0.19877,"17.0":1.32864},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00331,"4.2-4.3":0.00945,"4.4":0,"4.4.3-4.4.4":0.06758},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01124,"9":0.01124,"11":0.09745,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.16258},Q:{"10.4":0},O:{"0":0.53776},H:{"0":0.72223},L:{"0":57.67851}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00759,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0038,"39":0,"40":0,"41":0,"42":0,"43":0.0038,"44":0,"45":0,"46":0,"47":0.0038,"48":0.01139,"49":0,"50":0,"51":0,"52":0.06452,"53":0,"54":0,"55":0,"56":0.0038,"57":0,"58":0,"59":0,"60":0,"61":0.0038,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0038,"69":0,"70":0.0038,"71":0,"72":0.0038,"73":0,"74":0.0038,"75":0,"76":0,"77":0,"78":0.00759,"79":0.0038,"80":0,"81":0,"82":0.0038,"83":0,"84":0.0038,"85":0,"86":0,"87":0,"88":0.0038,"89":0.00759,"90":0.0038,"91":0.01898,"92":0.0038,"93":0.0038,"94":0.0038,"95":0.00759,"96":0.0038,"97":0.00759,"98":0.00759,"99":0.02657,"100":0.01898,"101":0.06452,"102":0.95255,"103":0.13283,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.0038,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00759,"33":0.0038,"34":0.00759,"35":0,"36":0,"37":0,"38":0.00759,"39":0.0038,"40":0.00759,"41":0,"42":0.0038,"43":0.05313,"44":0,"45":0,"46":0,"47":0.0038,"48":0.0038,"49":0.06072,"50":0.00759,"51":0.0038,"52":0,"53":0,"54":0,"55":0.0038,"56":0.00759,"57":0,"58":0.0038,"59":0,"60":0.0038,"61":0.0038,"62":0.0038,"63":0.01139,"64":0.0038,"65":0.00759,"66":0,"67":0.00759,"68":0.0038,"69":0.00759,"70":0.00759,"71":0.00759,"72":0.00759,"73":0.0038,"74":0.01139,"75":0.0038,"76":0.00759,"77":0.00759,"78":0.00759,"79":0.02657,"80":0.01139,"81":0.04934,"83":0.01898,"84":0.01898,"85":0.01518,"86":0.03795,"87":0.04554,"88":0.01139,"89":0.02277,"90":0.01518,"91":0.01898,"92":0.02277,"93":0.03036,"94":0.01518,"95":0.04175,"96":0.03795,"97":0.04175,"98":0.06072,"99":0.03416,"100":0.0759,"101":0.09488,"102":0.42884,"103":8.30346,"104":0.02277,"105":0.00759,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0038,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0038,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04554,"64":0.00759,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0038,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01518,"80":0,"81":0,"82":0.0038,"83":0.0038,"84":0.00759,"85":0.05313,"86":0.00759,"87":0.01518,"88":0.48576,"89":0.23529,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0038},B:{"12":0.0038,"13":0,"14":0.0038,"15":0.0038,"16":0.00759,"17":0.0038,"18":0.00759,"79":0,"80":0,"81":0,"83":0,"84":0.0038,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00759,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0038,"99":0.0038,"100":0.0038,"101":0.03416,"102":0.01898,"103":0.67931,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00759,"14":0.01139,"15":0.0038,_:"0","3.1":0,"3.2":0,"5.1":0.0038,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0038,"12.1":0.0038,"13.1":0.00759,"14.1":0.01898,"15.1":0.00759,"15.2-15.3":0.00759,"15.4":0.03036,"15.5":0.11006,"15.6":0.00759,"16.0":0.0038},G:{"8":0.00166,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01331,"6.0-6.1":0.00333,"7.0-7.1":0.08098,"8.1-8.4":0.00222,"9.0-9.2":0.00277,"9.3":0.13366,"10.0-10.2":0.00111,"10.3":0.066,"11.0-11.2":0.00333,"11.3-11.4":0.01497,"12.0-12.1":0.01331,"12.2-12.5":0.30282,"13.0-13.1":0.00998,"13.2":0.00499,"13.3":0.05324,"13.4-13.7":0.08208,"14.0-14.4":0.1858,"14.5-14.8":0.35829,"15.0-15.1":0.18303,"15.2-15.3":0.27953,"15.4":0.53743,"15.5":3.04045,"16.0":0.03716},P:{"4":0.14193,"5.0-5.4":0.01014,"6.2-6.4":0.01014,"7.2-7.4":0.14193,"8.2":0,"9.2":0.04055,"10.1":0.01014,"11.1-11.2":0.07096,"12.0":0.03041,"13.0":0.10138,"14.0":0.09124,"15.0":0.05069,"16.0":0.19262,"17.0":1.26722,"18.0":0},I:{"0":0,"3":0,"4":0.0031,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01085,"4.2-4.3":0.031,"4.4":0,"4.4.3-4.4.4":0.22167},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0038,"9":0.0038,"10":0,"11":0.03795,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":75.71093},S:{"2.5":0},R:{_:"0"},M:{"0":0.16133},Q:{"10.4":0.00621},O:{"0":0.53363},H:{"0":0.71669}}; 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 9808d313dad7c3e..e3aab7fb8a6a348 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js @@ -1 +1 @@ -module.exports={C:{"51":0.01023,"52":0.02045,"64":0.00511,"65":0.01023,"66":0.01534,"72":0.01023,"73":0.02045,"78":0.0409,"82":0.00511,"83":0.00511,"84":0.01534,"88":0.0409,"89":0.01023,"90":0.01534,"91":0.0409,"92":0.01534,"93":0.01023,"94":0.00511,"95":0.01534,"96":0.02045,"97":0.01534,"98":0.02045,"99":0.05624,"100":0.05624,"101":0.16362,"102":2.94509,"103":0.29144,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 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 67 68 69 70 71 74 75 76 77 79 80 81 85 86 87 104 105 3.5 3.6"},D:{"22":0.00511,"38":0.02557,"47":0.02045,"49":0.03068,"53":0.01534,"55":0.01534,"56":0.01023,"63":0.01023,"65":0.00511,"66":0.01023,"67":0.01023,"68":0.01023,"69":0.00511,"73":0.00511,"74":0.02045,"75":0.01534,"76":0.01023,"77":0.01023,"78":0.01023,"79":0.17384,"80":0.03068,"81":0.02045,"83":0.02045,"84":0.02045,"85":0.01534,"86":0.0409,"87":0.06136,"88":0.01534,"89":0.02557,"90":0.01534,"91":0.40904,"92":0.03579,"93":0.02557,"94":0.02045,"95":0.02045,"96":0.11249,"97":0.14828,"98":0.13805,"99":0.09203,"100":0.13294,"101":0.22497,"102":1.28848,"103":34.18552,"104":0.01534,"105":0.01023,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 62 64 70 71 72 106"},F:{"28":0.01023,"69":0.00511,"85":0.02045,"86":0.01023,"87":0.04602,"88":1.74353,"89":0.48574,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01534,"92":0.01534,"93":0.00511,"98":0.00511,"99":0.00511,"100":0.01023,"101":0.03068,"102":0.06647,"103":3.38481,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 94 95 96 97"},E:{"4":0,"13":0.01023,"14":0.0767,"15":0.01534,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 16.0","5.1":0.02045,"11.1":0.01023,"12.1":0.01534,"13.1":0.08692,"14.1":0.15339,"15.1":0.03579,"15.2-15.3":0.05113,"15.4":0.09203,"15.5":0.60333,"15.6":0.02557},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01319,"6.0-6.1":0.01721,"7.0-7.1":0.00402,"8.1-8.4":0,"9.0-9.2":0.00115,"9.3":0.02582,"10.0-10.2":0,"10.3":0.02295,"11.0-11.2":0.00172,"11.3-11.4":0.00344,"12.0-12.1":0.00344,"12.2-12.5":0.24037,"13.0-13.1":0.00287,"13.2":0.00287,"13.3":0.00861,"13.4-13.7":0.03901,"14.0-14.4":0.13252,"14.5-14.8":0.35051,"15.0-15.1":0.12277,"15.2-15.3":0.12219,"15.4":0.25643,"15.5":4.1752,"16.0":0.04934},P:{"4":0.26926,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.13463,"8.2":0.03079,"9.2":0.02118,"10.1":0.01069,"11.1-11.2":0.06214,"12.0":0.01036,"13.0":0.05178,"14.0":0.04143,"15.0":0.04143,"16.0":0.17606,"17.0":1.64665},I:{"0":0,"3":0,"4":0.00093,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00187,"4.2-4.3":0.00934,"4.4":0,"4.4.3-4.4.4":0.05139},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05624,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18082},Q:{"10.4":0},O:{"0":0.03421},H:{"0":0.12029},L:{"0":41.27097}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00518,"52":0.01035,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00518,"65":0.00518,"66":0.01035,"67":0,"68":0.00518,"69":0,"70":0,"71":0,"72":0.00518,"73":0.01035,"74":0,"75":0,"76":0,"77":0,"78":0.0207,"79":0,"80":0,"81":0,"82":0.00518,"83":0.00518,"84":0.00518,"85":0,"86":0,"87":0,"88":0.0207,"89":0.00518,"90":0.03105,"91":0.0207,"92":0.00518,"93":0.00518,"94":0.00518,"95":0.01035,"96":0.01035,"97":0.01035,"98":0.01035,"99":0.03105,"100":0.03105,"101":0.08798,"102":1.57838,"103":0.15525,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00518,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01553,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01035,"48":0,"49":0.01553,"50":0,"51":0,"52":0,"53":0.00518,"54":0,"55":0.01035,"56":0.00518,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00518,"64":0.00518,"65":0.00518,"66":0.00518,"67":0.00518,"68":0.00518,"69":0.00518,"70":0,"71":0,"72":0,"73":0.00518,"74":0.01035,"75":0.01035,"76":0.00518,"77":0.00518,"78":0.00518,"79":0.08798,"80":0.01553,"81":0.01553,"83":0.01035,"84":0.01035,"85":0.01035,"86":0.0207,"87":0.03623,"88":0.00518,"89":0.01553,"90":0.01035,"91":0.21218,"92":0.0207,"93":0.01035,"94":0.01035,"95":0.01035,"96":0.05693,"97":0.07763,"98":0.07245,"99":0.04658,"100":0.07245,"101":0.11903,"102":0.67275,"103":17.79683,"104":0.00518,"105":0.00518,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00518,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00518,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00518,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01035,"86":0.00518,"87":0.02588,"88":0.90563,"89":0.25358,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00518,"16":0,"17":0,"18":0.00518,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00518,"93":0.00518,"94":0,"95":0,"96":0,"97":0,"98":0.00518,"99":0.00518,"100":0.00518,"101":0.01553,"102":0.0414,"103":1.76985,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00518,"14":0.0414,"15":0.01035,_:"0","3.1":0,"3.2":0,"5.1":0.01035,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00518,"12.1":0.01035,"13.1":0.04658,"14.1":0.07763,"15.1":0.01553,"15.2-15.3":0.02588,"15.4":0.04658,"15.5":0.3105,"15.6":0.01553,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02112,"6.0-6.1":0.02754,"7.0-7.1":0.00643,"8.1-8.4":0,"9.0-9.2":0.00184,"9.3":0.04132,"10.0-10.2":0,"10.3":0.03673,"11.0-11.2":0.00275,"11.3-11.4":0.00551,"12.0-12.1":0.00551,"12.2-12.5":0.38471,"13.0-13.1":0.00459,"13.2":0.00459,"13.3":0.01377,"13.4-13.7":0.06243,"14.0-14.4":0.21209,"14.5-14.8":0.56099,"15.0-15.1":0.19648,"15.2-15.3":0.19557,"15.4":0.41041,"15.5":6.68231,"16.0":0.07896},P:{"4":0.2749,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.13236,"8.2":0,"9.2":0.01018,"10.1":0,"11.1-11.2":0.06109,"12.0":0.01018,"13.0":0.06109,"14.0":0.04073,"15.0":0.04073,"16.0":0.17309,"17.0":1.59851,"18.0":0},I:{"0":0,"3":0,"4":0.00381,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00763,"4.2-4.3":0.03814,"4.4":0,"4.4.3-4.4.4":0.20979},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03105,"5.5":0},J:{"7":0,"10":0.00483},N:{"10":0,"11":0},L:{"0":59.233},S:{"2.5":0},R:{_:"0"},M:{"0":0.17853},Q:{"10.4":0},O:{"0":0.03378},H:{"0":0.11877}}; 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 ddffe989c43e42d..c2f73e19704ee1a 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:{"50":0.03958,"52":0.08576,"53":0.04618,"56":0.04618,"66":0.01319,"69":0.02639,"73":0.0066,"78":0.01979,"84":0.03958,"87":0.27048,"88":0.0066,"91":0.11215,"92":0.01319,"93":0.0066,"94":0.0066,"95":0.0066,"96":0.01979,"97":0.0066,"98":0.0066,"99":0.01979,"100":0.07257,"101":0.2243,"102":2.74435,"103":0.32985,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 60 61 62 63 64 65 67 68 70 71 72 74 75 76 77 79 80 81 82 83 85 86 89 90 104 105 3.5 3.6"},D:{"49":0.01319,"58":0.0066,"60":0.02639,"63":0.01319,"69":1.00274,"74":0.01319,"78":0.02639,"79":0.03299,"80":0.0066,"83":0.01319,"84":0.02639,"85":0.01979,"86":0.02639,"87":0.01979,"88":0.03958,"89":0.01319,"90":0.02639,"91":1.57009,"92":0.02639,"93":0.09896,"94":0.19791,"95":0.01979,"96":0.05278,"97":0.10555,"98":0.08576,"99":0.25069,"100":0.35624,"101":0.94997,"102":2.57283,"103":39.54242,"104":0.03299,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 61 62 64 65 66 67 68 70 71 72 73 75 76 77 81 105 106"},F:{"36":0.0066,"46":0.0066,"79":0.0066,"84":0.01319,"85":0.01979,"87":0.05937,"88":1.7548,"89":1.68883,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"85":0.0066,"92":0.0066,"94":0.03958,"97":0.02639,"98":0.0066,"100":0.08576,"101":0.03958,"102":0.13854,"103":5.08629,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 93 95 96 99"},E:{"4":0,"13":0.02639,"14":0.12534,"15":0.04618,_:"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.0066,"12.1":0.02639,"13.1":0.16493,"14.1":0.38263,"15.1":0.11215,"15.2-15.3":0.07916,"15.4":0.37603,"15.5":1.68224,"15.6":0.11215,"16.0":0.01319},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00221,"8.1-8.4":0,"9.0-9.2":0.0011,"9.3":0.01325,"10.0-10.2":0.00442,"10.3":0.17889,"11.0-11.2":0.00883,"11.3-11.4":0.00552,"12.0-12.1":0.00442,"12.2-12.5":0.17005,"13.0-13.1":0.00221,"13.2":0.00331,"13.3":0.01325,"13.4-13.7":0.12257,"14.0-14.4":0.22416,"14.5-14.8":0.70009,"15.0-15.1":0.22195,"15.2-15.3":0.42624,"15.4":0.73653,"15.5":7.87212,"16.0":0.11042},P:{"4":0.04295,"5.0-5.4":0.03058,"6.2-6.4":0.01019,"7.2-7.4":0.74403,"8.2":0.03079,"9.2":0.03058,"10.1":0.01069,"11.1-11.2":0.01074,"12.0":0.03058,"13.0":0.03222,"14.0":0.06443,"15.0":0.02148,"16.0":0.1396,"17.0":1.96518},I:{"0":0,"3":0,"4":0.00106,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00106,"4.2-4.3":0.01276,"4.4":0,"4.4.3-4.4.4":0.01914},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.06212,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.2246},Q:{"10.4":0},O:{"0":0.03403},H:{"0":0.20941},L:{"0":20.67865}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.02682,"51":0,"52":0.05364,"53":0.02682,"54":0,"55":0,"56":0.03353,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00671,"67":0,"68":0.00671,"69":0.02012,"70":0,"71":0,"72":0,"73":0.00671,"74":0,"75":0,"76":0,"77":0,"78":0.01341,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.02682,"85":0,"86":0,"87":0.18104,"88":0.00671,"89":0,"90":0,"91":0.07376,"92":0.00671,"93":0.00671,"94":0.00671,"95":0.00671,"96":0.01341,"97":0.00671,"98":0.00671,"99":0.01341,"100":0.06035,"101":0.16092,"102":1.93775,"103":0.22797,"104":0.00671,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02012,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01341,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00671,"57":0,"58":0.00671,"59":0,"60":0.02012,"61":0,"62":0,"63":0.00671,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.67721,"70":0,"71":0,"72":0,"73":0,"74":0.01341,"75":0,"76":0.00671,"77":0,"78":0.01341,"79":0.02682,"80":0.00671,"81":0.00671,"83":0.01341,"84":0.02012,"85":0.01341,"86":0.02012,"87":0.01341,"88":0.03353,"89":0.01341,"90":0.02012,"91":1.05269,"92":0.02012,"93":0.06705,"94":0.1341,"95":0.02012,"96":0.03353,"97":0.07376,"98":0.06035,"99":0.16763,"100":0.24809,"101":0.64368,"102":1.7366,"103":26.61215,"104":0.02012,"105":0.00671,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00671,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00671,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00671,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00671,"80":0,"81":0,"82":0.00671,"83":0,"84":0.00671,"85":0.01341,"86":0.00671,"87":0.04023,"88":1.17338,"89":1.13315,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00671,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00671,"93":0,"94":0.02682,"95":0,"96":0.00671,"97":0.01341,"98":0.00671,"99":0,"100":0.06035,"101":0.02682,"102":0.10058,"103":3.42626,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00671,"13":0.02012,"14":0.08046,"15":0.03353,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00671,"11.1":0.00671,"12.1":0.02012,"13.1":0.10728,"14.1":0.25479,"15.1":0.08046,"15.2-15.3":0.05364,"15.4":0.24809,"15.5":1.13315,"15.6":0.07376,"16.0":0.00671},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00379,"8.1-8.4":0,"9.0-9.2":0.00189,"9.3":0.02272,"10.0-10.2":0.00757,"10.3":0.30666,"11.0-11.2":0.01514,"11.3-11.4":0.00946,"12.0-12.1":0.00757,"12.2-12.5":0.29151,"13.0-13.1":0.00379,"13.2":0.00568,"13.3":0.02272,"13.4-13.7":0.21012,"14.0-14.4":0.38427,"14.5-14.8":1.20013,"15.0-15.1":0.38048,"15.2-15.3":0.73068,"15.4":1.2626,"15.5":13.49485,"16.0":0.1893},P:{"4":0.06209,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01035,"12.0":0.01035,"13.0":0.0414,"14.0":0.06209,"15.0":0.0207,"16.0":0.13454,"17.0":1.86284,"18.0":0},I:{"0":0,"3":0,"4":0.00292,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00292,"4.2-4.3":0.03499,"4.4":0,"4.4.3-4.4.4":0.05248},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.71073,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.36069},S:{"2.5":0},R:{_:"0"},M:{"0":0.21747},Q:{"10.4":0},O:{"0":0.03295},H:{"0":0.20277}}; 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 daa731d90ebe573..18020705e559204 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js @@ -1 +1 @@ -module.exports={C:{"40":0.0026,"41":0.0026,"43":0.0052,"47":0.0052,"48":0.0026,"52":0.11184,"55":0.0052,"56":0.0052,"65":0.0026,"72":0.0078,"78":0.0078,"81":0.0026,"84":0.02601,"88":0.0052,"89":0.0052,"91":0.03641,"92":0.0052,"94":0.0078,"95":0.0052,"96":0.0078,"97":0.0052,"98":0.0052,"99":0.03121,"100":0.03121,"101":0.08843,"102":1.67244,"103":0.22889,"104":0.0052,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 44 45 46 49 50 51 53 54 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 85 86 87 90 93 105 3.5 3.6"},D:{"26":0.0052,"31":0.0052,"33":0.01301,"34":0.0026,"38":0.0052,"40":0.01561,"41":0.0026,"43":0.21588,"47":0.0052,"49":0.03902,"53":0.0078,"55":0.0026,"58":0.0026,"60":0.0078,"62":0.0026,"63":0.01821,"64":0.0052,"65":0.0078,"66":0.0026,"67":0.0052,"68":0.0078,"69":0.01561,"70":0.0078,"71":0.01301,"72":0.01301,"73":0.0078,"74":0.02081,"75":0.01301,"76":0.02081,"77":0.0104,"78":0.01301,"79":0.09884,"80":0.03641,"81":0.02341,"83":0.01821,"84":0.02341,"85":0.03121,"86":0.08583,"87":0.04942,"88":0.03121,"89":0.03381,"90":0.01821,"91":0.04162,"92":0.04682,"93":0.01821,"94":0.02081,"95":0.02341,"96":0.05462,"97":0.05982,"98":0.10664,"99":0.05462,"100":0.09104,"101":0.15866,"102":0.7751,"103":16.92991,"104":0.02081,"105":0.01301,_:"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 35 36 37 39 42 44 45 46 48 50 51 52 54 56 57 59 61 106"},F:{"28":0.0026,"46":0.0078,"51":0.0026,"56":0.0052,"63":0.0052,"64":0.02861,"66":0.0052,"68":0.0052,"69":0.0052,"70":0.0104,"71":0.0052,"72":0.02341,"73":0.02601,"74":0.0052,"75":0.0052,"76":0.0104,"77":0.0052,"78":0.0052,"79":0.03902,"80":0.02861,"81":0.02861,"82":0.03902,"83":0.02341,"84":0.02861,"85":0.03641,"86":0.03641,"87":0.03641,"88":0.05722,"89":0.0104,_:"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 52 53 54 55 57 58 60 62 65 67 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0052,"13":0.0026,"14":0.0052,"15":0.0026,"16":0.0026,"17":0.0026,"18":0.01561,"84":0.0052,"85":0.0026,"89":0.0052,"90":0.0026,"92":0.01561,"96":0.0026,"97":0.0052,"98":0.0052,"99":0.0052,"100":0.0052,"101":0.02081,"102":0.03902,"103":1.84151,_:"79 80 81 83 86 87 88 91 93 94 95"},E:{"4":0,"13":0.0104,"14":0.03641,"15":0.01301,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 16.0","5.1":0.01561,"9.1":0.0078,"12.1":0.0052,"13.1":0.04162,"14.1":0.07543,"15.1":0.01561,"15.2-15.3":0.01301,"15.4":0.04162,"15.5":0.23409,"15.6":0.01821},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00085,"6.0-6.1":0.00171,"7.0-7.1":0.01452,"8.1-8.4":0.00085,"9.0-9.2":0.00427,"9.3":0.03501,"10.0-10.2":0.01196,"10.3":0.07515,"11.0-11.2":0.00769,"11.3-11.4":0.02049,"12.0-12.1":0.0222,"12.2-12.5":0.84283,"13.0-13.1":0.01196,"13.2":0.00769,"13.3":0.0427,"13.4-13.7":0.14005,"14.0-14.4":0.41245,"14.5-14.8":0.52346,"15.0-15.1":0.21092,"15.2-15.3":0.32193,"15.4":0.53627,"15.5":5.01687,"16.0":0.05465},P:{"4":0.21534,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.09229,"8.2":0.03079,"9.2":0.02051,"10.1":0.01069,"11.1-11.2":0.08203,"12.0":0.02051,"13.0":0.10254,"14.0":0.1128,"15.0":0.04102,"16.0":0.15381,"17.0":1.63042},I:{"0":0,"3":0,"4":0.00491,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00491,"4.2-4.3":0.02332,"4.4":0,"4.4.3-4.4.4":0.21843},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0052,"11":0.05722,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18498},Q:{"10.4":0},O:{"0":0.54753},H:{"0":0.40628},L:{"0":62.3024}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00264,"48":0,"49":0,"50":0,"51":0,"52":0.02906,"53":0,"54":0,"55":0.00264,"56":0.00264,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00264,"69":0,"70":0,"71":0,"72":0.00264,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00264,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00793,"85":0,"86":0,"87":0,"88":0.00264,"89":0.00264,"90":0,"91":0.01057,"92":0.00264,"93":0,"94":0.00264,"95":0.00264,"96":0.00264,"97":0.00264,"98":0.00264,"99":0.00793,"100":0.01057,"101":0.02642,"102":0.47292,"103":0.06341,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00264,"27":0,"28":0,"29":0,"30":0,"31":0.00264,"32":0,"33":0.00264,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00528,"41":0.00264,"42":0,"43":0.05812,"44":0,"45":0,"46":0.00264,"47":0.00264,"48":0,"49":0.01057,"50":0,"51":0,"52":0,"53":0.00264,"54":0,"55":0,"56":0,"57":0,"58":0.00264,"59":0,"60":0.00264,"61":0,"62":0,"63":0.00528,"64":0.00264,"65":0.00264,"66":0,"67":0,"68":0.00264,"69":0.00528,"70":0.00264,"71":0.00264,"72":0.00264,"73":0.00264,"74":0.00528,"75":0.00264,"76":0.00528,"77":0.00264,"78":0.00264,"79":0.02642,"80":0.01057,"81":0.02642,"83":0.00528,"84":0.00528,"85":0.00793,"86":0.02378,"87":0.01321,"88":0.01321,"89":0.01057,"90":0.00528,"91":0.01057,"92":0.01849,"93":0.00528,"94":0.00528,"95":0.01321,"96":0.01585,"97":0.01585,"98":0.02906,"99":0.01585,"100":0.02378,"101":0.04227,"102":0.20608,"103":4.49404,"104":0.00528,"105":0.00264,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00264,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00264,"55":0,"56":0.00264,"57":0,"58":0,"60":0,"62":0,"63":0.00264,"64":0.00793,"65":0,"66":0,"67":0,"68":0.00264,"69":0,"70":0.00264,"71":0,"72":0.00528,"73":0.00793,"74":0,"75":0,"76":0.00264,"77":0.00264,"78":0.00264,"79":0.01057,"80":0.00793,"81":0.00793,"82":0.01057,"83":0.00528,"84":0.00793,"85":0.01057,"86":0.01057,"87":0.01057,"88":0.01585,"89":0.00264,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00264,"15":0,"16":0,"17":0,"18":0.00528,"79":0,"80":0,"81":0,"83":0,"84":0.00264,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00528,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00264,"101":0.00528,"102":0.01321,"103":0.49405,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00264,"14":0.01057,"15":0.00264,_:"0","3.1":0,"3.2":0,"5.1":0.00528,"6.1":0,"7.1":0,"9.1":0.00264,"10.1":0,"11.1":0,"12.1":0.00264,"13.1":0.01057,"14.1":0.01849,"15.1":0.00528,"15.2-15.3":0.00264,"15.4":0.01057,"15.5":0.06077,"15.6":0.00528,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00111,"6.0-6.1":0.00223,"7.0-7.1":0.01894,"8.1-8.4":0.00111,"9.0-9.2":0.00557,"9.3":0.04568,"10.0-10.2":0.0156,"10.3":0.09805,"11.0-11.2":0.01003,"11.3-11.4":0.02674,"12.0-12.1":0.02897,"12.2-12.5":1.09976,"13.0-13.1":0.0156,"13.2":0.01003,"13.3":0.05571,"13.4-13.7":0.18274,"14.0-14.4":0.53818,"14.5-14.8":0.68303,"15.0-15.1":0.27522,"15.2-15.3":0.42007,"15.4":0.69975,"15.5":6.54619,"16.0":0.07131},P:{"4":0.22528,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09216,"8.2":0,"9.2":0.01024,"10.1":0.01024,"11.1-11.2":0.08192,"12.0":0.02048,"13.0":0.1024,"14.0":0.11264,"15.0":0.04096,"16.0":0.1536,"17.0":1.59742,"18.0":0.01024},I:{"0":0,"3":0,"4":0.00787,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00787,"4.2-4.3":0.03739,"4.4":0,"4.4.3-4.4.4":0.35028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00264,"10":0,"11":0.01585,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":77.0736},S:{"2.5":0},R:{_:"0"},M:{"0":0.18395},Q:{"10.4":0},O:{"0":0.54449},H:{"0":0.40403}}; 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 711894e0561c904..91f6085bcbf1cf5 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:{"30":0.00611,"33":0.00204,"34":0.00815,"36":0.00815,"42":0.00408,"43":0.00815,"44":0.00611,"46":0.00611,"47":0.00611,"48":0.00408,"50":0.00204,"52":0.00408,"57":0.01427,"58":0.00204,"59":0.00611,"61":0.01019,"72":0.00204,"85":0.00204,"88":0.01834,"91":0.00408,"95":0.00204,"97":0.00408,"98":0.00815,"99":0.00408,"100":0.01427,"101":0.03057,"102":0.67865,"103":0.34646,_:"2 3 4 5 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 35 37 38 39 40 41 45 49 51 53 54 55 56 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 86 87 89 90 92 93 94 96 104 105 3.5 3.6"},D:{"11":0.01223,"26":0.00204,"30":0.00408,"33":0.00611,"38":0.00408,"40":0.01427,"43":0.06318,"46":0.00815,"50":0.00815,"55":0.00204,"56":0.00611,"57":0.00204,"60":0.00611,"63":0.01223,"65":0.00204,"67":0.00204,"68":0.01019,"70":0.0163,"71":0.00815,"73":0.00204,"74":0.00204,"75":0.00204,"77":0.00204,"78":0.00408,"79":0.02853,"80":0.00611,"81":0.00408,"83":0.00408,"84":0.00408,"85":0.00408,"86":0.03261,"87":0.03057,"88":0.00408,"89":0.00611,"90":0.00611,"91":0.01223,"92":0.02242,"93":0.00204,"94":1.84235,"95":0.07541,"96":0.16712,"97":0.00815,"98":0.2629,"99":0.06725,"100":0.03057,"101":0.29143,"102":0.37295,"103":6.42581,"104":0.03465,"105":0.00204,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 34 35 36 37 39 41 42 44 45 47 48 49 51 52 53 54 58 59 61 62 64 66 69 72 76 106"},F:{"57":0.00815,"62":0.00204,"64":0.00204,"70":0.01427,"74":0.00204,"79":0.02242,"81":0.00408,"82":0.0163,"85":0.01427,"86":0.02242,"87":0.01427,"88":0.45855,"89":0.37703,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 63 65 66 67 68 69 71 72 73 75 76 77 78 80 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05706,"13":0.00611,"14":0.00408,"15":0.0163,"16":0.0163,"17":0.01834,"18":0.02038,"84":0.00815,"85":0.00408,"89":0.0428,"90":0.01223,"92":0.01834,"96":0.03668,"98":0.00408,"99":0.00408,"100":0.00408,"101":0.02446,"102":0.06114,"103":1.06587,_:"79 80 81 83 86 87 88 91 93 94 95 97"},E:{"4":0,"13":0.00204,"15":0.00611,_:"0 5 6 7 8 9 10 11 12 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.6 16.0","13.1":0.00408,"15.5":0.02038},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0.46884,"5.0-5.4":0.03058,"6.2-6.4":0.01019,"7.2-7.4":0.74403,"8.2":0.03079,"9.2":0.03058,"10.1":0.01069,"11.1-11.2":0.56057,"12.0":0.03058,"13.0":0.02038,"14.0":0.07134,"15.0":0.02038,"16.0":0.80518,"17.0":1.32498},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.04687,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12739},Q:{"10.4":0},O:{"0":1.60832},H:{"0":14.81199},L:{"0":62.40707}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00206,"31":0,"32":0,"33":0,"34":0.00206,"35":0,"36":0.00206,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00206,"44":0.00206,"45":0,"46":0.00206,"47":0.00206,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00206,"58":0,"59":0.00206,"60":0,"61":0.00206,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00413,"89":0,"90":0,"91":0,"92":0.00206,"93":0,"94":0,"95":0.00206,"96":0,"97":0,"98":0.01651,"99":0,"100":0.00206,"101":0.00826,"102":0.14654,"103":0.07224,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00206,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00206,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00413,"41":0,"42":0,"43":0.01238,"44":0,"45":0,"46":0.00206,"47":0,"48":0,"49":0,"50":0.00206,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00206,"57":0,"58":0.00206,"59":0,"60":0.00206,"61":0,"62":0,"63":0.00206,"64":0,"65":0,"66":0,"67":0,"68":0.00206,"69":0,"70":0.00413,"71":0.00206,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00619,"80":0.00206,"81":0.00206,"83":0,"84":0,"85":0,"86":0.00619,"87":0.00619,"88":0,"89":0.00206,"90":0.00206,"91":0.00206,"92":0.00413,"93":0.00413,"94":0.37978,"95":0.01651,"96":0.03509,"97":0.00206,"98":0.05366,"99":0.01445,"100":0.00619,"101":0.06192,"102":0.08462,"103":1.3705,"104":0.00619,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00206,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00619,"25":0,"26":0,"27":0.00413,"28":0.01032,"29":0,"30":0.00619,"31":0,"32":0.01858,"33":0.00826,"34":0.00206,"35":0.00413,"36":0,"37":0.00206,"38":0.01651,"39":0,"40":0,"41":0.00206,"42":0.00206,"43":0,"44":0.00413,"45":0.00206,"46":0.00413,"47":0,"48":0,"49":0,"50":0.01032,"51":0.00206,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00206,"58":0.01238,"60":0.03509,"62":0,"63":0.2869,"64":0.01238,"65":0.00206,"66":0,"67":0,"68":0.00206,"69":0,"70":0.00826,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00413,"80":0,"81":0,"82":0.00413,"83":0,"84":0,"85":0.00206,"86":0.00413,"87":0.00206,"88":0.09494,"89":0.07843,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03922},B:{"12":0.01238,"13":0.00206,"14":0,"15":0.00413,"16":0.00413,"17":0.00413,"18":0.00413,"79":0,"80":0,"81":0,"83":0,"84":0.00206,"85":0,"86":0,"87":0,"88":0,"89":0.00826,"90":0.00206,"91":0,"92":0.00413,"93":0,"94":0,"95":0,"96":0.00826,"97":0.00206,"98":0,"99":0,"100":0,"101":0.00619,"102":0.01238,"103":0.22085,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00206,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00413,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0.46616,"5.0-5.4":0.04054,"6.2-6.4":0.0304,"7.2-7.4":0.73978,"8.2":0,"9.2":0.0304,"10.1":0.01013,"11.1-11.2":0.54723,"12.0":0.0304,"13.0":0.02027,"14.0":0.07094,"15.0":0.02027,"16.0":0.80058,"17.0":1.29715,"18.0":0.0304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01032,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.40909},S:{"2.5":0},R:{_:"0"},M:{"0":0.12698},Q:{"10.4":0},O:{"0":1.60307},H:{"0":14.76362}}; 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 cc272a65393f43f..828b170a68372fe 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.00409,"50":0.00409,"52":0.07355,"56":0.00817,"59":0.01634,"60":0.00409,"66":0.00817,"68":0.01226,"72":0.00409,"78":0.06538,"84":0.00409,"85":0.00409,"88":0.01634,"89":0.00817,"90":0.00817,"91":0.09398,"94":0.36774,"95":0.00817,"96":0.02043,"97":0.01226,"98":0.01226,"99":0.02043,"100":0.03677,"101":0.14301,"102":2.37805,"103":0.29828,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 92 93 104 105 3.5 3.6"},D:{"34":0.00409,"38":0.01634,"49":0.09806,"53":0.00409,"60":0.00817,"63":0.00409,"64":0.00817,"65":0.01634,"66":0.06129,"67":0.01226,"68":0.01634,"69":0.06946,"70":0.00409,"72":0.00817,"73":0.00409,"74":0.01226,"75":0.06129,"76":0.01226,"77":0.00817,"78":0.01226,"79":0.19613,"80":0.02043,"81":0.02452,"83":0.03269,"84":0.04903,"85":0.03677,"86":0.0286,"87":0.06946,"88":0.01634,"89":0.05312,"90":0.02043,"91":0.04903,"92":0.03677,"93":0.02452,"94":0.03677,"95":0.03677,"96":0.0572,"97":0.05312,"98":0.17161,"99":0.08581,"100":0.11441,"101":0.17978,"102":1.22989,"103":23.35966,"104":0.01226,"105":0.00817,_:"4 5 6 7 8 9 10 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 61 62 71 106 107"},F:{"28":0.00817,"36":0.00409,"46":0.00817,"80":0.00817,"85":0.01226,"86":0.00817,"87":0.03677,"88":1.1972,"89":0.37591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00409,"16":0.00409,"17":0.00817,"18":0.00817,"91":0.00409,"92":0.02452,"95":0.01226,"97":0.00409,"98":0.00817,"99":0.00817,"100":0.01634,"101":0.06538,"102":0.11441,"103":3.66923,_:"12 13 14 79 80 81 83 84 85 86 87 88 89 90 93 94 96"},E:{"4":0,"13":0.03677,"14":0.15118,"15":0.04495,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00409,"10.1":0.00817,"11.1":0.04086,"12.1":0.06946,"13.1":0.22882,"14.1":0.38817,"15.1":0.07355,"15.2-15.3":0.07763,"15.4":0.27376,"15.5":1.6916,"15.6":0.06946,"16.0":0.00817},G:{"8":0.00128,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00766,"6.0-6.1":0,"7.0-7.1":0.00255,"8.1-8.4":0.0051,"9.0-9.2":0.00255,"9.3":0.07784,"10.0-10.2":0.00128,"10.3":0.08805,"11.0-11.2":0.01404,"11.3-11.4":0.04466,"12.0-12.1":0.01786,"12.2-12.5":0.38792,"13.0-13.1":0.01276,"13.2":0.00638,"13.3":0.03956,"13.4-13.7":0.11229,"14.0-14.4":0.3037,"14.5-14.8":0.81411,"15.0-15.1":0.23734,"15.2-15.3":0.43003,"15.4":0.78221,"15.5":9.0535,"16.0":0.05742},P:{"4":0.15874,"5.0-5.4":0.02023,"6.2-6.4":0.07094,"7.2-7.4":0.54627,"8.2":0.02018,"9.2":0.02023,"10.1":0.03035,"11.1-11.2":0.06349,"12.0":0.02116,"13.0":0.06349,"14.0":0.06349,"15.0":0.03175,"16.0":0.13757,"17.0":2.12706},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00386,"4.2-4.3":0.01543,"4.4":0,"4.4.3-4.4.4":0.06941},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00416,"9":0.01247,"11":0.22445,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.3193},Q:{"10.4":0},O:{"0":0.0473},H:{"0":0.20153},L:{"0":43.12907},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00421,"49":0,"50":0,"51":0,"52":0.02949,"53":0,"54":0,"55":0,"56":0.00421,"57":0,"58":0,"59":0.00843,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00421,"67":0,"68":0.00843,"69":0,"70":0,"71":0,"72":0.00421,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02949,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00421,"85":0,"86":0,"87":0,"88":0.00843,"89":0.00421,"90":0.00843,"91":0.03792,"92":0,"93":0,"94":0.15588,"95":0.00421,"96":0.00843,"97":0.00421,"98":0.00421,"99":0.00843,"100":0.01685,"101":0.07162,"102":1.08695,"103":0.13482,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00843,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04213,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00421,"61":0,"62":0,"63":0,"64":0.00421,"65":0.00843,"66":0.02528,"67":0.00421,"68":0.00843,"69":0.02949,"70":0.00421,"71":0,"72":0.00421,"73":0,"74":0.00421,"75":0.02528,"76":0.00421,"77":0.00421,"78":0.00421,"79":0.08426,"80":0.00843,"81":0.01685,"83":0.01264,"84":0.02107,"85":0.01685,"86":0.01264,"87":0.02949,"88":0.00843,"89":0.02107,"90":0.00843,"91":0.02107,"92":0.02528,"93":0.01264,"94":0.01685,"95":0.01685,"96":0.02528,"97":0.02528,"98":0.07162,"99":0.03792,"100":0.05056,"101":0.08005,"102":0.53084,"103":9.95111,"104":0.00421,"105":0.00421,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00421,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00421,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00421,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00421,"81":0,"82":0,"83":0,"84":0,"85":0.00421,"86":0.00421,"87":0.01685,"88":0.50556,"89":0.16009,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00421,"16":0.00421,"17":0.00421,"18":0.00421,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00421,"92":0.00843,"93":0,"94":0,"95":0.00421,"96":0,"97":0.00421,"98":0.00421,"99":0.00421,"100":0.00843,"101":0.02949,"102":0.05477,"103":1.56724,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01685,"14":0.0632,"15":0.02107,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00421,"10.1":0.00421,"11.1":0.01685,"12.1":0.02949,"13.1":0.0969,"14.1":0.16431,"15.1":0.02949,"15.2-15.3":0.0337,"15.4":0.11375,"15.5":0.712,"15.6":0.02949,"16.0":0.00421},G:{"8":0.00184,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01106,"6.0-6.1":0,"7.0-7.1":0.00369,"8.1-8.4":0.00737,"9.0-9.2":0.00369,"9.3":0.11246,"10.0-10.2":0.00184,"10.3":0.12721,"11.0-11.2":0.02028,"11.3-11.4":0.06453,"12.0-12.1":0.02581,"12.2-12.5":0.56047,"13.0-13.1":0.01844,"13.2":0.00922,"13.3":0.05715,"13.4-13.7":0.16224,"14.0-14.4":0.43879,"14.5-14.8":1.17624,"15.0-15.1":0.34292,"15.2-15.3":0.62131,"15.4":1.13015,"15.5":13.08063,"16.0":0.08296},P:{"4":0.17819,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01048,"8.2":0,"9.2":0.01048,"10.1":0,"11.1-11.2":0.06289,"12.0":0.01048,"13.0":0.07337,"14.0":0.06289,"15.0":0.03145,"16.0":0.12578,"17.0":2.04393,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00982,"4.2-4.3":0.03928,"4.4":0,"4.4.3-4.4.4":0.17674},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00421,"10":0,"11":0.09269,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.41105},S:{"2.5":0},R:{_:"0"},M:{"0":0.3125},Q:{"10.4":0},O:{"0":0.0463},H:{"0":0.19724}}; 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 a7dd590fc75ca15..33ccb9e4bcaadb2 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.00388,"30":0.00776,"34":0.00388,"35":0.00776,"37":0.00388,"38":0.00388,"41":0.00388,"43":0.00776,"44":0.00388,"46":0.00388,"47":0.02329,"48":0.01553,"52":0.23292,"56":0.00388,"57":0.00388,"59":0.00776,"60":0.01941,"63":0.00776,"65":0.00388,"66":0.00776,"67":0.01553,"68":0.01553,"72":0.02329,"77":0.00388,"78":0.00388,"84":0.04658,"87":0.00776,"88":0.01941,"89":0.06211,"91":0.08152,"92":0.01553,"95":0.10481,"96":0.01165,"97":0.0427,"98":0.01553,"99":0.01553,"100":0.04658,"101":0.22904,"102":3.86259,"103":0.81522,"104":0.01941,_:"2 3 4 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 39 40 42 45 49 50 51 53 54 55 58 61 62 64 69 70 71 73 74 75 76 79 80 81 82 83 85 86 90 93 94 105 3.5 3.6"},D:{"11":0.00776,"33":0.01941,"34":0.00776,"36":0.00388,"37":0.00776,"38":0.01165,"39":0.00388,"40":0.03494,"43":0.13587,"46":0.01553,"49":0.01553,"50":0.00776,"53":0.01165,"55":0.00776,"56":0.00776,"57":0.00388,"58":0.00776,"60":0.00388,"63":0.03106,"64":0.03494,"65":0.03882,"67":0.00776,"68":0.01941,"69":0.01941,"70":0.01941,"71":0.01553,"72":0.05823,"73":0.01553,"74":0.02717,"75":0.01553,"76":0.01553,"77":0.01941,"78":0.01165,"79":0.79581,"80":0.05823,"81":0.04658,"83":0.06599,"84":0.01165,"85":0.02329,"86":0.07376,"87":0.06988,"88":0.01941,"89":0.1514,"90":0.02717,"91":0.03882,"92":0.03494,"93":0.0427,"94":0.04658,"95":0.05435,"96":0.09705,"97":0.06599,"98":0.50466,"99":0.06211,"100":0.11646,"101":0.1941,"102":0.89674,"103":18.50938,"104":0.04658,"105":0.09317,_:"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 41 42 44 45 47 48 51 52 54 59 61 62 66 106"},F:{"34":0.00776,"79":0.0427,"81":0.00388,"82":0.00776,"83":0.00776,"84":0.03494,"85":0.05823,"86":0.05823,"87":0.05435,"88":1.13743,"89":0.90062,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.07764,"13":0.02717,"14":0.02329,"15":0.01553,"16":0.01941,"17":0.01941,"18":0.10093,"84":0.01165,"85":0.01553,"88":0.00388,"89":0.01165,"90":0.01165,"91":0.00388,"92":0.05047,"96":0.00776,"97":0.00776,"98":0.00776,"99":0.03106,"100":0.03106,"101":0.05823,"102":0.15916,"103":3.36569,_:"79 80 81 83 86 87 93 94 95"},E:{"4":0,"7":0.01165,"10":0.00388,"13":0.00388,"14":0.02717,_:"0 5 6 8 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 16.0","11.1":0.01941,"13.1":0.02329,"14.1":0.06211,"15.1":0.00776,"15.2-15.3":0.01165,"15.4":0.01553,"15.5":0.06988,"15.6":0.00776},G:{"8":0.00024,"3.2":0.00613,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00118,"6.0-6.1":0.00165,"7.0-7.1":0.10932,"8.1-8.4":0.00401,"9.0-9.2":0.00212,"9.3":0.08882,"10.0-10.2":0.00236,"10.3":0.08599,"11.0-11.2":0.00777,"11.3-11.4":0.05796,"12.0-12.1":0.01649,"12.2-12.5":0.30651,"13.0-13.1":0.00895,"13.2":0.00283,"13.3":0.01602,"13.4-13.7":0.03298,"14.0-14.4":0.10602,"14.5-14.8":0.21251,"15.0-15.1":0.09966,"15.2-15.3":0.14725,"15.4":0.1463,"15.5":0.83777,"16.0":0.01791},P:{"4":0.40386,"5.0-5.4":0.02071,"6.2-6.4":0.03107,"7.2-7.4":0.24853,"8.2":0.03079,"9.2":0.05178,"10.1":0.01069,"11.1-11.2":0.08284,"12.0":0.03058,"13.0":0.28995,"14.0":0.0932,"15.0":0.04142,"16.0":0.21746,"17.0":1.18051},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.02163,"4.4":0,"4.4.3-4.4.4":0.14701},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00414,"11":0.12008,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12848},Q:{"10.4":0},O:{"0":1.02782},H:{"0":6.93897},L:{"0":49.89845}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00396,"31":0,"32":0,"33":0,"34":0.00396,"35":0.00396,"36":0,"37":0.00396,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00396,"44":0,"45":0,"46":0,"47":0.00792,"48":0.00792,"49":0,"50":0,"51":0,"52":0.09113,"53":0.00396,"54":0,"55":0,"56":0.00396,"57":0.00396,"58":0,"59":0.00396,"60":0.00792,"61":0,"62":0.00396,"63":0.00396,"64":0,"65":0.00396,"66":0.00396,"67":0.00792,"68":0.00792,"69":0,"70":0,"71":0,"72":0.00792,"73":0,"74":0,"75":0,"76":0,"77":0.00396,"78":0.00396,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01981,"85":0,"86":0,"87":0.00396,"88":0.00792,"89":0.02377,"90":0,"91":0.0317,"92":0.00792,"93":0,"94":0,"95":0.04358,"96":0.00792,"97":0.01585,"98":0.00792,"99":0.00792,"100":0.02773,"101":0.09509,"102":1.5531,"103":0.32488,"104":0.00792,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00396,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00792,"34":0.00396,"35":0,"36":0.00396,"37":0.00396,"38":0.00396,"39":0,"40":0.02773,"41":0,"42":0,"43":0.05547,"44":0,"45":0,"46":0.00792,"47":0,"48":0,"49":0.00792,"50":0.00396,"51":0,"52":0.00396,"53":0.00396,"54":0,"55":0.00396,"56":0.00396,"57":0.00396,"58":0.00396,"59":0,"60":0,"61":0,"62":0,"63":0.01189,"64":0.01189,"65":0.01585,"66":0,"67":0.00396,"68":0.00792,"69":0.00792,"70":0.01189,"71":0.00792,"72":0.02377,"73":0.00792,"74":0.01189,"75":0.00792,"76":0.00792,"77":0.01189,"78":0.00396,"79":0.31696,"80":0.02377,"81":0.04754,"83":0.02773,"84":0.00396,"85":0.00792,"86":0.02773,"87":0.0317,"88":0.00792,"89":0.06339,"90":0.01189,"91":0.01585,"92":0.01585,"93":0.01981,"94":0.01981,"95":0.05151,"96":0.03962,"97":0.02773,"98":0.20206,"99":0.02773,"100":0.05151,"101":0.0832,"102":0.3645,"103":7.38517,"104":0.01981,"105":0.03566,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00396,"25":0,"26":0,"27":0.00792,"28":0.00792,"29":0,"30":0.04358,"31":0.00396,"32":0.01585,"33":0.01585,"34":0.00396,"35":0.00396,"36":0,"37":0.00396,"38":0.01189,"39":0,"40":0,"41":0,"42":0.00396,"43":0,"44":0,"45":0,"46":0.00396,"47":0,"48":0,"49":0,"50":0.01189,"51":0.00396,"52":0,"53":0,"54":0.01189,"55":0,"56":0.00792,"57":0,"58":0.01189,"60":0.05943,"62":0,"63":0.40809,"64":0.0317,"65":0,"66":0,"67":0,"68":0,"69":0.00396,"70":0.00396,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01585,"80":0,"81":0.00396,"82":0.00396,"83":0.00396,"84":0.01189,"85":0.02377,"86":0.02377,"87":0.02377,"88":0.45167,"89":0.35658,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03566},B:{"12":0.0317,"13":0.01189,"14":0.00792,"15":0.00792,"16":0.00792,"17":0.00792,"18":0.03962,"79":0,"80":0,"81":0,"83":0,"84":0.00396,"85":0.00396,"86":0,"87":0,"88":0,"89":0.00396,"90":0.00396,"91":0,"92":0.01981,"93":0,"94":0,"95":0,"96":0.00396,"97":0.00396,"98":0.00396,"99":0.01189,"100":0.01189,"101":0.02377,"102":0.06735,"103":1.355,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00396,"8":0,"9":0,"10":0.00396,"11":0,"12":0,"13":0,"14":0.01189,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00792,"12.1":0,"13.1":0.00792,"14.1":0.02377,"15.1":0.00396,"15.2-15.3":0.00396,"15.4":0.00792,"15.5":0.02773,"15.6":0.00396,"16.0":0},G:{"8":0.00036,"3.2":0.00937,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0018,"6.0-6.1":0.00252,"7.0-7.1":0.16729,"8.1-8.4":0.00613,"9.0-9.2":0.00324,"9.3":0.13592,"10.0-10.2":0.00361,"10.3":0.13159,"11.0-11.2":0.0119,"11.3-11.4":0.08869,"12.0-12.1":0.02524,"12.2-12.5":0.46905,"13.0-13.1":0.0137,"13.2":0.00433,"13.3":0.02452,"13.4-13.7":0.05047,"14.0-14.4":0.16224,"14.5-14.8":0.3252,"15.0-15.1":0.1525,"15.2-15.3":0.22533,"15.4":0.22389,"15.5":1.28204,"16.0":0.0274},P:{"4":0.38685,"5.0-5.4":0.03054,"6.2-6.4":0.03054,"7.2-7.4":0.25451,"8.2":0,"9.2":0.0509,"10.1":0.01018,"11.1-11.2":0.09162,"12.0":0.01018,"13.0":0.28505,"14.0":0.09162,"15.0":0.04072,"16.0":0.20361,"17.0":1.1402,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00561,"4.2-4.3":0.04535,"4.4":0,"4.4.3-4.4.4":0.30828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00427,"9":0,"10":0,"11":0.0512,"5.5":0},J:{"7":0,"10":0.00604},N:{"10":0,"11":0},L:{"0":65.64584},S:{"2.5":0},R:{_:"0"},M:{"0":0.1268},Q:{"10.4":0},O:{"0":1.01438},H:{"0":6.84823}}; 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 558f4847ceb4fb6..0d9ed781fb00c80 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:{"52":0.04055,"55":0.02897,"60":0.00579,"62":0.01159,"68":0.01159,"78":0.20276,"79":0.04634,"80":0.01159,"81":0.04634,"82":0.02317,"83":0.01738,"84":0.06372,"86":0.00579,"88":0.02897,"89":0.00579,"91":0.19117,"94":0.00579,"95":0.03476,"96":0.01738,"97":0.01159,"98":0.01159,"99":0.02317,"100":0.05214,"101":1.06591,"102":10.42161,"103":1.30922,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 61 63 64 65 66 67 69 70 71 72 73 74 75 76 77 85 87 90 92 93 104 105 3.5 3.6"},D:{"38":0.01159,"42":0.05214,"49":0.01738,"53":0.01159,"56":0.01738,"61":0.01159,"63":0.01738,"65":0.02317,"67":0.00579,"69":0.15062,"70":0.02317,"71":0.01159,"72":0.01738,"74":0.00579,"75":0.4113,"76":0.02317,"77":0.01159,"78":0.01159,"79":0.60247,"80":0.25489,"81":0.03476,"83":0.07531,"84":0.20276,"85":0.11007,"86":0.1622,"87":0.30124,"88":0.04634,"89":0.04055,"90":0.02317,"91":0.01159,"92":0.03476,"93":0.11007,"94":0.05793,"95":0.04055,"96":0.30703,"97":0.27806,"98":0.27227,"99":0.06952,"100":1.79004,"101":1.48301,"102":2.11445,"103":23.31683,"104":0.01159,_:"4 5 6 7 8 9 10 11 12 13 14 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 57 58 59 60 62 64 66 68 73 105 106"},F:{"68":0.01738,"69":0.01159,"71":0.01738,"85":0.02317,"86":0.01738,"87":0.03476,"88":1.26867,"89":0.59668,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02317,"84":0.01159,"85":0.01738,"96":0.00579,"97":0.00579,"98":0.00579,"99":0.01159,"101":0.09848,"102":0.26648,"103":4.09565,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 92 93 94 95 100"},E:{"4":0,"9":0.00579,"13":0.06372,"14":0.12165,"15":0.05214,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01738,"11.1":0.01738,"12.1":0.03476,"13.1":0.21434,"14.1":0.30703,"15.1":0.06372,"15.2-15.3":0.0811,"15.4":0.27806,"15.5":2.01596,"15.6":0.11586,"16.0":0.01159},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00133,"8.1-8.4":0.00265,"9.0-9.2":0.00265,"9.3":0.03978,"10.0-10.2":0.00265,"10.3":0.061,"11.0-11.2":0.01856,"11.3-11.4":0.01856,"12.0-12.1":0.01591,"12.2-12.5":0.3315,"13.0-13.1":0.01326,"13.2":0.00663,"13.3":0.08354,"13.4-13.7":0.16443,"14.0-14.4":0.4283,"14.5-14.8":0.95208,"15.0-15.1":0.35272,"15.2-15.3":0.61793,"15.4":1.05021,"15.5":8.80079,"16.0":0.04243},P:{"4":0.13871,"5.0-5.4":0.02071,"6.2-6.4":0.04083,"7.2-7.4":1.20435,"8.2":0.03079,"9.2":0.06124,"10.1":0.05305,"11.1-11.2":0.04268,"12.0":0.02134,"13.0":0.07469,"14.0":0.08536,"15.0":0.06402,"16.0":0.24542,"17.0":2.31545},I:{"0":0,"3":0,"4":0.00189,"2.1":0,"2.2":0.00566,"2.3":0,"4.1":0.00377,"4.2-4.3":0.0066,"4.4":0,"4.4.3-4.4.4":0.03678},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02317,"9":0.03476,"10":0.00579,"11":0.10427,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.69011},Q:{"10.4":0},O:{"0":0.15149},H:{"0":0.3944},L:{"0":25.27529}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00592,"52":0.02367,"53":0,"54":0,"55":0.01775,"56":0,"57":0,"58":0,"59":0,"60":0.00592,"61":0,"62":0.00592,"63":0,"64":0,"65":0.00592,"66":0,"67":0,"68":0.01183,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00592,"75":0,"76":0,"77":0,"78":0.11834,"79":0.02959,"80":0.00592,"81":0.02959,"82":0.01183,"83":0.01183,"84":0.04142,"85":0,"86":0.00592,"87":0,"88":0.01775,"89":0.00592,"90":0,"91":0.11242,"92":0.00592,"93":0.00592,"94":0.00592,"95":0.02959,"96":0.01183,"97":0.01183,"98":0.01183,"99":0.01775,"100":0.05325,"101":0.66862,"102":6.39628,"103":0.79288,"104":0.00592,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00592,"39":0,"40":0,"41":0,"42":0.02959,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01183,"50":0,"51":0,"52":0,"53":0.00592,"54":0,"55":0,"56":0.01183,"57":0.00592,"58":0,"59":0,"60":0,"61":0.00592,"62":0,"63":0.01183,"64":0.00592,"65":0.01183,"66":0,"67":0.00592,"68":0,"69":0.08876,"70":0.01183,"71":0.00592,"72":0.01183,"73":0,"74":0.00592,"75":0.2426,"76":0.01183,"77":0.00592,"78":0.00592,"79":0.36094,"80":0.15384,"81":0.0355,"83":0.04734,"84":0.12426,"85":0.06509,"86":0.09467,"87":0.17751,"88":0.02959,"89":0.02959,"90":0.01183,"91":0.00592,"92":0.02367,"93":0.06509,"94":0.0355,"95":0.02959,"96":0.18343,"97":0.16568,"98":0.16568,"99":0.04734,"100":1.05914,"101":0.88163,"102":1.27216,"103":13.97595,"104":0.00592,"105":0.00592,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01183,"64":0,"65":0,"66":0,"67":0,"68":0.01183,"69":0.00592,"70":0.00592,"71":0.01183,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01183,"86":0.01183,"87":0.02367,"88":0.75146,"89":0.3491,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00592,"15":0,"16":0,"17":0,"18":0.01183,"79":0,"80":0,"81":0,"83":0,"84":0.00592,"85":0.01183,"86":0.00592,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00592,"96":0.00592,"97":0.00592,"98":0.00592,"99":0.00592,"100":0.00592,"101":0.05917,"102":0.17159,"103":2.48514,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00592,"10":0,"11":0,"12":0.00592,"13":0.0355,"14":0.071,"15":0.02959,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01183,"10.1":0,"11.1":0.00592,"12.1":0.01775,"13.1":0.13017,"14.1":0.18343,"15.1":0.0355,"15.2-15.3":0.04734,"15.4":0.16568,"15.5":1.18932,"15.6":0.071,"16.0":0.00592},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00217,"8.1-8.4":0.00433,"9.0-9.2":0.00433,"9.3":0.06498,"10.0-10.2":0.00433,"10.3":0.09964,"11.0-11.2":0.03033,"11.3-11.4":0.03033,"12.0-12.1":0.02599,"12.2-12.5":0.54153,"13.0-13.1":0.02166,"13.2":0.01083,"13.3":0.13647,"13.4-13.7":0.2686,"14.0-14.4":0.69966,"14.5-14.8":1.55528,"15.0-15.1":0.57619,"15.2-15.3":1.00942,"15.4":1.71557,"15.5":14.37658,"16.0":0.06932},P:{"4":0.1238,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.02063,"8.2":0.01032,"9.2":0.02063,"10.1":0,"11.1-11.2":0.05158,"12.0":0.03095,"13.0":0.07222,"14.0":0.08253,"15.0":0.05158,"16.0":0.23728,"17.0":2.18709,"18.0":0},I:{"0":0,"3":0,"4":0.00407,"2.1":0,"2.2":0.01222,"2.3":0,"4.1":0.00815,"4.2-4.3":0.01426,"4.4":0,"4.4.3-4.4.4":0.07946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01183,"9":0.01775,"10":0.00592,"11":0.06509,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":37.54251},S:{"2.5":0},R:{_:"0"},M:{"0":0.66961},Q:{"10.4":0.00408},O:{"0":0.14699},H:{"0":0.38269}}; 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 c6e73fa7315b53a..15350477d11a1f6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js @@ -1 +1 @@ -module.exports={C:{"29":0.00609,"47":0.00914,"52":0.01523,"56":0.00305,"65":0.02437,"66":0.00305,"78":0.02437,"81":0.0792,"86":0.01828,"88":0.00609,"91":0.01523,"93":0.00305,"95":0.01523,"98":0.00609,"99":0.02132,"100":0.00609,"101":0.12489,"102":1.43467,"103":0.19799,"104":0.00609,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 87 89 90 92 94 96 97 105 3.5 3.6"},D:{"37":0.00609,"45":0.00609,"48":0.06397,"49":0.01218,"50":0.01828,"55":0.00305,"56":0.08224,"57":0.00914,"64":0.00914,"65":0.00305,"67":0.00305,"68":0.06701,"69":0.02437,"72":0.00609,"73":0.00914,"74":0.00914,"76":0.01218,"77":0.01218,"78":0.00914,"79":0.06092,"80":0.00914,"81":0.00914,"83":0.0396,"84":0.02132,"85":0.0792,"86":0.00914,"87":0.03351,"88":0.01828,"89":0.01218,"90":0.01218,"91":0.00914,"92":0.02437,"93":0.01218,"94":0.07006,"95":0.00609,"96":0.03046,"97":0.02741,"98":0.02437,"99":0.1127,"100":0.17971,"101":0.08833,"102":1.37984,"103":16.40576,"104":0.00305,"105":0.02132,_:"4 5 6 7 8 9 10 11 12 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 46 47 51 52 53 54 58 59 60 61 62 63 66 70 71 75 106"},F:{"28":0.00914,"36":0.00914,"81":0.00305,"88":0.43253,"89":0.3442,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00914,"13":0.00609,"14":0.00609,"15":0.00609,"16":0.00914,"17":0.01523,"18":0.02132,"80":0.00305,"84":0.03046,"85":0.01218,"89":0.01218,"90":0.00305,"91":0.00609,"92":0.01218,"94":0.00609,"96":0.00914,"97":0.00305,"98":0.00609,"99":0.08833,"100":0.03351,"101":0.03046,"102":0.10661,"103":3.22571,_:"79 81 83 86 87 88 93 95"},E:{"4":0,"13":0.02741,"14":0.16144,"15":0.00609,_:"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 16.0","12.1":0.00609,"13.1":0.28632,"14.1":0.20408,"15.1":0.0731,"15.2-15.3":0.01523,"15.4":0.14012,"15.5":0.64575,"15.6":0.00609},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0007,"7.0-7.1":0.03065,"8.1-8.4":0.01463,"9.0-9.2":0.00139,"9.3":0.11912,"10.0-10.2":0.01602,"10.3":0.05085,"11.0-11.2":0.00418,"11.3-11.4":0.00488,"12.0-12.1":0.01672,"12.2-12.5":0.73909,"13.0-13.1":0.00279,"13.2":0.00139,"13.3":0.13584,"13.4-13.7":0.04319,"14.0-14.4":0.29675,"14.5-14.8":0.47439,"15.0-15.1":0.21037,"15.2-15.3":0.47021,"15.4":0.56216,"15.5":3.64531,"16.0":0.01602},P:{"4":0.38784,"5.0-5.4":0.02071,"6.2-6.4":0.04083,"7.2-7.4":1.20435,"8.2":0.03079,"9.2":0.06124,"10.1":0.05305,"11.1-11.2":0.3164,"12.0":0.05103,"13.0":0.3164,"14.0":0.51032,"15.0":0.52052,"16.0":0.86754,"17.0":5.67472},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00013,"4.2-4.3":0.00026,"4.4":0,"4.4.3-4.4.4":0.01352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0067,"11":0.09382,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.11126},Q:{"10.4":0.01391},O:{"0":0.81362},H:{"0":0.31601},L:{"0":54.42865}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00314,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00314,"48":0,"49":0,"50":0,"51":0,"52":0.00314,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00628,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00628,"79":0,"80":0,"81":0.02512,"82":0,"83":0,"84":0,"85":0,"86":0.00628,"87":0,"88":0.00314,"89":0,"90":0,"91":0.00628,"92":0,"93":0.00314,"94":0,"95":0.00628,"96":0,"97":0,"98":0.00314,"99":0.00942,"100":0.00314,"101":0.04082,"102":0.46786,"103":0.0628,"104":0.00314,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00314,"41":0,"42":0,"43":0,"44":0,"45":0.00314,"46":0.0157,"47":0,"48":0.01884,"49":0.00314,"50":0.00628,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.02512,"57":0.00314,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00314,"65":0,"66":0,"67":0,"68":0.02198,"69":0.00942,"70":0,"71":0,"72":0.00314,"73":0.00314,"74":0.00314,"75":0,"76":0.00314,"77":0.00314,"78":0.00314,"79":0.01884,"80":0.00314,"81":0.00942,"83":0.01256,"84":0.00628,"85":0.02512,"86":0.00314,"87":0.0157,"88":0.00628,"89":0.00314,"90":0.00314,"91":0.00314,"92":0.00942,"93":0.00314,"94":0.03768,"95":0.00942,"96":0.02198,"97":0.01256,"98":0.00628,"99":0.03454,"100":0.05652,"101":0.02826,"102":0.4396,"103":5.19356,"104":0,"105":0.00628,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00314,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00314,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04396,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.13502,"89":0.10676,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00314,"13":0.00314,"14":0.00314,"15":0.00314,"16":0.00314,"17":0.00628,"18":0.00628,"79":0,"80":0,"81":0,"83":0,"84":0.00942,"85":0.00314,"86":0,"87":0,"88":0,"89":0.00314,"90":0,"91":0.00314,"92":0.00314,"93":0,"94":0.00314,"95":0,"96":0.00314,"97":0,"98":0.00314,"99":0.02826,"100":0.01256,"101":0.00942,"102":0.03454,"103":1.01736,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00942,"14":0.05024,"15":0.00314,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00314,"13.1":0.09106,"14.1":0.0628,"15.1":0.02198,"15.2-15.3":0.00314,"15.4":0.04396,"15.5":0.2041,"15.6":0.00314,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00095,"7.0-7.1":0.04168,"8.1-8.4":0.01989,"9.0-9.2":0.00189,"9.3":0.16197,"10.0-10.2":0.02179,"10.3":0.06914,"11.0-11.2":0.00568,"11.3-11.4":0.00663,"12.0-12.1":0.02273,"12.2-12.5":1.00495,"13.0-13.1":0.00379,"13.2":0.00189,"13.3":0.1847,"13.4-13.7":0.05872,"14.0-14.4":0.4035,"14.5-14.8":0.64503,"15.0-15.1":0.28605,"15.2-15.3":0.63934,"15.4":0.76437,"15.5":4.95658,"16.0":0.02179},P:{"4":0.37083,"5.0-5.4":0,"6.2-6.4":0.0515,"7.2-7.4":1.18459,"8.2":0,"9.2":0.07211,"10.1":0.0206,"11.1-11.2":0.31932,"12.0":0.0618,"13.0":0.30902,"14.0":0.50474,"15.0":0.50474,"16.0":0.85497,"17.0":5.55213,"18.0":0.0103},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00054,"4.2-4.3":0.00108,"4.4":0,"4.4.3-4.4.4":0.05606},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00345,"11":0.03109,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.3731},S:{"2.5":0},R:{_:"0"},M:{"0":0.10976},Q:{"10.4":0.01372},O:{"0":0.80262},H:{"0":0.31174}}; 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 161134ffe9395bd..1b51a7d0b759b81 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.00787,"78":1.32053,"82":0.00787,"86":0.01771,"97":0.01771,"98":0.01771,"99":0.00787,"100":0.00787,"101":0.03542,"102":2.19826,"103":0.2519,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 104 105 3.5 3.6"},D:{"49":0.00787,"63":0.00787,"86":0.01771,"95":0.11218,"101":0.02558,"102":0.42509,"103":8.08651,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 104 105 106"},F:{"88":0.05117,"89":0.01771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.43493,"84":0.05117,"85":0.03542,"91":0.00787,"98":0.00787,"100":0.00787,"101":0.02558,"102":0.07872,"103":3.41251,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 89 90 92 93 94 95 96 97 99"},E:{"4":0,"13":0.70258,"15":0.03542,_:"0 5 6 7 8 9 10 11 12 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.6 16.0","11.1":0.00787,"13.1":0.01771,"14.1":0.1043,"15.2-15.3":0.06888,"15.4":0.11218,"15.5":1.1808},G:{"8":0,"3.2":0,"4.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.04844,"10.0-10.2":0,"10.3":0.02738,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01369,"12.2-12.5":0.25537,"13.0-13.1":0,"13.2":0.02054,"13.3":0,"13.4-13.7":0.00685,"14.0-14.4":0.20693,"14.5-14.8":0.29697,"15.0-15.1":0.12374,"15.2-15.3":0.6487,"15.4":0.48284,"15.5":2.93968,"16.0":0.02054},P:{"4":0.40386,"5.0-5.4":0.02071,"6.2-6.4":0.03107,"7.2-7.4":0.04011,"8.2":0.03079,"9.2":0.05178,"10.1":0.05305,"11.1-11.2":0.02005,"12.0":0.03058,"13.0":0.28995,"14.0":2.29605,"15.0":0.04142,"16.0":0.04011,"17.0":5.75515},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.12047},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0433,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.2329},Q:{"10.4":0},O:{"0":0},H:{"0":0.2433},L:{"0":66.36455}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.002,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.26347,"79":0,"80":0,"81":0,"82":0.002,"83":0,"84":0,"85":0,"86":0.00399,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00399,"98":0.00399,"99":0.002,"100":0.002,"101":0.00599,"102":0.48104,"103":0.05389,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.002,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.002,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00399,"87":0,"88":0,"89":0,"90":0.00399,"91":0,"92":0,"93":0,"94":0,"95":0.02196,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00599,"102":0.08782,"103":1.61876,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.002,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00998,"89":0.00399,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.08583,"79":0,"80":0,"81":0,"83":0,"84":0.00998,"85":0.00599,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.002,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00399,"98":0.002,"99":0,"100":0.002,"101":0.00599,"102":0.01597,"103":0.79042,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.13972,"14":0,"15":0.00599,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.002,"12.1":0,"13.1":0.00399,"14.1":0.01996,"15.1":0,"15.2-15.3":0.01397,"15.4":0.02196,"15.5":0.23553,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05984,"10.0-10.2":0,"10.3":0.03382,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01691,"12.2-12.5":0.31548,"13.0-13.1":0,"13.2":0.02537,"13.3":0,"13.4-13.7":0.00846,"14.0-14.4":0.25564,"14.5-14.8":0.36687,"15.0-15.1":0.15286,"15.2-15.3":0.80139,"15.4":0.59649,"15.5":3.63161,"16.0":0.02537},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03043,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02028,"12.0":0,"13.0":0,"14.0":2.29218,"15.0":0.01014,"16.0":0.03043,"17.0":5.7406,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.17994},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00798,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.6947},S:{"2.5":0},R:{_:"0"},M:{"0":0.23212},Q:{"10.4":0},O:{"0":0},H:{"0":0.24249}}; 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 9c34bfbc8aaa92d..a21221af6e64dd9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js @@ -1 +1 @@ -module.exports={C:{"78":0.0141,"91":0.0141,"92":0.0141,"95":0.0094,"101":0.53099,"102":4.00825,"103":0.99149,"104":0.08458,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 96 97 98 99 100 105 3.5 3.6"},D:{"49":0.0235,"76":0.52629,"88":0.0094,"90":0.31953,"91":0.0141,"92":0.24435,"93":1.22174,"94":0.0141,"95":0.0094,"96":0.0094,"97":0.0235,"100":0.11748,"101":0.17856,"102":1.25463,"103":23.33523,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 87 89 98 99 104 105 106"},F:{"88":0.22555,"89":0.14097,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0094,"17":0.0141,"18":0.0094,"86":0.0141,"92":0.0188,"100":0.0094,"101":0.02819,"102":0.07049,"103":7.28815,_:"13 14 15 16 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 99"},E:{"4":0,"11":0.03289,"13":0.0235,"14":0.25375,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.6 16.0","12.1":0.05639,"13.1":0.17386,"14.1":0.14097,"15.1":0.03289,"15.2-15.3":0.0188,"15.4":0.35712,"15.5":0.4652},G:{"8":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,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02985,"10.0-10.2":0.00373,"10.3":0.00995,"11.0-11.2":0.0883,"11.3-11.4":0.00373,"12.0-12.1":0.00373,"12.2-12.5":0.77977,"13.0-13.1":0.00373,"13.2":0.00373,"13.3":0.0485,"13.4-13.7":0.08084,"14.0-14.4":0.60441,"14.5-14.8":1.23121,"15.0-15.1":0.49995,"15.2-15.3":0.84817,"15.4":0.91906,"15.5":7.10994,"16.0":0.0684},P:{"4":0.09833,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":0.07394,"8.2":0.01034,"9.2":0.01019,"10.1":0.03025,"11.1-11.2":0.07394,"12.0":0.03068,"13.0":0.02185,"14.0":0.03169,"15.0":0.01093,"16.0":0.02112,"17.0":1.1724},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.0053},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05169,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.03711},Q:{"10.4":0},O:{"0":0.08482},H:{"0":0.09034},L:{"0":43.36592}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00484,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00484,"92":0.00484,"93":0,"94":0,"95":0.00484,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.25668,"102":1.95657,"103":0.47946,"104":0.03874,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00969,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.25668,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00484,"87":0,"88":0.00484,"89":0,"90":0.15498,"91":0.00484,"92":0.12108,"93":0.59085,"94":0.00484,"95":0.00484,"96":0.00484,"97":0.00969,"98":0,"99":0,"100":0.05812,"101":0.08717,"102":0.68286,"103":11.32293,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.11139,"89":0.0678,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00484,"13":0,"14":0,"15":0,"16":0,"17":0.00484,"18":0.00484,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00484,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00969,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00484,"101":0.01453,"102":0.0339,"103":3.53055,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01453,"12":0,"13":0.01453,"14":0.12108,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02906,"13.1":0.08233,"14.1":0.0678,"15.1":0.01453,"15.2-15.3":0.00969,"15.4":0.17435,"15.5":0.22762,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00568,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04546,"10.0-10.2":0.00568,"10.3":0.01515,"11.0-11.2":0.13448,"11.3-11.4":0.00568,"12.0-12.1":0.00568,"12.2-12.5":1.18762,"13.0-13.1":0.00568,"13.2":0.00568,"13.3":0.07387,"13.4-13.7":0.12312,"14.0-14.4":0.92054,"14.5-14.8":1.87518,"15.0-15.1":0.76144,"15.2-15.3":1.29179,"15.4":1.39976,"15.5":10.8287,"16.0":0.10418},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07247,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.08282,"12.0":0,"13.0":0.01035,"14.0":0.03106,"15.0":0,"16.0":0.02071,"17.0":1.11813,"18.0":0.03106},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.67349},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02422,"5.5":0},J:{"7":0,"10":0},N:{"10":0.01547,"11":0},L:{"0":57.36828},S:{"2.5":0},R:{_:"0"},M:{"0":0.0361},Q:{"10.4":0},O:{"0":0.08251},H:{"0":0.08788}}; 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 2f2faa3cf01ada6..9f961ffeffead1e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js @@ -1 +1 @@ -module.exports={C:{"78":0.05816,"91":0.04523,"100":0.00646,"101":0.00646,"102":0.52988,"103":0.0937,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"23":0.00969,"49":0.00969,"67":0.01939,"71":0.00646,"87":0.00969,"88":0.00646,"91":0.00646,"96":0.01292,"99":0.01616,"100":0.01939,"101":0.03231,"102":0.42972,"103":6.44585,_:"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 60 61 62 63 64 65 66 68 69 70 72 73 74 75 76 77 78 79 80 81 83 84 85 86 89 90 92 93 94 95 97 98 104 105 106"},F:{"87":0.00969,"88":0.4588,"89":0.10016,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00646,"91":0.00323,"95":0.00969,"100":0.01292,"101":0.03877,"102":0.03231,"103":1.96768,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99"},E:{"4":0,"13":0.00646,"14":0.68497,"15":0.03231,_:"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.05493,"12.1":0.01939,"13.1":0.11309,"14.1":0.31341,"15.1":0.26171,"15.2-15.3":0.36187,"15.4":2.56218,"15.5":15.67035,"15.6":0.79806,"16.0":0.08078},G:{"8":0,"3.2":0,"4.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.01283,"10.0-10.2":0.00642,"10.3":0.05132,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.15396,"13.0-13.1":0,"13.2":0,"13.3":0.00642,"13.4-13.7":0.01925,"14.0-14.4":0.34642,"14.5-14.8":0.65435,"15.0-15.1":0.50038,"15.2-15.3":1.39209,"15.4":3.89402,"15.5":55.43359,"16.0":0.16679},P:{"4":0.40386,"5.0-5.4":0.02071,"6.2-6.4":0.03107,"7.2-7.4":0.24853,"8.2":0.03079,"9.2":0.05178,"10.1":0.05305,"11.1-11.2":0.08284,"12.0":0.03058,"13.0":0.28995,"14.0":0.0932,"15.0":0.04142,"16.0":0.05305,"17.0":0.679},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.00677},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01616,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12182},Q:{"10.4":0},O:{"0":0},H:{"0":0.00641},L:{"0":4.15895}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01972,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01314,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00329,"101":0.00986,"102":0.20045,"103":0.03286,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00329,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00329,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00657,"68":0,"69":0,"70":0,"71":0.00329,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00329,"88":0.00329,"89":0,"90":0,"91":0.00329,"92":0,"93":0,"94":0,"95":0,"96":0.00329,"97":0,"98":0,"99":0.00657,"100":0.00657,"101":0.00986,"102":0.1413,"103":2.12276,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00329,"88":0.15116,"89":0.03286,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00329,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00329,"96":0,"97":0,"98":0,"99":0,"100":0.00329,"101":0.01314,"102":0.01314,"103":0.65391,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00329,"14":0.22673,"15":0.00986,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01643,"12.1":0.00657,"13.1":0.03615,"14.1":0.10187,"15.1":0.08544,"15.2-15.3":0.1183,"15.4":0.84122,"15.5":5.15245,"15.6":0.26288,"16.0":0.02629},G:{"8":0,"3.2":0,"4.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.01697,"10.0-10.2":0.00848,"10.3":0.06787,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.20361,"13.0-13.1":0,"13.2":0,"13.3":0.00848,"13.4-13.7":0.02545,"14.0-14.4":0.45813,"14.5-14.8":0.86536,"15.0-15.1":0.66174,"15.2-15.3":1.841,"15.4":5.14971,"15.5":73.30919,"16.0":0.22058},P:{"4":0.01052,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.0421,"11.1-11.2":0.01052,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0.05262,"17.0":0.66305,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00329,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":5.30394},S:{"2.5":0},R:{_:"0"},M:{"0":0.12085},Q:{"10.4":0},O:{"0":0},H:{"0":0.00636}}; 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 e40b0be86c589b5..72d4443610d85e2 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:{"11":0.04028,"45":0.00895,"47":0.0179,"48":0.0179,"52":0.07608,"55":0.00448,"56":0.00448,"59":0.01343,"60":0.00448,"68":0.01343,"72":0.00448,"75":0.00448,"78":0.17005,"79":0.0179,"80":0.01343,"81":0.4654,"82":0.0179,"83":0.00895,"84":0.00895,"85":0.00448,"87":0.00448,"88":0.0179,"89":0.01343,"90":0.0179,"91":0.28193,"92":0.00448,"93":0.01343,"94":0.0179,"95":0.0179,"96":0.00895,"97":0.01343,"98":0.0179,"99":0.03133,"100":0.04923,"101":0.3043,"102":4.78825,"103":0.4475,_:"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 46 49 50 51 53 54 57 58 61 62 63 64 65 66 67 69 70 71 73 74 76 77 86 104 105 3.5 3.6"},D:{"38":0.00895,"44":0.00448,"49":0.0895,"50":0.0179,"51":0.0179,"52":0.03133,"54":0.0716,"56":0.1432,"58":0.00448,"60":0.15215,"63":0.00895,"65":0.00895,"66":0.05818,"67":0.02238,"69":0.02685,"70":0.00895,"71":0.02238,"72":0.00448,"73":0.00448,"74":0.00895,"75":0.04923,"76":0.01343,"77":0.04475,"78":0.0179,"79":0.08055,"80":0.04475,"81":0.04475,"83":0.09845,"84":0.13873,"85":0.14768,"86":0.15663,"87":0.26403,"88":0.02238,"89":0.04475,"90":0.02685,"91":0.04475,"92":0.0537,"93":0.0895,"94":0.2506,"95":0.0358,"96":0.10293,"97":0.16558,"98":0.06713,"99":0.12083,"100":0.15663,"101":0.40275,"102":1.19035,"103":19.99878,"104":0.01343,"105":0.00448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 48 53 55 57 59 61 62 64 68 106"},F:{"28":0.00448,"68":0.02685,"70":0.00895,"71":0.01343,"72":0.00448,"85":0.01343,"86":0.00895,"87":0.0358,"88":0.81893,"89":0.33115,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01343,"18":0.03133,"83":0.00448,"84":0.00895,"85":0.00895,"86":0.01343,"89":0.00448,"91":0.00448,"92":0.00895,"94":0.00448,"95":0.00448,"96":0.02238,"97":0.00895,"98":0.01343,"99":0.01343,"100":0.02238,"101":0.11635,"102":0.1969,"103":4.97173,_:"12 13 14 15 16 79 80 81 87 88 90 93"},E:{"4":0,"11":0.04028,"13":0.0358,"14":0.18795,"15":0.06265,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01343,"10.1":0.01343,"11.1":0.06713,"12.1":0.09398,"13.1":0.3222,"14.1":0.52358,"15.1":0.1074,"15.2-15.3":0.1074,"15.4":0.32668,"15.5":1.94663,"15.6":0.07608,"16.0":0.01343},G:{"8":0.00514,"3.2":0,"4.0-4.1":0.00857,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00686,"8.1-8.4":0.00343,"9.0-9.2":0.02057,"9.3":0.096,"10.0-10.2":0.01371,"10.3":0.11829,"11.0-11.2":0.04457,"11.3-11.4":0.036,"12.0-12.1":0.03429,"12.2-12.5":0.60001,"13.0-13.1":0.03257,"13.2":0.01029,"13.3":0.06857,"13.4-13.7":0.19543,"14.0-14.4":0.50915,"14.5-14.8":1.35946,"15.0-15.1":0.36687,"15.2-15.3":0.71316,"15.4":1.1006,"15.5":11.42084,"16.0":0.12},P:{"4":0.09451,"5.0-5.4":0.0105,"6.2-6.4":0.04083,"7.2-7.4":1.20435,"8.2":0.021,"9.2":0.0105,"10.1":0.05305,"11.1-11.2":0.0525,"12.0":0.021,"13.0":0.08401,"14.0":0.08401,"15.0":0.042,"16.0":0.19951,"17.0":2.97171},I:{"0":0,"3":0,"4":0.007,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0098,"4.2-4.3":0.0084,"4.4":0,"4.4.3-4.4.4":0.07424},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01379,"9":0.04136,"10":0.0046,"11":0.28035,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.01105},R:{_:"0"},M:{"0":0.64643},Q:{"10.4":0},O:{"0":0.44753},H:{"0":0.48646},L:{"0":33.67453}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01837,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00459,"46":0,"47":0.00919,"48":0.00919,"49":0,"50":0,"51":0,"52":0.03674,"53":0,"54":0,"55":0.00459,"56":0.00459,"57":0,"58":0,"59":0.00919,"60":0.00459,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00919,"69":0,"70":0,"71":0,"72":0.00459,"73":0,"74":0,"75":0.00459,"76":0,"77":0.00459,"78":0.07808,"79":0.00919,"80":0.00919,"81":0.21587,"82":0.00919,"83":0.00459,"84":0.00459,"85":0.00459,"86":0.00459,"87":0.00459,"88":0.00919,"89":0.00459,"90":0.00919,"91":0.1286,"92":0.00459,"93":0.00919,"94":0.00919,"95":0.01378,"96":0.00459,"97":0.00919,"98":0.00919,"99":0.01837,"100":0.03215,"101":0.16076,"102":2.29191,"103":0.28017,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00459,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04134,"50":0.00919,"51":0.00919,"52":0.01378,"53":0,"54":0.03215,"55":0,"56":0.0643,"57":0,"58":0.00459,"59":0,"60":0.0689,"61":0,"62":0,"63":0.00459,"64":0,"65":0.00459,"66":0.02756,"67":0.00919,"68":0,"69":0.01378,"70":0.00459,"71":0.00919,"72":0.00459,"73":0,"74":0.00459,"75":0.02297,"76":0.00459,"77":0.01837,"78":0.00919,"79":0.03674,"80":0.02297,"81":0.02297,"83":0.04593,"84":0.0643,"85":0.0689,"86":0.07349,"87":0.12401,"88":0.00919,"89":0.02297,"90":0.01378,"91":0.01837,"92":0.03215,"93":0.04134,"94":0.11483,"95":0.01837,"96":0.04593,"97":0.07349,"98":0.03215,"99":0.05512,"100":0.07349,"101":0.18372,"102":0.54197,"103":9.2549,"104":0.00459,"105":0.00459,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03215,"64":0.00459,"65":0,"66":0,"67":0,"68":0.01378,"69":0,"70":0.00459,"71":0.00459,"72":0.00459,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00459,"86":0.00459,"87":0.01837,"88":0.36285,"89":0.16535,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00459,"15":0.00459,"16":0,"17":0.00459,"18":0.01378,"79":0,"80":0,"81":0,"83":0,"84":0.00459,"85":0.00459,"86":0.00459,"87":0,"88":0,"89":0,"90":0,"91":0.00459,"92":0.00459,"93":0,"94":0.00459,"95":0.00459,"96":0.00919,"97":0.00459,"98":0.00459,"99":0.00459,"100":0.00919,"101":0.05512,"102":0.09186,"103":2.30109,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01837,"12":0,"13":0.01837,"14":0.08727,"15":0.02756,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00459,"10.1":0.00459,"11.1":0.03215,"12.1":0.04134,"13.1":0.14698,"14.1":0.24343,"15.1":0.05052,"15.2-15.3":0.04593,"15.4":0.14698,"15.5":0.88645,"15.6":0.04134,"16.0":0.00459},G:{"8":0.0076,"3.2":0,"4.0-4.1":0.01266,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01013,"8.1-8.4":0.00507,"9.0-9.2":0.03039,"9.3":0.14183,"10.0-10.2":0.02026,"10.3":0.17476,"11.0-11.2":0.06585,"11.3-11.4":0.05319,"12.0-12.1":0.05066,"12.2-12.5":0.88647,"13.0-13.1":0.04812,"13.2":0.0152,"13.3":0.10131,"13.4-13.7":0.28874,"14.0-14.4":0.75223,"14.5-14.8":2.00848,"15.0-15.1":0.54201,"15.2-15.3":1.05363,"15.4":1.62604,"15.5":16.87328,"16.0":0.17729},P:{"4":0.09249,"5.0-5.4":0.01028,"6.2-6.4":0,"7.2-7.4":0.03083,"8.2":0.01028,"9.2":0.02055,"10.1":0.01028,"11.1-11.2":0.07194,"12.0":0.03083,"13.0":0.08221,"14.0":0.07194,"15.0":0.04111,"16.0":0.19525,"17.0":2.8363,"18.0":0.01028},I:{"0":0,"3":0,"4":0.0172,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02409,"4.2-4.3":0.02065,"4.4":0,"4.4.3-4.4.4":0.18237},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00472,"9":0.0189,"10":0.00472,"11":0.137,"5.5":0},J:{"7":0,"10":0.00541},N:{"10":0.00541,"11":0},L:{"0":46.4007},S:{"2.5":0.01081},R:{_:"0"},M:{"0":0.63262},Q:{"10.4":0},O:{"0":0.43797},H:{"0":0.47095}}; 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 82bf61d82c67966..a6ac1424a856e3a 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:{"37":0.00382,"52":0.04967,"54":0.01528,"56":0.05349,"60":0.00764,"72":0.03057,"78":0.01528,"79":0.00764,"91":0.06878,"95":0.00382,"99":0.01528,"100":0.03439,"101":0.09553,"102":3.50768,"103":0.24454,_:"2 3 4 5 6 7 8 9 10 11 12 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 53 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 104 105 3.5 3.6"},D:{"22":0.10317,"30":0.00764,"38":0.00764,"42":0.00382,"49":0.03057,"53":0.01528,"55":0.00764,"56":0.12991,"58":0.01911,"64":0.01146,"65":0.01146,"69":0.03821,"72":0.00382,"73":0.04203,"74":0.02293,"75":0.01146,"77":0.01146,"78":0.00382,"79":0.31714,"81":0.01911,"83":0.07642,"84":0.03057,"85":0.01528,"86":0.01528,"87":0.02293,"88":0.00382,"89":0.00764,"90":0.01528,"91":0.01146,"92":0.04203,"93":0.01911,"94":0.02675,"95":0.03439,"96":0.03057,"97":0.03821,"98":0.01146,"99":0.02293,"100":0.48909,"101":0.06878,"102":0.65339,"103":19.08972,"105":0.01146,_:"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 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 57 59 60 61 62 63 66 67 68 70 71 76 80 104 106"},F:{"17":0.00382,"28":0.01911,"46":0.19869,"79":0.01528,"83":0.01146,"84":0.01146,"85":0.01146,"86":0.02675,"87":0.01911,"88":0.76802,"89":1.03549,"90":0.01146,_:"9 11 12 15 16 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01146,"13":0.02293,"14":0.02293,"15":0.00764,"17":0.01528,"18":0.03439,"84":0.00382,"88":0.00382,"92":0.01911,"98":0.01528,"100":0.01528,"101":0.03439,"102":0.04967,"103":3.05298,_:"16 79 80 81 83 85 86 87 89 90 91 93 94 95 96 97 99"},E:{"4":0,"14":0.02675,_:"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 16.0","12.1":0.00382,"13.1":0.03439,"14.1":0.04585,"15.1":0.19105,"15.2-15.3":0.00764,"15.4":0.13374,"15.5":0.37828,"15.6":0.11081},G:{"8":0.31406,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00077,"6.0-6.1":0.00307,"7.0-7.1":0.02073,"8.1-8.4":0,"9.0-9.2":0.03302,"9.3":0.02841,"10.0-10.2":0,"10.3":0.02457,"11.0-11.2":0.0238,"11.3-11.4":0.00845,"12.0-12.1":0.04147,"12.2-12.5":1.23628,"13.0-13.1":0.00461,"13.2":0.00307,"13.3":0.12209,"13.4-13.7":0.15895,"14.0-14.4":0.18199,"14.5-14.8":0.66037,"15.0-15.1":0.42617,"15.2-15.3":0.28642,"15.4":0.31713,"15.5":3.47771,"16.0":0.14052},P:{"4":0.19595,"5.0-5.4":0.0105,"6.2-6.4":0.02063,"7.2-7.4":0.41252,"8.2":0.021,"9.2":0.0105,"10.1":0.05305,"11.1-11.2":0.05156,"12.0":0.0105,"13.0":0.28876,"14.0":0.05156,"15.0":0.04125,"16.0":0.35064,"17.0":1.48507},I:{"0":0,"3":0,"4":0.0022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00083,"4.2-4.3":0.00908,"4.4":0,"4.4.3-4.4.4":0.08058},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00382,"11":0.08024,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.01236},R:{_:"0"},M:{"0":0.19773},Q:{"10.4":0},O:{"0":0.36456},H:{"0":2.26975},L:{"0":53.29469}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00387,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01936,"53":0,"54":0.00774,"55":0,"56":0.02323,"57":0,"58":0,"59":0,"60":0.00387,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.01162,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00774,"79":0.00387,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0271,"92":0,"93":0,"94":0,"95":0.00387,"96":0,"97":0,"98":0,"99":0.00774,"100":0.01162,"101":0.07744,"102":1.38618,"103":0.0968,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.03872,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00387,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00387,"39":0,"40":0,"41":0,"42":0.00387,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01162,"50":0,"51":0,"52":0,"53":0.00774,"54":0,"55":0.00387,"56":0.05034,"57":0,"58":0.00774,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00387,"65":0.00387,"66":0,"67":0,"68":0,"69":0.01549,"70":0,"71":0,"72":0,"73":0.01549,"74":0.00774,"75":0.00387,"76":0,"77":0.00387,"78":0,"79":0.13939,"80":0,"81":0.03872,"83":0.03098,"84":0.01162,"85":0.00774,"86":0.00774,"87":0.00774,"88":0,"89":0.00387,"90":0.00774,"91":0.00387,"92":0.01936,"93":0.00774,"94":0.01162,"95":0.01549,"96":0.01162,"97":0.01549,"98":0.00387,"99":0.00774,"100":0.18973,"101":0.0271,"102":0.25555,"103":7.40326,"104":0,"105":0.00387,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00774,"29":0,"30":0,"31":0,"32":0,"33":0.00387,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00387,"43":0,"44":0,"45":0,"46":0.07744,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00387,"58":0.00387,"60":0.05034,"62":0,"63":0.40269,"64":0.01549,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00387,"80":0,"81":0,"82":0,"83":0.00387,"84":0.00387,"85":0.00387,"86":0.01162,"87":0.00774,"88":0.29814,"89":0.40269,"90":0.00387,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00387,"13":0.00774,"14":0.00774,"15":0.00387,"16":0,"17":0.00387,"18":0.01162,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00774,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00387,"99":0,"100":0.00387,"101":0.01162,"102":0.0271,"103":1.19645,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01162,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01549,"14.1":0.01936,"15.1":0.07357,"15.2-15.3":0.00387,"15.4":0.05034,"15.5":0.14714,"15.6":0.04259,"16.0":0},G:{"8":0.44693,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00109,"6.0-6.1":0.00437,"7.0-7.1":0.0295,"8.1-8.4":0,"9.0-9.2":0.04699,"9.3":0.04043,"10.0-10.2":0,"10.3":0.03497,"11.0-11.2":0.03388,"11.3-11.4":0.01202,"12.0-12.1":0.05901,"12.2-12.5":1.75932,"13.0-13.1":0.00656,"13.2":0.00437,"13.3":0.17375,"13.4-13.7":0.2262,"14.0-14.4":0.25898,"14.5-14.8":0.93976,"15.0-15.1":0.60647,"15.2-15.3":0.40759,"15.4":0.4513,"15.5":4.94904,"16.0":0.19997},P:{"4":0.19502,"5.0-5.4":0,"6.2-6.4":0.02053,"7.2-7.4":0.42084,"8.2":0,"9.2":0.01026,"10.1":0,"11.1-11.2":0.05132,"12.0":0.01026,"13.0":0.27714,"14.0":0.04106,"15.0":0.04106,"16.0":0.33873,"17.0":1.45754,"18.0":0.01026},I:{"0":0,"3":0,"4":0.00595,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00223,"4.2-4.3":0.02455,"4.4":0,"4.4.3-4.4.4":0.21794},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00387,"10":0,"11":0.03098,"5.5":0},J:{"7":0,"10":0.00613},N:{"10":0,"11":0},L:{"0":67.49482},S:{"2.5":0.01226},R:{_:"0"},M:{"0":0.1961},Q:{"10.4":0},O:{"0":0.36155},H:{"0":2.25102}}; 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 ca38fbdec51a067..8c0b7198088604a 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.00481,"52":0.03368,"59":0.01925,"68":0.00481,"78":0.05774,"79":0.00481,"80":0.00481,"81":0.00962,"82":0.00481,"83":0.00481,"84":0.00481,"87":0.01444,"88":0.00481,"89":0.01444,"90":0.03368,"91":0.05774,"92":0.00481,"93":0.00962,"94":0.0385,"95":0.00962,"96":0.00481,"98":0.00962,"99":0.00962,"100":0.03368,"101":0.13474,"102":1.70345,"103":0.19729,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 85 86 97 104 105 3.5 3.6"},D:{"36":0.00962,"38":0.00962,"40":0.23098,"49":0.04812,"60":0.03368,"63":0.00481,"65":0.00962,"66":0.07699,"67":0.02406,"69":0.04331,"74":0.00962,"75":0.00962,"76":0.02887,"77":0.02887,"78":0.00481,"79":0.07699,"80":0.04812,"81":0.02406,"83":0.04331,"84":0.06737,"85":0.06256,"86":0.06737,"87":0.09624,"88":0.01444,"89":0.05774,"90":0.02406,"91":0.05774,"92":0.05774,"93":0.0818,"94":0.09143,"95":0.02887,"96":0.12511,"97":0.06737,"98":0.11549,"99":0.1203,"100":0.24541,"101":0.38977,"102":1.92961,"103":23.16978,"104":0.02406,"105":0.00962,_:"4 5 6 7 8 9 10 11 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 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 64 68 70 71 72 73 106"},F:{"46":0.00962,"68":0.00962,"85":0.00481,"86":0.01444,"87":0.02887,"88":0.62075,"89":0.20692,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00962},B:{"15":0.00962,"17":0.00962,"18":0.06256,"79":0.00481,"84":0.00481,"85":0.00962,"87":0.00481,"92":0.01444,"93":0.00962,"95":0.00962,"96":0.00962,"97":0.00962,"98":0.00962,"99":0.01444,"100":0.02887,"101":0.18286,"102":0.28391,"103":8.49799,_:"12 13 14 16 80 81 83 86 88 89 90 91 94"},E:{"4":0,"13":0.04812,"14":0.22616,"15":0.07218,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00481,"10.1":0.00962,"11.1":0.04812,"12.1":0.06737,"13.1":0.30316,"14.1":0.68812,"15.1":0.11549,"15.2-15.3":0.1203,"15.4":0.46195,"15.5":3.87847,"15.6":0.15398,"16.0":0.01444},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00488,"7.0-7.1":0.01221,"8.1-8.4":0.00732,"9.0-9.2":0.00488,"9.3":0.24167,"10.0-10.2":0.00732,"10.3":0.21726,"11.0-11.2":0.08788,"11.3-11.4":0.05126,"12.0-12.1":0.02441,"12.2-12.5":1.02039,"13.0-13.1":0.01953,"13.2":0.00732,"13.3":0.04394,"13.4-13.7":0.15867,"14.0-14.4":0.50043,"14.5-14.8":1.79667,"15.0-15.1":0.36373,"15.2-15.3":1.14977,"15.4":1.39389,"15.5":16.76081,"16.0":0.06835},P:{"4":0.05425,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.03255,"12.0":0.01085,"13.0":0.0651,"14.0":0.05425,"15.0":0.03255,"16.0":0.11935,"17.0":3.54803},I:{"0":0,"3":0,"4":0.02134,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00213,"4.2-4.3":0.0047,"4.4":0,"4.4.3-4.4.4":0.03927},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00985,"9":0.0197,"11":0.18218,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.49286},Q:{"10.4":0},O:{"0":0.13489},H:{"0":0.21611},L:{"0":23.45938}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00507,"49":0,"50":0,"51":0,"52":0.01521,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01014,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00507,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03042,"79":0.00507,"80":0.00507,"81":0.00507,"82":0.00507,"83":0.00507,"84":0.00507,"85":0,"86":0,"87":0.00507,"88":0.00507,"89":0.01014,"90":0.02028,"91":0.03042,"92":0.00507,"93":0.00507,"94":0.02028,"95":0.00507,"96":0.00507,"97":0.00507,"98":0.00507,"99":0.00507,"100":0.02028,"101":0.07605,"102":0.97344,"103":0.10647,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00507,"37":0,"38":0.00507,"39":0,"40":0.11661,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02535,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02028,"61":0,"62":0,"63":0.00507,"64":0,"65":0.00507,"66":0.04056,"67":0.01014,"68":0,"69":0.02028,"70":0,"71":0,"72":0,"73":0,"74":0.00507,"75":0.00507,"76":0.01521,"77":0.01521,"78":0.00507,"79":0.04056,"80":0.02535,"81":0.02028,"83":0.02028,"84":0.03549,"85":0.03042,"86":0.03549,"87":0.0507,"88":0.01014,"89":0.03042,"90":0.01014,"91":0.03042,"92":0.03042,"93":0.04056,"94":0.04563,"95":0.02028,"96":0.06591,"97":0.03549,"98":0.06084,"99":0.06084,"100":0.12675,"101":0.19773,"102":0.98865,"103":11.85873,"104":0.01014,"105":0.00507,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00507,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01521,"64":0,"65":0,"66":0,"67":0,"68":0.00507,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00507,"86":0.00507,"87":0.01521,"88":0.31434,"89":0.10647,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00507},B:{"12":0,"13":0,"14":0,"15":0.00507,"16":0,"17":0.00507,"18":0.03042,"79":0.00507,"80":0,"81":0,"83":0,"84":0.00507,"85":0.00507,"86":0,"87":0.00507,"88":0,"89":0,"90":0,"91":0,"92":0.00507,"93":0.00507,"94":0,"95":0.00507,"96":0.00507,"97":0.00507,"98":0.00507,"99":0.00507,"100":0.01521,"101":0.09633,"102":0.15717,"103":4.34499,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02535,"14":0.11661,"15":0.03549,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00507,"10.1":0.00507,"11.1":0.02535,"12.1":0.03549,"13.1":0.1521,"14.1":0.34983,"15.1":0.06084,"15.2-15.3":0.06084,"15.4":0.23322,"15.5":1.96716,"15.6":0.07605,"16.0":0.00507},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00734,"7.0-7.1":0.01834,"8.1-8.4":0.011,"9.0-9.2":0.00734,"9.3":0.36312,"10.0-10.2":0.011,"10.3":0.32644,"11.0-11.2":0.13204,"11.3-11.4":0.07703,"12.0-12.1":0.03668,"12.2-12.5":1.53317,"13.0-13.1":0.02934,"13.2":0.011,"13.3":0.06602,"13.4-13.7":0.23841,"14.0-14.4":0.75191,"14.5-14.8":2.69956,"15.0-15.1":0.54651,"15.2-15.3":1.72757,"15.4":2.09436,"15.5":25.18362,"16.0":0.1027},P:{"4":0.09599,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01067,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.032,"12.0":0.01067,"13.0":0.06399,"14.0":0.05333,"15.0":0.032,"16.0":0.11732,"17.0":3.30621,"18.0":0},I:{"0":0,"3":0,"4":0.17912,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01791,"4.2-4.3":0.03941,"4.4":0,"4.4.3-4.4.4":0.32958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00507,"9":0.01014,"10":0,"11":0.09126,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.07648},S:{"2.5":0},R:{_:"0"},M:{"0":0.46835},Q:{"10.4":0},O:{"0":0.12818},H:{"0":0.20537}}; 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 5257e156e710dba..53dd5bb01484401 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.00834,"60":0.02503,"78":0.09593,"82":0.09593,"86":0.03754,"91":0.0292,"95":0.00834,"97":0.00834,"99":0.01251,"101":0.08759,"102":1.19708,"103":0.04588,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 87 88 89 90 92 93 94 96 98 100 104 105 3.5 3.6"},D:{"46":0.00417,"49":0.02086,"63":0.00417,"68":0.00834,"70":0.00834,"73":0.0292,"75":0.00834,"76":0.01251,"79":0.13347,"80":0.00834,"81":0.00417,"83":0.00417,"84":0.02086,"85":0.00834,"87":0.04588,"88":0.00417,"90":0.01251,"91":0.00417,"92":0.09593,"93":0.03754,"94":0.02086,"95":0.06257,"96":0.04588,"97":0.05005,"98":0.01668,"99":0.04171,"100":0.05422,"101":0.17935,"102":1.76016,"103":21.85187,"104":0.02086,"105":0.00834,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 71 72 74 77 78 86 89 106"},F:{"87":0.07091,"88":1.43482,"89":1.07612,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00417,"17":0.00834,"18":0.0292,"92":0.07508,"97":0.02086,"100":0.02503,"101":0.00834,"102":0.27946,"103":5.8394,_:"12 13 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99"},E:{"4":0,"14":0.07925,"15":0.01668,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.05839,"12.1":0.02086,"13.1":0.15016,"14.1":0.20021,"15.1":0.3879,"15.2-15.3":0.03754,"15.4":0.15016,"15.5":1.5391,"15.6":0.13764,"16.0":0.00834},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00342,"6.0-6.1":0,"7.0-7.1":0.01823,"8.1-8.4":0,"9.0-9.2":0.00797,"9.3":0.07405,"10.0-10.2":0,"10.3":0.10026,"11.0-11.2":0.00228,"11.3-11.4":0.00342,"12.0-12.1":0.00342,"12.2-12.5":0.55596,"13.0-13.1":0.00228,"13.2":0,"13.3":0.01253,"13.4-13.7":0.03076,"14.0-14.4":0.11507,"14.5-14.8":0.98433,"15.0-15.1":0.11051,"15.2-15.3":0.31558,"15.4":0.48989,"15.5":8.18793,"16.0":0.04557},P:{"4":0.05236,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.41889,"8.2":0.021,"9.2":0.01047,"10.1":0.05305,"11.1-11.2":0.09425,"12.0":0.02094,"13.0":0.05236,"14.0":0.07331,"15.0":0.04189,"16.0":0.12567,"17.0":3.66528},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00307,"4.2-4.3":0.00205,"4.4":0,"4.4.3-4.4.4":0.05318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02503,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.27396},Q:{"10.4":0},O:{"0":0.1399},H:{"0":0.19867},L:{"0":45.06104}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00439,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00879,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04394,"79":0,"80":0,"81":0,"82":0.04394,"83":0,"84":0,"85":0,"86":0.01758,"87":0,"88":0,"89":0,"90":0,"91":0.01318,"92":0,"93":0,"94":0,"95":0.00439,"96":0,"97":0.00439,"98":0.02197,"99":0.00439,"100":0,"101":0.04833,"102":0.5888,"103":0.02197,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00439,"47":0,"48":0,"49":0.00879,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00439,"64":0,"65":0,"66":0,"67":0,"68":0.00439,"69":0,"70":0.00439,"71":0,"72":0,"73":0.01318,"74":0,"75":0.01318,"76":0.00439,"77":0,"78":0,"79":0.05712,"80":0.00439,"81":0.01318,"83":0.00439,"84":0.00879,"85":0.00439,"86":0,"87":0.02197,"88":0.00439,"89":0.00439,"90":0.00439,"91":0.00439,"92":0.0747,"93":0.01758,"94":0.01318,"95":0.03076,"96":0.12303,"97":0.02197,"98":0.01318,"99":0.02636,"100":0.0747,"101":0.08788,"102":0.87441,"103":10.44454,"104":0.01318,"105":0.00439,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00879,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.03076,"88":0.62834,"89":0.47455,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00439,"18":0.01318,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.03515,"93":0,"94":0,"95":0,"96":0,"97":0.00879,"98":0,"99":0,"100":0.01318,"101":0.00879,"102":0.12743,"103":2.58367,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.03515,"15":0.00879,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.02636,"12.1":0.00879,"13.1":0.06591,"14.1":0.08788,"15.1":0.17137,"15.2-15.3":0.01758,"15.4":0.06591,"15.5":0.67668,"15.6":0.06152,"16.0":0.00439},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00508,"6.0-6.1":0,"7.0-7.1":0.02707,"8.1-8.4":0,"9.0-9.2":0.01184,"9.3":0.10998,"10.0-10.2":0,"10.3":0.1489,"11.0-11.2":0.00338,"11.3-11.4":0.00508,"12.0-12.1":0.00508,"12.2-12.5":0.82572,"13.0-13.1":0.00338,"13.2":0,"13.3":0.01861,"13.4-13.7":0.04569,"14.0-14.4":0.1709,"14.5-14.8":1.46193,"15.0-15.1":0.16413,"15.2-15.3":0.4687,"15.4":0.72758,"15.5":12.16075,"16.0":0.06768},P:{"4":0.06327,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.40074,"8.2":0.01055,"9.2":0.01055,"10.1":0,"11.1-11.2":0.09491,"12.0":0.01055,"13.0":0.05273,"14.0":0.07382,"15.0":0.04218,"16.0":0.116,"17.0":3.51176,"18.0":0.31637},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06215,"4.2-4.3":0.04144,"4.4":0,"4.4.3-4.4.4":1.07733},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01758,"5.5":0},J:{"7":0,"10":0.00561},N:{"10":0,"11":0},L:{"0":56.63646},S:{"2.5":0},R:{_:"0"},M:{"0":0.26348},Q:{"10.4":0},O:{"0":0.13454},H:{"0":0.19107}}; 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 74add96cd3dd3ab..78a4605ea5f949b 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:{"48":0.00861,"50":0.01291,"52":0.01291,"53":0.00861,"56":0.00861,"68":0.01721,"78":0.03873,"88":0.02152,"89":0.00861,"91":0.01721,"92":0.0043,"94":0.01721,"98":0.01291,"99":0.05164,"100":0.02582,"101":0.12479,"102":0.93805,"103":0.09036,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 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 93 95 96 97 104 105 3.5 3.6"},D:{"38":0.0043,"47":0.02152,"49":0.05164,"50":0.0043,"56":0.02152,"59":0.0043,"62":0.01291,"63":0.01291,"65":0.01291,"66":0.02582,"67":0.00861,"68":0.02582,"69":0.0043,"70":0.00861,"71":0.00861,"72":0.01291,"73":0.00861,"74":0.03442,"75":0.00861,"76":0.06885,"77":0.00861,"78":0.01291,"79":0.20654,"80":0.05594,"81":0.01291,"83":0.05164,"84":0.02152,"85":0.03442,"86":0.07315,"87":0.05164,"88":0.03873,"89":0.03012,"90":0.09467,"91":0.04733,"92":0.03873,"93":0.01721,"94":0.02582,"95":0.04733,"96":0.09036,"97":0.06455,"98":0.07745,"99":0.08176,"100":0.142,"101":0.17212,"102":1.09296,"103":28.35677,"104":0.01291,"105":0.21515,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 57 58 60 61 64 106"},F:{"28":0.04733,"36":0.00861,"45":0.00861,"46":0.01291,"48":0.01721,"67":0.0043,"77":0.03873,"79":0.04733,"82":0.00861,"83":0.0043,"84":0.00861,"85":0.17642,"86":0.02582,"87":0.19794,"88":2.12138,"89":1.04993,_:"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 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02152,"13":0.03442,"14":0.09036,"16":0.03873,"18":0.04733,"84":0.01721,"92":0.00861,"96":0.02152,"97":0.00861,"98":0.00861,"99":0.01291,"100":0.01721,"101":0.05164,"102":0.06885,"103":2.38817,_:"15 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01291,"14":0.06885,"15":0.02152,_:"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.01721,"12.1":0.00861,"13.1":0.04733,"14.1":0.12909,"15.1":0.04303,"15.2-15.3":0.08176,"15.4":0.15491,"15.5":0.69709,"15.6":0.03442,"16.0":0.01721},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01715,"6.0-6.1":0,"7.0-7.1":0.12399,"8.1-8.4":0,"9.0-9.2":0.00132,"9.3":0.03693,"10.0-10.2":0.00264,"10.3":0.07782,"11.0-11.2":0.02902,"11.3-11.4":0.01847,"12.0-12.1":0.0211,"12.2-12.5":0.84285,"13.0-13.1":0.01187,"13.2":0.0066,"13.3":0.05804,"13.4-13.7":0.21632,"14.0-14.4":0.58037,"14.5-14.8":1.07763,"15.0-15.1":0.31261,"15.2-15.3":0.67665,"15.4":1.07763,"15.5":7.62521,"16.0":0.16356},P:{"4":0.46234,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.08406,"8.2":0.021,"9.2":0.11282,"10.1":0.05305,"11.1-11.2":0.04203,"12.0":0.0105,"13.0":0.06305,"14.0":0.08406,"15.0":0.03152,"16.0":0.11559,"17.0":1.4816},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00411,"4.2-4.3":0.03491,"4.4":0,"4.4.3-4.4.4":0.13759},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05164,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.09115},Q:{"10.4":0},O:{"0":0.06267},H:{"0":0.34519},L:{"0":41.38603}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00441,"49":0,"50":0.00441,"51":0,"52":0.00441,"53":0.00441,"54":0,"55":0,"56":0.00441,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00882,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01764,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00882,"89":0.00441,"90":0,"91":0.00882,"92":0.00441,"93":0,"94":0.00882,"95":0.00441,"96":0,"97":0,"98":0.00441,"99":0.02205,"100":0.01323,"101":0.05733,"102":0.43659,"103":0.03969,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00441,"43":0,"44":0,"45":0,"46":0,"47":0.00882,"48":0,"49":0.02205,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00882,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00441,"63":0.00441,"64":0,"65":0.00441,"66":0.01323,"67":0.00441,"68":0.01323,"69":0.00441,"70":0.00441,"71":0.00441,"72":0.00441,"73":0.00441,"74":0.01323,"75":0.00441,"76":0.03087,"77":0.00441,"78":0.00441,"79":0.09261,"80":0.02646,"81":0.03087,"83":0.02205,"84":0.00882,"85":0.01764,"86":0.03528,"87":0.02205,"88":0.01764,"89":0.01323,"90":0.0441,"91":0.02205,"92":0.01764,"93":0.00882,"94":0.01323,"95":0.02646,"96":0.03969,"97":0.02646,"98":0.03528,"99":0.03528,"100":0.06174,"101":0.07938,"102":0.4851,"103":12.54204,"104":0.00441,"105":0.09261,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02205,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00441,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00441,"46":0.00441,"47":0,"48":0.00882,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00441,"64":0,"65":0,"66":0,"67":0.00441,"68":0,"69":0,"70":0.00441,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01764,"78":0,"79":0.02205,"80":0,"81":0,"82":0.00441,"83":0.00441,"84":0.00441,"85":0.07938,"86":0.01323,"87":0.0882,"88":0.93492,"89":0.46305,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00882,"13":0.01323,"14":0.03969,"15":0.00441,"16":0.01764,"17":0,"18":0.02205,"79":0,"80":0,"81":0,"83":0,"84":0.00882,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00441,"93":0,"94":0,"95":0,"96":0.00882,"97":0.00441,"98":0.00441,"99":0.00441,"100":0.00882,"101":0.02646,"102":0.03087,"103":1.08486,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00441,"14":0.03087,"15":0.00882,_:"0","3.1":0,"3.2":0,"5.1":0.00882,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00441,"13.1":0.02205,"14.1":0.05733,"15.1":0.01764,"15.2-15.3":0.03528,"15.4":0.06615,"15.5":0.3087,"15.6":0.01323,"16.0":0.00882},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02543,"6.0-6.1":0,"7.0-7.1":0.18389,"8.1-8.4":0,"9.0-9.2":0.00196,"9.3":0.05478,"10.0-10.2":0.00391,"10.3":0.11542,"11.0-11.2":0.04304,"11.3-11.4":0.02739,"12.0-12.1":0.0313,"12.2-12.5":1.25005,"13.0-13.1":0.01761,"13.2":0.00978,"13.3":0.08608,"13.4-13.7":0.32083,"14.0-14.4":0.86075,"14.5-14.8":1.59826,"15.0-15.1":0.46363,"15.2-15.3":1.00356,"15.4":1.59826,"15.5":11.30911,"16.0":0.24258},P:{"4":0.45366,"5.0-5.4":0,"6.2-6.4":0.01031,"7.2-7.4":0.08248,"8.2":0,"9.2":0.01031,"10.1":0.01031,"11.1-11.2":0.03093,"12.0":0.01031,"13.0":0.07217,"14.0":0.08248,"15.0":0.02062,"16.0":0.11341,"17.0":1.42284,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0189,"4.2-4.3":0.16066,"4.4":0,"4.4.3-4.4.4":0.63318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02205,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.64905},S:{"2.5":0},R:{_:"0"},M:{"0":0.08944},Q:{"10.4":0},O:{"0":0.06149},H:{"0":0.3387}}; 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 1de38095100862b..07bf6aaf7e9d10c 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:{"43":0.00802,"52":0.02004,"78":0.02004,"81":0.00401,"88":0.00802,"91":0.08417,"94":0.00401,"95":0.02405,"99":0.01603,"100":0.03607,"101":0.22044,"102":2.66532,"103":0.37274,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 92 93 96 97 98 104 105 3.5 3.6"},D:{"49":0.30461,"65":0.01202,"70":0.00401,"76":0.01202,"79":0.01202,"83":0.00401,"85":0.01202,"86":0.00401,"87":0.00802,"88":0.00401,"89":0.02004,"90":0.01202,"92":0.02004,"93":0.00802,"94":0.02405,"95":0.01202,"96":0.02806,"97":0.01603,"98":0.01202,"99":0.00401,"100":0.0481,"101":0.1483,"102":0.57314,"103":20.76946,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 77 78 80 81 84 91 104 105 106"},F:{"28":0.00401,"36":0.01202,"40":0.0521,"83":0.02405,"86":0.00802,"87":0.00802,"88":0.501,"89":0.26052,_:"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 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.12826,"15":0.00401,"17":0.00802,"18":0.00401,"84":0.01202,"91":0.00802,"92":0.00802,"95":0.00802,"98":0.03206,"99":0.00802,"100":0.01202,"101":0.09218,"102":0.12826,"103":7.38674,_:"13 14 16 79 80 81 83 85 86 87 88 89 90 93 94 96 97"},E:{"4":0,"13":0.06413,"14":0.2485,"15":0.00401,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00802,"11.1":0.09619,"12.1":0.02806,"13.1":0.12024,"14.1":0.28457,"15.1":0.0521,"15.2-15.3":0.05611,"15.4":0.25651,"15.5":1.33066,"15.6":0.03607,"16.0":0.02004},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00596,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.29086,"10.0-10.2":0.00119,"10.3":0.01192,"11.0-11.2":0.00715,"11.3-11.4":0.00119,"12.0-12.1":0,"12.2-12.5":0.18477,"13.0-13.1":0.01311,"13.2":0.00596,"13.3":0.07033,"13.4-13.7":0.1359,"14.0-14.4":0.30279,"14.5-14.8":1.05617,"15.0-15.1":0.23365,"15.2-15.3":0.47802,"15.4":1.74042,"15.5":7.10711,"16.0":0.08583},P:{"4":0.29758,"5.0-5.4":0.0105,"6.2-6.4":0.04083,"7.2-7.4":0.12314,"8.2":0.021,"9.2":0.0105,"10.1":0.05305,"11.1-11.2":0.17444,"12.0":0.01026,"13.0":0.11287,"14.0":0.19496,"15.0":0.21549,"16.0":0.20523,"17.0":3.56067},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.08988},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04409,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.26964},Q:{"10.4":0},O:{"0":0.03595},H:{"0":0.13048},L:{"0":45.26277}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00409,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00818,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00409,"78":0.00818,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00409,"89":0,"90":0,"91":0.03272,"92":0,"93":0,"94":0.00409,"95":0.00818,"96":0,"97":0.00409,"98":0,"99":0.00818,"100":0.01636,"101":0.09816,"102":1.16565,"103":0.15542,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.1227,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00409,"66":0,"67":0,"68":0,"69":0,"70":0.00818,"71":0,"72":0,"73":0,"74":0,"75":0.00818,"76":0.00409,"77":0,"78":0,"79":0.01636,"80":0,"81":0.00818,"83":0.00409,"84":0,"85":0.00409,"86":0,"87":0.00409,"88":0.00409,"89":0.00818,"90":0.00409,"91":0,"92":0.01636,"93":0.00409,"94":0.00818,"95":0.00409,"96":0.01227,"97":0.00818,"98":0.00409,"99":0.00409,"100":0.02045,"101":0.06135,"102":0.23722,"103":8.67489,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00409,"37":0,"38":0,"39":0,"40":0.02045,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00818,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00818,"84":0,"85":0,"86":0.00409,"87":0.00409,"88":0.2045,"89":0.10634,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.05317,"13":0,"14":0,"15":0,"16":0,"17":0.00409,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00409,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00409,"92":0.00409,"93":0,"94":0,"95":0.01227,"96":0,"97":0,"98":0.01227,"99":0.00409,"100":0.00409,"101":0.03681,"102":0.05726,"103":3.04296,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02454,"14":0.10225,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00409,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0409,"12.1":0.01227,"13.1":0.04908,"14.1":0.11861,"15.1":0.02045,"15.2-15.3":0.02454,"15.4":0.10634,"15.5":0.54397,"15.6":0.01636,"16.0":0.00818},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00873,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.4258,"10.0-10.2":0.00175,"10.3":0.01745,"11.0-11.2":0.01047,"11.3-11.4":0.00175,"12.0-12.1":0,"12.2-12.5":0.27049,"13.0-13.1":0.0192,"13.2":0.00873,"13.3":0.10296,"13.4-13.7":0.19894,"14.0-14.4":0.44325,"14.5-14.8":1.54614,"15.0-15.1":0.34204,"15.2-15.3":0.69978,"15.4":2.54782,"15.5":10.40417,"16.0":0.12565},P:{"4":0.29785,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12325,"8.2":0,"9.2":0,"10.1":0.01027,"11.1-11.2":0.16433,"12.0":0.01027,"13.0":0.11298,"14.0":0.19514,"15.0":0.21568,"16.0":0.20541,"17.0":3.49202,"18.0":0.03081},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.30951},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01636,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.29395},S:{"2.5":0},R:{_:"0"},M:{"0":0.26595},Q:{"10.4":0},O:{"0":0.03546},H:{"0":0.12869}}; 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 86070ef681490e6..75807bf5a58d7f3 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.0244,"78":0.03415,"91":0.00976,"99":0.01952,"101":0.16101,"102":1.89305,"103":0.15613,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 100 104 105 3.5 3.6"},D:{"65":0.01952,"76":0.07806,"77":0.04391,"79":0.00976,"86":0.14149,"87":0.04879,"90":0.0244,"92":0.00976,"93":0.01952,"96":0.02927,"97":0.00976,"98":0.08294,"99":0.21956,"100":0.01952,"101":0.17077,"102":2.05406,"103":17.70589,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 78 80 81 83 84 85 88 89 91 94 95 104 105 106"},F:{"46":0.00488,"86":0.00976,"88":0.26347,"89":0.03903,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01952,"17":0.00488,"95":0.00976,"96":0.02927,"98":0.00488,"101":0.10734,"102":0.23907,"103":8.43579,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 97 99 100"},E:{"4":0,"13":0.01952,"14":0.44399,"15":0.07319,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01952,"11.1":0.08294,"12.1":0.04879,"13.1":0.91237,"14.1":1.42467,"15.1":0.20004,"15.2-15.3":0.14637,"15.4":0.86846,"15.5":10.02147,"15.6":0.3708,"16.0":0.00976},G:{"8":0.04663,"3.2":0,"4.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.31977,"10.0-10.2":0.01332,"10.3":0.67286,"11.0-11.2":0.09993,"11.3-11.4":0.00999,"12.0-12.1":0.00999,"12.2-12.5":1.30241,"13.0-13.1":0.00999,"13.2":0.08661,"13.3":0.01332,"13.4-13.7":0.36974,"14.0-14.4":0.82941,"14.5-14.8":1.74543,"15.0-15.1":0.46634,"15.2-15.3":0.59957,"15.4":1.6888,"15.5":24.42266,"16.0":0.02665},P:{"4":0.02198,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.41828,"8.2":0.021,"9.2":0.05101,"10.1":0.0102,"11.1-11.2":0.01099,"12.0":0.0204,"13.0":0.07694,"14.0":0.02198,"15.0":0.01099,"16.0":0.06595,"17.0":3.69335},I:{"0":0,"3":0,"4":0.0023,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00029,"4.4":0,"4.4.3-4.4.4":0.01278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.78064,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.30726},Q:{"10.4":0},O:{"0":0},H:{"0":0.11151},L:{"0":14.08879}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01062,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01593,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00531,"92":0.01593,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01062,"100":0,"101":0.09027,"102":1.062,"103":0.13806,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01062,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.04248,"77":0.02655,"78":0,"79":0.00531,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.07434,"87":0.02655,"88":0,"89":0,"90":0.01062,"91":0,"92":0.00531,"93":0.01062,"94":0,"95":0.00531,"96":0.01593,"97":0.00531,"98":0.04248,"99":0.11682,"100":0.01062,"101":0.09027,"102":1.09386,"103":9.42525,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00531,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00531,"87":0,"88":0.13806,"89":0.02124,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01062,"16":0,"17":0.00531,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00531,"96":0.01593,"97":0,"98":0.00531,"99":0,"100":0,"101":0.05841,"102":0.13275,"103":4.68873,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01062,"14":0.23364,"15":0.03717,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01062,"11.1":0.04779,"12.1":0.02655,"13.1":0.48321,"14.1":0.75402,"15.1":0.1062,"15.2-15.3":0.07434,"15.4":0.46197,"15.5":5.32062,"15.6":0.19647,"16.0":0.00531},G:{"8":0.06931,"3.2":0,"4.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.47525,"10.0-10.2":0.0198,"10.3":1,"11.0-11.2":0.14851,"11.3-11.4":0.01485,"12.0-12.1":0.01485,"12.2-12.5":1.93564,"13.0-13.1":0.01485,"13.2":0.12871,"13.3":0.0198,"13.4-13.7":0.5495,"14.0-14.4":1.23267,"14.5-14.8":2.59406,"15.0-15.1":0.69307,"15.2-15.3":0.89109,"15.4":2.5099,"15.5":36.29697,"16.0":0.0396},P:{"4":0.03299,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02199,"12.0":0,"13.0":0.06598,"14.0":0.011,"15.0":0.011,"16.0":0.04398,"17.0":3.38684,"18.0":0},I:{"0":0,"3":0,"4":0.05927,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00741,"4.4":0,"4.4.3-4.4.4":0.32971},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.41418,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":18.64403},S:{"2.5":0},R:{_:"0"},M:{"0":0.2814},Q:{"10.4":0},O:{"0":0},H:{"0":0.10212}}; 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 574eb7cb5214135..8345b1dc81e5ec6 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:{"23":0.00522,"44":0.00261,"46":0.00261,"47":0.00782,"48":0.00522,"52":0.00782,"56":0.00522,"66":0.00522,"68":0.01043,"72":0.02347,"77":0.00261,"78":0.01043,"84":0.00261,"87":0.01043,"88":0.01043,"89":0.00522,"90":0.00261,"91":0.02086,"93":0.00522,"94":0.01043,"95":0.00522,"96":0.00782,"97":0.02086,"98":0.00522,"99":0.02347,"100":0.02086,"101":0.13822,"102":1.53611,"103":0.20603,"104":0.01043,_:"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 34 35 36 37 38 39 40 41 42 43 45 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 92 105 3.5 3.6"},D:{"33":0.00261,"38":0.01043,"42":0.01565,"49":0.01043,"50":0.00782,"55":0.01565,"56":0.01304,"57":0.00522,"60":0.00261,"63":0.01043,"64":0.00261,"65":0.00522,"67":0.01304,"68":0.01304,"69":0.01304,"70":0.00782,"71":0.00522,"72":0.00522,"73":0.00522,"74":0.0339,"75":0.01565,"76":0.01826,"77":0.0339,"78":0.01304,"79":0.05216,"80":0.02869,"81":0.0313,"83":0.01826,"84":0.01565,"85":0.02347,"86":0.04173,"87":0.05998,"88":0.02347,"89":0.0339,"90":0.02347,"91":0.03912,"92":0.02869,"93":0.02608,"94":0.0313,"95":0.03651,"96":0.05477,"97":0.0339,"98":0.05998,"99":0.08085,"100":0.07563,"101":0.11214,"102":0.83195,"103":10.71106,"104":0.02869,"105":0.02347,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 43 44 45 46 47 48 51 52 53 54 58 59 61 62 66 106"},F:{"42":0.00522,"53":0.00522,"70":0.00261,"71":0.00261,"79":0.04694,"81":0.00261,"82":0.00782,"83":0.00782,"84":0.01304,"85":0.03912,"86":0.02086,"87":0.05216,"88":0.55811,"89":0.3573,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04434,"13":0.01043,"14":0.01304,"15":0.01826,"16":0.02347,"17":0.02347,"18":0.10954,"84":0.0339,"85":0.01565,"89":0.04955,"90":0.03651,"91":0.00261,"92":0.05998,"94":0.00261,"95":0.00522,"96":0.01826,"97":0.00782,"98":0.00782,"99":0.01826,"100":0.02347,"101":0.05216,"102":0.13301,"103":2.08901,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"13":0.01304,"14":0.04173,"15":0.01043,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00261,"9.1":0.00522,"10.1":0.00522,"11.1":0.01304,"12.1":0.01043,"13.1":0.326,"14.1":0.08085,"15.1":0.02347,"15.2-15.3":0.04694,"15.4":0.07042,"15.5":0.31035,"15.6":0.01304,"16.0":0.00782},G:{"8":0.00279,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01533,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02788,"10.0-10.2":0.00558,"10.3":0.10734,"11.0-11.2":0.11291,"11.3-11.4":0.01952,"12.0-12.1":0.046,"12.2-12.5":1.37029,"13.0-13.1":0.04879,"13.2":0.03067,"13.3":0.09479,"13.4-13.7":0.20352,"14.0-14.4":1.55012,"14.5-14.8":1.59751,"15.0-15.1":1.41072,"15.2-15.3":1.14586,"15.4":1.13331,"15.5":4.63223,"16.0":0.14776},P:{"4":0.0954,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.106,"8.2":0.021,"9.2":0.0424,"10.1":0.05305,"11.1-11.2":0.0636,"12.0":0.02084,"13.0":0.0424,"14.0":0.0848,"15.0":0.053,"16.0":0.1908,"17.0":0.93282},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00256,"4.2-4.3":0.01066,"4.4":0,"4.4.3-4.4.4":0.0533},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00261,"11":0.0652,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.02217},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.25869},Q:{"10.4":0},O:{"0":1.71471},H:{"0":12.04939},L:{"0":49.38711}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00264,"48":0,"49":0,"50":0,"51":0,"52":0.00264,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00264,"67":0,"68":0.00264,"69":0,"70":0,"71":0,"72":0.00528,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00264,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00264,"88":0.00264,"89":0.00264,"90":0.00264,"91":0.00528,"92":0,"93":0,"94":0.00528,"95":0.00264,"96":0.00264,"97":0.01056,"98":0.00264,"99":0.00792,"100":0.01056,"101":0.04486,"102":0.4328,"103":0.05542,"104":0.00264,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00264,"39":0,"40":0.00264,"41":0,"42":0.00528,"43":0,"44":0,"45":0,"46":0.00264,"47":0,"48":0,"49":0.00264,"50":0.00264,"51":0,"52":0,"53":0,"54":0,"55":0.00528,"56":0.00264,"57":0.00264,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00264,"64":0.00528,"65":0,"66":0,"67":0.00264,"68":0.00264,"69":0.00264,"70":0.00264,"71":0,"72":0.00264,"73":0.00264,"74":0.00792,"75":0.00528,"76":0.00528,"77":0.00792,"78":0.00264,"79":0.0132,"80":0.00792,"81":0.02375,"83":0.00528,"84":0.00528,"85":0.00528,"86":0.01056,"87":0.01583,"88":0.00528,"89":0.00792,"90":0.00792,"91":0.01056,"92":0.00792,"93":0.00792,"94":0.00792,"95":0.01056,"96":0.01583,"97":0.01056,"98":0.01583,"99":0.02111,"100":0.02111,"101":0.02903,"102":0.22168,"103":2.83165,"104":0.00792,"105":0.00528,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00528,"25":0,"26":0.00264,"27":0.0132,"28":0.00264,"29":0,"30":0.00792,"31":0.00264,"32":0.00528,"33":0.00264,"34":0,"35":0,"36":0,"37":0,"38":0.00264,"39":0,"40":0,"41":0,"42":0.00528,"43":0,"44":0,"45":0.00264,"46":0.00528,"47":0.00528,"48":0,"49":0,"50":0.01056,"51":0.02375,"52":0,"53":0.00264,"54":0.02375,"55":0.0132,"56":0.00528,"57":0.0132,"58":0.04486,"60":0.55419,"62":0.00792,"63":0.95796,"64":0.03959,"65":0,"66":0,"67":0.00264,"68":0,"69":0.00264,"70":0.00528,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0132,"80":0,"81":0,"82":0.00264,"83":0.00264,"84":0.00264,"85":0.01056,"86":0.00528,"87":0.0132,"88":0.14778,"89":0.095,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.02111,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00792},B:{"12":0.01056,"13":0.00264,"14":0.00528,"15":0.00792,"16":0.00528,"17":0.00528,"18":0.02903,"79":0,"80":0,"81":0,"83":0,"84":0.00792,"85":0.00264,"86":0,"87":0,"88":0,"89":0.0132,"90":0.01056,"91":0,"92":0.01583,"93":0,"94":0,"95":0.00264,"96":0.00528,"97":0.00264,"98":0.00264,"99":0.00528,"100":0.00792,"101":0.0132,"102":0.04222,"103":0.55947,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00264,"14":0.01056,"15":0.00264,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00264,"10.1":0.00264,"11.1":0.00264,"12.1":0.00264,"13.1":0.08709,"14.1":0.02111,"15.1":0.00528,"15.2-15.3":0.0132,"15.4":0.01847,"15.5":0.08181,"15.6":0.00264,"16.0":0.00264},G:{"8":0.00366,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02015,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03664,"10.0-10.2":0.00733,"10.3":0.14105,"11.0-11.2":0.14838,"11.3-11.4":0.02565,"12.0-12.1":0.06045,"12.2-12.5":1.80069,"13.0-13.1":0.06411,"13.2":0.0403,"13.3":0.12456,"13.4-13.7":0.26745,"14.0-14.4":2.037,"14.5-14.8":2.09928,"15.0-15.1":1.85382,"15.2-15.3":1.50577,"15.4":1.48928,"15.5":6.08718,"16.0":0.19417},P:{"4":0.11172,"5.0-5.4":0.02031,"6.2-6.4":0,"7.2-7.4":0.10156,"8.2":0,"9.2":0.04063,"10.1":0,"11.1-11.2":0.07109,"12.0":0.01016,"13.0":0.05078,"14.0":0.08125,"15.0":0.05078,"16.0":0.18281,"17.0":0.8836,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00488,"4.2-4.3":0.02034,"4.4":0,"4.4.3-4.4.4":0.10172},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01847,"5.5":0},J:{"7":0,"10":0.02208},N:{"10":0,"11":0},L:{"0":55.72472},S:{"2.5":0.00736},R:{_:"0"},M:{"0":0.25764},Q:{"10.4":0.00736},O:{"0":1.70775},H:{"0":12.00048}}; 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 1b41c2415f06a50..543a1b10033d44d 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.01022,"78":0.02556,"83":0.02556,"91":0.01022,"99":0.00511,"101":0.07667,"102":1.26242,"103":0.07155,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 95 96 97 98 100 104 105 3.5 3.6"},D:{"49":0.01022,"60":0.046,"77":0.00511,"79":0.01022,"80":0.03067,"81":0.01022,"84":0.01022,"85":0.01022,"90":0.046,"96":0.02044,"97":0.05622,"98":0.04089,"99":0.01022,"100":0.24022,"101":0.6951,"102":1.68152,"103":26.1581,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 78 83 86 87 88 89 91 92 93 94 95 104 105 106"},F:{"32":0.03067,"36":0.06644,"86":0.01022,"87":0.05111,"88":0.65421,"89":0.12266,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01022,"92":0.01533,"100":0.00511,"101":0.21466,"102":0.138,"103":7.43651,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99"},E:{"4":0,"11":0.01533,"13":0.08689,"14":0.27088,"15":0.05622,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.02556,"12.1":0.03578,"13.1":0.28622,"14.1":0.59288,"15.1":0.21977,"15.2-15.3":0.36799,"15.4":0.49066,"15.5":6.58808,"15.6":0.09711},G:{"8":0,"3.2":0,"4.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.00962,"9.0-9.2":0,"9.3":0.05291,"10.0-10.2":0,"10.3":0.04329,"11.0-11.2":0.01203,"11.3-11.4":0.01203,"12.0-12.1":0.00481,"12.2-12.5":0.41607,"13.0-13.1":0.00481,"13.2":0.00481,"13.3":0.02405,"13.4-13.7":0.05532,"14.0-14.4":0.27417,"14.5-14.8":1.71237,"15.0-15.1":0.41126,"15.2-15.3":0.86821,"15.4":2.13565,"15.5":17.59024,"16.0":0.03608},P:{"4":0.04202,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.106,"8.2":0.021,"9.2":0.0424,"10.1":0.05305,"11.1-11.2":0.0636,"12.0":0.02084,"13.0":0.03151,"14.0":0.35717,"15.0":0.053,"16.0":0.04202,"17.0":4.31752},I:{"0":0,"3":0,"4":0.00156,"2.1":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.03266},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06644,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.26395},Q:{"10.4":0},O:{"0":0.10754},H:{"0":0.99032},L:{"0":20.71833}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00529,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01059,"79":0,"80":0,"81":0,"82":0,"83":0.01059,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00529,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00529,"100":0,"101":0.04234,"102":0.79395,"103":0.04764,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00529,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02647,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00529,"78":0,"79":0.00529,"80":0.01588,"81":0.00529,"83":0,"84":0.00529,"85":0.00529,"86":0,"87":0,"88":0,"89":0,"90":0.02647,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01059,"97":0.03176,"98":0.02117,"99":0.00529,"100":0.12703,"101":0.37051,"102":0.89981,"103":13.9153,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.01588,"33":0,"34":0,"35":0,"36":0.03705,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.47108,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00529,"87":0.02647,"88":0.34934,"89":0.06352,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00529,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01059,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00529,"101":0.11645,"102":0.0794,"103":3.96975,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01059,"12":0,"13":0.04764,"14":0.14291,"15":0.03176,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01588,"12.1":0.01588,"13.1":0.1535,"14.1":0.31229,"15.1":0.11645,"15.2-15.3":0.19584,"15.4":0.25936,"15.5":3.48809,"15.6":0.05293,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01481,"9.0-9.2":0,"9.3":0.08143,"10.0-10.2":0,"10.3":0.06663,"11.0-11.2":0.01851,"11.3-11.4":0.01851,"12.0-12.1":0.0074,"12.2-12.5":0.64035,"13.0-13.1":0.0074,"13.2":0.0074,"13.3":0.03701,"13.4-13.7":0.08513,"14.0-14.4":0.42197,"14.5-14.8":2.63544,"15.0-15.1":0.63295,"15.2-15.3":1.33623,"15.4":3.2869,"15.5":27.07247,"16.0":0.05552},P:{"4":0.0622,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01037,"12.0":0,"13.0":0.0311,"14.0":0.34208,"15.0":0.01037,"16.0":0.04146,"17.0":4.10493,"18.0":0.01037},I:{"0":0,"3":0,"4":0.01088,"2.1":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.2285},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03705,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":27.89103},S:{"2.5":0},R:{_:"0"},M:{"0":0.25418},Q:{"10.4":0},O:{"0":0.10355},H:{"0":0.95364}}; 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 d4e15cfd81c19bd..2e74b2e09212466 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:{"48":0.02193,"78":0.01316,"81":0.03508,"85":0.00439,"88":0.00877,"91":0.04385,"97":0.00439,"98":0.00439,"99":0.01316,"100":0.04385,"101":0.32011,"102":1.88994,"103":0.28064,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 82 83 84 86 87 89 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"41":0.02193,"49":0.01316,"65":0.12717,"66":0.00439,"75":0.00877,"78":0.00439,"79":0.01754,"80":0.01316,"81":0.00877,"83":0.02631,"85":0.00877,"86":0.03508,"87":0.13594,"88":0.06578,"89":0.01316,"90":0.03947,"91":0.00877,"93":0.02193,"94":0.04385,"97":0.00877,"98":0.06578,"99":0.13155,"100":0.14909,"101":1.64438,"102":1.72331,"103":21.97762,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 76 77 84 92 95 96 104 105 106"},F:{"32":0.01316,"36":0.02193,"82":0.01754,"83":0.00439,"84":0.00439,"87":0.00877,"88":0.44727,"89":0.18417,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00439,"15":0.00877,"16":0.01754,"17":0.09647,"18":0.03508,"84":0.01316,"87":0.00439,"92":0.02631,"98":0.00439,"99":0.02193,"101":0.03947,"102":0.09209,"103":4.71388,_:"12 14 79 80 81 83 85 86 88 89 90 91 93 94 95 96 97 100"},E:{"4":0,"12":0.02631,"13":0.0877,"14":0.10963,"15":0.13155,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01754,"11.1":0.00877,"12.1":0.06578,"13.1":0.21048,"14.1":0.82877,"15.1":0.46043,"15.2-15.3":0.05701,"15.4":0.81123,"15.5":4.04736,"15.6":0.0307,"16.0":0.0877},G:{"8":0,"3.2":0,"4.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.00257,"9.3":0.01544,"10.0-10.2":0,"10.3":0.08233,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.04117,"12.2-12.5":0.44512,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04117,"14.0-14.4":0.19812,"14.5-14.8":1.0652,"15.0-15.1":0.27016,"15.2-15.3":0.74101,"15.4":0.60207,"15.5":21.53556,"16.0":0.24443},P:{"4":0.08404,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.05252,"8.2":0.021,"9.2":0.0424,"10.1":0.05305,"11.1-11.2":0.05228,"12.0":0.04202,"13.0":0.03151,"14.0":0.06273,"15.0":0.02091,"16.0":0.14706,"17.0":3.70811},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.03931},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28941,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.41551},Q:{"10.4":0},O:{"0":1.22969},H:{"0":3.67862},L:{"0":22.19272}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00922,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00461,"79":0,"80":0,"81":0.01843,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00461,"89":0,"90":0,"91":0.01843,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00922,"100":0.01843,"101":0.16128,"102":1.00915,"103":0.14746,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00922,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00461,"50":0.00461,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0599,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00461,"76":0,"77":0,"78":0,"79":0.00922,"80":0.00461,"81":0.00461,"83":0.00922,"84":0,"85":0.00461,"86":0.01843,"87":0.06451,"88":0.02765,"89":0.00461,"90":0.01843,"91":0.00461,"92":0,"93":0.00922,"94":0.01843,"95":0,"96":0,"97":0.00461,"98":0.02765,"99":0.0599,"100":0.06912,"101":0.75571,"102":0.80179,"103":10.26662,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00461,"33":0,"34":0,"35":0,"36":0.00922,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.04608,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.05069,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00922,"83":0,"84":0,"85":0,"86":0,"87":0.00461,"88":0.20736,"89":0.08294,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00922,"16":0.00922,"17":0.04608,"18":0.01843,"79":0,"80":0,"81":0,"83":0,"84":0.00461,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00922,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01382,"100":0,"101":0.01843,"102":0.04147,"103":2.17958,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00922,"13":0.04147,"14":0.05069,"15":0.0599,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00922,"10.1":0,"11.1":0.00461,"12.1":0.02765,"13.1":0.09677,"14.1":0.38246,"15.1":0.21197,"15.2-15.3":0.02765,"15.4":0.37325,"15.5":1.86624,"15.6":0.01382,"16.0":0.04147},G:{"8":0,"3.2":0,"4.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.00387,"9.3":0.02321,"10.0-10.2":0,"10.3":0.12381,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.0619,"12.2-12.5":0.66935,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.0619,"14.0-14.4":0.29792,"14.5-14.8":1.60179,"15.0-15.1":0.40625,"15.2-15.3":1.11429,"15.4":0.90536,"15.5":32.38401,"16.0":0.36756},P:{"4":0.07426,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05304,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.04243,"13.0":0.03182,"14.0":0,"15.0":0.01061,"16.0":0.13791,"17.0":3.55374,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08843},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.13363,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":28.63302},S:{"2.5":0},R:{_:"0"},M:{"0":0.39901},Q:{"10.4":0},O:{"0":1.18085},H:{"0":3.53252}}; 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 c1f3b9471891369..5347819da7bedd7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js @@ -1 +1 @@ -module.exports={C:{"34":0.04314,"35":0.0027,"43":0.01618,"50":0.0027,"52":0.01348,"62":0.00539,"72":0.01078,"78":0.05931,"85":0.0027,"91":0.00809,"92":0.0027,"95":0.00539,"97":0.00809,"98":0.10784,"99":0.01078,"100":0.00539,"101":0.05392,"102":2.0894,"103":0.21029,"104":0.0027,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 41 42 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 93 94 96 105 3.5 3.6"},D:{"34":0.00809,"40":0.01078,"43":0.00539,"44":0.0027,"46":0.00539,"49":0.05931,"53":0.00539,"60":0.05662,"63":0.0027,"64":0.00539,"65":0.0027,"66":0.0027,"68":0.0027,"69":0.00539,"70":0.0027,"73":0.0027,"74":0.00539,"75":0.01348,"76":0.01348,"77":0.0027,"78":0.00809,"79":0.01348,"80":0.00539,"81":0.07818,"84":0.0027,"85":0.01618,"86":0.00539,"87":0.11054,"88":0.0027,"89":0.00809,"90":0.01618,"91":0.01618,"92":0.04044,"93":1.47471,"94":0.00539,"95":0.0027,"96":0.02157,"97":0.01348,"98":0.00809,"99":0.02157,"100":0.04314,"101":0.08897,"102":1.91955,"103":8.17427,"104":0.02966,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 45 47 48 50 51 52 54 55 56 57 58 59 61 62 67 71 72 83 105 106"},F:{"21":0.00539,"79":0.00809,"84":0.00539,"85":0.00539,"86":0.24803,"87":0.01348,"88":0.21029,"89":0.2022,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01078,"14":0.0027,"15":0.01618,"16":0.00809,"17":0.00539,"18":3.65038,"86":0.0027,"89":0.02696,"92":0.02696,"94":0.00539,"98":0.0027,"99":0.01078,"100":0.21838,"101":0.02696,"102":0.04853,"103":1.7524,_:"13 79 80 81 83 84 85 87 88 90 91 93 95 96 97"},E:{"4":0,"11":0.00809,"13":0.00539,"14":0.02157,"15":0.00539,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.0027,"12.1":0.01078,"13.1":0.03505,"14.1":0.09436,"15.1":0.01618,"15.2-15.3":0.00539,"15.4":0.09975,"15.5":0.51763,"15.6":0.00809},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01247,"6.0-6.1":0,"7.0-7.1":0.00779,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05612,"10.0-10.2":0,"10.3":1.01325,"11.0-11.2":0.04832,"11.3-11.4":0.06859,"12.0-12.1":0.06235,"12.2-12.5":2.94466,"13.0-13.1":0.06703,"13.2":0.02027,"13.3":0.12159,"13.4-13.7":0.31021,"14.0-14.4":1.10678,"14.5-14.8":1.70382,"15.0-15.1":0.62822,"15.2-15.3":0.69369,"15.4":1.53235,"15.5":4.84178,"16.0":0.13562},P:{"4":0.841,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.38973,"8.2":0.021,"9.2":0.11282,"10.1":0.05305,"11.1-11.2":0.06154,"12.0":0.0105,"13.0":0.03077,"14.0":0.09231,"15.0":0.03077,"16.0":0.11282,"17.0":1.18971},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00101,"4.2-4.3":0.00379,"4.4":0,"4.4.3-4.4.4":0.04633},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02157,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.08034},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.06574},Q:{"10.4":0},O:{"0":0.83996},H:{"0":2.03991},L:{"0":55.54925}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01096,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00548,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00274,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00274,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01643,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00274,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00274,"98":0.03013,"99":0.00274,"100":0.00822,"101":0.01643,"102":0.57519,"103":0.05752,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00274,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00822,"41":0,"42":0,"43":0.00274,"44":0,"45":0,"46":0.00274,"47":0,"48":0,"49":0.01643,"50":0,"51":0,"52":0,"53":0.00274,"54":0,"55":0,"56":0,"57":0,"58":0.00274,"59":0,"60":0.01643,"61":0,"62":0,"63":0,"64":0.00548,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00274,"71":0,"72":0,"73":0,"74":0,"75":0.00274,"76":0.00274,"77":0,"78":0.00274,"79":0.00274,"80":0.00274,"81":0.03287,"83":0,"84":0,"85":0.00548,"86":0.00274,"87":0.03013,"88":0,"89":0.00274,"90":0.00548,"91":0.00548,"92":0.01096,"93":0.40263,"94":0.00274,"95":0.00274,"96":0.00548,"97":0.00274,"98":0.00274,"99":0.00548,"100":0.01096,"101":0.02465,"102":0.53137,"103":2.2542,"104":0.00822,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00274,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00274,"29":0,"30":0.00274,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00274,"56":0,"57":0.00274,"58":0.00274,"60":0.03561,"62":0,"63":0.10682,"64":0.00548,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00274,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00274,"86":0.06848,"87":0.00274,"88":0.05752,"89":0.05478,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00548},B:{"12":0.00274,"13":0,"14":0,"15":0.04109,"16":0.00274,"17":0.00274,"18":0.99974,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00822,"90":0,"91":0,"92":0.00822,"93":0,"94":0.00274,"95":0,"96":0,"97":0,"98":0,"99":0.00274,"100":0.06026,"101":0.00822,"102":0.01643,"103":0.4848,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00274,"12":0,"13":0.00274,"14":0.00548,"15":0.00274,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00274,"13.1":0.00822,"14.1":0.02465,"15.1":0.00548,"15.2-15.3":0.00274,"15.4":0.02739,"15.5":0.14243,"15.6":0.00274,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01624,"6.0-6.1":0,"7.0-7.1":0.01015,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07306,"10.0-10.2":0,"10.3":1.3192,"11.0-11.2":0.06292,"11.3-11.4":0.0893,"12.0-12.1":0.08118,"12.2-12.5":3.83381,"13.0-13.1":0.08727,"13.2":0.02638,"13.3":0.1583,"13.4-13.7":0.40388,"14.0-14.4":1.44098,"14.5-14.8":2.21829,"15.0-15.1":0.81791,"15.2-15.3":0.90315,"15.4":1.99504,"15.5":6.30377,"16.0":0.17657},P:{"4":0.81851,"5.0-5.4":0.06139,"6.2-6.4":0.03069,"7.2-7.4":0.37856,"8.2":0,"9.2":0.11255,"10.1":0,"11.1-11.2":0.07162,"12.0":0,"13.0":0.04093,"14.0":0.09208,"15.0":0.03069,"16.0":0.11255,"17.0":1.16638,"18.0":0.01023},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00333,"4.2-4.3":0.01249,"4.4":0,"4.4.3-4.4.4":0.15278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00548,"5.5":0},J:{"7":0,"10":0.07987},N:{"10":0,"11":0},L:{"0":65.47822},S:{"2.5":0},R:{_:"0"},M:{"0":0.06535},Q:{"10.4":0},O:{"0":0.83502},H:{"0":2.0279}}; 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 b15951778af4aad..7a2a5ee8361ce90 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:{"36":0.00099,"37":0.00397,"41":0.00099,"45":0.00595,"48":0.00198,"50":0.00298,"54":0.00099,"56":0.01587,"57":0.00198,"60":0.00198,"61":0.00099,"62":0.00298,"68":0.00198,"72":0.00496,"78":0.00298,"86":0.00198,"90":0.00099,"91":0.00496,"95":0.00794,"96":0.00099,"98":0.00397,"99":0.00397,"100":0.00893,"101":0.05258,"102":0.49997,"103":0.02976,"104":0.00496,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 42 43 44 46 47 49 51 52 53 55 58 59 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 87 88 89 92 93 94 97 105 3.5 3.6"},D:{"19":0.00397,"25":0.00198,"28":0.00595,"33":0.00496,"37":0.00198,"38":0.00198,"40":0.00298,"43":0.00496,"45":0.00099,"46":0.00298,"49":0.00099,"50":0.00298,"54":0.00298,"55":0.00298,"56":0.00198,"57":0.00298,"60":0.00694,"62":0.00099,"64":0.01587,"66":0.00099,"67":0.00496,"69":0.00694,"70":0.00198,"71":0.00198,"72":0.00595,"74":0.00397,"76":0.02778,"77":0.00099,"78":0.00298,"79":0.00794,"80":0.00099,"81":0.02182,"83":0.00198,"84":0.00198,"86":0.00694,"87":0.02282,"88":0.00198,"89":0.00397,"90":0.00298,"91":0.00298,"92":0.00496,"93":0.02182,"94":0.00397,"95":0.00298,"96":0.02778,"97":0.01587,"98":0.0119,"99":0.03571,"100":0.05059,"101":0.01686,"102":0.17162,"103":3.10099,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 26 27 29 30 31 32 34 35 36 39 41 42 44 47 48 51 52 53 58 59 61 63 65 68 73 75 85 104 105 106"},F:{"36":0.00198,"57":0.00198,"58":0.00198,"76":0.00198,"79":0.01984,"81":0.00198,"83":0.02976,"84":0.00099,"85":0.00298,"87":0.00496,"88":0.11011,"89":0.04464,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 82 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03472,"13":0.00496,"15":0.00397,"16":0.00298,"17":0.00694,"18":0.02678,"84":0.00595,"85":0.01091,"87":0.00298,"89":0.00397,"90":0.00496,"92":0.0129,"93":0.00099,"94":0.00099,"96":0.00298,"97":0.00198,"98":0.00198,"99":0.00198,"100":0.01786,"101":0.0248,"102":0.01686,"103":0.72714,_:"14 79 80 81 83 86 88 91 95"},E:{"4":0,"11":0.00298,"12":0.00298,"13":0.00496,"14":0.0377,"15":0.00198,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 10.1 15.6","9.1":0.00198,"11.1":0.00298,"12.1":0.00397,"13.1":0.00298,"14.1":0.0129,"15.1":0.00496,"15.2-15.3":0.00099,"15.4":0.04762,"15.5":0.04762,"16.0":0.00397},G:{"8":0.00132,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03427,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.71838,"10.0-10.2":0.03559,"10.3":0.07513,"11.0-11.2":0.40862,"11.3-11.4":0.0435,"12.0-12.1":0.65775,"12.2-12.5":4.30766,"13.0-13.1":0.18322,"13.2":0.02373,"13.3":0.35326,"13.4-13.7":0.57866,"14.0-14.4":1.30627,"14.5-14.8":0.82647,"15.0-15.1":0.81592,"15.2-15.3":0.6182,"15.4":0.58525,"15.5":1.49608,"16.0":0.05536},P:{"4":0.24395,"5.0-5.4":0.06099,"6.2-6.4":0.14231,"7.2-7.4":0.53873,"8.2":0.021,"9.2":0.14231,"10.1":0.0102,"11.1-11.2":0.10165,"12.0":0.04066,"13.0":0.06099,"14.0":0.28461,"15.0":0.04066,"16.0":1.35191,"17.0":0.71153},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.00073,"4.4":0,"4.4.3-4.4.4":0.02615},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02282,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.07206},R:{_:"0"},M:{"0":0.04504},Q:{"10.4":0.01802},O:{"0":0.36933},H:{"0":10.59202},L:{"0":65.60723}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.001,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00201,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.001,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.001,"92":0,"93":0,"94":0,"95":0.001,"96":0,"97":0,"98":0,"99":0,"100":0.001,"101":0.00502,"102":0.05221,"103":0.00301,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.001,"29":0,"30":0,"31":0,"32":0,"33":0.001,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00201,"41":0,"42":0,"43":0.001,"44":0,"45":0,"46":0.001,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.001,"61":0,"62":0.00201,"63":0,"64":0.00201,"65":0,"66":0,"67":0,"68":0,"69":0.001,"70":0,"71":0,"72":0.001,"73":0,"74":0,"75":0,"76":0.00301,"77":0,"78":0,"79":0.001,"80":0,"81":0.0241,"83":0,"84":0,"85":0,"86":0.001,"87":0.00201,"88":0,"89":0,"90":0,"91":0,"92":0.001,"93":0.00201,"94":0,"95":0,"96":0.00301,"97":0.00201,"98":0.001,"99":0.00402,"100":0.00502,"101":0.00201,"102":0.01707,"103":0.31124,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.001,"25":0,"26":0,"27":0,"28":0.001,"29":0,"30":0.00703,"31":0,"32":0,"33":0.00201,"34":0,"35":0,"36":0,"37":0,"38":0.001,"39":0,"40":0,"41":0,"42":0.001,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.001,"58":0.00402,"60":0.03715,"62":0,"63":0.0502,"64":0.00201,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00201,"80":0,"81":0,"82":0,"83":0.00301,"84":0,"85":0,"86":0,"87":0,"88":0.01104,"89":0.00402,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.001},B:{"12":0.00301,"13":0,"14":0,"15":0.001,"16":0,"17":0.001,"18":0.00301,"79":0,"80":0,"81":0,"83":0,"84":0.001,"85":0.001,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.001,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00201,"101":0.00201,"102":0.00201,"103":0.07329,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00402,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.001,"15.1":0.001,"15.2-15.3":0,"15.4":0.00502,"15.5":0.00502,"15.6":0,"16.0":0},G:{"8":0.00145,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0378,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.79238,"10.0-10.2":0.03926,"10.3":0.08287,"11.0-11.2":0.45071,"11.3-11.4":0.04798,"12.0-12.1":0.7255,"12.2-12.5":4.75139,"13.0-13.1":0.20209,"13.2":0.02617,"13.3":0.38965,"13.4-13.7":0.63827,"14.0-14.4":1.44083,"14.5-14.8":0.9116,"15.0-15.1":0.89997,"15.2-15.3":0.68189,"15.4":0.64554,"15.5":1.65019,"16.0":0.06106},P:{"4":0.25378,"5.0-5.4":0.07106,"6.2-6.4":0.14212,"7.2-7.4":0.52786,"8.2":0.01015,"9.2":0.14212,"10.1":0,"11.1-11.2":0.09136,"12.0":0.0406,"13.0":0.07106,"14.0":0.28423,"15.0":0.0406,"16.0":1.33996,"17.0":0.70043,"18.0":0},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.00116,"4.4":0,"4.4.3-4.4.4":0.04166},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00201,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.90366},S:{"2.5":0.07197},R:{_:"0"},M:{"0":0.04498},Q:{"10.4":0.01799},O:{"0":0.36884},H:{"0":10.5779}}; 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 a19b043493a6975..1a84a951b821ed9 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:{"38":0.01274,"52":0.02123,"68":0.01698,"78":0.09764,"84":0.02547,"86":0.01274,"88":0.00425,"91":0.05519,"97":0.00849,"99":0.00849,"100":0.04245,"101":0.19952,"102":2.69133,"103":0.25046,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 87 89 90 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"49":1.52396,"58":0.00425,"63":0.00849,"65":0.00425,"67":0.01274,"68":0.00849,"75":0.02972,"76":0.00425,"79":0.02547,"85":0.00849,"86":0.00849,"87":0.00849,"89":0.02123,"91":0.00849,"92":0.00849,"93":0.00849,"94":0.00425,"95":0.02972,"96":0.12311,"97":0.02547,"98":0.00425,"99":0.08066,"100":0.20801,"101":0.10613,"102":1.17162,"103":19.58219,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 69 70 71 72 73 74 77 78 80 81 83 84 88 90 104 105 106"},F:{"85":0.00849,"87":0.07641,"88":0.54761,"89":0.16131,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00849,"15":0.00425,"16":0.00849,"17":0.00849,"18":0.01274,"85":0.03821,"90":0.00425,"92":0.01274,"93":0.00849,"96":0.01698,"97":0.07641,"98":0.00425,"99":0.01274,"100":0.01698,"101":0.04245,"102":0.07641,"103":4.91147,_:"12 14 79 80 81 83 84 86 87 88 89 91 94 95"},E:{"4":0,"12":0.00425,"13":0.08066,"14":0.19952,"15":0.03821,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0467,"11.1":0.02972,"12.1":0.07217,"13.1":0.52638,"14.1":0.3863,"15.1":0.17829,"15.2-15.3":0.18678,"15.4":0.41601,"15.5":2.20316,"15.6":0.22499,"16.0":0.00849},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00334,"7.0-7.1":0,"8.1-8.4":0.01171,"9.0-9.2":0,"9.3":0.02675,"10.0-10.2":0,"10.3":0.05184,"11.0-11.2":0.04515,"11.3-11.4":0.00669,"12.0-12.1":0.1505,"12.2-12.5":0.30768,"13.0-13.1":0.00836,"13.2":0.00167,"13.3":0.02843,"13.4-13.7":0.16387,"14.0-14.4":0.32106,"14.5-14.8":0.76084,"15.0-15.1":0.42306,"15.2-15.3":0.70232,"15.4":1.2742,"15.5":11.90091,"16.0":0.07525},P:{"4":0.04068,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.29496,"8.2":0.021,"9.2":0.01047,"10.1":0.05305,"11.1-11.2":0.12205,"12.0":0.09154,"13.0":0.08137,"14.0":0.35599,"15.0":0.0712,"16.0":0.1424,"17.0":4.65839},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00243,"4.2-4.3":0.01337,"4.4":0,"4.4.3-4.4.4":0.07052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":2.96726,"11":0.15282,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.27049},Q:{"10.4":0},O:{"0":0.01151},H:{"0":0.14166},L:{"0":35.89803}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00434,"37":0,"38":0.00434,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00869,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00869,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01303,"78":0.04343,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01303,"85":0,"86":0.00434,"87":0.00434,"88":0.00434,"89":0,"90":0,"91":0.02172,"92":0,"93":0,"94":0.00434,"95":0,"96":0,"97":0.00869,"98":0,"99":0.00434,"100":0.02172,"101":0.09555,"102":1.22473,"103":0.11292,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.66014,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00434,"64":0,"65":0.00434,"66":0,"67":0.00434,"68":0.00434,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.01303,"76":0.00434,"77":0,"78":0,"79":0.00869,"80":0,"81":0.00434,"83":0,"84":0,"85":0.00434,"86":0.00434,"87":0.00434,"88":0,"89":0.00869,"90":0,"91":0.00434,"92":0.00434,"93":0.00434,"94":0.00434,"95":0.01303,"96":0.05212,"97":0.01303,"98":0.00434,"99":0.03474,"100":0.0912,"101":0.04777,"102":0.51247,"103":8.76417,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00434,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00434,"86":0,"87":0.03474,"88":0.23887,"89":0.06949,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00434,"14":0,"15":0.00434,"16":0.00434,"17":0.00434,"18":0.00434,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.01737,"86":0,"87":0,"88":0,"89":0,"90":0.00434,"91":0,"92":0.00434,"93":0.00434,"94":0,"95":0,"96":0.00869,"97":0.03474,"98":0,"99":0.00434,"100":0.00869,"101":0.01737,"102":0.03474,"103":2.14544,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00434,"13":0.03474,"14":0.08686,"15":0.01737,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01737,"11.1":0.01303,"12.1":0.0304,"13.1":0.23018,"14.1":0.16938,"15.1":0.07817,"15.2-15.3":0.08252,"15.4":0.18241,"15.5":0.95546,"15.6":0.09989,"16.0":0.00434},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00492,"7.0-7.1":0,"8.1-8.4":0.01722,"9.0-9.2":0,"9.3":0.03936,"10.0-10.2":0,"10.3":0.07626,"11.0-11.2":0.06642,"11.3-11.4":0.00984,"12.0-12.1":0.2214,"12.2-12.5":0.45263,"13.0-13.1":0.0123,"13.2":0.00246,"13.3":0.04182,"13.4-13.7":0.24108,"14.0-14.4":0.47231,"14.5-14.8":1.11929,"15.0-15.1":0.62237,"15.2-15.3":1.03319,"15.4":1.8745,"15.5":17.50762,"16.0":0.1107},P:{"4":0.04158,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.28066,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.11434,"12.0":0.08316,"13.0":0.07276,"14.0":0.34303,"15.0":0.06237,"16.0":0.14553,"17.0":4.61538,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00716,"4.2-4.3":0.03939,"4.4":0,"4.4.3-4.4.4":0.20768},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":1.28987,"9":0,"10":0,"11":0.06515,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.41127},S:{"2.5":0},R:{_:"0"},M:{"0":0.26588},Q:{"10.4":0},O:{"0":0.01131},H:{"0":0.13925}}; 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 b6e1b9d8ce3e308..f48afef85d26379 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:{"29":0.00808,"36":0.01616,"52":0.07271,"56":0.00808,"57":0.17774,"60":0.10503,"63":0.00808,"64":0.00808,"71":0.00808,"72":0.04847,"78":0.0404,"83":0.01616,"86":0.00808,"91":0.00808,"97":0.03232,"98":0.01616,"99":0.05655,"100":0.03232,"101":0.05655,"102":1.34919,"103":0.09695,_:"2 3 4 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 58 59 61 62 65 66 67 68 69 70 73 74 75 76 77 79 80 81 82 84 85 87 88 89 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"18":0.03232,"37":0.01616,"38":0.01616,"43":0.00808,"48":0.11311,"54":0.0404,"55":0.05655,"56":0.02424,"64":0.0404,"67":0.01616,"68":0.02424,"72":0.01616,"75":0.00808,"79":0.10503,"85":0.21005,"86":0.0404,"87":0.03232,"91":0.06463,"92":0.0404,"93":0.00808,"94":0.00808,"96":0.02424,"97":0.05655,"98":0.00808,"99":0.02424,"100":0.0404,"101":0.04847,"102":0.27469,"103":10.09875,_:"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 39 40 41 42 44 45 46 47 49 50 51 52 53 57 58 59 60 61 62 63 65 66 69 70 71 73 74 76 77 78 80 81 83 84 88 89 90 95 104 105 106"},F:{"82":0.01616,"87":0.03232,"88":0.04847,"89":0.09695,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04847,"16":0.02424,"17":0.01616,"18":0.16966,"85":0.01616,"91":0.00808,"92":2.00359,"93":0.00808,"94":0.01616,"99":0.00808,"100":0.00808,"101":0.11311,"102":3.23968,"103":59.42105,_:"13 14 15 79 80 81 83 84 86 87 88 89 90 95 96 97 98"},E:{"4":0,"14":0.01616,_:"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 16.0","13.1":0.00808,"14.1":0.02424,"15.1":0.02424,"15.2-15.3":0.01616,"15.4":0.07271,"15.5":0.05655,"15.6":0.00808},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00273,"6.0-6.1":0,"7.0-7.1":0.02219,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00234,"10.0-10.2":0.00195,"10.3":0.04711,"11.0-11.2":0.01791,"11.3-11.4":0.00389,"12.0-12.1":0.03153,"12.2-12.5":1.2956,"13.0-13.1":0.00467,"13.2":0.00156,"13.3":0.01752,"13.4-13.7":0.03582,"14.0-14.4":0.27329,"14.5-14.8":0.10083,"15.0-15.1":0.35816,"15.2-15.3":0.41811,"15.4":0.24293,"15.5":0.89034,"16.0":0.01207},P:{"4":0.34634,"5.0-5.4":0.01117,"6.2-6.4":0.02052,"7.2-7.4":0.17815,"8.2":0.03079,"9.2":0.02051,"10.1":0.01069,"11.1-11.2":0.09431,"12.0":0.01048,"13.0":0.01117,"14.0":0.01117,"15.0":0.0524,"16.0":0.03352,"17.0":0.43571},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01943,"4.4":0,"4.4.3-4.4.4":0.05165},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12119,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.05379},Q:{"10.4":0.01921},O:{"0":0.18057},H:{"0":0.31281},L:{"0":14.547}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00812,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01624,"37":0.02436,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05683,"53":0,"54":0,"55":0,"56":0.00812,"57":0.14614,"58":0,"59":0,"60":0.08119,"61":0,"62":0,"63":0.00812,"64":0.00812,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00812,"72":0.0406,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03248,"79":0.00812,"80":0,"81":0,"82":0,"83":0.01624,"84":0,"85":0,"86":0.00812,"87":0,"88":0,"89":0,"90":0,"91":0.00812,"92":0,"93":0,"94":0,"95":0,"96":0.00812,"97":0.02436,"98":0.00812,"99":0.0406,"100":0.02436,"101":0.04871,"102":1.1123,"103":0.07307,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.03248,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00812,"38":0.00812,"39":0.00812,"40":0,"41":0,"42":0,"43":0.00812,"44":0,"45":0,"46":0,"47":0,"48":0.08931,"49":0,"50":0.00812,"51":0,"52":0,"53":0,"54":0.03248,"55":0.0406,"56":0.02436,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0406,"65":0,"66":0,"67":0.01624,"68":0.01624,"69":0,"70":0,"71":0,"72":0.01624,"73":0,"74":0,"75":0.00812,"76":0,"77":0,"78":0.00812,"79":0.08119,"80":0.00812,"81":0.00812,"83":0,"84":0,"85":0.1705,"86":0.03248,"87":0.02436,"88":0,"89":0,"90":0,"91":0.04871,"92":0.03248,"93":0.00812,"94":0.00812,"95":0,"96":0.01624,"97":0.04871,"98":0.00812,"99":0.01624,"100":0.03248,"101":0.0406,"102":0.22733,"103":8.22455,"104":0.00812,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.02436,"62":0,"63":0.04871,"64":0.00812,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00812,"80":0,"81":0,"82":0.00812,"83":0,"84":0,"85":0,"86":0,"87":0.02436,"88":0.0406,"89":0.08119,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0406,"13":0.00812,"14":0.00812,"15":0,"16":0.01624,"17":0.00812,"18":0.13802,"79":0,"80":0,"81":0,"83":0,"84":0.00812,"85":0.00812,"86":0,"87":0.00812,"88":0,"89":0.00812,"90":0,"91":0.00812,"92":1.6238,"93":0.00812,"94":0.01624,"95":0,"96":0,"97":0,"98":0,"99":0.00812,"100":0.01624,"101":0.08931,"102":2.63868,"103":48.2431,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01624,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00812,"14.1":0.01624,"15.1":0.01624,"15.2-15.3":0.01624,"15.4":0.05683,"15.5":0.04871,"15.6":0.00812,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00528,"6.0-6.1":0,"7.0-7.1":0.04303,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00453,"10.0-10.2":0.00377,"10.3":0.09134,"11.0-11.2":0.03473,"11.3-11.4":0.00755,"12.0-12.1":0.06115,"12.2-12.5":2.51236,"13.0-13.1":0.00906,"13.2":0.00302,"13.3":0.03397,"13.4-13.7":0.06945,"14.0-14.4":0.52995,"14.5-14.8":0.19552,"15.0-15.1":0.69452,"15.2-15.3":0.81078,"15.4":0.47107,"15.5":1.7265,"16.0":0.0234},P:{"4":0.32445,"5.0-5.4":0.01014,"6.2-6.4":0,"7.2-7.4":0.02028,"8.2":0,"9.2":0.02028,"10.1":0,"11.1-11.2":0.01014,"12.0":0,"13.0":0.01014,"14.0":0.01014,"15.0":0,"16.0":0.03042,"17.0":0.39542,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0834,"4.4":0,"4.4.3-4.4.4":0.22165},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.10555,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":24.41575},S:{"2.5":0},R:{_:"0"},M:{"0":0.05267},Q:{"10.4":0.01881},O:{"0":0.17681},H:{"0":0.3063}}; 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 c306fa0aa1c166a..437c644e8b7d0fc 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.32193,"60":0.00511,"68":0.08687,"78":0.02555,"81":0.03577,"84":0.00511,"87":0.01022,"88":0.03577,"91":0.07665,"92":0.00511,"94":0.0511,"95":0.01022,"96":0.03577,"97":0.00511,"98":0.01022,"99":0.04088,"100":0.12264,"101":0.22995,"102":4.88516,"103":0.54677,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 82 83 85 86 89 90 93 104 105 3.5 3.6"},D:{"22":0.4599,"34":0.15841,"38":0.19929,"39":0.02555,"40":0.01022,"47":0.30149,"49":0.31682,"56":0.00511,"58":0.02044,"61":0.12775,"62":0.22995,"69":0.08176,"71":0.01533,"75":0.00511,"77":0.08176,"78":0.01022,"79":0.08176,"80":0.00511,"81":0.03066,"83":0.02555,"84":0.01533,"85":0.01533,"86":0.08176,"87":0.0511,"88":0.14819,"89":0.05621,"90":0.00511,"91":0.22484,"92":0.02044,"93":0.02044,"94":0.00511,"95":0.01533,"96":0.03066,"97":0.01533,"98":0.03577,"99":0.03577,"100":0.07154,"101":0.14308,"102":1.24684,"103":28.60067,"104":0.01022,"105":0.00511,_:"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 41 42 43 44 45 46 48 50 51 52 53 54 55 57 59 60 63 64 65 66 67 68 70 72 73 74 76 106"},F:{"12":0.08687,"25":0.02044,"28":0.01022,"31":0.80227,"40":0.64897,"46":0.2044,"77":0.01022,"85":0.01022,"87":0.04088,"88":0.68474,"89":0.35259,_:"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 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.14308,"96":0.01022,"97":0.02555,"101":0.02044,"102":0.12264,"103":2.86671,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 98 99 100"},E:{"4":0,"13":0.01533,"14":0.0511,"15":0.01533,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.01022,"12.1":0.02555,"13.1":0.09198,"14.1":0.1533,"15.1":0.03066,"15.2-15.3":0.02555,"15.4":0.1022,"15.5":0.7154,"15.6":0.04088},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03328,"6.0-6.1":0,"7.0-7.1":0.19026,"8.1-8.4":0,"9.0-9.2":0.00072,"9.3":0.03545,"10.0-10.2":0.00145,"10.3":0.04557,"11.0-11.2":0.00289,"11.3-11.4":0.01013,"12.0-12.1":0.00579,"12.2-12.5":0.26766,"13.0-13.1":0.00434,"13.2":0.01736,"13.3":0.01447,"13.4-13.7":0.06366,"14.0-14.4":0.1454,"14.5-14.8":0.45285,"15.0-15.1":0.10272,"15.2-15.3":0.20906,"15.4":0.41234,"15.5":5.0132,"16.0":0.03255},P:{"4":0.25093,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.106,"8.2":0.021,"9.2":0.0424,"10.1":0.05305,"11.1-11.2":0.05228,"12.0":0.02084,"13.0":0.08364,"14.0":0.06273,"15.0":0.02091,"16.0":0.08364,"17.0":1.64148},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05074,"4.2-4.3":0.10824,"4.4":0,"4.4.3-4.4.4":0.2909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36281,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.23961},Q:{"10.4":0},O:{"0":0.07824},H:{"0":0.22685},L:{"0":39.81224}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.16794,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00525,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.05248,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01574,"79":0,"80":0,"81":0.02099,"82":0,"83":0,"84":0.00525,"85":0,"86":0,"87":0.00525,"88":0.02099,"89":0.00525,"90":0.00525,"91":0.04198,"92":0.00525,"93":0,"94":0.02624,"95":0.00525,"96":0.02099,"97":0.00525,"98":0.00525,"99":0.02099,"100":0.06822,"101":0.1312,"102":2.65024,"103":0.29389,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.24141,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.08397,"35":0,"36":0,"37":0,"38":0.10496,"39":0.01574,"40":0.00525,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.15744,"48":0,"49":0.16794,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00525,"57":0,"58":0.0105,"59":0,"60":0,"61":0.06822,"62":0.1207,"63":0.00525,"64":0,"65":0,"66":0,"67":0,"68":0.00525,"69":0.04198,"70":0.00525,"71":0.0105,"72":0,"73":0,"74":0,"75":0.00525,"76":0,"77":0.04198,"78":0.00525,"79":0.04198,"80":0.00525,"81":0.05248,"83":0.0105,"84":0.0105,"85":0.0105,"86":0.04198,"87":0.02624,"88":0.07872,"89":0.03674,"90":0.00525,"91":0.1207,"92":0.02099,"93":0.0105,"94":0.00525,"95":0.01574,"96":0.02099,"97":0.0105,"98":0.02099,"99":0.02099,"100":0.04198,"101":0.08397,"102":0.68224,"103":15.31366,"104":0.00525,"105":0.00525,"106":0,_:"107"},F:{"9":0,"11":0,"12":0.04723,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.0105,"26":0,"27":0,"28":0.00525,"29":0,"30":0,"31":0.41984,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.34112,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.10496,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00525,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00525,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00525,"86":0,"87":0.02099,"88":0.35686,"89":0.18368,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.07347,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00525,"97":0.0105,"98":0,"99":0,"100":0,"101":0.0105,"102":0.07347,"103":1.52192,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0105,"14":0.02624,"15":0.00525,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00525,"12.1":0.0105,"13.1":0.04723,"14.1":0.07872,"15.1":0.01574,"15.2-15.3":0.01574,"15.4":0.05248,"15.5":0.37786,"15.6":0.02099,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05269,"6.0-6.1":0,"7.0-7.1":0.30126,"8.1-8.4":0,"9.0-9.2":0.00115,"9.3":0.05613,"10.0-10.2":0.00229,"10.3":0.07216,"11.0-11.2":0.00458,"11.3-11.4":0.01604,"12.0-12.1":0.00916,"12.2-12.5":0.42383,"13.0-13.1":0.00687,"13.2":0.02749,"13.3":0.02291,"13.4-13.7":0.1008,"14.0-14.4":0.23024,"14.5-14.8":0.71707,"15.0-15.1":0.16266,"15.2-15.3":0.33104,"15.4":0.65292,"15.5":7.93815,"16.0":0.05155},P:{"4":0.23938,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.05204,"12.0":0.01041,"13.0":0.08326,"14.0":0.06245,"15.0":0.02082,"16.0":0.08326,"17.0":1.58202,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.08245,"4.2-4.3":0.1759,"4.4":0,"4.4.3-4.4.4":0.47272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.19418,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.26568},S:{"2.5":0},R:{_:"0"},M:{"0":0.23285},Q:{"10.4":0},O:{"0":0.07603},H:{"0":0.22045}}; 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 21690799317c2ba..f09ee0c63278402 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:{"48":0.00377,"52":0.01884,"72":0.00753,"73":0.11301,"78":0.01884,"88":0.00753,"90":0.0113,"91":0.0113,"96":0.00377,"99":0.00753,"100":0.01507,"101":0.06781,"102":1.21674,"103":0.14691,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 77 79 80 81 82 83 84 85 86 87 89 92 93 94 95 97 98 104 105 3.5 3.6"},D:{"38":0.00753,"49":0.02637,"50":0.00377,"65":0.01507,"69":0.00753,"70":0.00377,"75":0.00377,"76":0.03767,"78":0.0113,"79":0.05651,"80":0.00753,"81":0.0113,"83":0.00753,"84":0.01507,"86":0.05274,"87":0.0339,"88":0.01507,"89":0.01884,"90":0.0113,"91":0.0339,"92":0.03014,"93":0.03767,"94":0.0226,"95":0.0113,"96":0.0452,"97":0.03767,"98":0.03767,"99":0.0452,"100":0.05651,"101":0.10548,"102":0.7534,"103":23.46464,"104":0.0113,"105":0.0113,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 74 77 85 106"},F:{"85":0.00753,"86":0.00753,"87":0.05274,"88":1.70645,"89":0.47841,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00753,"84":0.00377,"90":0.00377,"92":0.0113,"96":0.00377,"98":0.02637,"99":0.00377,"100":0.01884,"101":0.0226,"102":0.05651,"103":2.75368,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 91 93 94 95 97"},E:{"4":0,"13":0.0113,"14":0.04897,"15":0.03014,_:"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.00753,"12.1":0.03767,"13.1":0.10924,"14.1":0.17328,"15.1":0.03767,"15.2-15.3":0.0339,"15.4":0.14315,"15.5":0.97942,"15.6":0.05651,"16.0":0.0113},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0095,"7.0-7.1":0.00518,"8.1-8.4":0.00086,"9.0-9.2":0.00086,"9.3":0.01468,"10.0-10.2":0.00259,"10.3":0.01641,"11.0-11.2":0.00086,"11.3-11.4":0.00518,"12.0-12.1":0.00432,"12.2-12.5":0.18824,"13.0-13.1":0.00518,"13.2":0.00345,"13.3":0.02331,"13.4-13.7":0.0449,"14.0-14.4":0.1347,"14.5-14.8":0.37475,"15.0-15.1":0.13384,"15.2-15.3":0.24523,"15.4":0.43606,"15.5":6.54431,"16.0":0.10793},P:{"4":0.08162,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.41828,"8.2":0.021,"9.2":0.05101,"10.1":0.0102,"11.1-11.2":0.26525,"12.0":0.0204,"13.0":0.14283,"14.0":0.24485,"15.0":0.10202,"16.0":0.33667,"17.0":2.76476},I:{"0":0,"3":0,"4":0.00563,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00281,"4.4":0,"4.4.3-4.4.4":0.03519},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0339,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.20569},Q:{"10.4":0},O:{"0":0.06233},H:{"0":0.27735},L:{"0":52.55023}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00763,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00382,"73":0.04198,"74":0,"75":0,"76":0,"77":0,"78":0.00763,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00382,"89":0,"90":0.01145,"91":0.00382,"92":0,"93":0,"94":0,"95":0,"96":0.00382,"97":0.00382,"98":0,"99":0.00382,"100":0.00763,"101":0.03053,"102":0.51134,"103":0.06106,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00382,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00763,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00763,"66":0,"67":0,"68":0,"69":0.00382,"70":0.00382,"71":0,"72":0,"73":0,"74":0,"75":0.00382,"76":0.01526,"77":0,"78":0.00382,"79":0.0229,"80":0.00382,"81":0.00763,"83":0.00382,"84":0.00763,"85":0.00382,"86":0.01908,"87":0.01526,"88":0.00763,"89":0.00763,"90":0.00382,"91":0.01526,"92":0.01526,"93":0.01526,"94":0.00763,"95":0.00763,"96":0.01908,"97":0.01526,"98":0.01526,"99":0.01908,"100":0.02671,"101":0.04198,"102":0.29383,"103":9.01721,"104":0.00382,"105":0.00382,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00382,"60":0,"62":0,"63":0.01908,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00382,"86":0.00382,"87":0.01908,"88":0.65254,"89":0.18317,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00382,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00382,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01145,"99":0.00382,"100":0.00763,"101":0.01145,"102":0.03053,"103":1.08756,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00382,"14":0.01908,"15":0.01145,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00382,"12.1":0.01526,"13.1":0.04198,"14.1":0.06487,"15.1":0.01526,"15.2-15.3":0.01145,"15.4":0.05342,"15.5":0.37397,"15.6":0.0229,"16.0":0.00382},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01368,"7.0-7.1":0.00746,"8.1-8.4":0.00124,"9.0-9.2":0.00124,"9.3":0.02114,"10.0-10.2":0.00373,"10.3":0.02363,"11.0-11.2":0.00124,"11.3-11.4":0.00746,"12.0-12.1":0.00622,"12.2-12.5":0.27112,"13.0-13.1":0.00746,"13.2":0.00497,"13.3":0.03358,"13.4-13.7":0.06467,"14.0-14.4":0.19401,"14.5-14.8":0.53974,"15.0-15.1":0.19277,"15.2-15.3":0.3532,"15.4":0.62804,"15.5":9.42562,"16.0":0.15546},P:{"4":0.09173,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.40769,"8.2":0,"9.2":0.05096,"10.1":0.02038,"11.1-11.2":0.27519,"12.0":0.03058,"13.0":0.14269,"14.0":0.23442,"15.0":0.09173,"16.0":0.32615,"17.0":2.7213,"18.0":0.01019},I:{"0":0,"3":0,"4":0.01937,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00969,"4.4":0,"4.4.3-4.4.4":0.12108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01145,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.73547},S:{"2.5":0},R:{_:"0"},M:{"0":0.20407},Q:{"10.4":0},O:{"0":0.06184},H:{"0":0.27517}}; 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 d99ae48202d2976..d5ed8c4c4b39604 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js @@ -1 +1 @@ -module.exports={C:{"78":0.02603,"84":0.0595,"91":0.01116,"92":0.01116,"95":0.03347,"96":0.04463,"100":0.00744,"101":0.92603,"102":1.37231,"103":0.17479,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 93 94 97 98 99 104 105 3.5 3.6"},D:{"38":0.00744,"49":0.02603,"53":0.00744,"65":0.00372,"67":0.00744,"68":0.00744,"70":0.01488,"73":0.00372,"75":0.10785,"76":0.01488,"77":0.00744,"79":0.27521,"84":0.01116,"87":0.03347,"88":0.00372,"89":0.00372,"90":0.00372,"91":0.03347,"92":0.05579,"93":0.02603,"96":0.06322,"97":0.01488,"98":0.05207,"99":0.18595,"100":0.08926,"101":0.28264,"102":1.10082,"103":18.16732,"104":0.02231,"105":0.00372,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 69 71 72 74 78 80 81 83 85 86 94 95 106"},F:{"79":0.00744,"83":0.00372,"87":0.01116,"88":0.5876,"89":0.21942,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00744,"18":0.00744,"92":0.00744,"96":0.00372,"100":0.00372,"101":0.07066,"102":0.11901,"103":3.44008,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99"},E:{"4":0,"13":0.10041,"14":0.3905,"15":0.0595,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.02231,"11.1":0.02975,"12.1":0.09298,"13.1":0.54297,"14.1":0.76983,"15.1":0.1562,"15.2-15.3":0.1376,"15.4":0.49091,"15.5":3.80082,"15.6":0.09298},G:{"8":0,"3.2":0,"4.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.29168,"10.0-10.2":0,"10.3":0.01945,"11.0-11.2":0.01296,"11.3-11.4":0.06158,"12.0-12.1":0.02917,"12.2-12.5":0.71299,"13.0-13.1":0.0713,"13.2":0.01945,"13.3":0.17177,"13.4-13.7":0.20093,"14.0-14.4":1.17644,"14.5-14.8":2.05148,"15.0-15.1":0.86532,"15.2-15.3":1.14403,"15.4":2.93624,"15.5":22.12226,"16.0":0.05185},P:{"4":0.2998,"5.0-5.4":0.06154,"6.2-6.4":0.02051,"7.2-7.4":0.02068,"8.2":0.021,"9.2":0.01047,"10.1":0.05305,"11.1-11.2":0.03101,"12.0":0.02068,"13.0":0.04135,"14.0":0.10338,"15.0":0.07236,"16.0":0.28946,"17.0":3.74227},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02094,"4.4":0,"4.4.3-4.4.4":0.04187},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08554,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12562},Q:{"10.4":0},O:{"0":0.11306},H:{"0":0.10109},L:{"0":26.87408}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01154,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.02308,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00385,"92":0.00385,"93":0,"94":0,"95":0.01539,"96":0.01539,"97":0,"98":0,"99":0,"100":0.00385,"101":0.35777,"102":0.56166,"103":0.06925,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00385,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01154,"50":0,"51":0,"52":0,"53":0.00385,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00385,"68":0.00385,"69":0,"70":0.00769,"71":0,"72":0,"73":0,"74":0,"75":0.04232,"76":0.00385,"77":0.00385,"78":0,"79":0.10387,"80":0,"81":0,"83":0,"84":0.00385,"85":0,"86":0,"87":0.01539,"88":0,"89":0,"90":0.00385,"91":0.01154,"92":0.02308,"93":0.01154,"94":0,"95":0,"96":0.02308,"97":0.00769,"98":0.01924,"99":0.07309,"100":0.03462,"101":0.10772,"102":0.42702,"103":7.13234,"104":0.00769,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00385,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00385,"88":0.22697,"89":0.08463,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00385,"16":0,"17":0,"18":0.00769,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00385,"93":0,"94":0,"95":0,"96":0.00385,"97":0,"98":0,"99":0,"100":0.00385,"101":0.02693,"102":0.06155,"103":1.36953,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03847,"14":0.15003,"15":0.02308,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00769,"11.1":0.01154,"12.1":0.03462,"13.1":0.20774,"14.1":0.29622,"15.1":0.05771,"15.2-15.3":0.05386,"15.4":0.1885,"15.5":1.46186,"15.6":0.03462,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.40877,"10.0-10.2":0,"10.3":0.02725,"11.0-11.2":0.01817,"11.3-11.4":0.0863,"12.0-12.1":0.04088,"12.2-12.5":0.99921,"13.0-13.1":0.09992,"13.2":0.02725,"13.3":0.24072,"13.4-13.7":0.2816,"14.0-14.4":1.6487,"14.5-14.8":2.87501,"15.0-15.1":1.21268,"15.2-15.3":1.60328,"15.4":4.11494,"15.5":31.00285,"16.0":0.07267},P:{"4":0.30524,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03158,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03158,"12.0":0.02105,"13.0":0.05263,"14.0":0.10526,"15.0":0.07368,"16.0":0.28419,"17.0":3.62081,"18.0":0.02105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0936,"4.4":0,"4.4.3-4.4.4":0.18721},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03078,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.7585},S:{"2.5":0},R:{_:"0"},M:{"0":0.12306},Q:{"10.4":0},O:{"0":0.11075},H:{"0":0.09903}}; 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 7de366e21bdd93f..a97fd48e23b09dd 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:{"56":6.05027,"91":0.02114,"94":0.00846,"101":0.01691,"102":0.16489,"103":0.0296,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 99 100 104 105 3.5 3.6"},D:{"33":0.00423,"43":0.01691,"47":0.00423,"72":0.00423,"76":0.00846,"77":0.01691,"79":0.04651,"83":0.00846,"86":0.04228,"88":0.0296,"92":0.00423,"96":0.21986,"97":0.01268,"98":0.0296,"99":0.00846,"101":0.05074,"102":0.6046,"103":25.93032,"104":0.01268,_:"4 5 6 7 8 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 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 78 80 81 84 85 87 89 90 91 93 94 95 100 105 106"},F:{"88":0.05919,"89":0.0761,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05074,"15":0.00846,"16":0.00846,"18":0.02537,"98":0.00846,"99":0.0296,"100":0.00846,"101":0.01691,"102":0.07188,"103":0.99781,_:"13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97"},E:{"4":0,"14":0.00846,_:"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 12.1 13.1 15.1 15.2-15.3 15.4 15.6 16.0","10.1":0.00423,"14.1":0.03805,"15.5":0.03382},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00594,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04646,"10.0-10.2":0,"10.3":0.29276,"11.0-11.2":0.01887,"11.3-11.4":0.00245,"12.0-12.1":0.00175,"12.2-12.5":0.79548,"13.0-13.1":0.03214,"13.2":0.0007,"13.3":0.03738,"13.4-13.7":0.15651,"14.0-14.4":0.06184,"14.5-14.8":0.4615,"15.0-15.1":0.04821,"15.2-15.3":0.16769,"15.4":0.11005,"15.5":1.22728,"16.0":0.02445},P:{"4":0.21893,"5.0-5.4":0.06099,"6.2-6.4":0.14231,"7.2-7.4":0.52125,"8.2":0.021,"9.2":0.14231,"10.1":0.0102,"11.1-11.2":0.1251,"12.0":0.04066,"13.0":0.05213,"14.0":0.02085,"15.0":0.03128,"16.0":0.13553,"17.0":0.51083},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00016,"4.2-4.3":0,"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.0296,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.23661},R:{_:"0"},M:{"0":0.01731},Q:{"10.4":0},O:{"0":0.02308},H:{"0":1.58991},L:{"0":58.00873}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":2.58819,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00856,"92":0,"93":0,"94":0.00428,"95":0,"96":0,"97":0,"98":0,"99":0.00428,"100":0,"101":0.00856,"102":0.07273,"103":0.01283,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00428,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00856,"44":0,"45":0,"46":0,"47":0.00428,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00428,"73":0,"74":0,"75":0,"76":0.00428,"77":0.00856,"78":0,"79":0.01711,"80":0,"81":0.01711,"83":0.00428,"84":0,"85":0,"86":0.02139,"87":0,"88":0.01283,"89":0,"90":0,"91":0,"92":0.00428,"93":0,"94":0,"95":0,"96":0.09412,"97":0.00428,"98":0.01283,"99":0.00428,"100":0,"101":0.02139,"102":0.26096,"103":11.09713,"104":0.00428,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00428,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01711,"62":0,"63":0.01283,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.02567,"89":0.03422,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.02139,"13":0,"14":0,"15":0.00856,"16":0.00428,"17":0,"18":0.00856,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00428,"99":0.01283,"100":0.00428,"101":0.00856,"102":0.02995,"103":0.4278,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00428,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00428,"11.1":0,"12.1":0,"13.1":0,"14.1":0.01711,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.01283,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00972,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07602,"10.0-10.2":0,"10.3":0.47896,"11.0-11.2":0.03086,"11.3-11.4":0.004,"12.0-12.1":0.00286,"12.2-12.5":1.30141,"13.0-13.1":0.05258,"13.2":0.00114,"13.3":0.06116,"13.4-13.7":0.25605,"14.0-14.4":0.10116,"14.5-14.8":0.75501,"15.0-15.1":0.07887,"15.2-15.3":0.27434,"15.4":0.18004,"15.5":2.00784,"16.0":0.04001},P:{"4":0.21568,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.50324,"8.2":0,"9.2":0,"10.1":0.01027,"11.1-11.2":0.12324,"12.0":0.01027,"13.0":0.05135,"14.0":0.03081,"15.0":0.03081,"16.0":0.13351,"17.0":0.49297,"18.0":0},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,"4.4":0,"4.4.3-4.4.4":0.15473},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01283,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":74.06879},S:{"2.5":0.2346},R:{_:"0"},M:{"0":0.01717},Q:{"10.4":0},O:{"0":0.02289},H:{"0":1.57641}}; 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 895ea6324f20ead..b5b6c29fb989221 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:{"91":0.00691,"97":0.01036,"99":0.00691,"100":0.01036,"101":0.03799,"102":0.84968,"103":0.07599,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"11":0.0829,"38":0.03454,"55":0.0449,"61":0.01382,"63":0.00345,"65":0.00691,"68":0.00345,"69":0.01382,"70":0.01036,"74":0.01036,"75":0.02418,"76":0.0449,"77":0.15198,"79":0.11398,"80":0.01382,"81":0.01727,"83":0.01727,"84":0.01382,"86":0.02072,"87":0.02763,"88":0.00691,"89":0.00691,"90":0.00691,"91":0.01382,"92":0.01382,"93":0.19688,"94":0.01036,"95":0.01382,"96":0.06563,"97":0.05526,"98":0.14161,"99":0.06908,"100":0.0898,"101":0.16234,"102":1.21235,"103":17.76047,"104":0.01727,"105":0.01382,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 62 64 66 67 71 72 73 78 85 106"},F:{"28":0.03109,"79":0.00345,"87":0.02072,"88":0.39721,"89":0.14507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00345,"13":0.00345,"15":0.00691,"16":0.00691,"17":0.00345,"18":0.01036,"84":0.00691,"92":0.00691,"97":0.00345,"98":0.00691,"99":0.01036,"100":0.01036,"101":0.12089,"102":0.09326,"103":4.56273,_:"14 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.01036,"14":0.07599,"15":0.01727,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 16.0","11.1":0.00691,"13.1":0.09326,"14.1":0.07599,"15.1":0.01382,"15.2-15.3":0.00691,"15.4":0.74261,"15.5":0.85659,"15.6":0.01727},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.04523,"8.1-8.4":0,"9.0-9.2":0.00215,"9.3":0.19168,"10.0-10.2":0,"10.3":0.06031,"11.0-11.2":0.0883,"11.3-11.4":0.00431,"12.0-12.1":0.00323,"12.2-12.5":0.3726,"13.0-13.1":0.00323,"13.2":0.00646,"13.3":0.02261,"13.4-13.7":0.16369,"14.0-14.4":0.28322,"14.5-14.8":0.56644,"15.0-15.1":0.26168,"15.2-15.3":0.31014,"15.4":0.53305,"15.5":7.53814,"16.0":0.1023},P:{"4":0.35787,"5.0-5.4":0.06099,"6.2-6.4":0.14231,"7.2-7.4":0.38945,"8.2":0.021,"9.2":0.03158,"10.1":0.07368,"11.1-11.2":0.11578,"12.0":0.04066,"13.0":0.0842,"14.0":0.13683,"15.0":0.11578,"16.0":0.21051,"17.0":4.57864},I:{"0":0,"3":0,"4":0.00453,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00181,"4.4":0,"4.4.3-4.4.4":0.05257},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00691,"11":0.03109,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.13747},Q:{"10.4":0},O:{"0":0.51059},H:{"0":0.19831},L:{"0":52.99279}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00373,"92":0,"93":0,"94":0,"95":0,"96":0.01118,"97":0.00373,"98":0,"99":0.00373,"100":0.00373,"101":0.0149,"102":0.33161,"103":0.02981,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02981,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01118,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01863,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00745,"62":0.00373,"63":0,"64":0,"65":0.00373,"66":0,"67":0,"68":0.00373,"69":0.00373,"70":0.00373,"71":0,"72":0,"73":0,"74":0.00373,"75":0.00745,"76":0.01863,"77":0.05589,"78":0,"79":0.04099,"80":0.00373,"81":0.00745,"83":0.00745,"84":0.00373,"85":0,"86":0.00745,"87":0.01118,"88":0.00373,"89":0.00373,"90":0.00373,"91":0.00745,"92":0.00745,"93":0.07452,"94":0.00373,"95":0.00745,"96":0.02236,"97":0.01863,"98":0.05216,"99":0.02608,"100":0.03353,"101":0.06334,"102":0.45457,"103":6.67699,"104":0.00745,"105":0.00373,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01118,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02236,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00745,"88":0.14904,"89":0.05589,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00745,"14":0,"15":0.00373,"16":0.00373,"17":0,"18":0.00373,"79":0,"80":0,"81":0,"83":0,"84":0.00373,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00373,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00373,"99":0.00373,"100":0.00373,"101":0.04471,"102":0.03726,"103":1.71023,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00373,"14":0.02608,"15":0.00745,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00373,"12.1":0,"13.1":0.03353,"14.1":0.02981,"15.1":0.00745,"15.2-15.3":0.00373,"15.4":0.27572,"15.5":0.32044,"15.6":0.00745,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00879,"6.0-6.1":0,"7.0-7.1":0.06152,"8.1-8.4":0,"9.0-9.2":0.00293,"9.3":0.26072,"10.0-10.2":0,"10.3":0.08202,"11.0-11.2":0.12011,"11.3-11.4":0.00586,"12.0-12.1":0.00439,"12.2-12.5":0.50679,"13.0-13.1":0.00439,"13.2":0.00879,"13.3":0.03076,"13.4-13.7":0.22263,"14.0-14.4":0.38522,"14.5-14.8":0.77043,"15.0-15.1":0.35592,"15.2-15.3":0.42183,"15.4":0.72503,"15.5":10.25288,"16.0":0.13915},P:{"4":0.3455,"5.0-5.4":0.0108,"6.2-6.4":0.0108,"7.2-7.4":0.3563,"8.2":0,"9.2":0.03239,"10.1":0.07558,"11.1-11.2":0.10797,"12.0":0.0108,"13.0":0.08637,"14.0":0.12956,"15.0":0.11877,"16.0":0.20514,"17.0":4.35113,"18.0":0},I:{"0":0,"3":0,"4":0.13246,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05298,"4.4":0,"4.4.3-4.4.4":1.53654},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00373,"11":0.01118,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.74678},S:{"2.5":0},R:{_:"0"},M:{"0":0.13175},Q:{"10.4":0},O:{"0":0.48937},H:{"0":0.19007}}; 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 62456b95add481e..706387499ff5ed8 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.04197,"52":0.01865,"72":0.00466,"78":0.02798,"81":0.00466,"88":0.00933,"89":0.00933,"90":0.02332,"91":0.04197,"94":0.00466,"95":0.00933,"96":0.00933,"97":0.00466,"98":0.00933,"99":0.01399,"100":0.02332,"101":0.06995,"102":1.26834,"103":0.06995,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 92 93 104 105 3.5 3.6"},D:{"11":0.00466,"22":0.02798,"26":0.01399,"30":0.00933,"34":0.10259,"38":0.2145,"48":0.01399,"49":0.09326,"53":0.06062,"55":0.03264,"56":0.00933,"57":0.00466,"58":0.00466,"61":0.04197,"62":0.01399,"63":0.01399,"64":0.00466,"65":0.01399,"67":0.02332,"68":0.01865,"69":0.04197,"70":0.01399,"71":0.01399,"72":0.04197,"73":0.01399,"74":0.0373,"75":0.05129,"76":0.01865,"77":0.00933,"78":0.04663,"79":0.92794,"80":0.05129,"81":0.0373,"83":0.10725,"84":0.04197,"85":0.04197,"86":0.08393,"87":0.14455,"88":0.01865,"89":0.20984,"90":0.02798,"91":0.05596,"92":0.13056,"93":0.01865,"94":0.19118,"95":0.05596,"96":0.16321,"97":0.22849,"98":0.14922,"99":0.18186,"100":0.30776,"101":0.52226,"102":1.50615,"103":22.77876,"104":0.01865,"105":0.02332,_:"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 50 51 52 54 59 60 66 106"},F:{"28":0.0373,"36":0.05129,"40":0.00933,"46":0.10259,"87":0.00466,"88":0.13056,"89":0.05596,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00933,"17":0.00466,"18":0.02332,"97":0.00466,"98":0.00466,"99":0.01399,"100":0.01399,"101":0.04663,"102":0.11658,"103":4.05215,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"7":0.02332,"8":0.00466,"11":0.00466,"12":0.01399,"13":0.10259,"14":0.38237,"15":0.11191,_:"0 5 6 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00933,"10.1":0.01865,"11.1":0.04197,"12.1":0.06528,"13.1":0.33574,"14.1":0.92327,"15.1":0.14922,"15.2-15.3":0.17719,"15.4":0.86732,"15.5":4.63036,"15.6":0.06528,"16.0":0.01399},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00615,"5.0-5.1":0.01641,"6.0-6.1":0.01641,"7.0-7.1":0.02871,"8.1-8.4":0.03692,"9.0-9.2":0.02461,"9.3":0.25431,"10.0-10.2":0.01231,"10.3":0.15177,"11.0-11.2":0.03487,"11.3-11.4":0.03897,"12.0-12.1":0.04922,"12.2-12.5":0.80806,"13.0-13.1":0.04512,"13.2":0.01436,"13.3":0.1005,"13.4-13.7":0.27892,"14.0-14.4":0.73833,"14.5-14.8":1.49307,"15.0-15.1":0.50248,"15.2-15.3":0.68296,"15.4":1.65714,"15.5":13.26944,"16.0":0.02871},P:{"4":1.34549,"5.0-5.4":0.01085,"6.2-6.4":0.05069,"7.2-7.4":0.01085,"8.2":0.01085,"9.2":0.0651,"10.1":0.07368,"11.1-11.2":0.0434,"12.0":0.0217,"13.0":0.09766,"14.0":0.18446,"15.0":0.07596,"16.0":0.20616,"17.0":5.20836},I:{"0":0,"3":0,"4":0.0056,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00448,"4.2-4.3":0.01007,"4.4":0,"4.4.3-4.4.4":0.04925},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.15018,"11":0.87102,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.21352},Q:{"10.4":0.39501},O:{"0":0.83807},H:{"0":0.10107},L:{"0":25.20338}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01997,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00999,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00499,"69":0,"70":0,"71":0,"72":0.00499,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01498,"79":0,"80":0,"81":0.00499,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00499,"89":0.00499,"90":0.00999,"91":0.01997,"92":0,"93":0,"94":0.00499,"95":0.00499,"96":0.00499,"97":0.00499,"98":0.00499,"99":0.00499,"100":0.01498,"101":0.04494,"102":0.65408,"103":0.0749,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01498,"23":0,"24":0,"25":0,"26":0.00499,"27":0,"28":0,"29":0,"30":0.00499,"31":0,"32":0,"33":0,"34":0.04993,"35":0,"36":0,"37":0,"38":0.10485,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00499,"49":0.04494,"50":0,"51":0,"52":0,"53":0.02996,"54":0,"55":0.01498,"56":0.00499,"57":0.00499,"58":0.00499,"59":0,"60":0,"61":0.01997,"62":0.00999,"63":0.00499,"64":0.00499,"65":0.00499,"66":0,"67":0.00999,"68":0.00999,"69":0.02497,"70":0.00999,"71":0.00999,"72":0.01997,"73":0.00499,"74":0.01997,"75":0.02497,"76":0.00999,"77":0.00499,"78":0.02497,"79":0.46435,"80":0.02497,"81":0.02497,"83":0.05492,"84":0.02497,"85":0.01997,"86":0.03994,"87":0.0749,"88":0.00999,"89":0.10485,"90":0.01498,"91":0.02996,"92":0.10485,"93":0.01498,"94":0.09487,"95":0.02996,"96":0.07989,"97":0.11484,"98":0.07989,"99":0.08987,"100":0.15478,"101":0.25964,"102":0.73397,"103":11.44396,"104":0.00999,"105":0.01498,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01997,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02497,"37":0,"38":0,"39":0,"40":0.00499,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.05492,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00499,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00499,"88":0.05992,"89":0.02996,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00499,"13":0,"14":0,"15":0,"16":0,"17":0.00499,"18":0.00999,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00499,"97":0.00499,"98":0.00499,"99":0.00999,"100":0.00499,"101":0.02497,"102":0.0749,"103":2.05212,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00999,"8":0.00499,"9":0,"10":0,"11":0.00499,"12":0.00499,"13":0.04993,"14":0.18973,"15":0.05492,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00499,"10.1":0.00999,"11.1":0.01997,"12.1":0.03495,"13.1":0.16976,"14.1":0.45936,"15.1":0.0749,"15.2-15.3":0.08488,"15.4":0.4294,"15.5":2.29678,"15.6":0.04993,"16.0":0.00499},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00948,"5.0-5.1":0.02528,"6.0-6.1":0.02528,"7.0-7.1":0.04424,"8.1-8.4":0.05688,"9.0-9.2":0.03792,"9.3":0.39181,"10.0-10.2":0.01896,"10.3":0.23382,"11.0-11.2":0.05372,"11.3-11.4":0.06003,"12.0-12.1":0.07583,"12.2-12.5":1.24493,"13.0-13.1":0.06951,"13.2":0.02212,"13.3":0.15483,"13.4-13.7":0.42972,"14.0-14.4":1.1375,"14.5-14.8":2.30029,"15.0-15.1":0.77413,"15.2-15.3":1.05219,"15.4":2.55306,"15.5":20.44347,"16.0":0.04424},P:{"4":1.27745,"5.0-5.4":0.01073,"6.2-6.4":0.01073,"7.2-7.4":0.0322,"8.2":0.01073,"9.2":0.06441,"10.1":0.02147,"11.1-11.2":0.04294,"12.0":0.0322,"13.0":0.09661,"14.0":0.16102,"15.0":0.07514,"16.0":0.18249,"17.0":4.8307,"18.0":0.01073},I:{"0":0,"3":0,"4":0.01411,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01129,"4.2-4.3":0.02539,"4.4":0,"4.4.3-4.4.4":0.12415},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.08214,"10":0,"11":0.42714,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.35648},S:{"2.5":0},R:{_:"0"},M:{"0":0.20028},Q:{"10.4":0.36551},O:{"0":0.78109},H:{"0":0.09481}}; 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 039a99085d7523b..96ac4e34949c70a 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:{"12":0.00807,"47":0.00807,"52":0.03229,"57":0.00807,"73":0.06861,"78":0.00807,"88":0.00807,"91":0.01614,"97":0.00404,"99":0.0444,"100":0.00807,"101":0.04036,"102":1.16237,"103":0.13722,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 89 90 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"38":0.01614,"41":0.06861,"47":0.01614,"49":0.02825,"53":0.02825,"63":0.00807,"65":0.00807,"66":0.00807,"67":0.00807,"68":0.07668,"69":0.00807,"70":0.01614,"71":0.00404,"73":0.00404,"74":0.01211,"75":0.01211,"76":0.02422,"77":0.00807,"78":0.02018,"79":0.21391,"80":0.01211,"81":0.01614,"83":0.02825,"84":0.02422,"85":0.02018,"86":0.02422,"87":0.02018,"88":0.04036,"89":0.03632,"90":0.02018,"91":0.12108,"92":0.04036,"93":0.06861,"94":0.01614,"95":0.01211,"96":0.08476,"97":0.0565,"98":0.06458,"99":0.07668,"100":0.11301,"101":0.23005,"102":1.09376,"103":23.27158,"104":0.05247,_:"4 5 6 7 8 9 10 11 12 13 14 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 58 59 60 61 62 64 72 105 106"},F:{"28":0.00807,"84":0.00404,"85":0.01211,"86":0.01211,"87":0.06861,"88":1.8162,"89":0.46818,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01614,"17":0.00807,"18":0.03632,"84":0.00807,"85":0.00404,"89":0.00807,"92":0.01211,"96":0.00404,"97":0.00404,"98":0.01614,"99":0.01614,"100":0.02422,"101":0.09686,"102":0.07668,"103":4.04811,_:"12 13 14 16 79 80 81 83 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.01614,"14":0.03632,"15":0.02422,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.01614,"9.1":0.00807,"11.1":0.00807,"12.1":0.01614,"13.1":0.11301,"14.1":0.22198,"15.1":0.06054,"15.2-15.3":0.0565,"15.4":0.16951,"15.5":0.83545,"15.6":0.03632,"16.0":0.02825},G:{"8":0.00106,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00639,"6.0-6.1":0.0362,"7.0-7.1":0.00852,"8.1-8.4":0.00319,"9.0-9.2":0,"9.3":0.08198,"10.0-10.2":0.00106,"10.3":0.07772,"11.0-11.2":0.00532,"11.3-11.4":0.00958,"12.0-12.1":0.00639,"12.2-12.5":0.40882,"13.0-13.1":0.00852,"13.2":0.00639,"13.3":0.05536,"13.4-13.7":0.08304,"14.0-14.4":0.30768,"14.5-14.8":0.56319,"15.0-15.1":0.16928,"15.2-15.3":0.42692,"15.4":0.54935,"15.5":7.44601,"16.0":0.12137},P:{"4":0.22909,"5.0-5.4":0.17233,"6.2-6.4":0.05069,"7.2-7.4":0.20827,"8.2":0.05069,"9.2":0.02083,"10.1":0.07368,"11.1-11.2":0.12496,"12.0":0.02083,"13.0":0.07289,"14.0":0.09372,"15.0":0.05207,"16.0":0.24992,"17.0":2.20763},I:{"0":0,"3":0,"4":0.00431,"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.06784},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0444,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.22067},Q:{"10.4":0},O:{"0":0.10735},H:{"0":0.25408},L:{"0":48.26289}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00412,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00412,"48":0,"49":0,"50":0,"51":0,"52":0.01237,"53":0,"54":0,"55":0,"56":0,"57":0.00412,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00412,"69":0,"70":0,"71":0,"72":0,"73":0.02885,"74":0,"75":0,"76":0,"77":0,"78":0.00412,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00412,"89":0,"90":0,"91":0.00824,"92":0,"93":0,"94":0,"95":0.00412,"96":0,"97":0.00412,"98":0,"99":0.02061,"100":0.00412,"101":0.02061,"102":0.55235,"103":0.05771,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00412,"39":0,"40":0,"41":0.02885,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00412,"48":0,"49":0.01237,"50":0,"51":0,"52":0,"53":0.01237,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00412,"64":0,"65":0.00412,"66":0.00412,"67":0.00412,"68":0.03298,"69":0.00412,"70":0.00824,"71":0.00412,"72":0,"73":0,"74":0.00412,"75":0.00412,"76":0.00824,"77":0.00412,"78":0.00824,"79":0.08656,"80":0.00412,"81":0.01237,"83":0.01237,"84":0.00824,"85":0.00824,"86":0.01237,"87":0.01237,"88":0.02061,"89":0.01649,"90":0.02061,"91":0.05359,"92":0.02473,"93":0.02885,"94":0.00824,"95":0.00824,"96":0.0371,"97":0.02473,"98":0.02885,"99":0.0371,"100":0.04946,"101":0.09893,"102":0.45754,"103":9.6867,"104":0.02061,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00412,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02473,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00412,"85":0.00412,"86":0.00412,"87":0.02885,"88":0.74608,"89":0.19373,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00824,"16":0,"17":0.00412,"18":0.01649,"79":0,"80":0,"81":0,"83":0,"84":0.00412,"85":0,"86":0,"87":0,"88":0,"89":0.00412,"90":0,"91":0,"92":0.00412,"93":0,"94":0,"95":0,"96":0.00412,"97":0,"98":0.00824,"99":0.00824,"100":0.01237,"101":0.04122,"102":0.04122,"103":1.69414,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00824,"14":0.01237,"15":0.00824,_:"0","3.1":0,"3.2":0,"5.1":0.00824,"6.1":0,"7.1":0,"9.1":0.00412,"10.1":0,"11.1":0.00412,"12.1":0.00824,"13.1":0.04534,"14.1":0.09068,"15.1":0.02473,"15.2-15.3":0.02473,"15.4":0.07007,"15.5":0.34213,"15.6":0.01649,"16.0":0.01237},G:{"8":0.00154,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00925,"6.0-6.1":0.05242,"7.0-7.1":0.01233,"8.1-8.4":0.00462,"9.0-9.2":0,"9.3":0.11871,"10.0-10.2":0.00154,"10.3":0.11254,"11.0-11.2":0.00771,"11.3-11.4":0.01387,"12.0-12.1":0.00925,"12.2-12.5":0.59199,"13.0-13.1":0.01233,"13.2":0.00925,"13.3":0.08017,"13.4-13.7":0.12025,"14.0-14.4":0.44554,"14.5-14.8":0.81553,"15.0-15.1":0.24512,"15.2-15.3":0.6182,"15.4":0.79549,"15.5":10.78231,"16.0":0.17575},P:{"4":0.23605,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.21553,"8.2":0.01026,"9.2":0.03079,"10.1":0,"11.1-11.2":0.13342,"12.0":0.02053,"13.0":0.08211,"14.0":0.09237,"15.0":0.05132,"16.0":0.23605,"17.0":2.12448,"18.0":0},I:{"0":0,"3":0,"4":0.02234,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02792,"4.4":0,"4.4.3-4.4.4":0.3518},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02061,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.09559},S:{"2.5":0},R:{_:"0"},M:{"0":0.21749},Q:{"10.4":0},O:{"0":0.1058},H:{"0":0.25042}}; 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 1ec61d26acd2efc..9fcce042f56b3dd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js @@ -1 +1 @@ -module.exports={C:{"52":0.06309,"68":0.00789,"72":0.00394,"78":0.01577,"81":0.00789,"82":0.00789,"84":0.01183,"85":0.01183,"88":0.01183,"89":0.02366,"91":0.04732,"92":0.00394,"95":0.00789,"96":0.00394,"97":0.01183,"98":0.01183,"99":0.06703,"100":0.03943,"101":0.3667,"102":3.61573,"103":0.30361,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 83 86 87 90 93 94 104 105 3.5 3.6"},D:{"34":0.00394,"38":0.01972,"41":0.0276,"47":0.00789,"49":0.03549,"53":0.02366,"63":0.00789,"65":0.01183,"66":0.01183,"67":0.00789,"68":0.00394,"69":0.01183,"70":0.00394,"71":0.00394,"73":0.00394,"75":0.02366,"76":0.00789,"77":0.05915,"78":0.00789,"79":0.12618,"80":0.01972,"81":0.0552,"83":0.01183,"84":0.01577,"85":0.01577,"86":0.04337,"87":0.04732,"88":0.01183,"89":0.0276,"90":0.01577,"91":0.01972,"92":0.05126,"93":0.01577,"94":0.0276,"95":0.01577,"96":0.10646,"97":0.03943,"98":0.03549,"99":0.04732,"100":0.1104,"101":0.15772,"102":1.2105,"103":23.37805,"104":0.01183,_:"4 5 6 7 8 9 10 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 55 56 57 58 59 60 61 62 64 72 74 105 106"},F:{"28":0.00789,"46":0.01972,"84":0.00394,"85":0.01972,"86":0.00789,"87":0.04337,"88":1.30513,"89":0.55202,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 11.1 11.5 11.6 12.1","10.0-10.1":0,"10.6":0.03154},B:{"14":0.00394,"18":0.00789,"84":0.01183,"92":0.01183,"96":0.00394,"99":0.01972,"100":0.00789,"101":0.01972,"102":0.06309,"103":2.69701,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 97 98"},E:{"4":0,"12":0.00394,"13":0.01972,"14":0.07097,"15":0.01972,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01183,"12.1":0.01183,"13.1":0.09463,"14.1":0.18138,"15.1":0.06309,"15.2-15.3":0.05126,"15.4":0.17349,"15.5":0.98575,"15.6":0.03943,"16.0":0.01577},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0055,"6.0-6.1":0,"7.0-7.1":0.0011,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03962,"10.0-10.2":0,"10.3":0.06384,"11.0-11.2":0.00991,"11.3-11.4":0.01101,"12.0-12.1":0.0077,"12.2-12.5":0.21463,"13.0-13.1":0.00991,"13.2":0.0033,"13.3":0.02642,"13.4-13.7":0.06384,"14.0-14.4":0.25535,"14.5-14.8":0.79798,"15.0-15.1":0.21243,"15.2-15.3":0.39624,"15.4":0.76716,"15.5":7.89941,"16.0":0.03852},P:{"4":0.14468,"5.0-5.4":0.01037,"6.2-6.4":0.01093,"7.2-7.4":0.23853,"8.2":0.05271,"9.2":0.09334,"10.1":0.01083,"11.1-11.2":0.031,"12.0":0.02067,"13.0":0.06201,"14.0":0.09301,"15.0":0.05167,"16.0":0.21702,"17.0":3.56533},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0101,"4.2-4.3":0.01817,"4.4":0,"4.4.3-4.4.4":0.06259},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14983,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.38159},Q:{"10.4":0},O:{"0":0.06057},H:{"0":0.48742},L:{"0":44.18957}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02395,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01198,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00798,"79":0,"80":0,"81":0.00399,"82":0.00399,"83":0,"84":0.00399,"85":0.00399,"86":0.00399,"87":0,"88":0.00399,"89":0.00798,"90":0,"91":0.01996,"92":0.00798,"93":0,"94":0.00399,"95":0.00399,"96":0.00399,"97":0.00798,"98":0.00399,"99":0.03194,"100":0.02395,"101":0.1517,"102":1.50099,"103":0.15569,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00798,"39":0,"40":0,"41":0.01198,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00399,"48":0,"49":0.01198,"50":0,"51":0,"52":0,"53":0.01198,"54":0,"55":0,"56":0.00399,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00399,"64":0,"65":0.00399,"66":0.00399,"67":0.00399,"68":0.00399,"69":0.00399,"70":0.00399,"71":0.00399,"72":0,"73":0.00399,"74":0,"75":0.00798,"76":0.00399,"77":0.02395,"78":0.00399,"79":0.0519,"80":0.00798,"81":0.02794,"83":0.00399,"84":0.00798,"85":0.00798,"86":0.01996,"87":0.01996,"88":0.00399,"89":0.01198,"90":0.00798,"91":0.00798,"92":0.02395,"93":0.00798,"94":0.01198,"95":0.00798,"96":0.04391,"97":0.01597,"98":0.01597,"99":0.01996,"100":0.04391,"101":0.06387,"102":0.48303,"103":9.4291,"104":0.00399,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00399,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00798,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01198,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00798,"86":0.00399,"87":0.01597,"88":0.50299,"89":0.23553,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0.01597,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00399,"15":0.00399,"16":0,"17":0,"18":0.00399,"79":0,"80":0,"81":0,"83":0,"84":0.00399,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00399,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00798,"100":0.00399,"101":0.00798,"102":0.02794,"103":1.08582,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00798,"14":0.02794,"15":0.00798,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00399,"12.1":0.00399,"13.1":0.03593,"14.1":0.07186,"15.1":0.02395,"15.2-15.3":0.01996,"15.4":0.06786,"15.5":0.39122,"15.6":0.01996,"16.0":0.00798},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0079,"6.0-6.1":0,"7.0-7.1":0.00158,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05687,"10.0-10.2":0,"10.3":0.09162,"11.0-11.2":0.01422,"11.3-11.4":0.0158,"12.0-12.1":0.01106,"12.2-12.5":0.30804,"13.0-13.1":0.01422,"13.2":0.00474,"13.3":0.03791,"13.4-13.7":0.09162,"14.0-14.4":0.36649,"14.5-14.8":1.14528,"15.0-15.1":0.30488,"15.2-15.3":0.56869,"15.4":1.10105,"15.5":11.3375,"16.0":0.05529},P:{"4":0.17401,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01024,"11.1-11.2":0.05118,"12.0":0.02047,"13.0":0.06142,"14.0":0.09212,"15.0":0.04094,"16.0":0.21495,"17.0":3.48019,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01911,"4.2-4.3":0.0344,"4.4":0,"4.4.3-4.4.4":0.11847},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05988,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.25184},S:{"2.5":0},R:{_:"0"},M:{"0":0.3725},Q:{"10.4":0.00601},O:{"0":0.06008},H:{"0":0.48917}}; 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 584be74fb985c4f..f5586f2f9545d72 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:{"52":0.00489,"78":0.00326,"84":0.00326,"88":0.00326,"91":0.00978,"95":0.00326,"98":0.00489,"99":0.00326,"100":0.00326,"101":0.0326,"102":0.47107,"103":0.04075,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 96 97 104 105 3.5 3.6"},D:{"33":0.00326,"42":0.00489,"43":0.00163,"49":0.01304,"50":0.00652,"51":0.00163,"53":0.00326,"56":0.02445,"58":0.00163,"59":0.00163,"60":0.0489,"61":0.00489,"62":0.00326,"63":0.03749,"64":0.00326,"65":0.01793,"66":0.00326,"67":0.00163,"68":0.06031,"69":0.02119,"70":0.0163,"71":0.00489,"72":0.00978,"73":0.00326,"74":0.02608,"75":0.02119,"76":0.07824,"77":0.02282,"78":0.01141,"79":0.02282,"80":0.02282,"81":0.06031,"83":0.00489,"84":0.00815,"85":0.00652,"86":0.01956,"87":0.06846,"88":0.06194,"89":0.00978,"90":0.01956,"91":0.02934,"92":0.10106,"93":0.04075,"94":0.0163,"95":0.0326,"96":0.03097,"97":0.02282,"98":0.05542,"99":0.02934,"100":0.06357,"101":0.11247,"102":0.48574,"103":6.89001,"104":0.02282,"105":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 34 35 36 37 38 39 40 41 44 45 46 47 48 52 54 55 57 106"},F:{"63":0.00163,"70":0.00326,"79":0.01467,"82":0.00163,"84":0.00163,"85":0.00652,"86":0.02934,"87":0.01141,"88":0.2445,"89":0.13366,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 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 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03749,"13":0.01793,"14":0.00652,"15":0.02771,"16":0.01304,"17":0.02608,"18":0.03749,"80":0.00326,"84":0.01793,"85":0.00652,"89":0.00815,"90":0.00326,"91":0.00163,"92":0.01304,"94":0.00815,"95":0.00163,"96":0.00326,"97":0.00489,"98":0.00652,"99":0.02282,"100":0.01141,"101":0.05705,"102":0.07498,"103":1.85168,_:"79 81 83 86 87 88 93"},E:{"4":0,"13":0.02771,"14":0.04564,"15":0.00978,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00163,"9.1":0.00326,"10.1":0.00652,"11.1":0.01141,"12.1":0.01793,"13.1":0.05053,"14.1":0.10921,"15.1":0.03912,"15.2-15.3":0.03097,"15.4":0.03912,"15.5":0.27547,"15.6":0.00489,"16.0":0.00326},G:{"8":0.00323,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00323,"6.0-6.1":0,"7.0-7.1":0.00754,"8.1-8.4":0.00323,"9.0-9.2":0,"9.3":0.13681,"10.0-10.2":0.02478,"10.3":0.24991,"11.0-11.2":0.03339,"11.3-11.4":0.46536,"12.0-12.1":0.08295,"12.2-12.5":1.87867,"13.0-13.1":0.0948,"13.2":0.00969,"13.3":0.12603,"13.4-13.7":0.50306,"14.0-14.4":1.37345,"14.5-14.8":1.67184,"15.0-15.1":0.62263,"15.2-15.3":0.61078,"15.4":0.56769,"15.5":2.13074,"16.0":0.06356},P:{"4":0.3548,"5.0-5.4":0.17233,"6.2-6.4":0.05069,"7.2-7.4":0.39534,"8.2":0.05069,"9.2":0.26356,"10.1":0.07368,"11.1-11.2":0.44603,"12.0":0.02027,"13.0":0.23315,"14.0":0.14192,"15.0":0.06082,"16.0":0.28384,"17.0":1.17589},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00027,"4.2-4.3":0.00092,"4.4":0,"4.4.3-4.4.4":0.02392},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00326,"9":0.00489,"11":0.05216,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.12555},Q:{"10.4":0},O:{"0":0.31806},H:{"0":0.92713},L:{"0":71.23674}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00167,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00167,"92":0,"93":0,"94":0,"95":0.00167,"96":0,"97":0,"98":0.00167,"99":0,"100":0.00167,"101":0.01166,"102":0.08663,"103":0.00666,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00167,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00333,"50":0.00167,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.005,"57":0,"58":0,"59":0,"60":0.00833,"61":0.00167,"62":0,"63":0.00666,"64":0.00333,"65":0.00333,"66":0,"67":0,"68":0.01,"69":0.00333,"70":0.00333,"71":0,"72":0.00167,"73":0,"74":0.005,"75":0.00333,"76":0.01333,"77":0.00333,"78":0.00167,"79":0.00333,"80":0.00333,"81":0.01166,"83":0.00167,"84":0.00167,"85":0.00167,"86":0.00333,"87":0.01166,"88":0.01,"89":0.00167,"90":0.00333,"91":0.005,"92":0.01666,"93":0.00666,"94":0.00333,"95":0.00833,"96":0.01,"97":0.00333,"98":0.01,"99":0.005,"100":0.01166,"101":0.01999,"102":0.0833,"103":1.15954,"104":0.00333,"105":0.00167,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00333,"62":0.00333,"63":0.07164,"64":0.00333,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00167,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00167,"86":0.005,"87":0.00167,"88":0.04165,"89":0.02166,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00666,"13":0.00333,"14":0.00167,"15":0.005,"16":0.00167,"17":0.005,"18":0.00666,"79":0,"80":0,"81":0,"83":0,"84":0.00333,"85":0.00167,"86":0,"87":0,"88":0,"89":0.00167,"90":0,"91":0,"92":0.00167,"93":0,"94":0.00167,"95":0,"96":0,"97":0,"98":0.00167,"99":0.00333,"100":0.00167,"101":0.01,"102":0.01333,"103":0.30988,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.005,"14":0.00833,"15":0.00167,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00167,"11.1":0.00167,"12.1":0.00333,"13.1":0.00833,"14.1":0.01833,"15.1":0.00666,"15.2-15.3":0.005,"15.4":0.00666,"15.5":0.04665,"15.6":0.00167,"16.0":0},G:{"8":0.0038,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0038,"6.0-6.1":0,"7.0-7.1":0.00887,"8.1-8.4":0.0038,"9.0-9.2":0,"9.3":0.16091,"10.0-10.2":0.02914,"10.3":0.29394,"11.0-11.2":0.03928,"11.3-11.4":0.54733,"12.0-12.1":0.09756,"12.2-12.5":2.2096,"13.0-13.1":0.11149,"13.2":0.0114,"13.3":0.14824,"13.4-13.7":0.59168,"14.0-14.4":1.61539,"14.5-14.8":1.96634,"15.0-15.1":0.73231,"15.2-15.3":0.71837,"15.4":0.66769,"15.5":2.50607,"16.0":0.07475},P:{"4":0.34606,"5.0-5.4":0.17303,"6.2-6.4":0.06107,"7.2-7.4":0.38677,"8.2":0.05089,"9.2":0.27481,"10.1":0,"11.1-11.2":0.44784,"12.0":0.02036,"13.0":0.2341,"14.0":0.1425,"15.0":0.06107,"16.0":0.28499,"17.0":1.15014,"18.0":0},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.00407,"4.4":0,"4.4.3-4.4.4":0.10634},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00833,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.13409},S:{"2.5":0},R:{_:"0"},M:{"0":0.12501},Q:{"10.4":0},O:{"0":0.31669},H:{"0":0.92314}}; 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 c747f1b7cb28a09..1423bf8d0bfb61c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js @@ -1 +1 @@ -module.exports={C:{"47":0.00823,"52":0.10696,"68":0.01234,"72":0.01234,"78":0.03291,"81":0.00823,"82":0.00411,"83":0.00823,"84":0.00411,"88":0.01646,"89":0.01646,"90":0.00411,"91":0.09462,"92":0.00411,"94":0.00823,"95":0.02057,"96":0.00823,"97":0.00823,"98":0.01646,"99":0.32912,"100":0.04937,"101":0.22627,"102":6.07638,"103":0.65001,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 85 86 87 93 104 105 3.5 3.6"},D:{"34":0.01234,"38":0.0288,"49":0.0576,"53":0.01646,"58":0.00823,"62":0.00411,"66":0.00411,"68":0.00411,"69":0.01646,"71":0.00411,"73":0.00823,"74":0.00823,"75":0.00411,"76":0.00411,"77":0.00411,"78":0.01234,"79":0.34146,"80":0.00823,"81":0.01234,"83":0.0288,"84":0.01646,"85":0.02468,"86":0.01646,"87":0.04937,"88":0.01646,"89":0.0288,"90":0.01646,"91":0.03291,"92":0.02468,"93":0.01234,"94":0.01646,"95":0.0288,"96":0.04937,"97":0.02468,"98":0.0288,"99":0.0576,"100":0.48134,"101":0.14399,"102":0.92154,"103":22.40896,"104":0.02468,"105":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 63 64 65 67 70 72 106"},F:{"28":0.00411,"36":0.00823,"40":0.00411,"46":0.00823,"79":0.00823,"83":0.00411,"85":0.03291,"86":0.01646,"87":0.05348,"88":1.22186,"89":0.6171,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00411,"18":0.01234,"87":0.00823,"92":0.00823,"97":0.00411,"99":0.00411,"100":0.00823,"101":0.06171,"102":0.13576,"103":3.22126,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96 98"},E:{"4":0,"13":0.01234,"14":0.06171,"15":0.01234,_:"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.00823,"12.1":0.01646,"13.1":0.06994,"14.1":0.12753,"15.1":0.03291,"15.2-15.3":0.03291,"15.4":0.12753,"15.5":0.74875,"15.6":0.0576,"16.0":0.01234},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00328,"6.0-6.1":0,"7.0-7.1":0.00656,"8.1-8.4":0.00109,"9.0-9.2":0,"9.3":0.03061,"10.0-10.2":0.00109,"10.3":0.03826,"11.0-11.2":0.00984,"11.3-11.4":0.00984,"12.0-12.1":0.01093,"12.2-12.5":0.27111,"13.0-13.1":0.00875,"13.2":0.00328,"13.3":0.02296,"13.4-13.7":0.08199,"14.0-14.4":0.23722,"14.5-14.8":0.64935,"15.0-15.1":0.15851,"15.2-15.3":0.33889,"15.4":0.63951,"15.5":8.02722,"16.0":0.07215},P:{"4":0.38368,"5.0-5.4":0.01085,"6.2-6.4":0.05069,"7.2-7.4":0.01085,"8.2":0.01085,"9.2":0.0651,"10.1":0.07368,"11.1-11.2":0.01037,"12.0":0.0217,"13.0":0.04148,"14.0":0.05185,"15.0":0.03111,"16.0":0.1037,"17.0":2.1673},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02289,"4.2-4.3":0.01962,"4.4":0,"4.4.3-4.4.4":0.16347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00411,"9":0.00411,"11":0.09462,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.29425},Q:{"10.4":0},O:{"0":0.03531},H:{"0":0.39001},L:{"0":44.87232}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00418,"48":0,"49":0,"50":0,"51":0,"52":0.07111,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00837,"69":0,"70":0,"71":0,"72":0.00418,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01255,"79":0,"80":0,"81":0.00418,"82":0.00418,"83":0.00418,"84":0.00418,"85":0,"86":0,"87":0,"88":0.00837,"89":0.00837,"90":0.00418,"91":0.04183,"92":0,"93":0.00418,"94":0.00418,"95":0.00837,"96":0.00418,"97":0.00418,"98":0.00837,"99":0.13804,"100":0.0251,"101":0.10458,"102":2.62274,"103":0.28026,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00418,"35":0,"36":0,"37":0,"38":0.01255,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0251,"50":0,"51":0,"52":0,"53":0.00837,"54":0,"55":0,"56":0,"57":0,"58":0.00418,"59":0,"60":0,"61":0,"62":0.00418,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00418,"70":0.00418,"71":0.00418,"72":0,"73":0.00418,"74":0.00418,"75":0,"76":0.00418,"77":0.00418,"78":0.00418,"79":0.14222,"80":0.00418,"81":0.01255,"83":0.01255,"84":0.00837,"85":0.01255,"86":0.00837,"87":0.02092,"88":0.00837,"89":0.01673,"90":0.00837,"91":0.01673,"92":0.01673,"93":0.00837,"94":0.00837,"95":0.01673,"96":0.02092,"97":0.01255,"98":0.01255,"99":0.0251,"100":0.20497,"101":0.06693,"102":0.39739,"103":9.49123,"104":0.00837,"105":0.00418,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00418,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00418,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00418,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01673,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00418,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00418,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01255,"86":0.00837,"87":0.02092,"88":0.51033,"89":0.25935,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00418,"16":0,"17":0.00418,"18":0.00418,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00418,"88":0,"89":0,"90":0,"91":0,"92":0.00418,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00418,"100":0.00418,"101":0.0251,"102":0.06275,"103":1.36784,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00418,"14":0.0251,"15":0.00418,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00418,"12.1":0.00837,"13.1":0.02928,"14.1":0.05438,"15.1":0.01255,"15.2-15.3":0.01255,"15.4":0.05438,"15.5":0.31373,"15.6":0.0251,"16.0":0.00418},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0048,"6.0-6.1":0,"7.0-7.1":0.0096,"8.1-8.4":0.0016,"9.0-9.2":0,"9.3":0.0448,"10.0-10.2":0.0016,"10.3":0.056,"11.0-11.2":0.0144,"11.3-11.4":0.0144,"12.0-12.1":0.016,"12.2-12.5":0.39683,"13.0-13.1":0.0128,"13.2":0.0048,"13.3":0.0336,"13.4-13.7":0.12001,"14.0-14.4":0.34723,"14.5-14.8":0.95048,"15.0-15.1":0.23202,"15.2-15.3":0.49604,"15.4":0.93608,"15.5":11.74983,"16.0":0.10561},P:{"4":0.38209,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01033,"12.0":0.01033,"13.0":0.05163,"14.0":0.05163,"15.0":0.03098,"16.0":0.10327,"17.0":2.117,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03982,"4.2-4.3":0.03413,"4.4":0,"4.4.3-4.4.4":0.28442},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03765,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.24917},S:{"2.5":0},R:{_:"0"},M:{"0":0.29085},Q:{"10.4":0},O:{"0":0.0349},H:{"0":0.3855}}; 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 f50441781a78cba..13c9fb632c39681 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.17551,"45":0.00319,"47":0.00319,"52":0.02872,"56":0.00319,"66":0.00319,"68":0.00319,"72":0.00957,"78":0.01276,"81":0.00319,"83":0.00319,"84":0.00319,"85":0.00319,"88":0.02234,"89":0.00638,"90":0.00319,"91":0.01915,"92":0.00319,"93":0.00638,"94":0.00638,"95":0.00957,"96":0.00957,"97":0.00957,"98":0.01276,"99":0.04787,"100":0.0351,"101":0.14998,"102":2.40921,"103":0.30315,"104":0.00957,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 86 87 105 3.5 3.6"},D:{"25":0.00638,"49":0.00957,"58":0.00319,"61":0.00319,"63":0.01276,"64":0.00319,"65":0.00319,"66":0.00319,"67":0.00638,"69":0.00957,"70":0.01276,"71":0.01276,"72":0.00957,"73":0.00957,"74":0.02234,"75":0.00638,"76":0.00957,"77":0.00957,"78":0.00957,"79":0.0351,"80":0.04467,"81":0.01915,"83":0.02553,"84":0.03191,"85":0.02553,"86":0.03829,"87":0.04787,"88":0.01915,"89":0.08297,"90":0.01276,"91":0.02872,"92":0.03829,"93":0.01915,"94":0.02553,"95":0.02553,"96":0.06063,"97":0.04148,"98":0.04148,"99":0.05106,"100":0.08616,"101":0.14679,"102":0.85519,"103":20.7064,"104":0.00957,"105":0.00957,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 62 68 106"},F:{"79":0.00319,"85":0.01596,"86":0.00638,"87":0.00957,"88":0.30315,"89":0.16912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00638,"14":0.00319,"18":0.01276,"84":0.00638,"89":0.00319,"90":0.00319,"92":0.00957,"96":0.00638,"98":0.00319,"99":0.00638,"100":0.00638,"101":0.01596,"102":0.05106,"103":2.055,_:"13 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95 97"},E:{"4":0,"12":0.00319,"13":0.01596,"14":0.04787,"15":0.01596,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 16.0","5.1":0.07339,"11.1":0.00957,"12.1":0.01596,"13.1":0.06063,"14.1":0.10211,"15.1":0.03829,"15.2-15.3":0.02553,"15.4":0.06701,"15.5":0.27762,"15.6":0.01276},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00848,"10.0-10.2":0.00242,"10.3":0.01272,"11.0-11.2":0.0103,"11.3-11.4":0.00424,"12.0-12.1":0.01091,"12.2-12.5":0.21992,"13.0-13.1":0.01091,"13.2":0.00848,"13.3":0.0315,"13.4-13.7":0.07391,"14.0-14.4":0.26718,"14.5-14.8":0.47438,"15.0-15.1":0.2387,"15.2-15.3":0.31686,"15.4":0.71187,"15.5":3.49451,"16.0":0.01939},P:{"4":0.15884,"5.0-5.4":0.01085,"6.2-6.4":0.05069,"7.2-7.4":0.07413,"8.2":0.01085,"9.2":0.02118,"10.1":0.02085,"11.1-11.2":0.06354,"12.0":0.02118,"13.0":0.08471,"14.0":0.08471,"15.0":0.06354,"16.0":0.19061,"17.0":1.26014},I:{"0":0,"3":0.00189,"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.02648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03191,"11":0.07339,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.16344},Q:{"10.4":0},O:{"0":1.10322},H:{"0":1.03156},L:{"0":59.49121}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.05447,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00961,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0032,"69":0,"70":0,"71":0,"72":0.0032,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0032,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0032,"85":0,"86":0,"87":0,"88":0.00641,"89":0.0032,"90":0,"91":0.00641,"92":0.0032,"93":0.0032,"94":0.0032,"95":0.0032,"96":0.0032,"97":0.0032,"98":0.00641,"99":0.01602,"100":0.01282,"101":0.05767,"102":0.7978,"103":0.09932,"104":0.0032,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.0032,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0032,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0032,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0032,"70":0.0032,"71":0.0032,"72":0.0032,"73":0.0032,"74":0.00641,"75":0.0032,"76":0.0032,"77":0.0032,"78":0.0032,"79":0.00961,"80":0.01602,"81":0.00641,"83":0.00961,"84":0.00961,"85":0.00641,"86":0.01282,"87":0.01602,"88":0.00641,"89":0.02884,"90":0.00641,"91":0.00961,"92":0.01602,"93":0.00641,"94":0.00961,"95":0.00961,"96":0.01922,"97":0.01282,"98":0.01282,"99":0.01602,"100":0.02884,"101":0.04806,"102":0.27554,"103":6.6451,"104":0.0032,"105":0.0032,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.01282,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0032,"56":0,"57":0,"58":0.00641,"60":0.00641,"62":0,"63":0.12496,"64":0.00961,"65":0,"66":0,"67":0,"68":0,"69":0.0032,"70":0.0032,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00641,"86":0,"87":0.0032,"88":0.09612,"89":0.05447,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0032,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0032,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0032,"93":0,"94":0,"95":0,"96":0.0032,"97":0,"98":0,"99":0.0032,"100":0.0032,"101":0.00641,"102":0.01922,"103":0.66323,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00641,"14":0.01602,"15":0.00641,_:"0","3.1":0,"3.2":0,"5.1":0.02243,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0032,"12.1":0.0032,"13.1":0.01922,"14.1":0.03204,"15.1":0.01282,"15.2-15.3":0.00961,"15.4":0.02243,"15.5":0.08971,"15.6":0.0032,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00165,"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.01158,"10.0-10.2":0.00331,"10.3":0.01737,"11.0-11.2":0.01406,"11.3-11.4":0.00579,"12.0-12.1":0.01489,"12.2-12.5":0.30032,"13.0-13.1":0.01489,"13.2":0.01158,"13.3":0.04302,"13.4-13.7":0.10093,"14.0-14.4":0.36485,"14.5-14.8":0.64779,"15.0-15.1":0.32596,"15.2-15.3":0.43269,"15.4":0.9721,"15.5":4.77197,"16.0":0.02647},P:{"4":0.16147,"5.0-5.4":0,"6.2-6.4":0.01009,"7.2-7.4":0.07064,"8.2":0.01009,"9.2":0.03028,"10.1":0.02018,"11.1-11.2":0.08074,"12.0":0.03028,"13.0":0.08074,"14.0":0.08074,"15.0":0.06055,"16.0":0.18166,"17.0":1.20096,"18.0":0},I:{"0":0,"3":0.00313,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00313,"4.2-4.3":0.00627,"4.4":0,"4.4.3-4.4.4":0.04387},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00961,"9":0,"10":0,"11":0.02243,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.12203},S:{"2.5":0},R:{_:"0"},M:{"0":0.1631},Q:{"10.4":0.0068},O:{"0":1.10095},H:{"0":1.02944}}; 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 0100c3269c50427..97c65caaff99cd9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js @@ -1 +1 @@ -module.exports={C:{"38":0.02244,"43":0.02244,"44":0.08977,"45":0.01924,"48":0.00641,"50":0.00641,"52":0.01603,"53":0.00641,"56":0.07053,"68":0.00321,"70":0.00641,"77":0.00962,"78":0.04488,"79":0.02565,"80":0.01924,"81":0.01603,"82":0.00962,"83":0.00641,"84":0.00321,"87":0.08656,"88":0.00321,"91":0.0513,"97":0.00321,"98":0.00641,"99":0.00641,"100":0.01603,"101":0.11542,"102":1.20546,"103":0.13465,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 85 86 89 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"17":0.00641,"38":0.00641,"41":0.00321,"43":0.00321,"47":0.02244,"48":0.24366,"49":0.09297,"53":0.00641,"63":0.00321,"65":0.01282,"67":0.00321,"69":0.00962,"70":0.00641,"71":0.00321,"72":0.00321,"73":0.00321,"75":0.00641,"76":0.05771,"77":0.00641,"78":0.41357,"79":0.09939,"80":0.02885,"81":0.17312,"83":0.06733,"84":0.13786,"85":0.13786,"86":0.12503,"87":0.12824,"88":0.00962,"89":0.03847,"90":0.00641,"91":0.03206,"92":0.02244,"93":0.01924,"94":0.03847,"95":0.00962,"96":0.31419,"97":0.03847,"98":0.06091,"99":0.10259,"100":0.18595,"101":0.93936,"102":1.24393,"103":15.61322,"104":0.01924,"105":0.00641,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 50 51 52 54 55 56 57 58 59 60 61 62 64 66 68 74 106"},F:{"46":0.00321,"68":0.00641,"69":0.00641,"71":0.00641,"72":0.00641,"86":0.00641,"87":0.01924,"88":0.49372,"89":0.14106,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00641},B:{"12":0.00641,"13":0.00962,"15":0.00641,"16":0.00321,"18":0.04488,"83":0.00641,"84":0.00962,"85":0.00321,"86":0.00962,"87":0.01603,"92":0.00641,"95":0.00321,"96":0.00962,"97":0.00962,"99":0.01282,"100":0.01282,"101":0.12824,"102":0.11542,"103":2.89822,_:"14 17 79 80 81 88 89 90 91 93 94 98"},E:{"4":0,"7":0.00641,"8":0.01282,"9":0.03527,"13":0.04168,"14":0.19557,"15":0.04168,_:"0 5 6 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00641,"11.1":0.01924,"12.1":0.03527,"13.1":0.2148,"14.1":0.44884,"15.1":0.08015,"15.2-15.3":0.07374,"15.4":0.32701,"15.5":1.8723,"15.6":0.06091,"16.0":0.00962},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00578,"5.0-5.1":0,"6.0-6.1":0.02022,"7.0-7.1":0.05777,"8.1-8.4":0.02311,"9.0-9.2":0.00578,"9.3":0.12998,"10.0-10.2":0.00289,"10.3":0.15886,"11.0-11.2":0.01444,"11.3-11.4":0.08954,"12.0-12.1":0.01733,"12.2-12.5":0.88673,"13.0-13.1":0.01733,"13.2":0.03755,"13.3":0.05777,"13.4-13.7":0.23107,"14.0-14.4":0.71343,"14.5-14.8":2.34248,"15.0-15.1":0.47947,"15.2-15.3":1.01093,"15.4":1.77635,"15.5":20.34286,"16.0":0.05199},P:{"4":0.05184,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.03111,"8.2":0.07034,"9.2":0.05115,"10.1":0.09044,"11.1-11.2":0.07258,"12.0":0.02074,"13.0":0.09332,"14.0":0.12443,"15.0":0.04148,"16.0":0.22812,"17.0":3.69134},I:{"0":0,"3":0,"4":0.00418,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00418,"4.2-4.3":0.01254,"4.4":0,"4.4.3-4.4.4":0.06062},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00654,"9":0.29762,"11":0.18315,_:"6 7 10 5.5"},J:{"7":0,"10":0.00679},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.69978},Q:{"10.4":0},O:{"0":0.03397},H:{"0":0.14794},L:{"0":34.74363}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00662,"39":0,"40":0,"41":0,"42":0,"43":0.00662,"44":0.02978,"45":0.00662,"46":0,"47":0,"48":0.00331,"49":0,"50":0,"51":0,"52":0.00662,"53":0.00331,"54":0,"55":0,"56":0.02316,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00331,"69":0,"70":0.00331,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00331,"78":0.01655,"79":0.00993,"80":0.00662,"81":0.00662,"82":0.00331,"83":0.00331,"84":0,"85":0,"86":0,"87":0.02978,"88":0,"89":0,"90":0,"91":0.01655,"92":0,"93":0.00331,"94":0,"95":0.00331,"96":0.00331,"97":0.00331,"98":0.00331,"99":0.00331,"100":0.00993,"101":0.06287,"102":0.55922,"103":0.05625,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00331,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00331,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00662,"48":0.07942,"49":0.02978,"50":0,"51":0,"52":0,"53":0.00331,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00331,"66":0,"67":0,"68":0,"69":0.00331,"70":0.00331,"71":0,"72":0,"73":0,"74":0,"75":0.00331,"76":0.01985,"77":0.00331,"78":0.13567,"79":0.03309,"80":0.00993,"81":0.05956,"83":0.02316,"84":0.04633,"85":0.04633,"86":0.04302,"87":0.04302,"88":0.00662,"89":0.01324,"90":0.00331,"91":0.00993,"92":0.00993,"93":0.00662,"94":0.01324,"95":0.00331,"96":0.10589,"97":0.01324,"98":0.02316,"99":0.0364,"100":0.06287,"101":0.31105,"102":0.41693,"103":5.22491,"104":0.00662,"105":0.00331,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00662,"64":0,"65":0,"66":0,"67":0,"68":0.00331,"69":0.00331,"70":0,"71":0.00331,"72":0.00331,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00662,"88":0.16214,"89":0.04633,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00331},B:{"12":0.00331,"13":0.00331,"14":0,"15":0.00331,"16":0,"17":0,"18":0.01655,"79":0,"80":0,"81":0,"83":0.00331,"84":0.00331,"85":0,"86":0.00331,"87":0.00662,"88":0,"89":0,"90":0,"91":0,"92":0.00331,"93":0,"94":0,"95":0.00331,"96":0.00331,"97":0.00331,"98":0,"99":0.00331,"100":0.00331,"101":0.04302,"102":0.04302,"103":0.97616,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00331,"8":0.00331,"9":0.01324,"10":0,"11":0,"12":0,"13":0.01324,"14":0.06618,"15":0.01324,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00331,"11.1":0.00662,"12.1":0.01324,"13.1":0.0728,"14.1":0.14891,"15.1":0.02647,"15.2-15.3":0.02316,"15.4":0.1092,"15.5":0.61878,"15.6":0.01985,"16.0":0.00331},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00779,"5.0-5.1":0,"6.0-6.1":0.02728,"7.0-7.1":0.07793,"8.1-8.4":0.03117,"9.0-9.2":0.00779,"9.3":0.17535,"10.0-10.2":0.0039,"10.3":0.21431,"11.0-11.2":0.01948,"11.3-11.4":0.12079,"12.0-12.1":0.02338,"12.2-12.5":1.19625,"13.0-13.1":0.02338,"13.2":0.05066,"13.3":0.07793,"13.4-13.7":0.31173,"14.0-14.4":0.96245,"14.5-14.8":3.16012,"15.0-15.1":0.64683,"15.2-15.3":1.3638,"15.4":2.39639,"15.5":27.44354,"16.0":0.07014},P:{"4":0.07287,"5.0-5.4":0.01041,"6.2-6.4":0,"7.2-7.4":0.03123,"8.2":0,"9.2":0.02082,"10.1":0.01041,"11.1-11.2":0.07287,"12.0":0.03123,"13.0":0.08328,"14.0":0.12492,"15.0":0.04164,"16.0":0.2082,"17.0":3.58105,"18.0":0},I:{"0":0,"3":0,"4":0.01311,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01311,"4.2-4.3":0.03933,"4.4":0,"4.4.3-4.4.4":0.19011},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00331,"9":0.09596,"10":0,"11":0.05956,"5.5":0},J:{"7":0,"10":0.00669},N:{"10":0,"11":0.02676},L:{"0":43.64777},S:{"2.5":0.00669},R:{_:"0"},M:{"0":0.68917},Q:{"10.4":0},O:{"0":0.03346},H:{"0":0.1457}}; 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 7ff584c2ce77643..b1c50919f066c3e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js @@ -1 +1 @@ -module.exports={C:{"24":0.00771,"25":0.01543,"26":0.04243,"27":0.00771,"36":0.00771,"52":0.027,"54":0.00386,"56":0.02314,"66":0.00386,"78":0.01543,"79":0.12342,"80":0.027,"88":0.00771,"89":0.00771,"91":0.01543,"95":0.00386,"97":0.01157,"98":0.01157,"99":0.00771,"100":0.01929,"101":0.09257,"102":1.13396,"103":0.13114,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 82 83 84 85 86 87 90 92 93 94 96 104 105 3.5 3.6"},D:{"31":0.05786,"32":0.01157,"35":0.05014,"38":0.02314,"41":0.01157,"49":0.03086,"53":0.00771,"56":0.00386,"58":0.00386,"65":0.01157,"68":0.01157,"69":0.00771,"70":0.00386,"71":0.00771,"72":0.00771,"73":0.04628,"74":0.01157,"75":0.01157,"76":0.00771,"77":0.00771,"78":0.00771,"79":0.135,"80":0.27385,"81":0.01157,"83":0.01929,"84":0.00771,"85":0.03086,"86":0.03086,"87":0.03857,"88":0.01157,"89":0.05014,"90":0.027,"91":0.027,"92":0.027,"93":0.02314,"94":0.027,"95":0.027,"96":0.09643,"97":0.04243,"98":0.03857,"99":0.07328,"100":0.14271,"101":0.19671,"102":1.79736,"103":25.93833,"104":0.02314,"105":0.00771,_:"4 5 6 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 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 63 64 66 67 106"},F:{"28":0.01157,"85":0.01543,"86":0.00386,"87":0.02314,"88":0.47441,"89":0.20056,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00771,"84":0.00771,"85":0.00771,"86":0.00771,"89":0.00386,"92":0.00771,"96":0.027,"97":0.00386,"98":0.01157,"99":0.01543,"100":0.00771,"101":0.07328,"102":0.08485,"103":2.58033,_:"12 13 14 15 16 17 79 80 81 83 87 88 90 91 93 94 95"},E:{"4":0,"7":0.00771,"8":0.17357,"13":0.01543,"14":0.06171,"15":0.01157,_:"0 5 6 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.01543,"9.1":0.00386,"11.1":0.01157,"12.1":0.00771,"13.1":0.081,"14.1":0.20442,"15.1":0.03857,"15.2-15.3":0.03857,"15.4":0.12728,"15.5":0.84083,"15.6":0.03857,"16.0":0.00386},G:{"8":0.00427,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00285,"6.0-6.1":0.00142,"7.0-7.1":0.02992,"8.1-8.4":0.0114,"9.0-9.2":0.00855,"9.3":0.06268,"10.0-10.2":0.00427,"10.3":0.06838,"11.0-11.2":0.00997,"11.3-11.4":0.02992,"12.0-12.1":0.02137,"12.2-12.5":0.30487,"13.0-13.1":0.0171,"13.2":0.00855,"13.3":0.04559,"13.4-13.7":0.13391,"14.0-14.4":0.39604,"14.5-14.8":1.24653,"15.0-15.1":0.22794,"15.2-15.3":0.48437,"15.4":0.82627,"15.5":9.93807,"16.0":0.07266},P:{"4":0.11303,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.01028,"8.2":0.07034,"9.2":0.0411,"10.1":0.01086,"11.1-11.2":0.12331,"12.0":0.0411,"13.0":0.13358,"14.0":0.15413,"15.0":0.0822,"16.0":0.33909,"17.0":5.15833},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01138,"4.4":0,"4.4.3-4.4.4":0.03162},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00386,"9":0.01157,"10":0.01157,"11":0.26613,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.20886},Q:{"10.4":0},O:{"0":0.05529},H:{"0":0.29661},L:{"0":41.43891}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00394,"25":0.00788,"26":0.01575,"27":0.00394,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00394,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01181,"53":0,"54":0.00394,"55":0,"56":0.00788,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00394,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00788,"79":0.04726,"80":0.01181,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00394,"89":0.00394,"90":0,"91":0.00788,"92":0,"93":0,"94":0,"95":0.00394,"96":0,"97":0.00394,"98":0.00394,"99":0.00394,"100":0.01181,"101":0.04332,"102":0.49619,"103":0.05513,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.02363,"32":0.00394,"33":0,"34":0,"35":0.01969,"36":0,"37":0,"38":0.00788,"39":0,"40":0,"41":0.00394,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01181,"50":0,"51":0,"52":0,"53":0.00394,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00394,"66":0,"67":0,"68":0.00394,"69":0.00394,"70":0.00394,"71":0.00394,"72":0.00394,"73":0.01969,"74":0.00394,"75":0.00394,"76":0.00394,"77":0.00394,"78":0.00394,"79":0.05119,"80":0.11026,"81":0.00788,"83":0.00788,"84":0.00394,"85":0.01181,"86":0.01181,"87":0.01575,"88":0.00394,"89":0.01969,"90":0.01181,"91":0.01181,"92":0.01181,"93":0.01181,"94":0.01181,"95":0.01181,"96":0.03938,"97":0.01969,"98":0.01575,"99":0.02757,"100":0.05907,"101":0.07876,"102":0.71672,"103":10.32937,"104":0.00788,"105":0.00394,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00394,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00788,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00788,"86":0,"87":0.00788,"88":0.18902,"89":0.07876,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00394,"79":0,"80":0,"81":0,"83":0,"84":0.00394,"85":0.00394,"86":0.00394,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00394,"93":0.00394,"94":0,"95":0,"96":0.01181,"97":0,"98":0.00394,"99":0.00788,"100":0.00394,"101":0.03544,"102":0.03544,"103":1.03176,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00394,"8":0.06695,"9":0,"10":0,"11":0,"12":0,"13":0.00788,"14":0.02363,"15":0.00394,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.00394,"7.1":0,"9.1":0.00394,"10.1":0,"11.1":0.00394,"12.1":0.00394,"13.1":0.0315,"14.1":0.07876,"15.1":0.01575,"15.2-15.3":0.01575,"15.4":0.05119,"15.5":0.33079,"15.6":0.01575,"16.0":0.00394},G:{"8":0.00621,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00414,"6.0-6.1":0.00207,"7.0-7.1":0.04344,"8.1-8.4":0.01655,"9.0-9.2":0.01241,"9.3":0.09102,"10.0-10.2":0.00621,"10.3":0.0993,"11.0-11.2":0.01448,"11.3-11.4":0.04344,"12.0-12.1":0.03103,"12.2-12.5":0.44269,"13.0-13.1":0.02482,"13.2":0.01241,"13.3":0.0662,"13.4-13.7":0.19445,"14.0-14.4":0.57509,"14.5-14.8":1.81007,"15.0-15.1":0.33099,"15.2-15.3":0.70334,"15.4":1.19982,"15.5":14.43095,"16.0":0.1055},P:{"4":0.12229,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02038,"8.2":0.01019,"9.2":0.06114,"10.1":0.02038,"11.1-11.2":0.13248,"12.0":0.04076,"13.0":0.13248,"14.0":0.15286,"15.0":0.08152,"16.0":0.33629,"17.0":5.01378,"18.0":0.01019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02791,"4.4":0,"4.4.3-4.4.4":0.07753},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00394,"10":0.00394,"11":0.10239,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":55.1532},S:{"2.5":0},R:{_:"0"},M:{"0":0.20611},Q:{"10.4":0},O:{"0":0.05456},H:{"0":0.29269}}; 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 a8089266e3abbb5..5dbaec75a4480fd 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:{"48":0.00456,"52":0.3644,"60":0.00456,"61":0.00456,"63":0.00911,"78":0.01367,"83":0.041,"84":0.03644,"88":0.07744,"91":0.00911,"98":0.00456,"100":0.00911,"101":0.17765,"102":1.54415,"103":0.23686,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 85 86 87 89 90 92 93 94 95 96 97 99 104 105 3.5 3.6"},D:{"49":0.02733,"65":0.02733,"67":0.01367,"76":0.01822,"77":0.00456,"78":0.02733,"79":0.02278,"80":0.00456,"84":0.01367,"85":0.20042,"87":0.07744,"89":0.01367,"90":0.00911,"91":0.1321,"92":0.00456,"93":0.23231,"94":0.02278,"95":0.00911,"96":0.01367,"97":0.05011,"98":0.15487,"99":0.15943,"100":0.08655,"101":0.42362,"102":1.13875,"103":16.42989,"104":0.00456,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 81 83 86 88 105 106"},F:{"85":0.00456,"87":0.01367,"88":0.46006,"89":0.15943,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01822,"18":0.00456,"87":0.00911,"90":0.00456,"92":0.00911,"95":0.29152,"97":0.03189,"98":0.00456,"99":0.02733,"101":0.07288,"102":0.94289,"103":10.03011,_:"12 13 14 16 17 79 80 81 83 84 85 86 88 89 91 93 94 96 100"},E:{"4":0,"11":0.01367,"13":0.05466,"14":0.28697,"15":0.02733,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05922,"11.1":0.34163,"12.1":0.48283,"13.1":0.47828,"14.1":0.65592,"15.1":0.11388,"15.2-15.3":0.16854,"15.4":0.68781,"15.5":6.86439,"15.6":0.19131,"16.0":0.00456},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00914,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.45683,"10.0-10.2":0.00609,"10.3":0.19187,"11.0-11.2":0.01827,"11.3-11.4":0.04264,"12.0-12.1":0.04873,"12.2-12.5":2.00398,"13.0-13.1":0.00305,"13.2":0,"13.3":0.03046,"13.4-13.7":0.2741,"14.0-14.4":1.29741,"14.5-14.8":1.72683,"15.0-15.1":0.53906,"15.2-15.3":0.74921,"15.4":1.14818,"15.5":21.23366,"16.0":0.24974},P:{"4":0.03259,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.03111,"8.2":0.07034,"9.2":0.05115,"10.1":0.01086,"11.1-11.2":0.07258,"12.0":0.03259,"13.0":0.08691,"14.0":0.12443,"15.0":0.02173,"16.0":0.20642,"17.0":3.84588},I:{"0":0,"3":0,"4":0.01131,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00083,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00456,"11":0.14121,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.83868},Q:{"10.4":0},O:{"0":0.00545},H:{"0":0.07218},L:{"0":19.31371}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00492,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.18211,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00492,"61":0,"62":0,"63":0.00492,"64":0,"65":0,"66":0,"67":0,"68":0.01477,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00492,"79":0,"80":0,"81":0,"82":0,"83":0.01969,"84":0.01477,"85":0,"86":0,"87":0,"88":0.03938,"89":0,"90":0,"91":0.00492,"92":0,"93":0,"94":0,"95":0,"96":0.00492,"97":0,"98":0.00492,"99":0.00492,"100":0.00492,"101":0.09352,"102":1.04839,"103":0.13289,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00984,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01477,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01477,"66":0,"67":0.00492,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00984,"77":0.00492,"78":0.01477,"79":0.00984,"80":0.05414,"81":0,"83":0,"84":0.00492,"85":0.09844,"86":0,"87":0.03938,"88":0,"89":0.00492,"90":0.00492,"91":0.06399,"92":0.01969,"93":0.11321,"94":0.00984,"95":0.00492,"96":0.00492,"97":0.02461,"98":0.07383,"99":0.07875,"100":0.0443,"101":0.21165,"102":0.56603,"103":8.15083,"104":0.00492,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00492,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00492,"86":0,"87":0.00492,"88":0.22641,"89":0.07875,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00984,"16":0,"17":0,"18":0.00492,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.00492,"88":0,"89":0,"90":0.00492,"91":0,"92":0.00492,"93":0,"94":0,"95":0.14274,"96":0,"97":0.01477,"98":0,"99":0.01477,"100":0,"101":0.03938,"102":0.47743,"103":5.00075,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00492,"12":0,"13":0.02461,"14":0.14274,"15":0.01477,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02953,"11.1":0.16735,"12.1":0.23626,"13.1":0.23626,"14.1":0.32485,"15.1":0.05414,"15.2-15.3":0.08367,"15.4":0.33962,"15.5":3.38141,"15.6":0.09352,"16.0":0.00492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01346,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.67284,"10.0-10.2":0.00897,"10.3":0.28259,"11.0-11.2":0.02691,"11.3-11.4":0.0628,"12.0-12.1":0.07177,"12.2-12.5":2.95152,"13.0-13.1":0.00449,"13.2":0,"13.3":0.04486,"13.4-13.7":0.4037,"14.0-14.4":1.91086,"14.5-14.8":2.54333,"15.0-15.1":0.79395,"15.2-15.3":1.10346,"15.4":1.69107,"15.5":31.27354,"16.0":0.36782},P:{"4":0.05427,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01085,"11.1-11.2":0.01085,"12.0":0.02171,"13.0":0.08683,"14.0":0.01085,"15.0":0.02171,"16.0":0.18451,"17.0":3.5491,"18.0":0},I:{"0":0,"3":0,"4":0.25832,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0189,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.22052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00492,"10":0,"11":0.06891,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":25.45836},S:{"2.5":0},R:{_:"0"},M:{"0":0.78201},Q:{"10.4":0},O:{"0":0.00508},H:{"0":0.06731}}; 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 4562f492d7c4be2..8405dbe917978bd 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.0048,"47":0.00721,"48":0.0024,"52":0.02402,"56":0.0048,"66":0.0048,"68":0.0024,"72":0.0048,"78":0.00721,"80":0.0024,"81":0.0024,"88":0.01201,"89":0.0048,"90":0.0048,"91":0.02642,"92":0.0024,"94":0.0024,"95":0.0048,"96":0.00721,"97":0.00721,"98":0.00961,"99":0.03603,"100":0.14652,"101":1.11453,"102":0.09128,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 82 83 84 85 86 87 93 103 104 3.5 3.6"},D:{"49":0.01922,"55":0.0024,"56":0.0024,"58":0.0024,"63":0.01922,"64":0.0048,"67":0.0048,"68":0.0024,"69":0.0048,"70":0.01201,"71":0.02642,"72":0.0048,"73":0.0048,"74":0.01681,"75":0.0024,"76":0.0024,"77":0.0048,"78":0.00721,"79":0.02162,"80":0.02402,"81":0.01441,"83":0.02642,"84":0.02162,"85":0.02162,"86":0.03363,"87":0.05044,"88":0.01201,"89":0.01681,"90":0.01922,"91":0.03363,"92":0.03363,"93":0.01922,"94":0.04324,"95":0.02162,"96":0.06485,"97":0.05765,"98":0.06245,"99":0.08887,"100":0.22339,"101":0.86232,"102":15.12299,"103":1.12173,"104":0.01922,"105":0.0024,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 61 62 65 66 106"},F:{"84":0.0048,"85":0.01441,"86":0.03843,"87":0.17294,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00721,"16":0.0024,"17":0.0024,"18":0.01201,"84":0.0024,"89":0.0024,"92":0.00721,"96":0.0024,"97":0.0048,"98":0.0048,"99":0.00721,"100":0.01201,"101":0.1177,"102":0.73982,"103":0.1177,_:"13 14 15 79 80 81 83 85 86 87 88 90 91 93 94 95"},E:{"4":0,"13":0.0024,"14":0.01201,"15":0.00721,_:"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 16.0","12.1":0.0024,"13.1":0.01441,"14.1":0.03363,"15.1":0.01201,"15.2-15.3":0.01201,"15.4":0.05765,"15.5":0.13932},G:{"8":0.00118,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00071,"7.0-7.1":0.00684,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00566,"10.0-10.2":0.00071,"10.3":0.00637,"11.0-11.2":0.00802,"11.3-11.4":0.00283,"12.0-12.1":0.00566,"12.2-12.5":0.09456,"13.0-13.1":0.00424,"13.2":0.00283,"13.3":0.0066,"13.4-13.7":0.02382,"14.0-14.4":0.09268,"14.5-14.8":0.16436,"15.0-15.1":0.11484,"15.2-15.3":0.17922,"15.4":0.39051,"15.5":1.22577,"16.0":0.01038},P:{"4":0.14743,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02106,"7.2-7.4":0.09478,"9.2":0.02106,"11.1-11.2":0.03159,"12.0":0.02106,"13.0":0.07371,"14.0":0.08424,"15.0":0.05265,"16.0":0.16849,"17.0":0.48441},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00402,"4.4":0,"4.4.3-4.4.4":0.01877},A:{"11":0.03843,_:"6 7 8 9 10 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},N:{_:"10 11"},J:{"7":0,"10":0},Q:{"10.4":0},O:{"0":1.39043},H:{"0":2.0357},L:{"0":70.63444},S:{"2.5":0.3951},R:{_:"0"},M:{"0":0.15956}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00261,"48":0,"49":0,"50":0,"51":0,"52":0.00523,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00261,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00261,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00261,"89":0.00261,"90":0.00261,"91":0.00784,"92":0,"93":0,"94":0,"95":0.00261,"96":0.00261,"97":0.00261,"98":0.00261,"99":0.00784,"100":0.00784,"101":0.0209,"102":0.31617,"103":0.05226,"104":0.00261,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00523,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00523,"64":0.00261,"65":0,"66":0,"67":0.00261,"68":0,"69":0.00261,"70":0.00523,"71":0.00784,"72":0.00261,"73":0.00261,"74":0.00784,"75":0,"76":0,"77":0.00261,"78":0.00261,"79":0.00523,"80":0.01045,"81":0.00784,"83":0.01045,"84":0.00523,"85":0.00523,"86":0.01045,"87":0.0209,"88":0.00523,"89":0.00523,"90":0.00784,"91":0.01045,"92":0.01307,"93":0.00523,"94":0.0209,"95":0.00784,"96":0.0209,"97":0.0209,"98":0.01568,"99":0.0209,"100":0.03136,"101":0.05487,"102":0.19075,"103":4.57536,"104":0.00784,"105":0.00523,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00261,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00261,"55":0.00261,"56":0,"57":0,"58":0.00523,"60":0.01045,"62":0,"63":0.2012,"64":0.01045,"65":0,"66":0,"67":0,"68":0,"69":0.00261,"70":0.00523,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00261,"86":0.00261,"87":0.00261,"88":0.0392,"89":0.0209,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00261,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00261,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00261,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00261,"101":0.00523,"102":0.01045,"103":0.25869,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00261,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00261,"14.1":0.00784,"15.1":0.00261,"15.2-15.3":0.00261,"15.4":0.00784,"15.5":0.04442,"15.6":0.00261,"16.0":0},G:{"8":0.00195,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00162,"7.0-7.1":0.00876,"8.1-8.4":0,"9.0-9.2":0.00032,"9.3":0.00779,"10.0-10.2":0.00097,"10.3":0.00844,"11.0-11.2":0.00909,"11.3-11.4":0.00292,"12.0-12.1":0.00811,"12.2-12.5":0.12363,"13.0-13.1":0.00519,"13.2":0.00357,"13.3":0.00909,"13.4-13.7":0.03018,"14.0-14.4":0.12136,"14.5-14.8":0.20085,"15.0-15.1":0.13142,"15.2-15.3":0.17587,"15.4":0.22649,"15.5":1.99297,"16.0":0.04024},P:{"4":0.13552,"5.0-5.4":0,"6.2-6.4":0.01042,"7.2-7.4":0.09382,"8.2":0,"9.2":0.03127,"10.1":0,"11.1-11.2":0.03127,"12.0":0.01042,"13.0":0.05212,"14.0":0.06255,"15.0":0.0417,"16.0":0.1251,"17.0":0.52123,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05045},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01045,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":84.40476},S:{"2.5":0.24377},R:{_:"0"},M:{"0":0.15513},Q:{"10.4":0},O:{"0":1.35182},H:{"0":2.01414}}; 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 762341a4d35a210..27256912cb5b1de 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:{"29":0.00202,"34":0.00405,"43":0.00405,"44":0.00202,"47":0.00607,"52":0.02834,"53":0.00405,"68":0.01012,"69":0.02429,"72":0.00405,"78":0.01012,"82":0.00202,"84":0.00202,"88":0.0081,"89":0.00405,"91":0.01619,"92":0.00202,"94":0.00202,"95":0.00405,"97":0.00607,"98":0.00405,"99":0.01417,"100":0.0081,"101":0.02834,"102":0.56672,"103":0.08298,_:"2 3 4 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 45 46 48 49 50 51 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 85 86 87 90 93 96 104 105 3.5 3.6"},D:{"11":0.00405,"31":0.00202,"33":0.00405,"34":0.00405,"38":0.01619,"40":0.00405,"41":0.00607,"43":0.0587,"47":0.00607,"49":0.0081,"53":0.00405,"55":0.00202,"56":0.00405,"57":0.00405,"58":0.00202,"60":0.00607,"63":0.01012,"64":0.00607,"65":0.00607,"68":0.00405,"69":0.0081,"70":0.00607,"71":0.00607,"72":0.00405,"73":0.00405,"74":0.00607,"75":0.00405,"76":0.0081,"77":0.00405,"78":0.0081,"79":0.06679,"80":0.01012,"81":0.03846,"83":0.03441,"84":0.01822,"85":0.01619,"86":0.06072,"87":0.03643,"88":0.02834,"89":0.06274,"90":0.03238,"91":0.03036,"92":0.06274,"93":0.01822,"94":0.02226,"95":0.03643,"96":0.0506,"97":0.03238,"98":0.06072,"99":0.05465,"100":0.05667,"101":0.10525,"102":0.43111,"103":10.22525,"104":0.00607,"105":0.01417,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 35 36 37 39 42 44 45 46 48 50 51 52 54 59 61 62 66 67 106"},F:{"28":0.00202,"73":0.00202,"79":0.01012,"82":0.00405,"84":0.00405,"85":0.02631,"86":0.0081,"87":0.01214,"88":0.39266,"89":0.17609,_:"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 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00405,"13":0.00202,"14":0.00405,"15":0.00405,"16":0.00405,"17":0.00202,"18":0.01417,"84":0.01012,"85":0.00607,"86":0.00607,"87":0.00607,"88":0.00607,"89":0.01012,"90":0.01012,"91":0.0081,"92":0.02024,"93":0.00405,"94":0.00607,"95":0.00607,"96":0.01012,"97":0.00607,"98":0.00607,"99":0.00607,"100":0.00607,"101":0.08703,"102":0.03846,"103":1.25083,_:"79 80 81 83"},E:{"4":0,"7":0.00202,"13":0.02834,"14":0.09108,"15":0.04048,_:"0 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03643,"12.1":0.00405,"13.1":0.05262,"14.1":0.20038,"15.1":0.03441,"15.2-15.3":0.04048,"15.4":0.17406,"15.5":1.15368,"15.6":0.04453,"16.0":0.01822},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00336,"6.0-6.1":0,"7.0-7.1":0.06223,"8.1-8.4":0,"9.0-9.2":0.01346,"9.3":0.05382,"10.0-10.2":0.00841,"10.3":0.08073,"11.0-11.2":0.01177,"11.3-11.4":0.01682,"12.0-12.1":0.037,"12.2-12.5":0.77368,"13.0-13.1":0.02186,"13.2":0.01514,"13.3":0.08073,"13.4-13.7":0.17324,"14.0-14.4":0.51971,"14.5-14.8":1.15884,"15.0-15.1":0.38011,"15.2-15.3":0.64922,"15.4":1.39095,"15.5":10.71887,"16.0":0.19678},P:{"4":0.16369,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.21485,"8.2":0.07034,"9.2":0.05115,"10.1":0.09044,"11.1-11.2":0.18415,"12.0":0.04092,"13.0":0.28646,"14.0":0.18415,"15.0":0.133,"16.0":0.36831,"17.0":3.22271},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00109,"4.2-4.3":0.00656,"4.4":0,"4.4.3-4.4.4":0.07211},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06072,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.11166},Q:{"10.4":0},O:{"0":0.35892},H:{"0":0.28694},L:{"0":59.67594}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00208,"48":0,"49":0,"50":0,"51":0,"52":0.00623,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00208,"69":0.00416,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00208,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00208,"89":0,"90":0,"91":0.00416,"92":0.00208,"93":0.00208,"94":0.00208,"95":0.00208,"96":0,"97":0.00208,"98":0.00208,"99":0.00416,"100":0.00208,"101":0.00831,"102":0.12884,"103":0.0187,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00208,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00416,"39":0,"40":0.00208,"41":0.00208,"42":0,"43":0.01247,"44":0,"45":0,"46":0,"47":0.00208,"48":0,"49":0.00208,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00208,"57":0,"58":0,"59":0,"60":0.00208,"61":0,"62":0,"63":0.00208,"64":0.00208,"65":0.00208,"66":0,"67":0,"68":0,"69":0.00208,"70":0.00208,"71":0.00208,"72":0,"73":0,"74":0.00208,"75":0,"76":0.00208,"77":0,"78":0.00208,"79":0.01455,"80":0.00208,"81":0.01662,"83":0.00623,"84":0.00416,"85":0.00416,"86":0.01247,"87":0.00831,"88":0.00623,"89":0.01247,"90":0.00623,"91":0.00623,"92":0.0187,"93":0.00416,"94":0.00416,"95":0.01039,"96":0.01039,"97":0.00623,"98":0.01247,"99":0.01247,"100":0.01247,"101":0.02286,"102":0.09143,"103":2.13618,"104":0.00208,"105":0.00208,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01455,"64":0.00208,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00208,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00208,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00623,"86":0.00208,"87":0.00208,"88":0.08104,"89":0.0374,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00416,"79":0,"80":0,"81":0,"83":0,"84":0.00208,"85":0.00208,"86":0.00208,"87":0.00208,"88":0.00208,"89":0.00208,"90":0.00208,"91":0.00208,"92":0.00416,"93":0,"94":0.00208,"95":0.00208,"96":0.00208,"97":0.00208,"98":0.00208,"99":0.00208,"100":0.00208,"101":0.0187,"102":0.02494,"103":0.27637,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00623,"14":0.0187,"15":0.00831,_:"0","3.1":0,"3.2":0,"5.1":0.00831,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01039,"14.1":0.04156,"15.1":0.00623,"15.2-15.3":0.00831,"15.4":0.03533,"15.5":0.23897,"15.6":0.00831,"16.0":0.00416},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00415,"6.0-6.1":0,"7.0-7.1":0.07669,"8.1-8.4":0,"9.0-9.2":0.01658,"9.3":0.06632,"10.0-10.2":0.01036,"10.3":0.09949,"11.0-11.2":0.01451,"11.3-11.4":0.02073,"12.0-12.1":0.0456,"12.2-12.5":0.95341,"13.0-13.1":0.02694,"13.2":0.01865,"13.3":0.09949,"13.4-13.7":0.21348,"14.0-14.4":0.64044,"14.5-14.8":1.42805,"15.0-15.1":0.46842,"15.2-15.3":0.80004,"15.4":1.71407,"15.5":13.20891,"16.0":0.2425},P:{"4":0.18525,"5.0-5.4":0.01029,"6.2-6.4":0.01029,"7.2-7.4":0.22642,"8.2":0,"9.2":0.05146,"10.1":0.01029,"11.1-11.2":0.17496,"12.0":0.04117,"13.0":0.27788,"14.0":0.18525,"15.0":0.13379,"16.0":0.36021,"17.0":3.13901,"18.0":0.01029},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00251,"4.2-4.3":0.01505,"4.4":0,"4.4.3-4.4.4":0.16556},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01247,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.1743},S:{"2.5":0},R:{_:"0"},M:{"0":0.11091},Q:{"10.4":0},O:{"0":0.35649},H:{"0":0.285}}; 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 c291d2ead03e051..da76b9da3a0374c 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.00253,"32":0.00253,"33":0.00507,"38":0.00253,"39":0.00253,"40":0.00507,"41":0.00507,"43":0.00507,"47":0.01267,"48":0.00507,"49":0.00253,"50":0.00507,"52":0.06588,"56":0.00507,"60":0.00253,"61":0.00253,"68":0.0076,"72":0.01774,"77":0.00507,"78":0.01014,"79":0.00253,"80":0.00507,"81":0.00507,"82":0.01267,"83":0.00253,"84":0.00507,"85":0.00253,"86":0.00253,"88":0.0076,"89":0.01014,"90":0.00253,"91":0.09883,"92":0.0076,"93":0.00507,"94":0.01014,"95":0.01267,"96":0.0152,"97":0.0152,"98":0.0152,"99":0.04815,"100":0.05828,"101":0.20779,"102":3.28913,"103":0.42318,"104":0.00253,_:"2 3 4 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 34 35 36 37 42 44 45 46 51 53 54 55 57 58 59 62 63 64 65 66 67 69 70 71 73 74 75 76 87 105 3.5 3.6"},D:{"34":0.00507,"38":0.0076,"41":0.00507,"48":0.00253,"49":0.02534,"51":0.00253,"56":0.00253,"58":0.00253,"62":0.0076,"63":0.01774,"64":0.00253,"66":0.00253,"68":0.00253,"69":0.0076,"70":0.00507,"71":0.0152,"72":0.0076,"73":0.00507,"74":0.00507,"75":0.00507,"76":0.00507,"77":0.00507,"78":0.01774,"79":0.02281,"80":0.02027,"81":0.0152,"83":0.03294,"84":0.05828,"85":0.04308,"86":0.07349,"87":0.05828,"88":0.02027,"89":0.03801,"90":0.0152,"91":0.04815,"92":0.03548,"93":0.0152,"94":0.03548,"95":0.02281,"96":0.06082,"97":0.05321,"98":0.04561,"99":0.06082,"100":0.11656,"101":0.12923,"102":0.54734,"103":13.4378,"104":0.01014,"105":0.0076,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 50 52 53 54 55 57 59 60 61 65 67 106"},F:{"64":0.00253,"79":0.02534,"82":0.00253,"83":0.00507,"84":0.0076,"85":0.02027,"86":0.0076,"87":0.0152,"88":0.22299,"89":0.13684,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00507,"13":0.00253,"14":0.00507,"16":0.00253,"17":0.00253,"18":0.02281,"84":0.0076,"89":0.01014,"90":0.0076,"92":0.02787,"96":0.00253,"97":0.00253,"98":0.00507,"99":0.0076,"100":0.00507,"101":0.01774,"102":0.02534,"103":0.69938,_:"15 79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"14":0.01014,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 16.0","5.1":0.37503,"13.1":0.0076,"14.1":0.01774,"15.1":0.0076,"15.2-15.3":0.00507,"15.4":0.0152,"15.5":0.06842,"15.6":0.0076},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00054,"6.0-6.1":0,"7.0-7.1":0.00217,"8.1-8.4":0,"9.0-9.2":0.00109,"9.3":0.00543,"10.0-10.2":0.00434,"10.3":0.0266,"11.0-11.2":0.01629,"11.3-11.4":0.01412,"12.0-12.1":0.02823,"12.2-12.5":0.4658,"13.0-13.1":0.01954,"13.2":0.01031,"13.3":0.05755,"13.4-13.7":0.11238,"14.0-14.4":0.38708,"14.5-14.8":0.48262,"15.0-15.1":0.33007,"15.2-15.3":0.41856,"15.4":0.58143,"15.5":2.32083,"16.0":0.02334},P:{"4":0.47229,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.50244,"8.2":0.07034,"9.2":0.21102,"10.1":0.09044,"11.1-11.2":0.3919,"12.0":0.18088,"13.0":0.56273,"14.0":0.71346,"15.0":0.3919,"16.0":1.20585,"17.0":4.1401},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00147,"4.2-4.3":0.00955,"4.4":0,"4.4.3-4.4.4":0.03378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01014,"9":0.00507,"11":2.35662,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":1.11243},Q:{"10.4":0},O:{"0":0.07466},H:{"0":0.45944},L:{"0":59.81311}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00256,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00256,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00256,"48":0.00256,"49":0,"50":0,"51":0,"52":0.01793,"53":0,"54":0,"55":0,"56":0.00256,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02049,"69":0,"70":0,"71":0,"72":0.00512,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00256,"79":0,"80":0.00256,"81":0.00256,"82":0.00512,"83":0.00256,"84":0.00256,"85":0.00256,"86":0.00256,"87":0.00256,"88":0.00512,"89":0.00768,"90":0.00256,"91":0.02817,"92":0.00512,"93":0.00768,"94":0.05378,"95":0.01024,"96":0.01024,"97":0.01024,"98":0.01024,"99":0.02561,"100":0.02561,"101":0.08195,"102":0.91684,"103":0.11781,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00256,"35":0,"36":0,"37":0,"38":0.00256,"39":0,"40":0.00256,"41":0.00256,"42":0,"43":0.00256,"44":0,"45":0,"46":0.00256,"47":0,"48":0,"49":0.00768,"50":0,"51":0.00256,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00256,"59":0,"60":0,"61":0,"62":0.00256,"63":0.00512,"64":0,"65":0,"66":0,"67":0,"68":0.00256,"69":0.00256,"70":0.00256,"71":0.00512,"72":0.00256,"73":0.00256,"74":0.00256,"75":0,"76":0.00256,"77":0.00768,"78":0.00512,"79":0.00768,"80":0.00512,"81":0.02049,"83":0.00768,"84":0.01537,"85":0.01024,"86":0.02049,"87":0.01537,"88":0.00512,"89":0.01024,"90":0.00512,"91":0.01281,"92":0.01024,"93":0.00512,"94":0.01024,"95":0.01281,"96":0.01793,"97":0.01537,"98":0.01281,"99":0.01537,"100":0.03329,"101":0.03585,"102":0.14598,"103":3.45991,"104":0.00256,"105":0.00256,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0.00256,"65":0.00256,"66":0,"67":0,"68":0,"69":0.00256,"70":0.00256,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00768,"80":0,"81":0,"82":0,"83":0,"84":0.00256,"85":0.00512,"86":0.00256,"87":0.00512,"88":0.05634,"89":0.03585,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00256,"13":0,"14":0.00256,"15":0,"16":0,"17":0,"18":0.00512,"79":0,"80":0,"81":0,"83":0,"84":0.00256,"85":0,"86":0,"87":0,"88":0,"89":0.00256,"90":0.00256,"91":0,"92":0.00768,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00256,"100":0.00256,"101":0.00512,"102":0.01024,"103":0.18439,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00256,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.09732,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00256,"14.1":0.00512,"15.1":0.00256,"15.2-15.3":0.00256,"15.4":0.00512,"15.5":0.01793,"15.6":0.00256,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0007,"6.0-6.1":0,"7.0-7.1":0.00278,"8.1-8.4":0,"9.0-9.2":0.00139,"9.3":0.00696,"10.0-10.2":0.00557,"10.3":0.03409,"11.0-11.2":0.02087,"11.3-11.4":0.01809,"12.0-12.1":0.03618,"12.2-12.5":0.59692,"13.0-13.1":0.02505,"13.2":0.01322,"13.3":0.07375,"13.4-13.7":0.14401,"14.0-14.4":0.49604,"14.5-14.8":0.61849,"15.0-15.1":0.42299,"15.2-15.3":0.53639,"15.4":0.74511,"15.5":2.97417,"16.0":0.02992},P:{"4":0.46523,"5.0-5.4":0.06068,"6.2-6.4":0.05057,"7.2-7.4":0.49557,"8.2":0.0708,"9.2":0.21239,"10.1":0.09102,"11.1-11.2":0.38432,"12.0":0.18205,"13.0":0.56637,"14.0":0.71807,"15.0":0.38432,"16.0":1.19342,"17.0":4.11627,"18.0":0.01011},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00222,"4.2-4.3":0.01442,"4.4":0,"4.4.3-4.4.4":0.05104},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00256,"9":0.00256,"10":0,"11":0.6044,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.41629},S:{"2.5":0},R:{_:"0"},M:{"0":1.10841},Q:{"10.4":0},O:{"0":0.07439},H:{"0":0.45778}}; 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 cf1af3818eba759..a887ef0da710762 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:{"38":0.00518,"52":0.05693,"60":0.00518,"78":0.1035,"91":0.08798,"98":0.00518,"99":0.01035,"100":0.01553,"101":0.30015,"102":2.88765,"103":0.34155,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 104 105 3.5","3.6":0.00518},D:{"38":0.00518,"43":0.00518,"44":0.01035,"45":0.00518,"46":0.00518,"49":0.01035,"51":0.01035,"65":0.01035,"67":0.01035,"78":0.01553,"79":0.03105,"80":0.0207,"81":0.00518,"83":0.00518,"84":0.01035,"85":0.02588,"86":0.0207,"87":0.11385,"88":0.0207,"89":0.02588,"90":0.00518,"91":0.01035,"92":0.01035,"93":0.00518,"94":0.00518,"95":0.15008,"96":0.0414,"97":0.03623,"98":0.13973,"99":0.17078,"100":0.15008,"101":0.26393,"102":3.44655,"103":24.95385,"104":0.01035,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 75 76 77 105 106"},F:{"70":0.01035,"83":0.01035,"85":0.07245,"87":0.04658,"88":1.42313,"89":0.4347,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01553,"84":0.00518,"88":0.04658,"94":0.01035,"96":0.01035,"97":0.01035,"99":0.00518,"100":0.0207,"101":0.05175,"102":0.25358,"103":5.84258,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 89 90 91 92 93 95 98"},E:{"4":0,"9":0.01553,"13":0.0207,"14":0.2484,"15":0.11385,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05175,"11.1":0.11385,"12.1":0.15525,"13.1":0.55373,"14.1":0.92115,"15.1":0.24323,"15.2-15.3":0.17078,"15.4":0.56408,"15.5":4.00028,"15.6":0.16043,"16.0":0.02588},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00623,"8.1-8.4":0.00623,"9.0-9.2":0.00208,"9.3":0.07682,"10.0-10.2":0,"10.3":0.05813,"11.0-11.2":0.07059,"11.3-11.4":0.00623,"12.0-12.1":0.03114,"12.2-12.5":0.33426,"13.0-13.1":0.00208,"13.2":0,"13.3":0.02284,"13.4-13.7":0.14948,"14.0-14.4":0.20347,"14.5-14.8":1.35574,"15.0-15.1":0.19101,"15.2-15.3":0.51904,"15.4":1.09414,"15.5":16.27512,"16.0":0.07267},P:{"4":0.06255,"5.0-5.4":0.01085,"6.2-6.4":0.05069,"7.2-7.4":0.01085,"8.2":0.01085,"9.2":0.0651,"10.1":0.02085,"11.1-11.2":0.01042,"12.0":0.0217,"13.0":0.02085,"14.0":0.0417,"15.0":0.02085,"16.0":0.10424,"17.0":4.20097},I:{"0":0,"3":0,"4":0.00742,"2.1":0.00135,"2.2":0.00472,"2.3":0.00472,"4.1":0.00337,"4.2-4.3":0.00877,"4.4":0,"4.4.3-4.4.4":0.06613},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00518,"8":0.05175,"9":0.01035,"10":0.00518,"11":0.0621,_:"6 5.5"},J:{"7":0,"10":0.00483},N:{"11":0.02513,_:"10"},S:{"2.5":0.01448},R:{_:"0"},M:{"0":0.41978},Q:{"10.4":0},O:{"0":0.02413},H:{"0":0.15074},L:{"0":23.1325}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00532,"39":0,"40":0.00532,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03189,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00532,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05315,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05847,"92":0,"93":0,"94":0,"95":0.01595,"96":0,"97":0,"98":0.00532,"99":0.00532,"100":0.01063,"101":0.16477,"102":1.67954,"103":0.19134,"104":0,"105":0,"3.5":0,"3.6":0.00532},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00532,"39":0,"40":0,"41":0,"42":0,"43":0.00532,"44":0.00532,"45":0.00532,"46":0.00532,"47":0,"48":0,"49":0.00532,"50":0,"51":0.00532,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00532,"64":0,"65":0.00532,"66":0,"67":0.00532,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00532,"79":0.02126,"80":0.01063,"81":0.00532,"83":0.00532,"84":0.00532,"85":0.01595,"86":0.01063,"87":0.05847,"88":0.01063,"89":0.01595,"90":0.00532,"91":0.00532,"92":0.00532,"93":0.00532,"94":0.00532,"95":0.07973,"96":0.02126,"97":0.01595,"98":0.07441,"99":0.09036,"100":0.07973,"101":0.14351,"102":1.83368,"103":13.31939,"104":0.00532,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00532,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00532,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00532,"84":0,"85":0.03721,"86":0,"87":0.02658,"88":0.75473,"89":0.22855,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00532,"15":0,"16":0,"17":0,"18":0.01063,"79":0,"80":0,"81":0,"83":0,"84":0.00532,"85":0,"86":0,"87":0,"88":0.02126,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00532,"95":0,"96":0.00532,"97":0.00532,"98":0,"99":0.00532,"100":0.01063,"101":0.02658,"102":0.14351,"103":3.14117,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01063,"10":0,"11":0,"12":0,"13":0.01063,"14":0.13288,"15":0.05847,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.02658,"11.1":0.05847,"12.1":0.08504,"13.1":0.29233,"14.1":0.48898,"15.1":0.12756,"15.2-15.3":0.09036,"15.4":0.29764,"15.5":2.126,"15.6":0.08504,"16.0":0.01063},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00986,"8.1-8.4":0.00986,"9.0-9.2":0.00329,"9.3":0.12166,"10.0-10.2":0,"10.3":0.09207,"11.0-11.2":0.1118,"11.3-11.4":0.00986,"12.0-12.1":0.04932,"12.2-12.5":0.52941,"13.0-13.1":0.00329,"13.2":0,"13.3":0.03617,"13.4-13.7":0.23675,"14.0-14.4":0.32225,"14.5-14.8":2.14722,"15.0-15.1":0.30252,"15.2-15.3":0.82206,"15.4":1.7329,"15.5":25.77647,"16.0":0.11509},P:{"4":0.05157,"5.0-5.4":0,"6.2-6.4":0.01031,"7.2-7.4":0,"8.2":0,"9.2":0.01031,"10.1":0.02063,"11.1-11.2":0.02063,"12.0":0,"13.0":0.03094,"14.0":0.05157,"15.0":0.02063,"16.0":0.09282,"17.0":4.04296,"18.0":0},I:{"0":0,"3":0,"4":0.01661,"2.1":0.00302,"2.2":0.01057,"2.3":0.01057,"4.1":0.00755,"4.2-4.3":0.01963,"4.4":0,"4.4.3-4.4.4":0.14799},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00532,"8":0.02658,"9":0.00532,"10":0.00532,"11":0.03189,"5.5":0},J:{"7":0,"10":0.00469},N:{"10":0.01406,"11":0},L:{"0":32.37246},S:{"2.5":0.01406},R:{_:"0"},M:{"0":0.4076},Q:{"10.4":0},O:{"0":0.02343},H:{"0":0.14637}}; 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 9fd60d80ea112c4..3942c04dfabd27d 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:{"29":0.00421,"47":0.01262,"48":0.00841,"50":0.00421,"52":0.08835,"56":0.01262,"59":0.01262,"66":0.00421,"68":0.00841,"72":0.00421,"78":0.07993,"82":0.00421,"87":0.01683,"88":0.01262,"89":0.00421,"90":0.01262,"91":0.09255,"94":0.15145,"95":0.02104,"96":0.00841,"97":0.01262,"98":0.01262,"99":0.0589,"100":0.04628,"101":0.18932,"102":3.07532,"103":0.28608,_:"2 3 4 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 49 51 53 54 55 57 58 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 92 93 104 105 3.5 3.6"},D:{"33":0.00841,"38":0.00841,"49":0.08835,"59":0.01262,"60":0.02104,"63":0.09676,"65":0.01262,"66":0.09676,"67":0.03366,"68":0.01262,"69":0.18932,"72":0.00841,"73":0.01262,"74":0.02524,"75":0.00421,"76":0.00421,"77":0.00841,"78":0.00841,"79":0.09676,"80":0.02524,"81":0.02945,"83":0.02524,"84":0.02945,"85":0.03786,"86":0.03366,"87":0.07573,"88":0.02104,"89":0.04207,"90":0.02524,"91":0.02945,"92":0.11359,"93":0.02104,"94":0.02524,"95":0.02945,"96":0.06311,"97":0.04628,"98":0.0589,"99":0.06731,"100":0.11359,"101":0.18511,"102":1.14851,"103":24.17342,"104":0.02104,"105":0.00841,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 61 62 64 70 71 106"},F:{"28":0.00421,"46":0.00841,"74":0.00421,"85":0.15566,"86":0.00841,"87":0.03366,"88":0.53429,"89":0.20614,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00421,"16":0.00421,"17":0.00841,"18":0.00841,"92":0.00841,"96":0.00841,"97":0.00841,"98":0.00841,"99":0.00841,"100":0.02104,"101":0.0589,"102":0.10518,"103":3.61381,_:"12 13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"12":0.00841,"13":0.03366,"14":0.21456,"15":0.06311,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01683,"10.1":0.00421,"11.1":0.05048,"12.1":0.07152,"13.1":0.28187,"14.1":0.46277,"15.1":0.10518,"15.2-15.3":0.09676,"15.4":0.32815,"15.5":1.89315,"15.6":0.08835,"16.0":0.01262},G:{"8":0.00796,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00159,"6.0-6.1":0.00318,"7.0-7.1":0.01274,"8.1-8.4":0.00478,"9.0-9.2":0.00318,"9.3":0.10188,"10.0-10.2":0.00159,"10.3":0.08278,"11.0-11.2":0.01274,"11.3-11.4":0.04298,"12.0-12.1":0.02229,"12.2-12.5":0.43619,"13.0-13.1":0.02229,"13.2":0.01592,"13.3":0.04139,"13.4-13.7":0.16079,"14.0-14.4":0.44097,"14.5-14.8":1.08253,"15.0-15.1":0.37888,"15.2-15.3":0.59698,"15.4":1.08889,"15.5":10.93511,"16.0":0.09711},P:{"4":0.16607,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.01028,"8.2":0.07034,"9.2":0.01038,"10.1":0.01086,"11.1-11.2":0.07265,"12.0":0.02076,"13.0":0.09341,"14.0":0.11417,"15.0":0.06227,"16.0":0.22834,"17.0":2.96843},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00941,"4.2-4.3":0.01098,"4.4":0,"4.4.3-4.4.4":0.05491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00421,"9":0.01262,"11":0.25663,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.36496},Q:{"10.4":0.00579},O:{"0":0.11586},H:{"0":0.26325},L:{"0":38.44964}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00427,"48":0.00427,"49":0,"50":0,"51":0,"52":0.03845,"53":0,"54":0,"55":0,"56":0.00427,"57":0,"58":0,"59":0.00427,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00427,"67":0,"68":0.00427,"69":0,"70":0,"71":0,"72":0.00427,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03418,"79":0,"80":0,"81":0,"82":0.00427,"83":0,"84":0.00427,"85":0,"86":0,"87":0.00854,"88":0.00854,"89":0.00427,"90":0.00427,"91":0.03845,"92":0,"93":0,"94":0.06408,"95":0.00854,"96":0.00854,"97":0.00854,"98":0.00427,"99":0.0299,"100":0.02136,"101":0.08971,"102":1.37131,"103":0.15806,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00427,"34":0,"35":0,"36":0,"37":0,"38":0.00427,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03845,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00427,"60":0.00854,"61":0,"62":0,"63":0.04272,"64":0,"65":0.00427,"66":0.04272,"67":0.01709,"68":0.00427,"69":0.08117,"70":0,"71":0,"72":0.00427,"73":0.00427,"74":0.01282,"75":0.00427,"76":0.00427,"77":0.00427,"78":0.00427,"79":0.04272,"80":0.01282,"81":0.0299,"83":0.00854,"84":0.01282,"85":0.01709,"86":0.01709,"87":0.03418,"88":0.00854,"89":0.01709,"90":0.01282,"91":0.01282,"92":0.05554,"93":0.00854,"94":0.01282,"95":0.01282,"96":0.0299,"97":0.02136,"98":0.02563,"99":0.0299,"100":0.05126,"101":0.08117,"102":0.49128,"103":10.33824,"104":0.00854,"105":0.00427,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00427,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00854,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00427,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.06408,"86":0.00427,"87":0.01282,"88":0.22214,"89":0.09398,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00427,"16":0.00427,"17":0.00427,"18":0.00427,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00427,"93":0,"94":0,"95":0.00427,"96":0.00427,"97":0.00427,"98":0.00427,"99":0.00427,"100":0.00854,"101":0.02563,"102":0.05126,"103":1.55928,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00427,"13":0.01282,"14":0.08971,"15":0.02563,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00854,"10.1":0.00427,"11.1":0.02136,"12.1":0.0299,"13.1":0.11962,"14.1":0.19651,"15.1":0.04272,"15.2-15.3":0.04272,"15.4":0.14098,"15.5":0.80314,"15.6":0.04699,"16.0":0.00427},G:{"8":0.01166,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00233,"6.0-6.1":0.00466,"7.0-7.1":0.01866,"8.1-8.4":0.007,"9.0-9.2":0.00466,"9.3":0.14926,"10.0-10.2":0.00233,"10.3":0.12127,"11.0-11.2":0.01866,"11.3-11.4":0.06297,"12.0-12.1":0.03265,"12.2-12.5":0.63902,"13.0-13.1":0.03265,"13.2":0.02332,"13.3":0.06064,"13.4-13.7":0.23555,"14.0-14.4":0.64602,"14.5-14.8":1.58589,"15.0-15.1":0.55506,"15.2-15.3":0.87457,"15.4":1.59522,"15.5":16.01983,"16.0":0.14226},P:{"4":0.19421,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.02044,"10.1":0.02044,"11.1-11.2":0.092,"12.0":0.03067,"13.0":0.07155,"14.0":0.11244,"15.0":0.06133,"16.0":0.21466,"17.0":2.88254,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02284,"4.2-4.3":0.02665,"4.4":0,"4.4.3-4.4.4":0.13323},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00427,"10":0,"11":0.1068,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.4851},S:{"2.5":0},R:{_:"0"},M:{"0":0.36086},Q:{"10.4":0.00573},O:{"0":0.11456},H:{"0":0.2603}}; 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 5f7a9343507f9d5..333708e49f4a38b 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.00414,"60":0.00414,"78":0.02897,"91":0.04139,"100":0.00828,"101":0.14073,"102":1.80874,"103":0.19453,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"49":0.02897,"65":0.00828,"67":0.0207,"75":0.23178,"76":0.00414,"79":0.01656,"80":0.09934,"83":0.01242,"84":0.00828,"86":0.0207,"87":0.0207,"90":0.04553,"92":0.00828,"93":0.00414,"94":0.01656,"95":0.01656,"96":0.02483,"97":0.05381,"98":0.02483,"99":0.08692,"100":0.0745,"101":0.18212,"102":0.96025,"103":14.61067,"104":0.03311,"106":0.00828,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 74 77 78 81 85 88 89 91 105"},F:{"40":0.00828,"86":0.01656,"87":0.00414,"88":0.44701,"89":0.08278,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00828,"91":0.00828,"99":0.00414,"100":0.01242,"101":0.05381,"102":0.32698,"103":7.70268,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98"},E:{"4":0,"12":0.00414,"13":0.02483,"14":0.42632,"15":0.12003,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01242,"10.1":0.00828,"11.1":0.02483,"12.1":0.12831,"13.1":0.36009,"14.1":1.04717,"15.1":0.13659,"15.2-15.3":0.20281,"15.4":0.98094,"15.5":7.4502,"15.6":0.21109,"16.0":0.00828},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.29618,"7.0-7.1":0,"8.1-8.4":0.02167,"9.0-9.2":0.03973,"9.3":0.35758,"10.0-10.2":0.03973,"10.3":0.68987,"11.0-11.2":0,"11.3-11.4":0.07585,"12.0-12.1":0.01084,"12.2-12.5":1.39419,"13.0-13.1":0.00361,"13.2":0.01806,"13.3":0.05418,"13.4-13.7":0.17698,"14.0-14.4":0.69348,"14.5-14.8":2.65114,"15.0-15.1":0.49122,"15.2-15.3":0.80907,"15.4":1.63258,"15.5":26.03097,"16.0":0.05418},P:{"4":0.25989,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.27514,"8.2":0.07034,"9.2":0.01038,"10.1":0.01083,"11.1-11.2":0.01083,"12.0":0.02116,"13.0":0.05414,"14.0":0.02166,"15.0":0.01083,"16.0":0.10829,"17.0":4.21234},I:{"0":0,"3":0,"4":0.0007,"2.1":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.02861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.0927,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.33994},Q:{"10.4":0},O:{"0":0},H:{"0":0.01665},L:{"0":18.32733}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00453,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00453,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0136,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00453,"88":0,"89":0.00907,"90":0,"91":0.01814,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00453,"101":0.06348,"102":0.91587,"103":0.09521,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0136,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00453,"66":0,"67":0.00907,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.10428,"76":0.00453,"77":0,"78":0,"79":0.00907,"80":0.04534,"81":0,"83":0.00453,"84":0.00453,"85":0,"86":0.00907,"87":0.00907,"88":0,"89":0,"90":0.02267,"91":0,"92":0.00453,"93":0.00453,"94":0.00907,"95":0.00907,"96":0.00907,"97":0.02267,"98":0.00907,"99":0.04081,"100":0.03174,"101":0.08161,"102":0.43526,"103":6.72392,"104":0.0136,"105":0,"106":0.00453,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00453,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00453,"87":0.00453,"88":0.20403,"89":0.03627,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00453,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00453,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00453,"100":0.00453,"101":0.0272,"102":0.15416,"103":3.52745,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00453,"13":0.0136,"14":0.19496,"15":0.05441,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00453,"10.1":0.00453,"11.1":0.00907,"12.1":0.05894,"13.1":0.16322,"14.1":0.47607,"15.1":0.06348,"15.2-15.3":0.09068,"15.4":0.44433,"15.5":3.37783,"15.6":0.09521,"16.0":0.00453},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.42557,"7.0-7.1":0,"8.1-8.4":0.03114,"9.0-9.2":0.05709,"9.3":0.5138,"10.0-10.2":0.05709,"10.3":0.99127,"11.0-11.2":0,"11.3-11.4":0.10899,"12.0-12.1":0.01557,"12.2-12.5":2.00331,"13.0-13.1":0.00519,"13.2":0.02595,"13.3":0.07785,"13.4-13.7":0.25431,"14.0-14.4":0.99646,"14.5-14.8":3.80939,"15.0-15.1":0.70583,"15.2-15.3":1.16254,"15.4":2.34584,"15.5":37.40369,"16.0":0.07785},P:{"4":0.26435,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.01101,"11.1-11.2":0.01101,"12.0":0,"13.0":0.04406,"14.0":0.02203,"15.0":0.01101,"16.0":0.09913,"17.0":3.91019,"18.0":0},I:{"0":0,"3":0,"4":0.0095,"2.1":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.38962},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.49421,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":22.82001},S:{"2.5":0},R:{_:"0"},M:{"0":0.31703},Q:{"10.4":0},O:{"0":0},H:{"0":0.01552}}; 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 6545fcf121c6204..5a42f0a0d615020 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.00388,"73":0.04654,"78":0.01551,"86":0.00388,"89":0.06205,"99":0.00776,"100":0.00776,"101":0.04266,"102":0.76397,"103":0.13573,"104":0.01163,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 87 88 90 91 92 93 94 95 96 97 98 105 3.5 3.6"},D:{"11":0.00388,"39":0.00776,"47":0.01551,"49":0.01551,"53":0.01163,"56":0.00776,"58":0.00388,"61":0.00388,"63":0.00776,"64":0.00776,"65":0.02327,"66":0.03102,"68":0.01163,"69":0.01939,"70":0.00776,"73":0.05817,"74":0.00776,"75":0.03878,"76":0.10083,"77":0.00776,"79":0.09695,"80":0.01163,"81":0.04654,"83":0.03878,"84":0.01939,"85":0.00388,"86":0.01163,"87":0.05429,"88":0.02327,"89":0.01163,"90":0.01163,"91":0.05817,"92":0.01939,"93":0.20166,"94":0.01551,"95":0.04266,"96":0.0698,"97":0.06593,"98":0.09307,"99":0.10858,"100":0.159,"101":0.43434,"102":1.76449,"103":21.82151,"104":0.03878,"105":0.05817,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 62 67 71 72 78 106"},F:{"28":0.01163,"86":0.00776,"87":0.03878,"88":0.6515,"89":0.21329,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00388,"15":0.01163,"16":0.00776,"17":0.00388,"18":0.01163,"84":0.01163,"89":0.00388,"92":0.00776,"94":0.00776,"97":0.00776,"98":0.00776,"99":0.00776,"100":0.01163,"101":0.09307,"102":0.12797,"103":3.83534,_:"13 14 79 80 81 83 85 86 87 88 90 91 93 95 96"},E:{"4":0,"13":0.01551,"14":0.04266,"15":0.02327,_:"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.02327,"12.1":0.02715,"13.1":0.15124,"14.1":0.14736,"15.1":0.04266,"15.2-15.3":0.03102,"15.4":0.17839,"15.5":0.93848,"15.6":0.03878,"16.0":0.00776},G:{"8":0.00127,"3.2":0.00381,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00254,"6.0-6.1":0,"7.0-7.1":0.14361,"8.1-8.4":0.00381,"9.0-9.2":0.00127,"9.3":0.08006,"10.0-10.2":0.00254,"10.3":0.0521,"11.0-11.2":0.04575,"11.3-11.4":0.01017,"12.0-12.1":0.01525,"12.2-12.5":0.47276,"13.0-13.1":0.01271,"13.2":0.00254,"13.3":0.02669,"13.4-13.7":0.10167,"14.0-14.4":0.21223,"14.5-14.8":0.7104,"15.0-15.1":0.23129,"15.2-15.3":0.54901,"15.4":0.67228,"15.5":8.97853,"16.0":0.08515},P:{"4":0.16931,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.27514,"8.2":0.07034,"9.2":0.01038,"10.1":0.01086,"11.1-11.2":0.16931,"12.0":0.02116,"13.0":0.09524,"14.0":0.12699,"15.0":0.09524,"16.0":0.25397,"17.0":3.66142},I:{"0":0,"3":0,"4":0.00125,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00063,"4.2-4.3":0.00564,"4.4":0,"4.4.3-4.4.4":0.04759},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00388,"11":0.01939,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.11021},Q:{"10.4":0},O:{"0":0.39187},H:{"0":0.20869},L:{"0":47.863}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00413,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.02064,"74":0,"75":0,"76":0,"77":0,"78":0.00825,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00413,"87":0,"88":0,"89":0.02476,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00413,"99":0.00413,"100":0.00413,"101":0.02064,"102":0.34254,"103":0.05778,"104":0.00413,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00413,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00413,"48":0,"49":0.00825,"50":0,"51":0,"52":0,"53":0.00413,"54":0,"55":0,"56":0.00413,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00413,"64":0.00413,"65":0.00825,"66":0.01238,"67":0,"68":0.00413,"69":0.00825,"70":0.00413,"71":0,"72":0,"73":0.02476,"74":0.00413,"75":0.01651,"76":0.04127,"77":0.00413,"78":0,"79":0.04127,"80":0.00413,"81":0.02476,"83":0.01651,"84":0.00825,"85":0.00413,"86":0.00825,"87":0.02476,"88":0.01238,"89":0.01651,"90":0.00413,"91":0.02476,"92":0.00825,"93":0.08254,"94":0.00825,"95":0.02064,"96":0.03302,"97":0.02889,"98":0.04127,"99":0.0454,"100":0.07016,"101":0.18984,"102":0.74699,"103":9.11242,"104":0.01651,"105":0.02476,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00413,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01238,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00413,"87":0.01651,"88":0.26826,"89":0.08667,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00413,"13":0,"14":0,"15":0.00413,"16":0.00413,"17":0.00413,"18":0.00413,"79":0,"80":0,"81":0,"83":0,"84":0.00413,"85":0,"86":0,"87":0,"88":0,"89":0.00413,"90":0,"91":0,"92":0.00413,"93":0,"94":0.00413,"95":0,"96":0,"97":0.00413,"98":0.00413,"99":0.00413,"100":0.00413,"101":0.03714,"102":0.05365,"103":1.59715,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00825,"14":0.01651,"15":0.00825,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00825,"12.1":0.01238,"13.1":0.06191,"14.1":0.06191,"15.1":0.01651,"15.2-15.3":0.01238,"15.4":0.07429,"15.5":0.38794,"15.6":0.01651,"16.0":0.00413},G:{"8":0.00179,"3.2":0.00537,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00358,"6.0-6.1":0,"7.0-7.1":0.20222,"8.1-8.4":0.00537,"9.0-9.2":0.00179,"9.3":0.11274,"10.0-10.2":0.00358,"10.3":0.07337,"11.0-11.2":0.06443,"11.3-11.4":0.01432,"12.0-12.1":0.02148,"12.2-12.5":0.66573,"13.0-13.1":0.0179,"13.2":0.00358,"13.3":0.03758,"13.4-13.7":0.14317,"14.0-14.4":0.29886,"14.5-14.8":1.00038,"15.0-15.1":0.3257,"15.2-15.3":0.7731,"15.4":0.94669,"15.5":12.64341,"16.0":0.1199},P:{"4":0.18205,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.25701,"8.2":0,"9.2":0.02142,"10.1":0,"11.1-11.2":0.16063,"12.0":0.02142,"13.0":0.10709,"14.0":0.10709,"15.0":0.08567,"16.0":0.2463,"17.0":3.48036,"18.0":0},I:{"0":0,"3":0,"4":0.02155,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01078,"4.2-4.3":0.097,"4.4":0,"4.4.3-4.4.4":0.81909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00413,"11":0.01238,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.77425},S:{"2.5":0},R:{_:"0"},M:{"0":0.10571},Q:{"10.4":0},O:{"0":0.37587},H:{"0":0.20017}}; 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 4d8ed7f86d3f5c1..a0244692f0f8cd2 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.00537,"52":0.00806,"63":0.01611,"69":0.00806,"78":0.00537,"84":0.00269,"87":0.00537,"91":0.0188,"97":0.00269,"98":0.01343,"99":0.01611,"100":0.01074,"101":0.05639,"102":0.86189,"103":0.08861,"104":0.00269,_:"2 3 4 5 6 7 8 9 10 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 81 82 83 85 86 88 89 90 92 93 94 95 96 105 3.5 3.6"},D:{"11":0.00806,"34":0.00269,"38":0.00537,"43":0.00269,"47":0.00806,"49":0.0188,"55":0.00537,"63":0.00806,"65":0.01343,"68":0.00269,"69":0.00537,"70":0.00537,"71":0.00537,"74":0.00806,"76":0.00537,"77":0.00269,"78":0.00806,"79":0.02417,"80":0.0188,"81":0.01611,"83":0.04028,"84":0.01074,"85":0.00537,"86":0.06444,"87":0.02954,"88":0.02685,"89":0.03491,"90":0.01074,"91":0.04296,"92":0.0725,"93":0.01074,"94":0.01074,"95":0.01074,"96":0.05102,"97":0.04028,"98":0.16379,"99":0.04028,"100":0.13962,"101":0.1611,"102":0.90485,"103":16.83495,"104":0.02417,"105":0.01074,_:"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 53 54 56 57 58 59 60 61 62 64 66 67 72 73 75 106"},F:{"46":0.00269,"79":0.00537,"83":0.02954,"84":0.04028,"85":0.03759,"86":0.03222,"87":0.0725,"88":0.44571,"89":0.13425,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00537,"18":0.00537,"85":0.00269,"89":0.00269,"92":0.01074,"99":0.00269,"100":0.01074,"101":0.02954,"102":0.03759,"103":1.86876,_:"13 14 15 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.01611,"14":0.05639,"15":0.02685,_:"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.00269,"12.1":0.00806,"13.1":0.04833,"14.1":0.17184,"15.1":0.03222,"15.2-15.3":0.02417,"15.4":0.12888,"15.5":0.78402,"15.6":0.02954,"16.0":0.01074},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00539,"6.0-6.1":0,"7.0-7.1":0.01079,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03911,"10.0-10.2":0,"10.3":0.06742,"11.0-11.2":0.00539,"11.3-11.4":0.00944,"12.0-12.1":0.01753,"12.2-12.5":0.47061,"13.0-13.1":0.01079,"13.2":0.00539,"13.3":0.02292,"13.4-13.7":0.11462,"14.0-14.4":0.47466,"14.5-14.8":1.03562,"15.0-15.1":0.29666,"15.2-15.3":0.52994,"15.4":0.96684,"15.5":9.03467,"16.0":0.06203},P:{"4":0.05126,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.10253,"8.2":0.07034,"9.2":0.02051,"10.1":0.01083,"11.1-11.2":0.10253,"12.0":0.02051,"13.0":0.09228,"14.0":0.13329,"15.0":0.08202,"16.0":0.23582,"17.0":2.55296},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.39941,"4.4":0,"4.4.3-4.4.4":3.04549},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03759,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.19748},Q:{"10.4":0},O:{"0":0.24868},H:{"0":0.21466},L:{"0":54.54263}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00271,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00543,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00271,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00271,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00271,"88":0,"89":0,"90":0,"91":0.00543,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00271,"98":0.00271,"99":0.00543,"100":0.00271,"101":0.019,"102":0.2714,"103":0.02714,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00271,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00271,"48":0,"49":0.00543,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00271,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00271,"64":0,"65":0.00271,"66":0,"67":0,"68":0,"69":0.00271,"70":0.00271,"71":0.00271,"72":0,"73":0,"74":0.00271,"75":0,"76":0.00271,"77":0,"78":0.00271,"79":0.00814,"80":0.00543,"81":0.01628,"83":0.01086,"84":0.00271,"85":0.00271,"86":0.019,"87":0.00814,"88":0.01086,"89":0.00814,"90":0.00271,"91":0.01086,"92":0.02985,"93":0.00271,"94":0.00271,"95":0.00271,"96":0.01357,"97":0.01086,"98":0.04614,"99":0.01086,"100":0.038,"101":0.04614,"102":0.25783,"103":4.60566,"104":0.00543,"105":0.00271,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00271,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00271,"80":0,"81":0,"82":0,"83":0.00814,"84":0.01086,"85":0.01086,"86":0.00814,"87":0.019,"88":0.11942,"89":0.03528,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00271,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00271,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00271,"101":0.00814,"102":0.01357,"103":0.51295,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00543,"14":0.01628,"15":0.00814,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00271,"13.1":0.01357,"14.1":0.04614,"15.1":0.00814,"15.2-15.3":0.00543,"15.4":0.03528,"15.5":0.21169,"15.6":0.00814,"16.0":0.00271},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,"7.0-7.1":0.01428,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05175,"10.0-10.2":0,"10.3":0.08923,"11.0-11.2":0.00714,"11.3-11.4":0.01249,"12.0-12.1":0.0232,"12.2-12.5":0.6228,"13.0-13.1":0.01428,"13.2":0.00714,"13.3":0.03034,"13.4-13.7":0.15168,"14.0-14.4":0.62815,"14.5-14.8":1.37051,"15.0-15.1":0.39259,"15.2-15.3":0.70132,"15.4":1.2795,"15.5":11.9563,"16.0":0.08209},P:{"4":0.08171,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10214,"8.2":0,"9.2":0.03064,"10.1":0,"11.1-11.2":0.11235,"12.0":0.02043,"13.0":0.09192,"14.0":0.13278,"15.0":0.08171,"16.0":0.2247,"17.0":2.50233,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.50927,"4.4":0,"4.4.3-4.4.4":3.88319},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01086,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.12572},S:{"2.5":0},R:{_:"0"},M:{"0":0.19672},Q:{"10.4":0},O:{"0":0.24772},H:{"0":0.21384}}; 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 ee6ca7968b04072..abf5962648c9584 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.01219,"52":0.07926,"53":0.0061,"56":0.02439,"66":0.01219,"68":0.0061,"72":0.01219,"78":0.05487,"81":0.0061,"83":0.0061,"84":0.0061,"85":0.0061,"90":0.01219,"91":0.06097,"93":0.0061,"95":0.0061,"96":0.0061,"97":0.01829,"98":0.01219,"99":0.01829,"100":0.03049,"101":0.23169,"102":3.49358,"103":0.2134,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 86 87 88 89 92 94 104 105 3.5 3.6"},D:{"41":0.0061,"45":0.0061,"49":0.14023,"52":0.0061,"58":0.0061,"62":0.01829,"65":0.01219,"67":0.01219,"69":0.03049,"70":0.0061,"71":0.01219,"72":0.0061,"73":0.0061,"74":0.02439,"75":0.01829,"76":0.01219,"78":0.01219,"79":0.04878,"80":0.04878,"81":0.11584,"83":0.05487,"84":0.04268,"85":0.03658,"86":0.07316,"87":0.10365,"88":0.01829,"89":0.06097,"90":0.01829,"91":0.03049,"92":0.08536,"93":0.01829,"94":0.02439,"95":0.06097,"96":0.08536,"97":0.09146,"98":0.09146,"99":0.08536,"100":0.16462,"101":0.23778,"102":1.36573,"103":24.93063,"104":0.01829,"105":0.01829,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 46 47 48 50 51 53 54 55 56 57 59 60 61 63 64 66 68 77 106"},F:{"87":0.01219,"88":0.2073,"89":0.11584,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.0061,"18":0.01829,"84":0.0061,"86":0.01219,"87":0.0061,"89":0.0061,"90":0.01219,"91":0.03658,"92":0.01219,"94":0.0061,"96":0.01219,"97":0.01219,"98":0.01829,"99":0.03658,"100":0.03049,"101":0.07316,"102":0.31095,"103":13.34633,_:"12 13 14 15 16 79 80 81 83 85 88 93 95"},E:{"4":0,"12":0.0061,"13":0.04878,"14":0.16462,"15":0.03658,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0061,"10.1":0.01829,"11.1":0.03049,"12.1":0.04878,"13.1":0.2012,"14.1":0.42069,"15.1":0.06707,"15.2-15.3":0.06097,"15.4":0.27437,"15.5":2.21321,"15.6":0.07316,"16.0":0.01219},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03788,"8.1-8.4":0.02131,"9.0-9.2":0.20595,"9.3":0.116,"10.0-10.2":0.01894,"10.3":0.06628,"11.0-11.2":0.06628,"11.3-11.4":0.02604,"12.0-12.1":0.04261,"12.2-12.5":0.40007,"13.0-13.1":0.02367,"13.2":0.01184,"13.3":0.06865,"13.4-13.7":0.22252,"14.0-14.4":0.66757,"14.5-14.8":1.87962,"15.0-15.1":0.37876,"15.2-15.3":0.71728,"15.4":1.42747,"15.5":16.9284,"16.0":0.02841},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 15.0","11.1-11.2":0.01103,"12.0":0.01103,"13.0":0.02206,"14.0":0.01103,"16.0":0.06617,"17.0":1.08081},I:{"0":0,"3":0,"4":0.01332,"2.1":0,"2.2":0.01997,"2.3":0.01665,"4.1":0.01665,"4.2-4.3":0.09321,"4.4":0,"4.4.3-4.4.4":0.17977},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.028,"11":1.15482,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.37079},Q:{"10.4":0.01952},O:{"0":0.17564},H:{"0":0.10346},L:{"0":21.31166}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00624,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00624,"49":0,"50":0,"51":0,"52":0.04994,"53":0.00624,"54":0,"55":0,"56":0.01873,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00624,"67":0,"68":0.00624,"69":0,"70":0,"71":0,"72":0.00624,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03122,"79":0,"80":0.00624,"81":0.00624,"82":0,"83":0.00624,"84":0.00624,"85":0.00624,"86":0,"87":0,"88":0.01249,"89":0.00624,"90":0.00624,"91":0.03746,"92":0.00624,"93":0.00624,"94":0.00624,"95":0.00624,"96":0.00624,"97":0.01249,"98":0.00624,"99":0.01249,"100":0.02497,"101":0.14983,"102":2.21002,"103":0.28718,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00624,"42":0,"43":0.00624,"44":0,"45":0.00624,"46":0,"47":0,"48":0.00624,"49":0.0874,"50":0,"51":0,"52":0.00624,"53":0,"54":0,"55":0,"56":0.00624,"57":0,"58":0.00624,"59":0,"60":0,"61":0,"62":0.01249,"63":0,"64":0.00624,"65":0.00624,"66":0,"67":0.01249,"68":0,"69":0.01873,"70":0.00624,"71":0.00624,"72":0.00624,"73":0.00624,"74":0.01249,"75":0.01249,"76":0.00624,"77":0.00624,"78":0.00624,"79":0.03746,"80":0.03122,"81":0.07492,"83":0.03746,"84":0.02497,"85":0.02497,"86":0.0437,"87":0.06243,"88":0.01249,"89":0.03746,"90":0.01249,"91":0.01873,"92":0.05619,"93":0.01249,"94":0.01249,"95":0.03746,"96":0.04994,"97":0.05619,"98":0.05619,"99":0.05619,"100":0.09989,"101":0.14359,"102":0.83032,"103":15.67617,"104":0.01249,"105":0.01249,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00624,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00624,"88":0.11862,"89":0.08116,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00624,"16":0,"17":0.00624,"18":0.01249,"79":0,"80":0,"81":0,"83":0,"84":0.00624,"85":0,"86":0.00624,"87":0.00624,"88":0,"89":0.00624,"90":0.00624,"91":0.02497,"92":0.00624,"93":0,"94":0.00624,"95":0.00624,"96":0.00624,"97":0.00624,"98":0.01249,"99":0.01873,"100":0.01873,"101":0.04994,"102":0.19978,"103":8.34065,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00624,"13":0.03122,"14":0.09989,"15":0.02497,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00624,"10.1":0.01249,"11.1":0.01873,"12.1":0.03122,"13.1":0.1311,"14.1":0.26221,"15.1":0.0437,"15.2-15.3":0.03746,"15.4":0.16856,"15.5":1.34849,"15.6":0.06243,"16.0":0.00624},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.06192,"8.1-8.4":0.03483,"9.0-9.2":0.33671,"9.3":0.18964,"10.0-10.2":0.03096,"10.3":0.10837,"11.0-11.2":0.10837,"11.3-11.4":0.04257,"12.0-12.1":0.06967,"12.2-12.5":0.65408,"13.0-13.1":0.0387,"13.2":0.01935,"13.3":0.11224,"13.4-13.7":0.36381,"14.0-14.4":1.09142,"14.5-14.8":3.07301,"15.0-15.1":0.61925,"15.2-15.3":1.1727,"15.4":2.33378,"15.5":27.67642,"16.0":0.04644},P:{"4":0.01071,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01071,"12.0":0.01071,"13.0":0.02143,"14.0":0.01071,"15.0":0.01071,"16.0":0.05357,"17.0":1.02858,"18.0":0},I:{"0":0,"3":0,"4":0.03108,"2.1":0,"2.2":0.04662,"2.3":0.03885,"4.1":0.03885,"4.2-4.3":0.21758,"4.4":0,"4.4.3-4.4.4":0.41961},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.0142,"10":0,"11":0.70999,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":24.71423},S:{"2.5":0},R:{_:"0"},M:{"0":0.35692},Q:{"10.4":0.01879},O:{"0":0.16531},H:{"0":0.09604}}; 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 ed2d7ee0767bdd8..1b6e88b361caa51 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.01159,"47":0.0058,"52":0.22315,"57":0.00869,"66":0.0029,"72":0.0058,"73":0.00869,"78":0.02029,"83":0.0058,"87":0.0058,"88":0.00869,"89":0.0058,"90":0.0029,"91":0.03478,"95":0.0058,"96":0.0058,"97":0.01159,"98":0.0058,"99":0.02608,"100":0.02608,"101":0.11882,"102":1.67215,"103":0.24053,"104":0.00869,_:"2 3 4 5 6 7 8 9 10 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 67 68 69 70 71 74 75 76 77 79 80 81 82 84 85 86 92 93 94 105 3.5 3.6"},D:{"38":0.00869,"43":0.01159,"47":0.0058,"49":0.01739,"50":0.0058,"51":0.0058,"54":0.00869,"55":0.0029,"56":0.01449,"58":0.0058,"60":0.0029,"64":0.0029,"65":0.0058,"66":0.01449,"68":0.0029,"69":0.12461,"70":0.00869,"72":0.01159,"73":0.01449,"74":0.01739,"75":0.0058,"76":0.01449,"77":0.0029,"78":0.00869,"79":0.05506,"80":0.01449,"81":0.02029,"83":0.03767,"84":0.00869,"85":0.01159,"86":0.04057,"87":0.06086,"88":0.01449,"89":0.01449,"90":0.01449,"91":0.04057,"92":0.03188,"93":0.02608,"94":0.02029,"95":0.02898,"96":0.09274,"97":0.03188,"98":0.04637,"99":0.04057,"100":0.08984,"101":0.16229,"102":0.7245,"103":14.32771,"104":0.04347,"105":0.01739,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 52 53 57 59 61 62 63 67 71 106"},F:{"28":0.01449,"36":0.0029,"46":0.0029,"65":0.00869,"68":0.0029,"70":0.0058,"79":0.01449,"82":0.00869,"85":0.02318,"86":0.02898,"87":0.02318,"88":0.40862,"89":0.2898,_:"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 69 71 72 73 74 75 76 77 78 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01449,"13":0.01159,"14":0.0058,"15":0.00869,"16":0.01159,"17":0.0058,"18":0.04057,"84":0.0058,"85":0.0058,"89":0.00869,"90":0.0058,"91":0.0058,"92":0.05216,"96":0.0029,"97":0.0029,"98":0.00869,"99":0.0058,"100":0.00869,"101":0.03188,"102":0.05216,"103":1.51276,_:"79 80 81 83 86 87 88 93 94 95"},E:{"4":0,"11":0.02029,"13":0.0058,"14":0.02608,"15":0.0058,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 11.1 16.0","5.1":0.0029,"10.1":0.0058,"12.1":0.01449,"13.1":0.03767,"14.1":0.09274,"15.1":0.01159,"15.2-15.3":0.01159,"15.4":0.04637,"15.5":0.22315,"15.6":0.01159},G:{"8":0.00025,"3.2":0,"4.0-4.1":0.00102,"4.2-4.3":0,"5.0-5.1":0.0051,"6.0-6.1":0,"7.0-7.1":0.02166,"8.1-8.4":0.00076,"9.0-9.2":0.00178,"9.3":0.03542,"10.0-10.2":0.00127,"10.3":0.02064,"11.0-11.2":0.0079,"11.3-11.4":0.00459,"12.0-12.1":0.00815,"12.2-12.5":0.15569,"13.0-13.1":0.00331,"13.2":0.00459,"13.3":0.01529,"13.4-13.7":0.04103,"14.0-14.4":0.10499,"14.5-14.8":0.20921,"15.0-15.1":0.06447,"15.2-15.3":0.10142,"15.4":0.15952,"15.5":1.51567,"16.0":0.00943},P:{"4":0.19676,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.07249,"8.2":0.07034,"9.2":0.01037,"10.1":0.01083,"11.1-11.2":0.02071,"12.0":0.02074,"13.0":0.02071,"14.0":0.05178,"15.0":0.03107,"16.0":0.10356,"17.0":0.61099},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.00313,"4.4":0,"4.4.3-4.4.4":0.03792},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.66654,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.14206},Q:{"10.4":0},O:{"0":0.25571},H:{"0":24.53157},L:{"0":46.61598}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00293,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00293,"48":0,"49":0,"50":0,"51":0,"52":0.06435,"53":0,"54":0,"55":0,"56":0,"57":0.00293,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00293,"69":0,"70":0,"71":0,"72":0.00293,"73":0.00293,"74":0,"75":0,"76":0,"77":0,"78":0.00585,"79":0,"80":0,"81":0,"82":0,"83":0.00293,"84":0,"85":0,"86":0,"87":0.00293,"88":0.00293,"89":0.00293,"90":0,"91":0.0117,"92":0,"93":0,"94":0.00293,"95":0.00293,"96":0.00293,"97":0.00293,"98":0.00293,"99":0.00878,"100":0.00878,"101":0.04095,"102":0.51188,"103":0.07313,"104":0.00293,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00293,"39":0,"40":0,"41":0,"42":0,"43":0.00293,"44":0,"45":0,"46":0,"47":0.00293,"48":0,"49":0.00585,"50":0.00293,"51":0.00293,"52":0,"53":0,"54":0.00293,"55":0,"56":0.00293,"57":0,"58":0.00293,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00293,"65":0,"66":0.00293,"67":0,"68":0,"69":0.0351,"70":0.00293,"71":0,"72":0.00293,"73":0.00293,"74":0.00585,"75":0.00293,"76":0.00293,"77":0,"78":0.00293,"79":0.01755,"80":0.00585,"81":0.00878,"83":0.0117,"84":0.00293,"85":0.00293,"86":0.0117,"87":0.01755,"88":0.00585,"89":0.00293,"90":0.00585,"91":0.0117,"92":0.0117,"93":0.00878,"94":0.00585,"95":0.00878,"96":0.02633,"97":0.00878,"98":0.01463,"99":0.0117,"100":0.02633,"101":0.04973,"102":0.21353,"103":4.20615,"104":0.0117,"105":0.00585,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0.00293,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.01463,"25":0.00293,"26":0.00585,"27":0.0234,"28":0.01463,"29":0.00293,"30":0.0117,"31":0.00585,"32":0.0351,"33":0.01755,"34":0,"35":0,"36":0.00293,"37":0.00585,"38":0.02925,"39":0,"40":0,"41":0,"42":0.00585,"43":0,"44":0,"45":0.00585,"46":0.02048,"47":0.00878,"48":0,"49":0,"50":0.01463,"51":0.02633,"52":0,"53":0,"54":0.03803,"55":0.02633,"56":0.01463,"57":0.02925,"58":0.11408,"60":0.54405,"62":0.00878,"63":1.88663,"64":0.07313,"65":0.00293,"66":0,"67":0,"68":0.00293,"69":0.00293,"70":0.00878,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00293,"80":0,"81":0,"82":0.00293,"83":0,"84":0,"85":0.00585,"86":0.00878,"87":0.00585,"88":0.11993,"89":0.08483,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0351},B:{"12":0.00293,"13":0.00293,"14":0.00293,"15":0.00293,"16":0.00293,"17":0.00293,"18":0.0117,"79":0,"80":0,"81":0,"83":0,"84":0.00293,"85":0.00293,"86":0,"87":0,"88":0,"89":0.00293,"90":0,"91":0.00293,"92":0.01463,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00293,"99":0.00293,"100":0.00293,"101":0.00878,"102":0.01755,"103":0.44753,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00585,"12":0,"13":0,"14":0.00878,"15":0.00293,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00293,"11.1":0,"12.1":0.00293,"13.1":0.0117,"14.1":0.02633,"15.1":0.00293,"15.2-15.3":0.00293,"15.4":0.01463,"15.5":0.06435,"15.6":0.00293,"16.0":0},G:{"8":0.00035,"3.2":0,"4.0-4.1":0.0014,"4.2-4.3":0,"5.0-5.1":0.00701,"6.0-6.1":0,"7.0-7.1":0.02978,"8.1-8.4":0.00105,"9.0-9.2":0.00245,"9.3":0.0487,"10.0-10.2":0.00175,"10.3":0.02838,"11.0-11.2":0.01086,"11.3-11.4":0.00631,"12.0-12.1":0.01121,"12.2-12.5":0.21408,"13.0-13.1":0.00455,"13.2":0.00631,"13.3":0.02102,"13.4-13.7":0.05641,"14.0-14.4":0.14436,"14.5-14.8":0.28766,"15.0-15.1":0.08865,"15.2-15.3":0.13945,"15.4":0.21934,"15.5":2.08405,"16.0":0.01296},P:{"4":0.19064,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07024,"8.2":0,"9.2":0.01003,"10.1":0.01003,"11.1-11.2":0.02007,"12.0":0.01003,"13.0":0.0301,"14.0":0.05017,"15.0":0.0301,"16.0":0.0903,"17.0":0.59198,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00339,"4.2-4.3":0.00678,"4.4":0,"4.4.3-4.4.4":0.08201},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.19305,"5.5":0},J:{"7":0,"10":0.00708},N:{"10":0.00708,"11":0},L:{"0":54.18558},S:{"2.5":0},R:{_:"0"},M:{"0":0.1415},Q:{"10.4":0},O:{"0":0.2547},H:{"0":24.43486}}; 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 dc16b3ec291a303..b080724efe97f5b 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.05103,"91":0.05613,"98":0.01021,"100":0.0051,"101":0.08675,"102":0.65318,"103":0.06634,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 99 104 105 3.5 3.6"},D:{"49":0.06634,"63":0.01531,"65":0.01021,"67":0.03572,"71":0.01021,"74":0.05103,"79":0.05613,"80":0.01531,"81":0.01021,"83":0.01021,"84":0.0051,"85":0.01531,"86":0.02552,"87":0.0051,"88":0.03062,"89":0.04593,"90":0.01021,"91":0.01021,"92":0.03062,"93":0.0051,"94":0.02552,"95":0.01021,"96":0.04593,"97":0.04082,"98":0.01531,"99":0.02552,"100":0.10716,"101":0.18881,"102":1.59724,"103":41.74764,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 73 75 76 77 78 104 105 106"},F:{"28":0.04082,"42":0.01531,"82":0.0051,"85":0.11227,"86":0.01021,"87":0.08675,"88":1.1839,"89":0.62767,_:"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 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.0051,"100":0.06124,"102":0.01021,"103":0.46437,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101"},E:{"4":0,"13":0.01021,"14":0.03062,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.1684,"13.1":0.02041,"14.1":0.06634,"15.1":0.02041,"15.2-15.3":0.02041,"15.4":0.11227,"15.5":0.30108,"15.6":0.01021,"16.0":0.03572},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0006,"6.0-6.1":0,"7.0-7.1":0.00658,"8.1-8.4":0,"9.0-9.2":0.0012,"9.3":0.02033,"10.0-10.2":0,"10.3":0.01734,"11.0-11.2":0.00359,"11.3-11.4":0.00658,"12.0-12.1":0.00897,"12.2-12.5":0.19851,"13.0-13.1":0.01016,"13.2":0.00718,"13.3":0.02631,"13.4-13.7":0.09208,"14.0-14.4":0.32408,"14.5-14.8":0.58239,"15.0-15.1":0.31451,"15.2-15.3":0.42513,"15.4":0.68344,"15.5":2.9801,"16.0":0.19672},P:{"4":0.25677,"5.0-5.4":0.02054,"6.2-6.4":0.06162,"7.2-7.4":0.20541,"8.2":0.02028,"9.2":0.02054,"10.1":0.01027,"11.1-11.2":0.05135,"12.0":0.04108,"13.0":0.13352,"14.0":0.12325,"15.0":0.08217,"16.0":0.22596,"17.0":1.07842},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.0017,"4.4":0,"4.4.3-4.4.4":0.01703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13268,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.07835},Q:{"10.4":0.01959},O:{"0":0.51419},H:{"0":0.27817},L:{"0":40.28918}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02563,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00513,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.03076,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00513,"99":0,"100":0.00513,"101":0.04613,"102":0.35882,"103":0.03588,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03588,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01025,"64":0,"65":0.00513,"66":0,"67":0.01538,"68":0,"69":0,"70":0,"71":0.00513,"72":0,"73":0,"74":0.02563,"75":0,"76":0,"77":0,"78":0,"79":0.03076,"80":0.01025,"81":0.01025,"83":0.01025,"84":0.00513,"85":0.00513,"86":0.01538,"87":0.01025,"88":0.01538,"89":0.02563,"90":0.00513,"91":0.00513,"92":0.01538,"93":0.00513,"94":0.01538,"95":0.00513,"96":0.02563,"97":0.04101,"98":0.01025,"99":0.01538,"100":0.05639,"101":0.10252,"102":0.82529,"103":21.42155,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0205,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.01025,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02563,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00513,"83":0,"84":0,"85":0.05639,"86":0.00513,"87":0.04613,"88":0.60999,"89":0.32294,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00513,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.03076,"101":0,"102":0.01025,"103":0.24092,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00513,"14":0.01538,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.08714,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00513,"13.1":0.01025,"14.1":0.03588,"15.1":0.01025,"15.2-15.3":0.01025,"15.4":0.05639,"15.5":0.15378,"15.6":0.00513,"16.0":0.01538},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00094,"6.0-6.1":0,"7.0-7.1":0.01038,"8.1-8.4":0,"9.0-9.2":0.00189,"9.3":0.03209,"10.0-10.2":0,"10.3":0.02737,"11.0-11.2":0.00566,"11.3-11.4":0.01038,"12.0-12.1":0.01416,"12.2-12.5":0.31337,"13.0-13.1":0.01605,"13.2":0.01133,"13.3":0.04153,"13.4-13.7":0.14536,"14.0-14.4":0.51158,"14.5-14.8":0.91934,"15.0-15.1":0.49648,"15.2-15.3":0.6711,"15.4":1.07886,"15.5":4.7043,"16.0":0.31054},P:{"4":0.26003,"5.0-5.4":0.02,"6.2-6.4":0.06001,"7.2-7.4":0.20002,"8.2":0.01,"9.2":0.02,"10.1":0.02,"11.1-11.2":0.07001,"12.0":0.04,"13.0":0.13002,"14.0":0.12001,"15.0":0.08001,"16.0":0.22003,"17.0":1.05013,"18.0":0.01},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00263,"4.2-4.3":0.00526,"4.4":0,"4.4.3-4.4.4":0.05261},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07176,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.33575},S:{"2.5":0},R:{_:"0"},M:{"0":0.07798},Q:{"10.4":0.0195},O:{"0":0.51177},H:{"0":0.27686}}; 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 a2fce51c5774f0b..6b5e3af7c09bc8f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js @@ -1 +1 @@ -module.exports={C:{"2":0.00766,"12":0.00383,"47":0.00383,"48":0.00383,"50":0.01531,"51":0.01531,"52":0.01148,"56":0.01914,"61":0.03445,"68":0.00766,"70":0.01148,"72":0.00766,"75":0.00766,"78":0.03828,"79":0.03828,"80":0.00766,"81":0.01531,"82":0.01148,"84":0.01531,"87":0.01148,"88":0.00383,"89":0.00766,"90":0.00383,"91":0.01148,"95":0.01148,"96":0.02297,"97":0.00383,"99":0.01148,"100":0.01914,"101":0.09187,"102":1.79916,"103":0.24882,"104":0.02297,_:"3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 53 54 55 57 58 59 60 62 63 64 65 66 67 69 71 73 74 76 77 83 85 86 92 93 94 98 105 3.5 3.6"},D:{"28":0.00383,"38":0.02297,"41":0.00766,"43":0.00383,"48":0.01531,"49":0.02297,"53":0.02297,"56":0.01914,"59":0.00766,"63":0.00383,"64":0.00383,"65":0.00766,"67":0.00766,"68":0.01148,"69":0.00766,"70":0.00766,"71":0.00766,"72":0.01148,"73":0.00766,"74":0.01531,"75":0.00766,"76":0.0268,"78":0.02297,"79":0.13015,"80":0.06125,"81":0.02297,"83":0.1225,"84":0.2182,"85":0.25648,"86":0.17609,"87":0.18757,"88":0.01531,"89":0.01531,"90":0.03445,"91":0.03062,"92":0.06125,"93":0.01914,"94":0.01148,"95":0.01914,"96":0.07273,"97":0.09187,"98":0.09953,"99":0.10336,"100":0.14164,"101":0.21437,"102":1.10246,"103":22.91824,"104":0.04594,"105":0.0957,"106":0.00383,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 50 51 52 54 55 57 58 60 61 62 66 77"},F:{"36":0.00383,"40":0.00766,"52":0.00766,"68":0.01148,"70":0.01148,"71":0.03828,"79":0.00383,"85":0.00766,"86":0.01148,"87":0.05359,"88":0.62779,"89":0.356,_:"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 53 54 55 56 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00766,"18":0.05742,"83":0.00383,"84":0.00766,"85":0.01531,"86":0.01914,"87":0.00766,"89":0.00766,"90":0.00383,"92":0.01914,"98":0.00383,"99":0.00766,"100":0.00766,"101":0.01148,"102":0.05359,"103":2.03267,_:"13 14 15 16 17 79 80 81 88 91 93 94 95 96 97"},E:{"4":0,"10":0.00383,"11":0.00383,"13":0.06508,"14":0.20671,"15":0.0689,_:"0 5 6 7 8 9 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00766,"11.1":0.01531,"12.1":0.03062,"13.1":0.20671,"14.1":0.51295,"15.1":0.12632,"15.2-15.3":0.09953,"15.4":0.356,"15.5":1.85658,"15.6":0.06508,"16.0":0.03828},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00528,"7.0-7.1":0.00791,"8.1-8.4":0.02902,"9.0-9.2":0,"9.3":0.09496,"10.0-10.2":0.02374,"10.3":0.10551,"11.0-11.2":0.02374,"11.3-11.4":0.07122,"12.0-12.1":0.06858,"12.2-12.5":1.2213,"13.0-13.1":0.06331,"13.2":0.02638,"13.3":0.15827,"13.4-13.7":0.56449,"14.0-14.4":1.42177,"14.5-14.8":3.02027,"15.0-15.1":0.86783,"15.2-15.3":1.28988,"15.4":2.14453,"15.5":14.44984,"16.0":0.29543},P:{"4":0.15863,"5.0-5.4":0.06167,"6.2-6.4":0.04111,"7.2-7.4":0.25695,"8.2":0.07179,"9.2":0.22612,"10.1":0.02116,"11.1-11.2":0.01058,"12.0":0.01058,"13.0":0.02115,"14.0":0.02115,"15.0":0.02115,"16.0":0.09518,"17.0":1.54404},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.03703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01388,"9":0.00925,"11":0.1989,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.48142},Q:{"10.4":0.03086},O:{"0":0.91346},H:{"0":0.45577},L:{"0":33.14857}}; +module.exports={C:{"2":0.00389,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00389,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00389,"49":0,"50":0.00389,"51":0.00778,"52":0.00389,"53":0,"54":0,"55":0,"56":0.00778,"57":0,"58":0,"59":0,"60":0,"61":0.01167,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00389,"69":0,"70":0.00389,"71":0,"72":0.00389,"73":0,"74":0,"75":0.00389,"76":0,"77":0,"78":0.01556,"79":0.01556,"80":0.00389,"81":0.00389,"82":0.00389,"83":0,"84":0.00389,"85":0,"86":0,"87":0.00389,"88":0.00389,"89":0.00389,"90":0,"91":0.00778,"92":0,"93":0,"94":0,"95":0.00389,"96":0.00778,"97":0.00389,"98":0.00389,"99":0.00389,"100":0.00778,"101":0.03891,"102":0.8638,"103":0.10117,"104":0.00778,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00389,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00778,"39":0,"40":0,"41":0.00389,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00389,"49":0.00778,"50":0,"51":0,"52":0,"53":0.00778,"54":0,"55":0,"56":0.00778,"57":0,"58":0,"59":0.00389,"60":0,"61":0,"62":0,"63":0.00389,"64":0.00389,"65":0.00389,"66":0,"67":0.00389,"68":0.00389,"69":0.00389,"70":0.00389,"71":0.00389,"72":0.00389,"73":0.00389,"74":0.00778,"75":0.00389,"76":0.01167,"77":0,"78":0.01167,"79":0.05058,"80":0.02335,"81":0.00778,"83":0.04669,"84":0.0856,"85":0.10117,"86":0.07004,"87":0.07393,"88":0.00778,"89":0.00389,"90":0.01556,"91":0.01167,"92":0.03891,"93":0.00778,"94":0.00778,"95":0.00778,"96":0.02724,"97":0.03502,"98":0.03891,"99":0.0428,"100":0.05447,"101":0.0856,"102":0.43579,"103":8.95708,"104":0.01946,"105":0.03502,"106":0.00389,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00778,"38":0,"39":0,"40":0.00389,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00389,"53":0,"54":0.01167,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01167,"64":0,"65":0,"66":0,"67":0,"68":0.00389,"69":0,"70":0.00778,"71":0.01556,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00389,"86":0.00389,"87":0.01946,"88":0.24513,"89":0.14008,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00389,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.02335,"79":0,"80":0,"81":0,"83":0.00389,"84":0.00389,"85":0.00389,"86":0.00778,"87":0.00389,"88":0,"89":0.00389,"90":0.00389,"91":0,"92":0.00778,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00389,"100":0.00389,"101":0.00389,"102":0.02724,"103":0.79766,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02335,"14":0.08171,"15":0.02724,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00389,"11.1":0.00778,"12.1":0.01167,"13.1":0.08171,"14.1":0.19844,"15.1":0.05058,"15.2-15.3":0.03891,"15.4":0.14008,"15.5":0.72373,"15.6":0.02724,"16.0":0.01556},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00749,"7.0-7.1":0.01124,"8.1-8.4":0.0412,"9.0-9.2":0,"9.3":0.13484,"10.0-10.2":0.03371,"10.3":0.14982,"11.0-11.2":0.03371,"11.3-11.4":0.10113,"12.0-12.1":0.09738,"12.2-12.5":1.73415,"13.0-13.1":0.08989,"13.2":0.03745,"13.3":0.22473,"13.4-13.7":0.80153,"14.0-14.4":2.01881,"14.5-14.8":4.28856,"15.0-15.1":1.23226,"15.2-15.3":1.83153,"15.4":3.04506,"15.5":20.51765,"16.0":0.41949},P:{"4":0.1638,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.02048,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.01024,"12.0":0.01024,"13.0":0.02048,"14.0":0.02048,"15.0":0.02048,"16.0":0.09214,"17.0":1.47422,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.07556},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00471,"9":0.00471,"10":0,"11":0.08007,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.22384},S:{"2.5":0},R:{_:"0"},M:{"0":0.4765},Q:{"10.4":0.03055},O:{"0":0.90413},H:{"0":0.45112}}; 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 61d9ee64cf33769..a8e0218c709e96a 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.00813,"59":0.00813,"68":0.01898,"84":0.00813,"94":0.00813,"99":0.00813,"101":0.08946,"102":3.4511,"103":0.33074,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 92 93 95 96 97 98 100 104 105 3.5 3.6"},D:{"47":0.00813,"53":0.01898,"69":0.00813,"74":0.00813,"79":0.05422,"81":0.04338,"83":0.42021,"86":0.00813,"89":0.08946,"92":0.04338,"94":0.05422,"95":0.00813,"96":0.01898,"98":0.01898,"100":0.00813,"101":0.15995,"102":0.33074,"103":11.77658,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 75 76 77 78 80 84 85 87 88 90 91 93 97 99 104 105 106"},F:{"79":0.00813,"88":0.11657,"89":0.13284,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.03524,"17":0.00813,"18":0.33888,"80":0.06235,"84":0.12471,"85":0.04338,"86":0.01898,"89":0.00813,"92":0.0976,"96":0.03524,"98":0.00813,"99":0.06235,"100":0.02711,"101":1.00849,"102":0.43647,"103":4.72527,_:"12 13 14 15 79 81 83 87 88 90 91 93 94 95 97"},E:{"4":0,"14":0.00813,_:"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 15.2-15.3 15.4 15.6 16.0","13.1":0.00813,"15.1":0.01898,"15.5":0.10573},G:{"8":0,"3.2":0,"4.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.00967,"10.0-10.2":0,"10.3":0.00319,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00319,"12.2-12.5":0.00319,"13.0-13.1":0.00319,"13.2":0,"13.3":0,"13.4-13.7":0.30463,"14.0-14.4":0.12638,"14.5-14.8":0.06484,"15.0-15.1":0.02582,"15.2-15.3":0.01945,"15.4":0.41156,"15.5":0.1588,"16.0":0.00319},P:{"4":0.16146,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":1.60454,"8.2":0.07034,"9.2":0.15137,"10.1":0.05046,"11.1-11.2":0.1211,"12.0":0.15137,"13.0":0.19174,"14.0":0.02018,"15.0":0.15137,"16.0":0.79722,"17.0":2.05865},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.00729},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04338,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.02187},Q:{"10.4":0},O:{"0":1.26829},H:{"0":0.40714},L:{"0":67.0819}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00276,"57":0,"58":0,"59":0.00276,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00552,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00276,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0.00276,"95":0,"96":0,"97":0,"98":0,"99":0.00276,"100":0.00552,"101":0.02486,"102":0.95289,"103":0.09115,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00276,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00552,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00276,"70":0,"71":0,"72":0,"73":0,"74":0.00276,"75":0,"76":0,"77":0,"78":0,"79":0.01381,"80":0,"81":0.01105,"83":0.116,"84":0,"85":0,"86":0.00276,"87":0,"88":0,"89":0.02486,"90":0,"91":0,"92":0.01105,"93":0,"94":0.01381,"95":0.00276,"96":0.00552,"97":0,"98":0.00552,"99":0,"100":0.00276,"101":0.05248,"102":0.10219,"103":3.25364,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.01657,"62":0,"63":0.01657,"64":0.01105,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00276,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.03314,"89":0.03591,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00276,"16":0.01105,"17":0.00276,"18":0.09391,"79":0,"80":0.01657,"81":0,"83":0,"84":0.03314,"85":0.01105,"86":0.00552,"87":0,"88":0,"89":0.00276,"90":0,"91":0,"92":0.02762,"93":0,"94":0,"95":0,"96":0.01105,"97":0,"98":0.00276,"99":0.01657,"100":0.00829,"101":0.27896,"102":0.12153,"103":1.31195,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00276,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00276,"14.1":0,"15.1":0.00552,"15.2-15.3":0,"15.4":0,"15.5":0.03038,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01684,"10.0-10.2":0,"10.3":0.00555,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.00555,"12.2-12.5":0.00555,"13.0-13.1":0.00555,"13.2":0,"13.3":0,"13.4-13.7":0.53041,"14.0-14.4":0.22005,"14.5-14.8":0.1129,"15.0-15.1":0.04496,"15.2-15.3":0.03387,"15.4":0.71659,"15.5":0.27649,"16.0":0.00555},P:{"4":0.16274,"5.0-5.4":0.01017,"6.2-6.4":0,"7.2-7.4":1.58671,"8.2":0,"9.2":0.15257,"10.1":0.05086,"11.1-11.2":0.12205,"12.0":0.1424,"13.0":0.19325,"14.0":0.02034,"15.0":0.1424,"16.0":0.79336,"17.0":2.04442,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.08181},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01105,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.94825},S:{"2.5":0},R:{_:"0"},M:{"0":0.02171},Q:{"10.4":0},O:{"0":1.25941},H:{"0":0.4043}}; 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 1e5b6e0071170ac..98e3e8228e8de27 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.03715,"47":0.0153,"52":0.0153,"59":0.0153,"66":0.00656,"72":0.00219,"78":0.02622,"81":0.00874,"86":0.00219,"88":0.00219,"91":0.43482,"92":0.00656,"94":0.00656,"95":0.00219,"97":0.00219,"98":0.00219,"99":0.00656,"100":0.01093,"101":0.08959,"102":0.84778,"103":0.11799,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 87 89 90 93 96 104 105 3.5 3.6"},D:{"11":0.00219,"42":0.00219,"49":0.00219,"50":0.00219,"52":0.02404,"55":0.00656,"58":0.05463,"69":0.01748,"75":0.00656,"76":0.00874,"79":0.02404,"80":0.00219,"81":0.05463,"83":0.12455,"85":0.0153,"86":0.02404,"87":0.0153,"88":0.01093,"89":0.00874,"91":0.00219,"92":0.00874,"93":0.00219,"94":0.0153,"96":0.01093,"97":0.15951,"98":0.0153,"99":0.02841,"100":0.0874,"101":0.36708,"102":0.83904,"103":9.34962,"105":0.00219,_:"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 43 44 45 46 47 48 51 53 54 56 57 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 77 78 84 90 95 104 106"},F:{"74":0.00219,"79":0.02622,"82":0.00874,"84":0.00874,"85":0.00874,"86":0.00219,"88":0.11799,"89":0.11581,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 83 87 90 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.01093},B:{"12":0.05244,"13":0.00656,"14":0.00219,"15":0.00874,"17":0.05681,"18":0.02841,"81":0.00219,"84":0.01093,"89":0.00656,"90":0.00219,"91":0.00874,"93":0.00219,"94":0.00219,"96":0.00219,"99":0.00656,"100":0.00874,"101":0.01967,"102":0.07866,"103":1.77422,_:"16 79 80 83 85 86 87 88 92 95 97 98"},E:{"4":0.00219,"5":0.00219,"13":0.02622,"14":0.01093,"15":0.00219,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.2-15.3 15.4 16.0","11.1":0.03496,"12.1":0.01093,"13.1":0.10488,"14.1":0.02404,"15.5":0.03933,"15.6":0.00219},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01285,"10.0-10.2":0,"10.3":0.02731,"11.0-11.2":0.02249,"11.3-11.4":0.00964,"12.0-12.1":0.01767,"12.2-12.5":1.05072,"13.0-13.1":0.00482,"13.2":0.00723,"13.3":0.01285,"13.4-13.7":0.38317,"14.0-14.4":0.91817,"14.5-14.8":0.40888,"15.0-15.1":0.31891,"15.2-15.3":0.58721,"15.4":1.23628,"15.5":2.80914,"16.0":0.1205},P:{"4":0.12367,"5.0-5.4":0.02061,"6.2-6.4":0.01027,"7.2-7.4":0.1958,"8.2":0.05271,"9.2":0.06183,"10.1":0.25764,"11.1-11.2":0.15458,"12.0":0.01031,"13.0":0.05153,"14.0":0.11336,"15.0":0.03082,"16.0":0.1958,"17.0":0.66986},I:{"0":0,"3":0,"4":0.00055,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00574,"4.2-4.3":0.00903,"4.4":0,"4.4.3-4.4.4":0.03939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07429,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0.02345},R:{_:"0"},M:{"0":0.13286},Q:{"10.4":0.00782},O:{"0":0.21101},H:{"0":1.05802},L:{"0":72.47247}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00884,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00221,"48":0,"49":0,"50":0,"51":0,"52":0.00221,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00221,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00221,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00884,"78":0.00663,"79":0,"80":0,"81":0.00221,"82":0,"83":0.00442,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0972,"92":0.00221,"93":0,"94":0.00221,"95":0,"96":0,"97":0,"98":0,"99":0.00221,"100":0.00221,"101":0.02209,"102":0.1966,"103":0.02651,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00221,"51":0,"52":0.00442,"53":0,"54":0,"55":0.00221,"56":0,"57":0,"58":0.01105,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00442,"70":0.00663,"71":0,"72":0,"73":0,"74":0,"75":0.00221,"76":0.00221,"77":0,"78":0.00442,"79":0.00442,"80":0,"81":0.01325,"83":0.02651,"84":0,"85":0.00221,"86":0.00663,"87":0.00221,"88":0.00221,"89":0.00221,"90":0,"91":0,"92":0.00221,"93":0,"94":0.00221,"95":0,"96":0.00221,"97":0.03534,"98":0.00221,"99":0.00663,"100":0.01988,"101":0.08173,"102":0.18556,"103":2.06542,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00884,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00221,"51":0,"52":0,"53":0,"54":0.00221,"55":0,"56":0,"57":0,"58":0.00221,"60":0.00442,"62":0,"63":0.05743,"64":0.00663,"65":0,"66":0,"67":0.00221,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00663,"80":0,"81":0,"82":0.00221,"83":0,"84":0.00221,"85":0.00221,"86":0,"87":0,"88":0.02651,"89":0.02651,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.00221,"12.1":0.00221},B:{"12":0.01325,"13":0.00221,"14":0,"15":0.00221,"16":0,"17":0.01325,"18":0.00663,"79":0,"80":0,"81":0,"83":0,"84":0.00221,"85":0,"86":0,"87":0,"88":0,"89":0.00221,"90":0,"91":0.00221,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00221,"100":0.00221,"101":0.00442,"102":0.01988,"103":0.39099,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00663,"14":0.00221,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00663,"12.1":0.00221,"13.1":0.02209,"14.1":0.00442,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0.00884,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01607,"10.0-10.2":0,"10.3":0.03416,"11.0-11.2":0.02813,"11.3-11.4":0.01206,"12.0-12.1":0.0221,"12.2-12.5":1.31412,"13.0-13.1":0.00603,"13.2":0.00904,"13.3":0.01607,"13.4-13.7":0.47923,"14.0-14.4":1.14834,"14.5-14.8":0.51138,"15.0-15.1":0.39886,"15.2-15.3":0.73442,"15.4":1.5462,"15.5":3.51335,"16.0":0.1507},P:{"4":0.12195,"5.0-5.4":0.03049,"6.2-6.4":0,"7.2-7.4":0.19308,"8.2":0,"9.2":0.06097,"10.1":0.25405,"11.1-11.2":0.15243,"12.0":0.01016,"13.0":0.06097,"14.0":0.11178,"15.0":0.01016,"16.0":0.19308,"17.0":0.65038,"18.0":0.02032},I:{"0":0,"3":0,"4":0.00154,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01616,"4.2-4.3":0.0254,"4.4":0,"4.4.3-4.4.4":0.11084},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01767,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.88206},S:{"2.5":0.02337},R:{_:"0"},M:{"0":0.13245},Q:{"10.4":0.00779},O:{"0":0.21036},H:{"0":1.05477}}; 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 9e127d3682b0286..e65dd4042b14c5f 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:{"78":0.00804,"99":0.02412,"101":0.07638,"102":1.03314,"103":0.09246,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 104 105 3.5 3.6"},D:{"66":0.01206,"69":0.00804,"70":0.11658,"75":0.01608,"76":0.10854,"77":0.0402,"79":0.03216,"83":0.1206,"85":0.02412,"86":0.01608,"87":0.00804,"88":0.01608,"89":0.00804,"91":0.01608,"92":0.0402,"93":0.0603,"95":0.3417,"96":0.0201,"97":0.0201,"98":0.03216,"99":0.04422,"100":0.09648,"101":0.1608,"102":1.93362,"103":20.93214,"104":0.05628,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 71 72 73 74 78 80 81 84 90 94 105 106"},F:{"82":0.00402,"83":0.03618,"85":0.00804,"87":0.19698,"88":0.55476,"89":0.13266,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.0201,"15":0.00804,"18":0.04824,"93":0.01206,"97":0.0402,"98":0.25728,"99":0.0201,"100":0.00804,"101":0.19698,"102":0.11658,"103":5.14962,_:"12 13 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96"},E:{"4":0,"12":0.00804,"13":0.01608,"14":0.35778,"15":0.0201,_:"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.0201,"12.1":0.07638,"13.1":0.14472,"14.1":0.2211,"15.1":0.0402,"15.2-15.3":0.0804,"15.4":0.57486,"15.5":1.64418,"15.6":0.03216,"16.0":0.03216},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02776,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04898,"10.0-10.2":0,"10.3":0.25143,"11.0-11.2":0.00653,"11.3-11.4":0.01306,"12.0-12.1":0.00653,"12.2-12.5":0.29388,"13.0-13.1":0,"13.2":0,"13.3":0.01633,"13.4-13.7":0.05388,"14.0-14.4":0.43103,"14.5-14.8":0.66777,"15.0-15.1":0.20245,"15.2-15.3":0.78695,"15.4":1.01063,"15.5":12.1063,"16.0":0.13878},P:{"4":0.27259,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.3355,"8.2":0.01034,"9.2":0.02167,"10.1":0.0306,"11.1-11.2":0.03145,"12.0":0.01048,"13.0":0.09312,"14.0":0.03145,"15.0":0.32501,"16.0":0.23065,"17.0":3.64852},I:{"0":0,"3":0,"4":0.00259,"2.1":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.09309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.3819,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.71162},Q:{"10.4":0},O:{"0":0.0598},H:{"0":1.98152},L:{"0":38.9362}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00424,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00424,"91":0,"92":0,"93":0.00848,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00848,"100":0,"101":0.0339,"102":0.69079,"103":0.04662,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00424,"67":0,"68":0,"69":0.00424,"70":0.05086,"71":0,"72":0,"73":0,"74":0,"75":0.00848,"76":0.04662,"77":0.01695,"78":0,"79":0.01271,"80":0,"81":0.00424,"83":0.05086,"84":0,"85":0.01271,"86":0.00848,"87":0.00424,"88":0.00848,"89":0.00424,"90":0,"91":0.00848,"92":0.01695,"93":0.02543,"94":0,"95":0.14409,"96":0.00848,"97":0.00848,"98":0.01271,"99":0.02119,"100":0.04238,"101":0.06781,"102":0.82217,"103":8.88285,"104":0.02543,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.089,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00424,"83":0.01271,"84":0,"85":0.00424,"86":0,"87":0.08476,"88":0.23733,"89":0.05509,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00848,"15":0.00424,"16":0,"17":0,"18":0.02119,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.00424,"94":0,"95":0,"96":0,"97":0.01695,"98":0.11443,"99":0.00848,"100":0.00424,"101":0.08476,"102":0.05086,"103":2.19105,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00424,"13":0.00848,"14":0.15257,"15":0.00848,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00848,"12.1":0.02967,"13.1":0.05933,"14.1":0.09324,"15.1":0.01695,"15.2-15.3":0.0339,"15.4":0.24157,"15.5":0.69503,"15.6":0.01271,"16.0":0.01271},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04013,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07082,"10.0-10.2":0,"10.3":0.36354,"11.0-11.2":0.00944,"11.3-11.4":0.01888,"12.0-12.1":0.00944,"12.2-12.5":0.42491,"13.0-13.1":0,"13.2":0,"13.3":0.02361,"13.4-13.7":0.0779,"14.0-14.4":0.6232,"14.5-14.8":0.96549,"15.0-15.1":0.29272,"15.2-15.3":1.13782,"15.4":1.46122,"15.5":17.50401,"16.0":0.20065},P:{"4":0.27881,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.3217,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03217,"12.0":0.02145,"13.0":0.01072,"14.0":0.03217,"15.0":0.31098,"16.0":0.21447,"17.0":3.48509,"18.0":0},I:{"0":0,"3":0,"4":0.02185,"2.1":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.78656},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16104,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.65423},S:{"2.5":0},R:{_:"0"},M:{"0":0.68568},Q:{"10.4":0},O:{"0":0.05762},H:{"0":1.90928}}; 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 1428ba14807e4c5..e8ebdc52c04f4b2 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:{"83":0.11088,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 3.5 3.6"},D:{"96":0.07308,"100":0.22176,"102":0.07308,"103":0.73584,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 101 104 105 106"},F:{"79":0.0378,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1 13.1 14.1","10.1":0.0378,"15.1":0.25704,"15.2-15.3":0.0378,"15.4":1.76904,"15.5":18.49428,"15.6":1.76904,"16.0":1.03068},G:{"8":0,"3.2":0,"4.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.03788,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.03788,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.03788,"14.5-14.8":0,"15.0-15.1":0.11365,"15.2-15.3":0.34095,"15.4":3.18979,"15.5":70.47854,"16.0":0.18942},P:{"4":0.16146,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":1.60454,"8.2":0.07034,"9.2":0.15137,"10.1":0.05046,"11.1-11.2":0.1211,"12.0":0.15137,"13.0":0.19174,"14.0":0.02018,"15.0":0.15137,"16.0":0.79722,"17.0":2.05865},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:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.21245},L:{"0":0.1496}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.02809,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.01788,"97":0,"98":0,"99":0,"100":0.05619,"101":0,"102":0.01788,"103":0.189,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04597,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01022,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01022,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.0664,"15.2-15.3":0.01022,"15.4":0.45206,"15.5":4.7249,"15.6":0.45206,"16.0":0.26306},G:{"8":0,"3.2":0,"4.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.04739,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.04739,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.04739,"14.5-14.8":0,"15.0-15.1":0.14216,"15.2-15.3":0.42649,"15.4":3.99001,"15.5":88.15936,"16.0":0.23694},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0.18723},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.21148}}; 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 9e65b4cbdc9d63e..15843f1d2191015 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.01385,"78":0.02309,"82":0.00923,"91":0.0277,"100":0.00462,"101":0.02309,"102":0.59559,"103":0.04155,"104":0.00462,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 86 87 88 89 90 92 93 94 95 96 97 98 99 105 3.5 3.6"},D:{"42":0.0277,"49":0.02309,"56":0.00462,"68":0.00923,"74":0.00923,"75":0.00923,"77":0.15698,"78":0.00462,"79":0.04617,"80":0.0277,"81":0.03694,"83":0.03694,"84":0.04617,"85":0.0554,"86":0.06002,"87":0.10157,"88":0.00462,"89":0.01847,"90":0.11543,"91":0.01847,"92":0.01847,"93":0.00462,"94":0.10619,"95":0.00923,"96":0.06002,"97":0.05079,"98":0.0554,"99":0.04617,"100":0.10619,"101":0.16621,"102":0.99266,"103":29.26716,"104":0.01385,"105":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 38 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 76 106"},F:{"87":0.01385,"88":0.12928,"89":0.07387,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01847,"84":0.00462,"86":0.01385,"87":0.00923,"89":0.00462,"91":0.00923,"92":0.01385,"94":0.00923,"95":0.00923,"96":0.01847,"97":0.01385,"98":0.01385,"99":0.02309,"100":0.02309,"101":0.05079,"102":0.12004,"103":7.06863,_:"12 13 14 15 16 17 79 80 81 83 85 88 90 93"},E:{"4":0,"8":0.00923,"13":0.00462,"14":0.03694,"15":0.01385,_:"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.00923,"13.1":0.03694,"14.1":0.09696,"15.1":0.02309,"15.2-15.3":0.0277,"15.4":0.11081,"15.5":0.76642,"15.6":0.03232,"16.0":0.01385},G:{"8":0,"3.2":0,"4.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.17878,"9.3":0.00963,"10.0-10.2":0,"10.3":0.00825,"11.0-11.2":0.00825,"11.3-11.4":0.00138,"12.0-12.1":0.00688,"12.2-12.5":0.10176,"13.0-13.1":0.13339,"13.2":0.00963,"13.3":0.02475,"13.4-13.7":0.10176,"14.0-14.4":0.47444,"14.5-14.8":0.94476,"15.0-15.1":0.37268,"15.2-15.3":0.42494,"15.4":0.74948,"15.5":9.87805,"16.0":0.08251},P:{"4":0.16146,"5.0-5.4":0.01014,"6.2-6.4":0.0402,"7.2-7.4":1.60454,"8.2":0.02028,"9.2":0.01014,"10.1":0.05046,"11.1-11.2":0.04056,"12.0":0.04056,"13.0":0.11153,"14.0":0.13181,"15.0":0.08111,"16.0":0.37514,"17.0":12.78534},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.11304},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0048,"11":0.59541,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.10766},Q:{"10.4":0.01077},O:{"0":0.09151},H:{"0":0.14779},L:{"0":20.14624}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00917,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00917,"79":0,"80":0,"81":0,"82":0.00458,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01375,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00458,"101":0.01375,"102":0.28421,"103":0.04126,"104":0.00458,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.01375,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00917,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00458,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00458,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00458,"75":0.00458,"76":0,"77":0.06876,"78":0.00458,"79":0.01834,"80":0.01375,"81":0.01834,"83":0.01375,"84":0.02292,"85":0.02292,"86":0.0275,"87":0.04584,"88":0.00458,"89":0.00917,"90":0.05501,"91":0.00917,"92":0.00917,"93":0.00458,"94":0.05042,"95":0.00458,"96":0.0275,"97":0.02292,"98":0.02292,"99":0.02292,"100":0.04584,"101":0.07334,"102":0.43548,"103":13.27526,"104":0.00458,"105":0.00458,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00917,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00458,"88":0.05501,"89":0.03667,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00917,"79":0,"80":0,"81":0,"83":0,"84":0.00458,"85":0,"86":0.00458,"87":0.00458,"88":0,"89":0,"90":0,"91":0.00458,"92":0.00458,"93":0,"94":0.00458,"95":0.00458,"96":0.00917,"97":0.00458,"98":0.00458,"99":0.00917,"100":0.00917,"101":0.02292,"102":0.05959,"103":3.21338,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00458,"9":0,"10":0,"11":0,"12":0,"13":0.00458,"14":0.01834,"15":0.00917,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00458,"13.1":0.01834,"14.1":0.04584,"15.1":0.00917,"15.2-15.3":0.01375,"15.4":0.05042,"15.5":0.33922,"15.6":0.02292,"16.0":0.00458},G:{"8":0,"3.2":0,"4.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.27884,"9.3":0.01501,"10.0-10.2":0,"10.3":0.01287,"11.0-11.2":0.01287,"11.3-11.4":0.00214,"12.0-12.1":0.01072,"12.2-12.5":0.15872,"13.0-13.1":0.20806,"13.2":0.01501,"13.3":0.03861,"13.4-13.7":0.15872,"14.0-14.4":0.74,"14.5-14.8":1.47357,"15.0-15.1":0.58128,"15.2-15.3":0.66278,"15.4":1.16899,"15.5":15.40705,"16.0":0.1287},P:{"4":0.0101,"5.0-5.4":0.0101,"6.2-6.4":0,"7.2-7.4":0.0101,"8.2":0.02021,"9.2":0.02021,"10.1":0.02021,"11.1-11.2":0.04042,"12.0":0.05052,"13.0":0.11114,"14.0":0.13135,"15.0":0.08083,"16.0":0.36374,"17.0":12.44796,"18.0":0.06062},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.35834},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00483,"10":0,"11":0.27021,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":27.92759},S:{"2.5":0},R:{_:"0"},M:{"0":0.10832},Q:{"10.4":0.01083},O:{"0":0.09207},H:{"0":0.14357}}; 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 5de1bca6fa94486..792b553123ef4a8 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.01074,"52":0.22546,"78":0.00805,"84":0.00805,"88":0.00537,"91":0.051,"95":0.00537,"99":0.00537,"100":0.01074,"101":0.04026,"102":0.65221,"103":0.08052,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 96 97 98 104 105 3.5 3.6"},D:{"36":0.00537,"38":0.0161,"41":0.00268,"47":0.00805,"49":0.01074,"56":0.00268,"64":0.00268,"65":0.00537,"66":0.00268,"67":0.02952,"68":0.00805,"69":0.00537,"71":0.01074,"72":0.00805,"73":0.00537,"74":0.00268,"75":0.01074,"78":0.01342,"79":0.01879,"80":0.01074,"81":0.01074,"83":0.01342,"84":0.00805,"85":0.00805,"86":0.02684,"87":0.02684,"88":0.01074,"89":0.01074,"90":0.03221,"91":0.05368,"92":0.06442,"93":0.01074,"94":0.00537,"95":0.0161,"96":0.02952,"97":0.03221,"98":0.02147,"99":0.02416,"100":0.0671,"101":0.11541,"102":0.71126,"103":16.16842,"104":0.01074,"105":0.01074,_:"4 5 6 7 8 9 10 11 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 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 63 70 76 77 106"},F:{"28":0.02147,"46":0.00805,"85":0.0161,"86":0.00268,"87":0.03221,"88":0.62,"89":0.19593,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00537,"16":0.00805,"18":0.00805,"80":0.00537,"84":0.00268,"89":0.00537,"90":0.00268,"92":0.01342,"93":0.00537,"96":0.00268,"98":0.00537,"99":0.00537,"100":0.00805,"101":0.15836,"102":0.10468,"103":2.07205,_:"12 13 14 17 79 81 83 85 86 87 88 91 94 95 97"},E:{"4":0,"12":0.00537,"13":0.02416,"14":0.20667,"15":0.05905,_:"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.0161,"12.1":0.02952,"13.1":0.09931,"14.1":0.57974,"15.1":0.10199,"15.2-15.3":0.05636,"15.4":0.33282,"15.5":1.4601,"15.6":0.07784,"16.0":0.01342},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0099,"8.1-8.4":0,"9.0-9.2":0.0099,"9.3":0.1914,"10.0-10.2":0.0066,"10.3":0.0693,"11.0-11.2":0.0396,"11.3-11.4":0.0264,"12.0-12.1":0.0462,"12.2-12.5":0.71609,"13.0-13.1":0.0495,"13.2":0.0396,"13.3":0.1881,"13.4-13.7":0.3465,"14.0-14.4":1.84798,"14.5-14.8":3.85437,"15.0-15.1":1.28039,"15.2-15.3":1.95358,"15.4":3.15147,"15.5":18.02444,"16.0":0.1386},P:{"4":0.12397,"5.0-5.4":0.01014,"6.2-6.4":0.0402,"7.2-7.4":0.10331,"8.2":0.02028,"9.2":0.01014,"10.1":0.05046,"11.1-11.2":0.05165,"12.0":0.03099,"13.0":0.15496,"14.0":0.14463,"15.0":0.08265,"16.0":0.22728,"17.0":3.06831},I:{"0":0,"3":0,"4":0.00512,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00512,"4.2-4.3":0.00768,"4.4":0,"4.4.3-4.4.4":0.03329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08589,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.10244},Q:{"10.4":0},O:{"0":2.00486},H:{"0":0.8382},L:{"0":35.01768}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00273,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06272,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00273,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00273,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01364,"92":0,"93":0,"94":0,"95":0.00545,"96":0,"97":0,"98":0,"99":0.00273,"100":0.00273,"101":0.01364,"102":0.19089,"103":0.02182,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00273,"37":0,"38":0.00545,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00273,"48":0,"49":0.00273,"50":0,"51":0,"52":0,"53":0,"54":0.00273,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00818,"68":0.00273,"69":0.00273,"70":0,"71":0.00273,"72":0.00273,"73":0.00273,"74":0,"75":0.00273,"76":0,"77":0,"78":0.00545,"79":0.00545,"80":0.00273,"81":0.00545,"83":0.00273,"84":0.00273,"85":0.00273,"86":0.00818,"87":0.00818,"88":0.00818,"89":0.00273,"90":0.00818,"91":0.01636,"92":0.03818,"93":0.00273,"94":0,"95":0.00818,"96":0.01091,"97":0.00818,"98":0.00545,"99":0.00545,"100":0.01909,"101":0.03272,"102":0.19907,"103":4.42319,"104":0.00273,"105":0.00273,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00545,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00273,"47":0,"48":0,"49":0,"50":0,"51":0.00545,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00273,"62":0,"63":0.10635,"64":0.00545,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00545,"86":0,"87":0.00818,"88":0.16907,"89":0.05454,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00273,"16":0.00273,"17":0,"18":0.00273,"79":0,"80":0.00273,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00273,"90":0,"91":0,"92":0.00273,"93":0.00273,"94":0,"95":0,"96":0,"97":0,"98":0.00273,"99":0.00273,"100":0.00273,"101":0.04363,"102":0.03,"103":0.56994,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00545,"14":0.05727,"15":0.01636,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00545,"12.1":0.00818,"13.1":0.02727,"14.1":0.15817,"15.1":0.02727,"15.2-15.3":0.01636,"15.4":0.08999,"15.5":0.39814,"15.6":0.02182,"16.0":0.00273},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01274,"8.1-8.4":0,"9.0-9.2":0.01274,"9.3":0.24621,"10.0-10.2":0.00849,"10.3":0.08915,"11.0-11.2":0.05094,"11.3-11.4":0.03396,"12.0-12.1":0.05943,"12.2-12.5":0.92117,"13.0-13.1":0.06368,"13.2":0.05094,"13.3":0.24197,"13.4-13.7":0.44573,"14.0-14.4":2.37721,"14.5-14.8":4.95818,"15.0-15.1":1.64707,"15.2-15.3":2.51305,"15.4":4.05399,"15.5":23.18627,"16.0":0.17829},P:{"4":0.16303,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.11209,"8.2":0,"9.2":0.01019,"10.1":0.01019,"11.1-11.2":0.07133,"12.0":0.03057,"13.0":0.15285,"14.0":0.14266,"15.0":0.08152,"16.0":0.21398,"17.0":2.95501,"18.0":0.01019},I:{"0":0,"3":0,"4":0.00945,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00945,"4.2-4.3":0.01418,"4.4":0,"4.4.3-4.4.4":0.06145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02454,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.55492},S:{"2.5":0},R:{_:"0"},M:{"0":0.10182},Q:{"10.4":0},O:{"0":1.9928},H:{"0":0.83316}}; 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 47b1c23ff67e22a..1ab3fdad21f2c1b 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.00449,"78":0.02245,"91":0.01347,"98":0.01796,"99":0.03591,"100":0.00898,"101":0.3277,"102":1.99761,"103":0.15263,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 104 105 3.5 3.6"},D:{"49":0.00898,"63":0.05836,"65":0.01347,"76":0.00449,"79":0.02245,"81":0.00898,"83":0.01796,"84":0.03142,"85":0.00449,"86":0.00898,"87":0.12569,"88":0.00898,"89":0.00898,"90":0.01796,"91":0.02245,"92":0.0404,"93":0.01796,"95":0.03142,"96":0.0404,"97":0.05836,"98":0.01347,"99":0.04489,"100":0.06734,"101":0.1616,"102":1.23896,"103":25.00373,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 69 70 71 72 73 74 75 77 78 80 94 104 105 106"},F:{"87":0.03142,"88":0.99656,"89":0.15712,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00898,"17":0.00898,"18":0.00898,"85":0.00449,"97":0.00898,"98":0.02693,"99":0.01796,"100":0.06734,"101":0.06285,"102":0.46686,"103":6.07362,_:"12 13 14 16 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96"},E:{"4":0,"12":0.00898,"13":0.03591,"14":0.22445,"15":0.05836,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.1212,"13.1":0.30076,"14.1":0.90229,"15.1":0.13467,"15.2-15.3":0.14814,"15.4":0.74517,"15.5":3.21412,"15.6":0.06285},G:{"8":0,"3.2":0,"4.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.01049,"10.0-10.2":0,"10.3":0.09703,"11.0-11.2":0.00524,"11.3-11.4":0.02622,"12.0-12.1":0.00524,"12.2-12.5":0.40909,"13.0-13.1":0,"13.2":0.00524,"13.3":0.02622,"13.4-13.7":0.06556,"14.0-14.4":0.39336,"14.5-14.8":1.12238,"15.0-15.1":0.18619,"15.2-15.3":1.15909,"15.4":1.39773,"15.5":20.63817,"16.0":0.05769},P:{"4":0.57452,"5.0-5.4":0.02052,"6.2-6.4":0.10259,"7.2-7.4":0.37428,"8.2":0.05271,"9.2":0.0513,"10.1":0.02162,"11.1-11.2":0.05198,"12.0":0.0104,"13.0":0.10397,"14.0":0.0104,"15.0":0.06238,"16.0":0.12476,"17.0":5.05284},I:{"0":0,"3":0,"4":0.00276,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00276,"4.4":0,"4.4.3-4.4.4":0.01102},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.08978,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.17632},Q:{"10.4":0},O:{"0":0.04408},H:{"0":0.08346},L:{"0":23.8376}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00464,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00928,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00464,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00928,"99":0.01855,"100":0.00464,"101":0.15305,"102":0.98326,"103":0.07885,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00464,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.02783,"64":0,"65":0.00464,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00464,"77":0,"78":0,"79":0.00928,"80":0,"81":0.00464,"83":0.00928,"84":0.01391,"85":0.00464,"86":0.00464,"87":0.05566,"88":0.00464,"89":0.00464,"90":0.00928,"91":0.00928,"92":0.01855,"93":0.00928,"94":0,"95":0.01391,"96":0.01855,"97":0.02783,"98":0.00464,"99":0.02319,"100":0.03247,"101":0.07421,"102":0.57511,"103":11.6321,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.01391,"88":0.4638,"89":0.07421,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00464,"16":0,"17":0.00464,"18":0.00464,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00464,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00464,"98":0.01391,"99":0.00928,"100":0.03247,"101":0.02783,"102":0.2319,"103":2.87556,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00464,"13":0.01391,"14":0.10667,"15":0.02783,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.05566,"13.1":0.13914,"14.1":0.41742,"15.1":0.06029,"15.2-15.3":0.06957,"15.4":0.34321,"15.5":1.49344,"15.6":0.02783,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01566,"10.0-10.2":0,"10.3":0.1449,"11.0-11.2":0.00783,"11.3-11.4":0.03916,"12.0-12.1":0.00783,"12.2-12.5":0.61092,"13.0-13.1":0,"13.2":0.00783,"13.3":0.03916,"13.4-13.7":0.0979,"14.0-14.4":0.58743,"14.5-14.8":1.67612,"15.0-15.1":0.27805,"15.2-15.3":1.73095,"15.4":2.08732,"15.5":30.82031,"16.0":0.08616},P:{"4":0.0104,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.37431,"8.2":0.0104,"9.2":0.0104,"10.1":0,"11.1-11.2":0.04159,"12.0":0.0104,"13.0":0.10398,"14.0":0.0208,"15.0":0.05199,"16.0":0.11437,"17.0":4.88684,"18.0":0},I:{"0":0,"3":0,"4":0.05756,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05756,"4.4":0,"4.4.3-4.4.4":0.23026},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04174,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.00061},S:{"2.5":0},R:{_:"0"},M:{"0":0.17158},Q:{"10.4":0},O:{"0":0.0429},H:{"0":0.08122}}; 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 49aecb2f7b4aad4..f6d20d173b3681a 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:{"48":0.00439,"51":0.00879,"52":0.38658,"56":0.01318,"78":0.02636,"80":0.00879,"88":0.00439,"91":0.05272,"92":0.00439,"94":0.00879,"95":0.00879,"96":0.01318,"97":0.01318,"98":0.01318,"99":0.02636,"100":0.03514,"101":0.14936,"102":1.42773,"103":0.14936,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 93 104 105 3.5 3.6"},D:{"38":0.01318,"49":0.03075,"53":0.00439,"57":0.00439,"63":0.00439,"65":0.01318,"67":0.00439,"68":0.00439,"69":0.00879,"70":0.00879,"71":0.01757,"72":0.00879,"74":0.10543,"76":0.00439,"77":0.01318,"79":0.05711,"80":0.08786,"81":0.07029,"83":0.09665,"84":0.10543,"85":0.07029,"86":0.13618,"87":0.11422,"88":0.05711,"89":0.0615,"90":0.13618,"91":0.13618,"92":0.07029,"93":0.03514,"94":0.05272,"95":0.04393,"96":0.10983,"97":0.17133,"98":0.11422,"99":0.34705,"100":0.19769,"101":0.32948,"102":1.70009,"103":22.36916,"104":0.02636,"105":0.01318,_:"4 5 6 7 8 9 10 11 12 13 14 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 64 66 73 75 78 106"},F:{"40":0.00879,"46":0.02636,"70":0.00439,"71":0.00439,"72":0.00439,"73":0.00879,"75":0.00439,"76":0.00879,"77":0.00879,"78":0.00879,"79":0.01757,"80":0.00439,"82":0.01318,"84":0.01318,"85":0.20208,"86":0.01757,"87":0.08786,"88":1.72645,"89":0.85224,_:"9 11 12 15 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 74 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.74242},B:{"18":0.00879,"84":0.02636,"85":0.01757,"86":0.01757,"87":0.01757,"88":0.02197,"89":0.02636,"90":0.02636,"91":0.03514,"92":0.02636,"93":0.01318,"94":0.01757,"95":0.01757,"96":0.03075,"97":0.02197,"98":0.04393,"99":0.01318,"100":0.00879,"101":0.02636,"102":0.05711,"103":1.91535,_:"12 13 14 15 16 17 79 80 81 83"},E:{"4":0,"13":0.05711,"14":0.13179,"15":0.03075,_:"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.123,"12.1":0.01318,"13.1":0.09665,"14.1":0.17133,"15.1":0.13179,"15.2-15.3":0.05711,"15.4":0.23283,"15.5":1.04553,"15.6":0.05272,"16.0":0.01318},G:{"8":0,"3.2":0,"4.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.00426,"9.0-9.2":0.00142,"9.3":0.02842,"10.0-10.2":0.00853,"10.3":0.01705,"11.0-11.2":0.02274,"11.3-11.4":0.01421,"12.0-12.1":0.01848,"12.2-12.5":0.41356,"13.0-13.1":0.05685,"13.2":0.04406,"13.3":0.08385,"13.4-13.7":0.22881,"14.0-14.4":0.63953,"14.5-14.8":1.20374,"15.0-15.1":0.52583,"15.2-15.3":0.80296,"15.4":1.38707,"15.5":8.29682,"16.0":0.17196},P:{"4":0.12441,"5.0-5.4":0.05024,"6.2-6.4":0.0402,"7.2-7.4":0.11405,"8.2":0.07034,"9.2":0.01037,"10.1":0.01083,"11.1-11.2":0.09331,"12.0":0.02074,"13.0":0.09331,"14.0":0.09331,"15.0":0.06221,"16.0":0.18662,"17.0":1.88695},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00165,"4.2-4.3":0.0033,"4.4":0,"4.4.3-4.4.4":0.02308},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09665,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.185},Q:{"10.4":0.01121},O:{"0":0.47651},H:{"0":0.34498},L:{"0":37.75228}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00444,"52":0.17328,"53":0,"54":0,"55":0,"56":0.00444,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01333,"79":0,"80":0.00444,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00444,"89":0,"90":0.00444,"91":0.0311,"92":0.01333,"93":0.00889,"94":0.00889,"95":0.01777,"96":0.00444,"97":0.00889,"98":0.00444,"99":0.01333,"100":0.01777,"101":0.07109,"102":0.65756,"103":0.06665,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00444,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01333,"50":0,"51":0,"52":0,"53":0.00444,"54":0,"55":0,"56":0,"57":0.00444,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00444,"64":0,"65":0.00444,"66":0,"67":0.00444,"68":0.00444,"69":0.00444,"70":0.00444,"71":0.00889,"72":0.00444,"73":0,"74":0.04443,"75":0,"76":0.00444,"77":0.00444,"78":0,"79":0.02666,"80":0.03999,"81":0.03999,"83":0.04443,"84":0.04887,"85":0.0311,"86":0.0622,"87":0.05332,"88":0.02666,"89":0.02666,"90":0.0622,"91":0.0622,"92":0.03554,"93":0.01777,"94":0.02666,"95":0.02222,"96":0.04887,"97":0.07553,"98":0.04887,"99":0.15551,"100":0.08886,"101":0.15106,"102":0.75975,"103":9.97454,"104":0.01333,"105":0.00444,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00444,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01333,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01333,"71":0.00444,"72":0.00444,"73":0.00444,"74":0.00444,"75":0.00444,"76":0.00444,"77":0.00444,"78":0.00444,"79":0.00889,"80":0.00444,"81":0,"82":0.00444,"83":0,"84":0.00444,"85":0.08886,"86":0.00889,"87":0.03999,"88":0.76864,"89":0.37766,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0.32878,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00444,"79":0,"80":0,"81":0,"83":0,"84":0.01333,"85":0.00889,"86":0.00889,"87":0.00889,"88":0.00889,"89":0.01333,"90":0.01333,"91":0.01777,"92":0.00889,"93":0.00444,"94":0.00889,"95":0.00889,"96":0.01333,"97":0.00889,"98":0.01777,"99":0.00444,"100":0.00444,"101":0.01333,"102":0.02666,"103":0.86639,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02666,"14":0.05776,"15":0.01333,_:"0","3.1":0,"3.2":0,"5.1":0.05332,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00889,"13.1":0.04443,"14.1":0.07553,"15.1":0.05776,"15.2-15.3":0.02666,"15.4":0.10219,"15.5":0.46652,"15.6":0.02222,"16.0":0.00444},G:{"8":0,"3.2":0,"4.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.00629,"9.0-9.2":0.0021,"9.3":0.04192,"10.0-10.2":0.01257,"10.3":0.02515,"11.0-11.2":0.03353,"11.3-11.4":0.02096,"12.0-12.1":0.02724,"12.2-12.5":0.60987,"13.0-13.1":0.08383,"13.2":0.06497,"13.3":0.12365,"13.4-13.7":0.33742,"14.0-14.4":0.9431,"14.5-14.8":1.77512,"15.0-15.1":0.77543,"15.2-15.3":1.18411,"15.4":2.04547,"15.5":12.2351,"16.0":0.25359},P:{"4":0.14223,"5.0-5.4":0,"6.2-6.4":0.01016,"7.2-7.4":0.11176,"8.2":0,"9.2":0.02032,"10.1":0,"11.1-11.2":0.09144,"12.0":0.03048,"13.0":0.09144,"14.0":0.08128,"15.0":0.06096,"16.0":0.18287,"17.0":1.82872,"18.0":0.01016},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00555,"4.2-4.3":0.01111,"4.4":0,"4.4.3-4.4.4":0.07777},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04443,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":52.60535},S:{"2.5":0},R:{_:"0"},M:{"0":0.18338},Q:{"10.4":0.01111},O:{"0":0.47235},H:{"0":0.34197}}; 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 d4f79d595af8076..a6f63f9f96266a3 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.00537,"50":0.01342,"51":0.01074,"52":0.02952,"66":0.00537,"71":0.28182,"78":0.01074,"84":0.00537,"91":0.00805,"94":0.02147,"97":0.00268,"98":0.00537,"99":0.00805,"100":0.00268,"101":0.07247,"102":1.31784,"103":0.20398,"104":0.01074,_:"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 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 95 96 105 3.5 3.6"},D:{"38":0.01074,"40":0.00268,"43":0.02952,"49":0.00537,"55":0.00805,"56":0.0671,"57":0.00805,"58":0.01342,"63":0.01074,"64":0.01074,"65":0.00805,"68":0.00268,"69":0.02684,"70":0.02684,"71":0.00537,"72":0.01342,"73":0.00537,"74":0.00805,"75":0.01342,"76":0.03489,"78":0.02416,"79":0.06978,"80":0.0161,"81":0.00805,"83":0.01342,"84":0.01074,"85":0.00268,"86":0.04563,"87":0.02684,"88":0.02147,"89":0.01342,"90":0.02416,"91":0.01879,"92":0.06173,"93":0.01342,"94":0.02147,"95":0.01074,"96":0.07784,"97":0.11004,"98":0.051,"99":0.06978,"100":0.12615,"101":0.16641,"102":0.69516,"103":16.13621,"104":0.02416,"105":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 41 42 44 45 46 47 48 50 51 52 53 54 59 60 61 62 66 67 77 106"},F:{"28":0.00805,"44":0.00537,"76":0.00537,"83":0.00268,"85":0.0161,"87":0.00537,"88":0.19593,"89":0.1181,_:"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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 82 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00537,"13":0.00537,"14":0.00805,"15":0.00805,"16":0.00805,"17":0.00268,"18":0.02952,"84":0.00805,"85":0.00537,"87":0.00805,"89":0.00268,"90":0.00537,"91":0.00537,"92":0.03489,"96":0.00537,"97":0.00268,"98":0.00805,"100":0.0161,"101":0.0161,"102":0.04563,"103":2.4156,_:"79 80 81 83 86 88 93 94 95 99"},E:{"4":0,"10":0.01879,"12":0.00805,"13":0.00537,"14":0.06978,"15":0.01879,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00268,"12.1":0.01342,"13.1":0.04563,"14.1":0.09931,"15.1":0.02952,"15.2-15.3":0.03758,"15.4":0.0832,"15.5":0.41065,"15.6":0.02416},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00498,"7.0-7.1":0.00498,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14566,"10.0-10.2":0.00996,"10.3":0.11827,"11.0-11.2":0.03361,"11.3-11.4":0.02241,"12.0-12.1":0.05353,"12.2-12.5":1.0744,"13.0-13.1":0.04731,"13.2":0.02116,"13.3":0.09586,"13.4-13.7":0.38594,"14.0-14.4":1.11797,"14.5-14.8":1.47528,"15.0-15.1":0.6063,"15.2-15.3":0.68846,"15.4":0.92252,"15.5":5.38321,"16.0":0.0498},P:{"4":0.27592,"5.0-5.4":0.02054,"6.2-6.4":0.02044,"7.2-7.4":0.32701,"8.2":0.02028,"9.2":0.0511,"10.1":0.03066,"11.1-11.2":0.15329,"12.0":0.04088,"13.0":0.24526,"14.0":0.19416,"15.0":0.13285,"16.0":0.43942,"17.0":1.95186},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.04682,"4.4":0,"4.4.3-4.4.4":0.18729},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01453,"11":0.18408,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.08048},Q:{"10.4":0.03658},O:{"0":1.40467},H:{"0":0.20086},L:{"0":56.88599}}; +module.exports={C:{"2":0,"3":0,"4":0.00272,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00272,"51":0.00272,"52":0.00815,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00272,"67":0,"68":0,"69":0,"70":0,"71":0.07602,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00272,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00272,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00272,"92":0,"93":0,"94":0.00543,"95":0,"96":0,"97":0.00543,"98":0.00272,"99":0.00272,"100":0.00272,"101":0.02444,"102":0.36653,"103":0.05702,"104":0.00272,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00272,"39":0,"40":0.00272,"41":0,"42":0,"43":0.00815,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00272,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00272,"56":0.01901,"57":0.00272,"58":0.00272,"59":0,"60":0,"61":0,"62":0,"63":0.00272,"64":0.00272,"65":0.00272,"66":0,"67":0,"68":0,"69":0.00815,"70":0.00815,"71":0,"72":0.00543,"73":0,"74":0.00272,"75":0.00272,"76":0.01086,"77":0,"78":0.00815,"79":0.01901,"80":0.00815,"81":0.00543,"83":0.00815,"84":0.00272,"85":0,"86":0.01358,"87":0.01629,"88":0.00815,"89":0.00543,"90":0.00815,"91":0.00543,"92":0.02172,"93":0.00815,"94":0.01358,"95":0.00543,"96":0.02444,"97":0.02987,"98":0.01358,"99":0.01901,"100":0.03801,"101":0.05159,"102":0.19548,"103":4.42274,"104":0.00543,"105":0.00543,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00272,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00272,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00272,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00543,"86":0,"87":0,"88":0.05159,"89":0.03258,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00272,"13":0.00272,"14":0.00272,"15":0.00272,"16":0.00272,"17":0,"18":0.00815,"79":0,"80":0,"81":0,"83":0,"84":0.00272,"85":0,"86":0,"87":0.00272,"88":0,"89":0,"90":0,"91":0,"92":0.00815,"93":0,"94":0,"95":0,"96":0.00272,"97":0,"98":0.00272,"99":0,"100":0.00543,"101":0.00543,"102":0.01629,"103":0.66246,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00543,"11":0,"12":0.00272,"13":0,"14":0.01901,"15":0.00543,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00272,"13.1":0.01358,"14.1":0.02715,"15.1":0.00815,"15.2-15.3":0.01086,"15.4":0.02172,"15.5":0.11132,"15.6":0.00543,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00655,"7.0-7.1":0.00655,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19145,"10.0-10.2":0.01309,"10.3":0.15545,"11.0-11.2":0.04418,"11.3-11.4":0.02945,"12.0-12.1":0.07036,"12.2-12.5":1.41218,"13.0-13.1":0.06218,"13.2":0.02782,"13.3":0.126,"13.4-13.7":0.50727,"14.0-14.4":1.46945,"14.5-14.8":1.93909,"15.0-15.1":0.79691,"15.2-15.3":0.90491,"15.4":1.21255,"15.5":7.07564,"16.0":0.06545},P:{"4":0.29278,"5.0-5.4":0,"6.2-6.4":0.02019,"7.2-7.4":0.32306,"8.2":0.0101,"9.2":0.05048,"10.1":0.03029,"11.1-11.2":0.17163,"12.0":0.05048,"13.0":0.2322,"14.0":0.19182,"15.0":0.13124,"16.0":0.43412,"17.0":1.9081,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.06454,"4.4":0,"4.4.3-4.4.4":0.25817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00494,"9":0,"10":0,"11":0.04936,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.27611},S:{"2.5":0},R:{_:"0"},M:{"0":0.08014},Q:{"10.4":0.03643},O:{"0":1.39872},H:{"0":0.20001}}; 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 075f7f2eeb42c4d..a7344d1762c83e9 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:{"47":0.0092,"52":0.03372,"78":0.02146,"80":0.00613,"87":0.00613,"88":0.00613,"89":0.0092,"90":0.00613,"91":0.04598,"95":0.00307,"97":0.00307,"99":0.01533,"100":0.01839,"101":0.08582,"102":1.34554,"103":0.15019,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 92 93 94 96 98 104 105 3.5 3.6"},D:{"11":0.00307,"26":0.00307,"34":0.00307,"38":0.0092,"49":0.03985,"55":0.00307,"60":0.00307,"63":0.00307,"64":0.00613,"65":0.01226,"67":0.00613,"68":0.00613,"69":0.00613,"70":0.00613,"71":0.00613,"72":0.00307,"73":0.00613,"74":0.00307,"76":0.00613,"78":0.00307,"79":0.03372,"80":0.01226,"81":0.0092,"83":0.01226,"84":0.02146,"85":0.0092,"86":0.02452,"87":0.03985,"88":0.0092,"89":0.02452,"90":0.01533,"91":0.04598,"92":0.02452,"93":0.0092,"94":0.01839,"95":0.01839,"96":0.03065,"97":0.04598,"98":0.03372,"99":0.04598,"100":0.09808,"101":0.15325,"102":0.96854,"103":18.31951,"104":0.00613,"105":0.01839,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 61 62 66 75 77 106"},F:{"79":0.00613,"85":0.01226,"86":0.00307,"87":0.01533,"88":0.38313,"89":0.20536,"90":0.0092,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00307,"14":0.00307,"15":0.00613,"16":0.00307,"17":0.00613,"18":0.02146,"84":0.00307,"89":0.00613,"90":0.00613,"92":0.0092,"96":0.00613,"99":0.00307,"100":0.00307,"101":0.03065,"102":0.05211,"103":2.16389,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 97 98"},E:{"4":0,"7":0.00613,"11":0.00613,"12":0.00307,"13":0.03372,"14":0.14099,"15":0.03372,_:"0 5 6 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0092,"11.1":0.0092,"12.1":0.09502,"13.1":0.14099,"14.1":0.43523,"15.1":0.08889,"15.2-15.3":0.14099,"15.4":0.20842,"15.5":1.16777,"15.6":0.03678,"16.0":0.05824},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00163,"6.0-6.1":0,"7.0-7.1":0.02438,"8.1-8.4":0.00488,"9.0-9.2":0.00813,"9.3":0.10076,"10.0-10.2":0.0065,"10.3":0.14301,"11.0-11.2":0.02113,"11.3-11.4":0.05201,"12.0-12.1":0.04225,"12.2-12.5":0.81745,"13.0-13.1":0.00813,"13.2":0.00813,"13.3":0.06013,"13.4-13.7":0.15602,"14.0-14.4":0.48267,"14.5-14.8":1.24975,"15.0-15.1":0.36891,"15.2-15.3":0.76057,"15.4":1.21724,"15.5":10.35226,"16.0":0.07151},P:{"4":0.2052,"5.0-5.4":0.02054,"6.2-6.4":0.02044,"7.2-7.4":0.29754,"8.2":0.02028,"9.2":0.04104,"10.1":0.03066,"11.1-11.2":0.18468,"12.0":0.0513,"13.0":0.23598,"14.0":0.29754,"15.0":0.13338,"16.0":0.41041,"17.0":4.39135},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00147,"4.2-4.3":0.00367,"4.4":0,"4.4.3-4.4.4":0.05727},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11647,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18031},Q:{"10.4":0},O:{"0":0.19418},H:{"0":0.30858},L:{"0":48.68362}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00313,"48":0,"49":0,"50":0,"51":0,"52":0.0094,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00626,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00313,"88":0.00313,"89":0.00313,"90":0.00313,"91":0.01566,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00626,"100":0.00626,"101":0.02819,"102":0.4604,"103":0.05011,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00313,"39":0,"40":0.00313,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01253,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00313,"65":0.00313,"66":0,"67":0.00313,"68":0,"69":0,"70":0.00313,"71":0.00313,"72":0,"73":0.00313,"74":0,"75":0,"76":0.00313,"77":0,"78":0,"79":0.0094,"80":0.00313,"81":0.01566,"83":0.00313,"84":0.00626,"85":0.00313,"86":0.0094,"87":0.01253,"88":0.00313,"89":0.0094,"90":0.00626,"91":0.01566,"92":0.0094,"93":0.00313,"94":0.00626,"95":0.0094,"96":0.0094,"97":0.01566,"98":0.0094,"99":0.01566,"100":0.03132,"101":0.04698,"102":0.3038,"103":5.80046,"104":0.00313,"105":0.00626,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03445,"64":0.00313,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00313,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00313,"86":0,"87":0.00313,"88":0.11902,"89":0.06577,"90":0.00313,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00313,"16":0,"17":0.00313,"18":0.00626,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00313,"91":0,"92":0.00313,"93":0,"94":0,"95":0,"96":0.00313,"97":0,"98":0,"99":0,"100":0.00313,"101":0.0094,"102":0.01879,"103":0.68591,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.00313,"8":0,"9":0,"10":0,"11":0.00313,"12":0,"13":0.0094,"14":0.04385,"15":0.0094,_:"0","3.1":0,"3.2":0,"5.1":0.00626,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00313,"12.1":0.03132,"13.1":0.04385,"14.1":0.13781,"15.1":0.02819,"15.2-15.3":0.04385,"15.4":0.06577,"15.5":0.36644,"15.6":0.01253,"16.0":0.01879},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.03256,"8.1-8.4":0.00651,"9.0-9.2":0.01085,"9.3":0.13459,"10.0-10.2":0.00868,"10.3":0.19103,"11.0-11.2":0.02822,"11.3-11.4":0.06947,"12.0-12.1":0.05644,"12.2-12.5":1.09194,"13.0-13.1":0.01085,"13.2":0.01085,"13.3":0.08032,"13.4-13.7":0.2084,"14.0-14.4":0.64474,"14.5-14.8":1.66938,"15.0-15.1":0.49278,"15.2-15.3":1.01596,"15.4":1.62597,"15.5":13.82832,"16.0":0.09552},P:{"4":0.22502,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.28639,"8.2":0.01023,"9.2":0.06137,"10.1":0.02046,"11.1-11.2":0.18411,"12.0":0.06137,"13.0":0.22502,"14.0":0.29662,"15.0":0.13297,"16.0":0.40913,"17.0":4.26516,"18.0":0.01023},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00359,"4.2-4.3":0.00898,"4.4":0,"4.4.3-4.4.4":0.14007},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03758,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.38732},S:{"2.5":0},R:{_:"0"},M:{"0":0.17857},Q:{"10.4":0},O:{"0":0.1923},H:{"0":0.3056}}; 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 7be003aa0b7679f..5a6204402ba8ba6 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.01538,"75":0.00769,"78":0.00385,"82":0.00769,"87":0.08461,"88":0.00385,"91":0.00769,"94":0.00385,"99":0.00385,"100":0.01923,"101":0.08461,"102":0.97304,"103":0.0923,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 76 77 79 80 81 83 84 85 86 89 90 92 93 95 96 97 98 104 105 3.5 3.6"},D:{"49":0.00769,"56":0.00769,"63":0.01154,"64":0.00385,"67":0.01154,"69":0.02308,"74":0.00769,"75":0.03077,"76":0.11538,"77":0.05,"79":0.03846,"80":0.00385,"81":0.13076,"83":0.07692,"84":0.00769,"85":0.00769,"86":0.00769,"87":0.03461,"88":0.04615,"89":0.01923,"90":0.00769,"91":0.01538,"92":0.01538,"93":0.06923,"94":0.02692,"95":0.07307,"96":0.15769,"97":0.06154,"98":0.06154,"99":0.03846,"100":0.1,"101":0.13846,"102":1.38071,"103":21.3953,"104":0.13846,"105":0.04231,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 65 66 68 70 71 72 73 78 106"},F:{"84":0.01923,"86":0.00769,"87":0.01538,"88":0.48075,"89":0.27307,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 90 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,"16":0.00385,"17":0.05769,"18":0.10384,"92":0.04231,"96":0.00385,"100":0.16922,"101":0.04231,"102":0.1,"103":4.45367,_:"13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99"},E:{"4":0,"12":0.00385,"13":0.03461,"14":0.02692,"15":0.00769,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.11923,"11.1":0.01154,"12.1":0.01923,"13.1":0.10769,"14.1":0.10769,"15.1":0.01923,"15.2-15.3":0.01923,"15.4":0.18845,"15.5":1.16534,"15.6":0.03846},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00244,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14266,"10.0-10.2":0.00732,"10.3":0.02682,"11.0-11.2":0,"11.3-11.4":0.00854,"12.0-12.1":0.00488,"12.2-12.5":0.37189,"13.0-13.1":0.00122,"13.2":0,"13.3":0.06462,"13.4-13.7":0.02804,"14.0-14.4":0.20362,"14.5-14.8":0.66817,"15.0-15.1":0.12193,"15.2-15.3":0.23654,"15.4":0.85107,"15.5":9.01547,"16.0":0.11583},P:{"4":0.11486,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.45944,"8.2":0.01034,"9.2":0.02167,"10.1":0.02088,"11.1-11.2":0.10442,"12.0":0.02088,"13.0":0.11486,"14.0":0.06265,"15.0":0.13574,"16.0":0.24016,"17.0":6.12936},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.00098,"4.4":0,"4.4.3-4.4.4":0.02265},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04615,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.28308},Q:{"10.4":0},O:{"0":0.25231},H:{"0":0.2447},L:{"0":46.11623}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.02435,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00812,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00406,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.00406,"83":0,"84":0,"85":0,"86":0,"87":0.03247,"88":0,"89":0,"90":0,"91":0.00406,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00406,"99":0,"100":0.00812,"101":0.03653,"102":0.46273,"103":0.04059,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00406,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00406,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00406,"64":0.00406,"65":0,"66":0,"67":0.00406,"68":0,"69":0.00812,"70":0.00406,"71":0,"72":0,"73":0.00406,"74":0.00406,"75":0.01218,"76":0.04871,"77":0.0203,"78":0,"79":0.01624,"80":0.00406,"81":0.06089,"83":0.03247,"84":0.00406,"85":0.00406,"86":0.00812,"87":0.01624,"88":0.01624,"89":0.00812,"90":0.00406,"91":0.00812,"92":0.00406,"93":0.02841,"94":0.01218,"95":0.02841,"96":0.06494,"97":0.02435,"98":0.02435,"99":0.01624,"100":0.04465,"101":0.05683,"102":0.56014,"103":8.72279,"104":0.05683,"105":0.01624,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01218,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00812,"85":0,"86":0.00406,"87":0.00406,"88":0.19483,"89":0.10959,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00406,"13":0,"14":0,"15":0,"16":0,"17":0.02435,"18":0.04059,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.01624,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.069,"101":0.01624,"102":0.04465,"103":1.81843,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01218,"14":0.01218,"15":0.00406,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.04871,"11.1":0.00406,"12.1":0.00812,"13.1":0.04465,"14.1":0.04465,"15.1":0.00812,"15.2-15.3":0.00812,"15.4":0.07712,"15.5":0.47084,"15.6":0.01624,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00346,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.2024,"10.0-10.2":0.01038,"10.3":0.03806,"11.0-11.2":0,"11.3-11.4":0.01211,"12.0-12.1":0.00692,"12.2-12.5":0.52762,"13.0-13.1":0.00173,"13.2":0,"13.3":0.09169,"13.4-13.7":0.03979,"14.0-14.4":0.2889,"14.5-14.8":0.94799,"15.0-15.1":0.17299,"15.2-15.3":0.3356,"15.4":1.20748,"15.5":12.79097,"16.0":0.16434},P:{"4":0.12687,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.44405,"8.2":0,"9.2":0.02115,"10.1":0.02115,"11.1-11.2":0.1163,"12.0":0.02115,"13.0":0.10573,"14.0":0.06344,"15.0":0.12687,"16.0":0.24317,"17.0":5.85718,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03862,"4.2-4.3":0.03862,"4.4":0,"4.4.3-4.4.4":0.88822},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0203,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.32722},S:{"2.5":0},R:{_:"0"},M:{"0":0.27329},Q:{"10.4":0},O:{"0":0.24358},H:{"0":0.23623}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js index dbc5d0df70886c8..a92c50c2f310fca 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js @@ -1 +1 @@ -module.exports={C:{"50":0.00653,"52":0.00653,"59":0.0261,"60":0.04568,"61":0.04568,"62":0.0261,"63":0.04568,"64":0.00653,"65":0.01305,"66":0.01958,"67":0.01958,"68":0.0261,"69":0.00653,"70":0.01305,"71":0.01305,"72":0.01305,"73":0.0261,"74":0.01305,"78":0.03915,"80":0.00653,"83":0.00653,"84":0.00653,"91":0.14355,"94":0.05873,"95":0.01958,"96":0.01305,"97":0.03915,"98":0.00653,"100":0.09135,"101":0.56115,"102":6.6816,"103":0.56768,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 75 76 77 79 81 82 85 86 87 88 89 90 92 93 99 104 105 3.5 3.6"},D:{"49":0.97223,"60":0.01305,"62":0.00653,"63":0.00653,"64":0.01305,"65":0.01958,"66":0.00653,"67":0.01958,"68":0.00653,"69":0.01305,"70":0.01958,"72":0.01305,"73":0.1827,"77":0.03915,"78":0.00653,"79":0.12398,"80":0.03263,"83":0.18923,"84":0.0783,"85":0.4959,"86":0.00653,"87":0.17618,"90":0.03915,"92":0.0261,"94":0.04568,"95":0.09135,"96":0.01305,"97":0.04568,"98":0.03263,"99":0.47633,"100":0.3654,"101":1.7226,"102":1.27238,"103":23.29425,"104":0.00653,"105":0.07178,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 71 74 75 76 81 88 89 91 93 106"},F:{"54":0.00653,"84":0.00653,"86":0.03263,"87":0.04568,"88":1.70955,"89":0.41108,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.00653,"87":0.00653,"91":0.00653,"97":0.12398,"98":0.40455,"99":0.00653,"100":0.03915,"101":0.16965,"102":0.59378,"103":12.06473,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 88 89 90 92 93 94 95 96"},E:{"4":0,"13":0.0522,"14":0.3654,"15":0.28058,_:"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.55463,"12.1":0.0261,"13.1":1.46813,"14.1":0.90045,"15.1":0.22838,"15.2-15.3":0.2088,"15.4":0.56115,"15.5":4.7241,"15.6":0.1566,"16.0":0.08483},G:{"8":0,"3.2":0,"4.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.00466,"9.0-9.2":0,"9.3":0.12589,"10.0-10.2":0,"10.3":0.06295,"11.0-11.2":0.01166,"11.3-11.4":0.01166,"12.0-12.1":0.01865,"12.2-12.5":0.26111,"13.0-13.1":0.00699,"13.2":0,"13.3":0.0373,"13.4-13.7":0.17019,"14.0-14.4":0.4383,"14.5-14.8":0.88359,"15.0-15.1":0.24246,"15.2-15.3":2.07957,"15.4":1.99331,"15.5":16.30787,"16.0":0.13289},P:{"4":0.0834,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.44273,"8.2":0.02059,"9.2":0.05148,"10.1":0.0834,"11.1-11.2":0.15444,"12.0":0.03089,"13.0":0.02085,"14.0":0.30888,"15.0":0.11326,"16.0":0.38095,"17.0":2.48115},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00463,"4.4":0,"4.4.3-4.4.4":0.01969},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00653,"11":0.261,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.81315},Q:{"10.4":0},O:{"0":0.00695},H:{"0":0.10199},L:{"0":8.46285}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00662,"51":0,"52":0.00662,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01325,"60":0.03312,"61":0.03312,"62":0.01987,"63":0.03312,"64":0.00662,"65":0.01325,"66":0.01325,"67":0.01325,"68":0.01987,"69":0.00662,"70":0.00662,"71":0.00662,"72":0.00662,"73":0.01987,"74":0.00662,"75":0,"76":0,"77":0,"78":0.0265,"79":0,"80":0.00662,"81":0,"82":0,"83":0.00662,"84":0.00662,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.09274,"92":0,"93":0,"94":0.03974,"95":0.01325,"96":0.01987,"97":0.0265,"98":0.00662,"99":0,"100":0.05962,"101":0.39082,"102":4.86202,"103":0.39744,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.64253,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00662,"61":0,"62":0.00662,"63":0.00662,"64":0.01325,"65":0.01325,"66":0.00662,"67":0.01325,"68":0.00662,"69":0.00662,"70":0.01325,"71":0,"72":0.00662,"73":0.11923,"74":0,"75":0,"76":0,"77":0.0265,"78":0.00662,"79":0.07949,"80":0.01987,"81":0,"83":0.12586,"84":0.05299,"85":0.3312,"86":0.00662,"87":0.11923,"88":0,"89":0,"90":0.0265,"91":0,"92":0.01987,"93":0,"94":0.0265,"95":0.05962,"96":0.00662,"97":0.03312,"98":0.01987,"99":0.31795,"100":0.24509,"101":1.13933,"102":0.84787,"103":15.48029,"104":0.00662,"105":0.04637,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00662,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00662,"85":0,"86":0.01987,"87":0.03312,"88":1.1327,"89":0.27158,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00662,"85":0,"86":0,"87":0.00662,"88":0,"89":0,"90":0,"91":0.00662,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.07949,"98":0.26496,"99":0.00662,"100":0.0265,"101":0.11261,"102":0.39744,"103":8.06141,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03312,"14":0.24509,"15":0.18547,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.37094,"12.1":0.01987,"13.1":0.97373,"14.1":0.59616,"15.1":0.15235,"15.2-15.3":0.1391,"15.4":0.37094,"15.5":3.12653,"15.6":0.09936,"16.0":0.05299},G:{"8":0,"3.2":0,"4.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.00774,"9.0-9.2":0,"9.3":0.20889,"10.0-10.2":0,"10.3":0.10444,"11.0-11.2":0.01934,"11.3-11.4":0.01934,"12.0-12.1":0.03095,"12.2-12.5":0.43324,"13.0-13.1":0.0116,"13.2":0,"13.3":0.06189,"13.4-13.7":0.28238,"14.0-14.4":0.72723,"14.5-14.8":1.46607,"15.0-15.1":0.4023,"15.2-15.3":3.45048,"15.4":3.30736,"15.5":27.05844,"16.0":0.22049},P:{"4":0.08102,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0.08102,"11.1-11.2":0,"12.0":0.01013,"13.0":0.02026,"14.0":0.01013,"15.0":0,"16.0":0.02026,"17.0":2.36995,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00955,"4.4":0,"4.4.3-4.4.4":0.04058},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00662,"9":0,"10":0,"11":0.17222,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":13.04822},S:{"2.5":0},R:{_:"0"},M:{"0":0.78998},Q:{"10.4":0},O:{"0":0.00675},H:{"0":0.09908}}; 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 85c9d8a70a40539..e67bcde985bcbe4 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.01093,"72":0.00364,"91":0.01822,"92":0.00364,"96":0.00364,"97":0.00729,"98":0.00729,"99":0.01822,"100":0.02186,"101":0.14576,"102":1.08227,"103":0.20771,"104":0.00729,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 95 105 3.5 3.6"},D:{"49":0.00729,"52":0.00364,"60":0.01093,"63":0.00364,"67":0.00364,"68":0.00364,"69":0.00729,"70":0.01093,"71":0.00729,"72":0.00364,"73":0.01093,"74":0.04008,"75":0.00364,"76":0.00364,"77":0.01822,"78":0.01458,"79":0.01458,"80":0.01093,"81":0.04373,"83":0.01458,"84":0.00729,"85":0.01093,"86":0.01822,"87":0.02915,"88":0.01093,"89":0.01093,"90":0.01822,"91":0.02551,"92":0.02915,"93":0.02186,"94":0.01822,"95":0.02551,"96":0.05102,"97":0.03644,"98":0.04008,"99":0.04008,"100":0.06559,"101":0.1239,"102":0.61219,"103":19.53548,"104":0.02186,"105":0.01093,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 64 65 66 106 107"},F:{"79":0.01458,"82":0.00364,"83":0.00729,"84":0.01093,"85":0.03644,"86":0.02186,"87":0.01822,"88":0.65956,"89":0.37533,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00729,"14":0.00364,"15":0.00364,"16":0.00729,"17":0.00364,"18":0.02551,"84":0.01093,"89":0.00729,"90":0.00364,"92":0.05466,"96":0.00729,"98":0.01093,"99":0.01093,"100":0.00729,"101":0.02915,"102":0.23322,"103":10.49472,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 97"},E:{"4":0,"8":0.00364,"13":0.00729,"14":0.0328,"15":0.01093,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.00729,"13.1":0.03644,"14.1":0.07288,"15.1":0.02186,"15.2-15.3":0.01458,"15.4":0.05102,"15.5":0.22957,"15.6":0.01093},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0.00126,"6.0-6.1":0,"7.0-7.1":0.00441,"8.1-8.4":0.00189,"9.0-9.2":0.00126,"9.3":0.03275,"10.0-10.2":0.0063,"10.3":0.03842,"11.0-11.2":0.01385,"11.3-11.4":0.01889,"12.0-12.1":0.0296,"12.2-12.5":0.50381,"13.0-13.1":0.02519,"13.2":0.01574,"13.3":0.06172,"13.4-13.7":0.12469,"14.0-14.4":0.40997,"14.5-14.8":0.55545,"15.0-15.1":0.29347,"15.2-15.3":0.38478,"15.4":0.52711,"15.5":3.07762,"16.0":0.0359},P:{"4":0.57563,"5.0-5.4":0.01028,"6.2-6.4":0.03084,"7.2-7.4":0.9354,"8.2":0.02056,"9.2":0.07195,"10.1":0.02056,"11.1-11.2":0.26726,"12.0":0.04112,"13.0":0.20558,"14.0":0.23642,"15.0":0.13363,"16.0":0.37005,"17.0":1.3774},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00091,"4.2-4.3":0.00303,"4.4":0,"4.4.3-4.4.4":0.0342},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02551,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.11441},Q:{"10.4":0},O:{"0":1.30934},H:{"0":1.43817},L:{"0":51.09111},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0037,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0037,"69":0,"70":0,"71":0,"72":0.0037,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0074,"92":0.0037,"93":0,"94":0.0037,"95":0.0037,"96":0.0037,"97":0.0037,"98":0.0037,"99":0.0074,"100":0.0111,"101":0.05922,"102":0.41821,"103":0.07772,"104":0.0037,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0037,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0037,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0037,"61":0,"62":0,"63":0,"64":0.0037,"65":0,"66":0,"67":0,"68":0.0037,"69":0.0037,"70":0.0074,"71":0.0037,"72":0,"73":0.0037,"74":0.0148,"75":0,"76":0,"77":0.0074,"78":0.0074,"79":0.0074,"80":0.0037,"81":0.04071,"83":0.0074,"84":0.0037,"85":0.0037,"86":0.0074,"87":0.01851,"88":0.0074,"89":0.0037,"90":0.0074,"91":0.0111,"92":0.01851,"93":0.0074,"94":0.0111,"95":0.0111,"96":0.02221,"97":0.0148,"98":0.0148,"99":0.0148,"100":0.02591,"101":0.04811,"102":0.23686,"103":7.25766,"104":0.0074,"105":0.0037,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0148,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.0037,"52":0,"53":0,"54":0.0037,"55":0.0037,"56":0,"57":0,"58":0.0148,"60":0.0148,"62":0,"63":0.12954,"64":0.0037,"65":0,"66":0,"67":0,"68":0,"69":0.0037,"70":0.0037,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0037,"80":0,"81":0,"82":0,"83":0.0037,"84":0.0037,"85":0.0148,"86":0.0074,"87":0.0074,"88":0.24427,"89":0.14064,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.0037,"13":0,"14":0.0037,"15":0.0037,"16":0.0037,"17":0,"18":0.0111,"79":0,"80":0,"81":0,"83":0,"84":0.0037,"85":0,"86":0,"87":0,"88":0,"89":0.0037,"90":0,"91":0,"92":0.01851,"93":0,"94":0,"95":0,"96":0.0037,"97":0,"98":0.0037,"99":0.0037,"100":0.0037,"101":0.0111,"102":0.08882,"103":3.88975,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0037,"14":0.0111,"15":0.0037,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0037,"13.1":0.0148,"14.1":0.02591,"15.1":0.0074,"15.2-15.3":0.0074,"15.4":0.01851,"15.5":0.08512,"15.6":0.0037,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00182,"5.0-5.1":0.00182,"6.0-6.1":0,"7.0-7.1":0.00637,"8.1-8.4":0.00273,"9.0-9.2":0.00182,"9.3":0.04732,"10.0-10.2":0.0091,"10.3":0.0555,"11.0-11.2":0.02002,"11.3-11.4":0.0273,"12.0-12.1":0.04277,"12.2-12.5":0.72793,"13.0-13.1":0.0364,"13.2":0.02275,"13.3":0.08917,"13.4-13.7":0.18016,"14.0-14.4":0.59235,"14.5-14.8":0.80254,"15.0-15.1":0.42402,"15.2-15.3":0.55595,"15.4":0.76159,"15.5":4.44671,"16.0":0.05186},P:{"4":0.57789,"5.0-5.4":0.02028,"6.2-6.4":0.03042,"7.2-7.4":0.92259,"8.2":0.03042,"9.2":0.08111,"10.1":0.02028,"11.1-11.2":0.2636,"12.0":0.05069,"13.0":0.20277,"14.0":0.23318,"15.0":0.12166,"16.0":0.36498,"17.0":1.33827,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00169,"4.2-4.3":0.00564,"4.4":0,"4.4.3-4.4.4":0.06377},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0074,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.91607},S:{"2.5":0},R:{_:"0"},M:{"0":0.11338},Q:{"10.4":0},O:{"0":1.29759},H:{"0":1.42527}}; 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 fad93164cc0ad6b..0a619235ea5c165 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:{"21":0.01173,"24":0.00469,"29":0.00235,"45":0.01407,"47":0.00938,"53":0.00469,"72":0.00469,"74":0.05628,"84":0.00704,"88":0.00235,"91":0.00469,"92":0.00235,"95":0.00469,"96":0.00235,"99":0.00938,"100":0.03518,"101":0.04221,"102":0.87938,"103":0.08208,"104":0.00469,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 75 76 77 78 79 80 81 82 83 85 86 87 89 90 93 94 97 98 105 3.5 3.6"},D:{"43":0.00704,"47":0.00469,"49":0.00469,"58":0.00704,"59":0.00469,"60":0.01407,"63":0.01173,"64":0.03987,"66":0.00469,"68":0.00235,"70":0.00704,"71":0.00469,"73":0.00469,"74":0.01876,"75":0.06332,"76":0.03987,"79":0.01876,"80":0.01407,"81":0.01642,"83":0.00469,"84":0.00704,"85":0.01407,"86":0.01876,"87":0.02814,"88":0.03283,"89":0.01173,"90":0.00469,"91":0.01173,"92":0.04221,"93":0.03283,"94":0.00235,"95":0.01173,"96":0.03752,"97":0.01173,"98":0.03283,"99":0.05628,"100":0.07739,"101":0.08677,"102":0.40569,"103":6.88492,"104":0.00704,"105":0.00704,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 61 62 65 67 69 72 77 78 106"},F:{"36":0.00469,"45":0.00704,"57":0.00704,"79":0.01642,"80":0.00235,"81":0.01407,"85":0.00704,"86":0.00704,"87":0.01407,"88":0.1665,"89":0.12429,_:"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 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.06332,"13":0.05394,"14":0.02814,"15":0.0469,"16":0.03987,"17":0.02345,"18":0.16181,"80":0.00469,"84":0.05863,"85":0.01407,"87":0.00235,"88":0.00235,"89":0.01642,"90":0.03518,"91":0.00235,"92":0.06332,"94":0.00469,"95":0.00469,"96":0.01876,"97":0.00704,"98":0.00938,"99":0.01407,"100":0.03518,"101":0.0469,"102":0.22043,"103":2.26996,_:"79 81 83 86 93"},E:{"4":0.00235,"14":0.00704,"15":0.00469,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.6 16.0","11.1":0.00938,"12.1":0.00235,"13.1":0.01876,"14.1":0.04221,"15.1":0.00704,"15.2-15.3":0.00938,"15.4":0.01407,"15.5":0.14774},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00307,"6.0-6.1":0,"7.0-7.1":0.02761,"8.1-8.4":0.00205,"9.0-9.2":0.00716,"9.3":0.06239,"10.0-10.2":0.00307,"10.3":0.05727,"11.0-11.2":0.02455,"11.3-11.4":0.0225,"12.0-12.1":0.03682,"12.2-12.5":0.74556,"13.0-13.1":0.06954,"13.2":0.03068,"13.3":0.13091,"13.4-13.7":0.34772,"14.0-14.4":2.05055,"14.5-14.8":2.2326,"15.0-15.1":0.6034,"15.2-15.3":0.72715,"15.4":0.55227,"15.5":2.38805,"16.0":0.04091},P:{"4":0.58479,"5.0-5.4":0.04177,"6.2-6.4":0.13321,"7.2-7.4":0.09398,"8.2":0.02028,"9.2":0.06266,"10.1":0.03133,"11.1-11.2":0.10443,"12.0":0.02049,"13.0":0.04177,"14.0":0.06266,"15.0":0.02089,"16.0":0.13575,"17.0":0.62656},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,"4.4":0,"4.4.3-4.4.4":0.02665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00938,"11":0.15477,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0.11483},R:{_:"0"},M:{"0":0.07655},Q:{"10.4":0},O:{"0":0.75019},H:{"0":6.05871},L:{"0":64.93095}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00237,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00237,"46":0,"47":0.00237,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00237,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01424,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00237,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00237,"96":0,"97":0,"98":0,"99":0.00237,"100":0.00949,"101":0.01187,"102":0.21594,"103":0.01898,"104":0.00237,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00237,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00237,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00237,"59":0,"60":0.00237,"61":0,"62":0,"63":0.00237,"64":0.01187,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00237,"71":0,"72":0,"73":0.00237,"74":0.00475,"75":0.01424,"76":0.00949,"77":0,"78":0,"79":0.00475,"80":0.00237,"81":0.00475,"83":0,"84":0.00237,"85":0.00237,"86":0.00475,"87":0.00949,"88":0.01187,"89":0.00237,"90":0,"91":0.00237,"92":0.01187,"93":0.00712,"94":0,"95":0.00237,"96":0.00949,"97":0.00237,"98":0.00712,"99":0.01424,"100":0.01898,"101":0.02136,"102":0.09729,"103":1.68246,"104":0.00237,"105":0.00237,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.00475,"28":0.00237,"29":0,"30":0,"31":0,"32":0.00237,"33":0,"34":0,"35":0,"36":0.00237,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00237,"43":0,"44":0,"45":0.00237,"46":0.00237,"47":0,"48":0,"49":0,"50":0,"51":0.00237,"52":0,"53":0,"54":0,"55":0.00475,"56":0.00237,"57":0.01187,"58":0.01898,"60":0.1234,"62":0,"63":0.13763,"64":0.00237,"65":0,"66":0,"67":0.00237,"68":0,"69":0,"70":0.00712,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00475,"80":0,"81":0.00237,"82":0,"83":0,"84":0,"85":0.00237,"86":0.00237,"87":0.00237,"88":0.04034,"89":0.02848,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00475,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0261},B:{"12":0.01424,"13":0.01187,"14":0.00949,"15":0.01187,"16":0.00949,"17":0.00475,"18":0.03797,"79":0,"80":0.00237,"81":0,"83":0,"84":0.01424,"85":0.00237,"86":0,"87":0,"88":0,"89":0.00475,"90":0.00949,"91":0,"92":0.01424,"93":0,"94":0,"95":0.00237,"96":0.00475,"97":0.00237,"98":0.00237,"99":0.00237,"100":0.00949,"101":0.01187,"102":0.05458,"103":0.54104,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00237,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00237,"12.1":0,"13.1":0.00475,"14.1":0.00949,"15.1":0.00237,"15.2-15.3":0.00237,"15.4":0.00237,"15.5":0.0356,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00389,"6.0-6.1":0,"7.0-7.1":0.03501,"8.1-8.4":0.00259,"9.0-9.2":0.00908,"9.3":0.07909,"10.0-10.2":0.00389,"10.3":0.07261,"11.0-11.2":0.03112,"11.3-11.4":0.02853,"12.0-12.1":0.04668,"12.2-12.5":0.94524,"13.0-13.1":0.08817,"13.2":0.0389,"13.3":0.16597,"13.4-13.7":0.44085,"14.0-14.4":2.59973,"14.5-14.8":2.83053,"15.0-15.1":0.76501,"15.2-15.3":0.9219,"15.4":0.70018,"15.5":3.02762,"16.0":0.05187},P:{"4":0.58651,"5.0-5.4":0.04045,"6.2-6.4":0.01011,"7.2-7.4":0.09101,"8.2":0,"9.2":0.06067,"10.1":0.03034,"11.1-11.2":0.10112,"12.0":0.01011,"13.0":0.05056,"14.0":0.06067,"15.0":0.02022,"16.0":0.13146,"17.0":0.60673,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01749,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11743},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00237,"11":0.0356,"5.5":0},J:{"7":0,"10":0.00763},N:{"10":0,"11":0},L:{"0":71.81359},S:{"2.5":0.11441},R:{_:"0"},M:{"0":0.07627},Q:{"10.4":0},O:{"0":0.74745},H:{"0":6.03655}}; 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 aa5fb935a9bd6fe..4b30503dcc9ed6e 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:{"43":0.00654,"47":0.00327,"66":0.0098,"72":0.00654,"79":0.00654,"86":0.00327,"88":0.00327,"91":0.01307,"98":0.00327,"100":0.01307,"101":0.14052,"102":1.37256,"103":0.09804,"104":0.00327,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 78 80 81 82 83 84 85 87 89 90 92 93 94 95 96 97 99 105 3.5 3.6"},D:{"40":0.00327,"41":0.00327,"43":0.00654,"49":0.03595,"56":0.00327,"57":0.00654,"59":0.00327,"62":0.0098,"63":0.06536,"66":0.01634,"69":0.00654,"70":0.12745,"74":0.02614,"75":0.06209,"78":0.02614,"79":0.01961,"80":0.01634,"81":0.03268,"83":0.00654,"84":0.01307,"85":0.00654,"86":0.0098,"87":0.02614,"88":0.04902,"90":0.00654,"91":0.00654,"92":0.02614,"93":0.0098,"94":0.01634,"95":0.02288,"96":0.01961,"97":0.04575,"98":0.02288,"99":0.02941,"100":0.04902,"101":0.53595,"102":0.77125,"103":12.75827,"105":0.01634,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 47 48 50 51 52 53 54 55 58 60 61 64 65 67 68 71 72 73 76 77 89 104 106"},F:{"36":0.00327,"38":0.00327,"40":0.0098,"45":0.00654,"63":0.02614,"78":0.00654,"79":0.04248,"84":0.01307,"85":0.0098,"86":0.0098,"87":0.0098,"88":0.76144,"89":0.46732,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01961,"13":0.03595,"14":0.0098,"15":0.0098,"16":0.02941,"17":0.03595,"18":0.07843,"84":0.01307,"85":0.02288,"87":0.00327,"89":0.02288,"90":0.01634,"91":0.00654,"92":0.03595,"95":0.0098,"96":0.0098,"97":0.00654,"98":0.01307,"99":0.01961,"100":0.01961,"101":0.06863,"102":0.17974,"103":3.13401,_:"79 80 81 83 86 88 93 94"},E:{"4":0,"13":0.01307,"15":0.00654,_:"0 5 6 7 8 9 10 11 12 14 3.1 3.2 5.1 6.1 9.1 10.1 11.1 12.1","7.1":0.0098,"13.1":0.01634,"14.1":0.12092,"15.1":0.00654,"15.2-15.3":0.01634,"15.4":0.01634,"15.5":0.15033,"15.6":0.01307,"16.0":0.00327},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,"7.0-7.1":0.00382,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13652,"10.0-10.2":0.00722,"10.3":0.00934,"11.0-11.2":0.00552,"11.3-11.4":0.00234,"12.0-12.1":0.00488,"12.2-12.5":0.19958,"13.0-13.1":0.00064,"13.2":0.00064,"13.3":0.01444,"13.4-13.7":0.05733,"14.0-14.4":0.06539,"14.5-14.8":0.16179,"15.0-15.1":0.08365,"15.2-15.3":0.15414,"15.4":0.11423,"15.5":1.08813,"16.0":0.00212},P:{"4":0.39962,"5.0-5.4":0.02054,"6.2-6.4":0.13321,"7.2-7.4":1.17836,"8.2":0.02028,"9.2":0.03074,"10.1":0.03066,"11.1-11.2":0.13321,"12.0":0.02049,"13.0":0.1537,"14.0":0.37913,"15.0":0.08197,"16.0":0.20493,"17.0":1.2296},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00354,"4.2-4.3":0.00142,"4.4":0,"4.4.3-4.4.4":0.06909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20588,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01346},N:{"11":0.02718,_:"10"},S:{"2.5":0.01346},R:{_:"0"},M:{"0":0.06732},Q:{"10.4":0.01346},O:{"0":1.65607},H:{"0":6.18222},L:{"0":62.93105}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00331,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00331,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00331,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00331,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00331,"89":0,"90":0.00331,"91":0.00331,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00331,"100":0.00331,"101":0.0463,"102":0.46298,"103":0.03307,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00661,"41":0.00331,"42":0,"43":0.00331,"44":0,"45":0,"46":0.00661,"47":0,"48":0,"49":0.01323,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00661,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00331,"63":0.01984,"64":0,"65":0.00331,"66":0.00661,"67":0.00331,"68":0,"69":0.00331,"70":0.04299,"71":0,"72":0,"73":0,"74":0.00661,"75":0.01984,"76":0,"77":0.02976,"78":0.00992,"79":0.00661,"80":0.00661,"81":0.06283,"83":0.00331,"84":0.00331,"85":0.01984,"86":0.00331,"87":0.00661,"88":0.01654,"89":0.00331,"90":0.00331,"91":0.00661,"92":0.01323,"93":0.00331,"94":0.00661,"95":0.04961,"96":0.00661,"97":0.01323,"98":0.00661,"99":0.00992,"100":0.01984,"101":0.18189,"102":0.26125,"103":4.2495,"104":0,"105":0.00661,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00992,"22":0,"23":0,"24":0,"25":0.00331,"26":0.14551,"27":0.00331,"28":0.00992,"29":0,"30":0.00331,"31":0.00331,"32":0.02315,"33":0.00331,"34":0,"35":0.11575,"36":0.00331,"37":0.00331,"38":0.00331,"39":0,"40":0.00331,"41":0.00331,"42":0,"43":0,"44":0,"45":0.00331,"46":0.00661,"47":0.00661,"48":0,"49":0,"50":0.00661,"51":0.00331,"52":0,"53":0,"54":0.00992,"55":0.00992,"56":0.01323,"57":0.02315,"58":0.05291,"60":0.07275,"62":0.00331,"63":0.4233,"64":0.01323,"65":0,"66":0,"67":0,"68":0.00331,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01323,"80":0,"81":0,"82":0,"83":0,"84":0.00331,"85":0.00331,"86":0.00331,"87":0.00331,"88":0.25133,"89":0.15543,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02976},B:{"12":0.00661,"13":0.01323,"14":0.00331,"15":0.00331,"16":0.00992,"17":0.00992,"18":0.02646,"79":0,"80":0,"81":0,"83":0,"84":0.00331,"85":0.00661,"86":0,"87":0,"88":0,"89":0.00661,"90":0.00661,"91":0.00331,"92":0.01323,"93":0,"94":0,"95":0.00331,"96":0.00331,"97":0.00331,"98":0.00331,"99":0.00661,"100":0.00661,"101":0.02315,"102":0.06283,"103":1.0384,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00331,"14":0,"15":0.00331,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0.00331,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00661,"14.1":0.03968,"15.1":0.00331,"15.2-15.3":0.00661,"15.4":0.00661,"15.5":0.04961,"15.6":0.00331,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00303,"6.0-6.1":0,"7.0-7.1":0.00546,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19511,"10.0-10.2":0.01032,"10.3":0.01335,"11.0-11.2":0.00789,"11.3-11.4":0.00334,"12.0-12.1":0.00698,"12.2-12.5":0.28522,"13.0-13.1":0.00091,"13.2":0.00091,"13.3":0.02063,"13.4-13.7":0.08193,"14.0-14.4":0.09346,"14.5-14.8":0.23121,"15.0-15.1":0.11955,"15.2-15.3":0.22029,"15.4":0.16325,"15.5":1.55508,"16.0":0.00303},P:{"4":0.40644,"5.0-5.4":0,"6.2-6.4":0.14225,"7.2-7.4":1.15834,"8.2":0,"9.2":0.03048,"10.1":0.01016,"11.1-11.2":0.14225,"12.0":0.03048,"13.0":0.15241,"14.0":0.36579,"15.0":0.08129,"16.0":0.20322,"17.0":1.19898,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00669,"4.2-4.3":0.00267,"4.4":0,"4.4.3-4.4.4":0.1304},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06945,"5.5":0},J:{"7":0,"10":0.01339},N:{"10":0,"11":0},L:{"0":72.90448},S:{"2.5":0.01339},R:{_:"0"},M:{"0":0.06693},Q:{"10.4":0.01339},O:{"0":1.64648},H:{"0":6.14641}}; 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 1ed9a371f608c2b..e51530bd414f7f5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js @@ -1 +1 @@ -module.exports={C:{"48":0.05595,"52":0.17904,"60":0.01679,"66":0.01119,"68":0.01119,"72":0.0056,"77":0.02798,"78":0.05595,"82":0.01119,"83":0.01119,"84":0.02238,"88":0.01679,"89":0.01119,"90":0.0056,"91":0.18464,"92":0.0056,"94":0.01679,"95":0.04476,"96":0.05036,"97":0.02238,"98":0.02798,"99":0.03357,"100":0.04476,"101":0.25178,"102":4.04519,"103":0.45879,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 69 70 71 73 74 75 76 79 80 81 85 86 87 93 104 105 3.5 3.6"},D:{"41":0.06714,"49":0.03917,"53":0.01119,"56":0.08393,"61":0.0056,"63":0.01119,"64":0.01119,"65":0.01119,"66":0.01679,"68":0.01119,"70":0.01119,"71":0.0056,"72":0.0056,"73":0.01119,"74":0.01679,"76":0.0056,"77":0.0056,"78":0.03357,"79":0.1175,"80":0.03357,"81":0.02238,"83":0.02798,"84":0.02798,"85":0.05595,"86":0.08393,"87":0.1119,"88":0.05036,"89":0.04476,"90":0.04476,"91":0.08393,"92":0.08393,"93":0.17345,"94":0.05036,"95":0.09512,"96":0.21261,"97":0.2238,"98":0.04476,"99":0.1175,"100":0.19023,"101":0.29094,"102":1.87433,"103":32.05376,"104":0.01679,"105":0.01119,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 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 57 58 59 60 62 67 69 75 106"},F:{"36":0.01119,"69":0.01119,"70":0.0056,"79":0.0056,"80":0.01119,"82":0.05595,"83":0.01119,"84":0.01119,"85":0.05595,"86":0.01679,"87":0.19583,"88":3.27867,"89":1.21971,_:"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 71 72 73 74 75 76 77 78 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0056,"18":0.02798,"84":0.0056,"86":0.0056,"89":0.0056,"90":0.0056,"92":0.01119,"94":0.01119,"95":0.0056,"96":0.01679,"97":0.02798,"99":0.0056,"100":0.01119,"101":0.10631,"102":0.10071,"103":4.38089,_:"12 13 14 16 17 79 80 81 83 85 87 88 91 93 98"},E:{"4":0,"13":0.02798,"14":0.10071,"15":0.02798,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01119,"11.1":0.01679,"12.1":0.02798,"13.1":0.15107,"14.1":0.31892,"15.1":0.10631,"15.2-15.3":0.08393,"15.4":0.2294,"15.5":0.99591,"15.6":0.05036,"16.0":0.01679},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00323,"7.0-7.1":0.00539,"8.1-8.4":0.00108,"9.0-9.2":0,"9.3":0.02047,"10.0-10.2":0.00646,"10.3":0.10451,"11.0-11.2":0.00862,"11.3-11.4":0.00646,"12.0-12.1":0.00646,"12.2-12.5":0.12283,"13.0-13.1":0.00646,"13.2":0.00431,"13.3":0.02478,"13.4-13.7":0.08835,"14.0-14.4":0.25104,"14.5-14.8":0.65077,"15.0-15.1":0.24242,"15.2-15.3":0.41481,"15.4":0.79299,"15.5":7.74458,"16.0":0.06357},P:{"4":0.10399,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.44273,"8.2":0.02059,"9.2":0.05148,"10.1":0.0834,"11.1-11.2":0.0208,"12.0":0.0208,"13.0":0.052,"14.0":0.06239,"15.0":0.0312,"16.0":0.19758,"17.0":3.10931},I:{"0":0,"3":0,"4":0.01304,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00356,"4.2-4.3":0.00949,"4.4":0,"4.4.3-4.4.4":0.03557},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01119,"11":0.23499,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.32149},Q:{"10.4":0},O:{"0":0.03964},H:{"0":0.47948},L:{"0":29.20721}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.03407,"49":0,"50":0,"51":0,"52":0.1022,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01136,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00568,"67":0,"68":0.01136,"69":0,"70":0,"71":0,"72":0.00568,"73":0,"74":0,"75":0,"76":0,"77":0.01703,"78":0.03407,"79":0.00568,"80":0.00568,"81":0,"82":0.00568,"83":0.00568,"84":0.01136,"85":0,"86":0,"87":0,"88":0.01136,"89":0.00568,"90":0.00568,"91":0.12492,"92":0.00568,"93":0,"94":0.01136,"95":0.02839,"96":0.02839,"97":0.01136,"98":0.01703,"99":0.02271,"100":0.02839,"101":0.15331,"102":2.40179,"103":0.26687,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00568,"39":0,"40":0,"41":0.03407,"42":0,"43":0,"44":0,"45":0,"46":0.00568,"47":0,"48":0,"49":0.02271,"50":0,"51":0,"52":0,"53":0.00568,"54":0,"55":0,"56":0.04542,"57":0,"58":0,"59":0,"60":0,"61":0.00568,"62":0,"63":0.00568,"64":0.01136,"65":0.00568,"66":0.01136,"67":0.00568,"68":0.00568,"69":0,"70":0.00568,"71":0.00568,"72":0.00568,"73":0.00568,"74":0.01136,"75":0,"76":0.00568,"77":0.00568,"78":0.02271,"79":0.06814,"80":0.02271,"81":0.02839,"83":0.01703,"84":0.01703,"85":0.03407,"86":0.0511,"87":0.06814,"88":0.02839,"89":0.02839,"90":0.02839,"91":0.0511,"92":0.0511,"93":0.1022,"94":0.03407,"95":0.06246,"96":0.12492,"97":0.13059,"98":0.02839,"99":0.06814,"100":0.15331,"101":0.17034,"102":1.07882,"103":18.4024,"104":0.01136,"105":0.00568,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00568,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00568,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00568,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01703,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00568,"70":0.01703,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00568,"80":0.00568,"81":0,"82":0.02839,"83":0.00568,"84":0.00568,"85":0.03407,"86":0.01136,"87":0.10788,"88":1.86238,"89":0.69272,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00568,"16":0,"17":0,"18":0.01703,"79":0,"80":0,"81":0,"83":0,"84":0.00568,"85":0,"86":0.00568,"87":0,"88":0,"89":0.00568,"90":0.00568,"91":0,"92":0.00568,"93":0,"94":0.00568,"95":0.00568,"96":0.01136,"97":0.01703,"98":0,"99":0.00568,"100":0.00568,"101":0.06246,"102":0.06246,"103":2.51535,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01703,"14":0.05678,"15":0.01703,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00568,"10.1":0,"11.1":0.01136,"12.1":0.01703,"13.1":0.08517,"14.1":0.1817,"15.1":0.05678,"15.2-15.3":0.04542,"15.4":0.13059,"15.5":0.5678,"15.6":0.02839,"16.0":0.00568},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00523,"7.0-7.1":0.00871,"8.1-8.4":0.00174,"9.0-9.2":0,"9.3":0.0331,"10.0-10.2":0.01045,"10.3":0.16898,"11.0-11.2":0.01394,"11.3-11.4":0.01045,"12.0-12.1":0.01045,"12.2-12.5":0.1986,"13.0-13.1":0.01045,"13.2":0.00697,"13.3":0.04007,"13.4-13.7":0.14285,"14.0-14.4":0.40591,"14.5-14.8":1.05222,"15.0-15.1":0.39197,"15.2-15.3":0.6707,"15.4":1.28218,"15.5":12.52212,"16.0":0.10278},P:{"4":0.11258,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01023,"10.1":0,"11.1-11.2":0.02047,"12.0":0.02047,"13.0":0.06141,"14.0":0.06141,"15.0":0.0307,"16.0":0.19446,"17.0":3.00909,"18.0":0.01023},I:{"0":0,"3":0,"4":0.03682,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01004,"4.2-4.3":0.02678,"4.4":0,"4.4.3-4.4.4":0.10042},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00568,"9":0,"10":0,"11":0.13627,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.01297},L:{"0":43.20818},S:{"2.5":0},R:{_:"0"},M:{"0":0.31551},Q:{"10.4":0},O:{"0":0.0389},H:{"0":0.47056}}; 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 a181a6bb754b94e..bd07ae86acf5c21 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:{"48":0.00889,"50":0.02668,"51":0.00889,"52":0.07114,"53":0.02223,"56":0.02668,"60":0.01334,"68":0.01334,"78":0.12893,"84":0.01334,"87":0.00445,"88":0.02668,"89":0.01778,"91":0.5024,"92":0.00445,"95":0.00889,"96":0.00445,"97":0.01334,"98":0.01334,"99":0.0578,"100":0.04001,"101":0.36457,"102":4.68164,"103":0.5513,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 90 93 94 104 105 3.5 3.6"},D:{"38":0.03112,"49":0.01778,"53":0.00889,"62":0.00889,"63":0.00889,"68":0.02668,"72":0.6091,"73":0.00889,"74":0.01778,"75":0.00889,"78":0.04001,"79":0.16006,"80":0.01334,"81":0.01778,"83":0.01778,"84":0.00889,"85":0.0578,"86":0.22675,"87":0.0578,"88":0.01778,"89":0.02668,"90":0.03112,"91":0.12004,"92":0.11115,"93":0.02668,"94":0.02668,"95":0.0578,"96":0.08892,"97":0.10226,"98":0.06669,"99":0.20452,"100":0.24008,"101":0.42682,"102":0.947,"103":16.61915,"104":0.00889,"105":0.00445,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 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 64 65 66 67 69 70 71 76 77 106"},F:{"42":0.06224,"69":0.00889,"80":0.00445,"85":0.01778,"86":0.01334,"87":0.13338,"88":0.91143,"89":0.29788,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01334,"84":0.00889,"91":0.00889,"92":0.00445,"95":0.01334,"96":0.01334,"97":0.02223,"98":0.04446,"99":0.01778,"100":0.22675,"101":0.08892,"102":0.46238,"103":5.01064,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 93 94"},E:{"4":0,"7":0.03112,"13":0.03557,"14":0.17784,"15":0.06669,_:"0 5 6 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00445,"9.1":0.00889,"10.1":0.00889,"11.1":0.04001,"12.1":0.23564,"13.1":0.75137,"14.1":0.65356,"15.1":0.25342,"15.2-15.3":0.11115,"15.4":0.52907,"15.5":4.49491,"15.6":0.18673,"16.0":0.04446},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.15111,"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.44469,"9.3":0.05397,"10.0-10.2":0,"10.3":0.09714,"11.0-11.2":0.01511,"11.3-11.4":0.01079,"12.0-12.1":0.00648,"12.2-12.5":0.25257,"13.0-13.1":0.01727,"13.2":0.00648,"13.3":0.03022,"13.4-13.7":0.0993,"14.0-14.4":0.44685,"14.5-14.8":1.15274,"15.0-15.1":0.47059,"15.2-15.3":0.61307,"15.4":1.40315,"15.5":15.56197,"16.0":0.20508},P:{"4":0.1343,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.04132,"8.2":0.02059,"9.2":0.01033,"10.1":0.0834,"11.1-11.2":0.0208,"12.0":0.04132,"13.0":0.04132,"14.0":0.05165,"15.0":0.03099,"16.0":0.19629,"17.0":3.95675},I:{"0":0,"3":0.02988,"4":0,"2.1":0.01172,"2.2":0.04394,"2.3":0,"4.1":0.04277,"4.2-4.3":0.03105,"4.4":0,"4.4.3-4.4.4":0.11834},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.35123,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.73868},Q:{"10.4":1.72174},O:{"0":1.27187},H:{"0":0.49427},L:{"0":25.67004}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00455,"49":0,"50":0.01364,"51":0.00455,"52":0.03182,"53":0.00909,"54":0,"55":0,"56":0.01364,"57":0,"58":0,"59":0,"60":0.00455,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00909,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0591,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00909,"85":0,"86":0,"87":0.00455,"88":0.01364,"89":0.00909,"90":0,"91":0.26367,"92":0.00455,"93":0,"94":0.01364,"95":0.00455,"96":0.00455,"97":0.00455,"98":0.00909,"99":0.02728,"100":0.02728,"101":0.18639,"102":2.32755,"103":0.26821,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01364,"39":0,"40":0,"41":0,"42":0.00455,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00909,"50":0,"51":0,"52":0,"53":0.00455,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00455,"63":0.00455,"64":0,"65":0,"66":0,"67":0,"68":0.01364,"69":0,"70":0,"71":0,"72":0.27731,"73":0.00455,"74":0.00909,"75":0.00455,"76":0,"77":0,"78":0.01818,"79":0.07274,"80":0.00455,"81":0.01364,"83":0.00909,"84":0.00455,"85":0.02728,"86":0.10456,"87":0.02728,"88":0.00909,"89":0.01364,"90":0.01364,"91":0.05455,"92":0.05001,"93":0.01364,"94":0.01364,"95":0.02728,"96":0.04091,"97":0.04546,"98":0.03182,"99":0.09547,"100":0.1091,"101":0.19548,"102":0.43642,"103":7.61,"104":0.00455,"105":0.00455,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.02728,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04091,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00455,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00455,"81":0,"82":0,"83":0,"84":0,"85":0.00909,"86":0.00455,"87":0.0591,"88":0.41369,"89":0.13638,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00455,"79":0,"80":0,"81":0,"83":0,"84":0.00455,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00455,"92":0.00455,"93":0,"94":0,"95":0.00909,"96":0.00455,"97":0.00909,"98":0.02273,"99":0.00909,"100":0.10456,"101":0.04091,"102":0.23185,"103":2.30028,_:"104"},E:{"4":0,"5":0,"6":0,"7":0.01364,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01364,"14":0.08183,"15":0.03182,_:"0","3.1":0,"3.2":0,"5.1":0.00455,"6.1":0,"7.1":0,"9.1":0.00455,"10.1":0.00455,"11.1":0.01818,"12.1":0.1091,"13.1":0.34095,"14.1":0.29549,"15.1":0.11365,"15.2-15.3":0.05001,"15.4":0.24094,"15.5":2.04115,"15.6":0.08637,"16.0":0.01818},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.22175,"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.65259,"9.3":0.0792,"10.0-10.2":0,"10.3":0.14256,"11.0-11.2":0.02218,"11.3-11.4":0.01584,"12.0-12.1":0.0095,"12.2-12.5":0.37065,"13.0-13.1":0.02534,"13.2":0.0095,"13.3":0.04435,"13.4-13.7":0.14572,"14.0-14.4":0.65576,"14.5-14.8":1.69167,"15.0-15.1":0.69061,"15.2-15.3":0.89969,"15.4":2.05915,"15.5":22.83758,"16.0":0.30095},P:{"4":0.13435,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04134,"8.2":0,"9.2":0.01033,"10.1":0.01033,"11.1-11.2":0.01033,"12.0":0.04134,"13.0":0.04134,"14.0":0.05167,"15.0":0.031,"16.0":0.18602,"17.0":3.86513,"18.0":0},I:{"0":0,"3":0.05869,"4":0,"2.1":0.02302,"2.2":0.08631,"2.3":0,"4.1":0.08401,"4.2-4.3":0.06099,"4.4":0,"4.4.3-4.4.4":0.23245},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16366,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.29525},S:{"2.5":0},R:{_:"0"},M:{"0":0.72538},Q:{"10.4":1.69074},O:{"0":1.24897},H:{"0":0.48537}}; 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 1685a98966bb774..7f5c2333d5c1056 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.06009,"56":0.01335,"68":0.00668,"73":0.00668,"78":0.02003,"79":0.00668,"87":0.00668,"88":0.03339,"91":0.14022,"95":0.01335,"96":0.00668,"97":0.00668,"98":0.00668,"99":0.03339,"100":0.03339,"101":0.1736,"102":3.60558,"103":0.36724,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 74 75 76 77 80 81 82 83 84 85 86 89 90 92 93 94 104 105 3.5 3.6"},D:{"34":0.01335,"49":0.07345,"65":0.02003,"69":0.00668,"74":0.01335,"75":0.00668,"76":0.01335,"78":0.01335,"79":0.25373,"80":0.01335,"81":0.00668,"83":0.02003,"84":0.04674,"85":0.02671,"86":0.04006,"87":0.09348,"88":0.02003,"89":0.20699,"90":0.04006,"91":0.03339,"92":0.04006,"93":0.02671,"94":0.16025,"95":0.02003,"96":0.04674,"97":0.12686,"98":0.08012,"99":0.09348,"100":0.13354,"101":0.58758,"102":3.50543,"103":43.59413,"104":0.01335,"105":0.00668,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 72 73 77 106"},F:{"77":0.01335,"84":0.00668,"85":0.03339,"86":0.02671,"87":0.07345,"88":1.52236,"89":0.54751,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.01335,"86":0.01335,"92":0.00668,"95":0.02003,"97":0.01335,"99":0.01335,"100":0.01335,"101":0.35388,"102":0.1736,"103":6.21629,_:"12 13 14 15 16 17 18 79 80 81 83 85 87 88 89 90 91 93 94 96 98"},E:{"4":0,"8":0.01335,"13":0.00668,"14":0.11351,"15":0.02003,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.02003,"12.1":0.06009,"13.1":0.14022,"14.1":0.22702,"15.1":0.04006,"15.2-15.3":0.04674,"15.4":0.22702,"15.5":1.10838,"15.6":0.09348,"16.0":0.01335},G:{"8":0,"3.2":0,"4.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.00092,"9.0-9.2":0,"9.3":0.00919,"10.0-10.2":0.00184,"10.3":0.01379,"11.0-11.2":0.00643,"11.3-11.4":0.00919,"12.0-12.1":0.00827,"12.2-12.5":0.13234,"13.0-13.1":0.00735,"13.2":0.0046,"13.3":0.01746,"13.4-13.7":0.07904,"14.0-14.4":0.24079,"14.5-14.8":0.59003,"15.0-15.1":0.21046,"15.2-15.3":0.386,"15.4":0.68929,"15.5":6.48302,"16.0":0.07812},P:{"4":0.02098,"5.0-5.4":0.02054,"6.2-6.4":0.02044,"7.2-7.4":0.32701,"8.2":0.02028,"9.2":0.0511,"10.1":0.03066,"11.1-11.2":0.15329,"12.0":0.01049,"13.0":0.03147,"14.0":0.10489,"15.0":0.04195,"16.0":0.16782,"17.0":2.72703},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00987,"4.2-4.3":0.00789,"4.4":0,"4.4.3-4.4.4":0.04539},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00668,"11":0.07345,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.00332},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.4022},Q:{"10.4":0},O:{"0":0.13628},H:{"0":0.28952},L:{"0":20.74871}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04046,"53":0,"54":0,"55":0,"56":0.00674,"57":0,"58":0,"59":0,"60":0.00674,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00674,"69":0,"70":0,"71":0,"72":0,"73":0.00674,"74":0,"75":0,"76":0,"77":0,"78":0.01349,"79":0.00674,"80":0,"81":0,"82":0,"83":0,"84":0.00674,"85":0,"86":0,"87":0.00674,"88":0.02023,"89":0,"90":0.01349,"91":0.10115,"92":0,"93":0.00674,"94":0,"95":0.01349,"96":0.00674,"97":0.00674,"98":0.01349,"99":0.02697,"100":0.02697,"101":0.16183,"102":2.58257,"103":0.26298,"104":0.00674,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01349,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0472,"50":0,"51":0,"52":0,"53":0,"54":0.00674,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.01349,"66":0,"67":0,"68":0,"69":0.00674,"70":0,"71":0.00674,"72":0.00674,"73":0,"74":0.01349,"75":0.00674,"76":0.00674,"77":0.00674,"78":0.00674,"79":0.16858,"80":0.01349,"81":0.02023,"83":0.01349,"84":0.03372,"85":0.02023,"86":0.03372,"87":0.06743,"88":0.01349,"89":0.14835,"90":0.02697,"91":0.02697,"92":0.04046,"93":0.02023,"94":0.10789,"95":0.01349,"96":0.04046,"97":0.08766,"98":0.05394,"99":0.06743,"100":0.08766,"101":0.39784,"102":2.38702,"103":29.50737,"104":0.01349,"105":0.00674,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00674,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00674,"78":0,"79":0.00674,"80":0,"81":0,"82":0,"83":0,"84":0.00674,"85":0.02697,"86":0.02023,"87":0.0472,"88":1.02494,"89":0.37087,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00674,"79":0,"80":0,"81":0,"83":0,"84":0.00674,"85":0,"86":0.00674,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00674,"93":0,"94":0,"95":0.01349,"96":0.00674,"97":0.00674,"98":0,"99":0.00674,"100":0.00674,"101":0.23601,"102":0.12812,"103":4.2346,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00674,"9":0,"10":0,"11":0,"12":0,"13":0.00674,"14":0.07417,"15":0.01349,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01349,"10.1":0,"11.1":0,"12.1":0.04046,"13.1":0.0944,"14.1":0.15509,"15.1":0.02697,"15.2-15.3":0.02697,"15.4":0.14835,"15.5":0.74847,"15.6":0.06069,"16.0":0.00674},G:{"8":0,"3.2":0,"4.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.00158,"9.0-9.2":0,"9.3":0.01584,"10.0-10.2":0.00317,"10.3":0.02376,"11.0-11.2":0.01109,"11.3-11.4":0.01584,"12.0-12.1":0.01426,"12.2-12.5":0.22809,"13.0-13.1":0.01267,"13.2":0.00792,"13.3":0.0301,"13.4-13.7":0.13622,"14.0-14.4":0.415,"14.5-14.8":1.0169,"15.0-15.1":0.36273,"15.2-15.3":0.66526,"15.4":1.18796,"15.5":11.1732,"16.0":0.13464},P:{"4":0.05104,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01021,"12.0":0.02042,"13.0":0.03062,"14.0":0.10208,"15.0":0.04083,"16.0":0.15312,"17.0":2.6235,"18.0":0.01021},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02126,"4.2-4.3":0.01701,"4.4":0,"4.4.3-4.4.4":0.09779},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0.00674,"8":0.00674,"9":0,"10":0,"11":0.0472,"5.5":0},J:{"7":0,"10":0.00326},N:{"10":0,"11":0},L:{"0":32.71548},S:{"2.5":0},R:{_:"0"},M:{"0":0.3941},Q:{"10.4":0},O:{"0":0.13354},H:{"0":0.28368}}; 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 1fd20152d3447cc..969ce6c3775ee5d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js @@ -1 +1 @@ -module.exports={C:{"30":0.00447,"33":0.00298,"34":0.00298,"38":0.00149,"39":0.00298,"40":0.00149,"42":0.00298,"43":0.00298,"45":0.01192,"47":0.00447,"52":0.01341,"54":0.00298,"61":0.00298,"72":0.00447,"78":0.00894,"79":0.00447,"84":0.00298,"88":0.00149,"89":0.00149,"91":0.00596,"92":0.00149,"94":0.01192,"95":0.00447,"96":0.00298,"97":0.00894,"98":0.00149,"99":0.02086,"100":0.04619,"101":0.03278,"102":0.59004,"103":0.08344,"104":0.00149,_:"2 3 4 5 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 35 36 37 41 44 46 48 49 50 51 53 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 85 86 87 90 93 105 3.5 3.6"},D:{"11":0.00298,"25":0.00596,"31":0.00298,"32":0.00149,"33":0.00745,"37":0.00298,"38":0.00447,"40":0.00298,"41":0.00298,"42":0.00447,"43":0.00894,"49":0.00894,"54":0.00447,"55":0.00149,"56":0.00149,"58":0.00149,"60":0.00596,"62":0.00298,"63":0.01639,"64":0.00298,"65":0.00149,"67":0.00298,"68":0.00298,"69":0.00596,"70":0.00745,"71":0.00745,"72":0.00447,"73":0.00447,"74":0.00447,"75":0.00298,"76":0.00596,"77":0.00149,"78":0.00596,"79":0.01639,"80":0.01192,"81":0.01937,"83":0.02533,"84":0.01788,"85":0.01937,"86":0.06109,"87":0.09387,"88":0.03874,"89":0.03129,"90":0.03427,"91":0.02831,"92":0.02682,"93":0.0149,"94":0.03129,"95":0.02384,"96":0.05066,"97":0.03427,"98":0.04619,"99":0.04619,"100":0.05662,"101":0.11473,"102":0.54087,"103":8.18308,"104":0.00298,"105":0.00745,_:"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 34 35 36 39 44 45 46 47 48 50 51 52 53 57 59 61 66 106"},F:{"47":0.00447,"73":0.00298,"77":0.00149,"79":0.01788,"82":0.00596,"83":0.00447,"84":0.01341,"85":0.01788,"86":0.04172,"87":0.01937,"88":0.34121,"89":0.22052,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00149,"14":0.00447,"15":0.00149,"16":0.00596,"17":0.00447,"18":0.02235,"84":0.01043,"85":0.00596,"86":0.00447,"87":0.00596,"88":0.00596,"89":0.0149,"90":0.00596,"91":0.00745,"92":0.01639,"93":0.00447,"94":0.00447,"95":0.00447,"96":0.01192,"97":0.00894,"98":0.01192,"99":0.00596,"100":0.00596,"101":0.04023,"102":0.03129,"103":0.90592,_:"13 79 80 81 83"},E:{"4":0,"13":0.03874,"14":0.06258,"15":0.02384,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 12.1","5.1":0.00447,"9.1":0.00149,"11.1":0.03874,"13.1":0.03576,"14.1":0.07301,"15.1":0.0298,"15.2-15.3":0.03278,"15.4":0.08046,"15.5":0.3129,"15.6":0.01937,"16.0":0.00298},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.01246,"8.1-8.4":0.00178,"9.0-9.2":0,"9.3":0.05163,"10.0-10.2":0.00356,"10.3":0.03917,"11.0-11.2":0.02493,"11.3-11.4":0.02137,"12.0-12.1":0.03027,"12.2-12.5":0.44957,"13.0-13.1":0.03917,"13.2":0.01246,"13.3":0.05965,"13.4-13.7":0.11395,"14.0-14.4":0.5386,"14.5-14.8":0.79855,"15.0-15.1":0.52435,"15.2-15.3":0.59913,"15.4":0.98372,"15.5":4.22955,"16.0":0.09437},P:{"4":0.23681,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.44273,"8.2":0.02059,"9.2":0.05148,"10.1":0.03133,"11.1-11.2":0.15444,"12.0":0.03089,"13.0":0.13385,"14.0":0.30888,"15.0":0.11326,"16.0":0.38095,"17.0":1.42085},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00097,"4.2-4.3":0.00426,"4.4":0,"4.4.3-4.4.4":0.04584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00298,"11":0.03725,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.0851},Q:{"10.4":0},O:{"0":0.33189},H:{"0":2.77151},L:{"0":70.86154}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0015,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0015,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0015,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0015,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.0015,"92":0.0015,"93":0.0015,"94":0.0015,"95":0.0015,"96":0.0015,"97":0.0015,"98":0,"99":0.00301,"100":0.00752,"101":0.00602,"102":0.09325,"103":0.01354,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.0015,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.0015,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00301,"41":0,"42":0,"43":0.0015,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0015,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0015,"61":0,"62":0,"63":0.00301,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.0015,"70":0.0015,"71":0.0015,"72":0,"73":0.0015,"74":0,"75":0,"76":0.0015,"77":0,"78":0.0015,"79":0.00301,"80":0.0015,"81":0.00902,"83":0.00451,"84":0.00301,"85":0.00301,"86":0.00902,"87":0.01354,"88":0.00602,"89":0.00451,"90":0.00451,"91":0.00451,"92":0.00451,"93":0.00301,"94":0.00451,"95":0.00301,"96":0.00752,"97":0.00451,"98":0.00752,"99":0.00752,"100":0.00902,"101":0.01805,"102":0.08122,"103":1.23328,"104":0,"105":0.0015,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00301,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0015,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00602,"60":0.01955,"62":0,"63":0.15642,"64":0.01354,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0015,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00301,"80":0,"81":0,"82":0.0015,"83":0,"84":0.0015,"85":0.00301,"86":0.00602,"87":0.00301,"88":0.05114,"89":0.03309,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.0015},B:{"12":0,"13":0,"14":0,"15":0,"16":0.0015,"17":0,"18":0.00301,"79":0,"80":0,"81":0,"83":0,"84":0.0015,"85":0.0015,"86":0,"87":0.0015,"88":0.0015,"89":0.0015,"90":0.0015,"91":0.0015,"92":0.00301,"93":0,"94":0,"95":0.0015,"96":0.0015,"97":0.0015,"98":0.0015,"99":0.0015,"100":0.0015,"101":0.00602,"102":0.00602,"103":0.13837,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00602,"14":0.00902,"15":0.00301,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00602,"12.1":0,"13.1":0.00602,"14.1":0.01053,"15.1":0.00451,"15.2-15.3":0.00451,"15.4":0.01203,"15.5":0.04662,"15.6":0.00301,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00105,"6.0-6.1":0,"7.0-7.1":0.01465,"8.1-8.4":0.00209,"9.0-9.2":0,"9.3":0.06067,"10.0-10.2":0.00418,"10.3":0.04603,"11.0-11.2":0.02929,"11.3-11.4":0.02511,"12.0-12.1":0.03557,"12.2-12.5":0.52829,"13.0-13.1":0.04603,"13.2":0.01465,"13.3":0.07009,"13.4-13.7":0.1339,"14.0-14.4":0.6329,"14.5-14.8":0.93837,"15.0-15.1":0.61616,"15.2-15.3":0.70404,"15.4":1.15596,"15.5":4.9701,"16.0":0.11089},P:{"4":0.22407,"5.0-5.4":0.01018,"6.2-6.4":0.04074,"7.2-7.4":0.44813,"8.2":0.02037,"9.2":0.05092,"10.1":0.02037,"11.1-11.2":0.16296,"12.0":0.04074,"13.0":0.1324,"14.0":0.30554,"15.0":0.11203,"16.0":0.36665,"17.0":1.38513,"18.0":0.01018},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00176,"4.2-4.3":0.00776,"4.4":0,"4.4.3-4.4.4":0.08357},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00602,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":79.77346},S:{"2.5":0},R:{_:"0"},M:{"0":0.08496},Q:{"10.4":0.0085},O:{"0":0.33134},H:{"0":2.76695}}; 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 1a7ac2ff4a06f78..7118e38089c5964 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:{"47":0.00344,"50":0.00344,"52":0.16488,"55":0.02061,"58":0.00687,"64":0.00344,"65":0.06183,"68":0.00344,"72":0.00687,"78":0.02405,"80":0.00344,"81":0.00687,"83":0.00344,"84":0.02061,"87":0.01374,"88":0.00687,"89":0.00687,"90":0.00344,"91":0.04809,"93":0.00687,"94":0.00687,"95":0.01031,"96":0.00344,"97":0.01031,"98":0.01374,"99":0.04122,"100":0.02748,"101":0.14771,"102":1.68659,"103":0.20954,"104":0.00344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 53 54 56 57 59 60 61 62 63 66 67 69 70 71 73 74 75 76 77 79 82 85 86 92 105 3.5 3.6"},D:{"38":0.00687,"41":0.00344,"43":0.01031,"49":0.08588,"53":0.00687,"56":0.01374,"62":0.00344,"63":0.01031,"64":0.00687,"65":0.01031,"66":0.00344,"67":0.12023,"68":0.01374,"69":0.01031,"70":0.01374,"71":0.00344,"72":0.00687,"73":0.00687,"74":0.01031,"75":0.03779,"76":0.01031,"77":0.01031,"78":0.00687,"79":0.08931,"80":0.02748,"81":0.02405,"83":0.04466,"84":0.04809,"85":0.04809,"86":0.08244,"87":0.1374,"88":0.02405,"89":0.03435,"90":0.01718,"91":0.0584,"92":0.04466,"93":0.03092,"94":0.02405,"95":0.02748,"96":0.08244,"97":0.06527,"98":0.06527,"99":0.10649,"100":0.14084,"101":0.20954,"102":1.5801,"103":21.53402,"104":0.01718,"105":0.01718,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 106"},F:{"28":0.01031,"40":0.00344,"79":0.01031,"82":0.00687,"83":0.00687,"84":0.01031,"85":0.04809,"86":0.01031,"87":0.04809,"88":1.18508,"89":0.47403,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00344,"16":0.00344,"17":0.00687,"18":0.01374,"84":0.00687,"85":0.00344,"92":0.01718,"99":0.00687,"100":0.00687,"101":0.03435,"102":0.05153,"103":2.04726,_:"12 13 14 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98"},E:{"4":0,"11":0.01031,"13":0.01374,"14":0.05496,"15":0.01718,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 16.0","5.1":0.01031,"11.1":0.01031,"12.1":0.02748,"13.1":0.0687,"14.1":0.1374,"15.1":0.02748,"15.2-15.3":0.02405,"15.4":0.06527,"15.5":0.30228,"15.6":0.01374},G:{"8":0.0033,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00578,"6.0-6.1":0.00083,"7.0-7.1":0.04209,"8.1-8.4":0.0066,"9.0-9.2":0.00083,"9.3":0.14194,"10.0-10.2":0.02888,"10.3":0.1015,"11.0-11.2":0.118,"11.3-11.4":0.09737,"12.0-12.1":0.15101,"12.2-12.5":1.00262,"13.0-13.1":0.01403,"13.2":0.00825,"13.3":0.04786,"13.4-13.7":0.10893,"14.0-14.4":0.42663,"14.5-14.8":0.86151,"15.0-15.1":0.30615,"15.2-15.3":0.36639,"15.4":0.61065,"15.5":3.6375,"16.0":0.04539},P:{"4":0.52761,"5.0-5.4":0.04074,"6.2-6.4":0.02069,"7.2-7.4":0.26898,"8.2":0.01034,"9.2":0.06207,"10.1":0.03025,"11.1-11.2":0.12414,"12.0":0.03104,"13.0":0.17587,"14.0":0.13449,"15.0":0.08276,"16.0":0.25863,"17.0":2.67944},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00585,"4.2-4.3":0.00878,"4.4":0,"4.4.3-4.4.4":0.07071},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00344,"11":0.21641,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.16413},Q:{"10.4":0},O:{"0":0.11817},H:{"0":0.47858},L:{"0":53.42476}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05573,"53":0,"54":0,"55":0.00697,"56":0,"57":0,"58":0.00348,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.0209,"66":0,"67":0,"68":0.00348,"69":0,"70":0,"71":0,"72":0.00348,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00697,"79":0,"80":0,"81":0.00348,"82":0,"83":0,"84":0.00697,"85":0,"86":0,"87":0.00348,"88":0.00348,"89":0.00348,"90":0,"91":0.01742,"92":0.00348,"93":0.00348,"94":0.00348,"95":0.00348,"96":0,"97":0.00348,"98":0.00348,"99":0.01393,"100":0.01045,"101":0.06269,"102":0.61649,"103":0.07663,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00348,"39":0,"40":0,"41":0,"42":0,"43":0.00348,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03135,"50":0,"51":0,"52":0,"53":0.00348,"54":0,"55":0,"56":0.00348,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00348,"64":0.00348,"65":0.00348,"66":0,"67":0.0418,"68":0.00348,"69":0.00348,"70":0.00348,"71":0,"72":0.00348,"73":0.00348,"74":0.01393,"75":0.01393,"76":0.00348,"77":0.00348,"78":0.00348,"79":0.03135,"80":0.01045,"81":0.02786,"83":0.01742,"84":0.01742,"85":0.01742,"86":0.03135,"87":0.04876,"88":0.01045,"89":0.01393,"90":0.00697,"91":0.0209,"92":0.0209,"93":0.01045,"94":0.01045,"95":0.01045,"96":0.03483,"97":0.02438,"98":0.02438,"99":0.03831,"100":0.04876,"101":0.07314,"102":0.56076,"103":7.54766,"104":0.00697,"105":0.00697,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00348,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01742,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00348,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00348,"80":0,"81":0,"82":0.00348,"83":0.00348,"84":0.00348,"85":0.01742,"86":0.00348,"87":0.01742,"88":0.41448,"89":0.1637,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00348,"16":0,"17":0.00348,"18":0.00697,"79":0,"80":0,"81":0,"83":0,"84":0.00348,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00697,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00348,"100":0.00348,"101":0.01045,"102":0.0209,"103":0.72098,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00348,"12":0,"13":0.00348,"14":0.01742,"15":0.00697,_:"0","3.1":0,"3.2":0,"5.1":0.00348,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00348,"12.1":0.01045,"13.1":0.02438,"14.1":0.04876,"15.1":0.01045,"15.2-15.3":0.00697,"15.4":0.0209,"15.5":0.10449,"15.6":0.00348,"16.0":0},G:{"8":0.00465,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00814,"6.0-6.1":0.00116,"7.0-7.1":0.05931,"8.1-8.4":0.0093,"9.0-9.2":0.00116,"9.3":0.20003,"10.0-10.2":0.0407,"10.3":0.14305,"11.0-11.2":0.16631,"11.3-11.4":0.13723,"12.0-12.1":0.21283,"12.2-12.5":1.41302,"13.0-13.1":0.01977,"13.2":0.01163,"13.3":0.06745,"13.4-13.7":0.15351,"14.0-14.4":0.60126,"14.5-14.8":1.21415,"15.0-15.1":0.43147,"15.2-15.3":0.51636,"15.4":0.86061,"15.5":5.12643,"16.0":0.06396},P:{"4":0.50202,"5.0-5.4":0.01025,"6.2-6.4":0.02049,"7.2-7.4":0.26638,"8.2":0.01025,"9.2":0.08196,"10.1":0.01025,"11.1-11.2":0.12294,"12.0":0.04098,"13.0":0.17417,"14.0":0.13319,"15.0":0.08196,"16.0":0.25614,"17.0":2.61258,"18.0":0.01025},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01083,"4.2-4.3":0.01624,"4.4":0,"4.4.3-4.4.4":0.13079},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07663,"5.5":0},J:{"7":0,"10":0.00652},N:{"10":0,"11":0},L:{"0":69.59029},S:{"2.5":0},R:{_:"0"},M:{"0":0.16293},Q:{"10.4":0},O:{"0":0.11731},H:{"0":0.47508}}; 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 45fa6a0e0b0ca57..f9b64e26003f28b 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:{"48":0.00605,"52":0.02421,"60":0.01816,"61":0.0121,"62":0.0121,"63":0.0121,"65":0.0121,"67":0.00605,"68":0.02421,"70":0.00605,"72":0.00605,"73":0.00605,"78":0.30865,"80":0.03026,"81":0.18156,"91":0.1634,"100":0.03026,"101":0.37522,"102":5.64652,"103":0.26629,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 64 66 69 71 74 75 76 77 79 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"49":0.00605,"64":0.00605,"66":0.0121,"67":0.0121,"68":0.00605,"69":0.0121,"70":0.0121,"72":0.00605,"74":0.0121,"77":0.18156,"78":0.01816,"79":0.0121,"80":0.06657,"81":0.06657,"83":0.09078,"84":0.76255,"85":0.29655,"86":0.56889,"87":0.26629,"88":0.13314,"89":0.03631,"90":0.10288,"91":0.00605,"92":0.00605,"93":0.11499,"94":0.11499,"95":0.00605,"96":1.40406,"97":0.06657,"98":0.02421,"99":0.35102,"100":0.1634,"101":2.20898,"102":1.85796,"103":21.98692,"104":0.09078,"105":0.04236,"106":0.0121,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 71 73 75 76"},F:{"83":0.0121,"85":0.01816,"87":0.00605,"88":1.30118,"89":0.32681,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01816,"18":0.01816,"95":0.0121,"97":0.10894,"98":0.02421,"99":0.00605,"101":0.00605,"102":2.11215,"103":3.06231,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 100"},E:{"4":0,"12":0.0121,"13":0.0121,"14":0.39338,"15":0.07868,_:"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.05447,"12.1":0.24813,"13.1":0.7686,"14.1":2.36028,"15.1":0.09078,"15.2-15.3":0.19366,"15.4":0.85938,"15.5":8.01285,"15.6":0.51442,"16.0":0.02421},G:{"8":0,"3.2":0,"4.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.48397,"10.0-10.2":0,"10.3":0.03743,"11.0-11.2":0,"11.3-11.4":0.03743,"12.0-12.1":0.00267,"12.2-12.5":0.34493,"13.0-13.1":0.00802,"13.2":0.00535,"13.3":0.04011,"13.4-13.7":0.20054,"14.0-14.4":0.33691,"14.5-14.8":1.63107,"15.0-15.1":0.38771,"15.2-15.3":1.12036,"15.4":2.57496,"15.5":18.87767,"16.0":0.11498},P:{"4":0.09541,"5.0-5.4":0.01069,"6.2-6.4":0.23191,"7.2-7.4":0.053,"8.2":0.01034,"9.2":0.01019,"10.1":0.03025,"11.1-11.2":0.2994,"12.0":0.01069,"13.0":0.0424,"14.0":0.053,"15.0":0.01069,"16.0":0.12721,"17.0":1.43283},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:{"9":0.00605,"11":0.18761,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.16183},Q:{"10.4":0},O:{"0":0},H:{"0":0.05605},L:{"0":11.30841}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00619,"49":0,"50":0,"51":0,"52":0.01238,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01238,"61":0.00619,"62":0.00619,"63":0.00619,"64":0,"65":0.00619,"66":0,"67":0.00619,"68":0.01238,"69":0,"70":0.00619,"71":0,"72":0.00619,"73":0.00619,"74":0,"75":0,"76":0,"77":0,"78":0.19186,"79":0,"80":0.01857,"81":0.1114,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.09902,"92":0,"93":0,"94":0,"95":0.00619,"96":0.00619,"97":0,"98":0.00619,"99":0,"100":0.02476,"101":0.23518,"102":3.54011,"103":0.17329,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00619,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00619,"65":0,"66":0.00619,"67":0.00619,"68":0.00619,"69":0.00619,"70":0.00619,"71":0,"72":0.00619,"73":0,"74":0.00619,"75":0,"76":0,"77":0.1114,"78":0.01238,"79":0.00619,"80":0.04332,"81":0.04332,"83":0.0557,"84":0.47036,"85":0.18567,"86":0.35277,"87":0.1671,"88":0.08046,"89":0.02476,"90":0.06808,"91":0.00619,"92":0.00619,"93":0.06808,"94":0.07427,"95":0.00619,"96":0.86646,"97":0.04332,"98":0.01238,"99":0.2228,"100":0.09902,"101":1.36777,"102":1.15115,"103":13.60961,"104":0.0557,"105":0.02476,"106":0.00619,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00619,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00619,"84":0,"85":0.01238,"86":0,"87":0.00619,"88":0.80457,"89":0.20424,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01238,"18":0.01238,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.00619,"96":0,"97":0.06808,"98":0.01238,"99":0.00619,"100":0,"101":0.00619,"102":1.38634,"103":1.99286,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00619,"13":0.00619,"14":0.24137,"15":0.04951,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.03095,"12.1":0.15473,"13.1":0.47655,"14.1":1.4606,"15.1":0.0557,"15.2-15.3":0.11759,"15.4":0.53225,"15.5":4.96358,"15.6":0.32183,"16.0":0.01857},G:{"8":0,"3.2":0,"4.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.7845,"10.0-10.2":0,"10.3":0.06068,"11.0-11.2":0,"11.3-11.4":0.06068,"12.0-12.1":0.00433,"12.2-12.5":0.55912,"13.0-13.1":0.013,"13.2":0.00867,"13.3":0.06501,"13.4-13.7":0.32507,"14.0-14.4":0.54612,"14.5-14.8":2.6439,"15.0-15.1":0.62847,"15.2-15.3":1.81605,"15.4":4.17389,"15.5":30.59984,"16.0":0.18637},P:{"4":0.01039,"5.0-5.4":0.01039,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.28046,"12.0":0.01039,"13.0":0,"14.0":0,"15.0":0.01039,"16.0":0.02077,"17.0":1.36074,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01558,"4.4":0,"4.4.3-4.4.4":0.01299},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00619,"10":0,"11":0.11759,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":16.5598},S:{"2.5":0},R:{_:"0"},M:{"0":0.15625},Q:{"10.4":0},O:{"0":0},H:{"0":0.05412}}; 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 db14a3d08872b85..3a4d130b281362c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js @@ -1 +1 @@ -module.exports={C:{"52":0.078,"60":0.00459,"68":0.00918,"72":0.02294,"78":0.01835,"84":0.00459,"85":0.00459,"87":0.14682,"88":0.01376,"89":0.01835,"90":0.00459,"91":0.62856,"93":0.01835,"94":0.00459,"95":0.19728,"96":0.01376,"98":0.01376,"99":0.12388,"100":0.03212,"101":0.10552,"102":1.9499,"103":0.22481,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 92 97 104 105 3.5","3.6":0.01835},D:{"29":0.00918,"38":0.01376,"49":0.078,"51":0.06882,"53":0.01835,"56":0.00918,"57":0.00459,"64":0.01835,"65":0.00918,"67":0.00459,"69":0.01835,"70":0.01376,"71":0.01376,"72":0.00918,"73":0.00918,"74":0.03212,"75":0.16976,"76":0.00459,"78":0.03212,"79":0.08258,"80":0.55515,"81":0.01376,"83":0.07341,"84":0.06423,"85":0.0367,"86":0.10552,"87":0.05506,"88":0.02294,"89":0.02294,"90":0.0367,"91":0.0367,"92":0.05047,"93":0.01835,"94":0.078,"95":0.01835,"96":0.15599,"97":0.08717,"98":0.11929,"99":0.08717,"100":0.1514,"101":0.43127,"102":1.71132,"103":27.23896,"104":0.00918,"105":0.01376,_:"4 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 47 48 50 52 54 55 58 59 60 61 62 63 66 68 77 106"},F:{"79":0.00918,"83":0.00459,"84":0.01376,"85":0.0367,"86":0.00918,"87":0.04129,"88":2.07836,"89":0.96348,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.03212,"18":0.00459,"92":0.00918,"97":0.00918,"101":0.03212,"102":0.05506,"103":1.48192,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100"},E:{"4":0,"8":0.00459,"13":0.04588,"14":0.078,"15":0.01376,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00459,"12.1":0.01835,"13.1":0.09176,"14.1":0.17893,"15.1":0.09176,"15.2-15.3":0.05964,"15.4":0.13305,"15.5":0.54138,"15.6":0.08258,"16.0":0.00459},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00582,"8.1-8.4":0,"9.0-9.2":0.00291,"9.3":0.07658,"10.0-10.2":0.00194,"10.3":0.04556,"11.0-11.2":0.01357,"11.3-11.4":0.00969,"12.0-12.1":0.0126,"12.2-12.5":0.32766,"13.0-13.1":0.01163,"13.2":0.01066,"13.3":0.0252,"13.4-13.7":0.13378,"14.0-14.4":0.28113,"14.5-14.8":0.78426,"15.0-15.1":0.2123,"15.2-15.3":0.36741,"15.4":0.66793,"15.5":6.36814,"16.0":0.14832},P:{"4":0.09541,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":0.053,"8.2":0.01034,"9.2":0.01019,"10.1":0.03025,"11.1-11.2":0.0318,"12.0":0.03068,"13.0":0.0424,"14.0":0.053,"15.0":0.0212,"16.0":0.12721,"17.0":1.90812},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00346,"4.2-4.3":0.02597,"4.4":0,"4.4.3-4.4.4":0.05714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01376,"11":0.29822,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.20021},Q:{"10.4":0},O:{"0":0.08117},H:{"0":0.24077},L:{"0":42.85243}}; +module.exports={C:{"52":0.078,"60":0.00459,"68":0.00918,"72":0.02294,"78":0.01835,"84":0.00459,"85":0.00459,"87":0.14682,"88":0.01376,"89":0.01835,"90":0.00459,"91":0.62856,"93":0.01835,"94":0.00459,"95":0.19728,"96":0.01376,"98":0.01376,"99":0.12388,"100":0.03212,"101":0.10552,"102":1.9499,"103":0.22481,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 92 97 104 105 3.5","3.6":0.01835},D:{"29":0.00918,"38":0.01376,"49":0.078,"51":0.06882,"53":0.01835,"56":0.00918,"57":0.00459,"64":0.01835,"65":0.00918,"67":0.00459,"69":0.01835,"70":0.01376,"71":0.01376,"72":0.00918,"73":0.00918,"74":0.03212,"75":0.16976,"76":0.00459,"78":0.03212,"79":0.08258,"80":0.55515,"81":0.01376,"83":0.07341,"84":0.06423,"85":0.0367,"86":0.10552,"87":0.05506,"88":0.02294,"89":0.02294,"90":0.0367,"91":0.0367,"92":0.05047,"93":0.01835,"94":0.078,"95":0.01835,"96":0.15599,"97":0.08717,"98":0.11929,"99":0.08717,"100":0.1514,"101":0.43127,"102":1.71132,"103":27.23896,"104":0.00918,"105":0.01376,_:"4 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 47 48 50 52 54 55 58 59 60 61 62 63 66 68 77 106 107"},F:{"79":0.00918,"83":0.00459,"84":0.01376,"85":0.0367,"86":0.00918,"87":0.04129,"88":2.07836,"89":0.96348,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.03212,"18":0.00459,"92":0.00918,"97":0.00918,"101":0.03212,"102":0.05506,"103":1.48192,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 104"},E:{"4":0,"8":0.00459,"13":0.04588,"14":0.078,"15":0.01376,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00459,"12.1":0.01835,"13.1":0.09176,"14.1":0.17893,"15.1":0.09176,"15.2-15.3":0.05964,"15.4":0.13305,"15.5":0.54138,"15.6":0.08258,"16.0":0.00459},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00582,"8.1-8.4":0,"9.0-9.2":0.00291,"9.3":0.07658,"10.0-10.2":0.00194,"10.3":0.04556,"11.0-11.2":0.01357,"11.3-11.4":0.00969,"12.0-12.1":0.0126,"12.2-12.5":0.32766,"13.0-13.1":0.01163,"13.2":0.01066,"13.3":0.0252,"13.4-13.7":0.13378,"14.0-14.4":0.28113,"14.5-14.8":0.78426,"15.0-15.1":0.2123,"15.2-15.3":0.36741,"15.4":0.66793,"15.5":6.36814,"16.0":0.14832},P:{"4":0.09541,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.053,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0318,"12.0":0,"13.0":0.0424,"14.0":0.053,"15.0":0.0212,"16.0":0.12721,"17.0":1.90812,"18.0":0.03106},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00346,"4.2-4.3":0.02597,"4.4":0,"4.4.3-4.4.4":0.05714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01376,"11":0.29822,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01547,"11":0},L:{"0":42.85243},S:{"2.5":0},R:{_:"0"},M:{"0":0.20021},Q:{"10.4":0},O:{"0":0.08117},H:{"0":0.24077}}; 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 13c1bae55118143..fee0efa67b20f01 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:{"52":0.05243,"59":0.0035,"68":0.00699,"69":0.00699,"78":0.00699,"79":0.01049,"81":0.00699,"82":0.00699,"86":0.0035,"87":0.00699,"88":0.00699,"91":0.01398,"96":0.0035,"98":0.01049,"99":0.03146,"100":0.00699,"101":0.0734,"102":2.38359,"103":0.16077,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 70 71 72 73 74 75 76 77 80 83 84 85 89 90 92 93 94 95 97 104 105 3.5 3.6"},D:{"34":0.00699,"38":0.02097,"49":0.05243,"53":0.02447,"58":0.01748,"62":0.0035,"67":0.00699,"68":0.02447,"69":0.01398,"70":0.01049,"73":0.0035,"75":0.00699,"78":0.01049,"79":0.26562,"80":0.02447,"83":0.03146,"84":0.13631,"85":0.04194,"86":0.02796,"87":0.05592,"88":0.01398,"89":0.03495,"90":0.01398,"91":0.00699,"92":0.03845,"93":0.02447,"94":0.01049,"95":0.01748,"96":0.16776,"97":0.06641,"98":0.08039,"99":0.1433,"100":0.0699,"101":0.59415,"102":2.33816,"103":21.56066,"104":0.02796,"105":0.0035,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 63 64 65 66 71 72 74 76 77 81 106"},F:{"28":0.02097,"40":0.0035,"42":0.0035,"46":0.01049,"68":0.13631,"85":0.05942,"86":0.05592,"87":0.04893,"88":0.79686,"89":0.34251,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00699,"84":0.01398,"92":0.02447,"97":0.00699,"99":0.0035,"101":0.00699,"102":0.08738,"103":1.60071,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 98 100"},E:{"4":0,"13":0.00699,"14":0.0699,"15":0.01049,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.01398,"11.1":0.01049,"12.1":0.00699,"13.1":0.0699,"14.1":0.18873,"15.1":0.06291,"15.2-15.3":0.02796,"15.4":0.22718,"15.5":0.71298,"15.6":0.02796},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00176,"7.0-7.1":0.02994,"8.1-8.4":0.00528,"9.0-9.2":0,"9.3":0.04756,"10.0-10.2":0,"10.3":0.12858,"11.0-11.2":0.01409,"11.3-11.4":0.03347,"12.0-12.1":0.02642,"12.2-12.5":0.35405,"13.0-13.1":0.00352,"13.2":0.00705,"13.3":0.0458,"13.4-13.7":0.14268,"14.0-14.4":0.54076,"14.5-14.8":1.80371,"15.0-15.1":0.2695,"15.2-15.3":0.61474,"15.4":1.27704,"15.5":11.8844,"16.0":0.09512},P:{"4":0.23585,"5.0-5.4":0.04074,"6.2-6.4":0.23191,"7.2-7.4":0.04102,"8.2":0.01034,"9.2":0.06111,"10.1":0.03025,"11.1-11.2":0.09229,"12.0":0.02051,"13.0":0.07178,"14.0":0.1128,"15.0":0.04102,"16.0":0.16407,"17.0":2.63534},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00338,"4.2-4.3":0.00078,"4.4":0,"4.4.3-4.4.4":0.02186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04194,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.20819},Q:{"10.4":0},O:{"0":0.01952},H:{"0":0.23406},L:{"0":44.73726}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01775,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00355,"69":0.00355,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00355,"79":0.00355,"80":0,"81":0.00355,"82":0.00355,"83":0,"84":0,"85":0,"86":0,"87":0.00355,"88":0.00355,"89":0,"90":0,"91":0.0071,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00355,"99":0.01065,"100":0.00355,"101":0.0284,"102":0.9017,"103":0.06745,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00355,"35":0,"36":0,"37":0,"38":0.0071,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01775,"50":0,"51":0,"52":0,"53":0.01065,"54":0,"55":0,"56":0,"57":0,"58":0.0071,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00355,"68":0.0071,"69":0.00355,"70":0.00355,"71":0,"72":0,"73":0,"74":0,"75":0.00355,"76":0,"77":0,"78":0.00355,"79":0.0923,"80":0.0071,"81":0.0071,"83":0.0142,"84":0.0497,"85":0.0142,"86":0.01065,"87":0.01775,"88":0.00355,"89":0.0142,"90":0.0071,"91":0.00355,"92":0.0213,"93":0.0071,"94":0.00355,"95":0.0071,"96":0.06035,"97":0.02485,"98":0.0284,"99":0.0568,"100":0.02485,"101":0.213,"102":0.83425,"103":7.68575,"104":0.01065,"105":0.00355,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0071,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00355,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00355,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0142,"64":0,"65":0,"66":0,"67":0,"68":0.0497,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0213,"86":0.0213,"87":0.01775,"88":0.284,"89":0.1207,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00355,"79":0,"80":0,"81":0,"83":0,"84":0.00355,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0071,"93":0,"94":0,"95":0,"96":0,"97":0.00355,"98":0,"99":0,"100":0,"101":0.00355,"102":0.03195,"103":0.5751,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00355,"14":0.02485,"15":0.00355,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00355,"11.1":0.00355,"12.1":0.00355,"13.1":0.02485,"14.1":0.06745,"15.1":0.0213,"15.2-15.3":0.01065,"15.4":0.08165,"15.5":0.25205,"15.6":0.01065,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00244,"7.0-7.1":0.04146,"8.1-8.4":0.00732,"9.0-9.2":0,"9.3":0.06585,"10.0-10.2":0,"10.3":0.17804,"11.0-11.2":0.01951,"11.3-11.4":0.04634,"12.0-12.1":0.03658,"12.2-12.5":0.49021,"13.0-13.1":0.00488,"13.2":0.00976,"13.3":0.06341,"13.4-13.7":0.19755,"14.0-14.4":0.74874,"14.5-14.8":2.49741,"15.0-15.1":0.37315,"15.2-15.3":0.85117,"15.4":1.76819,"15.5":16.45511,"16.0":0.1317},P:{"4":0.24398,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04066,"8.2":0,"9.2":0.01017,"10.1":0,"11.1-11.2":0.10166,"12.0":0.0305,"13.0":0.07116,"14.0":0.11183,"15.0":0.04066,"16.0":0.16266,"17.0":2.57199,"18.0":0.02033},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01028,"4.2-4.3":0.00237,"4.4":0,"4.4.3-4.4.4":0.0664},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0142,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.4396},S:{"2.5":0},R:{_:"0"},M:{"0":0.2064},Q:{"10.4":0},O:{"0":0.01935},H:{"0":0.23204}}; 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 d56ddc04c75f664..2e0033bdce42131 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:{"30":0.00463,"41":0.00463,"43":0.01388,"47":0.01388,"48":0.01388,"49":0.00925,"52":0.08788,"56":0.02313,"58":0.01388,"66":0.00463,"67":0.00463,"68":0.01388,"72":0.06013,"74":0.00925,"75":0.00463,"78":0.1295,"79":0.00925,"81":0.04163,"82":0.00463,"84":0.00925,"85":0.01388,"87":0.01388,"88":0.02313,"89":0.037,"91":0.111,"92":0.02313,"93":0.0185,"94":0.02775,"95":0.037,"96":0.0185,"97":0.03238,"98":0.02775,"99":0.0925,"100":0.09713,"101":0.296,"102":4.72675,"103":0.48563,"104":0.01388,_:"2 3 4 5 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 42 44 45 46 50 51 53 54 55 57 59 60 61 62 63 64 65 69 70 71 73 76 77 80 83 86 90 105 3.5 3.6"},D:{"11":0.074,"32":0.00925,"33":0.00463,"42":0.00463,"43":0.01388,"49":0.06475,"51":0.00463,"53":0.01388,"55":0.00463,"57":0.01388,"58":0.00925,"59":0.00925,"60":0.01388,"62":0.04163,"64":0.02313,"65":0.00463,"67":0.00925,"68":0.00463,"69":0.02313,"70":0.00925,"71":0.0185,"72":0.00925,"74":0.06013,"75":0.00463,"76":0.00925,"77":0.00925,"78":0.01388,"79":0.0185,"80":0.03238,"81":0.0925,"83":0.03238,"84":0.00925,"85":0.01388,"86":0.148,"87":0.10638,"88":0.074,"89":0.18963,"90":0.06475,"91":0.11563,"92":0.06013,"93":0.111,"94":0.037,"95":0.06013,"96":0.111,"97":0.13413,"98":0.10638,"99":0.185,"100":0.22663,"101":0.30063,"102":0.999,"103":19.15675,"104":0.00925,"105":0.03238,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 37 38 39 40 41 44 45 46 47 48 50 52 54 56 61 63 66 73 106"},F:{"42":0.00463,"53":0.037,"64":0.04625,"71":0.00463,"76":0.00463,"79":0.04625,"80":0.00463,"81":0.01388,"82":0.03238,"83":0.01388,"84":0.00925,"85":0.04625,"86":0.0925,"87":0.02775,"88":0.57813,"89":0.37,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 72 73 74 75 77 78 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02313,"14":0.0185,"15":0.00463,"17":0.03238,"18":0.04163,"84":0.01388,"85":0.00925,"89":0.00925,"90":0.01388,"92":0.02775,"97":0.00925,"98":0.0185,"99":0.01388,"100":0.02313,"101":0.05088,"102":0.05088,"103":2.44663,_:"13 16 79 80 81 83 86 87 88 91 93 94 95 96"},E:{"4":0,"12":0.00463,"14":0.02775,"15":0.01388,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.02775,"12.1":0.06475,"13.1":0.04625,"14.1":0.06938,"15.1":0.00463,"15.2-15.3":0.00925,"15.4":0.02775,"15.5":0.148,"15.6":0.00925},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.02293,"5.0-5.1":0.00116,"6.0-6.1":0,"7.0-7.1":0.02664,"8.1-8.4":0.00023,"9.0-9.2":0.00093,"9.3":0.02293,"10.0-10.2":0.00185,"10.3":0.06092,"11.0-11.2":0.00301,"11.3-11.4":0.00602,"12.0-12.1":0.0176,"12.2-12.5":0.26359,"13.0-13.1":0.01459,"13.2":0.00232,"13.3":0.01506,"13.4-13.7":0.04633,"14.0-14.4":0.1355,"14.5-14.8":0.18808,"15.0-15.1":0.12068,"15.2-15.3":0.10794,"15.4":0.13481,"15.5":1.07104,"16.0":0.01529},P:{"4":0.03382,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.04132,"8.2":0.02059,"9.2":0.09786,"10.1":0.02255,"11.1-11.2":0.06142,"12.0":0.03382,"13.0":0.07892,"14.0":0.02255,"15.0":0.02255,"16.0":0.12402,"17.0":0.47354},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00129,"2.3":0,"4.1":0.01643,"4.2-4.3":0.02158,"4.4":0,"4.4.3-4.4.4":0.11661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00463,"9":0.0185,"11":0.04625,_:"6 7 10 5.5"},J:{"7":0,"10":0.0215},N:{"11":0.02718,_:"10"},S:{"2.5":0.1344},R:{_:"0"},M:{"0":0.27955},Q:{"10.4":0.01075},O:{"0":1.22573},H:{"0":3.25738},L:{"0":56.94017}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00467,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00467,"40":0,"41":0.00467,"42":0,"43":0.00467,"44":0,"45":0,"46":0,"47":0.00935,"48":0.00935,"49":0.00467,"50":0,"51":0,"52":0.04206,"53":0,"54":0,"55":0,"56":0.01402,"57":0,"58":0.00467,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00467,"67":0,"68":0.02337,"69":0,"70":0,"71":0,"72":0.02804,"73":0,"74":0.00467,"75":0,"76":0,"77":0,"78":0.06075,"79":0.00467,"80":0,"81":0.02337,"82":0.00467,"83":0,"84":0.00467,"85":0.00935,"86":0,"87":0.00935,"88":0.00935,"89":0.01869,"90":0,"91":0.0514,"92":0.00935,"93":0.00935,"94":0.01402,"95":0.01869,"96":0.01869,"97":0.02337,"98":0.02337,"99":0.04673,"100":0.0514,"101":0.14954,"102":2.24771,"103":0.22898,"104":0.00935,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03271,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.00467,"33":0.00467,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00467,"41":0,"42":0.00935,"43":0.00935,"44":0,"45":0,"46":0.01402,"47":0,"48":0,"49":0.02804,"50":0,"51":0,"52":0,"53":0.00467,"54":0,"55":0.01402,"56":0.00467,"57":0.00935,"58":0.00467,"59":0.00467,"60":0.00467,"61":0.00467,"62":0.01869,"63":0,"64":0.01402,"65":0.00467,"66":0.02337,"67":0.00467,"68":0.00467,"69":0.00935,"70":0.00467,"71":0.00935,"72":0.00467,"73":0,"74":0.02804,"75":0.00467,"76":0.00467,"77":0.00467,"78":0.00935,"79":0.00935,"80":0.01402,"81":0.0514,"83":0.01402,"84":0.00467,"85":0.00467,"86":0.0701,"87":0.0514,"88":0.03738,"89":0.08879,"90":0.03271,"91":0.05608,"92":0.02804,"93":0.0514,"94":0.01869,"95":0.0514,"96":0.0514,"97":0.06075,"98":0.0514,"99":0.08879,"100":0.10748,"101":0.14019,"102":0.4673,"103":8.96749,"104":0.00467,"105":0.01402,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0.00467,"19":0,"20":0.04206,"21":0,"22":0,"23":0,"24":0.00467,"25":0,"26":0,"27":0.00467,"28":0.00935,"29":0,"30":0.00467,"31":0,"32":0,"33":0,"34":0,"35":0.00467,"36":0,"37":0.03738,"38":0.01402,"39":0,"40":0,"41":0,"42":0.00935,"43":0,"44":0,"45":0,"46":0.00467,"47":0,"48":0,"49":0,"50":0.00467,"51":0.00467,"52":0,"53":0.01869,"54":0.00467,"55":0,"56":0,"57":0.00467,"58":0.01869,"60":0.06542,"62":0,"63":0.16356,"64":0.03271,"65":0,"66":0,"67":0,"68":0,"69":0.00935,"70":0,"71":0.00467,"72":0,"73":0,"74":0,"75":0,"76":0.00467,"77":0,"78":0,"79":0.02337,"80":0.00467,"81":0.00467,"82":0.01402,"83":0.00467,"84":0.00467,"85":0.02337,"86":0.04206,"87":0.01402,"88":0.27103,"89":0.1729,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00935},B:{"12":0.00935,"13":0,"14":0.00935,"15":0.01402,"16":0,"17":0.01402,"18":0.01869,"79":0,"80":0,"81":0,"83":0,"84":0.00467,"85":0.00467,"86":0,"87":0,"88":0,"89":0.00467,"90":0.00467,"91":0,"92":0.01402,"93":0,"94":0,"95":0,"96":0,"97":0.00467,"98":0.00935,"99":0.00467,"100":0.00935,"101":0.02337,"102":0.02804,"103":1.14956,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00467,"13":0,"14":0.01402,"15":0.00467,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01402,"12.1":0.02804,"13.1":0.02337,"14.1":0.03271,"15.1":0.00467,"15.2-15.3":0.00467,"15.4":0.01402,"15.5":0.0701,"15.6":0.00467,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03579,"5.0-5.1":0.00181,"6.0-6.1":0,"7.0-7.1":0.04158,"8.1-8.4":0.00036,"9.0-9.2":0.00145,"9.3":0.03579,"10.0-10.2":0.00289,"10.3":0.09508,"11.0-11.2":0.0047,"11.3-11.4":0.0094,"12.0-12.1":0.02748,"12.2-12.5":0.41141,"13.0-13.1":0.02278,"13.2":0.00362,"13.3":0.0235,"13.4-13.7":0.0723,"14.0-14.4":0.21149,"14.5-14.8":0.29356,"15.0-15.1":0.18835,"15.2-15.3":0.16847,"15.4":0.21041,"15.5":1.67168,"16.0":0.02386},P:{"4":0.05156,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0.01031,"10.1":0.03094,"11.1-11.2":0.01031,"12.0":0.03094,"13.0":0.07219,"14.0":0.02063,"15.0":0.02063,"16.0":0.11344,"17.0":0.43313,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0.00244,"2.3":0,"4.1":0.03105,"4.2-4.3":0.04079,"4.4":0,"4.4.3-4.4.4":0.2204},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00467,"9":0.00935,"10":0,"11":0.02337,"5.5":0},J:{"7":0,"10":0.02131},N:{"10":0,"11":0},L:{"0":71.06485},S:{"2.5":0.13318},R:{_:"0"},M:{"0":0.277},Q:{"10.4":0.01065},O:{"0":1.21456},H:{"0":3.22769}}; 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 81908217c5b111e..fe9f5205247ccb3 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:{"85":0.00488,"87":0.00488,"99":0.00488,"100":0.01952,"101":0.00976,"102":0.44417,"103":0.00488,"104":0.00488,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 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 86 88 89 90 91 92 93 94 95 96 97 98 105 3.5 3.6"},D:{"53":0.00488,"67":0.05369,"73":0.54667,"75":0.03905,"77":0.04393,"79":0.0781,"80":0.12691,"87":0.01952,"90":0.00976,"91":0.00976,"92":0.08786,"93":0.12691,"94":0.00488,"96":0.00488,"99":0.04393,"100":0.05369,"101":1.39597,"102":0.39536,"103":31.24328,"104":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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 74 76 78 81 83 84 85 86 88 89 95 97 98 105 106"},F:{"88":0.03417,"89":0.02929,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00488,"14":0.00488,"16":0.00976,"17":0.00976,"84":0.02441,"89":0.00488,"98":0.00488,"100":0.00488,"101":0.20988,"102":0.03417,"103":4.01218,_:"13 15 18 79 80 81 83 85 86 87 88 90 91 92 93 94 95 96 97 99"},E:{"4":0,"12":0.00488,"13":0.00976,"14":1.72787,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.43441,"13.1":1.20561,"14.1":0.19036,"15.1":0.05857,"15.2-15.3":0.05369,"15.4":0.06345,"15.5":1.75716,"15.6":0.03417},G:{"8":0,"3.2":0,"4.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.87803,"10.0-10.2":0,"10.3":0.23792,"11.0-11.2":0.05098,"11.3-11.4":0,"12.0-12.1":0.05098,"12.2-12.5":0.19118,"13.0-13.1":0,"13.2":0.04107,"13.3":0.00991,"13.4-13.7":0.3328,"14.0-14.4":0.8143,"14.5-14.8":0.76332,"15.0-15.1":2.90881,"15.2-15.3":0.67693,"15.4":0.96441,"15.5":5.8417,"16.0":0.01558},P:{"4":0.12588,"5.0-5.4":0.01034,"6.2-6.4":0.02067,"7.2-7.4":0.04117,"8.2":0.01034,"9.2":0.04135,"10.1":0.02255,"11.1-11.2":0.03147,"12.0":0.01049,"13.0":0.04117,"14.0":0.01029,"15.0":0.01029,"16.0":0.03088,"17.0":5.82587},I:{"0":0,"3":0,"4":0.01331,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03328,"4.4":0,"4.4.3-4.4.4":0.01997},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02441,"11":0.00488,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.06656},Q:{"10.4":0},O:{"0":0.40448},H:{"0":0},L:{"0":33.91337}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00502,"86":0,"87":0.00502,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00502,"100":0.01005,"101":0.00502,"102":0.22608,"103":0.00502,"104":0.00502,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00502,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.0201,"64":0,"65":0,"66":0,"67":0.02512,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.27632,"74":0,"75":0.0201,"76":0,"77":0.02512,"78":0,"79":0.04019,"80":0.06531,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0.01005,"88":0,"89":0,"90":0.00502,"91":0.00502,"92":0.04522,"93":0.06531,"94":0.00502,"95":0,"96":0.00502,"97":0,"98":0,"99":0.02512,"100":0.02512,"101":0.70336,"102":0.19594,"103":15.87082,"104":0.00502,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01507,"89":0.01507,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00502,"13":0,"14":0.00502,"15":0,"16":0.00502,"17":0.00502,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.01005,"85":0,"86":0,"87":0,"88":0,"89":0.00502,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00502,"99":0,"100":0.00502,"101":0.1055,"102":0.02512,"103":2.02467,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00502,"13":0.00502,"14":0.86915,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.21603,"13.1":0.6079,"14.1":0.09546,"15.1":0.03014,"15.2-15.3":0.02512,"15.4":0.03014,"15.5":0.8792,"15.6":0.01507,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":1.36271,"10.0-10.2":0,"10.3":0.36925,"11.0-11.2":0.07913,"11.3-11.4":0,"12.0-12.1":0.07913,"12.2-12.5":0.29672,"13.0-13.1":0,"13.2":0.06374,"13.3":0.01539,"13.4-13.7":0.51651,"14.0-14.4":1.26381,"14.5-14.8":1.18468,"15.0-15.1":4.51454,"15.2-15.3":1.05061,"15.4":1.49679,"15.5":9.06644,"16.0":0.02418},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.03092,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01031,"12.0":0,"13.0":0.04122,"14.0":0.01031,"15.0":0.01031,"16.0":0.03092,"17.0":5.65808,"18.0":0},I:{"0":0,"3":0,"4":0.05012,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.12529,"4.4":0,"4.4.3-4.4.4":0.07517},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01005,"9":0,"10":0,"11":0.00502,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":45.67634},S:{"2.5":0},R:{_:"0"},M:{"0":0.06469},Q:{"10.4":0},O:{"0":0.3931},H:{"0":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 10ab9c8f53d75c0..e4d6dfe0b4510e4 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.02929,"47":0.01302,"48":0.00325,"51":0.02278,"52":0.12365,"56":0.01302,"61":0.00651,"65":0.01302,"68":0.01952,"72":0.01627,"78":0.00976,"80":0.00325,"81":0.01952,"82":0.00976,"83":0.01627,"84":0.00651,"88":0.00325,"91":0.03905,"92":0.00651,"93":0.00325,"94":0.01302,"98":0.00325,"99":0.04556,"100":0.00976,"101":0.11064,"102":1.64002,"103":0.20175,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 53 54 55 57 58 59 60 62 63 64 66 67 69 70 71 73 74 75 76 77 79 85 86 87 89 90 95 96 97 104 105 3.5 3.6"},D:{"38":0.00976,"47":0.07484,"49":0.07484,"53":0.00976,"55":0.00325,"56":0.00325,"58":0.01302,"59":0.00976,"63":0.0423,"64":0.01627,"65":0.00325,"66":0.00325,"68":0.00976,"69":0.03254,"70":0.00325,"71":0.00325,"72":0.02278,"73":0.01302,"74":0.03254,"75":0.00325,"76":0.01952,"79":0.18548,"80":0.00976,"81":0.00976,"83":0.04881,"84":0.11064,"85":0.08135,"86":0.10413,"87":0.10087,"88":0.00976,"89":0.00651,"90":0.02603,"91":0.01627,"92":0.02603,"93":0.01627,"94":0.01627,"95":0.02278,"96":0.03254,"97":0.03254,"98":0.03254,"99":0.04556,"100":0.08135,"101":0.14643,"102":0.97295,"103":22.08164,"104":0.01627,"105":0.00651,_:"4 5 6 7 8 9 10 11 12 13 14 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 57 60 61 62 67 77 78 106"},F:{"28":0.00651,"36":0.00651,"40":0.00325,"46":0.00651,"68":0.00976,"69":0.01302,"70":0.01302,"71":0.00976,"73":0.01302,"84":0.00325,"85":0.02278,"86":0.00325,"87":0.02603,"88":0.8981,"89":0.39048,_:"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 72 74 75 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01302},B:{"18":0.00651,"84":0.02278,"85":0.00651,"86":0.00976,"92":0.00651,"97":0.00325,"99":0.00325,"101":0.01952,"102":0.03905,"103":1.62375,_:"12 13 14 15 16 17 79 80 81 83 87 88 89 90 91 93 94 95 96 98 100"},E:{"4":0,"13":0.00325,"14":0.01627,"15":0.00651,_:"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.01302,"12.1":0.00651,"13.1":0.01952,"14.1":0.06833,"15.1":0.02278,"15.2-15.3":0.01627,"15.4":0.0423,"15.5":0.2831,"15.6":0.01952,"16.0":0.00325},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01997,"8.1-8.4":0,"9.0-9.2":0.00307,"9.3":0.02304,"10.0-10.2":0.00154,"10.3":0.03226,"11.0-11.2":0.01229,"11.3-11.4":0.00922,"12.0-12.1":0.01382,"12.2-12.5":0.50381,"13.0-13.1":0.00461,"13.2":0.00922,"13.3":0.09216,"13.4-13.7":0.13517,"14.0-14.4":0.36711,"14.5-14.8":1.39009,"15.0-15.1":0.24423,"15.2-15.3":0.52071,"15.4":0.85556,"15.5":10.69984,"16.0":0.10138},P:{"4":0.15355,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.04132,"8.2":0.02059,"9.2":0.09786,"10.1":0.0834,"11.1-11.2":0.06142,"12.0":0.02047,"13.0":0.06142,"14.0":0.06142,"15.0":0.03071,"16.0":0.12284,"17.0":2.15997},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03118,"4.2-4.3":0.00746,"4.4":0,"4.4.3-4.4.4":0.00859},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01627,"11":0.10413,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.13494},Q:{"10.4":0},O:{"0":0.01349},H:{"0":0.17247},L:{"0":50.65859}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00984,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00328,"48":0,"49":0,"50":0,"51":0.00656,"52":0.03936,"53":0,"54":0,"55":0,"56":0.00328,"57":0,"58":0,"59":0,"60":0,"61":0.00328,"62":0,"63":0,"64":0,"65":0.00328,"66":0,"67":0,"68":0.00656,"69":0,"70":0,"71":0,"72":0.00656,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00328,"79":0,"80":0,"81":0.00656,"82":0.00328,"83":0.00656,"84":0.00328,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01312,"92":0.00328,"93":0,"94":0.00328,"95":0,"96":0,"97":0,"98":0,"99":0.0164,"100":0.00328,"101":0.03936,"102":0.57072,"103":0.06888,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00328,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.02624,"48":0,"49":0.02296,"50":0,"51":0,"52":0,"53":0.00328,"54":0,"55":0,"56":0,"57":0,"58":0.00328,"59":0.00328,"60":0,"61":0,"62":0,"63":0.01312,"64":0.00328,"65":0,"66":0,"67":0,"68":0.00328,"69":0.00984,"70":0,"71":0,"72":0.00656,"73":0.00328,"74":0.00984,"75":0,"76":0.00656,"77":0,"78":0,"79":0.06232,"80":0.00328,"81":0.0164,"83":0.0164,"84":0.03608,"85":0.02624,"86":0.03608,"87":0.0328,"88":0.00328,"89":0.00328,"90":0.00984,"91":0.00656,"92":0.0164,"93":0.00656,"94":0.00656,"95":0.01312,"96":0.00984,"97":0.00984,"98":0.00984,"99":0.0164,"100":0.02952,"101":0.0492,"102":0.32472,"103":7.27832,"104":0.00328,"105":0.00328,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00328,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00328,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00328,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00328,"64":0,"65":0,"66":0,"67":0,"68":0.00328,"69":0.00328,"70":0.00656,"71":0.00328,"72":0,"73":0.00328,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00656,"86":0,"87":0.00984,"88":0.2952,"89":0.12792,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00328},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00328,"79":0,"80":0,"81":0,"83":0,"84":0.00656,"85":0.00328,"86":0.00328,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00328,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00656,"102":0.0164,"103":0.5412,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00328,"15":0.00328,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00328,"12.1":0.00328,"13.1":0.00656,"14.1":0.02296,"15.1":0.00656,"15.2-15.3":0.00656,"15.4":0.01312,"15.5":0.09184,"15.6":0.00656,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02686,"8.1-8.4":0,"9.0-9.2":0.00413,"9.3":0.03099,"10.0-10.2":0.00207,"10.3":0.04339,"11.0-11.2":0.01653,"11.3-11.4":0.0124,"12.0-12.1":0.0186,"12.2-12.5":0.67771,"13.0-13.1":0.0062,"13.2":0.0124,"13.3":0.12397,"13.4-13.7":0.18183,"14.0-14.4":0.49382,"14.5-14.8":1.86991,"15.0-15.1":0.32853,"15.2-15.3":0.70044,"15.4":1.15087,"15.5":14.39315,"16.0":0.13637},P:{"4":0.16376,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.06141,"12.0":0.02047,"13.0":0.07165,"14.0":0.06141,"15.0":0.03071,"16.0":0.11259,"17.0":2.13913,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06355,"4.2-4.3":0.0152,"4.4":0,"4.4.3-4.4.4":0.0175},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00656,"10":0,"11":0.0328,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.24592},S:{"2.5":0},R:{_:"0"},M:{"0":0.1344},Q:{"10.4":0},O:{"0":0.01344},H:{"0":0.17178}}; 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 f4703c5d2f82ac4..86251be67a434f3 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:{"34":0.00492,"52":0.00738,"57":0.00492,"72":0.00984,"78":0.00246,"89":0.01231,"91":0.01477,"93":0.00246,"97":0.00246,"99":0.50943,"100":0.01231,"101":0.09844,"102":1.74977,"103":0.20672,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 92 94 95 96 98 104 105 3.5 3.6"},D:{"27":0.00246,"33":0.00738,"55":0.00246,"58":0.00246,"63":0.00246,"64":0.00984,"65":0.00246,"70":0.00738,"73":0.00246,"74":0.01231,"76":0.06153,"79":0.01231,"80":0.00492,"83":0.00738,"84":0.00492,"86":0.00492,"87":0.0443,"88":0.00492,"89":0.00492,"90":0.00492,"91":0.01477,"92":0.00738,"93":0.07629,"94":0.00984,"95":0.00492,"96":0.02953,"97":0.00738,"98":0.00492,"99":0.02461,"100":0.01477,"101":0.04676,"102":0.43314,"103":11.958,"104":0.00246,"105":0.00246,_:"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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 59 60 61 62 66 67 68 69 71 72 75 77 78 81 85 106"},F:{"79":0.00492,"81":0.02953,"85":0.01231,"86":0.00246,"87":0.00492,"88":0.08121,"89":0.07383,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01477,"13":0.00738,"14":0.00738,"15":0.00738,"16":0.00492,"17":0.01969,"18":0.20426,"84":0.00492,"85":0.00492,"88":0.00984,"89":0.03692,"90":0.00738,"92":0.02461,"96":0.00246,"97":0.00738,"98":0.00984,"99":0.00738,"100":0.00492,"101":0.06645,"102":0.0566,"103":3.66689,_:"79 80 81 83 86 87 91 93 94 95"},E:{"4":0,"13":0.00492,"14":0.05168,"15":0.00984,_:"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.00246,"12.1":0.00246,"13.1":0.02215,"14.1":0.01969,"15.1":0.00738,"15.2-15.3":0.00246,"15.4":0.01231,"15.5":0.13536,"15.6":0.01231,"16.0":0.00246},G:{"8":0.00513,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01281,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0346,"10.0-10.2":0,"10.3":0.05638,"11.0-11.2":0.03716,"11.3-11.4":0.00384,"12.0-12.1":0.05638,"12.2-12.5":1.28018,"13.0-13.1":0.01922,"13.2":0.00897,"13.3":0.75222,"13.4-13.7":0.07817,"14.0-14.4":1.11871,"14.5-14.8":1.28402,"15.0-15.1":1.94013,"15.2-15.3":0.47927,"15.4":0.82526,"15.5":4.29674,"16.0":0.22554},P:{"4":0.20673,"5.0-5.4":0.01034,"6.2-6.4":0.02067,"7.2-7.4":0.20673,"8.2":0.01034,"9.2":0.04135,"10.1":0.02255,"11.1-11.2":0.04135,"12.0":0.03382,"13.0":0.08269,"14.0":0.16538,"15.0":0.12404,"16.0":0.29975,"17.0":1.07497},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00218,"4.2-4.3":0.00272,"4.4":0,"4.4.3-4.4.4":0.09311},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01231,"11":0.06399,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01508},N:{"11":0.02718,_:"10"},S:{"2.5":0.04523},R:{_:"0"},M:{"0":0.09801},Q:{"10.4":0.02262},O:{"0":1.89983},H:{"0":1.22764},L:{"0":61.11577}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00248,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00248,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00248,"90":0,"91":0.00495,"92":0,"93":0.00248,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.12623,"100":0.00495,"101":0.02475,"102":0.44798,"103":0.05198,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00248,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00248,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00248,"71":0,"72":0,"73":0,"74":0.00248,"75":0,"76":0.01485,"77":0,"78":0,"79":0.00248,"80":0,"81":0.00495,"83":0.00248,"84":0,"85":0,"86":0.00248,"87":0.0099,"88":0.00248,"89":0.00248,"90":0,"91":0.00495,"92":0.00495,"93":0.0198,"94":0.00248,"95":0.00248,"96":0.00743,"97":0.00248,"98":0.00248,"99":0.00495,"100":0.00248,"101":0.01238,"102":0.10643,"103":2.96258,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0297,"60":0.0297,"62":0,"63":0.09405,"64":0.00248,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00743,"82":0,"83":0,"84":0,"85":0.00248,"86":0,"87":0.00248,"88":0.0198,"89":0.01733,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00495,"13":0.00248,"14":0.00248,"15":0.00248,"16":0,"17":0.00495,"18":0.05198,"79":0,"80":0,"81":0,"83":0,"84":0.00248,"85":0,"86":0,"87":0,"88":0.00248,"89":0.0099,"90":0.00248,"91":0,"92":0.00495,"93":0,"94":0,"95":0,"96":0,"97":0.00248,"98":0.00248,"99":0.00248,"100":0.00248,"101":0.01733,"102":0.01485,"103":0.91328,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00248,"14":0.01238,"15":0.00248,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00495,"14.1":0.00495,"15.1":0.00248,"15.2-15.3":0,"15.4":0.00248,"15.5":0.03465,"15.6":0.00248,"16.0":0},G:{"8":0.0065,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01625,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04387,"10.0-10.2":0,"10.3":0.07149,"11.0-11.2":0.04712,"11.3-11.4":0.00487,"12.0-12.1":0.07149,"12.2-12.5":1.62313,"13.0-13.1":0.02437,"13.2":0.01137,"13.3":0.95373,"13.4-13.7":0.09911,"14.0-14.4":1.41841,"14.5-14.8":1.62801,"15.0-15.1":2.45989,"15.2-15.3":0.60766,"15.4":1.04635,"15.5":5.44782,"16.0":0.28596},P:{"4":0.20449,"5.0-5.4":0.02045,"6.2-6.4":0.02045,"7.2-7.4":0.20449,"8.2":0.01022,"9.2":0.0409,"10.1":0,"11.1-11.2":0.05112,"12.0":0.01022,"13.0":0.09202,"14.0":0.16359,"15.0":0.12269,"16.0":0.28629,"17.0":1.05313,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0041,"4.2-4.3":0.00512,"4.4":0,"4.4.3-4.4.4":0.17523},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00248,"10":0,"11":0.01733,"5.5":0},J:{"7":0,"10":0.01505},N:{"10":0,"11":0},L:{"0":71.60703},S:{"2.5":0.04515},R:{_:"0"},M:{"0":0.09783},Q:{"10.4":0.02258},O:{"0":1.8963},H:{"0":1.22536}}; 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 48f286666e600db..03e72924a3bf923 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js @@ -1 +1 @@ -module.exports={C:{"29":0.00305,"30":0.00609,"36":0.00609,"40":0.00609,"41":0.00609,"42":0.00305,"43":0.00609,"44":0.00305,"45":0.00305,"47":0.00914,"48":0.00305,"49":0.00305,"52":0.00914,"56":0.00914,"57":0.01218,"60":0.11571,"61":0.00305,"62":0.00305,"66":0.10353,"67":0.00305,"70":0.00305,"72":0.02436,"76":0.00305,"77":0.00609,"78":0.03045,"81":0.00305,"82":0.00305,"84":0.00914,"85":0.00305,"87":0.00305,"88":0.01523,"89":0.09135,"90":0.00305,"91":0.02436,"92":0.01218,"93":0.01218,"94":0.01827,"95":0.01523,"96":0.0335,"97":0.01218,"98":0.01218,"99":0.02741,"100":0.03959,"101":0.17052,"102":2.38119,"103":0.40499,"104":0.01523,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 35 37 38 39 46 50 51 53 54 55 58 59 63 64 65 68 69 71 73 74 75 79 80 83 86 105 3.5 3.6"},D:{"31":0.00305,"32":0.00914,"38":0.02436,"43":0.00305,"49":0.01218,"53":0.0335,"56":0.00609,"61":0.00914,"62":0.01827,"63":0.01218,"65":0.01218,"67":0.02132,"68":0.00305,"69":0.01218,"70":0.00914,"71":0.02741,"72":0.00305,"74":0.02741,"75":0.00305,"76":0.01218,"77":0.01218,"78":0.00609,"79":0.07308,"80":0.01827,"81":0.01523,"83":0.00914,"84":0.00914,"85":0.00914,"86":0.01827,"87":0.03045,"88":0.0335,"89":0.04263,"90":0.07917,"91":0.0335,"92":0.07917,"93":0.00914,"94":0.01827,"95":0.01523,"96":0.04263,"97":0.05177,"98":0.03045,"99":0.03045,"100":0.07308,"101":0.09744,"102":0.53592,"103":16.56176,"104":0.02436,"105":0.00609,_:"4 5 6 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 44 45 46 47 48 50 51 52 54 55 57 58 59 60 64 66 73 106"},F:{"36":0.00609,"46":0.00914,"74":0.00609,"77":0.00305,"79":0.01523,"80":0.00305,"83":0.00305,"84":0.00305,"85":0.00609,"86":0.00609,"87":0.00914,"88":0.338,"89":0.18575,_:"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 75 76 78 81 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01523,"13":0.00305,"14":0.00609,"15":0.00609,"16":0.00914,"17":0.01218,"18":0.08526,"84":0.00609,"85":0.00609,"89":0.01218,"90":0.00914,"92":0.0335,"96":0.00305,"97":0.00609,"98":0.00609,"99":0.00914,"100":0.00609,"101":0.02132,"102":0.03959,"103":2.51517,_:"79 80 81 83 86 87 88 91 93 94 95"},E:{"4":0,"11":0.00305,"12":0.00609,"13":0.02132,"14":0.13094,"15":0.04263,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02132,"11.1":0.01218,"12.1":0.0335,"13.1":0.10658,"14.1":0.20402,"15.1":0.07613,"15.2-15.3":0.03654,"15.4":0.17357,"15.5":1.29717,"15.6":0.06395,"16.0":0.00914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00162,"5.0-5.1":0.00567,"6.0-6.1":0,"7.0-7.1":0.00891,"8.1-8.4":0.01701,"9.0-9.2":0.01053,"9.3":0.04537,"10.0-10.2":0.00648,"10.3":0.10856,"11.0-11.2":0.03727,"11.3-11.4":0.01053,"12.0-12.1":0.01944,"12.2-12.5":0.4083,"13.0-13.1":0.01215,"13.2":0.00729,"13.3":0.03321,"13.4-13.7":0.09559,"14.0-14.4":0.24709,"14.5-14.8":0.45367,"15.0-15.1":0.23412,"15.2-15.3":0.32972,"15.4":0.52334,"15.5":5.11995,"16.0":0.05266},P:{"4":0.16858,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.03161,"8.2":0.01034,"9.2":0.07347,"10.1":0.02099,"11.1-11.2":0.04215,"12.0":0.02107,"13.0":0.06322,"14.0":0.02107,"15.0":0.03161,"16.0":0.09483,"17.0":1.26436},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00269,"4.2-4.3":0.00986,"4.4":0,"4.4.3-4.4.4":0.38382},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00374,"11":0.07848,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.20862},Q:{"10.4":0.04172},O:{"0":2.55907},H:{"0":0.7242},L:{"0":57.42234}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.0031,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0031,"37":0,"38":0,"39":0,"40":0.0031,"41":0.0031,"42":0,"43":0.0031,"44":0,"45":0,"46":0,"47":0.0031,"48":0,"49":0,"50":0,"51":0,"52":0.0031,"53":0,"54":0,"55":0,"56":0.0031,"57":0.0031,"58":0,"59":0,"60":0.03725,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.03104,"67":0,"68":0.0031,"69":0,"70":0,"71":0,"72":0.00621,"73":0,"74":0,"75":0,"76":0,"77":0.0031,"78":0.00931,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0031,"85":0,"86":0,"87":0,"88":0.00621,"89":0.02794,"90":0,"91":0.00931,"92":0.0031,"93":0.00621,"94":0.00621,"95":0.00621,"96":0.00931,"97":0.00621,"98":0.00621,"99":0.00931,"100":0.01862,"101":0.05898,"102":0.76669,"103":0.13037,"104":0.00621,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0031,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0.0031,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00621,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0031,"50":0,"51":0,"52":0,"53":0.00931,"54":0,"55":0,"56":0.0031,"57":0,"58":0,"59":0,"60":0,"61":0.0031,"62":0.00621,"63":0.0031,"64":0,"65":0.0031,"66":0,"67":0.00621,"68":0,"69":0.0031,"70":0.0031,"71":0.00931,"72":0,"73":0,"74":0.00931,"75":0,"76":0.0031,"77":0.0031,"78":0.0031,"79":0.02173,"80":0.00621,"81":0.00621,"83":0.0031,"84":0.0031,"85":0.0031,"86":0.00621,"87":0.00931,"88":0.01242,"89":0.01242,"90":0.02483,"91":0.00931,"92":0.03725,"93":0.0031,"94":0.00621,"95":0.00621,"96":0.01242,"97":0.01552,"98":0.00931,"99":0.00931,"100":0.02483,"101":0.03104,"102":0.17072,"103":5.14643,"104":0.00621,"105":0.0031,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0031,"37":0.00621,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0031,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0031,"60":0.0031,"62":0,"63":0.05587,"64":0.0031,"65":0.0031,"66":0,"67":0,"68":0,"69":0,"70":0.00621,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00621,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0031,"86":0.0031,"87":0.0031,"88":0.10554,"89":0.05587,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00621,"13":0,"14":0.0031,"15":0.0031,"16":0.0031,"17":0.0031,"18":0.02483,"79":0,"80":0,"81":0,"83":0,"84":0.0031,"85":0.0031,"86":0,"87":0,"88":0,"89":0.0031,"90":0.0031,"91":0,"92":0.00931,"93":0,"94":0,"95":0,"96":0,"97":0.0031,"98":0.0031,"99":0.0031,"100":0.0031,"101":0.00621,"102":0.01552,"103":0.78842,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.0031,"13":0.00621,"14":0.04035,"15":0.01242,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00621,"11.1":0.0031,"12.1":0.00931,"13.1":0.03414,"14.1":0.06208,"15.1":0.02483,"15.2-15.3":0.01242,"15.4":0.05277,"15.5":0.40352,"15.6":0.02173,"16.0":0.0031},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00221,"5.0-5.1":0.00775,"6.0-6.1":0,"7.0-7.1":0.01218,"8.1-8.4":0.02324,"9.0-9.2":0.01439,"9.3":0.06198,"10.0-10.2":0.00885,"10.3":0.14832,"11.0-11.2":0.05092,"11.3-11.4":0.01439,"12.0-12.1":0.02656,"12.2-12.5":0.55785,"13.0-13.1":0.0166,"13.2":0.00996,"13.3":0.04538,"13.4-13.7":0.13061,"14.0-14.4":0.33759,"14.5-14.8":0.61984,"15.0-15.1":0.31988,"15.2-15.3":0.45049,"15.4":0.71503,"15.5":6.99531,"16.0":0.07195},P:{"4":0.16517,"5.0-5.4":0.01032,"6.2-6.4":0,"7.2-7.4":0.03097,"8.2":0,"9.2":0.01032,"10.1":0,"11.1-11.2":0.04129,"12.0":0.02065,"13.0":0.07226,"14.0":0.03097,"15.0":0.03097,"16.0":0.09291,"17.0":1.21816,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00391,"4.2-4.3":0.01434,"4.4":0,"4.4.3-4.4.4":0.55796},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02483,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":72.06386},S:{"2.5":0},R:{_:"0"},M:{"0":0.20688},Q:{"10.4":0.04138},O:{"0":2.53773},H:{"0":0.71816}}; 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 1558e81ae08602e..4901e16d3dd41ec 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:{"52":0.01791,"78":0.00716,"87":0.01433,"88":0.03224,"89":0.02149,"90":0.00716,"91":0.02507,"92":0.00358,"93":0.00716,"94":0.00716,"96":0.02507,"99":0.01075,"100":0.01791,"101":0.08597,"102":1.14624,"103":0.12895,"104":0.01791,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 95 97 98 105 3.5 3.6"},D:{"38":0.00716,"49":0.02866,"63":0.01075,"66":0.00716,"67":0.00358,"69":0.00358,"70":0.00358,"71":0.01433,"73":0.00716,"74":0.02866,"76":0.00716,"77":0.00358,"78":0.01433,"79":0.0788,"80":0.01433,"81":0.01075,"83":0.00716,"84":0.01433,"85":0.01075,"86":0.02149,"87":0.03224,"88":0.00716,"89":0.0394,"90":0.02866,"91":0.04657,"92":0.05373,"93":0.01075,"94":0.04298,"95":0.01075,"96":0.06448,"97":0.06089,"98":0.07164,"99":0.12895,"100":0.25432,"101":0.32238,"102":1.17848,"103":22.67048,"104":0.01433,"105":0.00716,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 68 72 75 106"},F:{"28":0.02149,"36":0.00358,"46":0.01433,"79":0.00716,"85":0.01433,"86":0.00716,"87":0.0394,"88":0.84535,"89":0.28656,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01433,"84":0.00358,"90":0.00716,"92":0.01791,"98":0.00358,"99":0.00716,"100":0.01433,"101":0.02507,"102":0.05015,"103":2.22084,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97"},E:{"4":0,"9":0.00358,"13":0.02866,"14":0.11462,"15":0.07522,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00716,"12.1":0.07164,"13.1":0.07522,"14.1":0.36536,"15.1":0.09313,"15.2-15.3":0.07522,"15.4":0.20417,"15.5":1.06027,"15.6":0.03224,"16.0":0.00716},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00429,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04937,"10.0-10.2":0.01717,"10.3":0.07942,"11.0-11.2":0.0279,"11.3-11.4":0.04078,"12.0-12.1":0.01073,"12.2-12.5":0.6804,"13.0-13.1":0.0601,"13.2":0.00859,"13.3":0.08156,"13.4-13.7":0.21678,"14.0-14.4":0.74265,"14.5-14.8":1.51749,"15.0-15.1":0.78128,"15.2-15.3":1.21056,"15.4":2.18502,"15.5":13.33118,"16.0":0.09873},P:{"4":0.42778,"5.0-5.4":0.04074,"6.2-6.4":0.23191,"7.2-7.4":0.13241,"8.2":0.01034,"9.2":0.06111,"10.1":0.03025,"11.1-11.2":0.06111,"12.0":0.01019,"13.0":0.18333,"14.0":0.09167,"15.0":0.11204,"16.0":0.43796,"17.0":3.6972},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00497,"4.2-4.3":0.00662,"4.4":0,"4.4.3-4.4.4":0.09108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02149,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.2246},Q:{"10.4":0.03209},O:{"0":0.12192},H:{"0":0.17011},L:{"0":39.70319}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00723,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00362,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00723,"88":0.01085,"89":0.00723,"90":0.00362,"91":0.01085,"92":0.00362,"93":0.00362,"94":0.00362,"95":0.01447,"96":0.00723,"97":0,"98":0,"99":0.00362,"100":0.00723,"101":0.03979,"102":0.45213,"103":0.05426,"104":0.00723,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00362,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01085,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00362,"64":0,"65":0,"66":0.00362,"67":0,"68":0,"69":0,"70":0,"71":0.00362,"72":0,"73":0.00362,"74":0.01085,"75":0,"76":0.00362,"77":0.00362,"78":0.00362,"79":0.02894,"80":0.00723,"81":0.00362,"83":0.00362,"84":0.00362,"85":0.00362,"86":0.00723,"87":0.01085,"88":0.00362,"89":0.01447,"90":0.01085,"91":0.01809,"92":0.02532,"93":0.00362,"94":0.01447,"95":0.00362,"96":0.02532,"97":0.0217,"98":0.02532,"99":0.04702,"100":0.09043,"101":0.11574,"102":0.42681,"103":8.20697,"104":0.00362,"105":0.00362,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00723,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00362,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01809,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00362,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00362,"86":0.00362,"87":0.01447,"88":0.30383,"89":0.10489,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00362,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00362,"91":0,"92":0.00723,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00362,"99":0.00362,"100":0.00362,"101":0.01085,"102":0.0217,"103":0.80659,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01085,"14":0.0434,"15":0.02532,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00362,"12.1":0.02532,"13.1":0.02894,"14.1":0.13383,"15.1":0.03255,"15.2-15.3":0.02894,"15.4":0.07234,"15.5":0.3834,"15.6":0.01085,"16.0":0.00362},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00605,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06953,"10.0-10.2":0.02419,"10.3":0.11186,"11.0-11.2":0.0393,"11.3-11.4":0.05744,"12.0-12.1":0.01512,"12.2-12.5":0.95835,"13.0-13.1":0.08465,"13.2":0.01209,"13.3":0.11488,"13.4-13.7":0.30534,"14.0-14.4":1.04603,"14.5-14.8":2.1374,"15.0-15.1":1.10044,"15.2-15.3":1.70508,"15.4":3.07761,"15.5":18.77707,"16.0":0.13907},P:{"4":0.43649,"5.0-5.4":0.0406,"6.2-6.4":0,"7.2-7.4":0.12181,"8.2":0.01015,"9.2":0.0609,"10.1":0,"11.1-11.2":0.0609,"12.0":0.01015,"13.0":0.18271,"14.0":0.09136,"15.0":0.11166,"16.0":0.43649,"17.0":3.6543,"18.0":0.01015},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00949,"4.2-4.3":0.01266,"4.4":0,"4.4.3-4.4.4":0.17402},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00723,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":50.05834},S:{"2.5":0},R:{_:"0"},M:{"0":0.22341},Q:{"10.4":0.03192},O:{"0":0.12128},H:{"0":0.1692}}; 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 a68a2b1fb818a71..24e09f10ef53959 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js @@ -1 +1 @@ -module.exports={C:{"34":0.09819,"52":0.02678,"53":0.00446,"55":0.00446,"56":0.00446,"75":0.01785,"81":0.00893,"84":0.00893,"87":0.01785,"88":0.00446,"91":0.00446,"93":0.00446,"94":0.03124,"97":0.00446,"98":0.01785,"99":0.01785,"100":0.02678,"101":0.05802,"102":0.75425,"103":0.0848,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 82 83 85 86 89 90 92 95 96 104 105 3.5 3.6"},D:{"22":0.06695,"26":0.07141,"30":0.04017,"34":0.08926,"38":0.22761,"40":0.00446,"45":0.00893,"49":0.04463,"53":0.12496,"54":0.01785,"55":0.05356,"57":0.00893,"58":0.03124,"60":0.00446,"61":0.12496,"62":0.01785,"63":0.01339,"64":0.00446,"65":0.01339,"66":0.00446,"67":0.02678,"68":0.06695,"69":0.02678,"70":0.01339,"71":0.02232,"72":0.02678,"73":0.03124,"74":0.02678,"75":0.01785,"76":0.00893,"77":0.03124,"78":0.05802,"79":0.70069,"80":0.06248,"81":0.02678,"83":0.04909,"84":0.00446,"85":0.00446,"86":0.03124,"87":0.14282,"89":0.06695,"91":0.0357,"92":0.16513,"93":0.00446,"94":0.06248,"95":0.0357,"96":0.12496,"97":0.31687,"98":0.19637,"99":0.10711,"100":0.3258,"101":0.35258,"102":1.29427,"103":19.722,"104":0.02232,"105":0.05356,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 41 42 43 44 46 47 48 50 51 52 56 59 88 90 106"},F:{"28":0.04017,"32":0.01339,"36":0.0848,"46":0.09372,"70":0.05802,"85":0.00893,"88":0.12496,"89":0.04909,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.04463,"18":0.01339,"101":0.01785,"102":0.07587,"103":3.11071,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},E:{"4":0,"11":0.00446,"12":0.00446,"13":0.14282,"14":0.69177,"15":0.11158,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00446,"11.1":0.07141,"12.1":0.0848,"13.1":0.482,"14.1":1.72272,"15.1":0.17852,"15.2-15.3":0.21869,"15.4":1.27642,"15.5":6.85071,"15.6":0.11158,"16.0":0.01339},G:{"8":0.00876,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.09347,"7.0-7.1":0.0555,"8.1-8.4":0.07886,"9.0-9.2":0.13436,"9.3":0.40893,"10.0-10.2":0.06718,"10.3":0.33298,"11.0-11.2":0.1402,"11.3-11.4":0.09639,"12.0-12.1":0.13728,"12.2-12.5":1.60943,"13.0-13.1":0.03505,"13.2":0.00876,"13.3":0.13144,"13.4-13.7":0.61047,"14.0-14.4":1.03108,"14.5-14.8":2.64927,"15.0-15.1":0.59587,"15.2-15.3":0.89088,"15.4":2.10306,"15.5":17.54887,"16.0":0.04089},P:{"4":1.52221,"5.0-5.4":0.04177,"6.2-6.4":0.04118,"7.2-7.4":0.04132,"8.2":0.02059,"9.2":0.09786,"10.1":0.0834,"11.1-11.2":0.0208,"12.0":0.02175,"13.0":0.05436,"14.0":0.02175,"15.0":0.02175,"16.0":0.07611,"17.0":2.07673},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01037,"4.2-4.3":0.00444,"4.4":0,"4.4.3-4.4.4":0.11254},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.53556,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.1495},Q:{"10.4":0.1495},O:{"0":1.24583},H:{"0":0.05766},L:{"0":21.88742}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.04883,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01465,"53":0.00488,"54":0,"55":0.00488,"56":0.00488,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00977,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.00488,"82":0,"83":0,"84":0.00488,"85":0,"86":0,"87":0.00977,"88":0.00488,"89":0,"90":0,"91":0.00488,"92":0,"93":0.00488,"94":0.01953,"95":0,"96":0,"97":0.00488,"98":0.00977,"99":0.00977,"100":0.01953,"101":0.0293,"102":0.40529,"103":0.04395,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.0293,"23":0,"24":0,"25":0,"26":0.03418,"27":0,"28":0,"29":0,"30":0.01953,"31":0,"32":0,"33":0,"34":0.04395,"35":0,"36":0,"37":0,"38":0.11231,"39":0,"40":0,"41":0,"42":0.00488,"43":0,"44":0,"45":0.00488,"46":0,"47":0,"48":0,"49":0.02442,"50":0,"51":0,"52":0,"53":0.06348,"54":0.00977,"55":0.0293,"56":0,"57":0.00488,"58":0.01465,"59":0,"60":0,"61":0.0586,"62":0.00977,"63":0.00488,"64":0.00488,"65":0.00977,"66":0.00488,"67":0.01465,"68":0.0293,"69":0.01465,"70":0.00488,"71":0.00977,"72":0.01465,"73":0.01465,"74":0.01465,"75":0.00977,"76":0.00488,"77":0.01465,"78":0.0293,"79":0.34181,"80":0.0293,"81":0.01465,"83":0.02442,"84":0.00488,"85":0.00488,"86":0.01465,"87":0.07325,"88":0,"89":0.03418,"90":0.00488,"91":0.01953,"92":0.17091,"93":0.00488,"94":0.0293,"95":0.01465,"96":0.0586,"97":0.15626,"98":0.10743,"99":0.05371,"100":0.15626,"101":0.17091,"102":0.63479,"103":9.63904,"104":0.01465,"105":0.02442,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01953,"29":0,"30":0,"31":0,"32":0.00488,"33":0,"34":0,"35":0,"36":0.03906,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04395,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0293,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00488,"86":0,"87":0,"88":0.0586,"89":0.02442,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.02442,"17":0,"18":0.00977,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00977,"102":0.03906,"103":1.5235,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00488,"12":0.00488,"13":0.06836,"14":0.33693,"15":0.05371,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.03418,"12.1":0.04395,"13.1":0.23438,"14.1":0.83988,"15.1":0.08789,"15.2-15.3":0.10743,"15.4":0.62014,"15.5":3.34486,"15.6":0.05371,"16.0":0.00488},G:{"8":0.01346,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.14354,"7.0-7.1":0.08523,"8.1-8.4":0.12111,"9.0-9.2":0.20634,"9.3":0.62799,"10.0-10.2":0.10317,"10.3":0.51136,"11.0-11.2":0.21531,"11.3-11.4":0.14803,"12.0-12.1":0.21082,"12.2-12.5":2.47157,"13.0-13.1":0.05383,"13.2":0.01346,"13.3":0.20185,"13.4-13.7":0.93749,"14.0-14.4":1.58342,"14.5-14.8":4.06845,"15.0-15.1":0.91507,"15.2-15.3":1.36811,"15.4":3.22964,"15.5":26.94957,"16.0":0.0628},P:{"4":1.40138,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.08828,"10.1":0,"11.1-11.2":0,"12.0":0.02207,"13.0":0.05517,"14.0":0.02207,"15.0":0.02207,"16.0":0.06621,"17.0":1.92001,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01912,"4.2-4.3":0.00819,"4.4":0,"4.4.3-4.4.4":0.20757},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.2588,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.68977},S:{"2.5":0},R:{_:"0"},M:{"0":0.13816},Q:{"10.4":0.13816},O:{"0":1.15133},H:{"0":0.05329}}; 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 9bfcd9e0505866e..f703da07123be9c 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.08667,"58":0.00542,"78":0.00542,"97":0.01083,"100":0.01625,"101":0.05417,"102":0.93714,"103":0.17334,"104":0.00542,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 105 3.5 3.6"},D:{"53":0.01083,"63":0.09751,"67":0.0325,"76":0.03792,"79":0.15709,"80":0.02709,"83":0.01083,"87":0.10834,"88":0.01083,"89":0.01083,"90":0.00542,"91":0.0325,"92":0.0325,"93":0.0325,"96":0.17334,"97":0.01083,"98":0.01625,"99":0.09209,"100":0.19501,"101":0.48211,"102":4.06275,"103":34.36545,"104":0.02709,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 71 72 73 74 75 77 78 81 84 85 86 94 95 105 106"},F:{"87":0.12459,"88":1.86345,"89":0.45503,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00542,"89":0.02709,"96":0.00542,"97":0.01625,"101":0.04875,"102":0.13001,"103":3.82982,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 98 99 100"},E:{"4":0,"12":0.01083,"13":0.78547,"14":0.23835,"15":0.01083,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.01083,"12.1":0.03792,"13.1":0.30335,"14.1":1.47342,"15.1":0.05417,"15.2-15.3":0.18418,"15.4":0.24918,"15.5":1.34342,"15.6":0.0325},G:{"8":0,"3.2":0,"4.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.00249,"9.3":0.19817,"10.0-10.2":0.00125,"10.3":0.23431,"11.0-11.2":0.06606,"11.3-11.4":0.02742,"12.0-12.1":0.03739,"12.2-12.5":0.99957,"13.0-13.1":0.00125,"13.2":0,"13.3":0.08724,"13.4-13.7":0.05609,"14.0-14.4":1.02823,"14.5-14.8":0.45242,"15.0-15.1":0.13834,"15.2-15.3":0.21063,"15.4":0.56584,"15.5":8.21091,"16.0":0.06107},P:{"4":0.09294,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.0764,_:"8.2 10.1 12.0","9.2":0.1549,"11.1-11.2":0.05457,"13.0":0.05457,"14.0":0.03274,"15.0":0.10327,"16.0":0.03274,"17.0":5.27149},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.00113,"4.4":0,"4.4.3-4.4.4":0.14326},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02167,"11":0.04334,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":1.01284},Q:{"10.4":0},O:{"0":0},H:{"0":0.05207},L:{"0":27.63189}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05197,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00577,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00577,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00577,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.47924,"96":0,"97":0.00577,"98":0,"99":0,"100":0.01155,"101":0.04042,"102":0.54853,"103":0.10393,"104":0.00577,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00577,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.05774,"64":0,"65":0,"66":0,"67":0.01732,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.0231,"77":0,"78":0,"79":0.09238,"80":0.01732,"81":0,"83":0.00577,"84":0,"85":0,"86":0,"87":0.06351,"88":0.00577,"89":0.00577,"90":0.00577,"91":0.01732,"92":0.01732,"93":0.01732,"94":0,"95":0,"96":0.09816,"97":0.00577,"98":0.01155,"99":0.05197,"100":0.10971,"101":0.27715,"102":2.35579,"103":19.85101,"104":0.01732,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00577,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.07506,"88":1.07396,"89":0.2656,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00577,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01732,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00577,"97":0.01155,"98":0,"99":0,"100":0,"101":0.02887,"102":0.08661,"103":2.21144,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00577,"13":0.45037,"14":0.13858,"15":0.00577,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00577,"12.1":0.0231,"13.1":0.17322,"14.1":0.84878,"15.1":0.02887,"15.2-15.3":0.10393,"15.4":0.14435,"15.5":0.77372,"15.6":0.01732,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00399,"9.3":0.31695,"10.0-10.2":0.00199,"10.3":0.37476,"11.0-11.2":0.10565,"11.3-11.4":0.04385,"12.0-12.1":0.0598,"12.2-12.5":1.59869,"13.0-13.1":0.00199,"13.2":0,"13.3":0.13954,"13.4-13.7":0.0897,"14.0-14.4":1.64454,"14.5-14.8":0.7236,"15.0-15.1":0.22127,"15.2-15.3":0.33688,"15.4":0.905,"15.5":13.1324,"16.0":0.09768},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07504,"8.2":0,"9.2":0.01072,"10.1":0,"11.1-11.2":0.04288,"12.0":0,"13.0":0.0536,"14.0":0.03216,"15.0":0,"16.0":0.03216,"17.0":4.84575,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00494,"4.2-4.3":0.00247,"4.4":0,"4.4.3-4.4.4":0.31259},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.02021,"11":0.02021,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.18605},S:{"2.5":0},R:{_:"0"},M:{"0":0.93395},Q:{"10.4":0},O:{"0":0},H:{"0":0.04801}}; 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 411b781adb163bd..4c82127fd1d84ab 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:{"34":0.00407,"47":0.00407,"52":0.04067,"78":0.03254,"82":0.17895,"88":0.00407,"89":0.00813,"91":0.07321,"95":0.01627,"97":0.00407,"98":0.00407,"99":0.0122,"100":0.00813,"101":0.8134,"102":3.35528,"103":0.29282,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 90 92 93 94 96 104 105 3.5 3.6"},D:{"49":0.01627,"68":0.0122,"79":0.06914,"80":0.0122,"83":0.00813,"87":0.01627,"89":0.01627,"90":0.00407,"93":0.00813,"94":0.02847,"95":0.00407,"96":0.04474,"97":0.0122,"98":0.0122,"99":0.0244,"100":0.05694,"101":0.07727,"102":1.66747,"103":20.13165,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 73 74 75 76 77 78 81 84 85 86 88 91 92 104 105 106"},F:{"40":0.05694,"85":0.02034,"87":0.07321,"88":0.89474,"89":0.28062,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00407,"18":0.0122,"80":0.00813,"89":0.0366,"92":0.00813,"99":0.00813,"100":0.00813,"101":0.06914,"102":0.09354,"103":5.14069,_:"12 13 14 15 17 79 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.02034,"14":0.17488,"15":0.09354,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00813,"11.1":0.0244,"12.1":0.07727,"13.1":0.34163,"14.1":0.99235,"15.1":0.08947,"15.2-15.3":0.07727,"15.4":0.42704,"15.5":2.31819,"15.6":0.12201,"16.0":0.01627},G:{"8":0,"3.2":0,"4.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.00162,"9.0-9.2":0,"9.3":0.08262,"10.0-10.2":0,"10.3":0.11178,"11.0-11.2":0.01944,"11.3-11.4":0.06156,"12.0-12.1":0.0081,"12.2-12.5":0.30779,"13.0-13.1":0.0081,"13.2":0.00324,"13.3":0.01782,"13.4-13.7":0.0972,"14.0-14.4":0.47627,"14.5-14.8":0.844,"15.0-15.1":0.46331,"15.2-15.3":0.81322,"15.4":1.26519,"15.5":11.19227,"16.0":0.14742},P:{"4":0.0312,"5.0-5.4":0.01034,"6.2-6.4":0.02067,"7.2-7.4":0.07281,"8.2":0.01034,"9.2":0.0104,"10.1":0.02255,"11.1-11.2":0.14562,"12.0":0.0208,"13.0":0.08321,"14.0":0.22883,"15.0":0.08321,"16.0":0.17683,"17.0":4.57668},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.05682,"4.4":0,"4.4.3-4.4.4":0.13307},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10574,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.2789},Q:{"10.4":0},O:{"0":0.02967},H:{"0":0.37078},L:{"0":38.3082}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00423,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00423,"48":0,"49":0,"50":0,"51":0,"52":0.01693,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00423,"78":0.0127,"79":0,"80":0,"81":0,"82":0.07618,"83":0,"84":0,"85":0.00423,"86":0,"87":0,"88":0.00423,"89":0.00423,"90":0,"91":0.02962,"92":0,"93":0,"94":0,"95":0.00423,"96":0,"97":0.00423,"98":0.00423,"99":0.00423,"100":0.00846,"101":0.34702,"102":1.49813,"103":0.13542,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00846,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00423,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02962,"80":0.00423,"81":0.00423,"83":0.00423,"84":0,"85":0,"86":0,"87":0.00846,"88":0,"89":0.00423,"90":0.00423,"91":0,"92":0.06348,"93":0.00423,"94":0.0127,"95":0.00423,"96":0.01693,"97":0.00423,"98":0.00423,"99":0.0127,"100":0.02539,"101":0.03386,"102":0.71098,"103":8.60789,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.02539,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00423,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00846,"86":0,"87":0.02962,"88":0.38088,"89":0.1185,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00423,"79":0,"80":0.00423,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01693,"90":0,"91":0,"92":0.00423,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00423,"100":0.00423,"101":0.02962,"102":0.12273,"103":2.2091,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00846,"14":0.07194,"15":0.04232,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00423,"11.1":0.00846,"12.1":0.03386,"13.1":0.14389,"14.1":0.41897,"15.1":0.03809,"15.2-15.3":0.03386,"15.4":0.18198,"15.5":0.98182,"15.6":0.05078,"16.0":0.00846},G:{"8":0,"3.2":0,"4.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.00231,"9.0-9.2":0,"9.3":0.11804,"10.0-10.2":0,"10.3":0.15969,"11.0-11.2":0.02777,"11.3-11.4":0.08795,"12.0-12.1":0.01157,"12.2-12.5":0.43974,"13.0-13.1":0.01157,"13.2":0.00463,"13.3":0.02546,"13.4-13.7":0.13887,"14.0-14.4":0.68044,"14.5-14.8":1.20581,"15.0-15.1":0.66192,"15.2-15.3":1.16184,"15.4":1.80756,"15.5":15.99033,"16.0":0.21061},P:{"4":0.04189,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.0733,"8.2":0,"9.2":0.01047,"10.1":0,"11.1-11.2":0.1466,"12.0":0.02094,"13.0":0.08377,"14.0":0.21991,"15.0":0.0733,"16.0":0.17802,"17.0":4.41904,"18.0":0.01047},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.10968,"4.4":0,"4.4.3-4.4.4":0.25688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04655,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.28874},S:{"2.5":0},R:{_:"0"},M:{"0":0.2711},Q:{"10.4":0},O:{"0":0.02884},H:{"0":0.36041}}; 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 c2b290bfbf1b389..6e1a6491841f0e4 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:{"34":0.00426,"42":0.00284,"43":0.00142,"45":0.00284,"46":0.00142,"47":0.00851,"49":0.00568,"52":0.01703,"55":0.00142,"60":0.00851,"72":0.00426,"84":0.00426,"85":0.00426,"87":0.0071,"88":0.01703,"91":0.0071,"94":0.00142,"95":0.00142,"96":0.00993,"98":0.00993,"99":0.01845,"100":0.02129,"101":0.06953,"102":1.11817,"103":0.15609,_:"2 3 4 5 6 7 8 9 10 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 44 48 50 51 53 54 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 86 89 90 92 93 97 104 105 3.5 3.6"},D:{"11":0.00851,"19":0.02554,"25":0.00568,"33":0.01845,"38":0.00426,"40":0.00426,"43":0.02412,"44":0.00142,"46":0.01561,"48":0.01987,"49":0.0071,"55":0.00568,"56":0.00284,"58":0.00284,"63":0.00284,"65":0.00568,"69":0.00426,"70":0.00851,"72":0.04541,"73":0.00142,"74":0.00284,"75":0.00568,"76":0.00993,"77":0.01419,"78":0.01135,"79":0.00426,"80":0.00426,"81":0.00993,"83":0.01703,"84":0.00142,"85":0.00568,"86":0.01703,"87":0.01561,"88":0.03264,"89":0.00426,"90":0.00426,"91":0.01135,"92":0.00568,"93":0.00426,"94":0.00851,"95":0.01987,"96":0.02129,"97":0.01987,"98":0.04257,"99":0.03122,"100":0.04967,"101":0.04257,"102":0.31928,"103":6.98716,"104":0.0071,"105":0.00568,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 37 39 41 42 45 47 50 51 52 53 54 57 59 60 61 62 64 66 67 68 71 106"},F:{"79":0.00426,"84":0.00284,"85":0.01987,"86":0.00284,"87":0.00568,"88":0.16602,"89":0.10359,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01135,"13":0.0071,"14":0.00284,"15":0.00284,"16":0.00568,"17":0.04257,"18":0.03831,"84":0.00568,"85":0.00426,"86":0.00142,"89":0.00284,"90":0.00993,"91":0.00426,"92":0.00993,"96":0.00142,"97":0.00284,"98":0.00142,"99":0.02554,"100":0.00993,"101":0.03264,"102":0.03406,"103":1.33386,_:"79 80 81 83 87 88 93 94 95"},E:{"4":0,"13":0.00851,"14":0.04399,"15":0.01845,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1 16.0","5.1":0.00142,"11.1":0.00284,"13.1":0.08514,"14.1":0.13481,"15.1":0.02554,"15.2-15.3":0.01277,"15.4":0.04541,"15.5":0.19298,"15.6":0.01703},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03123,"8.1-8.4":0,"9.0-9.2":0.00493,"9.3":0.01972,"10.0-10.2":0,"10.3":0.03945,"11.0-11.2":0.10684,"11.3-11.4":0.02301,"12.0-12.1":0.05917,"12.2-12.5":1.33962,"13.0-13.1":0.04438,"13.2":0.05917,"13.3":0.11999,"13.4-13.7":0.25806,"14.0-14.4":1.87875,"14.5-14.8":1.87546,"15.0-15.1":1.15059,"15.2-15.3":1.49084,"15.4":1.50727,"15.5":5.98965,"16.0":0.19231},P:{"4":0.3529,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":1.09903,"8.2":0.01034,"9.2":0.10083,"10.1":0.03025,"11.1-11.2":0.39323,"12.0":0.20166,"13.0":0.12099,"14.0":0.25207,"15.0":0.21174,"16.0":0.94779,"17.0":2.34931},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.00069,"4.4":0,"4.4.3-4.4.4":0.03294},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12771,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.24024},Q:{"10.4":0},O:{"0":0.49764},H:{"0":0.95039},L:{"0":63.36812}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00143,"48":0,"49":0.00143,"50":0,"51":0,"52":0.00285,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00143,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00143,"88":0.00856,"89":0,"90":0,"91":0.00143,"92":0,"93":0,"94":0,"95":0,"96":0.00143,"97":0.00999,"98":0.00285,"99":0.00285,"100":0.00285,"101":0.01284,"102":0.17124,"103":0.02283,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00143,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00428,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00143,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00285,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0371,"41":0,"42":0,"43":0.00285,"44":0,"45":0,"46":0.00143,"47":0,"48":0.00285,"49":0.00143,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00143,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00143,"66":0,"67":0,"68":0,"69":0,"70":0.00143,"71":0,"72":0.00714,"73":0,"74":0,"75":0.00143,"76":0.00143,"77":0.00143,"78":0.00285,"79":0,"80":0.00143,"81":0.00285,"83":0.00285,"84":0,"85":0.00143,"86":0.00285,"87":0.00285,"88":0.00571,"89":0,"90":0,"91":0.00285,"92":0.00143,"93":0.00143,"94":0.00143,"95":0.00285,"96":0.00285,"97":0.00285,"98":0.00571,"99":0.00428,"100":0.00714,"101":0.00571,"102":0.04709,"103":1.00033,"104":0.00143,"105":0.00143,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00143,"60":0.00571,"62":0,"63":0.04566,"64":0.00143,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00285,"86":0,"87":0.00143,"88":0.02426,"89":0.01427,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00285,"10.6":0.00143,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00285},B:{"12":0.00143,"13":0.00143,"14":0,"15":0,"16":0.00143,"17":0.00571,"18":0.00571,"79":0,"80":0,"81":0,"83":0,"84":0.00143,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00143,"91":0,"92":0.00143,"93":0,"94":0,"95":0,"96":0.00143,"97":0,"98":0,"99":0.00428,"100":0.00143,"101":0.00428,"102":0.00571,"103":0.19265,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00143,"14":0.00571,"15":0.00285,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.01142,"14.1":0.01998,"15.1":0.00428,"15.2-15.3":0.00143,"15.4":0.00714,"15.5":0.02711,"15.6":0.00285,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03612,"8.1-8.4":0,"9.0-9.2":0.0057,"9.3":0.02281,"10.0-10.2":0,"10.3":0.04562,"11.0-11.2":0.12356,"11.3-11.4":0.02661,"12.0-12.1":0.06843,"12.2-12.5":1.54928,"13.0-13.1":0.05133,"13.2":0.06843,"13.3":0.13877,"13.4-13.7":0.29845,"14.0-14.4":2.1728,"14.5-14.8":2.16899,"15.0-15.1":1.33067,"15.2-15.3":1.72417,"15.4":1.74318,"15.5":6.92709,"16.0":0.22241},P:{"4":0.3656,"5.0-5.4":0.04062,"6.2-6.4":0.23358,"7.2-7.4":1.09679,"8.2":0.01016,"9.2":0.0914,"10.1":0.03047,"11.1-11.2":0.39606,"12.0":0.19295,"13.0":0.12187,"14.0":0.25389,"15.0":0.21327,"16.0":0.93431,"17.0":2.34592,"18.0":0},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.07537},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01855,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.08021},S:{"2.5":0},R:{_:"0"},M:{"0":0.24004},Q:{"10.4":0},O:{"0":0.49723},H:{"0":0.94961}}; 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 e8f6ce441ed6961..50386aa0d427627 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:{"101":0.02724,"102":0.9643,"103":0.32143,"104":0.02724,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 105 3.5 3.6"},D:{"58":0.11441,"86":0.02724,"87":1.26938,"88":0.05993,"89":0.01634,"94":0.01634,"98":0.15799,"102":0.99154,"103":38.56639,"105":0.02724,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 81 83 84 85 90 91 92 93 95 96 97 99 100 101 104 106"},F:{"87":0.13075,"88":0.4086,"89":0.24516,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"100":0.01634,"102":0.10351,"103":5.37718,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101"},E:{"4":0,"13":0.07082,"14":0.07082,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 16.0","13.1":0.01634,"14.1":0.10351,"15.1":0.01634,"15.2-15.3":0.05993,"15.4":0.15799,"15.5":2.34809,"15.6":0.04358},G:{"8":0,"3.2":0,"4.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.00837,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.13148,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":2.89086,"14.0-14.4":0.05276,"14.5-14.8":0.81651,"15.0-15.1":0.04355,"15.2-15.3":0.17503,"15.4":0.31655,"15.5":3.83132,"16.0":0},P:{"4":0.18009,"5.0-5.4":0.04074,"6.2-6.4":0.23191,"7.2-7.4":0.03377,"8.2":0.01034,"9.2":0.06111,"10.1":0.03025,"11.1-11.2":0.18009,"12.0":0.02051,"13.0":0.02251,"14.0":0.02251,"15.0":0.18009,"16.0":0.32642,"17.0":3.38801},I:{"0":0,"3":0,"4":0.00552,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0309,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.33778,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.01821},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":34.83299}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0179,"102":0.58477,"103":0.19094,"104":0.0179,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0716,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.0179,"87":0.75781,"88":0.0358,"89":0.00597,"90":0,"91":0,"92":0,"93":0,"94":0.00597,"95":0,"96":0,"97":0,"98":0.09547,"99":0,"100":0,"101":0,"102":0.59073,"103":23.00875,"104":0,"105":0.0179,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.07757,"88":0.24465,"89":0.14918,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00597,"101":0,"102":0.05967,"103":3.21621,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.04177,"14":0.04177,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00597,"14.1":0.05967,"15.1":0.00597,"15.2-15.3":0.0358,"15.4":0.09547,"15.5":1.40225,"15.6":0.02387,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01581,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.24822,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":5.45764,"14.0-14.4":0.0996,"14.5-14.8":1.54148,"15.0-15.1":0.08221,"15.2-15.3":0.33043,"15.4":0.59762,"15.5":7.23311,"16.0":0},P:{"4":0.15402,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.033,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.16502,"12.0":0,"13.0":0.011,"14.0":0.011,"15.0":0.16502,"16.0":0.28603,"17.0":3.01433,"18.0":0},I:{"0":0,"3":0,"4":0.16672,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.93364,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.20288,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":45.97664},S:{"2.5":0},R:{_:"0"},M:{"0":0.01613},Q:{"10.4":0},O:{"0":0},H:{"0":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 b8eafbdb4bf0e97..969b809f00f62f3 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:{"52":0.03485,"78":0.00996,"88":0.00498,"91":0.01494,"99":0.00996,"100":0.00498,"101":0.08464,"102":1.33935,"103":0.13941,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"49":0.0249,"63":0.00498,"69":0.43815,"70":0.01494,"74":0.01992,"76":0.00996,"77":0.04979,"78":0.01494,"79":0.08962,"80":0.01992,"83":0.00498,"84":0.00996,"85":0.00996,"86":0.01992,"87":0.04481,"89":0.02987,"91":0.00996,"92":0.0249,"93":0.07469,"94":0.03983,"95":0.01494,"96":0.01494,"97":0.01992,"98":0.10456,"99":0.27385,"100":0.09958,"101":0.2838,"102":1.85219,"103":32.79169,"104":0.00996,"105":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 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 71 72 73 75 81 88 90 106"},F:{"28":0.03983,"40":0.00996,"46":0.00996,"75":0.00498,"83":0.00996,"87":0.04481,"88":0.93605,"89":0.28878,_:"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 76 77 78 79 80 81 82 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01992,"86":0.00996,"97":0.01992,"99":0.00996,"100":0.00996,"101":0.0249,"102":0.14937,"103":4.97402,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 98"},E:{"4":0,"13":0.0249,"14":0.15435,"15":0.04979,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00498,"11.1":0.08962,"12.1":0.0249,"13.1":0.15933,"14.1":0.40828,"15.1":0.07966,"15.2-15.3":0.0946,"15.4":0.35849,"15.5":1.92687,"15.6":0.06473,"16.0":0.00996},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00153,"6.0-6.1":0.00153,"7.0-7.1":0.00153,"8.1-8.4":0.01525,"9.0-9.2":0.00305,"9.3":0.02593,"10.0-10.2":0,"10.3":0.37825,"11.0-11.2":0.00305,"11.3-11.4":0.03813,"12.0-12.1":0.01068,"12.2-12.5":0.26691,"13.0-13.1":0.00915,"13.2":0.00305,"13.3":0.02288,"13.4-13.7":0.07779,"14.0-14.4":0.42248,"14.5-14.8":0.82208,"15.0-15.1":0.27759,"15.2-15.3":0.55212,"15.4":0.99748,"15.5":10.90975,"16.0":0.11439},P:{"4":0.12588,"5.0-5.4":0.01034,"6.2-6.4":0.02067,"7.2-7.4":0.20673,"8.2":0.01034,"9.2":0.04135,"10.1":0.02255,"11.1-11.2":0.03147,"12.0":0.01049,"13.0":0.02098,"14.0":0.04196,"15.0":0.06294,"16.0":0.09441,"17.0":2.76944},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00173,"4.2-4.3":0.00115,"4.4":0,"4.4.3-4.4.4":0.03226},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00498,"11":0.08962,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.36144},Q:{"10.4":0},O:{"0":0.251},H:{"0":0.12832},L:{"0":30.96166}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01534,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00511,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00511,"89":0,"90":0,"91":0.00511,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00511,"100":0.00511,"101":0.06648,"102":0.80801,"103":0.08182,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01023,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00511,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.22502,"70":0.00511,"71":0,"72":0,"73":0,"74":0.01023,"75":0,"76":0.00511,"77":0.02557,"78":0.01023,"79":0.04603,"80":0.01023,"81":0.01023,"83":0.00511,"84":0.00511,"85":0.00511,"86":0.01023,"87":0.02046,"88":0,"89":0.01534,"90":0.00511,"91":0.00511,"92":0.02557,"93":0.04091,"94":0.02046,"95":0.01023,"96":0.01023,"97":0.01023,"98":0.05625,"99":0.14319,"100":0.06648,"101":0.14319,"102":0.96143,"103":16.89666,"104":0.00511,"105":0.00511,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02046,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00511,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00511,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01023,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00511,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00511,"84":0,"85":0,"86":0,"87":0.02557,"88":0.48072,"89":0.14831,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01023,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00511,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.01023,"98":0,"99":0.00511,"100":0.00511,"101":0.01023,"102":0.08694,"103":2.57234,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01534,"14":0.07671,"15":0.02557,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00511,"10.1":0,"11.1":0.04603,"12.1":0.01534,"13.1":0.08182,"14.1":0.20967,"15.1":0.04091,"15.2-15.3":0.04603,"15.4":0.1841,"15.5":0.987,"15.6":0.03068,"16.0":0.00511},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00239,"6.0-6.1":0.00239,"7.0-7.1":0.00239,"8.1-8.4":0.0239,"9.0-9.2":0.00478,"9.3":0.04063,"10.0-10.2":0,"10.3":0.5927,"11.0-11.2":0.00478,"11.3-11.4":0.05975,"12.0-12.1":0.01673,"12.2-12.5":0.41824,"13.0-13.1":0.01434,"13.2":0.00478,"13.3":0.03585,"13.4-13.7":0.12189,"14.0-14.4":0.66201,"14.5-14.8":1.28817,"15.0-15.1":0.43497,"15.2-15.3":0.86516,"15.4":1.56302,"15.5":17.09519,"16.0":0.17925},P:{"4":0.16501,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03094,"12.0":0.01031,"13.0":0.02063,"14.0":0.04125,"15.0":0.06188,"16.0":0.09282,"17.0":2.64015,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00998,"4.2-4.3":0.00665,"4.4":0,"4.4.3-4.4.4":0.18633},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00511,"10":0,"11":0.04603,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.74657},S:{"2.5":0},R:{_:"0"},M:{"0":0.35179},Q:{"10.4":0},O:{"0":0.2443},H:{"0":0.1249}}; 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 d9e0f1a03da9207..68c3b69f500ba73 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.00359,"45":0.00718,"52":0.03948,"56":0.00718,"78":0.02153,"87":0.00359,"88":0.00359,"89":0.01077,"91":0.05742,"92":0.01077,"95":0.01436,"96":0.00359,"98":0.02512,"99":0.02153,"100":0.01077,"101":0.10408,"102":1.80886,"103":0.19381,_:"2 3 4 5 6 7 8 9 10 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 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 90 93 94 97 104 105 3.5 3.6"},D:{"26":0.00718,"38":0.04307,"43":0.00359,"47":0.01436,"49":0.02153,"50":0.00718,"53":0.01795,"55":0.00718,"58":0.00718,"66":0.01077,"69":0.01077,"74":0.00359,"76":0.00718,"77":0.01436,"78":0.00718,"79":0.15074,"80":0.01795,"81":0.02153,"83":0.0323,"85":0.01436,"86":0.00718,"87":0.02871,"88":0.00718,"89":0.00718,"90":0.00718,"91":0.0646,"92":0.05384,"93":0.01436,"94":0.00359,"95":0.01077,"96":0.05742,"97":0.07178,"98":0.04666,"99":0.11126,"100":0.10767,"101":0.17227,"102":1.19155,"103":20.7193,"104":0.01436,"105":0.02153,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 54 56 57 59 60 61 62 63 64 65 67 68 70 71 72 73 75 84 106"},F:{"28":0.04307,"83":0.00359,"85":0.00718,"87":0.02512,"88":0.55988,"89":0.24046,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00359,"15":0.00359,"16":0.00359,"17":0.00359,"18":0.01436,"83":0.01077,"89":0.00359,"92":0.00359,"97":0.00718,"99":0.00718,"100":0.01436,"101":0.02871,"102":0.06819,"103":3.08654,_:"12 13 79 80 81 84 85 86 87 88 90 91 93 94 95 96 98"},E:{"4":0,"11":0.00718,"12":0.01436,"13":0.03589,"14":0.14356,"15":0.02153,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00359,"10.1":0.00718,"11.1":0.09331,"12.1":0.02153,"13.1":0.10049,"14.1":0.3266,"15.1":0.04307,"15.2-15.3":0.08255,"15.4":0.15433,"15.5":1.2741,"15.6":0.03948,"16.0":0.01795},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02753,"6.0-6.1":0.00072,"7.0-7.1":0.04346,"8.1-8.4":0.00145,"9.0-9.2":0,"9.3":0.06736,"10.0-10.2":0,"10.3":0.06519,"11.0-11.2":0.00362,"11.3-11.4":0.00724,"12.0-12.1":0.01811,"12.2-12.5":0.24555,"13.0-13.1":0.00652,"13.2":0.00145,"13.3":0.01014,"13.4-13.7":0.07533,"14.0-14.4":0.09851,"14.5-14.8":0.39259,"15.0-15.1":0.0775,"15.2-15.3":0.19775,"15.4":0.48748,"15.5":5.1537,"16.0":0.06447},P:{"4":0.28631,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":0.23518,"8.2":0.01034,"9.2":0.02045,"10.1":0.03025,"11.1-11.2":0.0818,"12.0":0.03068,"13.0":0.11248,"14.0":0.17383,"15.0":0.07158,"16.0":0.35788,"17.0":4.71385},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00136,"4.2-4.3":0.00339,"4.4":0,"4.4.3-4.4.4":0.06577},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07896,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.23721},Q:{"10.4":0},O:{"0":0.61546},H:{"0":0.38238},L:{"0":52.90606}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00366,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01464,"53":0,"54":0,"55":0,"56":0.00366,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00732,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00366,"89":0.00366,"90":0,"91":0.02195,"92":0.00366,"93":0,"94":0,"95":0.00732,"96":0.00366,"97":0.00366,"98":0.01098,"99":0.00732,"100":0.00732,"101":0.04025,"102":0.72082,"103":0.07318,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00366,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.01464,"39":0,"40":0.00366,"41":0,"42":0,"43":0.00366,"44":0,"45":0,"46":0,"47":0.00366,"48":0,"49":0.00732,"50":0.00366,"51":0,"52":0,"53":0.00732,"54":0,"55":0.00366,"56":0,"57":0,"58":0.00366,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00366,"67":0,"68":0,"69":0.00366,"70":0,"71":0,"72":0,"73":0,"74":0.00366,"75":0,"76":0.00366,"77":0.00366,"78":0.00366,"79":0.05489,"80":0.00732,"81":0.06952,"83":0.01098,"84":0,"85":0.00366,"86":0.00366,"87":0.01098,"88":0.00366,"89":0.00366,"90":0.00366,"91":0.02561,"92":0.03659,"93":0.00732,"94":0.00366,"95":0.00732,"96":0.02195,"97":0.02561,"98":0.0183,"99":0.04025,"100":0.04025,"101":0.0622,"102":0.44274,"103":7.62902,"104":0.00366,"105":0.00732,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01464,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04025,"64":0.00732,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00366,"86":0,"87":0.00732,"88":0.2049,"89":0.08782,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00366,"15":0,"16":0,"17":0,"18":0.00366,"79":0,"80":0,"81":0,"83":0.00366,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00366,"98":0,"99":0.00366,"100":0.00366,"101":0.01098,"102":0.02927,"103":1.13795,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00366,"12":0.00366,"13":0.01098,"14":0.05123,"15":0.00732,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00366,"11.1":0.03293,"12.1":0.00732,"13.1":0.03659,"14.1":0.12075,"15.1":0.01464,"15.2-15.3":0.02927,"15.4":0.05489,"15.5":0.46835,"15.6":0.01464,"16.0":0.00732},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03946,"6.0-6.1":0.00104,"7.0-7.1":0.06231,"8.1-8.4":0.00208,"9.0-9.2":0,"9.3":0.09657,"10.0-10.2":0,"10.3":0.09346,"11.0-11.2":0.00519,"11.3-11.4":0.01038,"12.0-12.1":0.02596,"12.2-12.5":0.35203,"13.0-13.1":0.00935,"13.2":0.00208,"13.3":0.01454,"13.4-13.7":0.108,"14.0-14.4":0.14123,"14.5-14.8":0.56283,"15.0-15.1":0.11111,"15.2-15.3":0.28349,"15.4":0.69887,"15.5":7.38847,"16.0":0.09242},P:{"4":0.28607,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.22477,"8.2":0,"9.2":0.02043,"10.1":0.01022,"11.1-11.2":0.10217,"12.0":0.04087,"13.0":0.11238,"14.0":0.16347,"15.0":0.07152,"16.0":0.35758,"17.0":4.61793,"18.0":0.01022},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.00722,"4.4":0,"4.4.3-4.4.4":0.14014},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02927,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.63172},S:{"2.5":0},R:{_:"0"},M:{"0":0.23462},Q:{"10.4":0.00634},O:{"0":0.60874},H:{"0":0.3782}}; 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 d3dba11d0e779ba..41108fd3ca98752 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js @@ -1 +1 @@ -module.exports={C:{"34":0.00816,"37":0.02449,"78":0.01088,"82":0.01361,"88":0.03537,"90":0.01361,"91":0.00544,"94":0.02449,"95":0.02721,"96":0.02449,"97":0.03265,"98":0.02721,"99":0.02449,"100":0.02449,"101":0.09796,"102":0.79181,"103":0.12517,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 89 92 93 104 105 3.5 3.6"},D:{"56":0.00272,"69":0.00544,"73":0.00544,"74":0.01361,"76":0.00816,"79":0.00816,"80":0.00816,"81":0.00544,"83":0.11972,"84":0.03809,"85":0.07075,"86":0.00544,"87":0.00816,"88":0.00544,"89":0.02177,"91":0.0653,"92":0.03537,"93":0.01361,"94":0.02721,"95":0.01361,"96":0.01905,"97":0.03537,"98":0.01361,"99":0.02993,"100":0.08707,"101":0.19863,"102":1.21085,"103":17.80078,"104":0.00544,"105":0.00544,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 75 77 78 90 106"},F:{"28":0.01088,"81":0.00272,"82":0.01361,"83":0.02177,"84":0.01361,"85":0.01088,"86":0.01905,"87":0.02177,"88":0.21224,"89":0.06258,_:"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 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00544,"18":0.00816,"84":0.00816,"92":0.00816,"96":0.00272,"97":0.03537,"99":0.00816,"101":0.02177,"102":0.07075,"103":1.36594,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 98 100"},E:{"4":0,"7":0.00272,"13":0.01088,"14":0.13605,"15":0.04898,_:"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.00816,"12.1":0.02449,"13.1":0.05714,"14.1":0.17687,"15.1":0.05442,"15.2-15.3":0.07347,"15.4":0.23129,"15.5":1.1537,"15.6":0.05442,"16.0":0.01633},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00416,"6.0-6.1":0,"7.0-7.1":0.00624,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02288,"10.0-10.2":0,"10.3":0.02288,"11.0-11.2":0,"11.3-11.4":0.00624,"12.0-12.1":0.00416,"12.2-12.5":0.22044,"13.0-13.1":0.00832,"13.2":0.01248,"13.3":0.03951,"13.4-13.7":0.11438,"14.0-14.4":0.4388,"14.5-14.8":1.0419,"15.0-15.1":0.42633,"15.2-15.3":0.82146,"15.4":1.3996,"15.5":15.15436,"16.0":0.38681},P:{"4":0.18514,"5.0-5.4":0.01046,"6.2-6.4":0.04118,"7.2-7.4":0.072,"8.2":0.02059,"9.2":0.02093,"10.1":0.02255,"11.1-11.2":0.05143,"12.0":0.03382,"13.0":0.03086,"14.0":0.03086,"15.0":0.02057,"16.0":0.08229,"17.0":1.54286},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00992,"4.4":0,"4.4.3-4.4.4":0.12108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02721,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.45124},Q:{"10.4":0},O:{"0":0.56768},H:{"0":0.69592},L:{"0":50.14195}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.0028,"35":0,"36":0,"37":0.0084,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0028,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0028,"79":0,"80":0,"81":0,"82":0.0028,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0112,"89":0,"90":0.0476,"91":0.0028,"92":0,"93":0,"94":0.0056,"95":0.0084,"96":0.0056,"97":0.0364,"98":0.0084,"99":0.0056,"100":0.0084,"101":0.0448,"102":0.2436,"103":0.0364,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.0056,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.0028,"75":0,"76":0.0028,"77":0,"78":0,"79":0.0028,"80":0.0028,"81":0.0336,"83":0.0336,"84":0.0112,"85":0.0196,"86":0.0028,"87":0.0028,"88":0,"89":0.0056,"90":0,"91":0.0168,"92":0.0112,"93":0.0028,"94":0.0084,"95":0.0056,"96":0.0056,"97":0.0112,"98":0.0028,"99":0.0112,"100":0.0252,"101":0.0644,"102":0.3416,"103":5.0008,"104":0.0028,"105":0.0028,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0028,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0252,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0028,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0.0028,"83":0.0056,"84":0.0028,"85":0.0028,"86":0.0056,"87":0.0056,"88":0.0588,"89":0.0168,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.0028,"17":0,"18":0.0028,"79":0,"80":0,"81":0,"83":0,"84":0.0028,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0028,"93":0,"94":0,"95":0,"96":0,"97":0.0112,"98":0,"99":0.0028,"100":0,"101":0.0056,"102":0.0224,"103":0.3864,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0028,"14":0.0392,"15":0.014,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0028,"12.1":0.0084,"13.1":0.0168,"14.1":0.0504,"15.1":0.014,"15.2-15.3":0.0196,"15.4":0.0644,"15.5":0.322,"15.6":0.0168,"16.0":0.0056},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,"7.0-7.1":0.0083,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03045,"10.0-10.2":0,"10.3":0.03045,"11.0-11.2":0,"11.3-11.4":0.0083,"12.0-12.1":0.00554,"12.2-12.5":0.29338,"13.0-13.1":0.01107,"13.2":0.01661,"13.3":0.05259,"13.4-13.7":0.15223,"14.0-14.4":0.584,"14.5-14.8":1.38665,"15.0-15.1":0.56739,"15.2-15.3":1.09327,"15.4":1.86271,"15.5":20.16873,"16.0":0.5148},P:{"4":0.18894,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07348,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04199,"12.0":0.0105,"13.0":0.03149,"14.0":0.03149,"15.0":0.02099,"16.0":0.06298,"17.0":1.53254,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01448,"4.4":0,"4.4.3-4.4.4":0.17672},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0084,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.918},S:{"2.5":0},R:{_:"0"},M:{"0":0.4464},Q:{"10.4":0},O:{"0":0.5616},H:{"0":0.68847}}; 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 373c314e08f5384..2b422709d54d4c2 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.00622,"35":0.00311,"40":0.00622,"45":0.00311,"47":0.00311,"52":0.00311,"59":0.01245,"61":0.0249,"62":0.00622,"63":0.04979,"68":0.00622,"69":0.01245,"72":0.00311,"78":0.05913,"80":0.00622,"81":0.01556,"89":0.00311,"91":0.05913,"94":0.01867,"95":0.00622,"96":0.00622,"97":0.00311,"98":0.00934,"99":0.03423,"100":0.01867,"101":0.17427,"102":2.27798,"103":0.24585,"104":0.00311,_:"2 3 4 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 41 42 43 44 46 48 49 50 51 53 54 55 56 57 58 60 64 65 66 67 70 71 73 74 75 76 77 79 82 83 84 85 86 87 88 90 92 93 105 3.5 3.6"},D:{"33":0.00311,"50":0.00622,"55":0.00311,"60":0.00311,"62":0.00622,"63":0.00622,"64":0.01245,"65":0.01556,"69":0.00934,"70":0.00622,"71":0.00311,"72":0.00311,"74":0.01245,"75":0.0249,"77":0.00622,"78":0.01867,"79":0.01867,"80":0.01867,"81":0.02801,"83":0.00934,"84":0.00934,"85":0.01245,"86":0.05913,"87":0.08714,"88":0.03112,"89":0.00934,"90":0.01245,"91":0.01245,"92":0.05602,"93":0.0249,"94":0.01245,"95":0.02801,"96":0.03734,"97":0.0249,"98":0.04357,"99":0.04046,"100":0.08402,"101":0.15871,"102":0.65041,"103":11.62954,_:"4 5 6 7 8 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 51 52 53 54 56 57 58 59 61 66 67 68 73 76 104 105 106"},F:{"22":0.00311,"34":0.00311,"40":0.00311,"42":0.01245,"69":0.00622,"70":0.00622,"74":0.01867,"79":0.09647,"81":0.00934,"82":0.00622,"83":0.00311,"84":0.02801,"85":0.05602,"86":0.03734,"87":0.04357,"88":0.64107,"89":0.67219,"90":0.00311,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 43 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 75 76 77 78 80 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.05602,"13":0.03423,"14":0.02801,"15":0.05602,"16":0.03423,"17":0.04668,"18":0.23962,"81":0.00622,"84":0.03112,"85":0.01867,"89":0.03423,"90":0.03423,"92":0.1556,"93":0.00311,"96":0.00622,"97":0.00622,"98":0.0249,"99":0.03112,"100":0.03423,"101":0.0778,"102":0.18672,"103":2.99063,_:"79 80 83 86 87 88 91 94 95"},E:{"4":0,"14":0.00934,"15":0.00622,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 15.6 16.0","5.1":0.01245,"11.1":0.00622,"12.1":0.02801,"13.1":0.04979,"14.1":0.05913,"15.1":0.01556,"15.2-15.3":0.03734,"15.4":0.02178,"15.5":0.08714},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00251,"5.0-5.1":0.00125,"6.0-6.1":0,"7.0-7.1":0.0094,"8.1-8.4":0.00021,"9.0-9.2":0.00063,"9.3":0.06368,"10.0-10.2":0.00042,"10.3":0.0213,"11.0-11.2":0.00585,"11.3-11.4":0.00397,"12.0-12.1":0.00772,"12.2-12.5":0.18978,"13.0-13.1":0.00292,"13.2":0.00188,"13.3":0.0142,"13.4-13.7":0.02672,"14.0-14.4":0.20857,"14.5-14.8":0.19062,"15.0-15.1":0.06472,"15.2-15.3":0.0856,"15.4":0.17767,"15.5":0.94224,"16.0":0.0167},P:{"4":0.28255,"5.0-5.4":0.01046,"6.2-6.4":0.04118,"7.2-7.4":0.33487,"8.2":0.02059,"9.2":0.02093,"10.1":0.02255,"11.1-11.2":0.01046,"12.0":0.03382,"13.0":0.04186,"14.0":0.14651,"15.0":0.10465,"16.0":0.30348,"17.0":1.16158},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00205,"4.2-4.3":0.00684,"4.4":0,"4.4.3-4.4.4":0.09441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00622,"11":0.07469,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01377},N:{"11":0.02718,_:"10"},S:{"2.5":0.02755},R:{_:"0"},M:{"0":0.26171},Q:{"10.4":0.01377},O:{"0":6.58397},H:{"0":7.41343},L:{"0":56.17161}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00319,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00319,"60":0,"61":0.00957,"62":0.00638,"63":0.01595,"64":0,"65":0,"66":0,"67":0,"68":0.00638,"69":0.00319,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01913,"79":0,"80":0.00319,"81":0.00638,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00319,"90":0.00638,"91":0.01913,"92":0,"93":0,"94":0.02232,"95":0.00319,"96":0.00319,"97":0.00319,"98":0.00638,"99":0.01276,"100":0.00957,"101":0.06059,"102":0.75579,"103":0.07973,"104":0.00319,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00638,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00319,"47":0,"48":0,"49":0,"50":0.00319,"51":0,"52":0,"53":0,"54":0,"55":0.00638,"56":0,"57":0,"58":0.00319,"59":0,"60":0,"61":0.02551,"62":0.00319,"63":0.00319,"64":0.00957,"65":0.00638,"66":0,"67":0,"68":0,"69":0.00319,"70":0.00957,"71":0.00319,"72":0,"73":0.00319,"74":0.00319,"75":0.00638,"76":0,"77":0.00638,"78":0.00638,"79":0.00638,"80":0.00638,"81":0.03189,"83":0.00319,"84":0.00319,"85":0.00319,"86":0.01913,"87":0.0287,"88":0.00957,"89":0.00319,"90":0.00319,"91":0.00638,"92":0.01913,"93":0.00638,"94":0.00638,"95":0.00957,"96":0.01276,"97":0.00957,"98":0.04784,"99":0.01595,"100":0.03189,"101":0.07335,"102":0.21685,"103":3.72475,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00319,"25":0,"26":0.02232,"27":0.00319,"28":0.00957,"29":0.00319,"30":0.00957,"31":0.01276,"32":0.00957,"33":0.00319,"34":0,"35":0.03189,"36":0.00319,"37":0,"38":0.02232,"39":0,"40":0,"41":0,"42":0.01595,"43":0,"44":0,"45":0,"46":0.00638,"47":0,"48":0,"49":0,"50":0.00638,"51":0.00319,"52":0,"53":0,"54":0.00957,"55":0.00319,"56":0.00319,"57":0.00957,"58":0.03189,"60":0.12437,"62":0.00319,"63":0.47835,"64":0.04146,"65":0.00319,"66":0,"67":0.00319,"68":0.00319,"69":0.00319,"70":0.00638,"71":0,"72":0,"73":0,"74":0.00638,"75":0,"76":0,"77":0,"78":0,"79":0.03189,"80":0,"81":0.00319,"82":0.00319,"83":0,"84":0.00957,"85":0.01913,"86":0.01276,"87":0.01276,"88":0.2041,"89":0.21366,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00319,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02551},B:{"12":0.01913,"13":0.00957,"14":0.00957,"15":0.01913,"16":0.01276,"17":0.01595,"18":0.07654,"79":0,"80":0,"81":0.00319,"83":0,"84":0.00957,"85":0.00638,"86":0,"87":0,"88":0,"89":0.00957,"90":0.00957,"91":0,"92":0.05102,"93":0,"94":0,"95":0,"96":0.00319,"97":0.00319,"98":0.00957,"99":0.02232,"100":0.01913,"101":0.03508,"102":0.11162,"103":0.96308,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00319,"15":0.00319,_:"0","3.1":0,"3.2":0,"5.1":0.00319,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00957,"13.1":0.01595,"14.1":0.01913,"15.1":0.00638,"15.2-15.3":0.01276,"15.4":0.00638,"15.5":0.0287,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00347,"5.0-5.1":0.00174,"6.0-6.1":0,"7.0-7.1":0.01302,"8.1-8.4":0.00029,"9.0-9.2":0.00087,"9.3":0.08828,"10.0-10.2":0.00058,"10.3":0.02952,"11.0-11.2":0.0081,"11.3-11.4":0.0055,"12.0-12.1":0.01071,"12.2-12.5":0.2631,"13.0-13.1":0.00405,"13.2":0.0026,"13.3":0.01968,"13.4-13.7":0.03705,"14.0-14.4":0.28915,"14.5-14.8":0.26426,"15.0-15.1":0.08973,"15.2-15.3":0.11867,"15.4":0.24631,"15.5":1.30623,"16.0":0.02315},P:{"4":0.29377,"5.0-5.4":0.02026,"6.2-6.4":0.02026,"7.2-7.4":0.31403,"8.2":0,"9.2":0.03039,"10.1":0.01013,"11.1-11.2":0.03039,"12.0":0,"13.0":0.05065,"14.0":0.13169,"15.0":0.1013,"16.0":0.28364,"17.0":1.10416,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00342,"4.2-4.3":0.01141,"4.4":0,"4.4.3-4.4.4":0.15749},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00319,"9":0,"10":0,"11":0.02551,"5.5":0},J:{"7":0,"10":0.01362},N:{"10":0,"11":0},L:{"0":66.32803},S:{"2.5":0.02724},R:{_:"0"},M:{"0":0.25882},Q:{"10.4":0.01362},O:{"0":6.51132},H:{"0":7.33162}}; 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 19021b8bb3a19a7..21548841a3ddcf2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js @@ -1 +1 @@ -module.exports={C:{"4":0.69524,"52":0.01986,"66":0.00497,"73":0.00497,"78":0.03476,"88":0.00993,"90":0.00993,"91":0.02483,"94":0.05959,"99":0.01986,"100":0.0149,"101":0.05959,"102":1.18687,"103":0.12415,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 92 93 95 96 97 98 104 105 3.5 3.6"},D:{"22":0.00497,"34":0.00497,"38":0.00993,"49":0.05463,"52":0.01986,"63":0.00497,"65":0.07946,"66":0.01986,"67":0.00993,"68":0.00497,"69":0.00993,"70":0.00497,"72":0.00993,"73":0.00497,"74":0.00993,"75":0.00993,"76":0.01986,"77":0.0149,"78":0.00993,"79":0.07449,"80":0.0149,"81":0.01986,"83":0.0149,"84":0.0149,"85":0.01986,"86":0.02483,"87":0.05959,"88":0.02483,"89":0.01986,"90":0.0298,"91":0.07449,"92":0.05463,"93":0.02483,"94":0.01986,"95":0.01986,"96":0.06952,"97":0.06456,"98":0.05959,"99":0.08939,"100":0.12415,"101":0.14898,"102":1.06769,"103":35.13445,"104":0.00993,"105":0.00993,_:"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 53 54 55 56 57 58 59 60 61 62 64 71 106"},F:{"28":0.00993,"85":0.00993,"86":0.00497,"87":0.0298,"88":0.92864,"89":0.25327,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02483,"15":0.00497,"17":0.00497,"18":0.0149,"92":0.00993,"96":0.00497,"97":0.00497,"98":0.00497,"99":0.00993,"100":0.00993,"101":0.2632,"102":0.10429,"103":3.38185,_:"13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.0149,"14":0.08442,"15":0.0298,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00993,"9.1":0.0149,"11.1":0.0149,"12.1":0.0298,"13.1":0.11422,"14.1":0.21354,"15.1":0.03973,"15.2-15.3":0.04469,"15.4":0.15891,"15.5":0.89388,"15.6":0.03476,"16.0":0.00497},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00462,"6.0-6.1":0.00092,"7.0-7.1":0.01109,"8.1-8.4":0.00185,"9.0-9.2":0.00555,"9.3":0.05823,"10.0-10.2":0.00277,"10.3":0.04991,"11.0-11.2":0.00647,"11.3-11.4":0.0305,"12.0-12.1":0.01109,"12.2-12.5":0.36877,"13.0-13.1":0.00647,"13.2":0.00462,"13.3":0.02218,"13.4-13.7":0.07671,"14.0-14.4":0.24122,"14.5-14.8":0.71351,"15.0-15.1":0.13586,"15.2-15.3":0.24769,"15.4":0.47136,"15.5":6.53708,"16.0":0.05453},P:{"4":0.09833,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":0.06555,"8.2":0.01034,"9.2":0.01019,"10.1":0.03025,"11.1-11.2":0.02185,"12.0":0.03068,"13.0":0.02185,"14.0":0.01093,"15.0":0.01093,"16.0":0.05463,"17.0":0.874},I:{"0":0,"3":0,"4":0.00288,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00288,"4.2-4.3":0.00575,"4.4":0,"4.4.3-4.4.4":0.04891},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00497,"11":0.11422,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.18126},Q:{"10.4":0},O:{"0":0.05035},H:{"0":0.18591},L:{"0":41.3192}}; +module.exports={C:{"2":0,"3":0,"4":0.34993,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.005,"67":0,"68":0.005,"69":0,"70":0,"71":0,"72":0,"73":0.005,"74":0,"75":0,"76":0,"77":0,"78":0.015,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.005,"89":0,"90":0.02,"91":0.01,"92":0,"93":0,"94":0.02999,"95":0.005,"96":0.005,"97":0,"98":0.005,"99":0.01,"100":0.01,"101":0.03499,"102":0.62987,"103":0.07998,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.005,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.005,"35":0,"36":0,"37":0,"38":0.005,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02999,"50":0,"51":0,"52":0.01,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.005,"64":0,"65":0.03999,"66":0.01,"67":0.005,"68":0.005,"69":0.005,"70":0.005,"71":0.005,"72":0.005,"73":0.005,"74":0.005,"75":0.005,"76":0.01,"77":0.005,"78":0.005,"79":0.03499,"80":0.005,"81":0.015,"83":0.01,"84":0.01,"85":0.01,"86":0.015,"87":0.02999,"88":0.02,"89":0.01,"90":0.015,"91":0.03499,"92":0.03999,"93":0.015,"94":0.01,"95":0.01,"96":0.03499,"97":0.02999,"98":0.02999,"99":0.04499,"100":0.05999,"101":0.07499,"102":0.52989,"103":17.45651,"104":0.005,"105":0.005,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.005,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.005,"86":0.005,"87":0.015,"88":0.45491,"89":0.13997,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.015,"13":0,"14":0,"15":0.005,"16":0.005,"17":0.005,"18":0.01,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.005,"93":0,"94":0,"95":0,"96":0.005,"97":0.005,"98":0.005,"99":0.005,"100":0.005,"101":0.12997,"102":0.05999,"103":1.71466,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01,"14":0.03999,"15":0.015,_:"0","3.1":0,"3.2":0,"5.1":0.005,"6.1":0,"7.1":0,"9.1":0.005,"10.1":0,"11.1":0.005,"12.1":0.015,"13.1":0.05999,"14.1":0.10498,"15.1":0.02,"15.2-15.3":0.02,"15.4":0.07998,"15.5":0.44491,"15.6":0.02,"16.0":0.005},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00726,"6.0-6.1":0.00145,"7.0-7.1":0.01743,"8.1-8.4":0.0029,"9.0-9.2":0.00871,"9.3":0.09149,"10.0-10.2":0.00436,"10.3":0.07842,"11.0-11.2":0.01017,"11.3-11.4":0.04792,"12.0-12.1":0.01743,"12.2-12.5":0.57945,"13.0-13.1":0.01017,"13.2":0.00726,"13.3":0.03485,"13.4-13.7":0.12054,"14.0-14.4":0.37904,"14.5-14.8":1.12114,"15.0-15.1":0.21348,"15.2-15.3":0.3892,"15.4":0.74065,"15.5":10.27177,"16.0":0.08568},P:{"4":0.09544,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06362,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02121,"12.0":0.0106,"13.0":0.03181,"14.0":0.02121,"15.0":0.0106,"16.0":0.05302,"17.0":0.83771,"18.0":0},I:{"0":0,"3":0,"4":0.01095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01095,"4.2-4.3":0.0219,"4.4":0,"4.4.3-4.4.4":0.18617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.005,"10":0,"11":0.05499,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.59374},S:{"2.5":0.005},R:{_:"0"},M:{"0":0.18004},Q:{"10.4":0},O:{"0":0.05001},H:{"0":0.18465}}; 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 b1ec7f8993fc53b..639824f4696e8cf 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.02112,"39":0.00845,"52":0.02112,"60":0.02957,"72":0.00422,"78":0.01267,"81":0.00422,"84":0.00422,"88":0.00422,"91":0.02534,"96":0.00422,"97":0.00422,"98":0.01267,"99":0.03379,"100":0.02112,"101":0.06758,"102":1.36435,"103":0.16896,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 85 86 87 89 90 92 93 94 95 104 105 3.5 3.6"},D:{"22":0.01267,"34":0.02534,"38":0.08448,"47":0.01267,"49":0.07181,"53":0.07603,"55":0.06336,"56":0.03379,"61":0.00422,"62":0.00845,"63":0.00845,"65":0.01267,"66":0.00422,"67":0.00845,"68":0.00845,"69":0.0169,"70":0.02112,"71":0.01267,"72":0.00845,"73":0.0169,"74":0.0169,"75":0.03379,"76":0.01267,"77":0.01267,"78":0.01267,"79":0.38016,"80":0.0169,"81":0.06336,"83":0.05914,"84":0.02957,"85":0.03802,"86":0.05491,"87":0.07181,"88":0.03379,"89":0.09293,"90":0.02534,"91":0.07603,"92":0.14784,"93":0.0169,"94":0.02957,"95":0.02534,"96":0.07181,"97":0.22387,"98":0.07603,"99":0.08026,"100":0.12672,"101":0.17741,"102":1.06867,"103":27.8953,"104":0.02112,"105":0.02534,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 64 106"},F:{"28":0.05069,"36":0.05491,"40":0.00845,"46":0.06758,"85":0.00845,"87":0.01267,"88":0.37594,"89":0.13517,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00422,"18":0.00422,"101":0.01267,"102":0.05491,"103":2.27674,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},E:{"4":0,"8":0.00422,"13":0.02957,"14":0.15629,"15":0.06336,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00845,"11.1":0.01267,"12.1":0.02534,"13.1":0.11827,"14.1":0.46464,"15.1":0.10138,"15.2-15.3":0.08026,"15.4":0.40128,"15.5":2.18381,"15.6":0.05069,"16.0":0.00845},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00277,"5.0-5.1":0.00694,"6.0-6.1":0.00971,"7.0-7.1":0.02497,"8.1-8.4":0.03468,"9.0-9.2":0.01942,"9.3":0.25383,"10.0-10.2":0.01526,"10.3":0.28989,"11.0-11.2":0.01664,"11.3-11.4":0.01942,"12.0-12.1":0.0319,"12.2-12.5":0.57285,"13.0-13.1":0.02358,"13.2":0.00971,"13.3":0.05132,"13.4-13.7":0.12206,"14.0-14.4":0.41056,"14.5-14.8":0.79894,"15.0-15.1":0.35647,"15.2-15.3":0.45495,"15.4":1.27053,"15.5":8.77303,"16.0":0.03884},P:{"4":0.87832,"5.0-5.4":0.01046,"6.2-6.4":0.04118,"7.2-7.4":0.05291,"8.2":0.02059,"9.2":0.02093,"10.1":0.02255,"11.1-11.2":0.04233,"12.0":0.03382,"13.0":0.03175,"14.0":0.04233,"15.0":0.04233,"16.0":0.12699,"17.0":1.61907},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00976,"4.4":0,"4.4.3-4.4.4":0.03067},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14784,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.15595},Q:{"10.4":0.00578},O:{"0":0.99925},H:{"0":0.64526},L:{"0":40.75942}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00876,"35":0,"36":0,"37":0,"38":0,"39":0.00438,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00876,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01314,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00438,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00438,"79":0,"80":0,"81":0.00438,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00438,"89":0,"90":0,"91":0.01314,"92":0,"93":0,"94":0.00438,"95":0,"96":0.00438,"97":0.00438,"98":0.00438,"99":0.01752,"100":0.00876,"101":0.03505,"102":0.63525,"103":0.07448,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00438,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01314,"35":0,"36":0,"37":0,"38":0.03505,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00438,"48":0,"49":0.03067,"50":0,"51":0,"52":0,"53":0.03505,"54":0,"55":0.02629,"56":0.01752,"57":0,"58":0.00438,"59":0,"60":0,"61":0,"62":0.00438,"63":0.00438,"64":0,"65":0.00438,"66":0.00438,"67":0.00438,"68":0.00438,"69":0.00876,"70":0.00876,"71":0.00438,"72":0.00438,"73":0.00876,"74":0.00876,"75":0.01314,"76":0.00438,"77":0.00438,"78":0.00876,"79":0.16648,"80":0.00876,"81":0.03067,"83":0.02629,"84":0.01314,"85":0.01752,"86":0.02629,"87":0.03505,"88":0.02191,"89":0.03943,"90":0.01314,"91":0.03505,"92":0.14457,"93":0.00876,"94":0.01314,"95":0.01314,"96":0.03505,"97":0.10076,"98":0.03505,"99":0.03505,"100":0.05695,"101":0.07886,"102":0.47315,"103":12.25366,"104":0.00876,"105":0.01314,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02191,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02629,"37":0.00876,"38":0,"39":0,"40":0.00438,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.03067,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00438,"62":0,"63":0.0701,"64":0.00438,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00438,"86":0,"87":0.00438,"88":0.16648,"89":0.05695,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00438,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00438,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00876,"102":0.03067,"103":1.00763,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01314,"14":0.06572,"15":0.02629,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00438,"11.1":0.00438,"12.1":0.01314,"13.1":0.05257,"14.1":0.20153,"15.1":0.04381,"15.2-15.3":0.03505,"15.4":0.17524,"15.5":0.95506,"15.6":0.02191,"16.0":0.00438},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00421,"5.0-5.1":0.01053,"6.0-6.1":0.01474,"7.0-7.1":0.03791,"8.1-8.4":0.05266,"9.0-9.2":0.02949,"9.3":0.38544,"10.0-10.2":0.02317,"10.3":0.4402,"11.0-11.2":0.02527,"11.3-11.4":0.02949,"12.0-12.1":0.04844,"12.2-12.5":0.86987,"13.0-13.1":0.03581,"13.2":0.01474,"13.3":0.07793,"13.4-13.7":0.18535,"14.0-14.4":0.62344,"14.5-14.8":1.21318,"15.0-15.1":0.5413,"15.2-15.3":0.69084,"15.4":1.9293,"15.5":13.32186,"16.0":0.05897},P:{"4":0.84242,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05265,"8.2":0,"9.2":0.01053,"10.1":0,"11.1-11.2":0.04212,"12.0":0.01053,"13.0":0.04212,"14.0":0.04212,"15.0":0.03159,"16.0":0.12636,"17.0":1.55848,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0243,"4.4":0,"4.4.3-4.4.4":0.07637},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.06572,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.52404},S:{"2.5":0},R:{_:"0"},M:{"0":0.15171},Q:{"10.4":0.00562},O:{"0":0.97209},H:{"0":0.62773}}; 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 2e825446f0b096d..a7692db2c4cc7a5 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:{"41":0.00424,"57":0.00849,"61":0.07213,"66":0.00849,"72":0.01273,"78":0.01697,"85":0.00424,"88":0.02546,"89":0.00424,"90":0.01273,"91":0.04243,"95":0.00424,"99":0.02122,"100":0.01273,"101":0.09335,"102":2.08756,"103":0.28428,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 86 87 92 93 94 96 97 98 104 105 3.5 3.6"},D:{"40":0.00849,"43":0.21215,"49":0.01273,"52":0.01697,"56":0.02122,"58":0.00849,"59":0.00849,"63":0.01273,"65":0.00424,"66":0.00424,"68":0.01273,"69":0.01273,"70":0.01697,"71":0.01697,"74":0.09759,"75":0.01273,"76":0.00424,"79":0.01697,"80":0.01697,"81":0.34368,"83":0.00424,"85":0.00849,"86":0.03394,"87":0.07213,"88":0.01273,"89":0.00849,"90":0.07637,"91":0.03394,"92":0.06365,"93":0.00849,"94":0.06365,"95":0.04243,"96":0.04667,"97":0.04243,"98":0.03394,"99":0.21639,"100":0.08062,"101":0.25458,"102":0.59826,"103":16.07248,"104":0.02122,"105":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 38 39 41 42 44 45 46 47 48 50 51 53 54 55 57 60 61 62 64 67 72 73 77 78 84 106"},F:{"53":0.00849,"79":0.05516,"80":0.00849,"84":0.11456,"85":0.02122,"86":0.11032,"87":0.0297,"88":0.61524,"89":0.52613,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 78 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0297,"13":0.01697,"14":0.00849,"15":0.01273,"16":0.01697,"17":0.00849,"18":0.10608,"83":0.01273,"84":0.01273,"85":0.00424,"88":0.00424,"89":0.0297,"90":0.00849,"91":0.00849,"92":0.04667,"96":0.01697,"97":0.00849,"98":0.0297,"99":0.02122,"100":0.02122,"101":0.03394,"102":0.10183,"103":2.99556,_:"79 80 81 86 87 93 94 95"},E:{"4":0,"13":0.00849,"14":0.00849,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00849,"12.1":0.00849,"13.1":0.05516,"14.1":0.04243,"15.1":0.00424,"15.2-15.3":0.00424,"15.4":0.02122,"15.5":0.15275,"15.6":0.0297},G:{"8":0.00463,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00103,"6.0-6.1":0.00051,"7.0-7.1":0.00927,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07158,"10.0-10.2":0.00206,"10.3":0.09115,"11.0-11.2":0.0103,"11.3-11.4":0.01184,"12.0-12.1":0.02266,"12.2-12.5":0.96767,"13.0-13.1":0.0515,"13.2":0.00463,"13.3":0.04017,"13.4-13.7":0.12617,"14.0-14.4":0.41457,"14.5-14.8":0.43208,"15.0-15.1":0.14986,"15.2-15.3":0.32033,"15.4":0.29715,"15.5":2.01722,"16.0":0.03038},P:{"4":0.50382,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.19943,"8.2":0.01034,"9.2":0.07347,"10.1":0.02099,"11.1-11.2":0.13645,"12.0":0.03149,"13.0":0.03149,"14.0":0.08397,"15.0":0.03149,"16.0":0.18893,"17.0":0.79771},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00052,"4.2-4.3":0.0009,"4.4":0,"4.4.3-4.4.4":0.02736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00457,"11":0.11423,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04029},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.06332},R:{_:"0"},M:{"0":0.3799},Q:{"10.4":0.01151},O:{"0":0.50653},H:{"0":6.07609},L:{"0":58.04882}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00432,"58":0,"59":0,"60":0,"61":0.03025,"62":0,"63":0,"64":0,"65":0,"66":0.00432,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00432,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00864,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00864,"89":0.00432,"90":0.00432,"91":0.01729,"92":0,"93":0,"94":0,"95":0.00432,"96":0,"97":0,"98":0.1383,"99":0.00864,"100":0.00432,"101":0.04322,"102":0.90762,"103":0.12534,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.01297,"41":0,"42":0,"43":0.09076,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00432,"50":0,"51":0,"52":0.00864,"53":0,"54":0,"55":0.00432,"56":0.00864,"57":0,"58":0.00432,"59":0.00432,"60":0,"61":0,"62":0,"63":0.00432,"64":0.00432,"65":0.00432,"66":0,"67":0,"68":0.00432,"69":0.00432,"70":0.00864,"71":0.00864,"72":0,"73":0,"74":0.04322,"75":0.00432,"76":0.00432,"77":0.00432,"78":0,"79":0.00864,"80":0.00864,"81":0.22907,"83":0.00432,"84":0,"85":0.00432,"86":0.01729,"87":0.04322,"88":0.00432,"89":0.00432,"90":0.03458,"91":0.01297,"92":0.03025,"93":0.00432,"94":0.02593,"95":0.01729,"96":0.02161,"97":0.01729,"98":0.01729,"99":0.09508,"100":0.03458,"101":0.11237,"102":0.26796,"103":6.97571,"104":0.00864,"105":0.00432,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00432,"25":0,"26":0.00432,"27":0.00864,"28":0.00432,"29":0,"30":0.00432,"31":0,"32":0.00432,"33":0,"34":0,"35":0.02161,"36":0,"37":0,"38":0.0389,"39":0,"40":0,"41":0,"42":0.00864,"43":0,"44":0,"45":0,"46":0.00864,"47":0.00432,"48":0,"49":0,"50":0.00432,"51":0.00864,"52":0,"53":0.00432,"54":0.02161,"55":0.00864,"56":0.00864,"57":0.03458,"58":0.12102,"60":0.20746,"62":0,"63":0.62237,"64":0.0389,"65":0.01297,"66":0,"67":0,"68":0,"69":0,"70":0.00432,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02161,"80":0.00432,"81":0,"82":0,"83":0,"84":0.04754,"85":0.00864,"86":0.04754,"87":0.01297,"88":0.26364,"89":0.22474,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00432,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00864},B:{"12":0.01297,"13":0.00864,"14":0.00432,"15":0.00864,"16":0.00864,"17":0.00432,"18":0.04754,"79":0,"80":0,"81":0,"83":0.00432,"84":0.00432,"85":0.00432,"86":0,"87":0,"88":0,"89":0.01297,"90":0.00432,"91":0.00432,"92":0.02161,"93":0,"94":0,"95":0,"96":0.00864,"97":0.00432,"98":0.01297,"99":0.00864,"100":0.00864,"101":0.01729,"102":0.04754,"103":1.30092,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00432,"14":0.00432,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00432,"12.1":0.00432,"13.1":0.02161,"14.1":0.01729,"15.1":0.00432,"15.2-15.3":0.00432,"15.4":0.00864,"15.5":0.06483,"15.6":0.01297,"16.0":0},G:{"8":0.00679,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00151,"6.0-6.1":0.00075,"7.0-7.1":0.01357,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1048,"10.0-10.2":0.00302,"10.3":0.13345,"11.0-11.2":0.01508,"11.3-11.4":0.01734,"12.0-12.1":0.03317,"12.2-12.5":1.41671,"13.0-13.1":0.0754,"13.2":0.00679,"13.3":0.05881,"13.4-13.7":0.18472,"14.0-14.4":0.60695,"14.5-14.8":0.63258,"15.0-15.1":0.21941,"15.2-15.3":0.46897,"15.4":0.43504,"15.5":2.9533,"16.0":0.04448},P:{"4":0.47959,"5.0-5.4":0.02041,"6.2-6.4":0.05102,"7.2-7.4":0.19387,"8.2":0,"9.2":0.07143,"10.1":0.02041,"11.1-11.2":0.14286,"12.0":0.03061,"13.0":0.04082,"14.0":0.08163,"15.0":0.03061,"16.0":0.18367,"17.0":0.7653,"18.0":0},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.00211,"4.4":0,"4.4.3-4.4.4":0.06396},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.04754,"5.5":0},J:{"7":0,"10":0.03975},N:{"10":0,"11":0},L:{"0":67.0048},S:{"2.5":0.06246},R:{_:"0"},M:{"0":0.37475},Q:{"10.4":0.01136},O:{"0":0.49966},H:{"0":5.99375}}; 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 e487c8a4829cb01..b9c61153ba29778 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.01122,"47":0.00374,"52":0.04114,"56":0.00374,"60":0.00748,"68":0.00748,"72":0.00374,"78":0.00748,"82":0.00374,"86":0.00748,"91":0.0374,"93":0.00374,"95":0.00748,"99":0.01122,"100":0.04114,"101":0.14586,"102":1.67552,"103":0.41888,_:"2 3 4 5 6 7 8 9 10 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 69 70 71 73 74 75 76 77 79 80 81 83 84 85 87 88 89 90 92 94 96 97 98 104 105 3.5 3.6"},D:{"40":0.00748,"48":0.00748,"49":0.02244,"63":0.00748,"67":0.01122,"69":0.04114,"70":0.00748,"74":0.00748,"75":0.01496,"76":0.00374,"79":0.0187,"80":0.00748,"81":0.02618,"83":0.00748,"85":0.00748,"86":0.00748,"87":0.0187,"88":0.03366,"89":0.00748,"90":0.0187,"91":0.04488,"92":0.0374,"93":0.0374,"94":0.03366,"95":0.00748,"96":0.05236,"97":0.06732,"98":0.04488,"99":0.14586,"100":0.16082,"101":0.19074,"102":0.83402,"103":18.19136,"104":0.38896,"105":0.04488,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 71 72 73 77 78 84 106"},F:{"79":0.06358,"84":0.00748,"85":0.0187,"86":0.02244,"87":0.01496,"88":0.4675,"89":0.31042,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02618,"13":0.01122,"14":0.0187,"15":0.01496,"16":0.01496,"17":0.02618,"18":0.07854,"84":0.0374,"89":0.01122,"90":0.00374,"92":0.04488,"94":0.00748,"95":0.01496,"96":0.21318,"97":0.0374,"98":0.01496,"99":0.01122,"100":0.02992,"101":0.10846,"102":0.11968,"103":4.94802,_:"79 80 81 83 85 86 87 88 91 93"},E:{"4":0,"13":0.02244,"14":0.02618,"15":0.00748,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00374,"12.1":0.00748,"13.1":0.07854,"14.1":0.15708,"15.1":0.03366,"15.2-15.3":0.0561,"15.4":0.1122,"15.5":0.66572,"15.6":0.02244},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00491,"6.0-6.1":0,"7.0-7.1":0.00701,"8.1-8.4":0.00491,"9.0-9.2":0.0014,"9.3":0.05542,"10.0-10.2":0,"10.3":0.06033,"11.0-11.2":0.00351,"11.3-11.4":0.00351,"12.0-12.1":0.00351,"12.2-12.5":0.55909,"13.0-13.1":0.00912,"13.2":0,"13.3":0.01754,"13.4-13.7":0.08839,"14.0-14.4":0.34443,"14.5-14.8":0.55698,"15.0-15.1":0.33812,"15.2-15.3":0.32479,"15.4":0.4223,"15.5":4.03567,"16.0":0.01894},P:{"4":0.64265,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.79566,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.08161,"12.0":0.0102,"13.0":0.11221,"14.0":0.14281,"15.0":0.08161,"16.0":0.31622,"17.0":2.85622},I:{"0":0,"3":0,"4":0.00022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00154,"4.2-4.3":0.00461,"4.4":0,"4.4.3-4.4.4":0.03119},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.43758,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.33173},Q:{"10.4":0},O:{"0":0.54453},H:{"0":1.64732},L:{"0":53.51509}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00379,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01516,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00379,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00379,"69":0,"70":0,"71":0,"72":0.00379,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00379,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00379,"87":0,"88":0,"89":0,"90":0.00379,"91":0.01516,"92":0,"93":0,"94":0,"95":0.00379,"96":0,"97":0,"98":0.00379,"99":0.00379,"100":0.01895,"101":0.06064,"102":0.73526,"103":0.16676,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00379,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00379,"47":0,"48":0.00379,"49":0.00758,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00379,"64":0,"65":0,"66":0,"67":0.00379,"68":0,"69":0.01516,"70":0.00379,"71":0,"72":0,"73":0,"74":0.00379,"75":0.00758,"76":0,"77":0,"78":0,"79":0.00758,"80":0.00379,"81":0.02653,"83":0.00379,"84":0.00379,"85":0.00379,"86":0.00379,"87":0.00758,"88":0.01516,"89":0.00379,"90":0.00758,"91":0.01516,"92":0.01516,"93":0.01516,"94":0.01137,"95":0.00379,"96":0.01895,"97":0.02653,"98":0.01895,"99":0.05685,"100":0.06443,"101":0.0758,"102":0.32973,"103":6.98876,"104":0.14781,"105":0.01516,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00379,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00379,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00379,"57":0,"58":0,"60":0.01137,"62":0,"63":0.28425,"64":0.00758,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02274,"80":0,"81":0,"82":0,"83":0,"84":0.00379,"85":0.00758,"86":0.00758,"87":0.00758,"88":0.17813,"89":0.11749,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00758,"13":0.00379,"14":0.00758,"15":0.00758,"16":0.00379,"17":0.01137,"18":0.03032,"79":0,"80":0,"81":0,"83":0,"84":0.01516,"85":0,"86":0,"87":0,"88":0,"89":0.00379,"90":0.00379,"91":0,"92":0.01895,"93":0,"94":0.00379,"95":0.00758,"96":0.07959,"97":0.01516,"98":0.00758,"99":0.00379,"100":0.01137,"101":0.04169,"102":0.04927,"103":1.88742,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00758,"14":0.01137,"15":0.00379,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00379,"13.1":0.03032,"14.1":0.06064,"15.1":0.01137,"15.2-15.3":0.02274,"15.4":0.04169,"15.5":0.25014,"15.6":0.00758,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00715,"6.0-6.1":0,"7.0-7.1":0.01022,"8.1-8.4":0.00715,"9.0-9.2":0.00204,"9.3":0.0807,"10.0-10.2":0,"10.3":0.08785,"11.0-11.2":0.00511,"11.3-11.4":0.00511,"12.0-12.1":0.00511,"12.2-12.5":0.81418,"13.0-13.1":0.01328,"13.2":0,"13.3":0.02554,"13.4-13.7":0.12872,"14.0-14.4":0.50158,"14.5-14.8":0.81111,"15.0-15.1":0.49239,"15.2-15.3":0.47298,"15.4":0.61497,"15.5":5.87699,"16.0":0.02758},P:{"4":0.63131,"5.0-5.4":0,"6.2-6.4":0.02036,"7.2-7.4":0.78404,"8.2":0,"9.2":0.01018,"10.1":0.03055,"11.1-11.2":0.10182,"12.0":0.02036,"13.0":0.10182,"14.0":0.14255,"15.0":0.08146,"16.0":0.29529,"17.0":2.81034,"18.0":0},I:{"0":0,"3":0,"4":0.0009,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00633,"4.2-4.3":0.019,"4.4":0,"4.4.3-4.4.4":0.12851},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.16676,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.02226},S:{"2.5":0},R:{_:"0"},M:{"0":0.32913},Q:{"10.4":0},O:{"0":0.54027},H:{"0":1.63443}}; 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 e91784cb4c33977..d33f1e946eac1d8 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:{"43":0.0045,"52":0.14406,"56":0.009,"57":0.0045,"59":0.0045,"60":0.04952,"68":0.07203,"73":0.0045,"76":0.0045,"78":0.29713,"80":0.01351,"83":0.01801,"88":0.0045,"89":0.02701,"91":0.27912,"94":0.03151,"95":0.03602,"96":0.06303,"97":0.009,"98":0.0045,"99":0.02251,"100":0.05853,"101":0.85088,"102":5.1863,"103":0.50873,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 58 61 62 63 64 65 66 67 69 70 71 72 74 75 77 79 81 82 84 85 86 87 90 92 93 104 105 3.5 3.6"},D:{"26":0.009,"49":0.08554,"53":0.0045,"63":0.0045,"65":0.009,"66":0.0045,"67":0.0045,"73":0.009,"76":0.03602,"78":0.01801,"79":0.02701,"80":0.009,"81":0.01801,"83":0.009,"85":0.01351,"86":0.01351,"87":0.06303,"88":0.009,"89":0.009,"90":0.01351,"91":0.02251,"92":0.02251,"93":0.08104,"94":0.11705,"95":0.02251,"96":0.09904,"97":0.04502,"98":0.14857,"99":0.36016,"100":0.09004,"101":0.14406,"102":1.17502,"103":20.20047,_:"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 54 55 56 57 58 59 60 61 62 64 68 69 70 71 72 74 75 77 84 104 105 106"},F:{"28":0.0045,"76":0.0045,"83":0.02251,"84":0.009,"85":0.01351,"87":0.01351,"88":0.74733,"89":0.33765,_:"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 77 78 79 80 81 82 86 90 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.0045,"18":0.04052,"84":0.01801,"85":0.0045,"92":0.02251,"96":0.009,"97":0.18458,"98":0.009,"99":0.02701,"100":0.01801,"101":0.15757,"102":0.08104,"103":5.33937,_:"12 13 14 15 79 80 81 83 86 87 88 89 90 91 93 94 95"},E:{"4":0,"8":0.0045,"12":0.02701,"13":0.02251,"14":0.17108,"15":0.06303,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01351,"10.1":0.01801,"11.1":0.03151,"12.1":0.07653,"13.1":0.33315,"14.1":0.95893,"15.1":0.09454,"15.2-15.3":0.18458,"15.4":0.36016,"15.5":3.00734,"15.6":0.12155,"16.0":0.009},G:{"8":0,"3.2":0,"4.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.08155,"10.0-10.2":0,"10.3":0.20311,"11.0-11.2":0.00308,"11.3-11.4":0.22619,"12.0-12.1":0.02,"12.2-12.5":0.58932,"13.0-13.1":0.03231,"13.2":0.00769,"13.3":0.17541,"13.4-13.7":0.07847,"14.0-14.4":0.46469,"14.5-14.8":0.85859,"15.0-15.1":0.18926,"15.2-15.3":0.33851,"15.4":1.15402,"15.5":10.72163,"16.0":0.05539},P:{"4":0.02104,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.47339,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.11572,"12.0":0.43131,"13.0":0.1578,"14.0":0.14728,"15.0":0.07364,"16.0":0.33663,"17.0":5.01796},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00364,"4.4":0,"4.4.3-4.4.4":0.10084},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07203,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.24746},Q:{"10.4":0},O:{"0":0.07149},H:{"0":0.03644},L:{"0":33.40354}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00474,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.07104,"53":0,"54":0,"55":0,"56":0.00474,"57":0,"58":0,"59":0.00474,"60":0.02368,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03789,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00474,"77":0,"78":0.14208,"79":0,"80":0.00474,"81":0,"82":0,"83":0.00947,"84":0,"85":0,"86":0,"87":0,"88":0.00474,"89":0.01421,"90":0,"91":0.13261,"92":0,"93":0,"94":0.01421,"95":0.01894,"96":0.02842,"97":0.00474,"98":0,"99":0.01421,"100":0.02842,"101":0.4073,"102":2.52902,"103":0.24627,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00474,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03789,"50":0,"51":0,"52":0,"53":0.00474,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00474,"64":0,"65":0.00474,"66":0.00474,"67":0.00474,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00474,"74":0,"75":0,"76":0.01894,"77":0,"78":0.00947,"79":0.01421,"80":0.00474,"81":0.0663,"83":0.00474,"84":0,"85":0.00474,"86":0.00474,"87":0.03315,"88":0.00474,"89":0.00474,"90":0.00474,"91":0.00947,"92":0.00947,"93":0.03789,"94":0.05683,"95":0.00947,"96":0.04736,"97":0.02368,"98":0.07104,"99":0.1705,"100":0.04736,"101":0.07104,"102":0.55885,"103":9.58566,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00474,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00474,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00947,"84":0.00474,"85":0.00474,"86":0,"87":0.00474,"88":0.3552,"89":0.16102,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00474,"17":0.00474,"18":0.01894,"79":0,"80":0,"81":0,"83":0,"84":0.00947,"85":0.00474,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00947,"93":0,"94":0,"95":0,"96":0.00474,"97":0.08525,"98":0.00474,"99":0.01421,"100":0.00947,"101":0.07578,"102":0.03789,"103":2.56218,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00474,"9":0,"10":0,"11":0,"12":0.01421,"13":0.00947,"14":0.08051,"15":0.02842,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00947,"10.1":0.00947,"11.1":0.01421,"12.1":0.03789,"13.1":0.15629,"14.1":0.45466,"15.1":0.04262,"15.2-15.3":0.08525,"15.4":0.1705,"15.5":1.42554,"15.6":0.05683,"16.0":0.00474},G:{"8":0,"3.2":0,"4.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.12276,"10.0-10.2":0,"10.3":0.30575,"11.0-11.2":0.00463,"11.3-11.4":0.34049,"12.0-12.1":0.03011,"12.2-12.5":0.88714,"13.0-13.1":0.04864,"13.2":0.01158,"13.3":0.26406,"13.4-13.7":0.11813,"14.0-14.4":0.69952,"14.5-14.8":1.29249,"15.0-15.1":0.2849,"15.2-15.3":0.50958,"15.4":1.73722,"15.5":16.13991,"16.0":0.08339},P:{"4":0.02123,"5.0-5.4":0,"6.2-6.4":0.01061,"7.2-7.4":0.44579,"8.2":0,"9.2":0.01061,"10.1":0,"11.1-11.2":0.10614,"12.0":0.41395,"13.0":0.15921,"14.0":0.13798,"15.0":0.0743,"16.0":0.30781,"17.0":4.7976,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01439,"4.4":0,"4.4.3-4.4.4":0.3982},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03315,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.00526},L:{"0":45.61869},S:{"2.5":0},R:{_:"0"},M:{"0":0.23688},Q:{"10.4":0.00526},O:{"0":0.06843},H:{"0":0.03489}}; 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 91df21cf3daa29f..f475d38a7bc9d79 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:{"29":0.01094,"41":0.00365,"43":0.00182,"45":0.00182,"47":0.00182,"49":0.00182,"51":0.00182,"52":0.00182,"56":0.00365,"60":0.00182,"63":0.00729,"65":0.00912,"72":0.01276,"73":0.00547,"84":0.01641,"87":0.00547,"88":0.00547,"89":0.03099,"91":0.04922,"93":0.00365,"94":0.00182,"95":0.00365,"96":0.00365,"98":0.00365,"99":0.01276,"100":0.02552,"101":0.32996,"102":1.97796,"103":0.2698,"104":0.00365,_:"2 3 4 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 42 44 46 48 50 53 54 55 57 58 59 61 62 64 66 67 68 69 70 71 74 75 76 77 78 79 80 81 82 83 85 86 90 92 97 105 3.5 3.6"},D:{"11":0.01094,"24":0.00365,"26":0.00547,"28":0.00365,"34":0.00365,"39":0.00182,"40":0.00365,"43":0.00912,"46":0.00182,"47":0.00547,"49":0.01276,"55":0.16407,"57":0.00365,"58":0.0237,"60":0.00729,"61":0.01458,"64":0.01641,"67":0.00182,"70":0.00729,"74":0.00365,"79":0.19871,"80":0.00729,"81":0.00365,"84":0.00729,"86":0.01823,"87":0.01823,"88":0.00912,"89":0.00547,"90":0.00182,"92":0.02188,"93":0.00365,"94":0.00365,"95":0.00182,"96":0.00912,"97":0.00547,"98":0.00912,"99":0.02188,"100":0.04011,"101":0.21694,"102":0.14037,"103":5.02419,"104":0.00182,"105":0.02188,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 27 29 30 31 32 33 35 36 37 38 41 42 44 45 48 50 51 52 53 54 56 59 62 63 65 66 68 69 71 72 73 75 76 77 78 83 85 91 106"},F:{"28":0.03281,"31":0.00365,"40":0.00182,"58":0.00729,"79":0.03281,"80":0.00547,"82":0.00547,"85":0.01823,"86":0.00365,"87":0.01823,"88":0.26434,"89":0.16225,_:"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 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03464,"13":0.01276,"14":0.00547,"15":0.00365,"16":0.01094,"17":0.00547,"18":0.04375,"84":0.01094,"85":0.00729,"89":0.02005,"92":0.00912,"96":0.00365,"98":0.03828,"99":0.00547,"100":0.0711,"101":0.02735,"102":0.08386,"103":1.78472,_:"79 80 81 83 86 87 88 90 91 93 94 95 97"},E:{"4":0,"8":0.00182,"14":0.00365,"15":0.00912,_:"0 5 6 7 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.00365,"13.1":0.01276,"14.1":0.03828,"15.1":0.00365,"15.2-15.3":0.00547,"15.4":0.05287,"15.5":0.10391,"15.6":0.02552},G:{"8":0.00062,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0,"6.0-6.1":0.00932,"7.0-7.1":0.00683,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0851,"10.0-10.2":0,"10.3":0.07703,"11.0-11.2":0.01988,"11.3-11.4":0.00683,"12.0-12.1":0.05156,"12.2-12.5":0.81873,"13.0-13.1":0.0205,"13.2":0.00621,"13.3":0.03789,"13.4-13.7":0.04597,"14.0-14.4":0.50379,"14.5-14.8":1.52814,"15.0-15.1":0.39446,"15.2-15.3":0.43297,"15.4":0.55038,"15.5":1.47409,"16.0":0.08635},P:{"4":0.09294,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.21686,_:"8.2 10.1 12.0","9.2":0.1549,"11.1-11.2":0.04131,"13.0":0.02065,"14.0":0.06196,"15.0":0.10327,"16.0":0.25817,"17.0":0.98103},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.00132,"4.4":0,"4.4.3-4.4.4":0.18542},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10027,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.05724},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.17172},Q:{"10.4":0.17172},O:{"0":2.15055},H:{"0":3.13529},L:{"0":73.46787}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00183,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00183,"64":0,"65":0.00183,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00183,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00366,"85":0,"86":0,"87":0.00183,"88":0.00183,"89":0.0055,"90":0,"91":0.00916,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00366,"100":0.0055,"101":0.06412,"102":0.38472,"103":0.0513,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00183,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00183,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00366,"41":0,"42":0,"43":0.00183,"44":0,"45":0,"46":0.0055,"47":0.00183,"48":0,"49":0.00183,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.02931,"56":0,"57":0,"58":0.00366,"59":0,"60":0.00183,"61":0.00366,"62":0.00183,"63":0,"64":0.00366,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00183,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.03664,"80":0.00183,"81":0.00183,"83":0,"84":0.00183,"85":0,"86":0.00366,"87":0.00366,"88":0.00183,"89":0.00183,"90":0,"91":0,"92":0.00366,"93":0,"94":0,"95":0,"96":0.00183,"97":0.00183,"98":0.00183,"99":0.00366,"100":0.00733,"101":0.0403,"102":0.02565,"103":0.9215,"104":0,"105":0.00366,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00183,"25":0,"26":0.00366,"27":0.00183,"28":0.00916,"29":0,"30":0.00183,"31":0,"32":0.00366,"33":0.00183,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00183,"42":0.00183,"43":0,"44":0,"45":0,"46":0.02748,"47":0.00366,"48":0,"49":0,"50":0.00366,"51":0.00183,"52":0,"53":0,"54":0,"55":0.00183,"56":0,"57":0.00183,"58":0.0055,"60":0.11908,"62":0,"63":0.11542,"64":0.0055,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00183,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0055,"80":0.00183,"81":0,"82":0.00183,"83":0,"84":0,"85":0.00366,"86":0,"87":0.00366,"88":0.04763,"89":0.02931,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00183},B:{"12":0.00733,"13":0.00183,"14":0.00183,"15":0,"16":0.00183,"17":0.00183,"18":0.00733,"79":0,"80":0,"81":0,"83":0,"84":0.00183,"85":0.00183,"86":0,"87":0,"88":0,"89":0.00366,"90":0,"91":0,"92":0.00183,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00733,"99":0.00183,"100":0.01282,"101":0.0055,"102":0.01466,"103":0.32976,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.00183,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00183,"14.1":0.00733,"15.1":0,"15.2-15.3":0.00183,"15.4":0.00916,"15.5":0.01832,"15.6":0.0055,"16.0":0},G:{"8":0.00074,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00074,"5.0-5.1":0,"6.0-6.1":0.01111,"7.0-7.1":0.00815,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10149,"10.0-10.2":0,"10.3":0.09186,"11.0-11.2":0.02371,"11.3-11.4":0.00815,"12.0-12.1":0.06149,"12.2-12.5":0.97642,"13.0-13.1":0.02445,"13.2":0.00741,"13.3":0.04519,"13.4-13.7":0.05482,"14.0-14.4":0.60082,"14.5-14.8":1.82245,"15.0-15.1":0.47043,"15.2-15.3":0.51636,"15.4":0.65638,"15.5":1.758,"16.0":0.10298},P:{"4":0.12067,"5.0-5.4":0.04022,"6.2-6.4":0.05028,"7.2-7.4":0.20112,"8.2":0.01006,"9.2":0.14079,"10.1":0.01006,"11.1-11.2":0.04022,"12.0":0,"13.0":0.03017,"14.0":0.06034,"15.0":0.10056,"16.0":0.2514,"17.0":0.94527,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00188,"4.2-4.3":0.00188,"4.4":0,"4.4.3-4.4.4":0.26288},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01649,"5.5":0},J:{"7":0,"10":0.05718},N:{"10":0,"11":0},L:{"0":80.75296},S:{"2.5":0.00817},R:{_:"0"},M:{"0":0.17153},Q:{"10.4":0.17153},O:{"0":2.14818},H:{"0":3.13184}}; 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 12a0e9a83b430ff..16c5381d9742228 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:{"66":0.44015,"78":0.07722,"91":0.44015,"99":0.07722,"102":4.40926,"103":0.51737,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 100 101 104 105 3.5 3.6"},D:{"56":0.22394,"91":0.07722,"102":1.25096,"103":60.39376,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 104 105 106"},F:{"44":0.07722,"88":1.17374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"99":0.14672,"103":3.01158,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102"},E:{"4":0,"13":0.07722,"14":0.37066,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.6 16.0","13.1":0.22394,"15.5":2.71814},G:{"8":0,"3.2":0,"4.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.62338,"13.0-13.1":0,"13.2":0.06937,"13.3":0,"13.4-13.7":0.13875,"14.0-14.4":0.20812,"14.5-14.8":1.03962,"15.0-15.1":0.55499,"15.2-15.3":0,"15.4":2.28736,"15.5":4.98998,"16.0":0},P:{"4":0.09294,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.21686,_:"8.2 10.1 12.0","9.2":0.1549,"11.1-11.2":0.04131,"13.0":0.02065,"14.0":0.06196,"15.0":0.10327,"16.0":0.25817,"17.0":0.95676},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.10425,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.24802},L:{"0":11.85656}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.35222,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05604,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.35222,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.05604,"100":0,"101":0,"102":3.53021,"103":0.40826,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.17611,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05604,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":1.00063,"103":48.81449,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.05604,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.94459,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.12008,"100":0,"101":0,"102":0,"103":2.47355,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.05604,"14":0.29619,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.17611,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":2.17736,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":1.07558,"13.0-13.1":0,"13.2":0.1197,"13.3":0,"13.4-13.7":0.2394,"14.0-14.4":0.3591,"14.5-14.8":1.79377,"15.0-15.1":0.95759,"15.2-15.3":0,"15.4":3.94663,"15.5":8.60975,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.8379,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.88055,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":17.47521},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.2172}}; 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 7fb7d91d3418fdf..494c0285b12f5fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js @@ -1 +1 @@ -module.exports={C:{"34":0.00365,"43":0.0292,"47":0.00913,"52":0.00913,"56":0.00183,"57":0.00365,"58":0.00548,"65":0.0073,"66":0.00365,"68":0.00183,"72":0.00913,"78":0.01278,"79":0.00365,"80":0.00365,"81":0.00183,"82":0.00183,"84":0.00183,"85":0.00183,"88":0.00365,"89":0.00183,"91":0.0219,"92":0.00183,"93":0.00183,"94":0.00913,"95":0.00548,"96":0.00548,"97":0.00548,"98":0.00548,"99":0.0511,"100":0.03103,"101":0.10585,"102":1.13333,"103":0.1898,"104":0.00913,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 59 60 61 62 63 64 67 69 70 71 73 74 75 76 77 83 86 87 90 105 3.5 3.6"},D:{"25":0.02008,"47":0.02555,"49":0.00365,"53":0.00365,"55":0.0073,"56":0.01095,"58":0.01278,"60":0.00183,"62":0.01095,"63":0.00548,"64":0.00913,"68":0.0073,"69":0.04928,"70":0.01278,"71":0.00183,"72":0.00548,"73":0.00548,"74":0.01095,"75":0.00913,"76":0.00913,"77":0.02555,"78":0.00913,"79":0.04745,"80":0.03833,"81":0.02373,"83":0.01278,"84":0.01095,"85":0.10403,"86":0.02738,"87":0.03833,"88":0.0219,"89":0.0219,"90":0.01825,"91":0.02373,"92":0.02008,"93":0.0219,"94":0.02373,"95":0.03833,"96":0.04015,"97":0.0511,"98":0.05475,"99":0.06023,"100":0.08395,"101":0.1168,"102":0.53838,"103":6.97515,"104":0.01643,"105":0.01825,_:"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 48 50 51 52 54 57 59 61 65 66 67 106"},F:{"36":0.00548,"64":0.00365,"66":0.00365,"67":0.00183,"69":0.00365,"70":0.00913,"75":0.00365,"79":0.0146,"80":0.00183,"82":0.01095,"84":0.00548,"85":0.0219,"86":0.0365,"87":0.0146,"88":0.20988,"89":0.1387,_:"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 65 68 71 72 73 74 76 77 78 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01643,"13":0.00183,"14":0.00365,"15":0.00548,"16":0.00365,"17":0.00365,"18":0.0438,"84":0.00913,"85":0.00548,"89":0.0073,"90":0.00548,"91":0.00183,"92":0.01643,"94":0.00183,"95":0.00183,"96":0.00548,"97":0.0073,"98":0.00548,"99":0.01643,"100":0.01095,"101":0.04015,"102":0.05658,"103":0.92163,_:"79 80 81 83 86 87 88 93"},E:{"4":0,"12":0.00183,"13":0.00913,"14":0.04198,"15":0.00913,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.01095,"9.1":0.00365,"10.1":0.00183,"11.1":0.00365,"12.1":0.00548,"13.1":0.02738,"14.1":0.04745,"15.1":0.01643,"15.2-15.3":0.0146,"15.4":0.03103,"15.5":0.12045,"15.6":0.00913,"16.0":0.00183},G:{"8":0.00251,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0.00167,"6.0-6.1":0,"7.0-7.1":0.00251,"8.1-8.4":0,"9.0-9.2":0.00084,"9.3":0.02006,"10.0-10.2":0.00251,"10.3":0.06019,"11.0-11.2":0.04765,"11.3-11.4":0.01254,"12.0-12.1":0.03762,"12.2-12.5":0.72309,"13.0-13.1":0.05684,"13.2":0.01588,"13.3":0.12623,"13.4-13.7":0.23824,"14.0-14.4":1.03824,"14.5-14.8":1.04827,"15.0-15.1":0.76071,"15.2-15.3":0.78662,"15.4":0.81504,"15.5":2.405,"16.0":0.05266},P:{"4":0.09294,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.04315,"8.2":0.01034,"9.2":0.04315,"10.1":0.0306,"11.1-11.2":0.02157,"12.0":0.01079,"13.0":0.03236,"14.0":0.05393,"15.0":0.04315,"16.0":0.16179,"17.0":0.63639},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.00159,"4.4":0,"4.4.3-4.4.4":0.03849},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00183,"10":0.00183,"11":0.02373,_:"6 7 9 5.5"},J:{"7":0,"10":0.00817},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.01635},R:{_:"0"},M:{"0":0.31879},Q:{"10.4":0.00817},O:{"0":1.29149},H:{"0":27.70424},L:{"0":46.57614}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00552,"44":0,"45":0,"46":0,"47":0.00184,"48":0,"49":0,"50":0,"51":0,"52":0.00184,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00184,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00184,"66":0,"67":0,"68":0.00552,"69":0,"70":0,"71":0,"72":0.00184,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00184,"79":0,"80":0.00184,"81":0,"82":0,"83":0,"84":0.00184,"85":0,"86":0,"87":0,"88":0.00184,"89":0,"90":0.00184,"91":0.00368,"92":0,"93":0.00184,"94":0.00368,"95":0.00368,"96":0.00184,"97":0.00184,"98":0.00184,"99":0.01287,"100":0.01103,"101":0.02575,"102":0.2262,"103":0.03678,"104":0.00184,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00368,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00184,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00368,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00184,"56":0.00184,"57":0,"58":0.00184,"59":0,"60":0,"61":0,"62":0.00184,"63":0.00184,"64":0.00184,"65":0,"66":0,"67":0,"68":0.00184,"69":0.0092,"70":0.00368,"71":0,"72":0.00184,"73":0.00184,"74":0.00184,"75":0.00184,"76":0.00184,"77":0.00552,"78":0.00184,"79":0.0092,"80":0.00736,"81":0.02023,"83":0.00184,"84":0.00184,"85":0.01839,"86":0.00552,"87":0.00736,"88":0.00368,"89":0.00368,"90":0.00368,"91":0.00368,"92":0.00368,"93":0.00368,"94":0.00552,"95":0.00736,"96":0.00736,"97":0.0092,"98":0.01103,"99":0.01103,"100":0.01655,"101":0.02207,"102":0.09931,"103":1.28546,"104":0.00368,"105":0.00368,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.00184,"24":0.04414,"25":0,"26":0.03126,"27":0.04598,"28":0.02575,"29":0.00736,"30":0.0662,"31":0.02575,"32":0.06804,"33":0.02391,"34":0,"35":0.00368,"36":0.00368,"37":0.01103,"38":0.02759,"39":0.00368,"40":0,"41":0.00184,"42":0.05517,"43":0.00184,"44":0.00368,"45":0.00736,"46":0.03126,"47":0.01471,"48":0,"49":0,"50":0.02759,"51":0.02391,"52":0,"53":0.00184,"54":0.0331,"55":0.02942,"56":0.01103,"57":0.03678,"58":0.12137,"60":0.75215,"62":0.00736,"63":0.7448,"64":0.0331,"65":0.00184,"66":0.00184,"67":0.00368,"68":0.00184,"69":0.00368,"70":0.0092,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00184,"80":0,"81":0,"82":0.00184,"83":0,"84":0,"85":0.00368,"86":0.00736,"87":0.00184,"88":0.03862,"89":0.02575,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00184,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.03494},B:{"12":0.00368,"13":0,"14":0.00184,"15":0.00184,"16":0,"17":0,"18":0.00736,"79":0,"80":0,"81":0,"83":0,"84":0.00184,"85":0,"86":0,"87":0,"88":0,"89":0.00184,"90":0.00184,"91":0,"92":0.00368,"93":0,"94":0,"95":0,"96":0.00184,"97":0.00184,"98":0.00184,"99":0.00368,"100":0.00368,"101":0.0092,"102":0.01287,"103":0.17287,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00184,"14":0.00736,"15":0.00184,_:"0","3.1":0,"3.2":0,"5.1":0.00184,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00184,"13.1":0.00552,"14.1":0.0092,"15.1":0.00368,"15.2-15.3":0.00184,"15.4":0.00552,"15.5":0.02207,"15.6":0.00184,"16.0":0},G:{"8":0.00308,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0.00205,"6.0-6.1":0,"7.0-7.1":0.00308,"8.1-8.4":0,"9.0-9.2":0.00103,"9.3":0.02466,"10.0-10.2":0.00308,"10.3":0.07397,"11.0-11.2":0.05856,"11.3-11.4":0.01541,"12.0-12.1":0.04623,"12.2-12.5":0.88865,"13.0-13.1":0.06986,"13.2":0.01952,"13.3":0.15513,"13.4-13.7":0.29279,"14.0-14.4":1.27595,"14.5-14.8":1.28828,"15.0-15.1":0.93488,"15.2-15.3":0.96672,"15.4":1.00165,"15.5":2.95565,"16.0":0.06472},P:{"4":0.05071,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05071,"8.2":0,"9.2":0.04057,"10.1":0,"11.1-11.2":0.02028,"12.0":0.01014,"13.0":0.03043,"14.0":0.05071,"15.0":0.04057,"16.0":0.15213,"17.0":0.59837,"18.0":0},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.00251,"4.4":0,"4.4.3-4.4.4":0.06094},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00368,"5.5":0},J:{"7":0,"10":0.00816},N:{"10":0,"11":0},L:{"0":49.48143},S:{"2.5":0.01632},R:{_:"0"},M:{"0":0.31828},Q:{"10.4":0.00816},O:{"0":1.28944},H:{"0":27.66018}}; 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 35a1fb0e23d1254..b0f8628b0b16176 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:{"52":0.01274,"78":0.0085,"80":0.0085,"82":0.00425,"88":0.02124,"89":0.0085,"90":0.00425,"91":0.02974,"95":0.0085,"96":0.01699,"97":0.00425,"98":0.0085,"99":0.02124,"100":0.03823,"101":0.06797,"102":1.53353,"103":0.18691,"104":0.00425,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 83 84 85 86 87 92 93 94 105 3.5 3.6"},D:{"38":0.0085,"47":0.0085,"49":0.01699,"65":0.00425,"66":0.00425,"67":0.0085,"69":0.01274,"70":0.01274,"72":0.0085,"73":0.0085,"74":0.01274,"75":0.01274,"76":0.01274,"79":0.06797,"80":0.02124,"81":0.02124,"83":0.01274,"84":0.0085,"85":0.0085,"86":0.01699,"87":0.02549,"88":0.01699,"89":0.01699,"90":0.01274,"91":0.26338,"92":0.03398,"93":0.02974,"94":0.03398,"95":0.01699,"96":0.07646,"97":0.06797,"98":0.05947,"99":0.12744,"100":0.13594,"101":0.2039,"102":4.61333,"103":24.80407,"104":0.03823,"105":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 53 54 55 56 57 58 59 60 61 62 63 64 68 71 77 78 106"},F:{"46":0.00425,"79":0.0085,"80":0.01274,"85":0.04248,"86":0.0085,"87":0.02974,"88":1.0705,"89":0.29736,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00425,"16":0.00425,"18":0.02124,"84":0.01274,"92":0.02124,"97":0.0085,"98":0.0085,"99":0.0085,"100":0.0085,"101":0.04673,"102":0.07222,"103":2.68898,_:"13 14 15 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.00425,"14":0.05947,"15":0.01274,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.0085,"13.1":0.06797,"14.1":0.11045,"15.1":0.01699,"15.2-15.3":0.01699,"15.4":0.04673,"15.5":0.56074,"15.6":0.02124},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0045,"6.0-6.1":0,"7.0-7.1":0.03152,"8.1-8.4":0.00225,"9.0-9.2":0.00056,"9.3":0.06586,"10.0-10.2":0,"10.3":0.01858,"11.0-11.2":0.00675,"11.3-11.4":0.00281,"12.0-12.1":0.00788,"12.2-12.5":0.29834,"13.0-13.1":0.00844,"13.2":0.00338,"13.3":0.03265,"13.4-13.7":0.06473,"14.0-14.4":0.15198,"14.5-14.8":0.34562,"15.0-15.1":0.12834,"15.2-15.3":0.21221,"15.4":0.38165,"15.5":3.6583,"16.0":0.04954},P:{"4":0.22958,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.43828,"8.2":0.01034,"9.2":0.03131,"10.1":0.0306,"11.1-11.2":0.14609,"12.0":0.04174,"13.0":0.13566,"14.0":0.16697,"15.0":0.09392,"16.0":0.33393,"17.0":2.20185},I:{"0":0,"3":0,"4":0.00164,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.00575,"4.4":0,"4.4.3-4.4.4":0.06574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05522,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.13805},Q:{"10.4":0},O:{"0":0.14955},H:{"0":0.29406},L:{"0":51.14986}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00431,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00431,"79":0,"80":0.00431,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00863,"89":0.00431,"90":0,"91":0.01294,"92":0,"93":0,"94":0,"95":0.00431,"96":0.00863,"97":0.00431,"98":0.00431,"99":0.00863,"100":0.01725,"101":0.03019,"102":0.70302,"103":0.08626,"104":0.00431,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00431,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00431,"48":0,"49":0.00863,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00431,"65":0.00431,"66":0,"67":0.00431,"68":0,"69":0.00431,"70":0.00863,"71":0,"72":0.00431,"73":0.00431,"74":0.00431,"75":0.00431,"76":0.00431,"77":0,"78":0,"79":0.03019,"80":0.01294,"81":0.01725,"83":0.00431,"84":0.00431,"85":0.00431,"86":0.00863,"87":0.02157,"88":0.00863,"89":0.00863,"90":0.00863,"91":0.11645,"92":0.01725,"93":0.01294,"94":0.01725,"95":0.01294,"96":0.03882,"97":0.03019,"98":0.03019,"99":0.05607,"100":0.06038,"101":0.09489,"102":1.99692,"103":10.75662,"104":0.01725,"105":0.00431,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03882,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00431,"80":0.00431,"81":0,"82":0,"83":0,"84":0,"85":0.01725,"86":0.00431,"87":0.01294,"88":0.46149,"89":0.12939,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00431,"17":0,"18":0.00863,"79":0,"80":0,"81":0,"83":0,"84":0.00431,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00863,"93":0,"94":0,"95":0,"96":0,"97":0.00431,"98":0.00431,"99":0.00431,"100":0.00431,"101":0.02157,"102":0.0345,"103":1.19039,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.02588,"15":0.00431,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00431,"13.1":0.03019,"14.1":0.04744,"15.1":0.00863,"15.2-15.3":0.00863,"15.4":0.02157,"15.5":0.24153,"15.6":0.00863,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00672,"6.0-6.1":0,"7.0-7.1":0.04701,"8.1-8.4":0.00336,"9.0-9.2":0.00084,"9.3":0.09821,"10.0-10.2":0,"10.3":0.0277,"11.0-11.2":0.01007,"11.3-11.4":0.0042,"12.0-12.1":0.01175,"12.2-12.5":0.44488,"13.0-13.1":0.01259,"13.2":0.00504,"13.3":0.04869,"13.4-13.7":0.09653,"14.0-14.4":0.22664,"14.5-14.8":0.51539,"15.0-15.1":0.19138,"15.2-15.3":0.31646,"15.4":0.56912,"15.5":5.45528,"16.0":0.07387},P:{"4":0.2341,"5.0-5.4":0.01018,"6.2-6.4":0.02036,"7.2-7.4":0.42749,"8.2":0.01018,"9.2":0.03054,"10.1":0.02036,"11.1-11.2":0.15268,"12.0":0.05089,"13.0":0.13232,"14.0":0.16285,"15.0":0.09161,"16.0":0.31553,"17.0":2.1171,"18.0":0},I:{"0":0,"3":0,"4":0.00608,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00608,"4.2-4.3":0.02128,"4.4":0,"4.4.3-4.4.4":0.2432},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02157,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.16412},S:{"2.5":0},R:{_:"0"},M:{"0":0.13649},Q:{"10.4":0},O:{"0":0.14786},H:{"0":0.29074}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js index d0a318e147dd30d..67625ad3cf280e4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js @@ -1 +1 @@ -module.exports={C:{"52":0.02281,"55":0.00912,"56":0.01369,"60":0.00912,"68":0.00456,"74":0.00456,"78":0.04106,"80":0.00456,"81":0.02737,"83":0.00456,"84":0.00456,"88":0.00912,"91":0.0958,"94":0.05018,"95":0.00912,"96":0.00912,"97":0.00912,"98":0.00912,"99":0.01369,"100":0.0365,"101":0.2646,"102":2.69614,"103":0.2281,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 75 76 77 79 82 85 86 87 89 90 92 93 104 105 3.5 3.6"},D:{"41":0.00912,"47":0.07755,"49":0.02281,"52":0.01825,"53":0.00912,"60":0.00912,"61":0.00456,"63":0.00456,"65":0.00912,"66":0.01369,"67":0.01825,"69":0.0365,"70":0.04106,"72":0.05931,"73":0.00912,"74":0.01369,"75":0.00912,"76":0.10493,"77":0.01369,"78":0.01825,"79":0.13686,"80":0.06387,"81":0.00912,"83":0.0365,"84":0.05931,"85":0.10949,"86":0.06387,"87":0.08668,"88":0.01825,"89":0.02737,"90":0.01825,"91":0.08212,"92":0.04562,"93":0.04562,"94":0.03193,"95":0.01369,"96":0.12317,"97":0.10949,"98":0.21898,"99":0.12317,"100":0.17792,"101":0.44251,"102":1.88867,"103":21.9341,"104":0.01825,"105":0.00912,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 48 50 51 54 55 56 57 58 59 62 64 68 71 106"},F:{"68":0.01825,"85":0.20529,"86":0.01825,"87":0.01825,"88":0.51094,"89":0.17336,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01825,"92":0.00456,"95":0.00456,"96":0.00456,"97":0.01825,"98":0.00912,"99":0.01825,"100":0.01825,"101":0.10949,"102":0.23722,"103":6.33206,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},E:{"4":0,"13":0.0365,"14":0.1916,"15":0.06387,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 7.1 10.1","6.1":0.00456,"9.1":0.00912,"11.1":0.02281,"12.1":0.06387,"13.1":0.29653,"14.1":0.53375,"15.1":0.11405,"15.2-15.3":0.10493,"15.4":0.39689,"15.5":3.63135,"15.6":0.14142,"16.0":0.01369},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00595,"8.1-8.4":0.00794,"9.0-9.2":0.0258,"9.3":0.0774,"10.0-10.2":0,"10.3":0.09724,"11.0-11.2":0.01985,"11.3-11.4":0.03175,"12.0-12.1":0.01191,"12.2-12.5":0.76999,"13.0-13.1":0.01191,"13.2":0.01191,"13.3":0.03374,"13.4-13.7":0.11907,"14.0-14.4":0.39095,"14.5-14.8":1.21055,"15.0-15.1":0.31554,"15.2-15.3":0.67076,"15.4":0.99225,"15.5":14.59601,"16.0":0.0893},P:{"4":0.09479,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.01053,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.01053,"12.0":0.01053,"13.0":0.04213,"14.0":0.05266,"15.0":0.0316,"16.0":0.12639,"17.0":4.95008},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00761,"4.2-4.3":0.00761,"4.4":0,"4.4.3-4.4.4":0.04459},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01291,"9":0.0904,"11":0.31639,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.53292},Q:{"10.4":0.00544},O:{"0":0.45135},H:{"0":0.38098},L:{"0":28.42989}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00939,"53":0,"54":0,"55":0.0047,"56":0.00939,"57":0,"58":0,"59":0,"60":0.0047,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0047,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01878,"79":0.0047,"80":0.0047,"81":0.01409,"82":0,"83":0.0047,"84":0.0047,"85":0,"86":0,"87":0,"88":0.00939,"89":0,"90":0,"91":0.05165,"92":0,"93":0.0047,"94":0.02348,"95":0.0047,"96":0.0047,"97":0.0047,"98":0.0047,"99":0.00939,"100":0.02348,"101":0.13616,"102":1.38972,"103":0.15494,"104":0.0047,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.0047,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.03756,"48":0,"49":0.00939,"50":0,"51":0,"52":0.00939,"53":0.0047,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0047,"61":0.0047,"62":0,"63":0.0047,"64":0,"65":0.0047,"66":0.0047,"67":0.00939,"68":0,"69":0.01878,"70":0.01878,"71":0,"72":0.02817,"73":0.0047,"74":0.0047,"75":0.0047,"76":0.05165,"77":0.00939,"78":0.00939,"79":0.06104,"80":0.02817,"81":0.0047,"83":0.01878,"84":0.02817,"85":0.05165,"86":0.02817,"87":0.03756,"88":0.00939,"89":0.01409,"90":0.00939,"91":0.03756,"92":0.02348,"93":0.02348,"94":0.01409,"95":0.00939,"96":0.05634,"97":0.05165,"98":0.10329,"99":0.05634,"100":0.07982,"101":0.20658,"102":0.87327,"103":10.35717,"104":0.00939,"105":0.0047,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0047,"62":0,"63":0.02817,"64":0,"65":0,"66":0,"67":0,"68":0.00939,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0939,"86":0.00939,"87":0.00939,"88":0.23475,"89":0.08921,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00939,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0047,"93":0,"94":0,"95":0.0047,"96":0.0047,"97":0.00939,"98":0.0047,"99":0.00939,"100":0.00939,"101":0.05165,"102":0.12207,"103":3.0095,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01409,"14":0.08921,"15":0.02817,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0.0047,"7.1":0,"9.1":0.0047,"10.1":0,"11.1":0.00939,"12.1":0.02817,"13.1":0.14085,"14.1":0.24884,"15.1":0.05165,"15.2-15.3":0.04695,"15.4":0.1878,"15.5":1.69959,"15.6":0.07982,"16.0":0.0047},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00889,"8.1-8.4":0.01185,"9.0-9.2":0.03851,"9.3":0.11553,"10.0-10.2":0,"10.3":0.14516,"11.0-11.2":0.02962,"11.3-11.4":0.0474,"12.0-12.1":0.01777,"12.2-12.5":1.14942,"13.0-13.1":0.01777,"13.2":0.01777,"13.3":0.05036,"13.4-13.7":0.17775,"14.0-14.4":0.5836,"14.5-14.8":1.80707,"15.0-15.1":0.47102,"15.2-15.3":1.0013,"15.4":1.48121,"15.5":21.78858,"16.0":0.13331},P:{"4":0.13477,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.02073,"8.2":0,"9.2":0.01037,"10.1":0,"11.1-11.2":0.02073,"12.0":0.01037,"13.0":0.05183,"14.0":0.05183,"15.0":0.0311,"16.0":0.1244,"17.0":4.73769,"18.0":0.01037},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02177,"4.2-4.3":0.02177,"4.4":0,"4.4.3-4.4.4":0.1275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00657,"9":0.03944,"10":0,"11":0.15118,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.38871},S:{"2.5":0},R:{_:"0"},M:{"0":0.51989},Q:{"10.4":0.00531},O:{"0":0.44032},H:{"0":0.37166}}; 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 731e2d0cd8293ee..546c0c9554d2073 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:{"59":0.02196,"78":0.02196,"80":0.00732,"81":0.00732,"91":0.02196,"95":0.04391,"96":0.02928,"100":0.01464,"101":0.2708,"102":43.37971,"103":3.62291,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 83 84 85 86 87 88 89 90 92 93 94 97 98 99 104 105 3.5 3.6"},D:{"49":0.01464,"60":0.01464,"66":0.09515,"69":0.08051,"79":0.05855,"80":0.01464,"83":0.0366,"84":0.05855,"85":3.25696,"86":0.05855,"87":0.07319,"89":0.02196,"90":0.00732,"91":0.24885,"92":0.00732,"93":0.00732,"94":0.00732,"95":0.00732,"96":0.0366,"97":0.02196,"98":0.04391,"99":0.04391,"100":0.08783,"101":0.27812,"102":0.94415,"103":12.19345,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 68 70 71 72 73 74 75 76 77 78 81 88 104 105 106"},F:{"86":0.02196,"87":0.05123,"88":0.60748,"89":0.18298,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01464,"18":0.00732,"85":0.00732,"99":0.00732,"100":0.00732,"101":0.0366,"102":0.12442,"103":2.98615,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98"},E:{"4":0,"13":0.02196,"14":0.1171,"15":0.0366,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.02928,"12.1":0.02928,"13.1":0.16102,"14.1":0.40255,"15.1":0.06587,"15.2-15.3":0.08051,"15.4":0.24153,"15.5":1.81511,"15.6":0.07319},G:{"8":0.00144,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00144,"6.0-6.1":0,"7.0-7.1":0.00288,"8.1-8.4":0,"9.0-9.2":0.00288,"9.3":0.02736,"10.0-10.2":0.0072,"10.3":0.07057,"11.0-11.2":0.0072,"11.3-11.4":0.04753,"12.0-12.1":0.00864,"12.2-12.5":0.25492,"13.0-13.1":0.00576,"13.2":0.00288,"13.3":0.01584,"13.4-13.7":0.06337,"14.0-14.4":0.25636,"14.5-14.8":0.84109,"15.0-15.1":0.229,"15.2-15.3":0.46807,"15.4":0.91886,"15.5":10.82327,"16.0":0.03745},P:{"4":0.02148,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.0764,"8.2":0.01034,"9.2":0.04315,"10.1":0.0306,"11.1-11.2":0.01074,"12.0":0.01079,"13.0":0.05457,"14.0":0.02148,"15.0":0.01074,"16.0":0.04295,"17.0":1.99721},I:{"0":0,"3":0,"4":0.00069,"2.1":0,"2.2":0,"2.3":0.00069,"4.1":0.00346,"4.2-4.3":0.00484,"4.4":0,"4.4.3-4.4.4":0.01176},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10247,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.20108},Q:{"10.4":0},O:{"0":0.01341},H:{"0":0.13199},L:{"0":10.38035}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00741,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.01483,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01483,"79":0,"80":0.00741,"81":0.00741,"82":0,"83":0.00741,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02224,"92":0,"93":0,"94":0,"95":0.03707,"96":0.02224,"97":0,"98":0,"99":0.00741,"100":0.01483,"101":0.20756,"102":32.26138,"103":2.69092,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00741,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01483,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.01483,"61":0,"62":0,"63":0,"64":0.00741,"65":0,"66":0.06672,"67":0.00741,"68":0,"69":0.0593,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00741,"79":0.04448,"80":0.00741,"81":0.00741,"83":0.02965,"84":0.04448,"85":2.41664,"86":0.04448,"87":0.05189,"88":0.00741,"89":0.02224,"90":0.00741,"91":0.18533,"92":0.00741,"93":0.00741,"94":0.00741,"95":0.00741,"96":0.02224,"97":0.01483,"98":0.02965,"99":0.02965,"100":0.06672,"101":0.20756,"102":0.70424,"103":9.10316,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00741,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.02224,"87":0.03707,"88":0.45219,"89":0.13343,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00741,"18":0.00741,"79":0,"80":0,"81":0,"83":0.00741,"84":0.00741,"85":0.00741,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00741,"98":0,"99":0.00741,"100":0.00741,"101":0.02965,"102":0.10378,"103":2.23873,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02224,"14":0.08154,"15":0.02224,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00741,"10.1":0,"11.1":0.02224,"12.1":0.02224,"13.1":0.11861,"14.1":0.29652,"15.1":0.04448,"15.2-15.3":0.0593,"15.4":0.17791,"15.5":1.34917,"15.6":0.05189,"16.0":0.00741},G:{"8":0.00256,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00256,"6.0-6.1":0,"7.0-7.1":0.00512,"8.1-8.4":0,"9.0-9.2":0.00512,"9.3":0.04863,"10.0-10.2":0.0128,"10.3":0.12541,"11.0-11.2":0.0128,"11.3-11.4":0.08446,"12.0-12.1":0.01536,"12.2-12.5":0.453,"13.0-13.1":0.01024,"13.2":0.00512,"13.3":0.02815,"13.4-13.7":0.11261,"14.0-14.4":0.45556,"14.5-14.8":1.49464,"15.0-15.1":0.40693,"15.2-15.3":0.83178,"15.4":1.63285,"15.5":19.23331,"16.0":0.06654},P:{"4":0.05077,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01015,"12.0":0.01015,"13.0":0.01015,"14.0":0.03046,"15.0":0.01015,"16.0":0.04062,"17.0":1.86833,"18.0":0},I:{"0":0,"3":0,"4":0.00186,"2.1":0,"2.2":0,"2.3":0.00186,"4.1":0.00932,"4.2-4.3":0.01304,"4.4":0,"4.4.3-4.4.4":0.03168},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00741,"9":0,"10":0,"11":0.07413,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":16.44056},S:{"2.5":0},R:{_:"0"},M:{"0":0.19403},Q:{"10.4":0},O:{"0":0.01294},H:{"0":0.12736}}; 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 9f2a4990cf33e93..3e4977a325e7989 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js @@ -1 +1 @@ -module.exports={C:{"52":0.00824,"72":0.00206,"78":0.00412,"87":0.00618,"89":0.00412,"91":0.01648,"94":0.00206,"95":0.00206,"98":0.00412,"99":0.01236,"100":0.02472,"101":0.0309,"102":0.89404,"103":0.15038,"104":0.00824,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 88 90 92 93 96 97 105 3.5 3.6"},D:{"49":0.00618,"58":0.00206,"65":0.0103,"67":0.00206,"69":0.00412,"70":0.00824,"71":0.00206,"72":0.00618,"74":0.00824,"75":0.00618,"76":0.00824,"78":0.00206,"79":0.0309,"80":0.00206,"81":0.00618,"83":0.00618,"84":0.00412,"85":0.00206,"86":0.0103,"87":0.01854,"88":0.01648,"89":0.0206,"90":0.00618,"91":0.01236,"92":0.01236,"93":0.00824,"94":0.00618,"95":0.02678,"96":0.02266,"97":0.02472,"98":0.01854,"99":0.03296,"100":0.04532,"101":0.05768,"102":0.38316,"103":15.59832,"104":0.04944,"105":0.01236,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 66 68 73 77 106"},F:{"73":0.00618,"85":0.01442,"86":0.00206,"87":0.00618,"88":0.2678,"89":0.17098,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00618,"89":0.00412,"92":0.00618,"96":0.00206,"98":0.00206,"99":0.00412,"100":0.00206,"101":0.00618,"102":0.01854,"103":1.09592,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 97"},E:{"4":0,"13":0.00618,"14":0.01648,"15":0.00618,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00206,"12.1":0.00618,"13.1":0.02266,"14.1":0.05562,"15.1":0.01236,"15.2-15.3":0.0103,"15.4":0.0309,"15.5":0.21424,"15.6":0.00824},G:{"8":0.00222,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00055,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00444,"8.1-8.4":0,"9.0-9.2":0.00222,"9.3":0.0283,"10.0-10.2":0.00166,"10.3":0.03496,"11.0-11.2":0.00499,"11.3-11.4":0.00999,"12.0-12.1":0.01332,"12.2-12.5":0.45166,"13.0-13.1":0.00555,"13.2":0.00333,"13.3":0.02109,"13.4-13.7":0.05604,"14.0-14.4":0.12984,"14.5-14.8":0.43557,"15.0-15.1":0.07491,"15.2-15.3":0.17312,"15.4":0.27632,"15.5":3.70652,"16.0":0.01887},P:{"4":0.08789,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.05493,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.01099,"12.0":0.0102,"13.0":0.03296,"14.0":0.01099,"15.0":0.02197,"16.0":0.04395,"17.0":0.53836},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.00227,"4.4":0,"4.4.3-4.4.4":0.04386},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.00824,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.03971},Q:{"10.4":0},O:{"0":0.69087},H:{"0":0.5413},L:{"0":72.50472}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00208,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00208,"88":0,"89":0,"90":0,"91":0.00415,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00208,"100":0.00415,"101":0.00623,"102":0.1909,"103":0.03113,"104":0.00208,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00208,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00208,"66":0,"67":0,"68":0,"69":0,"70":0.00208,"71":0,"72":0.00208,"73":0,"74":0.00208,"75":0.00208,"76":0.00208,"77":0,"78":0,"79":0.00623,"80":0,"81":0.00415,"83":0.00208,"84":0,"85":0,"86":0.00208,"87":0.00415,"88":0.00415,"89":0.00415,"90":0.00208,"91":0.00208,"92":0.00208,"93":0.00208,"94":0.00208,"95":0.00623,"96":0.00415,"97":0.00415,"98":0.00415,"99":0.00623,"100":0.01038,"101":0.01245,"102":0.08093,"103":3.2453,"104":0.01038,"105":0.00208,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.06225,"64":0.00415,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00208,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00208,"86":0,"87":0.00208,"88":0.05603,"89":0.03528,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00208},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00208,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00208,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00208,"102":0.00415,"103":0.22825,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00208,"14":0.00415,"15":0.00208,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00208,"13.1":0.00415,"14.1":0.01245,"15.1":0.00208,"15.2-15.3":0.00208,"15.4":0.00623,"15.5":0.04358,"15.6":0.00208,"16.0":0},G:{"8":0.00276,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00069,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00552,"8.1-8.4":0,"9.0-9.2":0.00276,"9.3":0.03517,"10.0-10.2":0.00207,"10.3":0.04345,"11.0-11.2":0.00621,"11.3-11.4":0.01241,"12.0-12.1":0.01655,"12.2-12.5":0.56139,"13.0-13.1":0.0069,"13.2":0.00414,"13.3":0.02621,"13.4-13.7":0.06966,"14.0-14.4":0.16138,"14.5-14.8":0.54139,"15.0-15.1":0.0931,"15.2-15.3":0.21518,"15.4":0.34345,"15.5":4.60695,"16.0":0.02345},P:{"4":0.11145,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05066,"8.2":0,"9.2":0.01013,"10.1":0,"11.1-11.2":0.01013,"12.0":0.01013,"13.0":0.0304,"14.0":0.02026,"15.0":0.02026,"16.0":0.04053,"17.0":0.49647,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00309,"4.2-4.3":0.00464,"4.4":0,"4.4.3-4.4.4":0.08962},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00208,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":86.3926},S:{"2.5":0},R:{_:"0"},M:{"0":0.03963},Q:{"10.4":0},O:{"0":0.68948},H:{"0":0.54021}}; 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 a162f386bd98159..097f0e751a9949f 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:{"102":0.02508,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"79":0.02508,"81":0.03762,"98":0.01254,"101":0.03762,"102":0.10241,"103":8.64842,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 104 105 106"},F:{"44":0.01254,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.01254,"80":0.02508,"84":0.01254,"100":0.01254,"101":0.05225,"102":0.08987,"103":1.41493,_:"12 13 14 16 17 18 79 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99"},E:{"4":0,"13":0.03762,"14":5.23754,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.6 16.0","14.1":0.01254,"15.2-15.3":0.01254,"15.4":0.08987,"15.5":0.24453},G:{"8":0,"3.2":0,"4.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.01334,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.1878,"12.2-12.5":0.13393,"13.0-13.1":0,"13.2":0,"13.3":0.01334,"13.4-13.7":0.04003,"14.0-14.4":0.41613,"14.5-14.8":0.8456,"15.0-15.1":0.5639,"15.2-15.3":0.24167,"15.4":0.48334,"15.5":1.62498,"16.0":0},P:{"4":0.01008,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.05039,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.08161,"12.0":0.0102,"13.0":0.07055,"14.0":0.05039,"15.0":0.09071,"16.0":0.30235,"17.0":2.66072},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.02508,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.01582},Q:{"10.4":0},O:{"0":4.36632},H:{"0":0.95855},L:{"0":69.93043}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00213,"101":0,"102":0.00638,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00638,"80":0,"81":0.0085,"83":0,"84":0,"85":0,"86":0,"87":0.0085,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00213,"99":0,"100":0,"101":0.0085,"102":0.02125,"103":1.83813,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00213,"45":0,"46":0.12325,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00213,"62":0,"63":0.02975,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00213},B:{"12":0,"13":0,"14":0,"15":0.00213,"16":0,"17":0,"18":0,"79":0,"80":0.00638,"81":0,"83":0,"84":0.00213,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00213,"101":0.01063,"102":0.01913,"103":0.30175,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0085,"14":1.1135,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.00213,"15.1":0,"15.2-15.3":0.00213,"15.4":0.01913,"15.5":0.051,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.01622,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.22833,"12.2-12.5":0.16283,"13.0-13.1":0,"13.2":0,"13.3":0.01622,"13.4-13.7":0.04867,"14.0-14.4":0.50593,"14.5-14.8":1.02808,"15.0-15.1":0.68559,"15.2-15.3":0.29382,"15.4":0.58765,"15.5":1.97565,"16.0":0},P:{"4":0.01023,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05113,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.06135,"14.0":0.05113,"15.0":0.09203,"16.0":0.29653,"17.0":2.6585,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00638,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.411},S:{"2.5":0},R:{_:"0"},M:{"0":0.01575},Q:{"10.4":0},O:{"0":4.347},H:{"0":0.95431}}; 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 cdd7b5cba8c6437..89006fd5617a3fe 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 97 98 99 100 101 102 103 104 105 3.5 3.6"},D:{"103":12.1485,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.6 16.0","15.5":6.5415},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":1.87072,"15.5":65.42143,"16.0":0},P:{"4":0.09294,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.04315,"8.2":0.01034,"9.2":0.04315,"10.1":0.0306,"11.1-11.2":0.02157,"12.0":0.01079,"13.0":0.03236,"14.0":0.05393,"15.0":0.04315,"16.0":0.16179,"17.0":0.63639},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.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":14.01784}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":2.27084,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":1.22233,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":2.22035,"15.5":77.64831,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":16.63818},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":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 c46632ef88a8539..04301c078b5fe62 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:{"51":0.01611,"52":0.03758,"53":0.01611,"54":0.01611,"55":0.01611,"56":0.01074,"57":0.01074,"59":0.03758,"78":0.08054,"88":0.00537,"91":0.08054,"93":0.02148,"94":0.20402,"95":0.00537,"96":0.01074,"98":0.00537,"99":0.01611,"100":0.03221,"101":0.1557,"102":2.42142,"103":0.19328,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 97 104 105 3.5 3.6"},D:{"26":0.00537,"34":0.03758,"38":0.11812,"39":0.00537,"40":0.00537,"41":0.01074,"43":0.00537,"44":0.00537,"45":0.01074,"46":0.00537,"47":0.01074,"48":0.00537,"49":0.05369,"51":0.01074,"53":0.02148,"56":0.01074,"57":0.00537,"58":0.00537,"59":0.01611,"60":0.00537,"61":0.02148,"62":0.00537,"63":0.00537,"64":0.00537,"65":0.02685,"66":0.0859,"67":0.01074,"68":0.01611,"69":0.02148,"70":0.00537,"71":0.00537,"72":0.00537,"73":0.00537,"74":0.01611,"75":0.01074,"76":0.05369,"77":0.01611,"78":0.01074,"79":0.19328,"80":0.01611,"81":0.01611,"83":0.02148,"84":0.01074,"85":0.01074,"86":0.01611,"87":0.10201,"88":0.01074,"89":0.01074,"90":0.0698,"91":0.02148,"92":0.06443,"93":0.13423,"94":0.05906,"95":0.05906,"96":0.09127,"97":0.09664,"98":0.10738,"99":0.2255,"100":0.22013,"101":0.40268,"102":2.33552,"103":28.23557,"104":0.04295,"105":0.02685,_:"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 42 50 52 54 55 106"},F:{"28":0.01074,"46":0.03758,"86":0.01074,"87":0.03758,"88":0.55838,"89":0.1557,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01074,"18":0.02148,"95":0.02148,"96":0.01074,"98":0.00537,"99":0.01074,"100":0.01074,"101":0.13423,"102":0.17718,"103":5.84684,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 97"},E:{"4":0,"12":0.00537,"13":0.06443,"14":0.26845,"15":0.10201,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00537,"10.1":0.02148,"11.1":0.05906,"12.1":0.0859,"13.1":0.49395,"14.1":0.8483,"15.1":0.19865,"15.2-15.3":0.14496,"15.4":0.63891,"15.5":4.75693,"15.6":0.13423,"16.0":0.01611},G:{"8":0.00192,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00192,"7.0-7.1":0.00961,"8.1-8.4":0.02498,"9.0-9.2":0.03075,"9.3":0.15374,"10.0-10.2":0.01345,"10.3":0.19601,"11.0-11.2":0.0269,"11.3-11.4":0.07302,"12.0-12.1":0.01922,"12.2-12.5":0.859,"13.0-13.1":0.00577,"13.2":0.00192,"13.3":0.04612,"13.4-13.7":0.13068,"14.0-14.4":0.2921,"14.5-14.8":1.16648,"15.0-15.1":0.26904,"15.2-15.3":0.5131,"15.4":0.92818,"15.5":14.10341,"16.0":0.05957},P:{"4":0.32457,"5.0-5.4":0.04074,"6.2-6.4":0.04198,"7.2-7.4":0.47339,"8.2":0.01034,"9.2":0.07347,"10.1":0.0306,"11.1-11.2":0.03246,"12.0":0.43131,"13.0":0.06491,"14.0":0.06491,"15.0":0.03246,"16.0":0.14065,"17.0":3.07262},I:{"0":0,"3":0,"4":0.0017,"2.1":0,"2.2":0.00255,"2.3":0.00085,"4.1":0.00085,"4.2-4.3":0.0068,"4.4":0,"4.4.3-4.4.4":0.02892},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03372,"9":0.02248,"11":0.30352,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.50478},Q:{"10.4":0},O:{"0":0.09262},H:{"0":0.14907},L:{"0":23.42557}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01124,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.01124,"52":0.02248,"53":0.01124,"54":0.01124,"55":0.01124,"56":0.00562,"57":0.00562,"58":0,"59":0.02248,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00562,"66":0,"67":0,"68":0.00562,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04496,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00562,"89":0.00562,"90":0,"91":0.04496,"92":0,"93":0.01124,"94":0.11802,"95":0.00562,"96":0.00562,"97":0,"98":0.00562,"99":0.01686,"100":0.01686,"101":0.10678,"102":1.4893,"103":0.16298,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00562,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01686,"35":0,"36":0,"37":0,"38":0.06744,"39":0.00562,"40":0.00562,"41":0.00562,"42":0.00562,"43":0.00562,"44":0.00562,"45":0.00562,"46":0.00562,"47":0.00562,"48":0.00562,"49":0.0281,"50":0,"51":0.00562,"52":0,"53":0.01124,"54":0,"55":0.00562,"56":0.00562,"57":0.00562,"58":0.00562,"59":0.01124,"60":0.00562,"61":0.01124,"62":0.00562,"63":0.00562,"64":0.00562,"65":0.01124,"66":0.04496,"67":0.00562,"68":0.01124,"69":0.01124,"70":0.00562,"71":0.00562,"72":0.00562,"73":0.00562,"74":0.01124,"75":0.00562,"76":0.0281,"77":0.00562,"78":0.00562,"79":0.10678,"80":0.01124,"81":0.01124,"83":0.01124,"84":0.00562,"85":0.00562,"86":0.00562,"87":0.0562,"88":0.00562,"89":0.01124,"90":0.03934,"91":0.01124,"92":0.03934,"93":0.07306,"94":0.03372,"95":0.03372,"96":0.05058,"97":0.0562,"98":0.06182,"99":0.12926,"100":0.12926,"101":0.2248,"102":1.28698,"103":16.02824,"104":0.02248,"105":0.01686,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00562,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.02248,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00562,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00562,"87":0.02248,"88":0.30348,"89":0.09554,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00562,"16":0,"17":0.00562,"18":0.01124,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00562,"93":0,"94":0,"95":0.01124,"96":0.00562,"97":0,"98":0.00562,"99":0.00562,"100":0.00562,"101":0.07306,"102":0.10678,"103":3.3439,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00562,"13":0.03372,"14":0.15174,"15":0.06182,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00562,"10.1":0.01124,"11.1":0.03372,"12.1":0.05058,"13.1":0.27538,"14.1":0.47208,"15.1":0.1124,"15.2-15.3":0.0843,"15.4":0.35968,"15.5":2.66388,"15.6":0.09554,"16.0":0.01124},G:{"8":0.0031,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0031,"7.0-7.1":0.01548,"8.1-8.4":0.04026,"9.0-9.2":0.04955,"9.3":0.24773,"10.0-10.2":0.02168,"10.3":0.31586,"11.0-11.2":0.04335,"11.3-11.4":0.11767,"12.0-12.1":0.03097,"12.2-12.5":1.38419,"13.0-13.1":0.00929,"13.2":0.0031,"13.3":0.07432,"13.4-13.7":0.21057,"14.0-14.4":0.47069,"14.5-14.8":1.87965,"15.0-15.1":0.43353,"15.2-15.3":0.8268,"15.4":1.49567,"15.5":22.7261,"16.0":0.096},P:{"4":0.31334,"5.0-5.4":0.01044,"6.2-6.4":0,"7.2-7.4":0.02089,"8.2":0,"9.2":0,"10.1":0.01044,"11.1-11.2":0.03133,"12.0":0.01044,"13.0":0.07311,"14.0":0.06267,"15.0":0.03133,"16.0":0.12534,"17.0":2.83049,"18.0":0.01044},I:{"0":0,"3":0,"4":0.00528,"2.1":0,"2.2":0.00792,"2.3":0.00264,"4.1":0.00264,"4.2-4.3":0.02112,"4.4":0,"4.4.3-4.4.4":0.08975},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0119,"9":0.0119,"10":0,"11":0.17852,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.63944},S:{"2.5":0},R:{_:"0"},M:{"0":0.47742},Q:{"10.4":0.00438},O:{"0":0.0876},H:{"0":0.14099}}; 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 3de8520df2f3018..0ca712fdd4aa280 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:{"52":0.00304,"80":0.01519,"86":0.00608,"91":0.00608,"95":0.00304,"99":0.00608,"100":0.00608,"101":0.03038,"102":0.49823,"103":0.06987,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 87 88 89 90 92 93 94 96 97 98 104 105 3.5 3.6"},D:{"11":0.00304,"34":0.00608,"38":0.02127,"39":0.00304,"41":0.00304,"49":0.01823,"53":0.00304,"58":0.00608,"62":0.03038,"64":0.00304,"65":0.00608,"68":0.00304,"69":0.00608,"70":0.00608,"72":0.00608,"73":0.00608,"74":0.00304,"75":0.01519,"76":0.00608,"77":0.00911,"78":0.00304,"79":0.07899,"80":0.00911,"81":0.01215,"83":0.00911,"84":0.00608,"85":0.00911,"86":0.03038,"87":0.03342,"88":0.01823,"89":0.06684,"90":0.00608,"91":0.06076,"92":0.07899,"93":0.04557,"94":0.00911,"95":0.03342,"96":0.03342,"97":0.03038,"98":0.03342,"99":0.03646,"100":0.07595,"101":0.10633,"102":0.81115,"103":18.48623,"104":0.06987,"105":0.01215,_:"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 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 63 66 67 71 106"},F:{"28":0.0243,"46":0.0243,"69":0.00911,"85":0.00911,"87":0.01519,"88":0.36456,"89":0.14886,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00304,"15":0.03646,"17":0.00304,"18":0.01823,"84":0.01823,"89":0.00304,"92":0.01519,"94":0.00911,"97":0.00608,"98":0.00608,"99":0.00911,"100":0.00304,"101":0.06076,"102":0.07595,"103":2.72205,_:"12 13 16 79 80 81 83 85 86 87 88 90 91 93 95 96"},E:{"4":0,"13":0.02127,"14":0.06076,"15":0.02734,_:"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.00608,"12.1":0.01215,"13.1":0.07899,"14.1":0.23089,"15.1":0.07595,"15.2-15.3":0.05165,"15.4":0.17013,"15.5":0.92051,"15.6":0.02127,"16.0":0.00304},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02481,"8.1-8.4":0,"9.0-9.2":0.00331,"9.3":0.06946,"10.0-10.2":0.00331,"10.3":0.03804,"11.0-11.2":0.00662,"11.3-11.4":0.00662,"12.0-12.1":0.00662,"12.2-12.5":0.44819,"13.0-13.1":0.01158,"13.2":0.00496,"13.3":0.04961,"13.4-13.7":0.10419,"14.0-14.4":0.42338,"14.5-14.8":0.88149,"15.0-15.1":0.2795,"15.2-15.3":0.6268,"15.4":1.31645,"15.5":11.48748,"16.0":0.09261},P:{"4":0.30585,"5.0-5.4":0.03098,"6.2-6.4":0.04131,"7.2-7.4":0.23448,"8.2":0.01034,"9.2":0.04078,"10.1":0.0306,"11.1-11.2":0.12234,"12.0":0.04078,"13.0":0.11214,"14.0":0.15292,"15.0":0.16312,"16.0":0.26507,"17.0":2.44676},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00348,"4.2-4.3":0.01914,"4.4":0,"4.4.3-4.4.4":0.13052},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.86837,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.11138},Q:{"10.4":0},O:{"0":1.07199},H:{"0":1.1467},L:{"0":49.01534}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00617,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00308,"87":0,"88":0,"89":0,"90":0,"91":0.00308,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00308,"100":0.00308,"101":0.01234,"102":0.17887,"103":0.02159,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00617,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00617,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00308,"59":0,"60":0,"61":0,"62":0.00925,"63":0,"64":0,"65":0.00308,"66":0,"67":0,"68":0,"69":0.00308,"70":0.00308,"71":0,"72":0.00308,"73":0.00308,"74":0,"75":0.00617,"76":0.00308,"77":0.00308,"78":0.00308,"79":0.02467,"80":0.00308,"81":0.01542,"83":0.00308,"84":0.00308,"85":0.00308,"86":0.00925,"87":0.00925,"88":0.00925,"89":0.02159,"90":0.00308,"91":0.0185,"92":0.04934,"93":0.01542,"94":0.00308,"95":0.0185,"96":0.01234,"97":0.00925,"98":0.01234,"99":0.01234,"100":0.02467,"101":0.03392,"102":0.25906,"103":5.74858,"104":0.02159,"105":0.00308,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00925,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00617,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01234,"60":0,"62":0,"63":0.20354,"64":0.03084,"65":0,"66":0,"67":0,"68":0,"69":0.00308,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00308,"86":0,"87":0.00308,"88":0.11102,"89":0.04626,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01234,"16":0,"17":0,"18":0.00617,"79":0,"80":0,"81":0,"83":0,"84":0.00617,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00308,"93":0,"94":0.00308,"95":0,"96":0,"97":0,"98":0.00308,"99":0.00308,"100":0,"101":0.0185,"102":0.02467,"103":0.84502,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00617,"14":0.0185,"15":0.00925,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00308,"13.1":0.02467,"14.1":0.07093,"15.1":0.02467,"15.2-15.3":0.01542,"15.4":0.05243,"15.5":0.28373,"15.6":0.00617,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03318,"8.1-8.4":0,"9.0-9.2":0.00442,"9.3":0.09289,"10.0-10.2":0.00442,"10.3":0.05087,"11.0-11.2":0.00885,"11.3-11.4":0.00885,"12.0-12.1":0.00885,"12.2-12.5":0.59939,"13.0-13.1":0.01548,"13.2":0.00664,"13.3":0.06635,"13.4-13.7":0.13934,"14.0-14.4":0.56621,"14.5-14.8":1.17887,"15.0-15.1":0.37379,"15.2-15.3":0.83826,"15.4":1.76057,"15.5":15.36297,"16.0":0.12386},P:{"4":0.31733,"5.0-5.4":0,"6.2-6.4":0.01024,"7.2-7.4":0.23544,"8.2":0,"9.2":0.04095,"10.1":0.01024,"11.1-11.2":0.12284,"12.0":0.04095,"13.0":0.10236,"14.0":0.14331,"15.0":0.16378,"16.0":0.25591,"17.0":2.41579,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00598,"4.2-4.3":0.0329,"4.4":0,"4.4.3-4.4.4":0.2243},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.57671,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.30818},S:{"2.5":0},R:{_:"0"},M:{"0":0.11066},Q:{"10.4":0},O:{"0":1.06506},H:{"0":1.13929}}; 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 cd4ebf05174ef08..0ca3bbd57d6852f 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:{"52":0.00797,"72":0.01196,"73":0.0558,"75":0.00797,"78":0.01196,"88":0.00797,"90":0.04385,"91":0.01196,"97":0.05182,"99":0.00797,"100":0.00797,"101":0.04783,"102":1.08021,"103":0.11958,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 76 77 79 80 81 82 83 84 85 86 87 89 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"11":0.00797,"38":0.00399,"47":0.01594,"49":0.0279,"50":0.00399,"56":0.00399,"65":0.0279,"66":0.00797,"67":0.01196,"68":0.0279,"69":0.00797,"70":0.00797,"73":0.02392,"74":0.00797,"75":0.04385,"76":0.08371,"77":0.00399,"78":0.00797,"79":0.10364,"80":0.01594,"81":0.01993,"83":0.04385,"84":0.00797,"85":0.00797,"86":0.01993,"87":0.04783,"88":0.00797,"89":0.0279,"90":0.01196,"91":0.04783,"92":0.04783,"93":0.07175,"94":0.01196,"95":0.01196,"96":0.06776,"97":0.09566,"98":0.06378,"99":0.10762,"100":0.09168,"101":0.27902,"102":1.02839,"103":23.7446,"104":0.00797,"105":0.00797,"106":0.00399,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 57 58 59 60 61 62 63 64 71 72"},F:{"28":0.01594,"36":0.00399,"71":0.00399,"85":0.01196,"86":0.00399,"87":0.05182,"88":1.5386,"89":0.4265,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00399,"16":0.00399,"17":0.00797,"18":0.01594,"84":0.00797,"90":0.00399,"92":0.01196,"98":0.01993,"99":0.00797,"100":0.01594,"101":0.0558,"102":0.09965,"103":3.9302,_:"12 13 14 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97"},E:{"4":0,"8":0.00399,"12":0.00399,"13":0.03587,"14":0.11161,"15":0.03986,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00797,"12.1":0.03189,"13.1":0.13154,"14.1":0.3707,"15.1":0.03587,"15.2-15.3":0.05979,"15.4":0.19133,"15.5":1.31937,"15.6":0.0558,"16.0":0.00797},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0019,"6.0-6.1":0.01426,"7.0-7.1":0.05514,"8.1-8.4":0,"9.0-9.2":0.01806,"9.3":0.04088,"10.0-10.2":0,"10.3":0.04848,"11.0-11.2":0.05039,"11.3-11.4":0.00856,"12.0-12.1":0.00856,"12.2-12.5":0.24908,"13.0-13.1":0.00761,"13.2":0.01331,"13.3":0.01236,"13.4-13.7":0.07415,"14.0-14.4":0.16922,"14.5-14.8":0.63601,"15.0-15.1":0.1426,"15.2-15.3":0.29756,"15.4":0.59798,"15.5":6.76505,"16.0":0.06845},P:{"4":0.19362,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.38725,"8.2":0.01034,"9.2":0.02038,"10.1":0.0306,"11.1-11.2":0.14267,"12.0":0.02038,"13.0":0.09172,"14.0":0.10191,"15.0":0.09172,"16.0":0.29553,"17.0":2.92476},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.06615},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11958,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.27063},Q:{"10.4":0},O:{"0":0.09021},H:{"0":0.1822},L:{"0":47.10135}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00406,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00406,"73":0.02029,"74":0,"75":0.00406,"76":0,"77":0,"78":0.00406,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00406,"89":0,"90":0.03246,"91":0.00406,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.02434,"98":0.0284,"99":0.00406,"100":0.00406,"101":0.02434,"102":0.48278,"103":0.05274,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00406,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00406,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00811,"48":0,"49":0.01217,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00406,"65":0.01217,"66":0.00406,"67":0.00406,"68":0.01217,"69":0.00406,"70":0.00406,"71":0,"72":0,"73":0.00811,"74":0.00406,"75":0.02029,"76":0.03246,"77":0.00406,"78":0.00406,"79":0.04057,"80":0.00811,"81":0.02029,"83":0.0284,"84":0.00406,"85":0.00406,"86":0.00811,"87":0.02434,"88":0.00406,"89":0.01217,"90":0.00406,"91":0.02029,"92":0.02434,"93":0.0284,"94":0.01217,"95":0.00406,"96":0.0284,"97":0.04057,"98":0.0284,"99":0.04463,"100":0.04057,"101":0.12171,"102":0.4341,"103":9.7368,"104":0.00406,"105":0.00406,"106":0.00406,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00811,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00406,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00811,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00406,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00406,"86":0,"87":0.02029,"88":0.62478,"89":0.17445,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00406,"16":0.00406,"17":0.00406,"18":0.00406,"79":0,"80":0,"81":0,"83":0,"84":0.00406,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00406,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00811,"99":0.00406,"100":0.00811,"101":0.02434,"102":0.0568,"103":1.64309,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00406,"13":0.01217,"14":0.04463,"15":0.01623,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00406,"12.1":0.01217,"13.1":0.05274,"14.1":0.15011,"15.1":0.01217,"15.2-15.3":0.02434,"15.4":0.07708,"15.5":0.53552,"15.6":0.02434,"16.0":0.00406},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00279,"6.0-6.1":0.02094,"7.0-7.1":0.08096,"8.1-8.4":0,"9.0-9.2":0.02652,"9.3":0.06002,"10.0-10.2":0,"10.3":0.07119,"11.0-11.2":0.07398,"11.3-11.4":0.01256,"12.0-12.1":0.01256,"12.2-12.5":0.36571,"13.0-13.1":0.01117,"13.2":0.01954,"13.3":0.01815,"13.4-13.7":0.10887,"14.0-14.4":0.24846,"14.5-14.8":0.93381,"15.0-15.1":0.20937,"15.2-15.3":0.43689,"15.4":0.87797,"15.5":9.93268,"16.0":0.1005},P:{"4":0.19459,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.37894,"8.2":0,"9.2":0.02048,"10.1":0,"11.1-11.2":0.15362,"12.0":0.02048,"13.0":0.09217,"14.0":0.09217,"15.0":0.09217,"16.0":0.28676,"17.0":2.87788,"18.0":0.01024},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.21548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05274,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.30619},S:{"2.5":0},R:{_:"0"},M:{"0":0.26744},Q:{"10.4":0},O:{"0":0.08915},H:{"0":0.18005}}; 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 d1e682c83671bf0..376aa4d078c8292 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.01094,"73":0.00547,"78":0.00547,"84":0.01094,"88":0.00547,"90":0.01094,"91":0.01094,"96":0.00547,"97":0.01094,"99":0.01094,"100":0.00547,"101":0.04374,"102":0.90222,"103":0.09296,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 87 89 92 93 94 95 98 104 105 3.5 3.6"},D:{"22":0.00547,"34":0.00547,"38":0.03828,"47":0.00547,"49":0.02187,"53":0.0164,"67":0.01094,"68":0.03281,"70":0.00547,"72":0.00547,"73":0.00547,"74":0.01094,"75":0.00547,"76":0.00547,"77":0.01094,"78":0.01094,"79":0.26246,"80":0.02187,"81":0.03828,"83":0.0164,"84":0.01094,"85":0.0164,"86":0.02734,"87":0.12576,"88":0.01094,"89":0.02734,"90":0.02187,"91":0.26793,"92":0.07108,"93":0.03281,"94":0.03281,"95":0.03828,"96":0.09842,"97":0.09842,"98":0.07655,"99":0.1203,"100":0.20232,"101":0.20232,"102":1.29045,"103":40.74754,"104":0.0164,"105":0.00547,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 69 71 106"},F:{"28":0.00547,"64":0.00547,"85":0.02734,"86":0.00547,"87":0.05468,"88":2.22001,"89":0.54133,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01094,"92":0.01094,"98":0.00547,"99":0.00547,"100":0.01094,"101":0.03281,"102":0.08749,"103":2.82696,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97"},E:{"4":0,"13":0.0164,"14":0.03828,"15":0.0164,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00547,"12.1":0.01094,"13.1":0.03828,"14.1":0.09296,"15.1":0.02187,"15.2-15.3":0.02187,"15.4":0.06562,"15.5":0.38823,"15.6":0.02187},G:{"8":0,"3.2":0.00031,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00281,"6.0-6.1":0.00125,"7.0-7.1":0.00094,"8.1-8.4":0,"9.0-9.2":0.00125,"9.3":0.01123,"10.0-10.2":0.00094,"10.3":0.01154,"11.0-11.2":0.00374,"11.3-11.4":0.00437,"12.0-12.1":0.00905,"12.2-12.5":0.10578,"13.0-13.1":0.00468,"13.2":0.00281,"13.3":0.01154,"13.4-13.7":0.0312,"14.0-14.4":0.08425,"14.5-14.8":0.21717,"15.0-15.1":0.07052,"15.2-15.3":0.11639,"15.4":0.2362,"15.5":2.10242,"16.0":0.01966},P:{"4":0.17977,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.07402,_:"8.2 10.1","9.2":0.05089,"11.1-11.2":0.05287,"12.0":0.06107,"13.0":0.03172,"14.0":0.05287,"15.0":0.03172,"16.0":0.10575,"17.0":0.77195},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00197,"4.2-4.3":0.00197,"4.4":0,"4.4.3-4.4.4":0.04138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05468,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.08611},Q:{"10.4":0},O:{"0":0.01813},H:{"0":0.15875},L:{"0":42.95574}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00551,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00551,"74":0,"75":0,"76":0,"77":0,"78":0.00551,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00551,"85":0,"86":0,"87":0,"88":0.00551,"89":0,"90":0.01654,"91":0.00551,"92":0,"93":0,"94":0,"95":0,"96":0.00551,"97":0.00551,"98":0,"99":0.00551,"100":0.00551,"101":0.02756,"102":0.51813,"103":0.05512,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00551,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00551,"35":0,"36":0,"37":0,"38":0.02205,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00551,"48":0,"49":0.01102,"50":0,"51":0,"52":0,"53":0.01102,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00551,"64":0,"65":0.00551,"66":0.01102,"67":0.00551,"68":0.01654,"69":0.00551,"70":0.00551,"71":0.00551,"72":0.00551,"73":0.00551,"74":0.01654,"75":0.00551,"76":0.00551,"77":0.00551,"78":0.00551,"79":0.14331,"80":0.01654,"81":0.03858,"83":0.01102,"84":0.00551,"85":0.01102,"86":0.01654,"87":0.07717,"88":0.01102,"89":0.01654,"90":0.01102,"91":0.14882,"92":0.05512,"93":0.02205,"94":0.02205,"95":0.02756,"96":0.06063,"97":0.05512,"98":0.0441,"99":0.06614,"100":0.11575,"101":0.12126,"102":0.72758,"103":22.57715,"104":0.01102,"105":0.00551,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00551,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01654,"64":0.00551,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01654,"86":0.00551,"87":0.03307,"88":1.22366,"89":0.29765,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00551,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00551,"99":0.00551,"100":0.00551,"101":0.01654,"102":0.04961,"103":1.57092,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00551,"14":0.02205,"15":0.00551,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00551,"10.1":0,"11.1":0.00551,"12.1":0.00551,"13.1":0.02205,"14.1":0.04961,"15.1":0.01102,"15.2-15.3":0.01102,"15.4":0.03307,"15.5":0.21497,"15.6":0.01102,"16.0":0},G:{"8":0,"3.2":0.00052,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00472,"6.0-6.1":0.0021,"7.0-7.1":0.00157,"8.1-8.4":0,"9.0-9.2":0.0021,"9.3":0.0189,"10.0-10.2":0.00157,"10.3":0.01942,"11.0-11.2":0.0063,"11.3-11.4":0.00735,"12.0-12.1":0.01522,"12.2-12.5":0.17796,"13.0-13.1":0.00787,"13.2":0.00472,"13.3":0.01942,"13.4-13.7":0.0525,"14.0-14.4":0.14174,"14.5-14.8":0.36537,"15.0-15.1":0.11864,"15.2-15.3":0.19581,"15.4":0.3974,"15.5":3.53721,"16.0":0.03307},P:{"4":0.18256,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.071,"8.2":0,"9.2":0.02028,"10.1":0,"11.1-11.2":0.05071,"12.0":0.01014,"13.0":0.04057,"14.0":0.05071,"15.0":0.03043,"16.0":0.10142,"17.0":0.73024,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00531,"4.2-4.3":0.00531,"4.4":0,"4.4.3-4.4.4":0.11144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03307,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.08122},S:{"2.5":0},R:{_:"0"},M:{"0":0.08527},Q:{"10.4":0},O:{"0":0.01795},H:{"0":0.15721}}; 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 20363e1ce88cf3e..719407674087341 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:{"35":0.00858,"48":0.45892,"51":0.01287,"52":0.01287,"58":0.03002,"60":0.01287,"68":0.22732,"78":0.10723,"82":0.05576,"84":0.09865,"91":0.32168,"97":0.00858,"98":0.01287,"99":0.00858,"100":0.02145,"101":0.21016,"102":2.77069,"103":0.36457,_:"2 3 4 5 6 7 8 9 10 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 49 50 53 54 55 56 57 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 85 86 87 88 89 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"49":0.0386,"67":0.00429,"73":0.00429,"76":0.00858,"77":0.10294,"78":0.01716,"79":0.00858,"80":0.05147,"81":0.00858,"84":0.04289,"86":0.00429,"87":0.05147,"89":0.01287,"90":0.00858,"91":0.01287,"92":0.08578,"93":0.02145,"94":0.02145,"95":0.01287,"96":0.02573,"97":0.0386,"98":0.02573,"99":0.16727,"100":0.11151,"101":0.14154,"102":2.09303,"103":18.58424,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 74 75 83 85 88 104 105 106"},F:{"36":0.01716,"46":0.01287,"72":0.05147,"84":0.00858,"85":0.01287,"87":0.00429,"88":0.39888,"89":0.16298,_:"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 73 74 75 76 77 78 79 80 81 82 83 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00858,"18":0.02145,"91":0.01287,"92":0.01716,"93":0.03002,"96":0.00858,"97":0.05147,"100":0.00858,"101":0.02145,"102":0.10294,"103":3.31969,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 94 95 98 99"},E:{"4":0,"11":0.00429,"13":0.06005,"14":0.32168,"15":0.06434,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00429,"11.1":0.18443,"12.1":0.05576,"13.1":0.77631,"14.1":1.42824,"15.1":0.24447,"15.2-15.3":0.23161,"15.4":1.23952,"15.5":3.35829,"15.6":0.19729,"16.0":0.02145},G:{"8":0.00376,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0169,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10139,"10.0-10.2":0.00563,"10.3":0.20653,"11.0-11.2":0.02629,"11.3-11.4":0.02629,"12.0-12.1":0.00939,"12.2-12.5":0.85053,"13.0-13.1":0.00751,"13.2":0.00563,"13.3":0.02253,"13.4-13.7":0.19339,"14.0-14.4":0.50318,"14.5-14.8":1.82685,"15.0-15.1":0.50506,"15.2-15.3":0.72661,"15.4":1.09461,"15.5":12.16275,"16.0":0.13706},P:{"4":0.05249,"5.0-5.4":0.0105,"6.2-6.4":0.04083,"7.2-7.4":0.12598,"8.2":0.021,"9.2":0.0105,"10.1":0.05305,"11.1-11.2":0.04199,"12.0":0.0105,"13.0":0.08399,"14.0":0.04199,"15.0":0.021,"16.0":0.23097,"17.0":3.35953},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01803,"4.4":0,"4.4.3-4.4.4":0.09617},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.52755,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.53674},Q:{"10.4":0},O:{"0":0.21127},H:{"0":0.88656},L:{"0":35.34319}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00446,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.20507,"49":0,"50":0,"51":0.00446,"52":0.00446,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.01337,"59":0,"60":0.00446,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.10253,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.04904,"79":0,"80":0,"81":0,"82":0.02229,"83":0,"84":0.04904,"85":0,"86":0,"87":0,"88":0.00446,"89":0,"90":0,"91":0.14266,"92":0,"93":0,"94":0,"95":0,"96":0.00446,"97":0.01783,"98":0.00892,"99":0.0535,"100":0.01337,"101":0.10253,"102":1.34632,"103":0.18278,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01783,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00446,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00446,"77":0.04458,"78":0.00892,"79":0.00446,"80":0.02229,"81":0.00446,"83":0,"84":0.01783,"85":0,"86":0,"87":0.02229,"88":0,"89":0.00446,"90":0.00446,"91":0.00446,"92":0.04012,"93":0.00892,"94":0.00892,"95":0.01337,"96":0.01337,"97":0.01783,"98":0.01337,"99":0.07579,"100":0.04904,"101":0.06687,"102":0.93172,"103":8.32309,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00892,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00446,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00446,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.02229,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00446,"85":0.00446,"86":0,"87":0.00446,"88":0.17832,"89":0.07133,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00446,"18":0.00892,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00446,"92":0.00892,"93":0.01337,"94":0,"95":0,"96":0.00446,"97":0.02229,"98":0,"99":0,"100":0.00446,"101":0.00892,"102":0.04904,"103":1.49789,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02675,"14":0.14266,"15":0.02675,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00446,"11.1":0.08024,"12.1":0.02675,"13.1":0.34772,"14.1":0.63749,"15.1":0.10699,"15.2-15.3":0.10253,"15.4":0.55279,"15.5":1.49789,"15.6":0.08916,"16.0":0.00892},G:{"8":0.00554,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02491,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14946,"10.0-10.2":0.0083,"10.3":0.30445,"11.0-11.2":0.03875,"11.3-11.4":0.03875,"12.0-12.1":0.01384,"12.2-12.5":1.2538,"13.0-13.1":0.01107,"13.2":0.0083,"13.3":0.03321,"13.4-13.7":0.28508,"14.0-14.4":0.74176,"14.5-14.8":2.69303,"15.0-15.1":0.74453,"15.2-15.3":1.07112,"15.4":1.61361,"15.5":17.92957,"16.0":0.20205},P:{"4":0.08396,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.12594,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.04198,"12.0":0.0105,"13.0":0.08396,"14.0":0.04198,"15.0":0.02099,"16.0":0.2204,"17.0":3.22199,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03862,"4.4":0,"4.4.3-4.4.4":0.20596},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.23182,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":46.44598},S:{"2.5":0},R:{_:"0"},M:{"0":0.52095},Q:{"10.4":0},O:{"0":0.20505},H:{"0":0.86048}}; 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 3edffd16877470a..5dc8bb3cfb45f0a 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:{"56":0.00225,"61":0.00225,"72":0.0045,"77":0.01574,"82":0.00899,"85":0.00225,"88":0.00674,"89":0.01349,"91":0.0045,"92":0.01574,"93":0.0045,"94":0.0045,"95":0.0045,"96":0.0045,"97":0.02023,"98":0.04271,"99":0.01798,"100":0.04721,"101":0.07418,"102":0.66766,"103":0.10566,"104":0.00225,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 62 63 64 65 66 67 68 69 70 71 73 74 75 76 78 79 80 81 83 84 86 87 90 105 3.5 3.6"},D:{"37":0.0045,"43":0.00225,"55":0.00674,"61":0.0045,"63":0.06969,"64":0.0045,"67":0.00225,"68":0.01349,"69":0.06519,"70":0.04946,"74":0.03372,"78":0.0045,"79":0.02922,"80":0.01124,"81":0.07418,"83":0.00674,"84":0.0045,"85":0.00225,"86":0.01124,"87":0.06519,"88":0.17534,"89":0.02473,"90":0.01574,"91":0.02922,"92":0.04496,"93":0.02023,"94":0.10116,"95":0.01349,"96":0.06294,"97":0.02473,"98":0.03372,"99":0.02698,"100":0.06969,"101":0.08318,"102":0.1641,"103":4.59266,"104":0.00225,"105":0.0045,_:"4 5 6 7 8 9 10 11 12 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 56 57 58 59 60 62 65 66 71 72 73 75 76 77 106"},F:{"80":0.0045,"84":0.00225,"85":0.0045,"86":0.01124,"87":0.00225,"88":0.03147,"89":0.02922,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00899,"13":0.00899,"14":0.0045,"15":0.01349,"16":0.02248,"17":0.01124,"18":0.06744,"80":0.0045,"81":0.00225,"84":0.00674,"85":0.00225,"87":0.00225,"88":0.00225,"89":0.00899,"90":0.00674,"91":0.00225,"92":0.01124,"94":0.0045,"95":0.00899,"96":0.01124,"97":0.00674,"98":0.02698,"99":0.02248,"100":0.02248,"101":0.04271,"102":0.04271,"103":1.81863,_:"79 83 86 93"},E:{"4":0,"9":0.0045,"12":0.01124,"13":0.00225,"14":0.01124,"15":0.00674,_:"0 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00225,"12.1":0.00225,"13.1":0.02922,"14.1":0.04271,"15.1":0.00899,"15.2-15.3":0.0045,"15.4":0.02248,"15.5":0.07418,"15.6":0.0045},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00328,"7.0-7.1":0.00036,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00784,"10.0-10.2":0.00401,"10.3":0.00803,"11.0-11.2":0.01021,"11.3-11.4":0.01094,"12.0-12.1":0.01879,"12.2-12.5":0.0881,"13.0-13.1":0.02298,"13.2":0.01113,"13.3":0.02791,"13.4-13.7":0.0436,"14.0-14.4":0.17986,"14.5-14.8":0.13881,"15.0-15.1":0.08373,"15.2-15.3":0.13808,"15.4":0.20284,"15.5":0.77196,"16.0":0.00274},P:{"4":0.14249,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.58015,"8.2":0.01034,"9.2":0.11196,"10.1":0.0306,"11.1-11.2":0.53943,"12.0":0.06107,"13.0":0.31552,"14.0":0.68193,"15.0":0.26463,"16.0":0.81424,"17.0":2.13738},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.00362,"4.4":0,"4.4.3-4.4.4":0.04884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11914,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.02326},R:{_:"0"},M:{"0":0.18605},Q:{"10.4":0},O:{"0":0.05426},H:{"0":0.71923},L:{"0":81.55198}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00228,"73":0,"74":0,"75":0,"76":0,"77":0.00456,"78":0,"79":0,"80":0,"81":0,"82":0.00228,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00228,"89":0.00228,"90":0,"91":0.00228,"92":0.00456,"93":0,"94":0.00684,"95":0.00456,"96":0.00456,"97":0.00456,"98":0.0114,"99":0.00684,"100":0.01596,"101":0.0228,"102":0.1596,"103":0.02508,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00228,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00684,"41":0,"42":0,"43":0.00456,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00228,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00228,"62":0,"63":0.01596,"64":0,"65":0,"66":0,"67":0,"68":0.00228,"69":0.01596,"70":0.0114,"71":0,"72":0,"73":0,"74":0.00684,"75":0,"76":0,"77":0,"78":0.00228,"79":0.00684,"80":0.00228,"81":0.01824,"83":0.00228,"84":0,"85":0.00228,"86":0.00228,"87":0.01596,"88":0.04104,"89":0.00456,"90":0.00456,"91":0.00684,"92":0.0114,"93":0.00456,"94":0.0228,"95":0.00228,"96":0.01368,"97":0.00684,"98":0.00912,"99":0.00684,"100":0.01596,"101":0.01824,"102":0.03648,"103":1.0488,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00456,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02736,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00228,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00228,"87":0,"88":0.00684,"89":0.00684,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00228,"13":0.00228,"14":0,"15":0.00456,"16":0.00456,"17":0.00228,"18":0.01596,"79":0,"80":0,"81":0,"83":0,"84":0.00228,"85":0,"86":0,"87":0,"88":0,"89":0.00228,"90":0.00228,"91":0,"92":0.00228,"93":0.00684,"94":0,"95":0.00228,"96":0.00456,"97":0.00228,"98":0.00912,"99":0.00684,"100":0.00684,"101":0.01368,"102":0.0114,"103":0.41952,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00228,"13":0,"14":0.00228,"15":0.00228,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00684,"14.1":0.00912,"15.1":0.00228,"15.2-15.3":0,"15.4":0.00456,"15.5":0.01596,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00414,"7.0-7.1":0.00046,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0099,"10.0-10.2":0.00506,"10.3":0.01013,"11.0-11.2":0.01289,"11.3-11.4":0.01381,"12.0-12.1":0.02371,"12.2-12.5":0.11116,"13.0-13.1":0.029,"13.2":0.01404,"13.3":0.03521,"13.4-13.7":0.05501,"14.0-14.4":0.22693,"14.5-14.8":0.17515,"15.0-15.1":0.10564,"15.2-15.3":0.17423,"15.4":0.25593,"15.5":0.974,"16.0":0.00345},P:{"4":0.15286,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.57069,"8.2":0.01019,"9.2":0.12229,"10.1":0,"11.1-11.2":0.54012,"12.0":0.06115,"13.0":0.31592,"14.0":0.6726,"15.0":0.26496,"16.0":0.79489,"17.0":2.10953,"18.0":0.01019},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00309,"4.2-4.3":0.00619,"4.4":0,"4.4.3-4.4.4":0.08352},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02736,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":87.08212},S:{"2.5":0.02316},R:{_:"0"},M:{"0":0.18528},Q:{"10.4":0},O:{"0":0.05404},H:{"0":0.71626}}; 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 2e734267afc3d67..6b3d2a20459e712 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js @@ -1 +1 @@ -module.exports={C:{"52":0.00887,"56":0.00887,"59":0.01774,"66":0.00887,"78":0.0133,"88":0.00443,"91":0.0133,"99":0.0133,"100":0.07094,"101":0.04877,"102":0.72274,"103":0.10198,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"25":0.00443,"38":0.00443,"41":0.00443,"49":0.03104,"52":0.01774,"53":0.00887,"55":0.00443,"56":0.00443,"63":0.00443,"65":0.0133,"66":0.07094,"67":0.00887,"68":0.00887,"69":0.0133,"70":0.00887,"71":0.00887,"72":0.00887,"73":0.00887,"74":0.0266,"75":0.02217,"76":0.03104,"77":0.14632,"78":0.07981,"79":0.11972,"80":0.01774,"81":0.02217,"83":0.05321,"84":0.0266,"85":0.02217,"86":0.04434,"87":0.06651,"88":0.0266,"89":0.03991,"90":0.03991,"91":0.09311,"92":0.11085,"93":0.08425,"94":0.03991,"95":0.04434,"96":0.08425,"97":0.09755,"98":0.07981,"99":0.11528,"100":0.16406,"101":0.24387,"102":1.30803,"103":29.06044,"104":0.03104,"105":0.0133,_:"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 43 44 45 46 47 48 50 51 54 57 58 59 60 61 62 64 106"},F:{"28":0.03547,"46":0.00887,"85":0.0133,"86":0.00887,"87":0.0266,"88":0.90897,"89":0.22613,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00887,"18":0.00887,"84":0.00443,"90":0.00443,"92":0.00887,"98":0.00443,"99":0.00443,"100":0.00887,"101":0.02217,"102":0.06208,"103":3.17918,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97"},E:{"4":0,"13":0.01774,"14":0.05764,"15":0.02217,_:"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.02217,"12.1":0.0133,"13.1":0.05764,"14.1":0.13745,"15.1":0.03547,"15.2-15.3":0.03104,"15.4":0.12415,"15.5":0.73604,"15.6":0.03104,"16.0":0.00443},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01022,"6.0-6.1":0.00243,"7.0-7.1":0.01265,"8.1-8.4":0.00973,"9.0-9.2":0.01411,"9.3":0.09296,"10.0-10.2":0.00438,"10.3":0.04283,"11.0-11.2":0.00973,"11.3-11.4":0.03699,"12.0-12.1":0.01314,"12.2-12.5":0.35089,"13.0-13.1":0.00876,"13.2":0.00633,"13.3":0.02287,"13.4-13.7":0.06619,"14.0-14.4":0.16547,"14.5-14.8":0.33921,"15.0-15.1":0.11291,"15.2-15.3":0.17861,"15.4":0.39518,"15.5":2.82905,"16.0":0.02871},P:{"4":0.39604,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.07402,_:"8.2 10.1","9.2":0.05089,"11.1-11.2":0.02141,"12.0":0.06107,"13.0":0.02141,"14.0":0.03211,"15.0":0.02141,"16.0":0.06422,"17.0":0.8349},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00378,"4.2-4.3":0.00504,"4.4":0,"4.4.3-4.4.4":0.05797},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.79785,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.10019},Q:{"10.4":0},O:{"0":0.74028},H:{"0":0.71666},L:{"0":49.15488}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00451,"53":0,"54":0,"55":0,"56":0.00451,"57":0,"58":0,"59":0.00903,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00451,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00451,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00451,"89":0,"90":0,"91":0.00903,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00451,"99":0.00903,"100":0.0316,"101":0.02708,"102":0.35209,"103":0.04965,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00451,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01354,"50":0,"51":0,"52":0.00903,"53":0.00451,"54":0,"55":0.00451,"56":0.00451,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00451,"66":0.0316,"67":0.00451,"68":0.00451,"69":0.00451,"70":0.00451,"71":0.00451,"72":0.00451,"73":0.00451,"74":0.00903,"75":0.00903,"76":0.01354,"77":0.06771,"78":0.03611,"79":0.05417,"80":0.00903,"81":0.01806,"83":0.02257,"84":0.01354,"85":0.00903,"86":0.02257,"87":0.0316,"88":0.01806,"89":0.01806,"90":0.01806,"91":0.04063,"92":0.09028,"93":0.03611,"94":0.01806,"95":0.02257,"96":0.04063,"97":0.04514,"98":0.03611,"99":0.05417,"100":0.07674,"101":0.11285,"102":0.59585,"103":13.14477,"104":0.01354,"105":0.00903,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01806,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00451,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00451,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00451,"56":0,"57":0,"58":0,"60":0.00903,"62":0,"63":0.07222,"64":0.00451,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00451,"86":0.00451,"87":0.01354,"88":0.41077,"89":0.09931,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00451,"18":0.00451,"79":0,"80":0,"81":0,"83":0,"84":0.00451,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00451,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00451,"99":0.00451,"100":0.00451,"101":0.00903,"102":0.0316,"103":1.44899,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00903,"14":0.02708,"15":0.00903,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00903,"12.1":0.00451,"13.1":0.02708,"14.1":0.0632,"15.1":0.01806,"15.2-15.3":0.01354,"15.4":0.05868,"15.5":0.33404,"15.6":0.01354,"16.0":0.00451},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.00385,"7.0-7.1":0.02004,"8.1-8.4":0.01542,"9.0-9.2":0.02235,"9.3":0.14723,"10.0-10.2":0.00694,"10.3":0.06783,"11.0-11.2":0.01542,"11.3-11.4":0.05858,"12.0-12.1":0.02081,"12.2-12.5":0.55578,"13.0-13.1":0.01388,"13.2":0.01002,"13.3":0.03623,"13.4-13.7":0.10484,"14.0-14.4":0.26209,"14.5-14.8":0.53728,"15.0-15.1":0.17884,"15.2-15.3":0.2829,"15.4":0.62593,"15.5":4.48093,"16.0":0.04548},P:{"4":0.41248,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01031,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02062,"12.0":0.01031,"13.0":0.02062,"14.0":0.03094,"15.0":0.02062,"16.0":0.06187,"17.0":0.78371,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00935,"4.2-4.3":0.01246,"4.4":0,"4.4.3-4.4.4":0.14333},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":1.26392,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.07743},S:{"2.5":0},R:{_:"0"},M:{"0":0.09875},Q:{"10.4":0},O:{"0":0.72964},H:{"0":0.70636}}; 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 b71fd48738ec645..930013319cb3664 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:{"11":0.00517,"47":0.00258,"52":0.031,"68":0.00258,"72":0.00517,"78":0.00258,"80":0.00258,"81":0.00258,"82":0.00258,"83":0.00258,"84":0.00258,"88":0.00258,"89":0.00517,"91":0.0155,"94":0.00258,"95":0.00517,"96":0.00258,"97":0.00258,"98":0.01292,"99":0.01808,"100":0.02841,"101":0.04133,"102":0.81106,"103":0.13173,"104":0.00517,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 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 85 86 87 90 92 93 105 3.5 3.6"},D:{"38":0.00517,"41":0.00258,"42":0.00258,"43":0.01292,"49":0.01808,"50":0.00258,"56":0.04649,"58":0.00517,"60":0.00258,"62":0.00258,"63":0.00775,"64":0.02066,"65":0.00775,"67":0.00775,"68":0.01033,"69":0.01292,"70":0.00775,"71":0.00775,"72":0.01808,"73":0.01292,"74":0.04649,"75":0.01033,"76":0.01292,"77":0.01033,"78":0.00775,"79":0.02841,"80":0.02325,"81":0.04908,"83":0.02583,"84":0.04391,"85":0.29963,"86":0.04908,"87":0.05941,"88":0.02325,"89":0.02325,"90":0.0155,"91":0.02841,"92":0.02583,"93":0.02583,"94":0.01808,"95":0.04391,"96":0.05166,"97":0.05166,"98":0.06199,"99":0.05683,"100":0.08266,"101":0.1059,"102":0.58376,"103":16.34522,"104":0.031,"105":0.02583,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 44 45 46 47 48 51 52 53 54 55 57 59 61 66 106"},F:{"28":0.00258,"79":0.01292,"84":0.00517,"85":0.03875,"86":0.00775,"87":0.01033,"88":0.35387,"89":0.26863,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01292,"13":0.00517,"14":0.00258,"15":0.00775,"16":0.00775,"18":0.02325,"84":0.00517,"85":0.00258,"89":0.00517,"92":0.01033,"99":0.00775,"100":0.00517,"101":0.01033,"102":0.02066,"103":0.91438,_:"17 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98"},E:{"4":0,"13":0.00517,"14":0.02583,"15":0.00517,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.00258,"11.1":0.00258,"12.1":0.00517,"13.1":0.02325,"14.1":0.07491,"15.1":0.01292,"15.2-15.3":0.01292,"15.4":0.031,"15.5":0.17823,"15.6":0.00775},G:{"8":0,"3.2":0.00041,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00369,"6.0-6.1":0.00041,"7.0-7.1":0.05411,"8.1-8.4":0.00082,"9.0-9.2":0.00328,"9.3":0.10698,"10.0-10.2":0.00451,"10.3":0.05534,"11.0-11.2":0.00779,"11.3-11.4":0.01353,"12.0-12.1":0.01107,"12.2-12.5":0.34513,"13.0-13.1":0.00861,"13.2":0.00656,"13.3":0.0164,"13.4-13.7":0.0623,"14.0-14.4":0.141,"14.5-14.8":0.28447,"15.0-15.1":0.10411,"15.2-15.3":0.15412,"15.4":0.26807,"15.5":2.31223,"16.0":0.02418},P:{"4":0.19984,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.04207,"8.2":0.01034,"9.2":0.04078,"10.1":0.0306,"11.1-11.2":0.03155,"12.0":0.01052,"13.0":0.07363,"14.0":0.04207,"15.0":0.03155,"16.0":0.12621,"17.0":1.28318},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00159,"4.2-4.3":0.00636,"4.4":0,"4.4.3-4.4.4":0.05139},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00258,"9":0.00258,"11":0.08782,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.13351},R:{_:"0"},M:{"0":0.07417},Q:{"10.4":0},O:{"0":3.09289},H:{"0":1.4395},L:{"0":67.00646}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00785,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00262,"69":0,"70":0,"71":0,"72":0.00262,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00523,"92":0,"93":0,"94":0,"95":0.00262,"96":0,"97":0,"98":0.00262,"99":0.00523,"100":0.00785,"101":0.01308,"102":0.22498,"103":0.03401,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00262,"41":0,"42":0.00262,"43":0.00523,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00523,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.01308,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00262,"64":0.00523,"65":0.00262,"66":0,"67":0.00262,"68":0.00262,"69":0.00262,"70":0.00262,"71":0.00262,"72":0.00523,"73":0.00262,"74":0.01308,"75":0.00262,"76":0.00262,"77":0.00262,"78":0.00262,"79":0.00785,"80":0.00523,"81":0.02354,"83":0.00785,"84":0.01308,"85":0.07848,"86":0.01308,"87":0.0157,"88":0.00785,"89":0.00785,"90":0.00523,"91":0.00785,"92":0.00785,"93":0.00785,"94":0.00523,"95":0.01308,"96":0.01308,"97":0.01308,"98":0.0157,"99":0.0157,"100":0.02354,"101":0.02878,"102":0.15434,"103":4.29286,"104":0.00785,"105":0.00785,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00523,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.00262,"55":0,"56":0,"57":0,"58":0.00262,"60":0.00262,"62":0,"63":0.12818,"64":0.01046,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00262,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00262,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01046,"86":0.00262,"87":0.00262,"88":0.09156,"89":0.07063,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00262,"13":0,"14":0.00262,"15":0.00262,"16":0.00262,"17":0,"18":0.00523,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00262,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00262,"100":0.00262,"101":0.00262,"102":0.00785,"103":0.24329,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00262,"14":0.00785,"15":0.00262,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00523,"14.1":0.01831,"15.1":0.00262,"15.2-15.3":0.00262,"15.4":0.00785,"15.5":0.04709,"15.6":0.00262,"16.0":0},G:{"8":0,"3.2":0.00054,"4.0-4.1":0,"4.2-4.3":0.00162,"5.0-5.1":0.00487,"6.0-6.1":0.00054,"7.0-7.1":0.07146,"8.1-8.4":0.00108,"9.0-9.2":0.00433,"9.3":0.14129,"10.0-10.2":0.00595,"10.3":0.07308,"11.0-11.2":0.01029,"11.3-11.4":0.01786,"12.0-12.1":0.01462,"12.2-12.5":0.45582,"13.0-13.1":0.01137,"13.2":0.00866,"13.3":0.02165,"13.4-13.7":0.08229,"14.0-14.4":0.18623,"14.5-14.8":0.3757,"15.0-15.1":0.13751,"15.2-15.3":0.20355,"15.4":0.35405,"15.5":3.05381,"16.0":0.03194},P:{"4":0.20593,"5.0-5.4":0.0103,"6.2-6.4":0.03089,"7.2-7.4":0.04119,"8.2":0,"9.2":0.02059,"10.1":0,"11.1-11.2":0.03089,"12.0":0.0103,"13.0":0.07208,"14.0":0.04119,"15.0":0.03089,"16.0":0.12356,"17.0":1.23559,"18.0":0},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.01193,"4.4":0,"4.4.3-4.4.4":0.09647},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02354,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0.00738},L:{"0":80.27526},S:{"2.5":0.13291},R:{_:"0"},M:{"0":0.07384},Q:{"10.4":0},O:{"0":3.07913},H:{"0":1.43309}}; 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 6daa856af8c4905..83ff00ffc21e47e 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.08785,"66":0.00351,"68":0.00703,"72":0.00703,"78":0.0246,"80":0.00351,"84":0.00703,"86":0.00351,"87":0.01054,"88":0.01406,"89":0.01054,"90":0.00351,"91":0.08434,"92":0.00703,"93":0.03865,"94":0.0492,"95":0.01406,"96":0.01054,"97":0.01757,"98":0.0246,"99":0.04217,"100":0.06325,"101":0.26004,"102":4.0165,"103":0.36194,"104":0.00351,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 81 82 83 85 105 3.5 3.6"},D:{"38":0.00703,"49":0.07028,"60":0.01054,"63":0.01054,"69":0.00703,"74":0.00351,"76":0.01054,"78":0.00703,"79":0.22841,"80":0.00703,"81":0.00703,"83":0.01054,"84":0.02108,"85":0.00703,"86":0.01757,"87":0.02811,"88":0.01054,"89":0.02108,"90":0.01054,"91":0.01757,"92":0.01757,"93":0.01757,"94":0.02108,"95":0.09488,"96":0.05974,"97":0.05271,"98":0.05271,"99":0.10191,"100":0.11948,"101":0.14407,"102":0.87147,"103":16.28739,"104":0.00703,"105":0.00351,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 64 65 66 67 68 70 71 72 73 75 77 106"},F:{"36":0.00703,"73":0.00703,"78":0.00703,"79":0.01406,"80":0.00703,"82":0.01054,"83":0.00703,"84":0.03865,"85":0.06677,"86":0.04217,"87":0.13705,"88":4.31519,"89":1.17368,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01406,"17":0.00351,"18":0.00351,"90":0.00351,"92":0.01054,"95":0.00351,"96":0.00703,"97":0.00703,"98":0.01406,"99":0.01406,"100":0.01406,"101":0.04568,"102":0.09839,"103":2.75849,_:"12 13 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94"},E:{"4":0,"13":0.00703,"14":0.02811,"15":0.02108,_:"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.00703,"13.1":0.03514,"14.1":0.07028,"15.1":0.03163,"15.2-15.3":0.01757,"15.4":0.06325,"15.5":0.33032,"15.6":0.01757,"16.0":0.00351},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00163,"7.0-7.1":0.00109,"8.1-8.4":0.00109,"9.0-9.2":0.00054,"9.3":0.01523,"10.0-10.2":0,"10.3":0.00762,"11.0-11.2":0.00054,"11.3-11.4":0.00218,"12.0-12.1":0.00381,"12.2-12.5":0.07128,"13.0-13.1":0.01143,"13.2":0.00272,"13.3":0.01143,"13.4-13.7":0.04625,"14.0-14.4":0.10828,"14.5-14.8":0.28402,"15.0-15.1":0.07781,"15.2-15.3":0.16922,"15.4":0.31667,"15.5":4.12865,"16.0":0.04407},P:{"4":0.17607,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.01036,"8.2":0.01034,"9.2":0.03107,"10.1":0.0306,"11.1-11.2":0.06214,"12.0":0.01036,"13.0":0.05179,"14.0":0.0725,"15.0":0.03107,"16.0":0.16571,"17.0":2.65139},I:{"0":0,"3":0,"4":0.00259,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01557,"4.2-4.3":0.01081,"4.4":0,"4.4.3-4.4.4":0.02292},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05974,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.53185},Q:{"10.4":0},O:{"0":0.02594},H:{"0":2.19217},L:{"0":54.53222}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.03176,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00353,"67":0,"68":0.00353,"69":0,"70":0,"71":0,"72":0.00353,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01059,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00353,"85":0,"86":0.00353,"87":0.00353,"88":0.00353,"89":0.00353,"90":0,"91":0.02823,"92":0.00353,"93":0.01412,"94":0.01765,"95":0.00706,"96":0.00353,"97":0.00706,"98":0.01059,"99":0.01765,"100":0.02823,"101":0.10587,"102":1.50335,"103":0.17998,"104":0.00353,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00353,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0247,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00353,"61":0,"62":0,"63":0.00353,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00353,"70":0.00353,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00353,"77":0,"78":0.00353,"79":0.08117,"80":0.00353,"81":0.00706,"83":0.00353,"84":0.00706,"85":0.00353,"86":0.00706,"87":0.01059,"88":0.00353,"89":0.00706,"90":0.00353,"91":0.00706,"92":0.01059,"93":0.00706,"94":0.00706,"95":0.03529,"96":0.02117,"97":0.01765,"98":0.01765,"99":0.03882,"100":0.04235,"101":0.04941,"102":0.30349,"103":5.78756,"104":0.00353,"105":0.00353,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00353,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03176,"64":0.00353,"65":0,"66":0,"67":0,"68":0,"69":0.00353,"70":0.00706,"71":0,"72":0,"73":0.00353,"74":0,"75":0,"76":0,"77":0,"78":0.00353,"79":0.00706,"80":0.00353,"81":0,"82":0.00353,"83":0.00353,"84":0.01412,"85":0.0247,"86":0.01412,"87":0.04588,"88":1.47159,"89":0.46583,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00706,"15":0.00706,"16":0,"17":0,"18":0.00353,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00353,"93":0,"94":0,"95":0.00353,"96":0.00353,"97":0.00353,"98":0.00353,"99":0.00353,"100":0.00706,"101":0.01765,"102":0.04588,"103":1.02694,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00353,"14":0.01059,"15":0.00706,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00353,"13.1":0.01412,"14.1":0.0247,"15.1":0.01059,"15.2-15.3":0.00706,"15.4":0.02117,"15.5":0.11646,"15.6":0.00706,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00231,"7.0-7.1":0.00154,"8.1-8.4":0.00154,"9.0-9.2":0.00077,"9.3":0.02158,"10.0-10.2":0,"10.3":0.01079,"11.0-11.2":0.00077,"11.3-11.4":0.00308,"12.0-12.1":0.0054,"12.2-12.5":0.10097,"13.0-13.1":0.01619,"13.2":0.00385,"13.3":0.01619,"13.4-13.7":0.06552,"14.0-14.4":0.15339,"14.5-14.8":0.40235,"15.0-15.1":0.11022,"15.2-15.3":0.23972,"15.4":0.4486,"15.5":5.84874,"16.0":0.06243},P:{"4":0.2028,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01014,"8.2":0,"9.2":0.04056,"10.1":0,"11.1-11.2":0.07098,"12.0":0.01014,"13.0":0.0507,"14.0":0.07098,"15.0":0.03042,"16.0":0.16224,"17.0":2.59582,"18.0":0.01014},I:{"0":0,"3":0,"4":0.00418,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02506,"4.2-4.3":0.0174,"4.4":0,"4.4.3-4.4.4":0.03689},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02117,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.54351},S:{"2.5":0},R:{_:"0"},M:{"0":0.52415},Q:{"10.4":0},O:{"0":0.02588},H:{"0":2.18097}}; 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 c75dd34ab6844f5..8fcc695c409acbb 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:{"4":0.03416,"52":0.03416,"68":0.11768,"78":0.03416,"91":0.03416,"98":0.00759,"99":0.00759,"101":0.06453,"102":3.28734,"103":0.15564,"104":0.01518,_:"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 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 100 105 3.5 3.6"},D:{"49":0.03416,"76":0.27331,"87":0.04935,"88":0.00759,"91":0.25813,"92":0.00759,"95":0.00759,"96":0.14045,"99":0.27331,"101":0.05694,"102":2.74071,"103":14.14769,"104":0.00759,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 89 90 93 94 97 98 100 105 106"},F:{"83":0.00759,"86":0.01518,"88":0.25813,"89":0.50487,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.00759,"90":0.01518,"98":0.02657,"101":0.04176,"103":2.62304,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 91 92 93 94 95 96 97 99 100 102"},E:{"4":0,"13":0.01518,"14":0.17462,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00759,"12.1":0.0987,"13.1":1.45766,"14.1":0.63014,"15.1":0.27331,"15.2-15.3":1.43868,"15.4":0.2885,"15.5":5.54596,"15.6":0.96798,"16.0":0.04176},G:{"8":0,"3.2":0,"4.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.00697,"10.0-10.2":0,"10.3":0.02789,"11.0-11.2":0.02092,"11.3-11.4":0.02789,"12.0-12.1":0,"12.2-12.5":5.76635,"13.0-13.1":0.02789,"13.2":0,"13.3":0.00697,"13.4-13.7":0.13248,"14.0-14.4":0.24055,"14.5-14.8":0.88552,"15.0-15.1":0.91341,"15.2-15.3":3.53162,"15.4":0.70772,"15.5":22.22867,"16.0":0.14991},P:{"4":0.11486,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.45944,"8.2":0.01034,"9.2":0.02167,"10.1":0.02088,"11.1-11.2":0.04613,"12.0":0.02088,"13.0":0.01153,"14.0":0.06265,"15.0":0.01153,"16.0":0.24016,"17.0":0.7496},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.99274,"4.4":0,"4.4.3-4.4.4":0.02456},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04935,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.31015},Q:{"10.4":0},O:{"0":0},H:{"0":0.01175},L:{"0":25.6335}}; +module.exports={C:{"2":0,"3":0,"4":0.01382,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01382,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0553,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01382,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01382,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00922,"99":0.00461,"100":0.00461,"101":0.03226,"102":1.58515,"103":0.09216,"104":0.00922,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01382,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.12442,"77":0,"78":0,"79":0,"80":0,"81":0.01843,"83":0,"84":0,"85":0,"86":0,"87":0.02304,"88":0.00461,"89":0,"90":0,"91":0.11981,"92":0.00461,"93":0,"94":0,"95":0.00461,"96":0.06451,"97":0,"98":0,"99":0.12442,"100":0,"101":0.02765,"102":1.26259,"103":6.55258,"104":0.00461,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.00461,"84":0,"85":0,"86":0.00922,"87":0,"88":0.11981,"89":0.23501,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00461,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00922,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00922,"99":0,"100":0,"101":0.01843,"102":0,"103":1.2119,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00922,"14":0.07834,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00461,"12.1":0.04608,"13.1":0.67277,"14.1":0.2903,"15.1":0.12442,"15.2-15.3":0.66355,"15.4":0.13363,"15.5":2.55744,"15.6":0.44698,"16.0":0.01843},G:{"8":0,"3.2":0,"4.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.01013,"10.0-10.2":0,"10.3":0.04053,"11.0-11.2":0.0304,"11.3-11.4":0.04053,"12.0-12.1":0,"12.2-12.5":8.38033,"13.0-13.1":0.04053,"13.2":0,"13.3":0.01013,"13.4-13.7":0.19253,"14.0-14.4":0.3496,"14.5-14.8":1.28694,"15.0-15.1":1.32748,"15.2-15.3":5.13257,"15.4":1.02854,"15.5":32.30531,"16.0":0.21787},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03619,"12.0":0,"13.0":0.01206,"14.0":0,"15.0":0.01206,"16.0":0,"17.0":0.65143,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":1.24967,"4.4":0,"4.4.3-4.4.4":0.03091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":29.5907},S:{"2.5":0},R:{_:"0"},M:{"0":0.2696},Q:{"10.4":0},O:{"0":0},H:{"0":0.01021}}; 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 dc225747688d5c2..e46058d5d4c63c5 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:{"102":37.5025,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"103":12.50375,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0.39604,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.07402,_:"8.2 10.1","9.2":0.05089,"11.1-11.2":0.02141,"12.0":0.06107,"13.0":0.02141,"14.0":0.03211,"15.0":0.02141,"16.0":0.06422,"17.0":0.8349},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":37.5025,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":12.5}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":32.8125,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":10.9375,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":32.8125,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.4375},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":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 712f6888233fcca..29a7f50c38b18bc 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:{"38":0.49192,"43":0.473,"44":2.15215,"45":0.48719,"52":0.01892,"73":0.04257,"78":0.02838,"84":0.00946,"90":0.07095,"91":0.01419,"99":0.02365,"100":0.01419,"101":0.08514,"102":1.3717,"103":0.17974,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 74 75 76 77 79 80 81 82 83 85 86 87 88 89 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"47":0.49192,"48":5.64762,"49":1.33859,"58":0.01419,"65":0.0473,"68":0.00946,"75":0.00946,"76":0.00946,"77":0.00473,"79":0.06622,"80":0.00473,"83":0.00473,"84":0.03311,"85":0.01419,"86":0.0473,"87":0.17028,"88":0.00946,"89":0.01419,"90":0.00946,"91":0.01419,"92":0.01419,"93":0.02838,"94":0.01419,"95":0.00473,"96":0.02838,"97":0.02365,"98":0.04257,"99":0.0473,"100":0.07095,"101":0.17501,"102":0.95073,"103":16.3658,"104":0.00946,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 50 51 52 53 54 55 56 57 59 60 61 62 63 64 66 67 69 70 71 72 73 74 78 81 105 106"},F:{"52":0.00473,"87":0.02365,"88":0.66693,"89":0.1892,"90":0.00473,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.15609,"13":0.17974,"17":0.00473,"18":0.01419,"85":0.01892,"91":0.00473,"92":0.00473,"94":0.01419,"96":0.00473,"97":0.01419,"99":0.00473,"100":0.01419,"101":0.18447,"102":0.12771,"103":5.2976,_:"14 15 16 79 80 81 83 84 86 87 88 89 90 93 95 98"},E:{"4":0,"8":0.17974,"9":0.8041,"13":0.03311,"14":0.16555,"15":0.04257,_:"0 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04257,"11.1":0.03784,"12.1":0.03784,"13.1":0.26961,"14.1":0.48719,"15.1":0.1419,"15.2-15.3":0.08041,"15.4":0.54395,"15.5":2.6961,"15.6":0.12771,"16.0":0.02365},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00543,"8.1-8.4":0,"9.0-9.2":0.14667,"9.3":0.08691,"10.0-10.2":0,"10.3":0.04074,"11.0-11.2":0.01901,"11.3-11.4":0.02173,"12.0-12.1":0.00815,"12.2-12.5":0.22,"13.0-13.1":0.00815,"13.2":0.01358,"13.3":0.02988,"13.4-13.7":0.10321,"14.0-14.4":0.42642,"14.5-14.8":1.23579,"15.0-15.1":0.52962,"15.2-15.3":0.76049,"15.4":1.64048,"15.5":20.91339,"16.0":0.20913},P:{"4":0.24157,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.03151,"8.2":0.01034,"9.2":0.0105,"10.1":0.0306,"11.1-11.2":0.03151,"12.0":0.01036,"13.0":0.05252,"14.0":0.07352,"15.0":0.03151,"16.0":0.17855,"17.0":2.53128},I:{"0":0,"3":0,"4":0,"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.01459},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.34056,"11":0.77099,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.23711},Q:{"10.4":0},O:{"0":0.00527},H:{"0":0.07483},L:{"0":23.7819}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.23834,"39":0,"40":0,"41":0,"42":0,"43":0.22861,"44":1.04576,"45":0.23834,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00973,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01946,"74":0,"75":0,"76":0,"77":0,"78":0.01459,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00486,"85":0,"86":0,"87":0,"88":0.00486,"89":0,"90":0.0681,"91":0.00973,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00486,"98":0,"99":0.01459,"100":0.00973,"101":0.04864,"102":0.71987,"103":0.09242,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.23834,"48":2.74816,"49":0.65178,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00486,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.02432,"66":0,"67":0,"68":0.00486,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00486,"76":0.00486,"77":0.00486,"78":0,"79":0.03405,"80":0,"81":0,"83":0,"84":0.01459,"85":0.00486,"86":0.02432,"87":0.08269,"88":0.00486,"89":0.00973,"90":0.00486,"91":0.00486,"92":0.00486,"93":0.01946,"94":0.00486,"95":0.00486,"96":0.01459,"97":0.00973,"98":0.01946,"99":0.02432,"100":0.03405,"101":0.08269,"102":0.46694,"103":8.00128,"104":0.00486,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00486,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00486,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00973,"88":0.32589,"89":0.09242,"90":0.00486,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.07296,"13":0.08755,"14":0,"15":0,"16":0,"17":0.00486,"18":0.00486,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00973,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00486,"92":0.00486,"93":0,"94":0.00486,"95":0.00486,"96":0.00486,"97":0.00486,"98":0,"99":0.00486,"100":0.00973,"101":0.09242,"102":0.07296,"103":2.59738,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.08755,"9":0.39398,"10":0,"11":0,"12":0,"13":0.01946,"14":0.07782,"15":0.01946,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01946,"11.1":0.01946,"12.1":0.01946,"13.1":0.13133,"14.1":0.23834,"15.1":0.0681,"15.2-15.3":0.03891,"15.4":0.26266,"15.5":1.31328,"15.6":0.06323,"16.0":0.00973},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00807,"8.1-8.4":0,"9.0-9.2":0.21779,"9.3":0.12906,"10.0-10.2":0,"10.3":0.0605,"11.0-11.2":0.02823,"11.3-11.4":0.03226,"12.0-12.1":0.0121,"12.2-12.5":0.32668,"13.0-13.1":0.0121,"13.2":0.02017,"13.3":0.04436,"13.4-13.7":0.15326,"14.0-14.4":0.6332,"14.5-14.8":1.83506,"15.0-15.1":0.78646,"15.2-15.3":1.12927,"15.4":2.436,"15.5":31.05494,"16.0":0.31055},P:{"4":0.23943,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.04164,"8.2":0,"9.2":0.01041,"10.1":0,"11.1-11.2":0.04164,"12.0":0.01041,"13.0":0.04164,"14.0":0.07287,"15.0":0.03123,"16.0":0.17697,"17.0":2.4255,"18.0":0.01041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02251,"4.4":0,"4.4.3-4.4.4":0.27014},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.16538,"10":0,"11":0.37453,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":32.7756},S:{"2.5":0},R:{_:"0"},M:{"0":0.23112},Q:{"10.4":0},O:{"0":0.00514},H:{"0":0.07294}}; 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 2d2095d75e1a528..3f9e95c4c6cd736 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js @@ -1 +1 @@ -module.exports={C:{"52":0.00634,"56":0.00423,"60":0.00211,"72":0.00423,"78":0.00423,"82":0.00211,"88":0.00634,"91":0.00634,"98":0.00211,"99":0.01268,"100":0.00423,"101":0.04437,"102":0.68884,"103":0.11622,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 87 89 90 92 93 94 95 96 97 104 105 3.5 3.6"},D:{"38":0.01268,"43":0.00423,"49":0.01057,"53":0.00211,"60":0.00211,"63":0.00845,"69":0.00211,"71":0.01057,"72":0.00423,"73":0.00211,"74":0.00634,"76":0.00634,"77":0.2113,"78":0.01057,"79":0.03803,"80":0.01268,"81":0.00845,"83":0.01057,"84":0.01268,"85":0.01057,"86":0.01902,"87":0.01902,"88":0.00845,"89":0.19017,"90":0.01268,"91":0.01057,"92":0.01479,"93":0.00634,"94":0.00845,"95":0.00634,"96":0.02113,"97":0.02536,"98":0.04226,"99":0.04226,"100":0.05705,"101":0.07818,"102":0.63179,"103":14.94948,"104":0.00634,"105":0.02113,_:"4 5 6 7 8 9 10 11 12 13 14 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 61 62 64 65 66 67 68 70 75 106"},F:{"77":0.00634,"79":0.00423,"81":0.01057,"83":0.00211,"85":0.00423,"86":0.00211,"87":0.01057,"88":0.34865,"89":0.20707,"90":0.00211,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 82 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00423,"16":0.00211,"17":0.00634,"18":0.01057,"84":0.00211,"92":0.00845,"97":0.00634,"98":0.00634,"99":0.00423,"100":0.00423,"101":0.02113,"102":0.02747,"103":1.24244,_:"12 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.00634,"14":0.04226,"15":0.04015,_:"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 16.0","12.1":0.00211,"13.1":0.01902,"14.1":0.09931,"15.1":0.01479,"15.2-15.3":0.02958,"15.4":0.06128,"15.5":0.27469,"15.6":0.02113},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00232,"6.0-6.1":0,"7.0-7.1":0.01778,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01932,"10.0-10.2":0.00077,"10.3":0.01082,"11.0-11.2":0.00155,"11.3-11.4":0.00464,"12.0-12.1":0.00773,"12.2-12.5":0.18935,"13.0-13.1":0.00386,"13.2":0.00155,"13.3":0.01468,"13.4-13.7":0.05101,"14.0-14.4":0.15689,"14.5-14.8":0.51858,"15.0-15.1":0.13602,"15.2-15.3":0.23881,"15.4":0.59278,"15.5":5.39448,"16.0":0.05874},P:{"4":0.06152,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.10253,"8.2":0.01034,"9.2":0.03076,"10.1":0.0306,"11.1-11.2":0.12304,"12.0":0.04101,"13.0":0.16405,"14.0":0.19481,"15.0":0.10253,"16.0":0.29734,"17.0":2.57353},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01249,"4.4":0,"4.4.3-4.4.4":0.13737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02747,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.11042},Q:{"10.4":0},O:{"0":0.07098},H:{"0":0.44055},L:{"0":67.81669}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00213,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00213,"89":0,"90":0,"91":0.00213,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00213,"100":0.00213,"101":0.01065,"102":0.16393,"103":0.02555,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00213,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00426,"47":0,"48":0,"49":0.00213,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00213,"59":0,"60":0,"61":0,"62":0,"63":0.00213,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00213,"72":0,"73":0,"74":0.00213,"75":0,"76":0.00213,"77":0.04471,"78":0.00213,"79":0.00852,"80":0.00213,"81":0.01277,"83":0.00213,"84":0.00213,"85":0.00213,"86":0.00426,"87":0.00426,"88":0.00213,"89":0.04684,"90":0.00213,"91":0.00213,"92":0.00426,"93":0.00213,"94":0.00213,"95":0.02129,"96":0.00426,"97":0.00639,"98":0.01065,"99":0.00852,"100":0.01277,"101":0.01703,"102":0.13626,"103":3.20627,"104":0.00213,"105":0.00426,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04258,"64":0.00213,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00213,"78":0,"79":0,"80":0,"81":0.00213,"82":0,"83":0,"84":0,"85":0.00213,"86":0,"87":0.00213,"88":0.07452,"89":0.04471,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00213,"18":0.00213,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00213,"93":0,"94":0,"95":0,"96":0,"97":0.00213,"98":0.00213,"99":0,"100":0,"101":0.00426,"102":0.00639,"103":0.26825,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00213,"14":0.00852,"15":0.00852,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00426,"14.1":0.02129,"15.1":0.00213,"15.2-15.3":0.00639,"15.4":0.01277,"15.5":0.05748,"15.6":0.00426,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00289,"6.0-6.1":0,"7.0-7.1":0.02216,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02408,"10.0-10.2":0.00096,"10.3":0.01349,"11.0-11.2":0.00193,"11.3-11.4":0.00578,"12.0-12.1":0.00963,"12.2-12.5":0.236,"13.0-13.1":0.00482,"13.2":0.00193,"13.3":0.0183,"13.4-13.7":0.06358,"14.0-14.4":0.19554,"14.5-14.8":0.64636,"15.0-15.1":0.16954,"15.2-15.3":0.29765,"15.4":0.73883,"15.5":6.72366,"16.0":0.07321},P:{"4":0.07103,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10148,"8.2":0,"9.2":0.04059,"10.1":0.0203,"11.1-11.2":0.12177,"12.0":0.05074,"13.0":0.16236,"14.0":0.19281,"15.0":0.10148,"16.0":0.28414,"17.0":2.52679,"18.0":0.01015},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01761,"4.4":0,"4.4.3-4.4.4":0.19368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00639,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.83451},S:{"2.5":0},R:{_:"0"},M:{"0":0.11019},Q:{"10.4":0},O:{"0":0.07084},H:{"0":0.43965}}; 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 058dfbdccb1a618..3c78dd45d1a8fb2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js @@ -1 +1 @@ -module.exports={C:{"48":0.02688,"50":0.00538,"52":0.05913,"53":0.00538,"56":0.00538,"78":0.03225,"87":0.01075,"91":0.05375,"94":0.00538,"95":0.00538,"97":0.01075,"99":0.01613,"100":0.0215,"101":0.129,"102":2.408,"103":0.29025,"104":0.00538,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 96 98 105 3.5 3.6"},D:{"23":0.01613,"38":0.00538,"41":0.00538,"49":0.07525,"63":0.0215,"65":0.01075,"68":0.01075,"69":0.09675,"71":0.0215,"75":0.00538,"76":0.01613,"77":0.01075,"79":0.05375,"80":0.00538,"81":0.01075,"83":0.00538,"84":0.043,"85":0.01613,"86":0.01613,"87":0.0645,"88":0.01075,"89":0.08063,"90":0.03763,"91":0.0645,"92":0.02688,"93":0.01075,"94":0.0215,"95":0.02688,"96":0.06988,"97":0.03225,"98":0.04838,"99":0.09138,"100":0.15588,"101":0.1935,"102":1.634,"103":32.39513,"104":0.03763,_:"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 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 70 72 73 74 78 105 106"},F:{"79":0.00538,"85":0.01075,"86":0.01075,"87":0.07525,"88":3.19275,"89":0.7525,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01075,"18":0.00538,"85":0.00538,"86":0.00538,"92":0.00538,"96":0.01613,"97":0.00538,"98":0.01613,"99":0.01075,"100":0.00538,"101":0.04838,"102":0.13438,"103":5.72438,_:"12 13 14 15 16 79 80 81 83 84 87 88 89 90 91 93 94 95"},E:{"4":0,"13":0.01613,"14":0.129,"15":0.04838,_:"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.03225,"12.1":0.03225,"13.1":0.1935,"14.1":0.31175,"15.1":0.06988,"15.2-15.3":0.10213,"15.4":0.29563,"15.5":1.62325,"15.6":0.086,"16.0":0.01613},G:{"8":0.0022,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0022,"8.1-8.4":0.0022,"9.0-9.2":0.00879,"9.3":0.07798,"10.0-10.2":0.0011,"10.3":0.06371,"11.0-11.2":0.00659,"11.3-11.4":0.01098,"12.0-12.1":0.00659,"12.2-12.5":0.32512,"13.0-13.1":0.00769,"13.2":0.0033,"13.3":0.01648,"13.4-13.7":0.07469,"14.0-14.4":0.20759,"14.5-14.8":0.60411,"15.0-15.1":0.18343,"15.2-15.3":0.29437,"15.4":0.58873,"15.5":8.05111,"16.0":0.12631},P:{"4":0.04294,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.01036,"8.2":0.01034,"9.2":0.03107,"10.1":0.0306,"11.1-11.2":0.01073,"12.0":0.01036,"13.0":0.04294,"14.0":0.02147,"15.0":0.01073,"16.0":0.10735,"17.0":1.80346},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00463,"4.2-4.3":0.0185,"4.4":0,"4.4.3-4.4.4":0.10175},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01125,"11":0.23063,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.25438},Q:{"10.4":0},O:{"0":0.185},H:{"0":0.23207},L:{"0":30.88188}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01643,"49":0,"50":0.00548,"51":0,"52":0.03286,"53":0.00548,"54":0,"55":0,"56":0.00548,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00548,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01643,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00548,"88":0.00548,"89":0,"90":0,"91":0.02738,"92":0,"93":0.00548,"94":0.00548,"95":0.00548,"96":0.00548,"97":0.01095,"98":0.00548,"99":0.01095,"100":0.01643,"101":0.08214,"102":1.40186,"103":0.16428,"104":0.00548,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0.01095,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00548,"39":0,"40":0,"41":0.00548,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.04381,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.01095,"64":0,"65":0.00548,"66":0,"67":0,"68":0.00548,"69":0.05476,"70":0,"71":0.01095,"72":0,"73":0,"74":0,"75":0.00548,"76":0.00548,"77":0.00548,"78":0.00548,"79":0.02738,"80":0.00548,"81":0.01095,"83":0.00548,"84":0.0219,"85":0.01095,"86":0.01095,"87":0.03286,"88":0.00548,"89":0.04381,"90":0.0219,"91":0.03833,"92":0.0219,"93":0.01095,"94":0.01095,"95":0.01643,"96":0.03833,"97":0.01643,"98":0.02738,"99":0.05476,"100":0.08762,"101":0.10952,"102":0.90902,"103":17.86819,"104":0.0219,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00548,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0219,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00548,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00548,"86":0.00548,"87":0.03833,"88":1.74684,"89":0.4107,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00548,"16":0,"17":0.00548,"18":0.00548,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00548,"86":0.00548,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00548,"93":0,"94":0,"95":0,"96":0.01095,"97":0.00548,"98":0.01095,"99":0.00548,"100":0.00548,"101":0.02738,"102":0.08762,"103":3.18156,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01095,"14":0.07119,"15":0.02738,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.01643,"12.1":0.01643,"13.1":0.10404,"14.1":0.16976,"15.1":0.03833,"15.2-15.3":0.05476,"15.4":0.16428,"15.5":0.89259,"15.6":0.04928,"16.0":0.01095},G:{"8":0.00353,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00353,"8.1-8.4":0.00353,"9.0-9.2":0.01414,"9.3":0.12545,"10.0-10.2":0.00177,"10.3":0.10248,"11.0-11.2":0.0106,"11.3-11.4":0.01767,"12.0-12.1":0.0106,"12.2-12.5":0.52301,"13.0-13.1":0.01237,"13.2":0.0053,"13.3":0.0265,"13.4-13.7":0.12015,"14.0-14.4":0.33395,"14.5-14.8":0.97181,"15.0-15.1":0.29508,"15.2-15.3":0.47354,"15.4":0.94707,"15.5":12.95158,"16.0":0.2032},P:{"4":0.0617,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01028,"8.2":0,"9.2":0,"10.1":0.01028,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.05142,"14.0":0.03085,"15.0":0.01028,"16.0":0.10284,"17.0":1.69685,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01041,"4.2-4.3":0.04162,"4.4":0,"4.4.3-4.4.4":0.22892},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0057,"9":0,"10":0,"11":0.1312,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.70447},S:{"2.5":0},R:{_:"0"},M:{"0":0.24882},Q:{"10.4":0},O:{"0":0.18096},H:{"0":0.227}}; 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 5d3118ac6d53b87..dc5b92816ad4cac 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:{"88":0.00828,"89":0.10759,"98":0.31035,"99":0.23587,"101":0.04138,"102":0.45104,"103":0.02069,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 91 92 93 94 95 96 97 100 104 105 3.5 3.6"},D:{"68":0.0869,"75":0.01655,"76":0.3269,"78":0.01241,"79":0.27725,"80":0.00828,"83":0.01241,"84":0.02069,"86":0.69105,"87":0.09517,"88":0.01241,"93":0.17793,"95":0.0331,"96":0.80691,"98":0.03724,"99":0.03724,"100":0.14483,"101":0.63725,"102":0.67036,"103":23.06107,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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 77 81 85 89 90 91 92 94 97 104 105 106"},F:{"28":0.28138,"88":0.2069,"89":0.35173,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"84":0.02069,"102":0.02483,"103":2.06072,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},E:{"4":0,"13":0.02483,"14":0.34759,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.12,"13.1":0.51725,"14.1":1.4483,"15.1":0.00828,"15.2-15.3":0.64553,"15.4":0.19862,"15.5":1.2083,"15.6":0.14483},G:{"8":0,"3.2":0,"4.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.00254,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.01776,"11.3-11.4":0.00761,"12.0-12.1":0.00254,"12.2-12.5":0.13698,"13.0-13.1":0,"13.2":0,"13.3":0.10654,"13.4-13.7":0.00761,"14.0-14.4":0.19026,"14.5-14.8":0.59867,"15.0-15.1":0.05581,"15.2-15.3":0.82444,"15.4":2.21711,"15.5":20.84689,"16.0":0},P:{"4":0.01021,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.15321,"8.2":0.01034,"9.2":0.02043,"10.1":0.0306,"11.1-11.2":0.03155,"12.0":0.01052,"13.0":0.02043,"14.0":0.02043,"15.0":0.03155,"16.0":0.11235,"17.0":1.76703},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.00586},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16552,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.1055},Q:{"10.4":0.00586},O:{"0":0.12894},H:{"0":0.2275},L:{"0":36.15755}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00424,"89":0.04666,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.1315,"99":0.10181,"100":0,"101":0.01697,"102":0.21634,"103":0.02121,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.03818,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00848,"76":0.13999,"77":0,"78":0.00424,"79":0.11878,"80":0.00424,"81":0.01273,"83":0.00424,"84":0.00848,"85":0,"86":0.2927,"87":0.03818,"88":0.00424,"89":0,"90":0,"91":0,"92":0,"93":0.07636,"94":0,"95":0.01273,"96":0.3436,"97":0,"98":0.01697,"99":0.01697,"100":0.05939,"101":0.27149,"102":0.28421,"103":9.9178,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.11878,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.08908,"89":0.14847,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01273,"79":0,"80":0,"81":0,"83":0,"84":0.00848,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.00848,"103":0.88234,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00848,"14":0.14847,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0509,"13.1":0.22058,"14.1":0.61509,"15.1":0.00424,"15.2-15.3":0.27149,"15.4":0.08484,"15.5":0.51328,"15.6":0.05939,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00363,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.02538,"11.3-11.4":0.01088,"12.0-12.1":0.00363,"12.2-12.5":0.19576,"13.0-13.1":0,"13.2":0,"13.3":0.15226,"13.4-13.7":0.01088,"14.0-14.4":0.27189,"14.5-14.8":0.85556,"15.0-15.1":0.07976,"15.2-15.3":1.17821,"15.4":3.16847,"15.5":29.79229,"16.0":0},P:{"4":0.01028,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15426,"8.2":0,"9.2":0.02057,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.02057,"14.0":0.02057,"15.0":0,"16.0":0.11313,"17.0":1.72774,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.19241},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07211,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":44.90291},S:{"2.5":0},R:{_:"0"},M:{"0":0.10364},Q:{"10.4":0.00576},O:{"0":0.12668},H:{"0":0.2235}}; 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 b4a475e4a07e9e3..616631919527604 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.00472,"30":0.00709,"35":0.06377,"43":0.00236,"45":0.01181,"47":0.00472,"52":0.17479,"60":0.00236,"61":0.00472,"62":0.00472,"64":0.00709,"68":0.00472,"69":0.00236,"72":0.00709,"73":0.03779,"78":0.00472,"83":0.00236,"84":0.00236,"86":0.00236,"88":0.01653,"89":0.00472,"91":0.00945,"93":0.00236,"94":0.00236,"95":0.00236,"97":0.00236,"98":0.00709,"99":0.04015,"100":0.00945,"101":0.04488,"102":0.92118,"103":0.08976,"104":0.00236,_:"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 46 48 49 50 51 53 54 55 56 57 58 59 63 65 66 67 70 71 74 75 76 77 79 80 81 82 85 87 90 92 96 105 3.5 3.6"},D:{"38":0.00709,"47":0.02598,"49":0.03307,"50":0.00236,"52":0.00236,"55":0.00472,"58":0.01653,"60":0.00472,"63":0.00236,"64":0.04488,"65":0.04252,"66":0.00236,"68":0.00236,"69":0.00945,"70":0.00472,"71":0.00709,"73":0.00472,"75":0.00709,"76":0.00709,"77":0.00709,"78":0.00472,"79":0.06141,"80":0.00709,"81":0.01181,"83":0.01417,"84":0.01653,"85":0.01181,"86":0.01417,"87":0.80544,"88":0.00709,"89":0.05669,"90":0.00945,"91":0.12991,"92":0.03543,"93":0.01653,"94":0.00945,"95":0.03543,"96":0.03071,"97":0.04252,"98":0.04015,"99":0.04015,"100":0.05433,"101":0.22911,"102":0.63302,"103":14.51213,"104":0.00472,"105":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 39 40 41 42 43 44 45 46 48 51 53 54 56 57 59 61 62 67 72 74 106"},F:{"65":0.00472,"81":0.00236,"85":0.01417,"86":0.00236,"87":0.01417,"88":0.69207,"89":0.19605,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00236,"15":0.00236,"18":0.00709,"91":0.00709,"92":0.00472,"98":0.00472,"100":0.00472,"101":0.0189,"102":0.02834,"103":1.53294,_:"12 13 16 17 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 99"},E:{"4":0,"13":0.01181,"14":0.01181,"15":0.00945,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01417,"11.1":0.00236,"12.1":0.00709,"13.1":0.02126,"14.1":0.04252,"15.1":0.00945,"15.2-15.3":0.01181,"15.4":0.03307,"15.5":0.2551,"15.6":0.01417,"16.0":0.00236},G:{"8":0,"3.2":0.00052,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00465,"6.0-6.1":0,"7.0-7.1":0.01396,"8.1-8.4":0,"9.0-9.2":0.01086,"9.3":0.00672,"10.0-10.2":0,"10.3":0.01086,"11.0-11.2":0.00569,"11.3-11.4":0.00672,"12.0-12.1":0.00362,"12.2-12.5":0.23737,"13.0-13.1":0.0031,"13.2":0.00207,"13.3":0.00983,"13.4-13.7":0.05275,"14.0-14.4":0.15411,"14.5-14.8":0.32528,"15.0-15.1":0.06981,"15.2-15.3":0.08947,"15.4":0.23013,"15.5":3.79685,"16.0":0.02896},P:{"4":0.38675,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.69208,"8.2":0.01034,"9.2":0.05089,"10.1":0.0306,"11.1-11.2":0.14249,"12.0":0.06107,"13.0":0.22391,"14.0":0.5496,"15.0":0.0916,"16.0":0.33586,"17.0":2.69709},I:{"0":0,"3":0,"4":0.0047,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0141,"4.4":0,"4.4.3-4.4.4":0.07285},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04015,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.06873},Q:{"10.4":0},O:{"0":0.04582},H:{"0":0.18076},L:{"0":67.27877}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00238,"31":0,"32":0,"33":0,"34":0,"35":0.01426,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00238,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04279,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00238,"63":0,"64":0.00238,"65":0,"66":0,"67":0,"68":0.00238,"69":0,"70":0,"71":0,"72":0.00238,"73":0.00951,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00238,"87":0,"88":0.00475,"89":0,"90":0,"91":0.00238,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00238,"99":0.00951,"100":0.00238,"101":0.01189,"102":0.23057,"103":0.02139,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00238,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00475,"48":0,"49":0.00713,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00238,"56":0,"57":0,"58":0.00475,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00951,"65":0.00951,"66":0,"67":0,"68":0,"69":0.00238,"70":0.00238,"71":0.00238,"72":0,"73":0.00238,"74":0,"75":0.00238,"76":0.00238,"77":0.00238,"78":0,"79":0.01426,"80":0.00238,"81":0.00475,"83":0.00475,"84":0.00475,"85":0.00238,"86":0.00475,"87":0.19491,"88":0.00238,"89":0.01426,"90":0.00238,"91":0.0309,"92":0.00951,"93":0.00475,"94":0.00238,"95":0.00951,"96":0.00951,"97":0.01189,"98":0.00951,"99":0.00951,"100":0.01426,"101":0.0618,"102":0.15451,"103":3.49419,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00713,"64":0.00238,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00238,"86":0,"87":0.00475,"88":0.16401,"89":0.04754,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00238},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00238,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00238,"92":0.00238,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00238,"99":0,"100":0.00238,"101":0.00475,"102":0.00713,"103":0.36844,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00238,"14":0.00238,"15":0.00238,_:"0","3.1":0,"3.2":0,"5.1":0.00238,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00238,"13.1":0.00475,"14.1":0.00951,"15.1":0.00238,"15.2-15.3":0.00238,"15.4":0.00713,"15.5":0.05943,"15.6":0.00238,"16.0":0},G:{"8":0,"3.2":0.00065,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00586,"6.0-6.1":0,"7.0-7.1":0.01759,"8.1-8.4":0,"9.0-9.2":0.01368,"9.3":0.00847,"10.0-10.2":0,"10.3":0.01368,"11.0-11.2":0.00717,"11.3-11.4":0.00847,"12.0-12.1":0.00456,"12.2-12.5":0.29911,"13.0-13.1":0.00391,"13.2":0.00261,"13.3":0.01238,"13.4-13.7":0.06647,"14.0-14.4":0.1942,"14.5-14.8":0.40989,"15.0-15.1":0.08797,"15.2-15.3":0.11274,"15.4":0.28999,"15.5":4.7845,"16.0":0.03649},P:{"4":0.39543,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.68947,"8.2":0.02028,"9.2":0.0507,"10.1":0.02028,"11.1-11.2":0.15209,"12.0":0.06084,"13.0":0.22307,"14.0":0.53738,"15.0":0.09125,"16.0":0.32446,"17.0":2.6565,"18.0":0},I:{"0":0,"3":0,"4":0.01018,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.03053,"4.4":0,"4.4.3-4.4.4":0.15774},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00951,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.10395},S:{"2.5":0},R:{_:"0"},M:{"0":0.06861},Q:{"10.4":0},O:{"0":0.04574},H:{"0":0.18042}}; 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 7d746ae4408ed05..7bbdbacd58d8ed1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js @@ -1 +1 @@ -module.exports={C:{"38":0.10898,"66":0.00574,"78":0.00287,"84":0.0086,"91":0.02581,"99":0.00287,"100":0.00574,"101":0.03155,"102":0.52484,"103":0.0631,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"38":0.01147,"41":0.0086,"49":0.01147,"53":0.00287,"65":0.00287,"67":0.00287,"68":0.01147,"69":0.00574,"71":0.0086,"74":0.01434,"75":0.0086,"76":0.01721,"78":0.00574,"79":0.05449,"80":0.0086,"81":0.00287,"83":0.00574,"84":0.0086,"85":0.0086,"86":0.01721,"87":0.04302,"88":0.01434,"89":0.02294,"90":0.00574,"91":0.03728,"92":0.02294,"93":0.02581,"94":0.0086,"95":0.0086,"96":0.02008,"97":0.05162,"98":0.03728,"99":0.0717,"100":0.04876,"101":0.10038,"102":0.7973,"103":18.52154,"104":0.01147,"105":0.0086,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 70 72 73 77 106"},F:{"28":0.01434,"40":0.01434,"46":0.01147,"85":0.0086,"87":0.01434,"88":0.46462,"89":0.26386,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00287,"18":0.01147,"89":0.00287,"90":0.00287,"91":0.00287,"92":0.00574,"94":0.00574,"96":0.00574,"97":0.01434,"98":0.00574,"99":0.01147,"100":0.0086,"101":0.03442,"102":0.06883,"103":2.53818,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 93 95"},E:{"4":0,"13":0.02294,"14":0.07744,"15":0.03155,_:"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.00574,"12.1":0.01434,"13.1":0.08317,"14.1":0.18642,"15.1":0.04589,"15.2-15.3":0.04302,"15.4":0.16348,"15.5":1.11565,"15.6":0.05736,"16.0":0.01721},G:{"8":0.00797,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00133,"6.0-6.1":0.00531,"7.0-7.1":0.02392,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04517,"10.0-10.2":0,"10.3":0.03189,"11.0-11.2":0.00664,"11.3-11.4":0.00399,"12.0-12.1":0.00399,"12.2-12.5":0.21923,"13.0-13.1":0.00797,"13.2":0.00664,"13.3":0.03189,"13.4-13.7":0.08105,"14.0-14.4":0.26706,"14.5-14.8":0.62181,"15.0-15.1":0.2644,"15.2-15.3":0.473,"15.4":0.76398,"15.5":9.6301,"16.0":0.18335},P:{"4":0.11401,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.06218,_:"8.2 10.1","9.2":0.0105,"11.1-11.2":0.04146,"12.0":0.01036,"13.0":0.02073,"14.0":0.07255,"15.0":0.03109,"16.0":0.11401,"17.0":2.30083},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.06419},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06883,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.09985},Q:{"10.4":0},O:{"0":3.2308},H:{"0":0.92504},L:{"0":52.89333}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.03192,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.0029,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.0029,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00871,"92":0.0029,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.0029,"101":0.01161,"102":0.17122,"103":0.02031,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0029,"39":0,"40":0,"41":0.0029,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0029,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0029,"69":0.0029,"70":0,"71":0.0029,"72":0,"73":0,"74":0.0058,"75":0.0029,"76":0.0058,"77":0,"78":0.0029,"79":0.01451,"80":0.0029,"81":0.00871,"83":0.0029,"84":0.0029,"85":0.0029,"86":0.0058,"87":0.01161,"88":0.0058,"89":0.00871,"90":0.0029,"91":0.01161,"92":0.01451,"93":0.00871,"94":0.0029,"95":0.0029,"96":0.0058,"97":0.01451,"98":0.01161,"99":0.02031,"100":0.01451,"101":0.02902,"102":0.23506,"103":5.40933,"104":0.0029,"105":0.0029,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0029,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0029,"38":0,"39":0,"40":0.0029,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0029,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.0029,"60":0,"62":0,"63":0.11318,"64":0.00871,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.0029,"86":0,"87":0.0029,"88":0.13349,"89":0.07835,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0029,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.0029,"93":0,"94":0.0029,"95":0,"96":0,"97":0.0029,"98":0.0029,"99":0.0029,"100":0.0029,"101":0.00871,"102":0.02322,"103":0.75162,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0058,"14":0.02322,"15":0.00871,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.0029,"12.1":0.0029,"13.1":0.02322,"14.1":0.05514,"15.1":0.01161,"15.2-15.3":0.01161,"15.4":0.04643,"15.5":0.32502,"15.6":0.01741,"16.0":0.0058},G:{"8":0.01072,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00179,"6.0-6.1":0.00715,"7.0-7.1":0.03216,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06076,"10.0-10.2":0,"10.3":0.04289,"11.0-11.2":0.00893,"11.3-11.4":0.00536,"12.0-12.1":0.00536,"12.2-12.5":0.29484,"13.0-13.1":0.01072,"13.2":0.00893,"13.3":0.04289,"13.4-13.7":0.109,"14.0-14.4":0.35917,"14.5-14.8":0.83629,"15.0-15.1":0.3556,"15.2-15.3":0.63615,"15.4":1.02749,"15.5":12.9517,"16.0":0.2466},P:{"4":0.15244,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.06097,"8.2":0,"9.2":0.01016,"10.1":0,"11.1-11.2":0.05081,"12.0":0.01016,"13.0":0.03049,"14.0":0.07114,"15.0":0.03049,"16.0":0.11179,"17.0":2.22558,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09871},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02031,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.13388},S:{"2.5":0},R:{_:"0"},M:{"0":0.09937},Q:{"10.4":0},O:{"0":3.21539},H:{"0":0.92063}}; 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 23e19c8c36daebc..2b2448177a61694 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.00422,"48":0.00422,"49":0.01265,"52":0.02109,"55":0.0464,"56":0.01265,"60":0.03796,"66":0.00422,"68":0.01265,"70":0.00844,"78":0.13076,"82":0.00422,"83":0.00422,"84":0.01265,"85":0.02531,"88":0.00844,"89":0.03374,"91":0.1181,"92":0.03374,"95":0.01265,"96":0.01265,"97":0.00844,"98":0.00422,"99":0.01687,"100":0.03796,"101":0.26152,"102":4.22644,"103":0.43024,_:"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 53 54 57 58 59 61 62 63 64 65 67 69 71 72 73 74 75 76 77 79 80 81 86 87 90 93 94 104 105 3.5 3.6"},D:{"34":0.00844,"38":0.00844,"47":0.04218,"49":0.03374,"54":0.02531,"58":0.00422,"61":0.00844,"65":0.00422,"67":0.00844,"68":0.02109,"76":0.08014,"79":0.09701,"80":0.00844,"81":0.01265,"83":0.00844,"84":0.00422,"85":0.00844,"86":0.01687,"87":0.15185,"88":0.00844,"89":0.02109,"90":0.01265,"91":0.00422,"92":0.02531,"94":0.01265,"95":0.00844,"96":0.03796,"97":0.03374,"98":0.01687,"99":0.07171,"100":0.05905,"101":0.18559,"102":1.4299,"103":19.89209,"104":0.01265,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 55 56 57 59 60 62 63 64 66 69 70 71 72 73 74 75 77 78 93 105 106"},F:{"79":0.00844,"85":0.01265,"86":0.01687,"87":0.03796,"88":0.90687,"89":0.41336,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.01687,"18":0.02109,"84":0.00844,"88":0.00844,"89":0.00422,"91":0.00422,"92":0.01687,"97":0.00422,"98":0.00844,"99":0.00844,"100":0.01687,"101":0.17716,"102":0.0928,"103":5.437,_:"12 13 14 15 16 79 80 81 83 85 86 87 90 93 94 95 96"},E:{"4":0,"11":0.00422,"13":0.04218,"14":0.26152,"15":0.1645,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00422,"10.1":0.00422,"11.1":0.02953,"12.1":0.07171,"13.1":0.37118,"14.1":0.56521,"15.1":0.0928,"15.2-15.3":0.13076,"15.4":0.3754,"15.5":2.25241,"15.6":0.12654,"16.0":0.01687},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00171,"6.0-6.1":0,"7.0-7.1":0.01027,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14555,"10.0-10.2":0.00685,"10.3":0.05822,"11.0-11.2":0.0137,"11.3-11.4":0.0137,"12.0-12.1":0.02569,"12.2-12.5":0.38357,"13.0-13.1":0.01027,"13.2":0.00342,"13.3":0.02226,"13.4-13.7":0.12329,"14.0-14.4":0.387,"14.5-14.8":0.85105,"15.0-15.1":0.28426,"15.2-15.3":0.57878,"15.4":1.03942,"15.5":12.52264,"16.0":0.18494},P:{"4":0.02075,"5.0-5.4":0.03098,"6.2-6.4":0.02104,"7.2-7.4":0.05188,_:"8.2 10.1","9.2":0.0105,"11.1-11.2":0.09339,"12.0":0.01036,"13.0":0.05188,"14.0":0.10377,"15.0":0.04151,"16.0":0.22829,"17.0":2.73952},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00334,"4.2-4.3":0.00334,"4.4":0,"4.4.3-4.4.4":0.05116},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05062,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0},R:{_:"0"},M:{"0":0.3412},Q:{"10.4":0},O:{"0":0.46842},H:{"0":0.15877},L:{"0":38.43782}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00432,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00432,"49":0.00432,"50":0,"51":0,"52":0.00863,"53":0,"54":0,"55":0.02158,"56":0.00432,"57":0,"58":0,"59":0,"60":0.01726,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00432,"69":0,"70":0.00432,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00432,"78":0.05611,"79":0,"80":0,"81":0,"82":0.00432,"83":0.00432,"84":0.00432,"85":0.01295,"86":0,"87":0,"88":0.00432,"89":0.01295,"90":0,"91":0.05179,"92":0.01295,"93":0,"94":0.00432,"95":0.00432,"96":0.00432,"97":0.00432,"98":0.00432,"99":0.00863,"100":0.01726,"101":0.12085,"102":1.92925,"103":0.19422,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00432,"35":0,"36":0,"37":0,"38":0.00432,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.01726,"48":0,"49":0.01295,"50":0,"51":0,"52":0,"53":0,"54":0.00863,"55":0,"56":0,"57":0,"58":0.00432,"59":0,"60":0,"61":0.00432,"62":0,"63":0,"64":0,"65":0.00432,"66":0,"67":0.00432,"68":0.00863,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.03453,"77":0,"78":0,"79":0.04316,"80":0.00432,"81":0.00863,"83":0.00432,"84":0.00432,"85":0.00432,"86":0.00863,"87":0.06474,"88":0.00432,"89":0.00863,"90":0.00863,"91":0.00432,"92":0.00863,"93":0,"94":0.00432,"95":0.00432,"96":0.01726,"97":0.01295,"98":0.00863,"99":0.03021,"100":0.0259,"101":0.082,"102":0.61719,"103":8.60179,"104":0.00432,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00432,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00432,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00432,"86":0.00863,"87":0.01726,"88":0.39276,"89":0.17696,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00863,"18":0.00863,"79":0,"80":0,"81":0,"83":0,"84":0.00432,"85":0,"86":0,"87":0,"88":0.00432,"89":0,"90":0,"91":0,"92":0.00863,"93":0,"94":0,"95":0.00432,"96":0,"97":0,"98":0.00432,"99":0.00432,"100":0.00863,"101":0.07769,"102":0.04316,"103":2.36948,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01726,"14":0.11222,"15":0.07337,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00432,"10.1":0.00432,"11.1":0.01295,"12.1":0.03021,"13.1":0.15969,"14.1":0.2417,"15.1":0.03884,"15.2-15.3":0.05611,"15.4":0.15969,"15.5":0.9711,"15.6":0.05611,"16.0":0.00863},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00249,"6.0-6.1":0,"7.0-7.1":0.01494,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21159,"10.0-10.2":0.00996,"10.3":0.08463,"11.0-11.2":0.01991,"11.3-11.4":0.01991,"12.0-12.1":0.03734,"12.2-12.5":0.55759,"13.0-13.1":0.01494,"13.2":0.00498,"13.3":0.03236,"13.4-13.7":0.17923,"14.0-14.4":0.56257,"14.5-14.8":1.23715,"15.0-15.1":0.41321,"15.2-15.3":0.84136,"15.4":1.51097,"15.5":18.20381,"16.0":0.26884},P:{"4":0.02079,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05197,"8.2":0,"9.2":0.02079,"10.1":0,"11.1-11.2":0.09354,"12.0":0,"13.0":0.06236,"14.0":0.10394,"15.0":0.04157,"16.0":0.20787,"17.0":2.67116,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01025,"4.2-4.3":0.01025,"4.4":0,"4.4.3-4.4.4":0.15719},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02158,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":51.93786},S:{"2.5":0},R:{_:"0"},M:{"0":0.33536},Q:{"10.4":0},O:{"0":0.4604},H:{"0":0.15606}}; 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 8088d17f10eeacb..d0a4254467db148 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.10228,"68":0.00818,"72":0.00409,"78":0.01227,"79":0.00409,"81":0.00409,"84":0.01636,"88":0.00818,"89":0.00409,"90":0.00818,"91":0.05727,"95":0.01227,"96":0.00818,"97":0.01227,"98":0.00818,"99":0.03273,"100":0.03273,"101":0.66683,"102":5.83786,"103":0.89593,"104":0.00409,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 82 83 85 86 87 92 93 94 105 3.5 3.6"},D:{"38":0.00409,"39":0.00409,"41":0.00409,"49":0.06546,"51":0.05318,"58":0.00818,"60":0.46228,"61":0.00818,"64":0.00409,"69":0.10228,"70":0.00818,"71":0.02864,"73":0.00409,"74":0.00818,"75":0.00818,"76":0.01636,"77":0.00409,"78":0.00818,"79":0.04909,"80":0.00818,"81":0.02046,"83":0.01636,"84":0.02864,"85":0.02046,"86":0.02864,"87":0.06137,"88":0.01636,"89":0.02455,"90":0.02046,"91":0.02455,"92":0.045,"93":0.02455,"94":0.01636,"95":0.01636,"96":0.045,"97":0.04091,"98":0.04091,"99":0.04909,"100":0.09409,"101":0.22091,"102":0.9532,"103":23.23688,"104":0.01227,"105":0.00818,_:"4 5 6 7 8 9 10 11 12 13 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 42 43 44 45 46 47 48 50 52 53 54 55 56 57 59 62 63 65 66 67 68 72 106"},F:{"36":0.00409,"79":0.00409,"84":0.00409,"85":0.4991,"86":0.00818,"87":0.06955,"88":1.37458,"89":0.44592,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00409,"18":0.01227,"92":0.00818,"94":0.00409,"97":0.00409,"98":0.00409,"99":0.00818,"100":0.00818,"101":0.02864,"102":0.06546,"103":2.3196,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96"},E:{"4":0,"13":0.00818,"14":0.045,"15":0.01636,_:"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.00409,"12.1":0.01227,"13.1":0.05318,"14.1":0.10228,"15.1":0.02864,"15.2-15.3":0.02046,"15.4":0.10228,"15.5":0.47456,"15.6":0.02864,"16.0":0.00818},G:{"8":0,"3.2":0.02394,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.09347,"6.0-6.1":0,"7.0-7.1":0.00342,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03648,"10.0-10.2":0.00114,"10.3":0.03648,"11.0-11.2":0.00798,"11.3-11.4":0.01026,"12.0-12.1":0.01368,"12.2-12.5":0.23482,"13.0-13.1":0.00912,"13.2":0.0057,"13.3":0.03306,"13.4-13.7":0.10373,"14.0-14.4":0.2998,"14.5-14.8":0.76147,"15.0-15.1":0.19265,"15.2-15.3":0.35679,"15.4":0.76033,"15.5":8.01364,"16.0":0.11285},P:{"4":0.09312,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.05188,"8.2":0.01034,"9.2":0.05173,"10.1":0.0306,"11.1-11.2":0.07242,"12.0":0.02069,"13.0":0.09312,"14.0":0.31039,"15.0":0.06208,"16.0":0.21727,"17.0":3.0832},I:{"0":0,"3":0,"4":0.00887,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01182,"4.2-4.3":0.03842,"4.4":0,"4.4.3-4.4.4":0.15957},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00877,"9":0.00877,"11":0.1052,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.27777},Q:{"10.4":0},O:{"0":0.0591},H:{"0":0.30774},L:{"0":43.39064}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04135,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00414,"69":0,"70":0,"71":0,"72":0.00414,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00414,"79":0,"80":0,"81":0.00414,"82":0,"83":0,"84":0.00827,"85":0,"86":0,"87":0,"88":0.00414,"89":0,"90":0.00414,"91":0.02481,"92":0,"93":0,"94":0,"95":0.00414,"96":0.00414,"97":0.00414,"98":0.00414,"99":0.01241,"100":0.01654,"101":0.28532,"102":2.49341,"103":0.37629,"104":0.00414,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00414,"40":0,"41":0.00414,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02895,"50":0,"51":0.02068,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00414,"59":0,"60":0.19021,"61":0.00414,"62":0,"63":0,"64":0.00414,"65":0,"66":0,"67":0,"68":0,"69":0.04135,"70":0.00414,"71":0.01241,"72":0,"73":0,"74":0.00414,"75":0.00414,"76":0.00827,"77":0.00414,"78":0.00414,"79":0.02068,"80":0.00414,"81":0.02068,"83":0.00827,"84":0.01241,"85":0.00827,"86":0.01241,"87":0.02481,"88":0.00827,"89":0.01241,"90":0.00827,"91":0.01241,"92":0.02481,"93":0.00827,"94":0.00827,"95":0.00827,"96":0.02068,"97":0.01654,"98":0.01654,"99":0.02068,"100":0.04135,"101":0.09511,"102":0.39696,"103":9.65523,"104":0.00414,"105":0.00414,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00827,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00414,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.20675,"86":0.00414,"87":0.02895,"88":0.5665,"89":0.18194,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00414,"16":0,"17":0,"18":0.00414,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00414,"93":0,"94":0.00414,"95":0,"96":0,"97":0.00414,"98":0,"99":0.00414,"100":0.00414,"101":0.01241,"102":0.02895,"103":0.97586,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00414,"14":0.01654,"15":0.00414,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00414,"13.1":0.02068,"14.1":0.04135,"15.1":0.01241,"15.2-15.3":0.00827,"15.4":0.04135,"15.5":0.19848,"15.6":0.01241,"16.0":0.00414},G:{"8":0,"3.2":0.03473,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.13562,"6.0-6.1":0,"7.0-7.1":0.00496,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05292,"10.0-10.2":0.00165,"10.3":0.05292,"11.0-11.2":0.01158,"11.3-11.4":0.01489,"12.0-12.1":0.01985,"12.2-12.5":0.3407,"13.0-13.1":0.01323,"13.2":0.00827,"13.3":0.04796,"13.4-13.7":0.1505,"14.0-14.4":0.43497,"14.5-14.8":1.1048,"15.0-15.1":0.27951,"15.2-15.3":0.51767,"15.4":1.10315,"15.5":11.62689,"16.0":0.16374},P:{"4":0.12196,"5.0-5.4":0,"6.2-6.4":0.02033,"7.2-7.4":0.02033,"8.2":0,"9.2":0.06098,"10.1":0,"11.1-11.2":0.0813,"12.0":0.03049,"13.0":0.09147,"14.0":0.29473,"15.0":0.06098,"16.0":0.21342,"17.0":2.99809,"18.0":0},I:{"0":0,"3":0,"4":0.01517,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02022,"4.2-4.3":0.06573,"4.4":0,"4.4.3-4.4.4":0.27302},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00448,"9":0.00448,"10":0,"11":0.0448,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.43568},S:{"2.5":0},R:{_:"0"},M:{"0":0.27566},Q:{"10.4":0},O:{"0":0.05865},H:{"0":0.30539}}; 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 457530d790f1499..889f77716ec6ed9 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:{"48":0.00369,"50":0.00369,"52":0.15125,"56":0.00738,"60":0.00369,"61":0.00369,"66":0.01476,"68":0.01107,"72":0.00738,"77":0.00369,"78":0.01845,"79":0.00369,"80":0.00369,"81":0.00369,"82":0.00369,"83":0.00738,"84":0.00738,"87":0.00738,"88":0.03689,"89":0.01476,"90":0.00369,"91":0.05165,"92":0.18076,"93":0.0332,"94":0.01107,"95":0.01476,"96":0.01107,"97":0.02213,"98":0.01845,"99":0.07009,"100":0.03689,"101":0.16601,"102":3.22788,"103":0.43161,"104":0.00369,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 62 63 64 65 67 69 70 71 73 74 75 76 85 86 105 3.5 3.6"},D:{"34":0.00369,"38":0.01107,"41":0.00738,"43":0.00369,"47":0.00738,"49":0.0996,"53":0.01476,"58":0.00738,"61":0.02213,"63":0.01107,"65":0.00738,"66":0.00369,"68":0.02582,"70":0.00369,"71":0.00738,"72":0.01107,"73":0.01476,"74":0.01476,"75":0.01476,"76":0.01476,"77":0.00369,"78":0.01107,"79":0.11436,"80":0.01476,"81":0.02951,"83":0.0332,"84":0.04427,"85":0.03689,"86":0.0664,"87":0.06271,"88":0.02213,"89":0.04796,"90":0.02213,"91":0.03689,"92":0.05534,"93":0.02213,"94":0.04427,"95":0.0332,"96":0.05902,"97":0.07747,"98":0.05534,"99":0.07009,"100":0.10329,"101":0.16232,"102":1.09932,"103":22.74637,"104":0.01476,"105":0.01107,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 48 50 51 52 54 55 56 57 59 60 62 64 67 69 106 107"},F:{"28":0.01845,"36":0.00738,"40":0.00738,"76":0.00738,"79":0.00369,"82":0.00369,"84":0.01107,"85":0.07378,"86":0.01476,"87":0.04058,"88":1.44609,"89":0.71198,_:"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 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00738,"84":0.00738,"86":0.00738,"91":0.00369,"92":0.00369,"96":0.00369,"99":0.00369,"101":0.01476,"102":0.05165,"103":1.57151,_:"12 13 14 15 16 17 79 80 81 83 85 87 88 89 90 93 94 95 97 98 100"},E:{"4":0,"13":0.00369,"14":0.05165,"15":0.01476,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00738,"12.1":0.00738,"13.1":0.05902,"14.1":0.10698,"15.1":0.0332,"15.2-15.3":0.02213,"15.4":0.05902,"15.5":0.38735,"15.6":0.02582},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00422,"6.0-6.1":0,"7.0-7.1":0.03093,"8.1-8.4":0.01125,"9.0-9.2":0,"9.3":0.02812,"10.0-10.2":0.00141,"10.3":0.07451,"11.0-11.2":0.02109,"11.3-11.4":0.03093,"12.0-12.1":0.01125,"12.2-12.5":0.44706,"13.0-13.1":0.01265,"13.2":0.00562,"13.3":0.04077,"13.4-13.7":0.14199,"14.0-14.4":0.40489,"14.5-14.8":1.47053,"15.0-15.1":0.26008,"15.2-15.3":0.44988,"15.4":0.93209,"15.5":9.35179,"16.0":0.08154},P:{"4":0.06207,"5.0-5.4":0.01042,"6.2-6.4":0.02104,"7.2-7.4":0.01034,_:"8.2","9.2":0.02069,"10.1":0.02062,"11.1-11.2":0.06207,"12.0":0.01034,"13.0":0.07241,"14.0":0.07241,"15.0":0.04138,"16.0":0.12414,"17.0":2.30686},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01702,"4.2-4.3":0.00347,"4.4":0,"4.4.3-4.4.4":0.01737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01107,"9":0.00738,"11":0.10698,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.32181},Q:{"10.4":0.01262},O:{"0":0.05679},H:{"0":0.3883},L:{"0":47.08341},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.05603,"53":0,"54":0,"55":0,"56":0.00374,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00374,"67":0,"68":0.00374,"69":0,"70":0,"71":0,"72":0.00374,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00747,"79":0,"80":0.00374,"81":0.00374,"82":0.00374,"83":0.00374,"84":0.00374,"85":0,"86":0,"87":0.00374,"88":0.01494,"89":0.00747,"90":0.00374,"91":0.02241,"92":0.06723,"93":0.01121,"94":0.00747,"95":0.00747,"96":0.00374,"97":0.00747,"98":0.00747,"99":0.02615,"100":0.01868,"101":0.06723,"102":1.28111,"103":0.17181,"104":0.00374,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00374,"39":0,"40":0,"41":0.00374,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00374,"48":0,"49":0.03735,"50":0,"51":0,"52":0,"53":0.00747,"54":0,"55":0,"56":0,"57":0,"58":0.00374,"59":0,"60":0,"61":0.00747,"62":0,"63":0.00374,"64":0,"65":0.00374,"66":0,"67":0,"68":0.01121,"69":0,"70":0.00374,"71":0.00374,"72":0.00374,"73":0.00374,"74":0.00374,"75":0.00747,"76":0.00374,"77":0.00374,"78":0.00374,"79":0.04482,"80":0.00747,"81":0.01868,"83":0.01121,"84":0.01868,"85":0.01494,"86":0.02615,"87":0.02241,"88":0.01121,"89":0.01868,"90":0.00747,"91":0.01494,"92":0.02615,"93":0.00747,"94":0.01868,"95":0.01494,"96":0.02241,"97":0.02988,"98":0.02241,"99":0.02615,"100":0.04109,"101":0.05976,"102":0.41459,"103":8.54568,"104":0.00374,"105":0.00374,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00747,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00374,"37":0,"38":0,"39":0,"40":0.00374,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01494,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00374,"77":0,"78":0,"79":0.00374,"80":0,"81":0,"82":0,"83":0,"84":0.00374,"85":0.02615,"86":0.00374,"87":0.01494,"88":0.54158,"89":0.26519,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00374,"16":0,"17":0,"18":0.00374,"79":0,"80":0,"81":0,"83":0,"84":0.00374,"85":0,"86":0.00374,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00374,"100":0,"101":0.00747,"102":0.02241,"103":0.5976,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.01868,"15":0.00747,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00374,"12.1":0.00374,"13.1":0.02241,"14.1":0.04109,"15.1":0.01121,"15.2-15.3":0.00747,"15.4":0.02241,"15.5":0.14567,"15.6":0.01121,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0059,"6.0-6.1":0,"7.0-7.1":0.0433,"8.1-8.4":0.01574,"9.0-9.2":0,"9.3":0.03936,"10.0-10.2":0.00197,"10.3":0.1043,"11.0-11.2":0.02952,"11.3-11.4":0.0433,"12.0-12.1":0.01574,"12.2-12.5":0.62581,"13.0-13.1":0.01771,"13.2":0.00787,"13.3":0.05707,"13.4-13.7":0.19876,"14.0-14.4":0.56677,"14.5-14.8":2.05849,"15.0-15.1":0.36407,"15.2-15.3":0.62975,"15.4":1.30476,"15.5":13.09091,"16.0":0.11414},P:{"4":0.09244,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01027,"8.2":0,"9.2":0.02054,"10.1":0,"11.1-11.2":0.06163,"12.0":0.01027,"13.0":0.0719,"14.0":0.0719,"15.0":0.04108,"16.0":0.12325,"17.0":2.25959,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0404,"4.2-4.3":0.00825,"4.4":0,"4.4.3-4.4.4":0.04123},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00374,"9":0.00374,"10":0,"11":0.04109,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.22611},S:{"2.5":0},R:{_:"0"},M:{"0":0.31952},Q:{"10.4":0.01253},O:{"0":0.05639},H:{"0":0.38553}}; 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 9693a1ea3b4ff3d..af3e98764266a10 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:{"50":0.09069,"51":0.06802,"52":0.4251,"53":0.09636,"55":0.02267,"56":0.07935,"60":0.01134,"68":0.017,"70":0.01134,"72":0.05101,"78":0.04534,"79":0.017,"80":0.02267,"81":0.02267,"82":0.017,"83":0.017,"84":0.03401,"85":0.00567,"86":0.00567,"87":0.00567,"88":0.017,"89":0.02267,"90":0.02267,"91":0.10769,"92":0.00567,"93":0.01134,"94":0.02267,"95":0.20972,"96":0.05668,"97":0.03401,"98":0.03968,"99":0.09069,"100":0.07368,"101":0.20405,"102":2.25586,"103":0.14737,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 54 57 58 59 61 62 63 64 65 66 67 69 71 73 74 75 76 77 104 105 3.5 3.6"},D:{"22":0.01134,"26":0.01134,"34":0.00567,"38":0.01134,"39":0.00567,"41":0.017,"47":0.00567,"48":0.01134,"49":0.09636,"51":0.11903,"52":0.05668,"53":0.01134,"55":0.01134,"56":0.02267,"57":0.01134,"59":0.01134,"61":0.01134,"63":0.00567,"64":0.01134,"65":0.00567,"66":0.03968,"67":0.00567,"68":0.017,"69":0.03968,"70":0.11336,"71":0.01134,"72":0.017,"73":0.017,"74":0.13036,"75":0.01134,"76":0.05668,"77":0.02267,"78":0.02267,"79":0.13603,"80":0.09636,"81":0.09636,"83":0.11336,"84":0.19271,"85":0.14737,"86":0.30607,"87":0.26073,"88":0.09636,"89":0.11336,"90":0.25506,"91":0.22105,"92":0.27773,"93":0.19271,"94":0.20972,"95":0.07935,"96":0.19271,"97":0.2834,"98":0.24372,"99":0.23239,"100":0.28907,"101":0.78785,"102":1.63805,"103":19.17484,"104":0.017,"105":0.01134,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 42 43 44 45 46 50 54 58 60 62 106"},F:{"36":0.04534,"37":0.01134,"47":0.00567,"54":0.01134,"60":0.01134,"68":0.00567,"69":0.00567,"70":0.00567,"71":0.01134,"72":0.017,"73":0.017,"75":0.00567,"76":0.01134,"77":0.02267,"78":0.01134,"79":0.02834,"80":0.017,"81":0.01134,"82":0.05668,"83":0.02267,"84":0.05668,"85":0.22672,"86":0.05101,"87":0.13603,"88":3.5255,"89":1.65506,_:"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 42 43 44 45 46 48 49 50 51 52 53 55 56 57 58 62 63 64 65 66 67 74 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.017},B:{"13":0.00567,"16":0.01134,"17":0.01134,"18":0.07368,"84":0.017,"85":0.01134,"86":0.01134,"87":0.00567,"88":0.00567,"89":0.01134,"90":0.01134,"91":0.01134,"92":0.017,"94":0.017,"95":0.01134,"96":0.01134,"97":0.017,"98":0.02267,"99":0.017,"100":0.01134,"101":0.03968,"102":0.08502,"103":2.48258,_:"12 14 15 79 80 81 83 93"},E:{"4":0,"13":0.04534,"14":0.09636,"15":0.02834,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00567,"9.1":0.02834,"11.1":0.017,"12.1":0.017,"13.1":0.10769,"14.1":0.20972,"15.1":0.06235,"15.2-15.3":0.06802,"15.4":0.1417,"15.5":0.65749,"15.6":0.03401,"16.0":0.00567},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00438,"6.0-6.1":0.00263,"7.0-7.1":0.01315,"8.1-8.4":0.00613,"9.0-9.2":0.03768,"9.3":0.05609,"10.0-10.2":0.00701,"10.3":0.06835,"11.0-11.2":0.01928,"11.3-11.4":0.03242,"12.0-12.1":0.01928,"12.2-12.5":0.34878,"13.0-13.1":0.02629,"13.2":0.0149,"13.3":0.04732,"13.4-13.7":0.14372,"14.0-14.4":0.40312,"14.5-14.8":0.97361,"15.0-15.1":0.51353,"15.2-15.3":1.24615,"15.4":0.75803,"15.5":3.80594,"16.0":0.06222},P:{"4":0.07679,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.07679,"9.2":0.02194,"11.1-11.2":0.04388,"12.0":0.01097,"13.0":0.04388,"14.0":0.04388,"15.0":0.02194,"16.0":0.09873,"17.0":0.8995},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00444,"4.2-4.3":0.01064,"4.4":0,"4.4.3-4.4.4":0.05855},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02926,"9":0.02341,"10":0.01171,"11":0.47408,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0.00433},R:{_:"0"},M:{"0":0.15159},Q:{"10.4":0},O:{"0":0.19056},H:{"0":0.74216},L:{"0":29.41101}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.05147,"51":0.03431,"52":0.23448,"53":0.05147,"54":0,"55":0.01144,"56":0.04575,"57":0.00572,"58":0,"59":0,"60":0.00572,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01144,"69":0,"70":0.00572,"71":0,"72":0.04003,"73":0,"74":0,"75":0,"76":0,"77":0.00572,"78":0.02288,"79":0.01144,"80":0.01144,"81":0.01144,"82":0.01144,"83":0.01144,"84":0.02288,"85":0.00572,"86":0.00572,"87":0.00572,"88":0.01144,"89":0.01144,"90":0.01716,"91":0.06291,"92":0.00572,"93":0.00572,"94":0.01144,"95":0.11438,"96":0.03431,"97":0.02288,"98":0.02288,"99":0.05147,"100":0.04575,"101":0.1201,"102":1.25818,"103":0.14869,"104":0.00572,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00572,"23":0,"24":0,"25":0,"26":0.00572,"27":0,"28":0.00572,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00572,"35":0,"36":0,"37":0,"38":0.00572,"39":0.00572,"40":0,"41":0.01144,"42":0,"43":0,"44":0,"45":0,"46":0.00572,"47":0.00572,"48":0.00572,"49":0.05719,"50":0,"51":0.06863,"52":0.03431,"53":0.00572,"54":0,"55":0.00572,"56":0.01716,"57":0.00572,"58":0.00572,"59":0.00572,"60":0,"61":0.00572,"62":0,"63":0.00572,"64":0.01144,"65":0.00572,"66":0.02288,"67":0.00572,"68":0.01144,"69":0.02288,"70":0.07435,"71":0.00572,"72":0.01144,"73":0.01144,"74":0.07435,"75":0.00572,"76":0.03431,"77":0.01144,"78":0.01144,"79":0.08007,"80":0.05147,"81":0.06863,"83":0.06291,"84":0.10866,"85":0.08579,"86":0.17729,"87":0.14869,"88":0.05719,"89":0.06863,"90":0.14298,"91":0.1201,"92":0.16013,"93":0.10866,"94":0.11438,"95":0.05147,"96":0.10866,"97":0.16013,"98":0.13726,"99":0.13154,"100":0.16585,"101":0.44036,"102":0.9322,"103":10.99764,"104":0.01144,"105":0.00572,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.02288,"37":0.00572,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00572,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0.01144,"55":0,"56":0,"57":0,"58":0.00572,"60":0.00572,"62":0,"63":0.01144,"64":0,"65":0,"66":0,"67":0,"68":0.00572,"69":0.00572,"70":0.01144,"71":0.00572,"72":0.01144,"73":0.01144,"74":0.00572,"75":0.00572,"76":0.00572,"77":0.01144,"78":0.00572,"79":0.01716,"80":0.01144,"81":0.00572,"82":0.03431,"83":0.01144,"84":0.03431,"85":0.13154,"86":0.0286,"87":0.07435,"88":1.89299,"89":1.05802,"90":0.00572,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01144},B:{"12":0,"13":0.00572,"14":0.00572,"15":0.00572,"16":0.00572,"17":0.00572,"18":0.04003,"79":0,"80":0,"81":0,"83":0,"84":0.01144,"85":0.00572,"86":0.00572,"87":0.00572,"88":0.00572,"89":0.00572,"90":0.00572,"91":0.00572,"92":0.00572,"93":0,"94":0.01144,"95":0.00572,"96":0.00572,"97":0.00572,"98":0.01144,"99":0.01144,"100":0.00572,"101":0.02288,"102":0.05147,"103":1.41831,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0286,"14":0.05719,"15":0.01716,_:"0","3.1":0,"3.2":0,"5.1":0.00572,"6.1":0,"7.1":0,"9.1":0.01716,"10.1":0,"11.1":0.01144,"12.1":0.01144,"13.1":0.06291,"14.1":0.1201,"15.1":0.03431,"15.2-15.3":0.04003,"15.4":0.08007,"15.5":0.37174,"15.6":0.02288,"16.0":0.00572},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.00431,"7.0-7.1":0.02154,"8.1-8.4":0.01005,"9.0-9.2":0.06176,"9.3":0.09192,"10.0-10.2":0.01149,"10.3":0.11202,"11.0-11.2":0.0316,"11.3-11.4":0.05314,"12.0-12.1":0.0316,"12.2-12.5":0.57161,"13.0-13.1":0.04309,"13.2":0.02442,"13.3":0.07756,"13.4-13.7":0.23554,"14.0-14.4":0.66066,"14.5-14.8":1.59563,"15.0-15.1":0.84162,"15.2-15.3":2.04229,"15.4":1.24232,"15.5":6.23746,"16.0":0.10197},P:{"4":0.11207,"5.0-5.4":0.01019,"6.2-6.4":0,"7.2-7.4":0.07132,"8.2":0,"9.2":0.02038,"10.1":0.01019,"11.1-11.2":0.05094,"12.0":0.01019,"13.0":0.05094,"14.0":0.04075,"15.0":0.02038,"16.0":0.09169,"17.0":0.82524,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01162,"4.2-4.3":0.02789,"4.4":0,"4.4.3-4.4.4":0.15337},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01783,"9":0.01189,"10":0.00594,"11":0.26745,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":43.15213},S:{"2.5":0.00428},R:{_:"0"},M:{"0":0.14555},Q:{"10.4":0.00428},O:{"0":0.19265},H:{"0":0.72954}}; 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 ed9886d86c158e0..24e52b4a09d5c8e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js @@ -1 +1 @@ -module.exports={C:{"34":0.00683,"41":0.04778,"69":0.00683,"78":0.04095,"91":0.0273,"96":0.01365,"97":0.00683,"99":0.02048,"100":0.02048,"101":0.08873,"102":20.5842,"103":0.2457,_:"2 3 4 5 6 7 8 9 10 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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 98 104 105 3.5 3.6"},D:{"38":0.00683,"49":0.0273,"50":0.00683,"53":0.00683,"60":0.00683,"65":0.00683,"69":0.00683,"74":0.01365,"76":0.03413,"77":0.04778,"79":0.04095,"80":0.04095,"83":0.02048,"84":0.01365,"86":0.09555,"87":0.04095,"89":0.01365,"90":0.01365,"91":0.03413,"92":0.02048,"93":0.0273,"94":0.01365,"95":0.0273,"96":0.04095,"97":0.04778,"98":0.19793,"99":0.06143,"100":0.14333,"101":0.1911,"102":0.88725,"103":21.63525,"104":0.0546,"105":0.02048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 54 55 56 57 58 59 61 62 63 64 66 67 68 70 71 72 73 75 78 81 85 88 106"},F:{"79":0.01365,"85":0.0273,"87":0.04095,"88":0.34808,"89":0.28665,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.17063,"13":0.0273,"14":0.01365,"15":0.01365,"16":0.0273,"17":0.00683,"18":0.07508,"84":0.01365,"85":0.00683,"89":0.02048,"92":0.03413,"98":0.01365,"99":0.01365,"100":0.0273,"101":0.07508,"102":0.11603,"103":18.41385,_:"79 80 81 83 86 87 88 90 91 93 94 95 96 97"},E:{"4":0,"13":0.00683,"14":0.03413,"15":0.00683,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.6 16.0","11.1":0.01365,"12.1":0.0273,"13.1":0.03413,"14.1":0.1365,"15.1":0.00683,"15.2-15.3":0.00683,"15.4":0.03413,"15.5":0.20475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00043,"5.0-5.1":0.00386,"6.0-6.1":0.00043,"7.0-7.1":0.00858,"8.1-8.4":0.00129,"9.0-9.2":0,"9.3":0.01846,"10.0-10.2":0.00129,"10.3":0.0206,"11.0-11.2":0.00515,"11.3-11.4":0.01202,"12.0-12.1":0.01073,"12.2-12.5":0.36741,"13.0-13.1":0.00515,"13.2":0.00129,"13.3":0.01717,"13.4-13.7":0.03691,"14.0-14.4":0.22877,"14.5-14.8":0.30603,"15.0-15.1":0.13091,"15.2-15.3":0.26011,"15.4":0.38973,"15.5":2.35211,"16.0":0.0176},P:{"4":0.17335,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.09751,"8.2":0.01034,"9.2":0.02167,"10.1":0.0306,"11.1-11.2":0.05417,"12.0":0.0325,"13.0":0.09312,"14.0":0.01083,"15.0":0.01083,"16.0":0.16251,"17.0":0.56339},I:{"0":0,"3":0,"4":0.00041,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00041,"4.2-4.3":0.00098,"4.4":0,"4.4.3-4.4.4":0.01407},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0819,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.0127},R:{_:"0"},M:{"0":0.08887},Q:{"10.4":0.00635},O:{"0":0.19679},H:{"0":3.68706},L:{"0":24.68533}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0.00689,"32":0,"33":0,"34":0.00689,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.03444,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00689,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00689,"70":0,"71":0,"72":0.00689,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02755,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00689,"89":0,"90":0,"91":0.02066,"92":0,"93":0,"94":0,"95":0,"96":0.00689,"97":0.00689,"98":0.00689,"99":0.01377,"100":0.02066,"101":0.06887,"102":14.21477,"103":0.17218,"104":0.00689,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00689,"35":0,"36":0,"37":0,"38":0.00689,"39":0,"40":0.02066,"41":0,"42":0,"43":0.01377,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02066,"50":0.00689,"51":0,"52":0,"53":0.00689,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00689,"61":0,"62":0,"63":0,"64":0,"65":0.00689,"66":0,"67":0,"68":0,"69":0.00689,"70":0,"71":0,"72":0,"73":0.00689,"74":0.00689,"75":0,"76":0.02066,"77":0.03444,"78":0,"79":0.02755,"80":0.02755,"81":0.00689,"83":0.01377,"84":0.00689,"85":0.00689,"86":0.06887,"87":0.02755,"88":0,"89":0.01377,"90":0.00689,"91":0.02066,"92":0.01377,"93":0.02066,"94":0.00689,"95":0.02066,"96":0.02755,"97":0.03444,"98":0.13774,"99":0.04132,"100":0.10331,"101":0.13085,"102":0.61294,"103":14.91724,"104":0.04132,"105":0.01377,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.03444,"25":0,"26":0,"27":0,"28":0.01377,"29":0,"30":0.00689,"31":0,"32":0.01377,"33":0.00689,"34":0,"35":0.02066,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00689,"52":0,"53":0.00689,"54":0,"55":0,"56":0.03444,"57":0.00689,"58":0.01377,"60":0.17218,"62":0,"63":0.50275,"64":0.03444,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00689,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01377,"86":0.00689,"87":0.02755,"88":0.24105,"89":0.19972,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00689},B:{"12":0.11708,"13":0.02066,"14":0.01377,"15":0.01377,"16":0.02066,"17":0.00689,"18":0.04821,"79":0,"80":0,"81":0,"83":0,"84":0.00689,"85":0.00689,"86":0,"87":0,"88":0,"89":0.01377,"90":0.00689,"91":0,"92":0.02066,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00689,"99":0.00689,"100":0.02066,"101":0.0551,"102":0.08264,"103":12.69963,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00689,"14":0.02066,"15":0.00689,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00689,"11.1":0.00689,"12.1":0.01377,"13.1":0.02066,"14.1":0.08953,"15.1":0.00689,"15.2-15.3":0.00689,"15.4":0.02066,"15.5":0.13774,"15.6":0.00689,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0.00741,"6.0-6.1":0.00082,"7.0-7.1":0.01646,"8.1-8.4":0.00247,"9.0-9.2":0,"9.3":0.0354,"10.0-10.2":0.00247,"10.3":0.03951,"11.0-11.2":0.00988,"11.3-11.4":0.02305,"12.0-12.1":0.02058,"12.2-12.5":0.70468,"13.0-13.1":0.00988,"13.2":0.00247,"13.3":0.03293,"13.4-13.7":0.0708,"14.0-14.4":0.43878,"14.5-14.8":0.58696,"15.0-15.1":0.25108,"15.2-15.3":0.49888,"15.4":0.74749,"15.5":4.51128,"16.0":0.03375},P:{"4":0.18766,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09383,"8.2":0,"9.2":0.02085,"10.1":0,"11.1-11.2":0.05213,"12.0":0.03128,"13.0":0.01043,"14.0":0.01043,"15.0":0.01043,"16.0":0.15638,"17.0":0.53171,"18.0":0},I:{"0":0,"3":0,"4":0.00271,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00271,"4.2-4.3":0.0065,"4.4":0,"4.4.3-4.4.4":0.09318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0551,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":37.60281},S:{"2.5":0.01245},R:{_:"0"},M:{"0":0.08716},Q:{"10.4":0.00623},O:{"0":0.19301},H:{"0":3.6162}}; 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 a9e9f70826c8a0f..cd60d5b1f6629b9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js @@ -1 +1 @@ -module.exports={C:{"52":0.00607,"78":0.00405,"83":0.00405,"91":0.01012,"94":0.00202,"98":0.00607,"99":0.00607,"100":0.01012,"101":0.03846,"102":0.5566,"103":0.06274,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 95 96 97 104 105 3.5 3.6"},D:{"11":0.00202,"38":0.00405,"41":0.00405,"43":0.00202,"46":0.00202,"49":0.02024,"50":0.00202,"56":0.00607,"63":0.00405,"65":0.00202,"67":0.00607,"68":0.00405,"69":0.00607,"70":0.00202,"71":0.00607,"72":0.00607,"73":0.00405,"74":0.00607,"75":0.00607,"76":0.00405,"77":0.00405,"78":0.00607,"79":0.03846,"80":0.03643,"81":0.00607,"83":0.01214,"84":0.01012,"85":0.02024,"86":0.02429,"87":0.02631,"88":0.01012,"89":0.01417,"90":0.00607,"91":0.03036,"92":0.05465,"93":0.0081,"94":0.01214,"95":0.0081,"96":0.04453,"97":0.03036,"98":0.02429,"99":0.0425,"100":0.06072,"101":0.1012,"102":0.66994,"103":12.10554,"104":0.01214,"105":0.01012,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 47 48 51 52 53 54 55 57 58 59 60 61 62 64 66 106"},F:{"28":0.0081,"46":0.00405,"71":0.01012,"76":0.00607,"78":0.00405,"79":0.00607,"80":0.00405,"81":0.00607,"82":0.01619,"83":0.01012,"84":0.00202,"85":0.01012,"86":0.00202,"87":0.00405,"88":0.13358,"89":0.04655,_:"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 72 73 74 75 77 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00405,"14":0.00202,"15":0.00405,"16":0.00405,"17":0.00405,"18":0.01012,"89":0.00202,"92":0.0081,"94":0.00405,"95":0.00607,"96":0.00607,"97":0.00607,"98":0.0081,"99":0.0081,"100":0.01012,"101":0.04655,"102":0.16192,"103":1.76898,_:"13 79 80 81 83 84 85 86 87 88 90 91 93"},E:{"4":0,"12":0.00202,"13":0.01619,"14":0.0931,"15":0.03643,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00607,"11.1":0.0081,"12.1":0.01012,"13.1":0.06274,"14.1":0.22264,"15.1":0.08501,"15.2-15.3":0.04858,"15.4":0.20442,"15.5":0.94116,"15.6":0.04453,"16.0":0.0081},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01429,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0679,"10.0-10.2":0,"10.3":0.14294,"11.0-11.2":0.01072,"11.3-11.4":0.01429,"12.0-12.1":0.0536,"12.2-12.5":0.62537,"13.0-13.1":0.07504,"13.2":0.05003,"13.3":0.1751,"13.4-13.7":0.51459,"14.0-14.4":2.4693,"14.5-14.8":3.60569,"15.0-15.1":1.61166,"15.2-15.3":1.99403,"15.4":3.77721,"15.5":19.42568,"16.0":0.10006},P:{"4":0.2442,"5.0-5.4":0.01042,"6.2-6.4":0.02069,"7.2-7.4":0.10425,"8.2":0.01034,"9.2":0.01042,"10.1":0.02088,"11.1-11.2":0.05212,"12.0":0.01042,"13.0":0.0417,"14.0":0.10425,"15.0":0.0417,"16.0":0.18765,"17.0":1.81391},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01196,"4.4":0,"4.4.3-4.4.4":0.08375},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12751,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.08774},Q:{"10.4":0},O:{"0":0.89331},H:{"0":0.14347},L:{"0":42.61998}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00204,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00204,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00204,"99":0.00204,"100":0.00204,"101":0.0102,"102":0.12234,"103":0.01427,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00204,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00408,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00204,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00204,"68":0,"69":0.00204,"70":0,"71":0.00204,"72":0.00204,"73":0,"74":0.00204,"75":0.00204,"76":0,"77":0,"78":0.00204,"79":0.00816,"80":0.00816,"81":0.00408,"83":0.00204,"84":0.00204,"85":0.00408,"86":0.00612,"87":0.00612,"88":0.00408,"89":0.00204,"90":0.00204,"91":0.00612,"92":0.02243,"93":0.00204,"94":0.00204,"95":0.00204,"96":0.0102,"97":0.00612,"98":0.00612,"99":0.00816,"100":0.01223,"101":0.02039,"102":0.13865,"103":2.4835,"104":0.00204,"105":0.00204,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00204,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00204,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00204,"72":0,"73":0,"74":0,"75":0,"76":0.00204,"77":0,"78":0,"79":0.00204,"80":0,"81":0.00204,"82":0.00408,"83":0.00204,"84":0,"85":0.00204,"86":0,"87":0,"88":0.02651,"89":0.0102,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00204,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00204,"93":0,"94":0,"95":0.00204,"96":0.00204,"97":0.00204,"98":0.00204,"99":0.00204,"100":0.00204,"101":0.0102,"102":0.0367,"103":0.36702,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00408,"14":0.01835,"15":0.00816,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00204,"11.1":0.00204,"12.1":0.00204,"13.1":0.01223,"14.1":0.04486,"15.1":0.01835,"15.2-15.3":0.0102,"15.4":0.04282,"15.5":0.19167,"15.6":0.00816,"16.0":0.00204},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01735,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08244,"10.0-10.2":0,"10.3":0.17355,"11.0-11.2":0.01302,"11.3-11.4":0.01735,"12.0-12.1":0.06508,"12.2-12.5":0.75928,"13.0-13.1":0.09111,"13.2":0.06074,"13.3":0.2126,"13.4-13.7":0.62478,"14.0-14.4":2.99806,"14.5-14.8":4.37777,"15.0-15.1":1.95676,"15.2-15.3":2.42101,"15.4":4.58603,"15.5":23.58528,"16.0":0.12148},P:{"4":0.04108,"5.0-5.4":0.01027,"6.2-6.4":0,"7.2-7.4":0.1027,"8.2":0,"9.2":0.01027,"10.1":0,"11.1-11.2":0.05135,"12.0":0.01027,"13.0":0.05135,"14.0":0.1027,"15.0":0.04108,"16.0":0.18486,"17.0":1.76645,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01678,"4.4":0,"4.4.3-4.4.4":0.11749},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02651,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":49.39738},S:{"2.5":0},R:{_:"0"},M:{"0":0.08757},Q:{"10.4":0},O:{"0":0.89163},H:{"0":0.1432}}; 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 185a38e0debe623..b1cd35ed2c6a234 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:{"49":0.01189,"56":0.01189,"66":0.00793,"78":0.03963,"80":0.01585,"87":0.01585,"88":0.00396,"100":0.02378,"101":0.107,"102":2.03302,"103":0.12682,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"34":0.01585,"49":0.01585,"69":0.00396,"71":0.01189,"74":0.01189,"77":0.00396,"78":0.00793,"80":0.01189,"81":0.00396,"83":3.43988,"86":0.00396,"87":0.04359,"88":0.00793,"90":0.01189,"91":0.01982,"93":0.01585,"95":0.01189,"96":0.00396,"97":0.00396,"98":0.01189,"99":0.00396,"100":0.05152,"101":0.06341,"102":0.71334,"103":15.01977,"104":0.02378,_:"4 5 6 7 8 9 10 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 65 66 67 68 70 72 73 75 76 79 84 85 89 92 94 105 106 107"},F:{"79":0.08322,"86":0.01189,"88":0.22985,"89":0.23382,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0317,"13":0.03567,"14":1.35535,"15":0.10304,"16":0.09511,"17":0.07926,"18":0.40819,"84":0.04359,"85":0.0317,"86":0.00396,"87":0.01189,"88":0.01189,"89":0.01982,"90":0.00793,"92":0.04756,"93":0.00793,"94":0.03567,"95":0.02774,"96":0.03567,"97":0.01189,"98":0.01189,"99":0.32497,"100":0.01982,"101":0.10304,"102":0.22589,"103":3.73711,_:"79 80 81 83 91"},E:{"4":0,"9":0.00396,"10":0.00396,"13":0.03963,_:"0 5 6 7 8 11 12 14 15 3.1 3.2 5.1 6.1 7.1 10.1 15.2-15.3 15.6 16.0","9.1":0.01585,"11.1":0.02378,"12.1":0.00793,"13.1":0.0317,"14.1":0.01585,"15.1":0.0753,"15.4":0.00396,"15.5":0.17041},G:{"8":0,"3.2":0,"4.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.0047,"9.3":0.03619,"10.0-10.2":0,"10.3":0.00917,"11.0-11.2":0.01457,"11.3-11.4":0.04207,"12.0-12.1":0.08037,"12.2-12.5":0.14054,"13.0-13.1":0.00447,"13.2":0.00118,"13.3":0.00917,"13.4-13.7":0.22467,"14.0-14.4":0.1168,"14.5-14.8":0.4726,"15.0-15.1":0.09847,"15.2-15.3":0.20187,"15.4":0.1678,"15.5":0.59739,"16.0":0.00564},P:{"4":0.27243,"5.0-5.4":0.03188,"6.2-6.4":0.06054,"7.2-7.4":0.4137,"8.2":0.02018,"9.2":0.03027,"10.1":0.01009,"11.1-11.2":0.35316,"12.0":0.17153,"13.0":0.5146,"14.0":0.17153,"15.0":0.08072,"16.0":0.36325,"17.0":1.09983},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01342,"4.4":0,"4.4.3-4.4.4":0.16769},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00409,"10":0.01227,"11":0.75643,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.54937},Q:{"10.4":0.01207},O:{"0":5.52386},H:{"0":1.59461},L:{"0":55.4288},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00402,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00402,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00402,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01606,"79":0,"80":0.00402,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00402,"88":0,"89":0,"90":0,"91":0,"92":0.02008,"93":0,"94":0,"95":0.00402,"96":0,"97":0,"98":0,"99":0,"100":0.01205,"101":0.22083,"102":0.82709,"103":0.0522,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00803,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00803,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00803,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0.00402,"70":0,"71":0.00402,"72":0,"73":0,"74":0.00402,"75":0,"76":0,"77":0.00402,"78":0.00402,"79":0,"80":0.00402,"81":0.00402,"83":1.38116,"84":0,"85":0,"86":0,"87":0.01606,"88":0.00402,"89":0,"90":0.00402,"91":0.01205,"92":0,"93":0.00803,"94":0,"95":0.00402,"96":0,"97":0,"98":0.00402,"99":0.00402,"100":0.02008,"101":0.02409,"102":0.28908,"103":6.03053,"104":0.00803,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00402,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.02008,"60":0.00402,"62":0,"63":0.17666,"64":0.00803,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00402,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.03212,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00402,"87":0,"88":0.09235,"89":0.09235,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00402},B:{"12":0.01205,"13":0.01205,"14":0.54203,"15":0.04015,"16":0.04015,"17":0.03212,"18":0.16462,"79":0,"80":0,"81":0,"83":0,"84":0.01606,"85":0.01205,"86":0,"87":0.00402,"88":0.00402,"89":0.00803,"90":0.00402,"91":0,"92":0.02008,"93":0.00402,"94":0.01606,"95":0.01205,"96":0.01606,"97":0.00402,"98":0.00402,"99":0.1325,"100":0.00803,"101":0.04015,"102":0.09235,"103":1.50563,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00402,"10":0,"11":0,"12":0,"13":0.01606,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00803,"10.1":0,"11.1":0.01205,"12.1":0.00402,"13.1":0.01205,"14.1":0.00803,"15.1":0.03212,"15.2-15.3":0,"15.4":0,"15.5":0.06826,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00723,"9.3":0.05564,"10.0-10.2":0,"10.3":0.01409,"11.0-11.2":0.0224,"11.3-11.4":0.06468,"12.0-12.1":0.12357,"12.2-12.5":0.21607,"13.0-13.1":0.00687,"13.2":0.00181,"13.3":0.01409,"13.4-13.7":0.34543,"14.0-14.4":0.17958,"14.5-14.8":0.72663,"15.0-15.1":0.1514,"15.2-15.3":0.31038,"15.4":0.25799,"15.5":0.91849,"16.0":0.00867},P:{"4":0.27397,"5.0-5.4":0,"6.2-6.4":0.06088,"7.2-7.4":0.40588,"8.2":0.02029,"9.2":0.03044,"10.1":0.01015,"11.1-11.2":0.35514,"12.0":0.1725,"13.0":0.50735,"14.0":0.16235,"15.0":0.08118,"16.0":0.35514,"17.0":1.09587,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02252,"4.4":0,"4.4.3-4.4.4":0.2815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00412,"11":0.30102,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":68.08012},S:{"2.5":0},R:{_:"0"},M:{"0":0.54464},Q:{"10.4":0.01197},O:{"0":5.47628},H:{"0":1.58087}}; 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 a48924e469c9e9d..9eeee0909cb272f 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:{"44":0.01089,"52":0.02723,"55":0.08169,"56":0.00545,"68":0.02178,"69":0.01089,"70":0.01089,"71":0.01634,"72":0.01634,"73":0.01089,"74":0.01089,"75":0.02178,"76":0.02723,"77":0.02723,"78":0.06535,"79":0.01089,"80":0.01634,"81":1.30159,"82":0.01634,"83":0.01634,"84":0.16883,"85":0.01089,"88":0.02723,"89":0.08714,"90":0.02723,"91":0.02178,"92":0.03268,"93":0.08169,"95":0.01089,"96":0.00545,"98":0.02723,"99":0.01089,"100":0.21784,"101":0.08714,"102":1.79718,"103":0.17972,"104":0.01089,"105":0.00545,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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 60 61 62 63 64 65 66 67 86 87 94 97 3.5 3.6"},D:{"22":0.01089,"39":0.00545,"49":0.04357,"50":0.00545,"59":0.49014,"60":0.04357,"63":0.05991,"68":0.14704,"69":0.13615,"70":0.08169,"71":0.07624,"72":3.29483,"73":0.04901,"74":0.16883,"75":0.11437,"76":0.08169,"77":0.09258,"78":0.1416,"79":0.13615,"80":0.2015,"81":0.1307,"83":0.56638,"84":0.10892,"85":0.62084,"86":0.43568,"87":0.64263,"88":0.17427,"89":0.56094,"90":0.46836,"91":0.44657,"92":0.51192,"93":0.25596,"94":0.30498,"96":0.04357,"97":0.0708,"98":0.28319,"99":0.46291,"100":0.83868,"101":0.37577,"102":4.36225,"103":12.22627,"104":0.02178,"105":0.01634,_:"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 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 61 62 64 65 66 67 95 106 107"},F:{"46":0.01089,"49":0.00545,"53":0.02723,"54":0.02178,"55":0.02178,"71":0.87681,"76":0.00545,"87":0.01634,"88":0.31042,"89":0.26685,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00545,"16":0.01634,"17":0.07624,"18":0.10892,"79":0.01089,"80":0.02723,"81":0.02178,"83":0.02178,"84":0.02178,"85":0.55005,"86":0.01634,"87":0.05446,"88":0.01634,"89":0.02178,"90":0.02178,"91":0.05446,"92":0.01089,"99":0.01089,"100":0.00545,"101":0.02178,"102":0.05446,"103":5.32619,_:"12 14 15 93 94 95 96 97 98"},E:{"4":0,"9":0.01634,"13":0.31042,"14":0.08169,"15":0.02723,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.72432,"11.1":0.04901,"12.1":0.76244,"13.1":0.16338,"14.1":0.55549,"15.1":0.20695,"15.2-15.3":0.21784,"15.4":0.11981,"15.5":0.73521,"15.6":0.01634,"16.0":0.00545},G:{"8":0.00809,"3.2":0.0009,"4.0-4.1":0.0027,"4.2-4.3":0.01438,"5.0-5.1":0.02067,"6.0-6.1":0.03146,"7.0-7.1":0.03865,"8.1-8.4":0.04314,"9.0-9.2":0.05752,"9.3":0.10336,"10.0-10.2":0.06202,"10.3":0.09258,"11.0-11.2":0.12943,"11.3-11.4":0.07909,"12.0-12.1":0.13033,"12.2-12.5":0.3775,"13.0-13.1":0.10156,"13.2":0.03326,"13.3":0.09887,"13.4-13.7":0.32357,"14.0-14.4":1.19271,"14.5-14.8":0.42603,"15.0-15.1":0.28941,"15.2-15.3":0.71185,"15.4":0.52939,"15.5":3.94663,"16.0":0.03326},P:{"4":0.06227,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.1453,"9.2":0.05189,"10.1":0.12454,"11.1-11.2":0.13492,"12.0":0.08303,"13.0":0.31136,"14.0":0.12454,"15.0":0.05189,"16.0":0.1453,"17.0":2.10685},I:{"0":0,"3":0,"4":0.00122,"2.1":0,"2.2":0.00244,"2.3":0,"4.1":0.00609,"4.2-4.3":0.02435,"4.4":0,"4.4.3-4.4.4":0.07062},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":1.31201,"9":1.12698,"10":0.68404,"11":2.00166,_:"6 7 5.5"},J:{"7":0,"10":0.00911},N:{_:"10 11"},R:{_:"0"},M:{"0":1.17467},Q:{"10.4":0.05008},O:{"0":1.46151},H:{"0":0.62933},L:{"0":31.92646},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.31521,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00553,"40":0,"41":0,"42":0,"43":0,"44":0.00553,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01659,"53":0,"54":0,"55":0.04424,"56":0.00553,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.02765,"69":0.01106,"70":0.00553,"71":0.01106,"72":0.01106,"73":0.00553,"74":0.01106,"75":0.01659,"76":0.01659,"77":0.01659,"78":0.03871,"79":0.00553,"80":0.01106,"81":0.8848,"82":0.01106,"83":0.01106,"84":0.09401,"85":0.00553,"86":0,"87":0,"88":0.01659,"89":0.04977,"90":0.01659,"91":0.01106,"92":0.01659,"93":0.04424,"94":0.01106,"95":0.00553,"96":0.00553,"97":0.00553,"98":0.01659,"99":0.00553,"100":0.12166,"101":0.04977,"102":1.07835,"103":0.10507,"104":0.00553,"105":0.00553,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00553,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00553,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00553,"48":0,"49":0.02212,"50":0.00553,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00553,"59":0.27097,"60":0.02212,"61":0,"62":0.00553,"63":0.03318,"64":0.00553,"65":0,"66":0,"67":0,"68":0.08295,"69":0.07742,"70":0.04424,"71":0.04424,"72":1.81937,"73":0.02765,"74":0.09401,"75":0.06083,"76":0.04424,"77":0.04977,"78":0.07742,"79":0.07742,"80":0.1106,"81":0.10507,"83":0.31521,"84":0.06083,"85":0.34286,"86":0.24332,"87":0.35392,"88":0.09954,"89":0.30968,"90":0.25991,"91":0.24885,"92":0.28203,"93":0.14378,"94":0.17143,"95":0.00553,"96":0.02765,"97":0.03871,"98":0.15484,"99":0.25438,"100":0.46452,"101":0.21014,"102":2.41661,"103":6.79637,"104":0.01106,"105":0.00553,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01106,"47":0.01106,"48":0,"49":0.00553,"50":0,"51":0,"52":0,"53":0.01659,"54":0.01106,"55":0.01106,"56":0.00553,"57":0,"58":0,"60":0,"62":0,"63":0.04977,"64":0,"65":0,"66":0,"67":0.00553,"68":0,"69":0,"70":0,"71":0.48664,"72":0,"73":0,"74":0,"75":0,"76":0.00553,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00553,"88":0.17143,"89":0.14931,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0.00553,"14":0,"15":0.00553,"16":0.01106,"17":0.04424,"18":0.06083,"79":0.00553,"80":0.01659,"81":0.01106,"83":0.01659,"84":0.01106,"85":0.30415,"86":0.01106,"87":0.03318,"88":0.01106,"89":0.01659,"90":0.01106,"91":0.02765,"92":0.00553,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00553,"100":0.00553,"101":0.01106,"102":0.03871,"103":2.96961,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.01106,"10":0,"11":0,"12":0,"13":0.17143,"14":0.04424,"15":0.01659,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.39816,"10.1":0,"11.1":0.02765,"12.1":0.42028,"13.1":0.08848,"14.1":0.30968,"15.1":0.11613,"15.2-15.3":0.12166,"15.4":0.06636,"15.5":0.40369,"15.6":0.01106,"16.0":0.00553},G:{"8":0.01354,"3.2":0.0015,"4.0-4.1":0.00451,"4.2-4.3":0.02408,"5.0-5.1":0.03461,"6.0-6.1":0.05267,"7.0-7.1":0.06471,"8.1-8.4":0.07224,"9.0-9.2":0.09632,"9.3":0.17307,"10.0-10.2":0.10384,"10.3":0.15501,"11.0-11.2":0.21671,"11.3-11.4":0.13244,"12.0-12.1":0.21822,"12.2-12.5":0.63208,"13.0-13.1":0.17006,"13.2":0.05568,"13.3":0.16554,"13.4-13.7":0.54178,"14.0-14.4":1.99706,"14.5-14.8":0.71334,"15.0-15.1":0.48459,"15.2-15.3":1.19192,"15.4":0.88641,"15.5":6.60822,"16.0":0.05568},P:{"4":0.0711,"5.0-5.4":0.01016,"6.2-6.4":0.02032,"7.2-7.4":0.14221,"8.2":0,"9.2":0.05079,"10.1":0.12189,"11.1-11.2":0.13205,"12.0":0.08126,"13.0":0.30473,"14.0":0.12189,"15.0":0.05079,"16.0":0.14221,"17.0":2.03157,"18.0":0},I:{"0":0,"3":0,"4":0.00287,"2.1":0,"2.2":0.00573,"2.3":0,"4.1":0.01434,"4.2-4.3":0.05735,"4.4":0,"4.4.3-4.4.4":0.1663},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.72351,"9":0.62666,"10":0.376,"11":1.1052,"5.5":0},J:{"7":0,"10":0.00894},N:{"10":0,"11":0},L:{"0":45.45085},S:{"2.5":0},R:{_:"0"},M:{"0":1.15326},Q:{"10.4":0.04917},O:{"0":1.43487},H:{"0":0.61786}}; 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 751dc76574811f2..28a0685f3ebd208 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:{"29":0.00239,"34":0.0012,"35":0.00359,"36":0.00359,"37":0.0012,"38":0.00359,"39":0.00239,"41":0.00239,"43":0.00598,"44":0.00359,"45":0.00359,"47":0.01794,"48":0.00359,"49":0.00239,"50":0.00239,"51":0.0012,"52":0.02272,"56":0.00718,"59":0.0012,"60":0.00239,"63":0.0012,"66":0.00239,"68":0.00478,"69":0.0012,"70":0.00239,"71":0.00598,"72":0.03468,"78":0.00837,"79":0.00239,"81":0.00239,"83":0.0012,"84":0.00239,"87":0.00239,"88":0.00598,"89":0.01076,"90":0.0012,"91":0.02272,"92":0.00598,"93":0.00239,"94":0.00837,"95":0.00837,"96":0.00359,"97":0.00598,"98":0.00957,"99":0.02512,"100":0.02631,"101":0.13993,"102":1.32397,"103":0.14232,"104":0.00239,_:"2 3 4 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 40 42 46 53 54 55 57 58 61 62 64 65 67 73 74 75 76 77 80 82 85 86 105 3.5 3.6"},D:{"11":0.00239,"21":0.0012,"22":0.0012,"26":0.00239,"28":0.00359,"29":0.00359,"31":0.0012,"33":0.00359,"34":0.00239,"37":0.0012,"38":0.00359,"40":0.00718,"41":0.00359,"43":0.03827,"44":0.0012,"46":0.0012,"47":0.00239,"49":0.00478,"50":0.00837,"51":0.0012,"52":0.00478,"55":0.00837,"56":0.00239,"57":0.00598,"59":0.0012,"60":0.00239,"62":0.00239,"63":0.01794,"64":0.00239,"65":0.00718,"66":0.00239,"67":0.00478,"68":0.00478,"69":0.01316,"70":0.01316,"71":0.00957,"72":0.01316,"73":0.00359,"74":0.00957,"75":0.00359,"76":0.01555,"77":0.00718,"78":0.01794,"79":0.01196,"80":0.01196,"81":0.01316,"83":0.00718,"84":0.00478,"85":0.00359,"86":0.01674,"87":0.02631,"88":0.04664,"89":0.01914,"90":0.00837,"91":0.02512,"92":0.02272,"93":0.01196,"94":0.01914,"95":0.01555,"96":0.04664,"97":0.05382,"98":0.02033,"99":0.04784,"100":0.03229,"101":0.10046,"102":0.59322,"103":4.23623,"104":0.00359,"105":0.00239,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 23 24 25 27 30 32 35 36 39 42 45 48 53 54 58 61 106 107"},F:{"28":0.0012,"36":0.01435,"42":0.00239,"49":0.0012,"64":0.0012,"73":0.00239,"78":0.0012,"79":0.03588,"81":0.0012,"82":0.00478,"83":0.00359,"84":0.01316,"85":0.0299,"86":0.01794,"87":0.01555,"88":0.26551,"89":0.16744,_:"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 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 74 75 76 77 80 90 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00478},B:{"12":0.02153,"13":0.00359,"14":0.00837,"15":0.00598,"16":0.00598,"17":0.01196,"18":0.0299,"81":0.0012,"84":0.01076,"85":0.00478,"89":0.00957,"90":0.00598,"91":0.00239,"92":0.01794,"93":0.00239,"94":0.00239,"95":0.0012,"96":0.00478,"97":0.00478,"98":0.02512,"99":0.00598,"100":0.02033,"101":0.02631,"102":0.061,"103":0.95082,_:"79 80 83 86 87 88"},E:{"4":0,"7":0.0012,"10":0.0012,"12":0.0012,"13":0.00957,"14":0.04066,"15":0.00359,_:"0 5 6 8 9 11 3.1 3.2 6.1 7.1 9.1 10.1 16.0","5.1":0.01196,"11.1":0.00359,"12.1":0.01674,"13.1":0.01076,"14.1":0.01914,"15.1":0.00598,"15.2-15.3":0.00957,"15.4":0.01674,"15.5":0.15428,"15.6":0.01076},G:{"8":0.00057,"3.2":0,"4.0-4.1":0.00396,"4.2-4.3":0.0017,"5.0-5.1":0.00113,"6.0-6.1":0,"7.0-7.1":0.01926,"8.1-8.4":0,"9.0-9.2":0.00113,"9.3":0.01359,"10.0-10.2":0.00623,"10.3":0.01586,"11.0-11.2":0.01869,"11.3-11.4":0.01756,"12.0-12.1":0.02379,"12.2-12.5":0.4559,"13.0-13.1":0.08099,"13.2":0.02039,"13.3":0.07136,"13.4-13.7":0.08948,"14.0-14.4":0.70792,"14.5-14.8":0.54142,"15.0-15.1":0.35056,"15.2-15.3":0.41739,"15.4":0.55728,"15.5":2.06317,"16.0":0.04078},P:{"4":0.92757,"5.0-5.4":0.03058,"6.2-6.4":0.07135,"7.2-7.4":0.37714,"8.2":0.02056,"9.2":0.06116,"10.1":0.01019,"11.1-11.2":0.25483,"12.0":0.03058,"13.0":0.16309,"14.0":0.48927,"15.0":0.11212,"16.0":0.61158,"17.0":1.25374},I:{"0":0,"3":0,"4":0.00074,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00111,"4.2-4.3":0.01112,"4.4":0,"4.4.3-4.4.4":0.09267},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00854,"11":0.10986,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.16728},Q:{"10.4":0.0088},O:{"0":1.70798},H:{"0":11.56073},L:{"0":65.60137},S:{"2.5":0.01761}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.0012,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.0012,"44":0,"45":0,"46":0,"47":0.00241,"48":0,"49":0,"50":0,"51":0,"52":0.00241,"53":0,"54":0,"55":0,"56":0.0012,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0012,"69":0,"70":0,"71":0.0012,"72":0.00361,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0012,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0012,"89":0.00241,"90":0,"91":0.00241,"92":0.0012,"93":0,"94":0.0012,"95":0.0012,"96":0.0012,"97":0.0012,"98":0.0012,"99":0.00482,"100":0.00361,"101":0.01806,"102":0.16495,"103":0.01806,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00241,"41":0,"42":0,"43":0.00482,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0012,"50":0.0012,"51":0,"52":0,"53":0,"54":0,"55":0.0012,"56":0,"57":0.0012,"58":0.0012,"59":0,"60":0,"61":0,"62":0,"63":0.00241,"64":0,"65":0.0012,"66":0,"67":0,"68":0.0012,"69":0.0012,"70":0.00361,"71":0.0012,"72":0.0012,"73":0,"74":0.0012,"75":0,"76":0.00241,"77":0.0012,"78":0.00361,"79":0.0012,"80":0.0012,"81":0.00602,"83":0.0012,"84":0.0012,"85":0,"86":0.00241,"87":0.00482,"88":0.00602,"89":0.00241,"90":0.0012,"91":0.00361,"92":0.00482,"93":0.0012,"94":0.00241,"95":0.00241,"96":0.00602,"97":0.00602,"98":0.00241,"99":0.00602,"100":0.00602,"101":0.01204,"102":0.07224,"103":0.5129,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00241,"25":0,"26":0.00361,"27":0.0012,"28":0.00482,"29":0,"30":0.0012,"31":0,"32":0.0012,"33":0.0012,"34":0,"35":0,"36":0.0012,"37":0,"38":0.0012,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.0012,"46":0,"47":0,"48":0,"49":0,"50":0.0012,"51":0.0012,"52":0,"53":0.0012,"54":0.00241,"55":0.0012,"56":0.0012,"57":0,"58":0.00963,"60":0.01926,"62":0.0012,"63":0.09752,"64":0.00241,"65":0.0012,"66":0,"67":0.00241,"68":0.0012,"69":0.0012,"70":0.00602,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00482,"80":0,"81":0,"82":0,"83":0,"84":0.0012,"85":0.00361,"86":0.00241,"87":0.00241,"88":0.03251,"89":0.02047,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00722,"10.6":0,"11.1":0,"11.5":0.0012,"11.6":0,"12.1":0.00482},B:{"12":0.00241,"13":0.0012,"14":0.0012,"15":0.0012,"16":0.0012,"17":0.0012,"18":0.00361,"79":0,"80":0,"81":0,"83":0,"84":0.0012,"85":0,"86":0,"87":0,"88":0,"89":0.0012,"90":0.0012,"91":0,"92":0.00241,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00241,"99":0.0012,"100":0.00241,"101":0.00361,"102":0.00722,"103":0.11558,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0012,"14":0.00482,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.0012,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00241,"13.1":0.0012,"14.1":0.00241,"15.1":0.0012,"15.2-15.3":0.0012,"15.4":0.00241,"15.5":0.01806,"15.6":0.0012,"16.0":0},G:{"8":0.00064,"3.2":0,"4.0-4.1":0.0045,"4.2-4.3":0.00193,"5.0-5.1":0.00128,"6.0-6.1":0,"7.0-7.1":0.02183,"8.1-8.4":0,"9.0-9.2":0.00128,"9.3":0.01541,"10.0-10.2":0.00706,"10.3":0.01798,"11.0-11.2":0.02119,"11.3-11.4":0.01991,"12.0-12.1":0.02697,"12.2-12.5":0.51694,"13.0-13.1":0.09183,"13.2":0.02312,"13.3":0.08091,"13.4-13.7":0.10146,"14.0-14.4":0.8027,"14.5-14.8":0.61391,"15.0-15.1":0.3975,"15.2-15.3":0.47327,"15.4":0.63189,"15.5":2.3394,"16.0":0.04624},P:{"4":0.91191,"5.0-5.4":0.05011,"6.2-6.4":0.08017,"7.2-7.4":0.37078,"8.2":0.02004,"9.2":0.07015,"10.1":0.02004,"11.1-11.2":0.25053,"12.0":0.04008,"13.0":0.16034,"14.0":0.48101,"15.0":0.11023,"16.0":0.60126,"17.0":1.22256,"18.0":0},I:{"0":0,"3":0,"4":0.00099,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00148,"4.2-4.3":0.01479,"4.4":0,"4.4.3-4.4.4":0.12322},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.0012,"10":0,"11":0.01324,"5.5":0},J:{"7":0,"10":0.0088},N:{"10":0,"11":0},L:{"0":71.53208},S:{"2.5":0.01759},R:{_:"0"},M:{"0":0.16712},Q:{"10.4":0.0088},O:{"0":1.70642},H:{"0":11.55022}}; 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 7b8a0d0d2c91353..cf7990756f47181 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:{"38":0.00393,"52":0.02751,"59":0.00786,"68":0.01179,"69":0.00786,"77":0.00393,"78":0.0786,"79":0.02751,"80":0.03144,"81":0.02358,"82":0.03537,"83":0.01965,"84":0.00786,"88":0.01572,"90":0.00393,"91":0.04323,"92":0.00393,"95":0.00393,"96":0.00393,"97":0.01179,"98":0.00393,"99":0.01179,"100":0.03144,"101":0.22794,"102":1.98858,"103":0.21615,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 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 60 61 62 63 64 65 66 67 70 71 72 73 74 75 76 85 86 87 89 93 94 104 105 3.5 3.6"},D:{"38":0.01179,"41":0.00393,"49":0.02358,"52":0.00393,"53":0.00786,"61":0.00393,"63":0.00393,"65":0.00786,"66":0.0393,"67":0.00786,"68":0.00786,"69":0.18471,"73":0.01179,"74":0.00393,"75":0.02358,"76":0.01965,"77":0.01179,"78":0.01179,"79":0.13362,"80":0.03537,"81":0.02358,"83":0.12969,"84":0.26724,"85":0.19257,"86":0.26724,"87":0.25545,"88":0.01179,"89":0.07074,"90":0.01965,"91":0.02751,"92":0.02358,"93":0.04716,"94":0.01965,"95":0.01572,"96":0.06681,"97":0.0393,"98":0.05502,"99":0.08646,"100":0.17685,"101":0.30261,"102":1.46196,"103":18.12909,"104":0.01179,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 54 55 56 57 58 59 60 62 64 70 71 72 105 106 107"},F:{"46":0.00786,"68":0.01572,"69":0.01179,"70":0.01572,"71":0.01572,"72":0.00393,"85":0.01179,"86":0.00786,"87":0.04323,"88":0.9039,"89":0.24366,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00786,"18":0.05502,"80":0.00393,"84":0.01179,"85":0.01965,"86":0.00786,"87":0.01965,"88":0.00393,"89":0.00393,"91":0.00786,"92":0.00786,"95":0.00786,"96":0.00393,"97":0.00393,"98":0.00786,"99":0.00786,"100":0.04323,"101":0.09432,"102":0.3144,"103":5.32908,_:"12 13 14 15 16 79 81 83 90 93 94"},E:{"4":0,"13":0.05109,"14":0.20043,"15":0.06288,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.05895,"10.1":0.01965,"11.1":0.02751,"12.1":0.06288,"13.1":0.30654,"14.1":0.71133,"15.1":0.08646,"15.2-15.3":0.1179,"15.4":0.4323,"15.5":3.10077,"15.6":0.12576,"16.0":0.00786},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0031,"8.1-8.4":0.00929,"9.0-9.2":0.00619,"9.3":0.0743,"10.0-10.2":0.0031,"10.3":0.11146,"11.0-11.2":0.03406,"11.3-11.4":0.04644,"12.0-12.1":0.03406,"12.2-12.5":0.78019,"13.0-13.1":0.02477,"13.2":0.01858,"13.3":0.0743,"13.4-13.7":0.25697,"14.0-14.4":0.67183,"14.5-14.8":2.44584,"15.0-15.1":0.40867,"15.2-15.3":0.88855,"15.4":1.63778,"15.5":22.80513,"16.0":0.06502},P:{"4":0.14505,"5.0-5.4":0.02072,"6.2-6.4":0.07135,"7.2-7.4":1.94738,"8.2":0.02056,"9.2":0.01009,"10.1":0.01019,"11.1-11.2":0.01036,"12.0":0.02072,"13.0":0.04144,"14.0":0.06216,"15.0":0.03108,"16.0":0.14505,"17.0":4.47572},I:{"0":0,"3":0,"4":0.00528,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01187,"4.2-4.3":0.00792,"4.4":0,"4.4.3-4.4.4":0.03562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01572,"9":0.01179,"10":0.00393,"11":0.17685,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.47945},Q:{"10.4":0.06676},O:{"0":0.02428},H:{"0":0.17812},L:{"0":24.6903},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01216,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00405,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00811,"69":0.00405,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03242,"79":0.01216,"80":0.01216,"81":0.01216,"82":0.01621,"83":0.00811,"84":0.00405,"85":0,"86":0,"87":0,"88":0.00405,"89":0,"90":0,"91":0.02027,"92":0.00405,"93":0.00405,"94":0,"95":0,"96":0.00405,"97":0.00405,"98":0.00405,"99":0.00811,"100":0.01621,"101":0.10943,"102":0.92814,"103":0.09727,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00405,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01216,"50":0,"51":0,"52":0.00405,"53":0.00405,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00405,"64":0,"65":0.00405,"66":0.01621,"67":0.00405,"68":0.00405,"69":0.07701,"70":0,"71":0,"72":0,"73":0.00405,"74":0.00405,"75":0.01216,"76":0.00811,"77":0.00405,"78":0.00405,"79":0.05269,"80":0.01621,"81":0.01216,"83":0.05269,"84":0.10943,"85":0.08106,"86":0.10943,"87":0.10538,"88":0.00405,"89":0.03242,"90":0.00811,"91":0.01216,"92":0.01216,"93":0.02027,"94":0.00811,"95":0.00811,"96":0.02837,"97":0.01621,"98":0.02432,"99":0.03648,"100":0.07295,"101":0.12564,"102":0.6039,"103":7.44941,"104":0.00405,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00405,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00405,"64":0,"65":0,"66":0,"67":0,"68":0.00811,"69":0.00405,"70":0.00811,"71":0.00811,"72":0.00405,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00405,"86":0.00405,"87":0.01621,"88":0.36477,"89":0.09727,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00405,"18":0.02027,"79":0,"80":0.00405,"81":0,"83":0,"84":0.00405,"85":0.00811,"86":0.00405,"87":0.00811,"88":0,"89":0,"90":0,"91":0.00405,"92":0.00405,"93":0,"94":0,"95":0.00405,"96":0.00405,"97":0.00405,"98":0.00405,"99":0.00405,"100":0.01621,"101":0.04053,"102":0.14186,"103":2.19673,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02027,"14":0.08106,"15":0.02432,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02432,"10.1":0.00811,"11.1":0.01216,"12.1":0.02432,"13.1":0.12564,"14.1":0.28776,"15.1":0.03648,"15.2-15.3":0.04864,"15.4":0.17428,"15.5":1.25643,"15.6":0.05269,"16.0":0.00405},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00439,"8.1-8.4":0.01317,"9.0-9.2":0.00878,"9.3":0.10533,"10.0-10.2":0.00439,"10.3":0.158,"11.0-11.2":0.04828,"11.3-11.4":0.06583,"12.0-12.1":0.04828,"12.2-12.5":1.106,"13.0-13.1":0.03511,"13.2":0.02633,"13.3":0.10533,"13.4-13.7":0.36428,"14.0-14.4":0.95239,"14.5-14.8":3.46722,"15.0-15.1":0.57933,"15.2-15.3":1.25961,"15.4":2.32172,"15.5":32.32857,"16.0":0.09217},P:{"4":0.14548,"5.0-5.4":0.02078,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01039,"12.0":0.03117,"13.0":0.04157,"14.0":0.06235,"15.0":0.03117,"16.0":0.14548,"17.0":4.35397,"18.0":0.01039},I:{"0":0,"3":0,"4":0.0094,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02115,"4.2-4.3":0.0141,"4.4":0,"4.4.3-4.4.4":0.06345},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00811,"9":0.00405,"10":0,"11":0.07295,"5.5":0},J:{"7":0,"10":0},N:{"10":0.01049,"11":0.16792},L:{"0":32.47778},S:{"2.5":0},R:{_:"0"},M:{"0":0.46981},Q:{"10.4":0.06542},O:{"0":0.02379},H:{"0":0.17454}}; 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 f1b1c0790b6d05c..170e3c782c7bc2b 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:{"25":0.00246,"34":0.00246,"48":0.00246,"52":0.00738,"65":0.00246,"78":0.01968,"79":0.00246,"80":0.00738,"81":0.00492,"83":0.00492,"84":0.00246,"87":0.00246,"88":0.00492,"89":0.00246,"90":0.00492,"91":0.01722,"95":0.00246,"96":0.00492,"99":0.00492,"100":0.0123,"101":0.06396,"102":0.94956,"103":0.11562,_:"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 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 82 85 86 92 93 94 97 98 104 105 3.5 3.6"},D:{"22":0.00246,"34":0.0246,"38":0.07626,"41":0.00492,"47":0.01722,"49":0.01722,"53":0.01722,"55":0.00492,"56":0.00984,"57":0.00492,"60":0.02952,"65":0.00738,"66":0.00738,"67":0.00984,"68":0.00246,"69":0.00492,"71":0.00492,"72":0.00492,"73":0.00492,"74":0.00492,"75":0.00492,"76":0.00492,"77":0.00492,"78":0.00984,"79":0.23862,"80":0.02952,"81":0.04182,"83":0.0369,"84":0.05412,"85":0.04674,"86":0.05904,"87":0.07626,"88":0.01968,"89":0.01722,"90":0.00738,"91":0.02952,"92":0.03444,"93":0.00738,"94":0.01968,"95":0.01722,"96":0.04674,"97":0.05166,"98":0.05904,"99":0.05658,"100":0.123,"101":0.17958,"102":0.89298,"103":14.30244,"104":0.0123,"105":0.01476,_:"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 42 43 44 45 46 48 50 51 52 54 58 59 61 62 63 64 70 106 107"},F:{"28":0.00738,"36":0.00984,"40":0.00492,"46":0.02214,"70":0.00246,"71":0.00246,"80":0.00246,"85":0.00246,"86":0.00492,"87":0.00984,"88":0.20664,"89":0.09102,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 73 74 75 76 77 78 79 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00984,"86":0.00492,"98":0.00246,"99":0.01476,"100":0.00738,"101":0.01722,"102":0.06396,"103":1.9557,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97"},E:{"4":0,"7":0.00246,"8":0.00984,"12":0.00492,"13":0.02952,"14":0.12054,"15":0.03936,_:"0 5 6 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00246,"10.1":0.00492,"11.1":0.01722,"12.1":0.01968,"13.1":0.13038,"14.1":0.30996,"15.1":0.05658,"15.2-15.3":0.05412,"15.4":0.26814,"15.5":1.86222,"15.6":0.08364,"16.0":0.00738},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00153,"6.0-6.1":0.00611,"7.0-7.1":0.01069,"8.1-8.4":0.01069,"9.0-9.2":0.00458,"9.3":0.10383,"10.0-10.2":0.00458,"10.3":0.05802,"11.0-11.2":0.01832,"11.3-11.4":0.0229,"12.0-12.1":0.01527,"12.2-12.5":0.30996,"13.0-13.1":0.01374,"13.2":0.00611,"13.3":0.03359,"13.4-13.7":0.12673,"14.0-14.4":0.31148,"14.5-14.8":0.8581,"15.0-15.1":0.26873,"15.2-15.3":0.43669,"15.4":0.91765,"15.5":11.30497,"16.0":0.0397},P:{"4":0.39182,"5.0-5.4":0.03188,"6.2-6.4":0.02125,"7.2-7.4":0.09563,_:"8.2","9.2":0.02125,"10.1":0.12454,"11.1-11.2":0.05313,"12.0":0.01031,"13.0":0.04124,"14.0":0.06375,"15.0":0.02062,"16.0":0.08249,"17.0":3.07271},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":30.77828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00816,"9":0.02855,"11":0.11827,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.45994},Q:{"10.4":0.00754},O:{"0":0.4147},H:{"0":0.47827},L:{"0":19.73916},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00252,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00252,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00505,"79":0,"80":0.00252,"81":0.00252,"82":0,"83":0.00252,"84":0,"85":0,"86":0,"87":0,"88":0.00252,"89":0,"90":0.00252,"91":0.00505,"92":0,"93":0,"94":0,"95":0,"96":0.00252,"97":0,"98":0,"99":0.00252,"100":0.00505,"101":0.02271,"102":0.32042,"103":0.03532,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00757,"35":0,"36":0,"37":0,"38":0.02018,"39":0,"40":0,"41":0.00252,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00505,"48":0,"49":0.00505,"50":0,"51":0,"52":0,"53":0.00505,"54":0,"55":0,"56":0.00252,"57":0,"58":0,"59":0,"60":0.00757,"61":0,"62":0,"63":0,"64":0,"65":0.00252,"66":0.00252,"67":0.00252,"68":0,"69":0,"70":0,"71":0.00252,"72":0,"73":0,"74":0.00252,"75":0,"76":0,"77":0.00252,"78":0.00252,"79":0.06055,"80":0.00757,"81":0.01009,"83":0.01009,"84":0.01262,"85":0.01262,"86":0.01514,"87":0.02018,"88":0.00505,"89":0.00505,"90":0.00252,"91":0.00757,"92":0.01262,"93":0.00252,"94":0.00505,"95":0.00505,"96":0.01262,"97":0.01262,"98":0.01514,"99":0.01514,"100":0.0328,"101":0.04541,"102":0.22707,"103":3.63564,"104":0.00252,"105":0.00252,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00252,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00252,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00505,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03532,"64":0.00252,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00252,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00252,"88":0.05298,"89":0.02271,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00252,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00505,"100":0.00252,"101":0.00505,"102":0.02018,"103":0.50965,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00252,"9":0,"10":0,"11":0,"12":0.00252,"13":0.00757,"14":0.03028,"15":0.01009,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00252,"11.1":0.00505,"12.1":0.00505,"13.1":0.0328,"14.1":0.07821,"15.1":0.01514,"15.2-15.3":0.01262,"15.4":0.06812,"15.5":0.46928,"15.6":0.02018,"16.0":0.00252},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00199,"6.0-6.1":0.00798,"7.0-7.1":0.01396,"8.1-8.4":0.01396,"9.0-9.2":0.00598,"9.3":0.13561,"10.0-10.2":0.00598,"10.3":0.07578,"11.0-11.2":0.02393,"11.3-11.4":0.02991,"12.0-12.1":0.01994,"12.2-12.5":0.40483,"13.0-13.1":0.01795,"13.2":0.00798,"13.3":0.04387,"13.4-13.7":0.16552,"14.0-14.4":0.40682,"14.5-14.8":1.12076,"15.0-15.1":0.35098,"15.2-15.3":0.57035,"15.4":1.19853,"15.5":14.76529,"16.0":0.05185},P:{"4":0.38602,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0.01043,"13.0":0.04173,"14.0":0.01043,"15.0":0.02087,"16.0":0.07303,"17.0":3.03601,"18.0":0.01043},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":38.03965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00404,"9":0.00807,"10":0,"11":0.02826,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":23.37788},S:{"2.5":0},R:{_:"0"},M:{"0":0.4561},Q:{"10.4":0.00748},O:{"0":0.41124},H:{"0":0.47428}}; 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 aa4fd3f558f4a00..5d8756717663b45 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 3.5 3.6"},D:{"103":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 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0.17335,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.09751,"8.2":0.01034,"9.2":0.02167,"10.1":0.0306,"11.1-11.2":0.05417,"12.0":0.0325,"13.0":0.09312,"14.0":0.01083,"15.0":0.01083,"16.0":0.16251,"17.0":0.56339},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.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":100,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; 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 371bef9cafe891b..bdb10a9cca58713 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.0923,"60":0.0583,"68":0.01457,"76":0.00972,"78":0.03886,"83":0.00486,"84":0.00486,"88":0.08259,"89":0.00486,"91":0.10688,"93":0.00486,"95":0.00972,"96":0.01457,"97":0.01943,"98":0.02915,"99":0.03886,"100":0.04858,"101":0.27691,"102":5.30979,"103":0.70441,"104":0.00486,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 77 79 80 81 82 85 86 87 90 92 94 105 3.5 3.6"},D:{"38":0.01943,"48":0.00972,"49":0.04858,"51":0.03886,"67":0.00972,"68":0.00972,"69":0.01457,"76":0.03886,"77":0.01457,"78":0.01457,"79":0.05344,"80":0.03401,"81":0.01457,"83":0.00486,"84":0.03886,"85":0.01457,"86":0.01457,"87":0.04372,"88":0.01457,"89":0.03886,"90":0.06801,"91":0.02429,"92":0.01457,"93":0.00972,"94":0.03886,"95":0.00972,"96":0.11173,"97":0.05344,"98":0.0923,"99":0.06801,"100":0.11659,"101":0.27691,"102":1.86547,"103":27.77319,"104":0.01943,_:"4 5 6 7 8 9 10 11 12 13 14 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 70 71 72 73 74 75 105 106 107"},F:{"28":0.02429,"46":0.02915,"85":0.02429,"86":0.00486,"87":0.04372,"88":1.1222,"89":0.39836,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.00972,"86":0.01457,"92":0.00486,"98":0.01943,"100":0.00972,"101":0.05344,"102":0.13117,"103":4.79485,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 99"},E:{"4":0,"5":0.01943,"13":0.01457,"14":0.06315,"15":0.02429,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00486,"11.1":0.00972,"12.1":0.01943,"13.1":0.10202,"14.1":0.2429,"15.1":0.07287,"15.2-15.3":0.04858,"15.4":0.21375,"15.5":1.16106,"15.6":0.07287,"16.0":0.00972},G:{"8":0,"3.2":0,"4.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.00268,"9.0-9.2":0,"9.3":0.01739,"10.0-10.2":0,"10.3":0.04147,"11.0-11.2":0.00535,"11.3-11.4":0.00936,"12.0-12.1":0.00936,"12.2-12.5":0.15251,"13.0-13.1":0.00535,"13.2":0.00268,"13.3":0.01739,"13.4-13.7":0.07759,"14.0-14.4":0.23545,"14.5-14.8":1.0689,"15.0-15.1":0.25819,"15.2-15.3":0.54983,"15.4":1.04482,"15.5":9.47159,"16.0":0.08562},P:{"4":0.14516,"5.0-5.4":0.03188,"6.2-6.4":0.02125,"7.2-7.4":0.09563,"8.2":0.01034,"9.2":0.02125,"10.1":0.12454,"11.1-11.2":0.03111,"12.0":0.01037,"13.0":0.04148,"14.0":0.09332,"15.0":0.05184,"16.0":0.19701,"17.0":3.20395},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0302,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02122},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17975,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.41136},Q:{"10.4":0},O:{"0":0.01543},H:{"0":0.2288},L:{"0":34.42012},S:{"2.5":0.01543}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0445,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.02966,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00989,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00494,"77":0,"78":0.01978,"79":0,"80":0,"81":0,"82":0,"83":0.00494,"84":0.00494,"85":0,"86":0.00494,"87":0,"88":0.03955,"89":0.00494,"90":0,"91":0.05438,"92":0.01483,"93":0.00494,"94":0.00494,"95":0.00989,"96":0.00494,"97":0.00989,"98":0.01483,"99":0.01978,"100":0.03461,"101":0.14832,"102":2.75875,"103":0.35597,"104":0.00494,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00989,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00494,"49":0.02472,"50":0,"51":0.01978,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00494,"68":0.00494,"69":0.00494,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01978,"77":0.00989,"78":0.00989,"79":0.02472,"80":0.01978,"81":0.01483,"83":0.00494,"84":0.01978,"85":0.00989,"86":0.00989,"87":0.02472,"88":0.00989,"89":0.01978,"90":0.03461,"91":0.01483,"92":0.01978,"93":0.00494,"94":0.01978,"95":0.00494,"96":0.05933,"97":0.02472,"98":0.0445,"99":0.03461,"100":0.05933,"101":0.13843,"102":0.93442,"103":13.85803,"104":0.00989,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00989,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01483,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00989,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00989,"86":0.00494,"87":0.02472,"88":0.55373,"89":0.19776,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00494,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0.00989,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00989,"99":0,"100":0.00494,"101":0.02472,"102":0.06922,"103":2.39784,_:"104"},E:{"4":0,"5":0.00989,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00989,"14":0.03461,"15":0.00989,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00494,"10.1":0,"11.1":0.00494,"12.1":0.00989,"13.1":0.04944,"14.1":0.11866,"15.1":0.03461,"15.2-15.3":0.02472,"15.4":0.10382,"15.5":0.5735,"15.6":0.03461,"16.0":0.00494},G:{"8":0,"3.2":0,"4.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.00407,"9.0-9.2":0,"9.3":0.02645,"10.0-10.2":0,"10.3":0.06308,"11.0-11.2":0.00814,"11.3-11.4":0.01424,"12.0-12.1":0.01424,"12.2-12.5":0.23197,"13.0-13.1":0.00814,"13.2":0.00407,"13.3":0.02645,"13.4-13.7":0.11802,"14.0-14.4":0.35813,"14.5-14.8":1.62581,"15.0-15.1":0.39272,"15.2-15.3":0.8363,"15.4":1.58918,"15.5":14.40642,"16.0":0.13023},P:{"4":0.14432,"5.0-5.4":0.01031,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03093,"12.0":0.02062,"13.0":0.04123,"14.0":0.08247,"15.0":0.05154,"16.0":0.19586,"17.0":3.12351,"18.0":0.01031},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.14584,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.10248},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08899,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.80808},S:{"2.5":0.01517},R:{_:"0"},M:{"0":0.40448},Q:{"10.4":0},O:{"0":0.01517},H:{"0":0.22497}}; 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 593508d6745cd0a..eaff07908402a6b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js @@ -1 +1 @@ -module.exports={C:{"33":0.01828,"52":0.1325,"56":0.00457,"60":0.00457,"66":0.00914,"68":0.02741,"72":0.00457,"78":0.11879,"80":0.00914,"81":0.00914,"82":0.00914,"84":0.00914,"85":0.00914,"88":0.01828,"91":0.10966,"92":0.00914,"93":0.00914,"94":0.01371,"95":0.01371,"96":0.00914,"97":0.02285,"98":0.05026,"99":0.09138,"100":0.05026,"101":0.265,"102":5.03504,"103":0.70363,_:"2 3 4 5 6 7 8 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 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 83 86 87 89 90 104 105 3.5 3.6"},D:{"34":0.00914,"38":0.04112,"41":0.00457,"43":0.00457,"47":0.01828,"49":0.08224,"53":0.02285,"63":0.10052,"65":0.00914,"68":0.01371,"69":0.10509,"71":0.00457,"72":0.02285,"74":0.00457,"75":0.00457,"76":0.00914,"78":0.00914,"79":0.34268,"80":0.01371,"81":0.0594,"83":0.02741,"84":0.05026,"85":0.01828,"86":0.04112,"87":0.02741,"88":0.04112,"89":0.04569,"90":0.03655,"91":0.02285,"92":0.03198,"93":0.02285,"94":0.05026,"95":0.01371,"96":0.04569,"97":0.02285,"98":0.02741,"99":0.11423,"100":0.09595,"101":0.22845,"102":1.32958,"103":24.59493,"104":0.01371,_:"4 5 6 7 8 9 10 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 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 70 73 77 105 106 107"},F:{"28":0.02285,"36":0.02741,"46":0.01371,"71":0.00914,"79":0.00457,"84":0.00914,"85":0.0594,"86":0.01828,"87":0.07767,"88":1.90984,"89":0.95949,"90":0.01371,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01371,"86":0.00457,"89":0.00457,"91":0.01371,"92":0.00914,"96":0.01371,"97":0.00914,"99":0.00457,"100":0.00914,"101":0.07767,"102":0.14164,"103":3.54554,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 90 93 94 95 98"},E:{"4":0,"13":0.01371,"14":0.09138,"15":0.04569,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01371,"11.1":0.00457,"12.1":0.02741,"13.1":0.12793,"14.1":0.24673,"15.1":0.0594,"15.2-15.3":0.06397,"15.4":0.18733,"15.5":1.11027,"15.6":0.0731,"16.0":0.01828},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01955,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00122,"9.3":0.02689,"10.0-10.2":0.00244,"10.3":0.09411,"11.0-11.2":0.00978,"11.3-11.4":0.01222,"12.0-12.1":0.011,"12.2-12.5":0.25421,"13.0-13.1":0.00733,"13.2":0.01467,"13.3":0.01344,"13.4-13.7":0.07455,"14.0-14.4":0.21999,"14.5-14.8":0.63308,"15.0-15.1":0.2591,"15.2-15.3":0.3752,"15.4":0.80418,"15.5":8.95595,"16.0":0.11366},P:{"4":0.39372,"5.0-5.4":0.03188,"6.2-6.4":0.02125,"7.2-7.4":0.09563,"8.2":0.01034,"9.2":0.02125,"10.1":0.12454,"11.1-11.2":0.03108,"12.0":0.02125,"13.0":0.03108,"14.0":0.04144,"15.0":0.02072,"16.0":0.10361,"17.0":2.31053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02127,"4.2-4.3":0.0117,"4.4":0,"4.4.3-4.4.4":0.0702},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16448,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.32037},Q:{"10.4":0},O:{"0":0.03801},H:{"0":0.5295},L:{"0":38.66341},S:{"2.5":0}}; +module.exports={C:{"33":0.01828,"52":0.1325,"56":0.00457,"60":0.00457,"66":0.00914,"68":0.02741,"72":0.00457,"78":0.11879,"80":0.00914,"81":0.00914,"82":0.00914,"84":0.00914,"85":0.00914,"88":0.01828,"91":0.10966,"92":0.00914,"93":0.00914,"94":0.01371,"95":0.01371,"96":0.00914,"97":0.02285,"98":0.05026,"99":0.09138,"100":0.05026,"101":0.265,"102":5.03504,"103":0.70363,_:"2 3 4 5 6 7 8 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 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 83 86 87 89 90 104 105 3.5 3.6"},D:{"34":0.00914,"38":0.04112,"41":0.00457,"43":0.00457,"47":0.01828,"49":0.08224,"53":0.02285,"63":0.10052,"65":0.00914,"68":0.01371,"69":0.10509,"71":0.00457,"72":0.02285,"74":0.00457,"75":0.00457,"76":0.00914,"78":0.00914,"79":0.34268,"80":0.01371,"81":0.0594,"83":0.02741,"84":0.05026,"85":0.01828,"86":0.04112,"87":0.02741,"88":0.04112,"89":0.04569,"90":0.03655,"91":0.02285,"92":0.03198,"93":0.02285,"94":0.05026,"95":0.01371,"96":0.04569,"97":0.02285,"98":0.02741,"99":0.11423,"100":0.09595,"101":0.22845,"102":1.32958,"103":24.59493,"104":0.01371,_:"4 5 6 7 8 9 10 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 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 70 73 77 105 106 107"},F:{"28":0.02285,"36":0.02741,"46":0.01371,"71":0.00914,"79":0.00457,"84":0.00914,"85":0.0594,"86":0.01828,"87":0.07767,"88":1.90984,"89":0.95949,"90":0.01371,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 81 82 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.01371,"86":0.00457,"89":0.00457,"91":0.01371,"92":0.00914,"96":0.01371,"97":0.00914,"99":0.00457,"100":0.00914,"101":0.07767,"102":0.14164,"103":3.54554,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 90 93 94 95 98 104"},E:{"4":0,"13":0.01371,"14":0.09138,"15":0.04569,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01371,"11.1":0.00457,"12.1":0.02741,"13.1":0.12793,"14.1":0.24673,"15.1":0.0594,"15.2-15.3":0.06397,"15.4":0.18733,"15.5":1.11027,"15.6":0.0731,"16.0":0.01828},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01955,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00122,"9.3":0.02689,"10.0-10.2":0.00244,"10.3":0.09411,"11.0-11.2":0.00978,"11.3-11.4":0.01222,"12.0-12.1":0.011,"12.2-12.5":0.25421,"13.0-13.1":0.00733,"13.2":0.01467,"13.3":0.01344,"13.4-13.7":0.07455,"14.0-14.4":0.21999,"14.5-14.8":0.63308,"15.0-15.1":0.2591,"15.2-15.3":0.3752,"15.4":0.80418,"15.5":8.95595,"16.0":0.11366},P:{"4":0.39372,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.03108,"12.0":0.01043,"13.0":0.03108,"14.0":0.04144,"15.0":0.02072,"16.0":0.10361,"17.0":2.31053,"18.0":0.01043},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02127,"4.2-4.3":0.0117,"4.4":0,"4.4.3-4.4.4":0.0702},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16448,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":38.66341},S:{"2.5":0},R:{_:"0"},M:{"0":0.32037},Q:{"10.4":0},O:{"0":0.03801},H:{"0":0.5295}}; 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 a786d81c1c1f0af..29a1ebd43d65890 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:{"23":0.0021,"30":0.0063,"34":0.0042,"38":0.0042,"43":0.0042,"45":0.0021,"48":0.0042,"52":0.0042,"56":0.0042,"61":0.0021,"62":0.0042,"63":0.0063,"72":0.01259,"78":0.0042,"91":0.0105,"95":0.01259,"96":0.03149,"97":0.0063,"99":0.0084,"100":0.01259,"101":0.05248,"102":0.71996,"103":0.12174,_:"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 35 36 37 39 40 41 42 44 46 47 49 50 51 53 54 55 57 58 59 60 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 98 104 105 3.5 3.6"},D:{"11":0.0021,"34":0.0063,"38":0.01469,"39":0.0042,"40":0.0021,"48":0.0063,"49":0.0042,"50":0.0042,"58":0.0084,"60":0.0021,"63":0.0063,"64":0.0084,"65":0.0042,"68":0.0021,"72":0.0063,"73":0.0021,"74":0.01259,"75":0.03568,"76":0.02939,"77":0.0042,"78":0.0105,"79":0.0084,"80":0.01889,"81":0.0105,"83":0.02309,"84":0.0042,"85":0.0063,"86":0.03149,"87":0.03568,"88":0.0084,"89":0.0021,"90":0.0042,"91":0.01679,"92":0.0042,"93":0.04618,"94":0.02939,"95":0.0084,"96":0.02309,"97":0.04198,"98":0.03149,"99":0.07347,"100":0.10075,"101":0.06297,"102":0.46388,"103":6.60555,"104":0.02729,_:"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 41 42 43 44 45 46 47 51 52 53 54 55 56 57 59 61 62 66 67 69 70 71 105 106 107"},F:{"18":0.0042,"40":0.0063,"65":0.04618,"69":0.0063,"77":0.01469,"79":0.03778,"81":0.0021,"83":0.0063,"84":0.0042,"85":0.01259,"86":0.01889,"87":0.02729,"88":0.4135,"89":0.38202,_:"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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 70 71 72 73 74 75 76 78 80 82 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.07766,"13":0.02939,"14":0.02939,"15":0.04618,"16":0.03778,"17":0.0084,"18":0.13853,"80":0.0021,"83":0.0021,"84":0.01469,"85":0.02099,"87":0.0063,"89":0.02309,"90":0.01469,"91":0.0063,"92":0.10495,"94":0.0084,"95":0.01259,"96":0.0084,"97":0.0063,"98":0.0084,"99":0.02099,"100":0.01679,"101":0.05877,"102":0.15113,"103":2.00035,_:"79 81 86 88 93"},E:{"4":0,"11":0.0021,"13":0.0042,"14":0.01679,"15":0.0084,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.0021,"11.1":0.0042,"12.1":0.01469,"13.1":0.03149,"14.1":0.02099,"15.1":0.01889,"15.2-15.3":0.0021,"15.4":0.01679,"15.5":0.22879,"15.6":0.0042},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00144,"6.0-6.1":0.12347,"7.0-7.1":0.01938,"8.1-8.4":0.00359,"9.0-9.2":0.00144,"9.3":0.0847,"10.0-10.2":0,"10.3":0.06245,"11.0-11.2":0.00718,"11.3-11.4":0.03087,"12.0-12.1":0.03087,"12.2-12.5":0.62164,"13.0-13.1":0.16438,"13.2":0.01651,"13.3":0.13352,"13.4-13.7":0.11055,"14.0-14.4":1.03009,"14.5-14.8":0.85279,"15.0-15.1":0.42926,"15.2-15.3":0.54843,"15.4":0.38261,"15.5":2.3588,"16.0":0.04163},P:{"4":0.13813,"5.0-5.4":0.03188,"6.2-6.4":0.02125,"7.2-7.4":0.09563,"8.2":0.01034,"9.2":0.02125,"10.1":0.12454,"11.1-11.2":0.05313,"12.0":0.02125,"13.0":0.02125,"14.0":0.06375,"15.0":0.02125,"16.0":0.19126,"17.0":0.55253},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.00504,"4.4":0,"4.4.3-4.4.4":0.0397},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01424,"9":0.00475,"10":0.00949,"11":0.08067,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.10271},Q:{"10.4":0},O:{"0":1.52489},H:{"0":16.11226},L:{"0":59.1531},S:{"2.5":0.0079}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00214,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00214,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0.00427,"62":0,"63":0.00214,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00214,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00214,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00214,"92":0,"93":0,"94":0,"95":0.00854,"96":0.00641,"97":0.00214,"98":0,"99":0.00214,"100":0.00214,"101":0.01282,"102":0.1602,"103":0.02777,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00214,"35":0,"36":0,"37":0,"38":0.00427,"39":0.00214,"40":0.00214,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00214,"49":0,"50":0.00214,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00214,"59":0,"60":0,"61":0,"62":0,"63":0.00214,"64":0.00214,"65":0,"66":0,"67":0,"68":0.00641,"69":0,"70":0.00214,"71":0,"72":0.00214,"73":0,"74":0.00214,"75":0.00854,"76":0.00641,"77":0.00214,"78":0.00427,"79":0.00214,"80":0.00427,"81":0.00427,"83":0.00427,"84":0,"85":0.00214,"86":0.00641,"87":0.00854,"88":0.00214,"89":0,"90":0,"91":0.00427,"92":0.00427,"93":0.01068,"94":0.00641,"95":0.00214,"96":0.00427,"97":0.00854,"98":0.00641,"99":0.01495,"100":0.02136,"101":0.01495,"102":0.10039,"103":1.43753,"104":0.00641,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.00641,"21":0,"22":0,"23":0,"24":0.00641,"25":0,"26":0.01282,"27":0.00854,"28":0.01495,"29":0,"30":0.0235,"31":0.01068,"32":0.00854,"33":0.00641,"34":0,"35":0.00214,"36":0,"37":0,"38":0.00641,"39":0,"40":0.00214,"41":0,"42":0.00854,"43":0.00214,"44":0,"45":0.00214,"46":0.00214,"47":0,"48":0,"49":0,"50":0.00641,"51":0.00214,"52":0,"53":0,"54":0.00427,"55":0.00214,"56":0.00214,"57":0.01282,"58":0.04058,"60":0.59808,"62":0.01282,"63":0.97829,"64":0.01709,"65":0.0235,"66":0,"67":0.00427,"68":0,"69":0.00214,"70":0.00214,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00214,"78":0,"79":0.00854,"80":0,"81":0,"82":0,"83":0.00214,"84":0,"85":0.00214,"86":0.00427,"87":0.00641,"88":0.08758,"89":0.08117,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.12602},B:{"12":0.01709,"13":0.00641,"14":0.00641,"15":0.01495,"16":0.00854,"17":0.00214,"18":0.0299,"79":0,"80":0,"81":0,"83":0,"84":0.00214,"85":0.00427,"86":0,"87":0.00214,"88":0,"89":0.00427,"90":0.00214,"91":0.00214,"92":0.02136,"93":0,"94":0.00214,"95":0.00427,"96":0.00214,"97":0.00214,"98":0.00214,"99":0.00427,"100":0.00427,"101":0.01282,"102":0.03418,"103":0.43147,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00427,"15":0.00214,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00214,"13.1":0.00641,"14.1":0.00427,"15.1":0.00427,"15.2-15.3":0,"15.4":0.00427,"15.5":0.04913,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0018,"6.0-6.1":0.1547,"7.0-7.1":0.02428,"8.1-8.4":0.0045,"9.0-9.2":0.0018,"9.3":0.10613,"10.0-10.2":0,"10.3":0.07825,"11.0-11.2":0.00899,"11.3-11.4":0.03867,"12.0-12.1":0.03867,"12.2-12.5":0.77889,"13.0-13.1":0.20596,"13.2":0.02069,"13.3":0.16729,"13.4-13.7":0.13851,"14.0-14.4":1.29065,"14.5-14.8":1.0685,"15.0-15.1":0.53785,"15.2-15.3":0.68715,"15.4":0.47938,"15.5":2.95546,"16.0":0.05217},P:{"4":0.15464,"5.0-5.4":0.03093,"6.2-6.4":0.02062,"7.2-7.4":0.09278,"8.2":0,"9.2":0.03093,"10.1":0,"11.1-11.2":0.06185,"12.0":0.02062,"13.0":0.02062,"14.0":0.06185,"15.0":0.02062,"16.0":0.18556,"17.0":0.52576,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00722,"4.2-4.3":0.01364,"4.4":0,"4.4.3-4.4.4":0.10749},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00237,"9":0,"10":0.00237,"11":0.01661,"5.5":0},J:{"7":0,"10":0.00786},N:{"10":0,"11":0},L:{"0":63.8743},S:{"2.5":0.00786},R:{_:"0"},M:{"0":0.10223},Q:{"10.4":0},O:{"0":1.51775},H:{"0":16.0368}}; 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 fd366437882a906..ef45166b0c088d0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js @@ -1 +1 @@ -module.exports={C:{"52":0.01687,"56":0.0225,"78":0.02812,"84":0.03937,"87":0.01125,"91":0.19684,"95":0.00562,"97":0.05624,"99":0.00562,"100":0.0225,"101":0.20246,"102":2.68265,"103":0.33182,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 92 93 94 96 98 104 105 3.5 3.6"},D:{"49":0.05062,"76":0.02812,"77":0.01125,"79":0.19684,"84":0.0225,"87":0.09561,"88":0.00562,"89":0.03374,"91":0.01687,"92":0.01687,"94":0.01125,"96":0.01125,"97":0.03374,"98":0.92234,"99":0.00562,"100":0.05062,"101":2.03589,"102":1.5466,"103":30.07715,"104":0.01125,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 78 80 81 83 85 86 90 93 95 105 106"},F:{"46":0.01125,"88":0.19684,"89":0.05624,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"101":0.01125,"102":3.58249,"103":7.10874,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100"},E:{"4":0,"11":0.00562,"13":0.18559,"14":0.33182,"15":0.4218,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 16.0","10.1":0.02812,"11.1":0.10686,"12.1":0.10123,"13.1":0.68613,"14.1":0.46679,"15.1":0.1181,"15.2-15.3":0.03937,"15.4":0.34869,"15.5":2.46331,"15.6":0.50054},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00496,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.01818,"9.3":0.01818,"10.0-10.2":0.00496,"10.3":0.06114,"11.0-11.2":0.00496,"11.3-11.4":0,"12.0-12.1":0.00496,"12.2-12.5":0.56186,"13.0-13.1":0,"13.2":0,"13.3":0.00331,"13.4-13.7":0.0314,"14.0-14.4":0.13055,"14.5-14.8":0.78825,"15.0-15.1":0.13055,"15.2-15.3":0.19169,"15.4":7.4165,"15.5":7.01164,"16.0":0.01818},P:{"4":0.16495,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.4592,"8.2":0.01034,"9.2":0.05102,"10.1":0.02088,"11.1-11.2":0.26532,"12.0":0.04082,"13.0":0.04124,"14.0":0.01031,"15.0":0.14286,"16.0":1.20413,"17.0":3.28868},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.03501},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.03374,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.15316},Q:{"10.4":0},O:{"0":0},H:{"0":0.01243},L:{"0":23.85782}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01151,"53":0,"54":0,"55":0,"56":0.01151,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01727,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.02302,"85":0,"86":0,"87":0.00576,"88":0,"89":0,"90":0,"91":0.11512,"92":0,"93":0,"94":0,"95":0.00576,"96":0,"97":0.03454,"98":0.05756,"99":0.00576,"100":0.01151,"101":0.11512,"102":1.56563,"103":0.1957,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.02878,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.01727,"77":0.00576,"78":0,"79":0.11512,"80":0,"81":0,"83":0,"84":0.01151,"85":0,"86":0,"87":0.05756,"88":0.00576,"89":0.01727,"90":0,"91":0.00576,"92":0.01151,"93":0,"94":0.00576,"95":0,"96":0.00576,"97":0.01727,"98":0.52955,"99":0.00576,"100":0.02878,"101":1.17422,"102":0.89218,"103":17.40614,"104":0.00576,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00576,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.11512,"89":0.02878,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.01727,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00576,"102":2.0664,"103":4.09252,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00576,"12":0,"13":0.10936,"14":0.18995,"15":0.24175,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.01727,"11.1":0.06332,"12.1":0.05756,"13.1":0.39141,"14.1":0.27053,"15.1":0.06907,"15.2-15.3":0.02302,"15.4":0.20146,"15.5":1.41598,"15.6":0.2878,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00787,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.02884,"9.3":0.02884,"10.0-10.2":0.00787,"10.3":0.09702,"11.0-11.2":0.00787,"11.3-11.4":0,"12.0-12.1":0.00787,"12.2-12.5":0.89156,"13.0-13.1":0,"13.2":0,"13.3":0.00524,"13.4-13.7":0.04982,"14.0-14.4":0.20716,"14.5-14.8":1.2508,"15.0-15.1":0.20716,"15.2-15.3":0.30418,"15.4":11.76854,"15.5":11.12609,"16.0":0.02884},P:{"4":0.15405,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0.04108,"14.0":0.01027,"15.0":0,"16.0":0,"17.0":3.19404,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.10302},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02302,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":35.84704},S:{"2.5":0},R:{_:"0"},M:{"0":0.14854},Q:{"10.4":0},O:{"0":0},H:{"0":0.01205}}; 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 f54e76ea1e498f6..fd1a8e584c28cf9 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.0086,"36":0.00215,"41":0.00215,"42":0.01075,"43":0.00215,"48":0.00215,"49":0.0043,"52":0.02149,"56":0.00645,"57":0.00645,"64":0.0043,"70":0.04083,"72":0.0086,"78":0.05158,"80":0.0086,"84":0.00645,"88":0.00645,"90":0.00645,"91":0.04728,"92":0.00645,"94":0.01719,"95":0.00645,"96":0.00215,"97":0.00645,"98":0.01504,"99":0.01504,"100":0.00645,"101":0.1139,"102":1.52794,"103":0.17192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 44 45 46 47 50 51 53 54 55 58 59 60 61 62 63 65 66 67 68 69 71 73 74 75 76 77 79 81 82 83 85 86 87 89 93 104 105 3.5 3.6"},D:{"38":0.0043,"46":0.01934,"49":0.08596,"55":0.0043,"60":0.03438,"61":0.00215,"62":0.0043,"63":0.0043,"65":0.01289,"66":0.00215,"67":0.00215,"68":0.0043,"69":0.07736,"70":0.00645,"71":0.0043,"72":0.00215,"74":0.03224,"75":0.01075,"76":0.01075,"77":0.00645,"78":0.00215,"79":0.03438,"80":0.0086,"81":0.01719,"83":0.0043,"84":0.00645,"85":0.01289,"86":0.04083,"87":0.02149,"88":0.00645,"89":0.01075,"90":0.00645,"91":0.03868,"92":0.01504,"93":0.03438,"94":0.01075,"95":0.01719,"96":0.02364,"97":0.04513,"98":0.02149,"99":0.01934,"100":0.03653,"101":0.08381,"102":0.41046,"103":10.11319,"104":0.00645,"105":0.00215,_:"4 5 6 7 8 9 10 11 12 13 14 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 56 57 58 59 64 73 106 107"},F:{"56":0.0086,"79":0.00645,"85":0.01934,"86":0.00645,"87":0.01289,"88":0.19341,"89":0.19986,"90":0.0086,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 80 81 82 83 84 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01075,"13":0.00645,"15":0.0086,"16":0.00645,"17":0.01075,"18":0.03868,"84":0.0043,"85":0.0086,"89":0.00215,"91":0.00215,"92":0.01719,"96":0.0086,"98":0.02149,"99":0.0086,"100":0.02364,"101":0.03653,"102":0.06877,"103":2.09098,_:"14 79 80 81 83 86 87 88 90 93 94 95 97"},E:{"4":0,"10":0.0043,"12":0.0086,"13":0.0086,"14":0.03653,"15":0.0043,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01075,"11.1":0.01075,"12.1":0.03009,"13.1":0.05587,"14.1":0.1139,"15.1":0.01075,"15.2-15.3":0.01289,"15.4":0.06232,"15.5":0.29656,"15.6":0.02149,"16.0":0.00645},G:{"8":0.00365,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02558,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10963,"10.0-10.2":0.02375,"10.3":0.10598,"11.0-11.2":0.04933,"11.3-11.4":0.02558,"12.0-12.1":0.06212,"12.2-12.5":0.95379,"13.0-13.1":0.03289,"13.2":0.03289,"13.3":0.12242,"13.4-13.7":0.30331,"14.0-14.4":1.23518,"14.5-14.8":2.07204,"15.0-15.1":0.75098,"15.2-15.3":1.02323,"15.4":1.17488,"15.5":9.62747,"16.0":0.18455},P:{"4":0.20624,"5.0-5.4":0.01042,"6.2-6.4":0.02069,"7.2-7.4":0.30936,"8.2":0.01034,"9.2":0.04125,"10.1":0.02062,"11.1-11.2":0.12374,"12.0":0.03094,"13.0":0.0825,"14.0":0.12374,"15.0":0.0825,"16.0":0.2578,"17.0":1.71179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00161,"4.2-4.3":0.00482,"4.4":0,"4.4.3-4.4.4":0.06422},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18052,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.14128},Q:{"10.4":0},O:{"0":0.04709},H:{"0":0.34182},L:{"0":60.86978},S:{"2.5":0.0157}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00217,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00217,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00217,"50":0,"51":0,"52":0.00433,"53":0,"54":0,"55":0,"56":0.00217,"57":0.00217,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00217,"69":0,"70":0.00866,"71":0,"72":0.00217,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01083,"79":0,"80":0.00217,"81":0.00217,"82":0,"83":0,"84":0.00217,"85":0,"86":0,"87":0,"88":0.00217,"89":0.00217,"90":0.00217,"91":0.01083,"92":0.00217,"93":0,"94":0.00433,"95":0.00217,"96":0,"97":0.00217,"98":0.00433,"99":0.00433,"100":0.00217,"101":0.02816,"102":0.34439,"103":0.03899,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00433,"47":0,"48":0,"49":0.01949,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00866,"61":0,"62":0,"63":0.00217,"64":0,"65":0.00217,"66":0,"67":0,"68":0.00217,"69":0.01733,"70":0.00217,"71":0.00217,"72":0,"73":0,"74":0.0065,"75":0.00217,"76":0.00217,"77":0.00217,"78":0,"79":0.0065,"80":0.00217,"81":0.01516,"83":0,"84":0.00217,"85":0.00217,"86":0.00866,"87":0.00433,"88":0.00217,"89":0.00217,"90":0.00217,"91":0.00866,"92":0.00433,"93":0.00866,"94":0.00217,"95":0.00433,"96":0.00433,"97":0.01083,"98":0.00433,"99":0.00433,"100":0.00866,"101":0.01949,"102":0.09097,"103":2.20066,"104":0.00217,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00217,"47":0,"48":0,"49":0,"50":0.00433,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00217,"57":0,"58":0.00217,"60":0.00433,"62":0,"63":0.013,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00217,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00433,"86":0.00217,"87":0.00217,"88":0.04115,"89":0.04332,"90":0.00217,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00433,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00217,"13":0.00217,"14":0.00217,"15":0.00217,"16":0.00217,"17":0.00217,"18":0.00866,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00217,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00433,"93":0.00217,"94":0,"95":0,"96":0.00217,"97":0,"98":0.00433,"99":0.00217,"100":0.00433,"101":0.00866,"102":0.01516,"103":0.45703,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00217,"13":0.00217,"14":0.00866,"15":0.00217,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00217,"11.1":0.00217,"12.1":0.0065,"13.1":0.013,"14.1":0.02383,"15.1":0.00217,"15.2-15.3":0.00217,"15.4":0.013,"15.5":0.06498,"15.6":0.00433,"16.0":0.00217},G:{"8":0.00452,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03161,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13549,"10.0-10.2":0.02936,"10.3":0.13097,"11.0-11.2":0.06097,"11.3-11.4":0.03161,"12.0-12.1":0.07678,"12.2-12.5":1.17875,"13.0-13.1":0.04065,"13.2":0.04065,"13.3":0.1513,"13.4-13.7":0.37485,"14.0-14.4":1.5265,"14.5-14.8":2.56073,"15.0-15.1":0.92809,"15.2-15.3":1.26456,"15.4":1.45198,"15.5":11.89812,"16.0":0.22807},P:{"4":0.20444,"5.0-5.4":0.01022,"6.2-6.4":0.01022,"7.2-7.4":0.31687,"8.2":0,"9.2":0.04089,"10.1":0.02044,"11.1-11.2":0.12266,"12.0":0.03067,"13.0":0.08177,"14.0":0.12266,"15.0":0.08177,"16.0":0.25554,"17.0":1.68659,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00273,"4.2-4.3":0.0082,"4.4":0,"4.4.3-4.4.4":0.10939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03899,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":69.46157},S:{"2.5":0.01567},R:{_:"0"},M:{"0":0.14101},Q:{"10.4":0},O:{"0":0.047},H:{"0":0.34117}}; 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 90309f95e7b74db..d4a8635915a0b6a 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:{"67":0.00362,"72":0.00181,"87":0.01266,"91":0.0199,"99":0.00905,"100":0.00362,"101":0.05065,"102":0.34371,"103":0.04523,"104":0.00362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 105 3.5 3.6"},D:{"33":0.00362,"34":0.00362,"38":0.01085,"43":0.01447,"49":0.00543,"50":0.00362,"57":0.00543,"63":0.00543,"64":0.00181,"65":0.01085,"66":0.00181,"68":0.03256,"69":0.00543,"70":0.00362,"71":0.00181,"72":0.00181,"73":0.00181,"74":0.00724,"76":0.00362,"77":0.00905,"78":0.00362,"79":0.06151,"80":0.01447,"81":0.00362,"83":0.00362,"84":0.00362,"86":0.03075,"87":0.04342,"88":0.01266,"89":0.00362,"90":0.00362,"91":0.01447,"92":0.01266,"93":0.02714,"94":0.01628,"95":0.01628,"96":0.01809,"97":0.03075,"98":0.08321,"99":0.05789,"100":0.04523,"101":0.14834,"102":0.78149,"103":11.15429,"104":0.02171,"105":0.00543,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 44 45 46 47 48 51 52 53 54 55 56 58 59 60 61 62 67 75 85 106 107"},F:{"28":0.00362,"79":0.00362,"83":0.00181,"84":0.00362,"86":0.00362,"87":0.01447,"88":0.15919,"89":0.08864,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0199,"13":0.00362,"14":0.01447,"15":0.00724,"16":0.00724,"17":0.00362,"18":0.06512,"84":0.00905,"85":0.01266,"88":0.00181,"89":0.01085,"90":0.00905,"92":0.03075,"96":0.00181,"97":0.00181,"98":0.01085,"99":0.01266,"100":0.01085,"101":0.02171,"102":0.03437,"103":1.46348,_:"79 80 81 83 86 87 91 93 94 95"},E:{"4":0,"13":0.00724,"14":0.02894,"15":0.00905,_:"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 16.0","12.1":0.02533,"13.1":0.03075,"14.1":0.06151,"15.1":0.03437,"15.2-15.3":0.01628,"15.4":0.10854,"15.5":0.161,"15.6":0.02352},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.02696,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00385,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03659,"10.0-10.2":0,"10.3":0.05103,"11.0-11.2":0.0077,"11.3-11.4":0.02696,"12.0-12.1":0.01829,"12.2-12.5":0.5334,"13.0-13.1":0.02696,"13.2":0.01155,"13.3":0.05873,"13.4-13.7":0.22819,"14.0-14.4":0.68168,"14.5-14.8":1.08029,"15.0-15.1":0.44675,"15.2-15.3":0.63835,"15.4":0.74523,"15.5":4.59652,"16.0":0.14442},P:{"4":0.18242,"5.0-5.4":0.0304,"6.2-6.4":0.07094,"7.2-7.4":1.01346,"8.2":0.02018,"9.2":0.05067,"10.1":0.01009,"11.1-11.2":0.22296,"12.0":0.04054,"13.0":0.13175,"14.0":0.36485,"15.0":0.12162,"16.0":0.4966,"17.0":1.80396},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01638,"4.2-4.3":0.04915,"4.4":0,"4.4.3-4.4.4":0.54067},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00543,"11":0.03075,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.04915},Q:{"10.4":0},O:{"0":2.33472},H:{"0":2.57488},L:{"0":62.57901},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00184,"88":0,"89":0,"90":0,"91":0.00368,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00184,"100":0.00184,"101":0.01103,"102":0.06617,"103":0.00919,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00184,"39":0,"40":0,"41":0,"42":0,"43":0.00368,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00184,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0.00184,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00184,"64":0,"65":0.00184,"66":0,"67":0,"68":0.00551,"69":0.00184,"70":0.00368,"71":0,"72":0.00184,"73":0,"74":0.00368,"75":0,"76":0,"77":0.00184,"78":0,"79":0.01103,"80":0.00368,"81":0.01654,"83":0.00184,"84":0,"85":0,"86":0.00551,"87":0.04227,"88":0.00551,"89":0.00184,"90":0.00184,"91":0.00735,"92":0.00368,"93":0.00735,"94":0.01103,"95":0.00368,"96":0.00919,"97":0.00735,"98":0.01838,"99":0.01838,"100":0.01287,"101":0.03676,"102":0.1691,"103":2.17435,"104":0.00368,"105":0.00184,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00184,"60":0.00368,"62":0,"63":0.21137,"64":0.08087,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00368,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00184,"88":0.02941,"89":0.01654,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00368,"13":0,"14":0.00184,"15":0.00184,"16":0.00184,"17":0,"18":0.01287,"79":0,"80":0,"81":0,"83":0,"84":0.00184,"85":0.00184,"86":0,"87":0,"88":0,"89":0.00184,"90":0.00184,"91":0,"92":0.00551,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00184,"99":0.00184,"100":0.00184,"101":0.00368,"102":0.00735,"103":0.27019,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00184,"14":0.00551,"15":0.00184,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00551,"13.1":0.00551,"14.1":0.01103,"15.1":0.00551,"15.2-15.3":0.00368,"15.4":0.02022,"15.5":0.02941,"15.6":0.00368,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.03285,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00469,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04458,"10.0-10.2":0,"10.3":0.06217,"11.0-11.2":0.00938,"11.3-11.4":0.03285,"12.0-12.1":0.02229,"12.2-12.5":0.64987,"13.0-13.1":0.03285,"13.2":0.01408,"13.3":0.07156,"13.4-13.7":0.27801,"14.0-14.4":0.83052,"14.5-14.8":1.31617,"15.0-15.1":0.5443,"15.2-15.3":0.77773,"15.4":0.90794,"15.5":5.60016,"16.0":0.17596},P:{"4":0.21493,"5.0-5.4":0.0307,"6.2-6.4":0.07164,"7.2-7.4":1.01325,"8.2":0,"9.2":0.05117,"10.1":0,"11.1-11.2":0.21493,"12.0":0.05117,"13.0":0.13305,"14.0":0.34799,"15.0":0.11258,"16.0":0.49127,"17.0":1.78087,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0201,"4.2-4.3":0.0603,"4.4":0,"4.4.3-4.4.4":0.66328},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00184,"10":0,"11":0.00551,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.70235},S:{"2.5":0},R:{_:"0"},M:{"0":0.04897},Q:{"10.4":0},O:{"0":2.32617},H:{"0":2.56545}}; 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 1f241e5b98aba53..883cd1adb7aaee8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js @@ -1 +1 @@ -module.exports={C:{"52":0.01588,"89":0.00953,"96":0.00953,"99":0.0127,"100":0.01588,"101":0.11116,"102":1.72457,"103":0.11751,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 97 98 104 105 3.5 3.6"},D:{"36":0.00318,"39":0.00635,"40":0.00635,"49":0.01588,"53":0.00635,"65":0.00635,"69":0.02223,"70":0.00635,"73":0.03811,"75":0.0127,"76":0.00953,"79":0.04764,"81":0.01906,"83":0.01906,"84":0.02858,"86":0.01588,"87":0.00318,"88":0.01588,"89":0.00635,"90":0.01906,"91":0.09528,"93":0.05082,"94":0.00318,"95":0.06352,"96":0.06034,"97":0.04446,"98":0.03176,"99":0.0667,"100":0.30807,"101":0.10798,"102":1.52766,"103":17.83642,"104":0.00953,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 74 77 78 80 85 92 105 106 107"},F:{"63":0.05399,"75":0.00953,"84":0.01588,"85":0.00318,"86":0.00635,"87":0.02541,"88":0.55262,"89":0.35889,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01906,"13":0.00318,"16":0.00953,"17":0.00635,"18":0.01906,"84":0.00318,"89":0.00635,"90":0.00635,"92":0.00635,"98":0.02223,"99":0.00953,"101":0.03176,"102":0.16515,"103":3.96365,_:"14 15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 100"},E:{"4":0,"13":0.04129,"14":0.03811,"15":0.00635,_:"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 16.0","12.1":0.01588,"13.1":0.12386,"14.1":0.1588,"15.1":0.02223,"15.2-15.3":0.02223,"15.4":0.16515,"15.5":0.88928,"15.6":0.02858},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00245,"5.0-5.1":0.05991,"6.0-6.1":0,"7.0-7.1":0.11248,"8.1-8.4":0,"9.0-9.2":0.00367,"9.3":0.03301,"10.0-10.2":0,"10.3":0.14304,"11.0-11.2":0.00122,"11.3-11.4":0.00367,"12.0-12.1":0.00978,"12.2-12.5":0.76901,"13.0-13.1":0.03423,"13.2":0.00489,"13.3":0.03546,"13.4-13.7":0.06847,"14.0-14.4":0.368,"14.5-14.8":0.90839,"15.0-15.1":0.1516,"15.2-15.3":0.32154,"15.4":0.73967,"15.5":8.11559,"16.0":0.03546},P:{"4":0.78487,"5.0-5.4":0.03058,"6.2-6.4":0.07135,"7.2-7.4":0.77467,"8.2":0.02056,"9.2":0.03058,"10.1":0.01019,"11.1-11.2":0.17328,"12.0":0.12232,"13.0":0.33637,"14.0":0.27521,"15.0":0.22425,"16.0":0.50965,"17.0":7.29823},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00256,"4.4":0,"4.4.3-4.4.4":0.05203},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07305,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.20472},Q:{"10.4":0},O:{"0":0.28661},H:{"0":0.20674},L:{"0":46.89057},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00657,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00328,"90":0.00328,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.00328,"97":0,"98":0,"99":0.00328,"100":0.00657,"101":0.03611,"102":0.62049,"103":0.04268,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00328,"40":0.00328,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00328,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00328,"66":0,"67":0,"68":0,"69":0.00657,"70":0.00328,"71":0,"72":0,"73":0.01313,"74":0,"75":0.00328,"76":0.00328,"77":0,"78":0,"79":0.01642,"80":0,"81":0.01642,"83":0.00657,"84":0.00985,"85":0,"86":0.00657,"87":0,"88":0.00657,"89":0.00328,"90":0.00657,"91":0.03283,"92":0,"93":0.01642,"94":0.00328,"95":0.0197,"96":0.02298,"97":0.01313,"98":0.00985,"99":0.02298,"100":0.10177,"101":0.0394,"102":0.50887,"103":5.90283,"104":0.00328,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02626,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.00328,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00657,"85":0,"86":0,"87":0.00657,"88":0.18057,"89":0.11819,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00657,"13":0,"14":0.00328,"15":0,"16":0.00328,"17":0.00328,"18":0.00657,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00328,"90":0.00328,"91":0,"92":0.00328,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01313,"99":0.00328,"100":0,"101":0.00985,"102":0.06238,"103":1.3132,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.01313,"14":0.01313,"15":0.00328,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00657,"13.1":0.0394,"14.1":0.05253,"15.1":0.00657,"15.2-15.3":0.00657,"15.4":0.05253,"15.5":0.29219,"15.6":0.00985,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00333,"5.0-5.1":0.0817,"6.0-6.1":0,"7.0-7.1":0.1534,"8.1-8.4":0,"9.0-9.2":0.005,"9.3":0.04502,"10.0-10.2":0,"10.3":0.19508,"11.0-11.2":0.00167,"11.3-11.4":0.005,"12.0-12.1":0.01334,"12.2-12.5":1.04878,"13.0-13.1":0.04669,"13.2":0.00667,"13.3":0.04835,"13.4-13.7":0.09337,"14.0-14.4":0.50188,"14.5-14.8":1.23886,"15.0-15.1":0.20675,"15.2-15.3":0.43852,"15.4":1.00876,"15.5":11.06803,"16.0":0.04835},P:{"4":0.76927,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.75887,"8.2":0,"9.2":0.04158,"10.1":0.0104,"11.1-11.2":0.16633,"12.0":0.11435,"13.0":0.33266,"14.0":0.27028,"15.0":0.21831,"16.0":0.49898,"17.0":7.1833,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02206,"4.4":0,"4.4.3-4.4.4":0.44861},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02626,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":58.69574},S:{"2.5":0},R:{_:"0"},M:{"0":0.20151},Q:{"10.4":0},O:{"0":0.28211},H:{"0":0.2035}}; 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 e2cf26c753192f7..0651d9db71a9648 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:{"49":0.02342,"52":0.03279,"77":0.02342,"78":0.01405,"87":0.00468,"88":0.00468,"89":0.00468,"90":0.00468,"94":0.00468,"95":0.00468,"98":0.03747,"99":0.01874,"100":0.00468,"101":0.09368,"102":0.75881,"103":0.01405,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 79 80 81 82 83 84 85 86 91 92 93 96 97 104 105 3.5 3.6"},D:{"33":0.01874,"43":0.50119,"52":0.01405,"53":0.00468,"56":0.00468,"57":0.03747,"58":0.02342,"62":0.07494,"63":0.00468,"64":0.07494,"65":0.01874,"68":0.07963,"69":0.1171,"70":0.03747,"72":0.03279,"74":0.01405,"79":0.04216,"86":0.01874,"87":0.01405,"88":0.04216,"89":5.65359,"90":0.04216,"91":0.01405,"92":0.01874,"95":0.01874,"96":0.10773,"97":0.01874,"98":0.05152,"99":0.05152,"100":0.04216,"101":0.17331,"102":0.8197,"103":24.30059,"104":0.03747,"105":0.18736,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 54 55 59 60 61 66 67 71 73 75 76 77 78 80 81 83 84 85 93 94 106"},F:{"85":0.00468,"87":0.04216,"88":0.4403,"89":0.36535,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.02342,"80":0.03279,"84":0.00468,"92":0.07494,"96":0.01874,"100":0.01874,"101":0.01874,"102":0.1171,"103":3.92988,_:"12 13 14 15 16 17 79 81 83 85 86 87 88 89 90 91 93 94 95 97 98 99"},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 15.6 16.0","12.1":0.03279,"13.1":0.01874,"14.1":0.02342,"15.1":0.00468,"15.2-15.3":0.01874,"15.4":0.14989,"15.5":0.34662},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01347,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.19039,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.0101,"12.2-12.5":0.18029,"13.0-13.1":0.01683,"13.2":0,"13.3":0,"13.4-13.7":0.02356,"14.0-14.4":0.01683,"14.5-14.8":0.09052,"15.0-15.1":0.09688,"15.2-15.3":0.12717,"15.4":1.32935,"15.5":1.47934,"16.0":0.1571},P:{"4":0.2442,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.31542,"8.2":0.01034,"9.2":0.05102,"10.1":0.02088,"11.1-11.2":0.02035,"12.0":0.02035,"13.0":0.13227,"14.0":0.25437,"15.0":0.14286,"16.0":1.20413,"17.0":1.2617},I:{"0":0,"3":0,"4":0.00061,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0447,"4.2-4.3":0.02388,"4.4":0,"4.4.3-4.4.4":0.26572},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.50119,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.08506},Q:{"10.4":0.00532},O:{"0":2.91848},H:{"0":0.17112},L:{"0":49.44192}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01427,"50":0,"51":0,"52":0.01427,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00951,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.01427,"78":0.00476,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00476,"88":0.00476,"89":0.00476,"90":0.00476,"91":0,"92":0,"93":0,"94":0.00476,"95":0.00476,"96":0,"97":0,"98":0.01903,"99":0.00951,"100":0.00476,"101":0.04281,"102":0.38532,"103":0.00476,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00951,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.23785,"44":0,"45":0,"46":0.01903,"47":0,"48":0,"49":0.00951,"50":0,"51":0,"52":0.00476,"53":0.00476,"54":0,"55":0,"56":0.00476,"57":0.01903,"58":0.01427,"59":0,"60":0,"61":0,"62":0.03806,"63":0.00476,"64":0.03806,"65":0.00951,"66":0,"67":0,"68":0.03806,"69":0.05708,"70":0.01903,"71":0,"72":0.01427,"73":0,"74":0.00476,"75":0,"76":0,"77":0,"78":0,"79":0.01903,"80":0,"81":0.02854,"83":0,"84":0,"85":0,"86":0.00951,"87":0.00476,"88":0.01903,"89":2.70198,"90":0.01903,"91":0.00951,"92":0.00951,"93":0,"94":0,"95":0.01903,"96":0.05233,"97":0.00951,"98":0.03806,"99":0.02379,"100":0.01903,"101":0.08563,"102":0.4424,"103":11.65465,"104":0.01903,"105":0.09038,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00951,"62":0,"63":0.06184,"64":0.00476,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00476,"86":0,"87":0.01903,"88":0.20931,"89":0.17125,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00476},B:{"12":0,"13":0,"14":0.00476,"15":0,"16":0,"17":0,"18":0.01427,"79":0,"80":0.01427,"81":0,"83":0,"84":0.00476,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.03806,"93":0,"94":0,"95":0,"96":0.00951,"97":0,"98":0,"99":0,"100":0.00951,"101":0.00951,"102":0.05708,"103":1.8695,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.01427,"13.1":0.00951,"14.1":0.01427,"15.1":0.00476,"15.2-15.3":0.00951,"15.4":0.07136,"15.5":0.16174,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0253,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.35766,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01897,"12.2-12.5":0.33868,"13.0-13.1":0.03162,"13.2":0,"13.3":0,"13.4-13.7":0.04427,"14.0-14.4":0.03162,"14.5-14.8":0.17004,"15.0-15.1":0.18199,"15.2-15.3":0.23891,"15.4":2.49727,"15.5":2.77904,"16.0":0.29512},P:{"4":0.24416,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.3052,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.02035,"12.0":0.02035,"13.0":0.13225,"14.0":0.24416,"15.0":0,"16.0":0.01017,"17.0":1.24115,"18.0":0},I:{"0":0,"3":0,"4":0.0016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.11645,"4.2-4.3":0.06222,"4.4":0,"4.4.3-4.4.4":0.69234},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.23785,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":63.59119},S:{"2.5":0},R:{_:"0"},M:{"0":0.08389},Q:{"10.4":0.00524},O:{"0":2.87841},H:{"0":0.16877}}; 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 a51194320a2f2af..f398d0cf2bca680 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.01344,"50":0.00896,"52":0.0224,"65":0.00896,"68":0.00448,"73":0.05823,"78":0.0224,"88":0.00896,"89":0.00448,"90":0.20156,"91":0.04031,"95":0.00448,"97":0.00896,"98":0.01344,"99":0.02687,"100":0.03135,"101":0.07614,"102":1.58557,"103":0.17468,_:"2 3 4 5 6 7 8 9 10 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 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 92 93 94 96 104 105 3.5 3.6"},D:{"38":0.00448,"49":0.06719,"55":0.00448,"65":0.00896,"67":0.00896,"68":0.00448,"69":0.00448,"70":0.00448,"71":0.01344,"72":0.01344,"73":0.00896,"74":0.00448,"75":0.00896,"76":0.00896,"77":0.00448,"78":0.01792,"79":0.10302,"80":0.04927,"81":0.01344,"83":0.01792,"84":0.0224,"85":0.01344,"86":0.01792,"87":0.02687,"88":0.01792,"89":0.01344,"90":0.01344,"91":0.29561,"92":0.03135,"93":0.0224,"94":0.02687,"95":0.03135,"96":0.03583,"97":0.04031,"98":0.06719,"99":0.0851,"100":0.14333,"101":0.13885,"102":1.26756,"103":27.40252,"104":0.01792,"105":0.00448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 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 106"},F:{"28":0.00896,"62":0.00448,"85":0.00896,"86":0.00896,"87":0.03135,"88":1.57213,"89":0.48373,_:"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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00448,"15":0.0224,"18":0.01792,"90":0.00448,"92":0.01344,"95":0.00896,"96":0.0224,"97":0.00896,"98":0.01344,"99":0.02687,"100":0.0224,"101":0.0851,"102":0.12541,"103":4.34911,_:"12 13 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94"},E:{"4":0,"13":0.00896,"14":0.04479,"15":0.03135,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.0","5.1":0.00896,"12.1":0.00448,"13.1":0.05375,"14.1":0.11645,"15.1":0.04479,"15.2-15.3":0.03583,"15.4":0.0851,"15.5":0.75695,"15.6":0.02687},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00301,"6.0-6.1":0.01807,"7.0-7.1":0.01626,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0259,"10.0-10.2":0,"10.3":0.01626,"11.0-11.2":0.00361,"11.3-11.4":0.00663,"12.0-12.1":0.00482,"12.2-12.5":0.19998,"13.0-13.1":0.00361,"13.2":0.00301,"13.3":0.02349,"13.4-13.7":0.05963,"14.0-14.4":0.16324,"14.5-14.8":0.33069,"15.0-15.1":0.11324,"15.2-15.3":0.15059,"15.4":0.32708,"15.5":4.3436,"16.0":0.04397},P:{"4":0.10479,"5.0-5.4":0.04105,"6.2-6.4":0.02052,"7.2-7.4":0.17815,"8.2":0.03079,"9.2":0.02051,"10.1":0.01069,"11.1-11.2":0.09431,"12.0":0.01048,"13.0":0.14671,"14.0":0.12575,"15.0":0.0524,"16.0":0.18863,"17.0":1.78149},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00498,"4.2-4.3":0.01245,"4.4":0,"4.4.3-4.4.4":0.10953},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05375,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.53544},Q:{"10.4":0},O:{"0":0.138},H:{"0":0.21949},L:{"0":48.29753}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00453,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00453,"51":0,"52":0.00907,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00453,"66":0,"67":0,"68":0.00453,"69":0,"70":0,"71":0,"72":0,"73":0.0272,"74":0,"75":0,"76":0,"77":0,"78":0.00907,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00453,"89":0.00453,"90":0.25844,"91":0.01814,"92":0,"93":0,"94":0,"95":0.00907,"96":0,"97":0.00453,"98":0.00453,"99":0.0136,"100":0.0136,"101":0.03627,"102":0.77078,"103":0.08161,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03174,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00453,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00453,"66":0,"67":0.00453,"68":0.00453,"69":0.00453,"70":0.00453,"71":0.00453,"72":0.00907,"73":0.00453,"74":0.00453,"75":0.00453,"76":0.00453,"77":0.00453,"78":0.00907,"79":0.04534,"80":0.02267,"81":0.00907,"83":0.00907,"84":0.00907,"85":0.00453,"86":0.00907,"87":0.0136,"88":0.00907,"89":0.00453,"90":0.00907,"91":0.13602,"92":0.0272,"93":0.0136,"94":0.0136,"95":0.0136,"96":0.01814,"97":0.01814,"98":0.03174,"99":0.04081,"100":0.06801,"101":0.06801,"102":0.58942,"103":12.84029,"104":0.00907,"105":0.00453,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00453,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0.00453,"63":0.02267,"64":0.00453,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00453,"86":0.00453,"87":0.0136,"88":0.71184,"89":0.22217,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00453,"15":0.00907,"16":0,"17":0,"18":0.00907,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00453,"91":0,"92":0.00453,"93":0,"94":0,"95":0.00453,"96":0.00907,"97":0.00453,"98":0.00453,"99":0.0136,"100":0.00907,"101":0.04534,"102":0.06348,"103":1.99043,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00453,"14":0.02267,"15":0.0136,_:"0","3.1":0,"3.2":0,"5.1":0.00453,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00453,"13.1":0.02267,"14.1":0.05441,"15.1":0.01814,"15.2-15.3":0.0136,"15.4":0.04081,"15.5":0.34458,"15.6":0.0136,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00461,"6.0-6.1":0.02767,"7.0-7.1":0.02491,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03966,"10.0-10.2":0,"10.3":0.02491,"11.0-11.2":0.00553,"11.3-11.4":0.01015,"12.0-12.1":0.00738,"12.2-12.5":0.30624,"13.0-13.1":0.00553,"13.2":0.00461,"13.3":0.03597,"13.4-13.7":0.09132,"14.0-14.4":0.24998,"14.5-14.8":0.50641,"15.0-15.1":0.17342,"15.2-15.3":0.23061,"15.4":0.50087,"15.5":6.65157,"16.0":0.06734},P:{"4":0.12308,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.16411,"8.2":0.01026,"9.2":0.02051,"10.1":0,"11.1-11.2":0.09231,"12.0":0.01026,"13.0":0.14359,"14.0":0.12308,"15.0":0.05128,"16.0":0.18462,"17.0":1.72312,"18.0":0.01026},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01293,"4.2-4.3":0.03233,"4.4":0,"4.4.3-4.4.4":0.28449},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02267,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.7641},S:{"2.5":0},R:{_:"0"},M:{"0":0.5302},Q:{"10.4":0},O:{"0":0.13665},H:{"0":0.21734}}; 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 5cc15d5a4944ebe..5fbd1a3c1b76883 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:{"40":0.00288,"41":0.00288,"43":0.00432,"47":0.00576,"48":0.00144,"49":0.00288,"52":0.04464,"54":0.00144,"56":0.00432,"58":0.00144,"59":0.00144,"61":0.00144,"65":0.00144,"66":0.00144,"70":0.00288,"72":0.0072,"78":0.00576,"81":0.00144,"84":0.02592,"85":0.00144,"86":0.00144,"87":0.00288,"88":0.00432,"89":0.00576,"90":0.00576,"91":0.04176,"92":0.00576,"93":0.00288,"94":0.01872,"95":0.0072,"96":0.02016,"97":0.00432,"98":0.01152,"99":0.03456,"100":0.05616,"101":0.12384,"102":1.1232,"103":0.13824,"104":0.00288,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 51 53 55 57 60 62 63 64 67 68 69 71 73 74 75 76 77 79 80 82 83 105 3.5 3.6"},D:{"11":0.00144,"24":0.00144,"26":0.00144,"28":0.00288,"31":0.00144,"33":0.00288,"36":0.00288,"37":0.00144,"38":0.00864,"39":0.00288,"40":0.00288,"42":0.00144,"43":0.01296,"44":0.00288,"46":0.00144,"47":0.00144,"48":0.00144,"49":0.0072,"50":0.00288,"51":0.00144,"52":0.00144,"53":0.00288,"55":0.00432,"56":0.00576,"57":0.00288,"58":0.00288,"59":0.00144,"60":0.00288,"62":0.00288,"63":0.01584,"64":0.00576,"65":0.0072,"66":0.0144,"67":0.00288,"68":0.01008,"69":0.02016,"70":0.27648,"71":0.01152,"72":0.01584,"73":0.00288,"74":0.00864,"75":0.0072,"76":0.0072,"77":0.00288,"78":0.00864,"79":0.03168,"80":0.01296,"81":0.03888,"83":0.05904,"84":0.00576,"85":0.01152,"86":0.02592,"87":0.03888,"88":0.01296,"89":0.03312,"90":0.0144,"91":0.02592,"92":0.03456,"93":0.01728,"94":0.01728,"95":0.04032,"96":0.04896,"97":0.02448,"98":0.03024,"99":0.03168,"100":0.072,"101":0.10944,"102":0.47808,"103":7.47792,"104":0.0144,"105":0.0072,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 27 29 30 32 34 35 41 45 54 61 106 107"},F:{"79":0.02016,"80":0.00288,"82":0.00432,"83":0.00864,"84":0.00432,"85":0.1728,"86":0.01008,"87":0.01008,"88":0.17568,"89":0.13248,"90":0.01296,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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:{"12":0.00144,"14":0.00288,"15":0.00288,"16":0.00432,"17":0.00432,"18":0.03312,"84":0.00864,"89":0.0144,"90":0.00576,"92":0.01584,"96":0.00144,"97":0.00288,"98":0.00288,"99":0.00288,"100":0.00432,"101":0.01296,"102":0.03456,"103":0.75888,_:"13 79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"13":0.00864,"14":0.02016,"15":0.00432,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.0","5.1":0.11088,"12.1":0.00288,"13.1":0.00864,"14.1":0.04896,"15.1":0.0144,"15.2-15.3":0.00576,"15.4":0.0144,"15.5":0.04896,"15.6":0.00144},G:{"8":0,"3.2":0.00025,"4.0-4.1":0,"4.2-4.3":0.00175,"5.0-5.1":0.00374,"6.0-6.1":0,"7.0-7.1":0.0242,"8.1-8.4":0.00349,"9.0-9.2":0.00025,"9.3":0.07634,"10.0-10.2":0.00299,"10.3":0.03643,"11.0-11.2":0.01148,"11.3-11.4":0.02071,"12.0-12.1":0.04715,"12.2-12.5":0.33057,"13.0-13.1":0.01697,"13.2":0.01048,"13.3":0.04566,"13.4-13.7":0.06886,"14.0-14.4":0.22803,"14.5-14.8":0.30338,"15.0-15.1":0.14246,"15.2-15.3":0.18088,"15.4":0.20184,"15.5":0.69508,"16.0":0.00374},P:{"4":2.17385,"5.0-5.4":0.08014,"6.2-6.4":0.20035,"7.2-7.4":0.38067,"8.2":0.04007,"9.2":0.23041,"10.1":0.18032,"11.1-11.2":0.32057,"12.0":0.12021,"13.0":0.42074,"14.0":0.65115,"15.0":0.23041,"16.0":0.69122,"17.0":2.10372},I:{"0":0,"3":0,"4":0.00127,"2.1":0,"2.2":0,"2.3":0.00064,"4.1":0.02165,"4.2-4.3":0.03279,"4.4":0,"4.4.3-4.4.4":0.17477},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00144,"11":0.04176,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.18832},Q:{"10.4":0},O:{"0":1.00152},H:{"0":1.86393},L:{"0":72.23648},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00146,"48":0,"49":0,"50":0,"51":0,"52":0.00583,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00875,"69":0,"70":0,"71":0,"72":0.00146,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00146,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00437,"85":0,"86":0,"87":0,"88":0,"89":0.00146,"90":0.00146,"91":0.00583,"92":0.00146,"93":0,"94":0.00292,"95":0.00146,"96":0.00292,"97":0.00292,"98":0.00146,"99":0.00437,"100":0.00875,"101":0.02041,"102":0.17204,"103":0.02041,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00146,"39":0,"40":0.00437,"41":0,"42":0,"43":0.00146,"44":0,"45":0,"46":0.00146,"47":0,"48":0,"49":0.00146,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00146,"56":0.00146,"57":0,"58":0.00146,"59":0,"60":0,"61":0,"62":0,"63":0.00292,"64":0.00146,"65":0.00146,"66":0.00146,"67":0,"68":0.00146,"69":0.00292,"70":0.04082,"71":0.00146,"72":0.00292,"73":0,"74":0.00146,"75":0.00146,"76":0.00146,"77":0,"78":0.00146,"79":0.00583,"80":0.00292,"81":0.0175,"83":0.00875,"84":0.00146,"85":0.00146,"86":0.00437,"87":0.00583,"88":0.00292,"89":0.00583,"90":0.00292,"91":0.00437,"92":0.00583,"93":0.00292,"94":0.00292,"95":0.00875,"96":0.00729,"97":0.00437,"98":0.00437,"99":0.00437,"100":0.01166,"101":0.01604,"102":0.07144,"103":1.0935,"104":0.00146,"105":0.00146,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00146,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00146,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0.00292,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00146,"60":0.00292,"62":0,"63":0.0175,"64":0.00146,"65":0,"66":0,"67":0,"68":0,"69":0.00146,"70":0.00146,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00292,"80":0,"81":0,"82":0,"83":0.00146,"84":0,"85":0.02479,"86":0.00146,"87":0.00146,"88":0.02479,"89":0.01895,"90":0.00146,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00146},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00437,"79":0,"80":0,"81":0,"83":0,"84":0.00146,"85":0,"86":0,"87":0,"88":0,"89":0.00146,"90":0.00146,"91":0,"92":0.00292,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00146,"101":0.00292,"102":0.00583,"103":0.11518,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00146,"14":0.00292,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.01604,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00146,"14.1":0.00729,"15.1":0.00146,"15.2-15.3":0.00146,"15.4":0.00146,"15.5":0.00729,"15.6":0,"16.0":0},G:{"8":0,"3.2":0.00029,"4.0-4.1":0,"4.2-4.3":0.00206,"5.0-5.1":0.00441,"6.0-6.1":0,"7.0-7.1":0.02849,"8.1-8.4":0.00411,"9.0-9.2":0.00029,"9.3":0.08987,"10.0-10.2":0.00352,"10.3":0.04288,"11.0-11.2":0.01351,"11.3-11.4":0.02438,"12.0-12.1":0.05551,"12.2-12.5":0.38913,"13.0-13.1":0.01997,"13.2":0.01233,"13.3":0.05374,"13.4-13.7":0.08106,"14.0-14.4":0.26842,"14.5-14.8":0.35712,"15.0-15.1":0.16769,"15.2-15.3":0.21292,"15.4":0.23759,"15.5":0.81819,"16.0":0.00441},P:{"4":2.16985,"5.0-5.4":0.08112,"6.2-6.4":0.20279,"7.2-7.4":0.3853,"8.2":0.04056,"9.2":0.23321,"10.1":0.17237,"11.1-11.2":0.32446,"12.0":0.12167,"13.0":0.42586,"14.0":0.63879,"15.0":0.22307,"16.0":0.67934,"17.0":2.09887,"18.0":0.01014},I:{"0":0,"3":0,"4":0.00173,"2.1":0,"2.2":0,"2.3":0.00086,"4.1":0.02939,"4.2-4.3":0.04451,"4.4":0,"4.4.3-4.4.4":0.23725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00583,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":81.07893},S:{"2.5":0},R:{_:"0"},M:{"0":0.18792},Q:{"10.4":0},O:{"0":0.99941},H:{"0":1.86001}}; 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 f81f1d8947e98e4..074c1520a2f99d3 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:{"52":0.0074,"60":0.01234,"61":0.00247,"71":0.04689,"72":0.0074,"87":0.0074,"88":0.00247,"91":0.00987,"94":0.01234,"95":0.00494,"96":0.00247,"98":0.02468,"99":0.00494,"100":0.01481,"101":0.09625,"102":0.58245,"103":0.11846,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 66 67 68 69 70 73 74 75 76 77 78 79 80 81 82 83 84 85 86 89 90 92 93 97 104 105 3.5 3.6"},D:{"40":0.00494,"49":0.00494,"57":0.00247,"63":0.00247,"64":0.01728,"65":0.01234,"69":0.00247,"70":0.13327,"74":0.01728,"75":0.06417,"77":0.02221,"78":0.01481,"79":0.02468,"80":0.00494,"81":0.09872,"83":0.00494,"84":0.01728,"85":0.00987,"86":0.0074,"87":0.00987,"88":0.0074,"89":0.1925,"90":0.0074,"91":0.01481,"92":0.02221,"93":0.00494,"94":0.00494,"95":0.00987,"96":0.07651,"97":0.02221,"98":0.01974,"99":0.1234,"100":0.03455,"101":0.09872,"102":0.56024,"103":8.49486,"104":0.02715,"105":0.00247,_:"4 5 6 7 8 9 10 11 12 13 14 15 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 59 60 61 62 66 67 68 71 72 73 76 106 107"},F:{"28":0.00247,"63":0.00494,"65":0.00247,"79":0.01728,"80":0.00247,"82":0.00494,"85":0.04936,"86":0.0074,"87":0.01728,"88":0.33071,"89":0.23693,_:"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 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02962,"13":0.01728,"14":0.01234,"15":0.02962,"16":0.01234,"17":0.01234,"18":0.04689,"80":0.00494,"84":0.01234,"85":0.00247,"86":0.00247,"89":0.01234,"90":0.01234,"92":0.04196,"96":0.00247,"97":0.00494,"98":0.00494,"99":0.0074,"100":0.0074,"101":0.03702,"102":0.1777,"103":2.16444,_:"79 81 83 87 88 91 93 94 95"},E:{"4":0,"14":0.01234,_:"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 15.6","12.1":0.00494,"13.1":0.01974,"14.1":0.03949,"15.1":0.03949,"15.2-15.3":0.08391,"15.4":0.01234,"15.5":0.23199,"16.0":0.0074},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00027,"5.0-5.1":0,"6.0-6.1":0.00762,"7.0-7.1":0.00082,"8.1-8.4":0.00027,"9.0-9.2":0,"9.3":0.0117,"10.0-10.2":0.00054,"10.3":0.0117,"11.0-11.2":0.0049,"11.3-11.4":0.00871,"12.0-12.1":0.01279,"12.2-12.5":0.14881,"13.0-13.1":0.00299,"13.2":0.00245,"13.3":0.02965,"13.4-13.7":0.01387,"14.0-14.4":0.07481,"14.5-14.8":0.18799,"15.0-15.1":0.09712,"15.2-15.3":0.17792,"15.4":0.24539,"15.5":1.63338,"16.0":0.00735},P:{"4":0.47423,"5.0-5.4":0.03058,"6.2-6.4":0.07135,"7.2-7.4":1.94738,"8.2":0.02056,"9.2":0.01009,"10.1":0.01019,"11.1-11.2":0.14126,"12.0":0.12232,"13.0":0.1009,"14.0":0.82739,"15.0":0.19171,"16.0":0.26234,"17.0":1.24108},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00643,"4.4":0,"4.4.3-4.4.4":0.25716},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00494,"10":0.00494,"11":0.06417,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.81335},Q:{"10.4":0.02259},O:{"0":1.12965},H:{"0":13.03339},L:{"0":60.724},S:{"2.5":0.09037}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0025,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0025,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00749,"69":0,"70":0,"71":0.01248,"72":0.0025,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0025,"88":0,"89":0,"90":0,"91":0.00749,"92":0,"93":0,"94":0.0025,"95":0.0025,"96":0,"97":0,"98":0.01996,"99":0.00749,"100":0.0025,"101":0.04491,"102":0.26447,"103":0.02994,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0025,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.0025,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00499,"65":0.0025,"66":0,"67":0,"68":0,"69":0,"70":0.03493,"71":0,"72":0,"73":0,"74":0.00499,"75":0.01497,"76":0,"77":0.00499,"78":0.00499,"79":0.00749,"80":0.0025,"81":0.0499,"83":0.0025,"84":0.00499,"85":0.0025,"86":0.0025,"87":0.0025,"88":0.0025,"89":0.04741,"90":0.0025,"91":0.00499,"92":0.00499,"93":0.0025,"94":0.09232,"95":0.00998,"96":0.01996,"97":0.00499,"98":0.00499,"99":0.02994,"100":0.00749,"101":0.02745,"102":0.14222,"103":2.13822,"104":0.00749,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.0025,"25":0.00998,"26":0.05489,"27":0,"28":0.02246,"29":0.0025,"30":0.00998,"31":0.00749,"32":0.03743,"33":0.00499,"34":0,"35":0.24451,"36":0.0025,"37":0,"38":0.00749,"39":0,"40":0,"41":0,"42":0.0025,"43":0,"44":0.0025,"45":0.02745,"46":0.01747,"47":0.01248,"48":0,"49":0,"50":0.01996,"51":0.07485,"52":0,"53":0,"54":0.00998,"55":0.00749,"56":0.01747,"57":0.00998,"58":0.16717,"60":0.06238,"62":0.0025,"63":0.73353,"64":0.03743,"65":0.00499,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00499,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.01248,"86":0.0025,"87":0.00499,"88":0.08234,"89":0.05988,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.06238},B:{"12":0.00749,"13":0.00499,"14":0.0025,"15":0.00749,"16":0.0025,"17":0.0025,"18":0.01248,"79":0,"80":0.0025,"81":0,"83":0,"84":0.0025,"85":0,"86":0,"87":0,"88":0,"89":0.0025,"90":0.0025,"91":0,"92":0.00998,"93":0,"94":0,"95":0,"96":0,"97":0.0025,"98":0.0025,"99":0.0025,"100":0.0025,"101":0.00998,"102":0.04491,"103":0.54142,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0025,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00499,"14.1":0.00998,"15.1":0.00998,"15.2-15.3":0.02246,"15.4":0.0025,"15.5":0.05739,"15.6":0,"16.0":0.0025},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00036,"5.0-5.1":0,"6.0-6.1":0.01011,"7.0-7.1":0.00108,"8.1-8.4":0.00036,"9.0-9.2":0,"9.3":0.01553,"10.0-10.2":0.00072,"10.3":0.01553,"11.0-11.2":0.0065,"11.3-11.4":0.01156,"12.0-12.1":0.01698,"12.2-12.5":0.1976,"13.0-13.1":0.00397,"13.2":0.00325,"13.3":0.03937,"13.4-13.7":0.01842,"14.0-14.4":0.09934,"14.5-14.8":0.24962,"15.0-15.1":0.12896,"15.2-15.3":0.23625,"15.4":0.32584,"15.5":2.16887,"16.0":0.00975},P:{"4":0.46616,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":1.93559,"8.2":0,"9.2":0.02027,"10.1":0,"11.1-11.2":0.13174,"12.0":0.01013,"13.0":0.10134,"14.0":0.82085,"15.0":0.19255,"16.0":0.26348,"17.0":1.23634,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00841,"4.4":0,"4.4.3-4.4.4":0.3366},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.0025,"9":0,"10":0.0025,"11":0.01497,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":65.93438},S:{"2.5":0.09006},R:{_:"0"},M:{"0":0.81054},Q:{"10.4":0.02252},O:{"0":1.12575},H:{"0":12.9884}}; 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 c51e9cfa2f66dfc..af9fd6db92d576a 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:{"63":0.00869,"78":0.00869,"91":0.04778,"92":0.00869,"93":0.00434,"101":0.07819,"102":1.2337,"103":0.05213,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 94 95 96 97 98 99 100 104 105 3.5 3.6"},D:{"23":0.00434,"29":0.01303,"49":0.01738,"65":0.01303,"66":0.00434,"75":0.80364,"76":0.02606,"79":0.00434,"81":0.01738,"83":0.03475,"87":0.05647,"93":0.09122,"97":0.04778,"98":0.57341,"99":0.01303,"100":0.15204,"101":0.26498,"102":1.97652,"103":18.90943,"104":0.31711,"105":0.11294,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 77 78 80 84 85 86 88 89 90 91 92 94 95 96 106 107"},F:{"70":0.00869,"83":0.03041,"85":0.00869,"87":0.05647,"88":0.17376,"89":0.11294,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.03041,"18":0.20851,"84":0.01303,"89":0.00869,"99":0.00434,"101":0.12598,"102":0.23023,"103":5.59073,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90 91 92 93 94 95 96 97 98 100"},E:{"4":0,"13":0.30408,"14":0.90355,"15":0.08254,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02606,"11.1":0.0695,"12.1":0.00434,"13.1":0.31711,"14.1":0.78192,"15.1":0.20851,"15.2-15.3":0.13032,"15.4":0.4735,"15.5":5.45172,"15.6":0.16942,"16.0":0.02606},G:{"8":0,"3.2":0,"4.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.00619,"10.0-10.2":0,"10.3":0.02787,"11.0-11.2":0,"11.3-11.4":0.00929,"12.0-12.1":0.01238,"12.2-12.5":1.49238,"13.0-13.1":0.00619,"13.2":0,"13.3":0.0031,"13.4-13.7":0.07431,"14.0-14.4":0.4954,"14.5-14.8":2.28811,"15.0-15.1":0.50468,"15.2-15.3":0.78025,"15.4":1.35305,"15.5":23.24333,"16.0":0.09289},P:{"4":0.22015,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.11532,"8.2":0.01017,"9.2":0.03041,"10.1":0.01014,"11.1-11.2":0.08387,"12.0":0.03041,"13.0":0.03145,"14.0":0.07338,"15.0":0.02097,"16.0":0.07338,"17.0":3.51192},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.05091},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04778,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.07354},Q:{"10.4":0},O:{"0":0.0396},H:{"0":0.03213},L:{"0":23.30755},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00457,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00457,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02283,"92":0.00457,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.03652,"102":0.58432,"103":0.03196,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00457,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00913,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00457,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.3652,"76":0.0137,"77":0,"78":0,"79":0,"80":0,"81":0.00913,"83":0.0137,"84":0,"85":0,"86":0,"87":0.02739,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.04109,"94":0,"95":0,"96":0,"97":0.02283,"98":0.26021,"99":0.00457,"100":0.06848,"101":0.11869,"102":0.90387,"103":8.63242,"104":0.14608,"105":0.05022,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.0137,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00457,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0.0137,"84":0,"85":0.00457,"86":0,"87":0.02739,"88":0.07761,"89":0.05022,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.0137,"17":0,"18":0.09587,"79":0,"80":0,"81":0,"83":0,"84":0.00457,"85":0,"86":0,"87":0,"88":0,"89":0.00457,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.05935,"102":0.13239,"103":2.56097,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.13695,"14":0.41085,"15":0.03652,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00913,"11.1":0.03196,"12.1":0,"13.1":0.14608,"14.1":0.35607,"15.1":0.09587,"15.2-15.3":0.05935,"15.4":0.21456,"15.5":2.48793,"15.6":0.07761,"16.0":0.0137},G:{"8":0,"3.2":0,"4.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.00915,"10.0-10.2":0,"10.3":0.04118,"11.0-11.2":0,"11.3-11.4":0.01373,"12.0-12.1":0.0183,"12.2-12.5":2.20567,"13.0-13.1":0.00915,"13.2":0,"13.3":0.00458,"13.4-13.7":0.10983,"14.0-14.4":0.73217,"14.5-14.8":3.38171,"15.0-15.1":0.7459,"15.2-15.3":1.15317,"15.4":1.99974,"15.5":34.35255,"16.0":0.13728},P:{"4":0.20104,"5.0-5.4":0.01058,"6.2-6.4":0.01058,"7.2-7.4":0.11639,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.07407,"12.0":0,"13.0":0.03174,"14.0":0.07407,"15.0":0.02116,"16.0":0.07407,"17.0":3.36473,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.5602},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02283,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":29.10586},S:{"2.5":0},R:{_:"0"},M:{"0":0.07066},Q:{"10.4":0},O:{"0":0.03805},H:{"0":0.03087}}; 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 51dda0661da50e1..d659f639280873a 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:{"30":0.00962,"44":0.0016,"57":0.0016,"58":0.0016,"60":0.00321,"63":0.00641,"70":0.0016,"72":0.01443,"75":0.02885,"78":0.00962,"79":0.00321,"88":0.01282,"89":0.00321,"91":0.02405,"97":0.00802,"98":0.00321,"99":0.00641,"100":0.01763,"101":0.09618,"102":2.50228,"103":0.25969,_:"2 3 4 5 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 45 46 47 48 49 50 51 52 53 54 55 56 59 61 62 64 65 66 67 68 69 71 73 74 76 77 80 81 82 83 84 85 86 87 90 92 93 94 95 96 104 105 3.5 3.6"},D:{"33":0.00802,"37":0.00962,"38":0.00962,"43":0.00321,"49":0.0016,"51":0.00321,"55":0.01122,"58":0.0016,"60":0.00802,"65":0.00962,"67":0.0016,"69":0.00641,"70":0.00321,"72":0.0016,"74":0.0016,"75":0.0016,"76":0.00962,"77":0.00321,"78":0.00641,"79":0.00802,"80":0.01282,"81":0.0016,"83":0.00321,"84":0.03687,"85":0.00321,"86":0.00641,"87":0.04969,"88":0.00481,"90":0.01924,"91":0.00641,"92":0.01603,"93":0.0016,"95":0.02725,"96":0.01122,"97":0.02405,"98":0.01122,"99":0.01282,"100":0.04328,"101":0.15709,"102":0.14908,"103":3.23005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 39 40 41 42 44 45 46 47 48 50 52 53 54 56 57 59 61 62 63 64 66 68 71 73 89 94 104 105 106"},F:{"34":0.01924,"36":0.0016,"37":0.00321,"42":0.00481,"44":0.00321,"45":0.00802,"46":0.00962,"47":0.01282,"51":0.03046,"63":0.00321,"64":0.00481,"65":0.00321,"70":0.0016,"79":0.0545,"80":0.0016,"81":0.00641,"83":0.00641,"85":0.00481,"86":0.00481,"87":0.00321,"88":0.03206,"89":0.01763,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 38 39 40 41 43 48 49 50 52 53 54 55 56 57 58 60 62 66 67 68 69 71 72 73 74 75 76 77 78 82 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.02405,"13":0.01603,"14":0.02565,"15":0.0016,"16":0.01122,"17":0.00802,"18":0.0545,"85":0.0016,"88":0.0016,"89":0.00641,"90":0.00321,"92":0.00962,"99":0.00641,"100":0.01924,"101":0.02244,"102":0.04649,"103":1.27919,_:"79 80 81 83 84 86 87 91 93 94 95 96 97 98"},E:{"4":0,"7":0.00321,"14":0.02885,"15":0.0016,_:"0 5 6 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 11.1 15.6 16.0","5.1":0.0016,"10.1":0.00962,"12.1":0.00802,"13.1":0.0545,"14.1":0.02084,"15.1":0.00321,"15.2-15.3":0.01603,"15.4":0.01443,"15.5":0.29014},G:{"8":0.00161,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0059,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03864,"10.0-10.2":0,"10.3":0.03596,"11.0-11.2":0.02308,"11.3-11.4":0.0263,"12.0-12.1":0.08802,"12.2-12.5":0.70362,"13.0-13.1":0.00322,"13.2":0.00912,"13.3":0.0263,"13.4-13.7":0.0746,"14.0-14.4":0.65156,"14.5-14.8":0.42078,"15.0-15.1":0.24742,"15.2-15.3":0.51309,"15.4":0.64888,"15.5":1.62569,"16.0":0.11271},P:{"4":0.21291,"5.0-5.4":0.01014,"6.2-6.4":0.05069,"7.2-7.4":0.37512,"8.2":0.05271,"9.2":0.09125,"10.1":0.01014,"11.1-11.2":0.20277,"12.0":0.02028,"13.0":0.20277,"14.0":0.43595,"15.0":0.06083,"16.0":0.48664,"17.0":1.40924},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0005,"4.2-4.3":0.00025,"4.4":0,"4.4.3-4.4.4":0.01604},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.09458,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.11756},N:{"11":0.02513,_:"10"},S:{"2.5":0.01679},R:{_:"0"},M:{"0":0.04199},Q:{"10.4":0.05878},O:{"0":0.79772},H:{"0":2.05103},L:{"0":78.20849}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00161,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0.00161,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0.00161,"73":0,"74":0,"75":0.00483,"76":0,"77":0,"78":0.00161,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00161,"89":0,"90":0,"91":0.00322,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0.00161,"98":0.00161,"99":0.00161,"100":0.00322,"101":0.01611,"102":0.40597,"103":0.0435,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00161,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00161,"34":0,"35":0,"36":0,"37":0.00161,"38":0.00161,"39":0,"40":0.00161,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00161,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00161,"56":0,"57":0,"58":0,"59":0,"60":0.00161,"61":0,"62":0,"63":0,"64":0,"65":0.00161,"66":0,"67":0,"68":0,"69":0.00161,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.00161,"77":0,"78":0.00161,"79":0.00161,"80":0.00161,"81":0,"83":0,"84":0.00644,"85":0,"86":0.00161,"87":0.01128,"88":0.00161,"89":0,"90":0.00322,"91":0.00161,"92":0.00322,"93":0,"94":0,"95":0.00483,"96":0.00322,"97":0.00322,"98":0.00161,"99":0.00161,"100":0.00644,"101":0.02578,"102":0.02417,"103":0.52196,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00161,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00322,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00161,"43":0,"44":0,"45":0.00161,"46":0.00161,"47":0.00161,"48":0,"49":0,"50":0.00161,"51":0.00483,"52":0,"53":0,"54":0.00161,"55":0.03061,"56":0,"57":0.00161,"58":0.00161,"60":0.06605,"62":0.00322,"63":0.1031,"64":0.00322,"65":0.00161,"66":0,"67":0,"68":0,"69":0,"70":0.0145,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00806,"80":0,"81":0.00161,"82":0,"83":0.00161,"84":0,"85":0,"86":0.00161,"87":0,"88":0.00483,"89":0.00322,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00161},B:{"12":0.00322,"13":0.00322,"14":0.00483,"15":0.00161,"16":0.00161,"17":0.00161,"18":0.00967,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00161,"90":0,"91":0,"92":0.00161,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00161,"100":0.00322,"101":0.00322,"102":0.00806,"103":0.20621,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00483,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00161,"11.1":0,"12.1":0.00161,"13.1":0.00806,"14.1":0.00322,"15.1":0,"15.2-15.3":0.00322,"15.4":0.00161,"15.5":0.04672,"15.6":0,"16.0":0},G:{"8":0.00189,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00693,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04533,"10.0-10.2":0,"10.3":0.04218,"11.0-11.2":0.02707,"11.3-11.4":0.03085,"12.0-12.1":0.10326,"12.2-12.5":0.82544,"13.0-13.1":0.00378,"13.2":0.0107,"13.3":0.03085,"13.4-13.7":0.08752,"14.0-14.4":0.76437,"14.5-14.8":0.49363,"15.0-15.1":0.29026,"15.2-15.3":0.60192,"15.4":0.76122,"15.5":1.90714,"16.0":0.13222},P:{"4":0.22033,"5.0-5.4":0.02003,"6.2-6.4":0.0701,"7.2-7.4":0.37055,"8.2":0,"9.2":0.09013,"10.1":0.01001,"11.1-11.2":0.21031,"12.0":0.03004,"13.0":0.2003,"14.0":0.42063,"15.0":0.06009,"16.0":0.48072,"17.0":1.38206,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00127,"4.2-4.3":0.00064,"4.4":0,"4.4.3-4.4.4":0.04065},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01611,"5.5":0},J:{"7":0,"10":0.11745},N:{"10":0,"11":0},L:{"0":84.17342},S:{"2.5":0.01678},R:{_:"0"},M:{"0":0.04195},Q:{"10.4":0.05872},O:{"0":0.79696},H:{"0":2.04908}}; 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 10d6963aab08676..5f728e0c20d0ab4 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.00792,"45":0.00792,"47":0.00396,"52":0.04358,"56":0.00792,"57":0.00792,"60":0.0317,"63":0.00396,"64":0.00396,"65":0.00792,"66":0.00792,"68":0.02773,"72":0.02773,"77":0.01981,"78":0.01189,"80":0.01189,"81":0.00792,"82":0.00396,"83":0.00792,"84":0.32092,"86":0.00792,"88":0.01981,"89":0.00792,"90":0.01189,"91":0.05547,"92":0.00792,"93":0.01189,"94":0.01981,"95":0.01189,"96":0.03566,"97":0.01585,"98":0.04358,"99":0.07132,"100":0.04754,"101":0.24564,"102":4.275,"103":0.53487,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 48 49 50 51 53 54 55 58 59 61 62 67 69 70 71 73 74 75 76 79 85 87 104 105 3.5 3.6"},D:{"11":0.00792,"25":0.01585,"26":0.26545,"27":0.0317,"29":0.00396,"31":0.00396,"33":0.01981,"40":0.00396,"42":0.01189,"43":0.02377,"47":0.00396,"49":0.00792,"51":0.00396,"52":0.00792,"55":0.00792,"56":0.10301,"58":0.00792,"63":0.01189,"65":0.02377,"67":0.00396,"68":0.00396,"69":0.01189,"70":0.01585,"72":0.07924,"73":0.01585,"74":0.03962,"75":0.26545,"76":0.01585,"77":0.07132,"78":0.01189,"79":0.03962,"80":0.00792,"81":0.05547,"83":0.01585,"84":0.02377,"85":0.11094,"86":0.03962,"87":0.29715,"88":0.0317,"89":0.0317,"90":0.01585,"91":0.07528,"92":0.05943,"93":0.07132,"94":0.01981,"95":0.05151,"96":0.14263,"97":0.06339,"98":0.06735,"99":0.07528,"100":0.13075,"101":0.20206,"102":0.76467,"103":16.09364,"104":0.00792,"105":0.01189,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 28 30 32 34 35 36 37 38 39 41 44 45 46 48 50 53 54 57 59 60 61 62 64 66 71 106 107"},F:{"12":0.00396,"42":0.00396,"79":0.07132,"81":0.00792,"82":0.02773,"83":0.00396,"84":0.01585,"85":0.03962,"86":0.01585,"87":0.0317,"88":1.35897,"89":0.71316,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 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 90 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00792},B:{"12":0.01585,"14":0.00792,"15":0.00792,"16":0.00396,"17":0.00792,"18":0.05547,"84":0.01189,"89":0.01585,"90":0.00396,"92":0.09905,"99":0.00396,"100":0.00792,"101":0.03566,"102":0.09509,"103":2.91603,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98"},E:{"4":0,"13":0.00396,"14":0.01189,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 16.0","5.1":0.00396,"12.1":0.00396,"13.1":0.00792,"14.1":0.04754,"15.1":0.00792,"15.2-15.3":0.00396,"15.4":0.01981,"15.5":0.23376,"15.6":0.01189},G:{"8":0.0028,"3.2":0.00672,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00728,"6.0-6.1":0.00448,"7.0-7.1":0.06216,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12264,"10.0-10.2":0,"10.3":0.07448,"11.0-11.2":0.0196,"11.3-11.4":0.00056,"12.0-12.1":0.08344,"12.2-12.5":0.87696,"13.0-13.1":0.01176,"13.2":0.00168,"13.3":0.02016,"13.4-13.7":0.11704,"14.0-14.4":0.252,"14.5-14.8":0.4424,"15.0-15.1":0.16016,"15.2-15.3":0.252,"15.4":0.2912,"15.5":2.56088,"16.0":0.09912},P:{"4":0.12649,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.046,"8.2":0.01017,"9.2":0.0115,"10.1":0.04115,"11.1-11.2":0.0115,"12.0":0.02057,"13.0":0.023,"14.0":0.21603,"15.0":0.0115,"16.0":0.0345,"17.0":0.45996},I:{"0":0,"3":0,"4":0.0026,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01388,"4.2-4.3":0.02473,"4.4":0,"4.4.3-4.4.4":0.17008},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29319,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.03019},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.10867},Q:{"10.4":0.03019},O:{"0":0.73651},H:{"0":2.72627},L:{"0":56.44183},S:{"2.5":0.01207}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00404,"44":0,"45":0.00404,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01615,"53":0,"54":0,"55":0,"56":0.00404,"57":0.00404,"58":0,"59":0,"60":0.01211,"61":0,"62":0,"63":0.00404,"64":0,"65":0.00404,"66":0.00404,"67":0,"68":0.01211,"69":0,"70":0,"71":0,"72":0.01211,"73":0,"74":0,"75":0,"76":0,"77":0.00807,"78":0.00404,"79":0,"80":0.00404,"81":0.00404,"82":0,"83":0.00404,"84":0.12918,"85":0,"86":0.00404,"87":0,"88":0.00807,"89":0.00404,"90":0.00404,"91":0.02019,"92":0.00404,"93":0.00404,"94":0.00807,"95":0.00404,"96":0.01211,"97":0.00807,"98":0.01615,"99":0.02826,"100":0.02422,"101":0.10496,"102":1.7561,"103":0.218,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00404,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00807,"26":0.109,"27":0.01211,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00807,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00404,"41":0,"42":0.00404,"43":0.01211,"44":0,"45":0,"46":0,"47":0.00404,"48":0,"49":0.00404,"50":0,"51":0,"52":0.00404,"53":0,"54":0,"55":0.00404,"56":0.04441,"57":0,"58":0.00404,"59":0,"60":0,"61":0,"62":0,"63":0.00404,"64":0.00404,"65":0.01211,"66":0,"67":0.00404,"68":0,"69":0.00404,"70":0.00807,"71":0,"72":0.0323,"73":0.00404,"74":0.01615,"75":0.10496,"76":0.00807,"77":0.02826,"78":0.00404,"79":0.01615,"80":0.00404,"81":0.05652,"83":0.00807,"84":0.00807,"85":0.04441,"86":0.01615,"87":0.12111,"88":0.01211,"89":0.01211,"90":0.00807,"91":0.0323,"92":0.02422,"93":0.02826,"94":0.00807,"95":0.02019,"96":0.05652,"97":0.02422,"98":0.02826,"99":0.0323,"100":0.06459,"101":0.08478,"102":0.31085,"103":6.52379,"104":0.00404,"105":0.00404,"106":0,_:"107"},F:{"9":0,"11":0,"12":0.00404,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00404,"29":0,"30":0,"31":0,"32":0,"33":0.00404,"34":0,"35":0,"36":0,"37":0.00404,"38":0,"39":0,"40":0,"41":0,"42":0.00404,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.06056,"62":0,"63":0.34718,"64":0.02019,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00404,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02826,"80":0,"81":0.00404,"82":0.01211,"83":0,"84":0.00404,"85":0.01615,"86":0.00807,"87":0.01211,"88":0.54903,"89":0.28663,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00404,"10.6":0,"11.1":0,"11.5":0,"11.6":0.00404,"12.1":0.00404},B:{"12":0.00807,"13":0,"14":0.02826,"15":0.01211,"16":0,"17":0.00404,"18":0.02019,"79":0,"80":0,"81":0,"83":0,"84":0.00404,"85":0,"86":0,"87":0,"88":0,"89":0.00807,"90":0.00404,"91":0,"92":0.04037,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00404,"100":0.00404,"101":0.01615,"102":0.04441,"103":1.18284,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00404,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0.00404,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00404,"13.1":0.00404,"14.1":0.02019,"15.1":0.00404,"15.2-15.3":0,"15.4":0.00807,"15.5":0.09285,"15.6":0.00404,"16.0":0},G:{"8":0.00414,"3.2":0.00994,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01076,"6.0-6.1":0.00662,"7.0-7.1":0.09191,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.18133,"10.0-10.2":0,"10.3":0.11012,"11.0-11.2":0.02898,"11.3-11.4":0.00083,"12.0-12.1":0.12337,"12.2-12.5":1.29665,"13.0-13.1":0.01739,"13.2":0.00248,"13.3":0.02981,"13.4-13.7":0.17305,"14.0-14.4":0.3726,"14.5-14.8":0.65412,"15.0-15.1":0.23681,"15.2-15.3":0.3726,"15.4":0.43056,"15.5":3.78645,"16.0":0.14656},P:{"4":0.12628,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05261,"8.2":0.01052,"9.2":0.01052,"10.1":0,"11.1-11.2":0.01052,"12.0":0,"13.0":0.02105,"14.0":0.02105,"15.0":0.01052,"16.0":0.04209,"17.0":0.41039,"18.0":0},I:{"0":0,"3":0,"4":0.0075,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03997,"4.2-4.3":0.07121,"4.4":0,"4.4.3-4.4.4":0.48969},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.11707,"5.5":0},J:{"7":0,"10":0.02982},N:{"10":0,"11":0},L:{"0":70.36414},S:{"2.5":0.01193},R:{_:"0"},M:{"0":0.10733},Q:{"10.4":0.02982},O:{"0":0.72749},H:{"0":2.69285}}; 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 d978cce904691b3..25ed24461c27fce 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:{"52":0.02945,"56":0.01841,"58":0.00736,"66":0.00368,"67":0.03681,"68":0.01104,"69":0.00736,"70":0.00736,"71":0.00736,"72":0.01104,"73":0.00736,"74":0.00736,"75":0.00736,"76":0.00736,"77":0.00736,"78":0.01841,"79":0.00736,"80":0.00736,"81":0.01104,"82":0.00736,"83":0.00736,"84":0.00736,"91":0.01104,"95":0.00736,"97":0.00368,"98":0.00368,"99":0.00736,"100":0.01841,"101":0.04785,"102":1.03436,"103":0.06994,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 59 60 61 62 63 64 65 85 86 87 88 89 90 92 93 94 96 104 105 3.5 3.6"},D:{"25":0.01472,"38":0.00736,"41":0.00368,"43":0.00736,"49":0.05522,"53":0.01472,"56":0.02209,"58":0.00736,"63":0.00368,"65":0.00736,"67":0.00368,"68":0.04785,"69":0.03313,"70":0.03313,"71":0.03681,"72":0.0773,"73":0.02209,"74":0.0589,"75":0.03681,"76":0.03681,"77":0.03313,"78":0.05153,"79":0.12884,"80":0.06994,"81":0.04785,"83":0.06626,"84":0.05153,"85":0.06626,"86":0.09571,"87":0.08834,"88":0.07362,"89":0.06258,"90":0.06626,"91":0.08098,"92":0.06258,"93":0.01104,"94":0.02945,"95":0.02577,"96":0.04785,"97":0.05522,"98":0.03681,"99":0.05153,"100":0.0773,"101":0.12515,"102":0.63681,"103":22.68232,"104":0.02945,"105":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 39 40 42 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 64 66 106 107"},F:{"28":0.01104,"46":0.00736,"53":0.00736,"54":0.00736,"55":0.01104,"72":0.00368,"73":0.00736,"74":0.00368,"75":0.00736,"76":0.01841,"77":0.01472,"85":0.00736,"87":0.00736,"88":0.24295,"89":0.10307,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.00368,"17":0.00736,"18":0.01841,"80":0.00736,"81":0.00736,"83":0.00736,"84":0.01104,"85":0.00368,"86":0.00736,"87":0.00736,"88":0.00368,"89":0.00736,"90":0.02209,"91":0.01472,"92":0.00736,"96":0.00368,"97":0.00368,"98":0.00368,"99":0.00736,"100":0.00736,"101":0.01841,"102":0.04417,"103":2.83805,_:"12 13 14 15 79 93 94 95"},E:{"4":0,"13":0.01841,"14":0.08466,"15":0.04785,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.2135,"10.1":0.00368,"11.1":0.00736,"12.1":0.01104,"13.1":0.08098,"14.1":0.26871,"15.1":0.05522,"15.2-15.3":0.05153,"15.4":0.27976,"15.5":2.19388,"15.6":0.04785,"16.0":0.01104},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00159,"6.0-6.1":0.00477,"7.0-7.1":0.01114,"8.1-8.4":0,"9.0-9.2":0.01909,"9.3":0.05409,"10.0-10.2":0.02227,"10.3":0.05727,"11.0-11.2":0.03977,"11.3-11.4":0.02545,"12.0-12.1":0.05886,"12.2-12.5":0.62042,"13.0-13.1":0.05091,"13.2":0.03182,"13.3":0.05091,"13.4-13.7":0.1559,"14.0-14.4":0.48361,"14.5-14.8":1.11994,"15.0-15.1":0.40089,"15.2-15.3":0.52656,"15.4":1.18993,"15.5":10.68076,"16.0":0.05886},P:{"4":0.14473,"5.0-5.4":0.021,"6.2-6.4":0.18313,"7.2-7.4":0.11372,"8.2":0.01017,"9.2":0.03101,"10.1":0.06104,"11.1-11.2":0.0827,"12.0":0.02068,"13.0":0.06203,"14.0":0.09304,"15.0":0.05169,"16.0":0.2171,"17.0":1.99525},I:{"0":0,"3":0,"4":0.00451,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00361,"4.4":0,"4.4.3-4.4.4":0.02798},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00375,"11":0.41957,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.20853},Q:{"10.4":0},O:{"0":0.24012},H:{"0":0.22733},L:{"0":46.06982},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0113,"53":0,"54":0,"55":0,"56":0.00753,"57":0,"58":0.00377,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.01506,"68":0.00753,"69":0.00377,"70":0.00377,"71":0.00377,"72":0.00753,"73":0.00377,"74":0.00377,"75":0.00377,"76":0.00377,"77":0.00377,"78":0.0113,"79":0.00753,"80":0.00377,"81":0.00753,"82":0.00377,"83":0.00377,"84":0.00377,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00377,"92":0,"93":0,"94":0,"95":0.00377,"96":0,"97":0.00377,"98":0.00377,"99":0.00377,"100":0.00753,"101":0.0226,"102":0.39543,"103":0.04896,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0.00377,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00377,"39":0,"40":0,"41":0,"42":0,"43":0.00377,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.0226,"50":0,"51":0,"52":0,"53":0.00753,"54":0,"55":0,"56":0.00753,"57":0,"58":0.00377,"59":0,"60":0,"61":0,"62":0,"63":0.00377,"64":0,"65":0.00377,"66":0,"67":0,"68":0.01883,"69":0.0113,"70":0.0113,"71":0.01506,"72":0.03013,"73":0.00753,"74":0.0226,"75":0.01506,"76":0.01506,"77":0.0113,"78":0.0226,"79":0.04896,"80":0.02636,"81":0.0226,"83":0.02636,"84":0.01883,"85":0.02636,"86":0.03766,"87":0.03389,"88":0.03013,"89":0.0226,"90":0.02636,"91":0.03013,"92":0.03766,"93":0.00377,"94":0.0113,"95":0.0113,"96":0.01883,"97":0.0226,"98":0.01506,"99":0.01883,"100":0.03013,"101":0.04896,"102":0.23726,"103":8.4848,"104":0.0113,"105":0.00377,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00377,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00753,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00377,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00377,"54":0.00377,"55":0.00377,"56":0,"57":0,"58":0,"60":0.00377,"62":0,"63":0.00377,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.00377,"74":0.00377,"75":0.00377,"76":0.0113,"77":0.0113,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00377,"86":0,"87":0.00377,"88":0.08662,"89":0.04519,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0.00377,"17":0.00377,"18":0.00753,"79":0,"80":0.00377,"81":0.00377,"83":0.00377,"84":0.00377,"85":0.00377,"86":0.00377,"87":0.00377,"88":0.00377,"89":0.0113,"90":0.01883,"91":0.0113,"92":0.00377,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00377,"99":0.00377,"100":0.00377,"101":0.00753,"102":0.01883,"103":1.07708,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00753,"14":0.03389,"15":0.01883,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.08285,"10.1":0,"11.1":0.00377,"12.1":0.00377,"13.1":0.03013,"14.1":0.10168,"15.1":0.01883,"15.2-15.3":0.01883,"15.4":0.10168,"15.5":0.82475,"15.6":0.02636,"16.0":0.00377},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.00691,"7.0-7.1":0.01613,"8.1-8.4":0,"9.0-9.2":0.02766,"9.3":0.07837,"10.0-10.2":0.03227,"10.3":0.08298,"11.0-11.2":0.05762,"11.3-11.4":0.03688,"12.0-12.1":0.08528,"12.2-12.5":0.89895,"13.0-13.1":0.07376,"13.2":0.0461,"13.3":0.07376,"13.4-13.7":0.22589,"14.0-14.4":0.70072,"14.5-14.8":1.62272,"15.0-15.1":0.58086,"15.2-15.3":0.76295,"15.4":1.72414,"15.5":15.47573,"16.0":0.08528},P:{"4":0.1364,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10492,"8.2":0,"9.2":0.03148,"10.1":0,"11.1-11.2":0.08394,"12.0":0.01049,"13.0":0.06295,"14.0":0.09443,"15.0":0.05246,"16.0":0.20984,"17.0":1.98298,"18.0":0.01049},I:{"0":0,"3":0,"4":0.00983,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00393,"4.2-4.3":0.00787,"4.4":0,"4.4.3-4.4.4":0.06096},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.15817,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":59.26089},S:{"2.5":0},R:{_:"0"},M:{"0":0.20572},Q:{"10.4":0},O:{"0":0.23689},H:{"0":0.22427}}; 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 6e9728e9bc34241..064aa93a4bc7fd2 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:{"16":0.00583,"30":0.00583,"44":0.067,"52":0.06991,"57":0.00583,"68":0.01165,"78":0.00874,"79":0.00291,"81":0.00874,"82":0.00874,"83":0.00874,"85":0.00583,"86":0.00583,"88":0.00291,"89":0.00874,"90":0.00583,"91":0.02913,"92":0.00874,"93":0.00583,"94":0.01165,"95":0.00583,"96":0.00874,"97":0.00583,"98":0.00583,"99":0.0437,"100":0.01748,"101":0.11943,"102":1.07781,"103":0.05535,_:"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 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 84 87 104 105 3.5 3.6"},D:{"26":0.00291,"28":0.00291,"35":0.02039,"38":0.00583,"40":0.00291,"42":0.00583,"43":0.00291,"44":0.02039,"45":0.00583,"49":0.00583,"64":0.00583,"67":0.0233,"69":0.02039,"70":0.00583,"71":0.00874,"72":0.00291,"73":0.00583,"74":0.01165,"75":0.00583,"77":0.00291,"78":0.01165,"79":0.16022,"80":0.00874,"81":0.08156,"83":0.08156,"84":0.36704,"85":0.43695,"86":0.21556,"87":0.06117,"88":0.07283,"89":0.14565,"90":0.13109,"91":0.09613,"92":0.067,"93":0.04078,"94":0.08448,"95":0.05826,"96":0.09904,"97":0.07574,"98":0.11943,"99":0.09904,"100":0.24178,"101":0.13982,"102":0.55056,"103":13.61536,"104":0.00291,"105":0.03204,_:"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 31 32 33 34 36 37 39 41 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 68 76 106 107"},F:{"34":0.00291,"36":0.01165,"68":0.04078,"70":0.00583,"72":0.00291,"73":0.01457,"74":0.00291,"75":0.00583,"76":0.00583,"77":0.00583,"78":0.00583,"79":0.0437,"80":0.00874,"81":0.00583,"82":0.00874,"83":0.00583,"84":0.00583,"85":0.02039,"86":0.01457,"87":0.03787,"88":0.80108,"89":0.62338,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 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 90 9.5-9.6 10.6 11.1 11.5 11.6","10.0-10.1":0,"10.5":0.00874,"12.1":0.00583},B:{"12":0.00874,"14":0.00291,"16":0.01457,"18":0.01457,"84":0.03204,"85":0.02039,"86":0.17187,"87":0.02913,"88":0.02913,"89":0.03496,"90":0.03496,"91":0.04661,"92":0.03204,"93":0.01748,"94":0.02622,"95":0.03204,"96":0.04078,"97":0.02622,"98":0.02039,"99":0.01748,"100":0.01165,"101":0.03204,"102":0.02913,"103":1.03703,_:"13 15 17 79 80 81 83"},E:{"4":0,"12":0.00291,"13":0.09613,"14":0.0903,"15":0.0233,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":1.50602,"11.1":0.00291,"12.1":0.19808,"13.1":0.067,"14.1":0.10487,"15.1":0.02039,"15.2-15.3":0.06409,"15.4":0.19808,"15.5":0.32626,"15.6":0.07574,"16.0":0.00874},G:{"8":0.00268,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01785,"6.0-6.1":0,"7.0-7.1":0.02856,"8.1-8.4":0,"9.0-9.2":0.00268,"9.3":0.05355,"10.0-10.2":0.0116,"10.3":0.03748,"11.0-11.2":0.02499,"11.3-11.4":0.0232,"12.0-12.1":0.03927,"12.2-12.5":0.56314,"13.0-13.1":0.11245,"13.2":0.06515,"13.3":0.16064,"13.4-13.7":0.2365,"14.0-14.4":0.80143,"14.5-14.8":0.82998,"15.0-15.1":0.71932,"15.2-15.3":1.15573,"15.4":0.68987,"15.5":3.10843,"16.0":0.13298},P:{"4":0.93601,"5.0-5.4":0.14244,"6.2-6.4":0.18313,"7.2-7.4":0.55957,"8.2":0.01017,"9.2":0.22383,"10.1":0.06104,"11.1-11.2":0.26452,"12.0":0.0407,"13.0":0.17296,"14.0":0.2747,"15.0":0.14244,"16.0":0.44766,"17.0":1.64819},I:{"0":0,"3":0,"4":0.00631,"2.1":0,"2.2":0,"2.3":0.00315,"4.1":0.02334,"4.2-4.3":0.0246,"4.4":0,"4.4.3-4.4.4":0.09145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0065,"9":0.0065,"11":0.12682,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.19138},Q:{"10.4":0.03544},O:{"0":1.67986},H:{"0":2.04669},L:{"0":53.66984},S:{"2.5":0.02126}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00294,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.02058,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.02058,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00294,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00294,"79":0,"80":0,"81":0.00294,"82":0.00294,"83":0.00294,"84":0,"85":0,"86":0.00294,"87":0,"88":0,"89":0.00294,"90":0.00294,"91":0.0147,"92":0.0147,"93":0.00882,"94":0.00882,"95":0.00588,"96":0.00294,"97":0.00294,"98":0.00294,"99":0.0147,"100":0.00882,"101":0.03822,"102":0.32046,"103":0.01764,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00588,"36":0,"37":0,"38":0.00294,"39":0,"40":0.00294,"41":0,"42":0.00294,"43":0,"44":0.00588,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00588,"65":0,"66":0,"67":0.00588,"68":0,"69":0.00588,"70":0.00294,"71":0.00294,"72":0,"73":0.00294,"74":0.00294,"75":0,"76":0,"77":0,"78":0.00294,"79":0.04704,"80":0.00294,"81":0.0294,"83":0.02646,"84":0.10878,"85":0.12936,"86":0.06468,"87":0.02058,"88":0.02352,"89":0.0441,"90":0.03822,"91":0.0294,"92":0.02058,"93":0.01176,"94":0.02646,"95":0.01764,"96":0.0294,"97":0.02352,"98":0.04116,"99":0.0294,"100":0.07056,"101":0.04116,"102":0.1617,"103":4.00428,"104":0,"105":0.00882,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00294,"25":0,"26":0,"27":0,"28":0.00294,"29":0,"30":0,"31":0,"32":0.00882,"33":0.00294,"34":0,"35":0,"36":0.00294,"37":0.00294,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00294,"48":0,"49":0,"50":0.00588,"51":0,"52":0,"53":0,"54":0.00294,"55":0.00294,"56":0,"57":0,"58":0.00588,"60":0.11172,"62":0,"63":0.1029,"64":0.00882,"65":0,"66":0,"67":0,"68":0.01176,"69":0,"70":0.01764,"71":0,"72":0.00294,"73":0.00588,"74":0.00294,"75":0.00294,"76":0.00294,"77":0.00294,"78":0.00294,"79":0.01176,"80":0.00294,"81":0,"82":0.00294,"83":0.00294,"84":0.00294,"85":0.00588,"86":0.00294,"87":0.01176,"88":0.2352,"89":0.18228,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00294,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00294},B:{"12":0.00294,"13":0,"14":0.00294,"15":0,"16":0.00294,"17":0,"18":0.00294,"79":0,"80":0,"81":0,"83":0,"84":0.00882,"85":0.00588,"86":0.04998,"87":0.00882,"88":0.00882,"89":0.01176,"90":0.00882,"91":0.0147,"92":0.00882,"93":0.00588,"94":0.00882,"95":0.00882,"96":0.01176,"97":0.00882,"98":0.00588,"99":0.00588,"100":0.00294,"101":0.00882,"102":0.00882,"103":0.30576,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.02646,"14":0.02646,"15":0.00588,_:"0","3.1":0,"3.2":0,"5.1":0.44394,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.0588,"13.1":0.02058,"14.1":0.03234,"15.1":0.00588,"15.2-15.3":0.01764,"15.4":0.0588,"15.5":0.09702,"15.6":0.02058,"16.0":0.00294},G:{"8":0.00352,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02347,"6.0-6.1":0,"7.0-7.1":0.03756,"8.1-8.4":0,"9.0-9.2":0.00352,"9.3":0.07042,"10.0-10.2":0.01526,"10.3":0.0493,"11.0-11.2":0.03286,"11.3-11.4":0.03052,"12.0-12.1":0.05164,"12.2-12.5":0.74061,"13.0-13.1":0.14789,"13.2":0.08568,"13.3":0.21127,"13.4-13.7":0.31103,"14.0-14.4":1.05399,"14.5-14.8":1.09155,"15.0-15.1":0.94601,"15.2-15.3":1.51995,"15.4":0.90728,"15.5":4.08802,"16.0":0.17488},P:{"4":0.92957,"5.0-5.4":0.14301,"6.2-6.4":0.18387,"7.2-7.4":0.56183,"8.2":0.01022,"9.2":0.22473,"10.1":0.06129,"11.1-11.2":0.27581,"12.0":0.04086,"13.0":0.17366,"14.0":0.27581,"15.0":0.1328,"16.0":0.43925,"17.0":1.63441,"18.0":0.01022},I:{"0":0,"3":0,"4":0.00989,"2.1":0,"2.2":0,"2.3":0.00495,"4.1":0.03661,"4.2-4.3":0.03859,"4.4":0,"4.4.3-4.4.4":0.14348},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00343,"9":0,"10":0,"11":0.03773,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":66.95532},S:{"2.5":0.02118},R:{_:"0"},M:{"0":0.19062},Q:{"10.4":0.0353},O:{"0":1.67322},H:{"0":2.03861}}; 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 ef8679bd6ff6a62..d3abf2d6c3c3815 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TK.js @@ -1 +1 @@ -module.exports={C:{"102":0.44794,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"102":0.07699,"103":1.25982,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"103":0.14698,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.5 15.6 16.0","15.1":14.41094,"15.2-15.3":39.53035,"15.4":0.44794},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.39909,"15.2-15.3":14.81346,"15.4":0,"15.5":0.07329,"16.0":0},P:{"4":0.12649,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.046,"8.2":0.01017,"9.2":0.0115,"10.1":0.04115,"11.1-11.2":0.0115,"12.0":0.02057,"13.0":0.15351,"14.0":0.4503,"15.0":0.0115,"16.0":0.07164,"17.0":0.45996},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":13.57663},S:{"2.5":0}}; +module.exports={C:{"102":0.44794,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"102":0.07699,"103":1.25982,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"103":0.14698,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.5 15.6 16.0","15.1":14.41094,"15.2-15.3":39.53035,"15.4":0.44794},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":1.39909,"15.2-15.3":14.81346,"15.4":0,"15.5":0.07329,"16.0":0},P:{"4":0.12628,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.05261,"8.2":0.01052,"9.2":0.01052,"10.1":0,"11.1-11.2":0.01052,"12.0":0,"13.0":0.15351,"14.0":0.4503,"15.0":0.01052,"16.0":0.07164,"17.0":0.41039,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":13.57663},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":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 1061763c8d67191..55db84593330a52 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:{"7":0.00494,"21":0.13821,"24":0.01481,"29":0.00987,"30":0.01481,"31":0.03455,"32":0.00987,"35":0.01974,"36":0.00494,"37":0.03455,"40":0.00987,"41":0.26654,"43":0.04442,"44":0.04442,"47":0.0543,"48":0.1234,"52":0.15795,"56":0.02962,"57":0.02962,"58":0.00494,"61":0.13821,"62":0.09872,"66":0.09378,"67":0.03455,"69":0.01974,"72":0.09872,"78":0.07404,"79":0.43437,"80":0.00987,"81":0.00987,"85":0.03455,"87":0.00987,"88":0.32084,"89":0.00987,"90":0.00987,"91":0.16289,"92":0.02962,"94":0.00987,"95":0.04936,"96":0.00494,"97":0.01481,"98":0.06417,"99":0.58245,"100":0.08885,"101":0.50841,"102":6.89559,"103":1.31298,"104":0.04442,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 25 26 27 28 33 34 38 39 42 45 46 49 50 51 53 54 55 59 60 63 64 65 68 70 71 73 74 75 76 77 82 83 84 86 93 105 3.5 3.6"},D:{"28":0.00494,"31":0.02962,"42":0.00987,"43":0.01974,"49":0.01974,"56":0.00987,"58":0.1234,"61":0.0691,"62":0.04442,"63":0.03949,"64":0.03455,"65":0.01481,"66":0.01974,"67":0.02468,"68":0.00987,"74":0.03949,"75":0.01974,"80":0.06417,"83":0.03949,"84":0.0691,"85":0.00987,"86":0.00494,"87":0.22706,"88":0.02468,"89":0.01974,"90":0.00987,"91":0.03455,"92":0.0543,"93":0.01974,"95":0.02468,"96":0.11353,"97":0.09378,"98":0.06417,"99":0.04936,"100":0.1777,"101":0.13821,"102":1.02175,"103":23.3226,"104":0.02962,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 44 45 46 47 48 50 51 52 53 54 55 57 59 60 69 70 71 72 73 76 77 78 79 81 94 105 106 107"},F:{"56":0.01481,"77":0.04442,"79":0.01974,"81":0.00987,"82":0.00987,"84":0.00494,"85":0.05923,"86":0.01481,"87":0.03949,"88":0.46398,"89":0.36033,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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 78 80 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.13821,"13":0.01974,"14":0.03455,"15":0.01974,"16":0.02962,"17":0.03455,"18":0.18263,"80":0.00494,"84":0.01481,"89":0.02468,"90":0.01974,"92":0.02468,"96":0.02962,"97":0.00987,"98":0.01481,"99":0.00987,"100":0.0543,"101":0.04442,"102":0.17276,"103":6.20949,_:"79 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"10":0.00987,"12":0.00494,"13":0.01481,"14":0.09378,_:"0 5 6 7 8 9 11 15 3.1 3.2 5.1 6.1 7.1 16.0","9.1":0.01974,"10.1":0.00987,"11.1":0.00987,"12.1":0.03455,"13.1":0.24186,"14.1":0.10859,"15.1":0.14314,"15.2-15.3":0.03455,"15.4":0.08885,"15.5":0.11353,"15.6":0.01481},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00125,"8.1-8.4":0,"9.0-9.2":0.00313,"9.3":0.01064,"10.0-10.2":0.00689,"10.3":0.01502,"11.0-11.2":0.00501,"11.3-11.4":0.02879,"12.0-12.1":0.06697,"12.2-12.5":0.62655,"13.0-13.1":0.10828,"13.2":0.02003,"13.3":0.20092,"13.4-13.7":0.16712,"14.0-14.4":1.03841,"14.5-14.8":0.82309,"15.0-15.1":0.32047,"15.2-15.3":0.48634,"15.4":0.45129,"15.5":1.76886,"16.0":0.06322},P:{"4":0.25718,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.13373,"8.2":0.01017,"9.2":0.03086,"10.1":0.04115,"11.1-11.2":0.12345,"12.0":0.02057,"13.0":0.0823,"14.0":0.21603,"15.0":0.06172,"16.0":0.24689,"17.0":0.38063},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01013,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.03443},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18757,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.05063},Q:{"10.4":0},O:{"0":0.55187},H:{"0":1.18874},L:{"0":42.25504},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.00496,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.06948,"22":0,"23":0,"24":0.00993,"25":0,"26":0,"27":0,"28":0,"29":0.00496,"30":0.00993,"31":0.01489,"32":0.00496,"33":0,"34":0,"35":0.00993,"36":0.00496,"37":0.01489,"38":0,"39":0,"40":0.00496,"41":0.134,"42":0,"43":0.01985,"44":0.01985,"45":0,"46":0,"47":0.02482,"48":0.05956,"49":0,"50":0,"51":0,"52":0.07941,"53":0,"54":0,"55":0,"56":0.01489,"57":0.01489,"58":0.00496,"59":0,"60":0,"61":0.06948,"62":0.04963,"63":0,"64":0,"65":0,"66":0.04467,"67":0.01985,"68":0,"69":0.00993,"70":0,"71":0,"72":0.04963,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.03474,"79":0.21837,"80":0.00496,"81":0.00496,"82":0,"83":0,"84":0,"85":0.01985,"86":0,"87":0.00496,"88":0.15882,"89":0.00496,"90":0.00496,"91":0.07941,"92":0.01489,"93":0,"94":0.00496,"95":0.02482,"96":0.00496,"97":0.00993,"98":0.02978,"99":0.28785,"100":0.04467,"101":0.25808,"102":3.42943,"103":0.65015,"104":0.02482,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00496,"29":0,"30":0,"31":0.01489,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00496,"43":0.00993,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00993,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00496,"57":0,"58":0.05956,"59":0,"60":0,"61":0.03474,"62":0.02482,"63":0.01985,"64":0.01489,"65":0.00496,"66":0.00993,"67":0.01489,"68":0.00496,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.01985,"75":0.00993,"76":0,"77":0,"78":0,"79":0,"80":0.03474,"81":0,"83":0.01985,"84":0.03474,"85":0.00496,"86":0.00496,"87":0.11415,"88":0.00993,"89":0.00993,"90":0.00496,"91":0.01985,"92":0.02978,"93":0.00993,"94":0,"95":0.00993,"96":0.05459,"97":0.04467,"98":0.02978,"99":0.02482,"100":0.08933,"101":0.06948,"102":0.50623,"103":11.57372,"104":0.01489,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.04963,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.00496,"52":0,"53":0,"54":0.00496,"55":0.00496,"56":0.00993,"57":0,"58":0.00993,"60":0.01489,"62":0,"63":0.07445,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.02482,"78":0,"79":0.00993,"80":0,"81":0.00496,"82":0.00496,"83":0,"84":0.00496,"85":0.02978,"86":0.00496,"87":0.01985,"88":0.2283,"89":0.17867,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00496},B:{"12":0.06948,"13":0.00993,"14":0.01985,"15":0.00993,"16":0.01489,"17":0.01985,"18":0.08933,"79":0,"80":0.00496,"81":0,"83":0,"84":0.00496,"85":0,"86":0,"87":0,"88":0,"89":0.00993,"90":0.00993,"91":0,"92":0.00993,"93":0,"94":0,"95":0,"96":0.01489,"97":0.00496,"98":0.00496,"99":0.01489,"100":0.02978,"101":0.02482,"102":0.08437,"103":3.08202,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00496,"11":0,"12":0.00496,"13":0.00496,"14":0.04467,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00993,"10.1":0.00496,"11.1":0.00496,"12.1":0.01985,"13.1":0.11911,"14.1":0.05459,"15.1":0.07445,"15.2-15.3":0.01489,"15.4":0.04467,"15.5":0.05956,"15.6":0.00993,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00197,"8.1-8.4":0,"9.0-9.2":0.00492,"9.3":0.01672,"10.0-10.2":0.01082,"10.3":0.02361,"11.0-11.2":0.00787,"11.3-11.4":0.04525,"12.0-12.1":0.10526,"12.2-12.5":0.98473,"13.0-13.1":0.17019,"13.2":0.03148,"13.3":0.31578,"13.4-13.7":0.26266,"14.0-14.4":1.63204,"14.5-14.8":1.29363,"15.0-15.1":0.50368,"15.2-15.3":0.76437,"15.4":0.70928,"15.5":2.78007,"16.0":0.09936},P:{"4":0.25106,"5.0-5.4":0.01004,"6.2-6.4":0.03013,"7.2-7.4":0.13055,"8.2":0,"9.2":0.04017,"10.1":0.04017,"11.1-11.2":0.12051,"12.0":0.02009,"13.0":0.08034,"14.0":0.21089,"15.0":0.06026,"16.0":0.24102,"17.0":0.37157,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02695,"4.2-4.3":0.01617,"4.4":0,"4.4.3-4.4.4":0.09162},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0943,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":61.05134},S:{"2.5":0},R:{_:"0"},M:{"0":0.05037},Q:{"10.4":0},O:{"0":0.54903},H:{"0":1.18264}}; 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 8e198f00352a2cf..d08c147a6900876 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:{"60":0.19766,"67":0.02502,"78":0.01751,"85":0.51541,"89":0.00751,"91":0.07006,"99":0.04253,"101":0.03503,"102":0.45536,"103":0.02502,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 90 92 93 94 95 96 97 98 100 104 105 3.5 3.6"},D:{"71":0.01751,"79":0.80064,"80":0.00751,"81":0.05254,"86":0.01751,"88":0.07756,"92":0.03503,"93":0.00751,"94":0.00751,"96":0.03503,"98":0.00751,"99":0.05254,"101":0.01751,"102":0.26771,"103":14.2614,"105":0.01751,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 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 83 84 85 87 89 90 91 95 97 100 104 106 107"},F:{"86":0.02502,"88":0.38781,"89":0.11259,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"18":0.05254,"103":0.47288,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102"},E:{"4":0,"14":0.00751,_:"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 16.0","13.1":1.06835,"14.1":0.15512,"15.1":0.11259,"15.2-15.3":0.80815,"15.4":0.33527,"15.5":2.03162,"15.6":0.1301},G:{"8":0,"3.2":0,"4.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.00624,"10.3":0,"11.0-11.2":0.00624,"11.3-11.4":0,"12.0-12.1":0.01871,"12.2-12.5":1.20394,"13.0-13.1":0,"13.2":0.00624,"13.3":0.00624,"13.4-13.7":0,"14.0-14.4":0.24952,"14.5-14.8":0.0499,"15.0-15.1":5.5581,"15.2-15.3":3.01298,"15.4":8.04708,"15.5":43.55404,"16.0":0.42419},P:{"4":0.92717,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.20271,"8.2":0.01017,"9.2":0.03041,"10.1":0.01014,"11.1-11.2":0.02016,"12.0":0.03041,"13.0":0.03023,"14.0":0.07095,"15.0":0.06081,"16.0":0.54421,"17.0":0.35273},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00526,"4.2-4.3":0.00136,"4.4":0,"4.4.3-4.4.4":0.05336},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01751,"11":0.04253,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.23244},Q:{"10.4":0},O:{"0":2.77426},H:{"0":0.17037},L:{"0":7.79306},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.05006,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.00751,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00501,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.13016,"86":0,"87":0,"88":0,"89":0.0025,"90":0,"91":0.01752,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01001,"100":0,"101":0.00751,"102":0.14768,"103":0.00751,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0.00501,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.20024,"80":0.0025,"81":0.01252,"83":0,"84":0,"85":0,"86":0.00501,"87":0,"88":0.02002,"89":0,"90":0,"91":0,"92":0.00751,"93":0.0025,"94":0.0025,"95":0,"96":0.00751,"97":0,"98":0.0025,"99":0.01252,"100":0,"101":0.00501,"102":0.06758,"103":3.56928,"104":0,"105":0.00501,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00751,"87":0,"88":0.09762,"89":0.02753,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.01252,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0.11764,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.0025,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.26782,"14.1":0.03755,"15.1":0.02753,"15.2-15.3":0.20274,"15.4":0.0851,"15.5":0.50811,"15.6":0.03254,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0.0078,"10.3":0,"11.0-11.2":0.0078,"11.3-11.4":0,"12.0-12.1":0.0234,"12.2-12.5":1.5056,"13.0-13.1":0,"13.2":0.0078,"13.3":0.0078,"13.4-13.7":0,"14.0-14.4":0.31204,"14.5-14.8":0.06241,"15.0-15.1":6.95071,"15.2-15.3":3.76789,"15.4":10.06332,"15.5":54.46675,"16.0":0.53047},P:{"4":0.91719,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.00997,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.01994,"12.0":0,"13.0":0.02991,"14.0":0.00997,"15.0":0,"16.0":0.53835,"17.0":0.34893,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00657,"4.2-4.3":0.0017,"4.4":0,"4.4.3-4.4.4":0.06672},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00501,"10":0,"11":0.01001,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":9.58924},S:{"2.5":0},R:{_:"0"},M:{"0":0.23241},Q:{"10.4":0},O:{"0":2.77389},H:{"0":0.17034}}; 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 e58018086dd6a79..c975291d083757b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js @@ -1 +1 @@ -module.exports={C:{"52":0.05403,"78":0.04683,"84":0.04322,"88":0.01801,"91":0.03242,"94":0.0036,"95":0.0036,"97":0.01441,"98":0.0072,"99":0.02161,"100":0.02882,"101":0.06844,"102":1.14904,"103":0.16929,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 96 104 105 3.5 3.6"},D:{"41":0.0036,"43":0.0036,"49":0.11166,"50":0.0072,"56":0.0072,"58":0.0072,"63":0.01081,"64":0.0072,"65":0.01441,"66":0.0036,"67":0.01801,"68":0.0036,"69":0.01081,"70":0.02882,"71":0.0036,"72":0.0072,"73":0.01081,"74":0.01801,"75":0.01081,"76":0.0036,"77":0.01081,"78":0.04683,"79":0.05403,"80":0.01441,"81":0.03242,"83":0.02161,"84":0.02882,"85":0.03602,"86":0.05403,"87":0.14768,"88":0.02161,"89":0.04683,"90":0.04683,"91":0.06123,"92":0.06123,"93":0.01441,"94":0.02521,"95":0.02161,"96":0.06123,"97":0.07564,"98":0.08285,"99":0.08285,"100":0.10446,"101":0.21612,"102":1.21748,"103":22.99877,"104":0.02161,"105":0.01441,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 47 48 51 52 53 54 55 57 59 60 61 62 106 107"},F:{"70":0.0036,"79":0.04683,"82":0.0036,"84":0.01081,"85":0.04322,"86":0.01441,"87":0.07204,"88":2.19362,"89":0.68438,"90":0.0036,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 83 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.0036,"16":0.0072,"17":0.0036,"18":0.01801,"84":0.01081,"86":0.0072,"92":0.01441,"98":0.0036,"99":0.0036,"100":0.01441,"101":0.03602,"102":0.05763,"103":2.09997,_:"12 14 15 79 80 81 83 85 87 88 89 90 91 93 94 95 96 97"},E:{"4":0,"13":0.01801,"14":0.02521,"15":0.0072,_:"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.0072,"13.1":0.02882,"14.1":0.10806,"15.1":0.01801,"15.2-15.3":0.01441,"15.4":0.04683,"15.5":0.1729,"15.6":0.0036,"16.0":0.0072},G:{"8":0.00097,"3.2":0,"4.0-4.1":0.00097,"4.2-4.3":0,"5.0-5.1":0.00291,"6.0-6.1":0.0034,"7.0-7.1":0.0267,"8.1-8.4":0.0034,"9.0-9.2":0.00146,"9.3":0.07524,"10.0-10.2":0.00243,"10.3":0.04951,"11.0-11.2":0.00631,"11.3-11.4":0.00922,"12.0-12.1":0.01165,"12.2-12.5":0.30485,"13.0-13.1":0.00728,"13.2":0.01262,"13.3":0.01553,"13.4-13.7":0.08544,"14.0-14.4":0.18641,"14.5-14.8":0.45582,"15.0-15.1":0.13544,"15.2-15.3":0.22961,"15.4":0.33252,"15.5":2.74998,"16.0":0.03689},P:{"4":0.23731,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.14445,"8.2":0.01017,"9.2":0.02064,"10.1":0.07156,"11.1-11.2":0.08254,"12.0":0.02064,"13.0":0.08254,"14.0":0.10318,"15.0":0.05159,"16.0":0.1754,"17.0":1.32067},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00621,"4.2-4.3":0.01139,"4.4":0,"4.4.3-4.4.4":0.09114},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04322,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.07676},Q:{"10.4":0},O:{"0":0.09596},H:{"0":0.57535},L:{"0":58.097},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01815,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01815,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.01452,"85":0,"86":0,"87":0,"88":0.00726,"89":0,"90":0,"91":0.01089,"92":0,"93":0,"94":0.00363,"95":0,"96":0,"97":0.00726,"98":0.00363,"99":0.00726,"100":0.01089,"101":0.02541,"102":0.43197,"103":0.06171,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00363,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.03993,"50":0.00363,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00363,"57":0,"58":0.00363,"59":0,"60":0,"61":0,"62":0,"63":0.00363,"64":0.00363,"65":0.00726,"66":0,"67":0.00726,"68":0,"69":0.00363,"70":0.01089,"71":0.00363,"72":0.00363,"73":0.00363,"74":0.00726,"75":0.00363,"76":0,"77":0.00363,"78":0.01815,"79":0.02178,"80":0.00726,"81":0.02904,"83":0.01089,"84":0.01089,"85":0.01452,"86":0.02178,"87":0.05445,"88":0.00726,"89":0.01815,"90":0.01815,"91":0.02904,"92":0.02541,"93":0.00726,"94":0.01089,"95":0.01452,"96":0.02178,"97":0.02904,"98":0.02904,"99":0.02904,"100":0.0363,"101":0.08349,"102":0.46101,"103":8.38893,"104":0.00726,"105":0.00363,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.02178,"64":0.05808,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00363,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01815,"80":0,"81":0,"82":0,"83":0,"84":0.00363,"85":0.01452,"86":0.00726,"87":0.02541,"88":0.79497,"89":0.24684,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00363,"16":0.00363,"17":0,"18":0.00726,"79":0,"80":0,"81":0,"83":0,"84":0.00363,"85":0,"86":0.00363,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00363,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00363,"101":0.01452,"102":0.02178,"103":0.76956,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00726,"14":0.00726,"15":0.00363,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00363,"13.1":0.01089,"14.1":0.03993,"15.1":0.00726,"15.2-15.3":0.00363,"15.4":0.01815,"15.5":0.06171,"15.6":0,"16.0":0.00363},G:{"8":0.00139,"3.2":0,"4.0-4.1":0.00139,"4.2-4.3":0,"5.0-5.1":0.00416,"6.0-6.1":0.00485,"7.0-7.1":0.03814,"8.1-8.4":0.00485,"9.0-9.2":0.00208,"9.3":0.10749,"10.0-10.2":0.00347,"10.3":0.07074,"11.0-11.2":0.00902,"11.3-11.4":0.01318,"12.0-12.1":0.01664,"12.2-12.5":0.43552,"13.0-13.1":0.0104,"13.2":0.01803,"13.3":0.02219,"13.4-13.7":0.12206,"14.0-14.4":0.26631,"14.5-14.8":0.6512,"15.0-15.1":0.19349,"15.2-15.3":0.32803,"15.4":0.47505,"15.5":3.92872,"16.0":0.05271},P:{"4":0.24322,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.14188,"8.2":0,"9.2":0.0304,"10.1":0.01013,"11.1-11.2":0.09121,"12.0":0.02027,"13.0":0.08107,"14.0":0.09121,"15.0":0.05067,"16.0":0.17228,"17.0":1.28703,"18.0":0.01013},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01345,"4.2-4.3":0.02465,"4.4":0,"4.4.3-4.4.4":0.19724},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01452,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":76.22775},S:{"2.5":0},R:{_:"0"},M:{"0":0.07644},Q:{"10.4":0},O:{"0":0.09555},H:{"0":0.57292}}; 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 1abbd757c76b639..415a81d64898d39 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.02289,"79":0.01831,"91":0.03204,"94":0.00915,"96":0.119,"97":0.01831,"99":0.01373,"101":0.01373,"102":3.36867,"103":0.14646,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 92 93 95 98 100 104 105 3.5 3.6"},D:{"63":0.04119,"65":0.00915,"66":0.01373,"76":0.06408,"77":0.02289,"79":0.02289,"80":0.1602,"83":0.01373,"86":0.00458,"87":0.119,"88":0.00915,"91":0.00458,"94":0.26547,"95":0.03204,"97":0.00915,"98":0.12358,"99":0.09154,"100":0.54009,"101":0.2792,"102":1.3731,"103":22.87127,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 67 68 69 70 71 72 73 74 75 78 81 84 85 89 90 92 93 96 104 105 106 107"},F:{"88":0.19223,"89":0.17393,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00458,"13":0.02289,"16":0.00458,"17":0.02289,"18":0.06408,"81":0.00915,"84":0.03662,"85":0.00915,"89":0.00458,"90":0.0595,"92":0.01373,"94":0.00458,"95":0.00915,"96":0.01373,"98":0.01831,"99":0.01373,"100":0.00915,"101":0.03662,"102":0.21512,"103":4.18338,_:"14 15 79 80 83 86 87 88 91 93 97"},E:{"4":0,"12":0.00915,"13":0.09612,"14":0.15562,"15":0.00915,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 15.6 16.0","9.1":0.00915,"11.1":0.00458,"12.1":0.01373,"13.1":0.18766,"14.1":0.09612,"15.1":0.01831,"15.2-15.3":0.03204,"15.4":0.05492,"15.5":0.37531},G:{"8":0,"3.2":0,"4.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.00201,"10.3":0.03716,"11.0-11.2":0.01808,"11.3-11.4":0.03314,"12.0-12.1":0.03917,"12.2-12.5":0.7281,"13.0-13.1":0.03716,"13.2":0.00904,"13.3":0.03917,"13.4-13.7":0.29928,"14.0-14.4":0.87874,"14.5-14.8":1.69121,"15.0-15.1":1.27543,"15.2-15.3":0.50114,"15.4":1.02135,"15.5":3.37538,"16.0":0.00904},P:{"4":0.06133,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.34756,"8.2":0.01017,"9.2":0.08178,"10.1":0.07156,"11.1-11.2":0.21467,"12.0":0.02057,"13.0":0.15351,"14.0":0.17378,"15.0":0.13289,"16.0":0.25556,"17.0":0.67468},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.04577,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.20607},Q:{"10.4":0},O:{"0":0.08677},H:{"0":0.16943},L:{"0":51.20253},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01396,"79":0.00931,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01396,"92":0,"93":0,"94":0.00465,"95":0,"96":0.05584,"97":0.00931,"98":0,"99":0.00931,"100":0,"101":0.06514,"102":1.59598,"103":0.0698,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00465,"61":0,"62":0,"63":0.01861,"64":0,"65":0.00465,"66":0.00465,"67":0,"68":0.01861,"69":0,"70":0.00931,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.02792,"77":0.00931,"78":0,"79":0.00931,"80":0.07445,"81":0.00465,"83":0.00931,"84":0,"85":0,"86":0.00465,"87":0.05584,"88":0.00465,"89":0,"90":0,"91":0.00465,"92":0,"93":0,"94":0.12098,"95":0.01396,"96":0.00465,"97":0.00465,"98":0.06514,"99":0.04188,"100":0.25126,"101":0.13494,"102":0.64211,"103":10.64141,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0.05118,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01861,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.08841,"89":0.0791,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00465,"13":0.01396,"14":0,"15":0,"16":0.00465,"17":0.00931,"18":0.03257,"79":0,"80":0,"81":0.00465,"83":0,"84":0.01861,"85":0.00465,"86":0,"87":0,"88":0,"89":0.00465,"90":0.02792,"91":0,"92":0.00465,"93":0,"94":0.00465,"95":0.00465,"96":0.00931,"97":0,"98":0.00931,"99":0.00465,"100":0.00465,"101":0.01861,"102":0.10237,"103":1.97287,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00465,"13":0.04653,"14":0.0698,"15":0.00465,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00465,"10.1":0,"11.1":0.00465,"12.1":0.00931,"13.1":0.08841,"14.1":0.04653,"15.1":0.00931,"15.2-15.3":0.01396,"15.4":0.02327,"15.5":0.17681,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0.00306,"10.3":0.05662,"11.0-11.2":0.02754,"11.3-11.4":0.0505,"12.0-12.1":0.05968,"12.2-12.5":1.10941,"13.0-13.1":0.05662,"13.2":0.01377,"13.3":0.05968,"13.4-13.7":0.45601,"14.0-14.4":1.33894,"14.5-14.8":2.57689,"15.0-15.1":1.94338,"15.2-15.3":0.76358,"15.4":1.55623,"15.5":5.14306,"16.0":0.01377},P:{"4":0.06078,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.34441,"8.2":0,"9.2":0.09117,"10.1":0.07091,"11.1-11.2":0.20259,"12.0":0,"13.0":0.01013,"14.0":0.17221,"15.0":0.13169,"16.0":0.24311,"17.0":0.65843,"18.0":0.03039},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0071,"4.4":0,"4.4.3-4.4.4":0.03548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02792,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.12196},S:{"2.5":0},R:{_:"0"},M:{"0":0.20319},Q:{"10.4":0},O:{"0":0.08555},H:{"0":0.16705}}; 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 2a93ebb5a9ed8fa..efb42d617f8c940 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js @@ -1 +1 @@ -module.exports={C:{"47":0.00134,"52":0.00402,"78":0.00268,"79":0.00134,"80":0.00134,"82":0.00134,"84":0.00134,"88":0.00134,"91":0.00268,"99":0.00402,"100":0.00402,"101":0.01206,"102":0.23316,"103":0.02144,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 81 83 85 86 87 89 90 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"22":0.02814,"26":0.01876,"31":0.00268,"34":0.0335,"38":0.04958,"42":0.00134,"43":0.00268,"47":0.0402,"49":0.04154,"50":0.00134,"53":0.00938,"56":0.00268,"58":0.00134,"59":0.00268,"60":0.00134,"61":0.00402,"63":0.00268,"65":0.00268,"66":0.00134,"67":0.00268,"68":0.0067,"69":0.00268,"70":0.00402,"71":0.02412,"72":0.00134,"73":0.00536,"74":0.00268,"75":0.00536,"76":0.00268,"77":0.00268,"78":0.00402,"79":0.08442,"80":0.00938,"81":0.00804,"83":0.01876,"84":0.02278,"85":0.02948,"86":0.0268,"87":0.03216,"88":0.00938,"89":0.01742,"90":0.0067,"91":0.0134,"92":0.02814,"93":0.0067,"94":0.00804,"95":0.0134,"96":0.02814,"97":0.02278,"98":0.0469,"99":0.02412,"100":0.03752,"101":0.06164,"102":0.33232,"103":7.51472,"104":0.01876,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 32 33 35 36 37 39 40 41 44 45 46 48 51 52 54 55 57 62 64 105 106 107"},F:{"28":0.00804,"31":0.00268,"32":0.00536,"36":0.00938,"40":0.0402,"46":0.03484,"84":0.00134,"85":0.00804,"86":0.00402,"87":0.01072,"88":0.3618,"89":0.1273,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"13":0.00134,"14":0.00134,"15":0.00268,"16":0.00134,"17":0.00268,"18":0.00804,"84":0.00134,"92":0.00268,"96":0.00134,"98":0.00134,"99":0.00134,"100":0.00268,"101":0.00938,"102":0.0134,"103":0.6231,_:"12 79 80 81 83 85 86 87 88 89 90 91 93 94 95 97"},E:{"4":0,"13":0.0067,"14":0.01608,"15":0.00536,_:"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.00268,"12.1":0.00402,"13.1":0.01474,"14.1":0.03752,"15.1":0.00804,"15.2-15.3":0.0067,"15.4":0.02412,"15.5":0.15276,"15.6":0.00536,"16.0":0.00268},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01336,"8.1-8.4":0,"9.0-9.2":0.00223,"9.3":0.02449,"10.0-10.2":0.00557,"10.3":0.0768,"11.0-11.2":0.02337,"11.3-11.4":0.02783,"12.0-12.1":0.02671,"12.2-12.5":1.37908,"13.0-13.1":0.01336,"13.2":0.00557,"13.3":0.05009,"13.4-13.7":0.15249,"14.0-14.4":0.34282,"14.5-14.8":0.88934,"15.0-15.1":0.1959,"15.2-15.3":0.37621,"15.4":0.5966,"15.5":6.65833,"16.0":0.0935},P:{"4":0.41555,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.20271,"8.2":0.01017,"9.2":0.03041,"10.1":0.01014,"11.1-11.2":0.09122,"12.0":0.03041,"13.0":0.18244,"14.0":0.07095,"15.0":0.06081,"16.0":0.25339,"17.0":3.03049},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.00294,"4.4":0,"4.4.3-4.4.4":0.0134},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00134,"11":0.13668,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.07793},Q:{"10.4":0},O:{"0":0.25977},H:{"0":0.84437},L:{"0":71.74534},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.0027,"102":0.03777,"103":0.00405,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00405,"23":0,"24":0,"25":0,"26":0.0027,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00405,"35":0,"36":0,"37":0,"38":0.00675,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0054,"48":0,"49":0.0054,"50":0,"51":0,"52":0,"53":0.00135,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00135,"69":0,"70":0,"71":0.0027,"72":0,"73":0.00135,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.01079,"80":0.00135,"81":0.0027,"83":0.0027,"84":0.0027,"85":0.00405,"86":0.00405,"87":0.00405,"88":0.00135,"89":0.0027,"90":0.00135,"91":0.00135,"92":0.00675,"93":0.00135,"94":0.00135,"95":0.0027,"96":0.00405,"97":0.0027,"98":0.00675,"99":0.00405,"100":0.0054,"101":0.00809,"102":0.04452,"103":1.01715,"104":0.0027,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00135,"29":0,"30":0,"31":0,"32":0.00135,"33":0,"34":0,"35":0,"36":0.00135,"37":0,"38":0,"39":0,"40":0.0054,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.0054,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.03373,"64":0.00405,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00135,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00135,"86":0,"87":0.00135,"88":0.04722,"89":0.01889,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00135,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00135,"102":0.0027,"103":0.08499,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00135,"14":0.0027,"15":0.00135,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.0027,"14.1":0.0054,"15.1":0.00135,"15.2-15.3":0.00135,"15.4":0.0027,"15.5":0.02024,"15.6":0.00135,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01572,"8.1-8.4":0,"9.0-9.2":0.00262,"9.3":0.02882,"10.0-10.2":0.00655,"10.3":0.0904,"11.0-11.2":0.02751,"11.3-11.4":0.03275,"12.0-12.1":0.03144,"12.2-12.5":1.62332,"13.0-13.1":0.01572,"13.2":0.00655,"13.3":0.05896,"13.4-13.7":0.1795,"14.0-14.4":0.40354,"14.5-14.8":1.04684,"15.0-15.1":0.23059,"15.2-15.3":0.44284,"15.4":0.70226,"15.5":7.83752,"16.0":0.11006},P:{"4":0.40332,"5.0-5.4":0.01008,"6.2-6.4":0.01008,"7.2-7.4":0.20166,"8.2":0,"9.2":0.03025,"10.1":0.02017,"11.1-11.2":0.09075,"12.0":0.04033,"13.0":0.18149,"14.0":0.07058,"15.0":0.0605,"16.0":0.25207,"17.0":2.99462,"18.0":0.02017},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00144,"4.2-4.3":0.00431,"4.4":0,"4.4.3-4.4.4":0.01965},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01889,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":78.5905},S:{"2.5":0},R:{_:"0"},M:{"0":0.07786},Q:{"10.4":0},O:{"0":0.25953},H:{"0":0.84359}}; 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 f25a7e2dc131762..ddd8f20de509792 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:{"47":0.01111,"52":0.00741,"68":0.00741,"72":0.0037,"78":0.01481,"87":0.01481,"91":0.01481,"100":0.00741,"101":0.05555,"102":0.99981,"103":0.08887,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"38":0.00741,"47":0.01852,"49":0.03333,"53":0.00741,"55":0.02222,"56":0.00741,"63":0.0037,"67":0.0037,"68":0.01111,"69":0.0037,"70":0.0037,"72":0.01111,"74":0.02592,"75":0.00741,"76":0.03333,"79":0.05925,"80":0.0037,"81":0.03703,"83":0.02962,"84":0.02592,"85":0.0037,"87":0.08517,"89":0.01111,"90":0.01111,"91":0.05555,"92":0.04814,"93":0.10739,"94":0.02222,"95":0.01852,"96":0.04073,"97":0.09628,"98":0.02592,"99":0.18515,"100":0.19256,"101":0.35179,"102":1.41825,"103":21.81808,"104":0.02592,"105":0.01111,_:"4 5 6 7 8 9 10 11 12 13 14 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 57 58 59 60 61 62 64 65 66 71 73 77 78 86 88 106 107"},F:{"28":0.00741,"85":0.0037,"86":0.01481,"87":0.02962,"88":0.6184,"89":0.20367,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0037,"18":0.01111,"84":0.0037,"85":0.02592,"92":0.0037,"95":0.01481,"98":0.0037,"100":0.00741,"101":0.07036,"102":0.10739,"103":3.54007,_:"12 13 14 15 17 79 80 81 83 86 87 88 89 90 91 93 94 96 97 99"},E:{"4":0,"13":0.01111,"14":0.21477,"15":0.04814,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00741,"11.1":0.08517,"12.1":0.01481,"13.1":0.21107,"14.1":0.34068,"15.1":0.08147,"15.2-15.3":0.04073,"15.4":0.17034,"15.5":1.58118,"15.6":0.08147,"16.0":0.02962},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01315,"6.0-6.1":0,"7.0-7.1":0.03506,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09424,"10.0-10.2":0.00219,"10.3":0.10738,"11.0-11.2":0,"11.3-11.4":0.00219,"12.0-12.1":0.07889,"12.2-12.5":0.33092,"13.0-13.1":0.02192,"13.2":0,"13.3":0.01096,"13.4-13.7":0.08766,"14.0-14.4":0.22573,"14.5-14.8":0.77141,"15.0-15.1":0.21696,"15.2-15.3":0.44488,"15.4":1.9877,"15.5":16.98205,"16.0":0.11615},P:{"4":0.37424,"5.0-5.4":0.021,"6.2-6.4":0.02057,"7.2-7.4":0.28068,"8.2":0.01017,"9.2":0.0104,"10.1":0.07156,"11.1-11.2":0.06237,"12.0":0.02057,"13.0":0.12475,"14.0":0.12475,"15.0":0.03119,"16.0":0.31187,"17.0":3.95034},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00383,"4.2-4.3":0.00478,"4.4":0,"4.4.3-4.4.4":0.06696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0037,"11":0.04073,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.13224},Q:{"10.4":0},O:{"0":0.03149},H:{"0":0.31596},L:{"0":38.16938},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0039,"48":0,"49":0,"50":0,"51":0,"52":0.0039,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0039,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.0078,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.0039,"88":0,"89":0,"90":0,"91":0.0078,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.0039,"100":0.0078,"101":0.02339,"102":0.42109,"103":0.03899,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.0039,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.0078,"48":0,"49":0.0117,"50":0,"51":0,"52":0,"53":0.0039,"54":0,"55":0.0078,"56":0.0039,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.0039,"69":0,"70":0.0039,"71":0,"72":0.0039,"73":0,"74":0.0117,"75":0.0039,"76":0.0117,"77":0,"78":0,"79":0.02339,"80":0.0039,"81":0.0195,"83":0.0117,"84":0.0117,"85":0.0039,"86":0,"87":0.03509,"88":0,"89":0.0039,"90":0.0039,"91":0.02339,"92":0.0195,"93":0.04289,"94":0.0117,"95":0.0078,"96":0.0156,"97":0.03899,"98":0.0117,"99":0.07408,"100":0.07798,"101":0.14426,"102":0.55756,"103":8.60509,"104":0.0078,"105":0.0039,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.0039,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.0039,"62":0,"63":0.0078,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.0078,"87":0.0117,"88":0.24174,"89":0.07798,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.0039,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.0117,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0.0078,"96":0,"97":0,"98":0,"99":0,"100":0.0039,"101":0.02729,"102":0.04679,"103":1.39974,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0039,"14":0.08188,"15":0.0195,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.0039,"11.1":0.03119,"12.1":0.0039,"13.1":0.08188,"14.1":0.13257,"15.1":0.03119,"15.2-15.3":0.0156,"15.4":0.06628,"15.5":0.61604,"15.6":0.03119,"16.0":0.0117},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.018,"6.0-6.1":0,"7.0-7.1":0.04801,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12904,"10.0-10.2":0.003,"10.3":0.14704,"11.0-11.2":0,"11.3-11.4":0.003,"12.0-12.1":0.10803,"12.2-12.5":0.45312,"13.0-13.1":0.03001,"13.2":0,"13.3":0.015,"13.4-13.7":0.12003,"14.0-14.4":0.30908,"14.5-14.8":1.05629,"15.0-15.1":0.29708,"15.2-15.3":0.60917,"15.4":2.72174,"15.5":23.25332,"16.0":0.15904},P:{"4":0.36021,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.27546,"8.2":0.01059,"9.2":0.01059,"10.1":0,"11.1-11.2":0.06357,"12.0":0.01059,"13.0":0.11654,"14.0":0.12713,"15.0":0.03178,"16.0":0.29665,"17.0":3.80342,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04753,"4.2-4.3":0.05942,"4.4":0,"4.4.3-4.4.4":0.83184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.0156,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":48.24568},S:{"2.5":0},R:{_:"0"},M:{"0":0.12812},Q:{"10.4":0},O:{"0":0.03051},H:{"0":0.30613}}; 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 e37fd30e5238cd2..0a1e0431e9a4d5a 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:{"88":0.03647,"99":0.03647,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 3.5 3.6"},D:{"20":0.10535,"36":0.03647,"79":0.24717,"90":0.06888,"96":0.17424,"97":0.06888,"100":0.03647,"101":0.06888,"102":1.01705,"103":24.96437,_:"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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 91 92 93 94 95 98 99 104 105 106 107"},F:{"88":0.2107,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.03647,"18":0.24717,"91":0.06888,"92":0.06888,"100":0.06888,"101":0.10535,"102":0.31606,"103":8.63886,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 15.1 15.4 15.6 16.0","12.1":0.10535,"14.1":0.35252,"15.2-15.3":0.24717,"15.5":0.14182},G:{"8":0.02614,"3.2":0,"4.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.02614,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.05229,"14.5-14.8":0.10457,"15.0-15.1":0.07843,"15.2-15.3":0,"15.4":0.26127,"15.5":1.04523,"16.0":0},P:{"4":0.22015,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.11532,"8.2":0.01017,"9.2":0.03917,"10.1":0.03917,"11.1-11.2":0.08387,"12.0":0.03041,"13.0":0.03145,"14.0":0.07338,"15.0":0.02097,"16.0":0.07338,"17.0":0.55811},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.03647,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":59.9411},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.01631,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.01631,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0.04486,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01631,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.10195,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.02855,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0.0734,"97":0.02855,"98":0,"99":0,"100":0.08564,"101":0.02855,"102":0.41596,"103":10.17869,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.08564,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.01631,"18":0.10195,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02855,"92":0.02855,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.02855,"101":0.04486,"102":0.1305,"103":3.52339,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.04486,"13.1":0,"14.1":0.14273,"15.1":0,"15.2-15.3":0.10195,"15.4":0,"15.5":0.05709,"15.6":0,"16.0":0},G:{"8":0.04041,"3.2":0,"4.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.04041,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.08081,"14.5-14.8":0.16163,"15.0-15.1":0.12122,"15.2-15.3":0,"15.4":0.40383,"15.5":1.61556,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0396,"10.1":0.0396,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.55445,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01631,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":80.65626},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":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 62b9a7747a49089..1cff0302d39f80e 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.03248,"52":0.01856,"55":0.00464,"78":0.00928,"88":0.00464,"91":0.00928,"96":0.00464,"98":0.00464,"99":0.00928,"100":0.01392,"101":0.10208,"102":1.0904,"103":0.16704,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 97 104 105 3.5 3.6"},D:{"11":0.00464,"22":0.01392,"26":0.00464,"30":0.00928,"34":0.03712,"38":0.116,"45":0.00464,"49":0.15312,"53":0.11136,"55":0.00928,"56":0.02784,"58":0.00464,"61":0.0464,"62":0.00464,"63":0.00928,"64":0.00464,"65":0.01392,"66":0.00928,"67":0.02784,"68":0.01392,"69":0.01392,"70":0.01392,"71":0.01392,"72":0.01392,"73":0.00928,"74":0.0232,"75":0.01392,"76":0.01392,"77":0.00928,"78":0.00928,"79":0.59856,"80":0.01856,"81":0.0464,"83":0.02784,"84":0.01392,"85":0.01856,"86":0.0464,"87":0.08816,"88":0.01392,"89":0.06032,"90":0.01856,"91":0.02784,"92":0.02784,"93":0.01392,"94":0.02784,"95":0.03248,"96":0.0696,"97":0.11136,"98":0.0696,"99":0.07888,"100":0.12528,"101":0.2088,"102":1.276,"103":29.46864,"104":0.01392,"105":0.01856,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 57 59 60 106 107"},F:{"28":0.03712,"36":0.01856,"40":0.00464,"46":0.08352,"88":0.0696,"89":0.0464,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.00928,"18":0.01392,"84":0.00464,"92":0.00464,"96":0.00464,"98":0.00464,"99":0.00928,"100":0.00928,"101":0.0232,"102":0.07424,"103":3.41968,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 97"},E:{"4":0,"12":0.00464,"13":0.10672,"14":0.32016,"15":0.06496,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00928,"10.1":0.01856,"11.1":0.03248,"12.1":0.06032,"13.1":0.24592,"14.1":0.94192,"15.1":0.116,"15.2-15.3":0.11136,"15.4":0.53824,"15.5":3.51248,"15.6":0.06496,"16.0":0.00464},G:{"8":0.00237,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02602,"6.0-6.1":0.01419,"7.0-7.1":0.09698,"8.1-8.4":0.04494,"9.0-9.2":0.01419,"9.3":0.26728,"10.0-10.2":0.01892,"10.3":0.25546,"11.0-11.2":0.04258,"11.3-11.4":0.04731,"12.0-12.1":0.09461,"12.2-12.5":0.83497,"13.0-13.1":0.07333,"13.2":0.02838,"13.3":0.14192,"13.4-13.7":0.29567,"14.0-14.4":1.51382,"14.5-14.8":2.46942,"15.0-15.1":0.9627,"15.2-15.3":1.22052,"15.4":2.34169,"15.5":12.54105,"16.0":0.02129},P:{"4":0.82135,"5.0-5.4":0.08014,"6.2-6.4":0.20035,"7.2-7.4":0.38067,"8.2":0.04007,"9.2":0.04381,"10.1":0.0219,"11.1-11.2":0.07666,"12.0":0.03285,"13.0":0.15332,"14.0":0.10951,"15.0":0.09856,"16.0":0.30664,"17.0":2.65021},I:{"0":0,"3":0,"4":0.00168,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00112,"4.2-4.3":0.00447,"4.4":0,"4.4.3-4.4.4":0.01954},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19488,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.08576},Q:{"10.4":0.00536},O:{"0":0.08576},H:{"0":0.23343},L:{"0":26.27904},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.01506,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01004,"53":0,"54":0,"55":0.00502,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00502,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00502,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00502,"89":0,"90":0,"91":0.00502,"92":0,"93":0,"94":0,"95":0,"96":0.00502,"97":0,"98":0.00502,"99":0.00502,"100":0.01004,"101":0.05522,"102":0.57228,"103":0.08534,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00502,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00502,"23":0,"24":0,"25":0,"26":0.00502,"27":0,"28":0,"29":0,"30":0.00502,"31":0,"32":0,"33":0,"34":0.02008,"35":0,"36":0,"37":0,"38":0.06024,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00502,"46":0,"47":0,"48":0,"49":0.0753,"50":0,"51":0,"52":0,"53":0.05522,"54":0,"55":0.00502,"56":0.01506,"57":0,"58":0.00502,"59":0,"60":0,"61":0.0251,"62":0.00502,"63":0.00502,"64":0.00502,"65":0.00502,"66":0.00502,"67":0.01506,"68":0.01004,"69":0.00502,"70":0.00502,"71":0.01004,"72":0.00502,"73":0.00502,"74":0.01004,"75":0.00502,"76":0.00502,"77":0.00502,"78":0.00502,"79":0.3012,"80":0.01004,"81":0.03012,"83":0.01506,"84":0.01004,"85":0.01004,"86":0.0251,"87":0.04518,"88":0.00502,"89":0.03012,"90":0.01004,"91":0.01506,"92":0.02008,"93":0.01004,"94":0.01506,"95":0.01506,"96":0.03514,"97":0.05522,"98":0.03514,"99":0.04016,"100":0.06526,"101":0.10542,"102":0.64758,"103":14.85418,"104":0.00502,"105":0.01004,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.02008,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.01004,"37":0.01004,"38":0,"39":0,"40":0.00502,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.04016,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.03514,"89":0.0251,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0.00502,"18":0.01004,"79":0,"80":0,"81":0,"83":0,"84":0.00502,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00502,"93":0,"94":0,"95":0,"96":0.00502,"97":0,"98":0.00502,"99":0.00502,"100":0.00502,"101":0.01004,"102":0.04518,"103":1.7319,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0.00502,"13":0.0502,"14":0.16064,"15":0.03012,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00502,"10.1":0.01004,"11.1":0.01506,"12.1":0.03012,"13.1":0.1255,"14.1":0.47188,"15.1":0.06024,"15.2-15.3":0.05522,"15.4":0.27108,"15.5":1.76202,"15.6":0.03012,"16.0":0},G:{"8":0.00365,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04015,"6.0-6.1":0.0219,"7.0-7.1":0.14966,"8.1-8.4":0.06936,"9.0-9.2":0.0219,"9.3":0.41248,"10.0-10.2":0.0292,"10.3":0.39423,"11.0-11.2":0.06571,"11.3-11.4":0.07301,"12.0-12.1":0.14601,"12.2-12.5":1.28856,"13.0-13.1":0.11316,"13.2":0.0438,"13.3":0.21902,"13.4-13.7":0.45629,"14.0-14.4":2.33619,"14.5-14.8":3.81091,"15.0-15.1":1.48567,"15.2-15.3":1.88356,"15.4":3.6138,"15.5":19.3539,"16.0":0.03285},P:{"4":0.75167,"5.0-5.4":0.01089,"6.2-6.4":0,"7.2-7.4":0.01089,"8.2":0.01089,"9.2":0.04358,"10.1":0.02179,"11.1-11.2":0.07626,"12.0":0.04358,"13.0":0.14162,"14.0":0.09804,"15.0":0.08715,"16.0":0.28324,"17.0":2.42931,"18.0":0},I:{"0":0,"3":0,"4":0.00626,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00418,"4.2-4.3":0.0167,"4.4":0,"4.4.3-4.4.4":0.07306},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.1004,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":34.29804},S:{"2.5":0},R:{_:"0"},M:{"0":0.07968},Q:{"10.4":0.00498},O:{"0":0.07968},H:{"0":0.21688}}; 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 5e1133d06b84078..291e3b3ad68a027 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:{"28":0.00216,"34":0.00431,"38":0.00431,"41":0.00216,"43":0.00431,"47":0.00216,"48":0.00431,"49":0.00431,"51":0.02587,"52":0.01509,"66":0.00431,"68":0.00431,"72":0.01078,"78":0.01509,"84":0.00216,"88":0.00647,"89":0.01294,"91":0.03881,"94":0.00431,"95":0.00647,"96":0.00216,"97":0.00431,"98":0.00216,"99":0.01509,"100":0.02803,"101":0.11211,"102":1.43805,"103":0.25656,"104":0.01078,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 42 44 45 46 50 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 90 92 93 105 3.5 3.6"},D:{"11":0.01725,"32":0.00216,"33":0.00431,"37":0.00431,"43":0.01078,"49":0.0194,"50":0.00216,"55":0.00647,"57":0.00216,"58":0.00216,"60":0.00216,"63":0.00862,"65":0.00647,"66":0.00862,"67":0.00431,"68":0.00431,"69":0.00647,"70":0.01078,"71":0.00431,"72":0.01294,"73":0.00431,"74":0.01294,"75":0.00647,"76":0.00431,"77":0.00647,"78":0.00431,"79":0.03665,"80":0.01294,"81":0.00862,"83":0.01725,"84":0.02156,"85":0.00431,"86":0.01725,"87":0.03881,"88":0.01078,"89":0.01078,"90":0.00862,"91":0.02803,"92":0.02156,"93":0.01294,"94":0.01294,"95":0.01725,"96":0.04312,"97":0.02372,"98":0.04959,"99":0.04096,"100":0.06899,"101":0.10996,"102":0.68561,"103":9.17378,"104":0.01294,"105":0.00431,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 38 39 40 41 42 44 45 46 47 48 51 52 53 54 56 59 61 62 64 106 107"},F:{"12":0.00431,"79":0.01509,"81":0.00216,"82":0.00431,"83":0.00216,"84":0.00216,"85":0.03018,"86":0.01294,"87":0.04096,"88":0.3773,"89":0.32556,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03234,"13":0.01725,"14":0.00862,"15":0.01725,"16":0.02156,"17":0.00862,"18":0.09918,"84":0.01078,"85":0.00862,"89":0.01294,"90":0.02372,"92":0.02156,"96":0.00431,"97":0.00431,"98":0.00647,"99":0.00862,"100":0.01078,"101":0.04096,"102":0.0733,"103":1.36044,_:"79 80 81 83 86 87 88 91 93 94 95"},E:{"4":0,"12":0.00862,"13":0.01078,"14":0.02372,"15":0.00647,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00216,"11.1":0.00431,"12.1":0.00647,"13.1":0.0733,"14.1":0.05821,"15.1":0.02156,"15.2-15.3":0.00862,"15.4":0.03881,"15.5":0.17248,"15.6":0.0194,"16.0":0.00216},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00187,"6.0-6.1":0,"7.0-7.1":0.01187,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03249,"10.0-10.2":0.00187,"10.3":0.10685,"11.0-11.2":0.01812,"11.3-11.4":0.025,"12.0-12.1":0.025,"12.2-12.5":0.89232,"13.0-13.1":0.02125,"13.2":0.00937,"13.3":0.04624,"13.4-13.7":0.11873,"14.0-14.4":0.50428,"14.5-14.8":0.61363,"15.0-15.1":0.3693,"15.2-15.3":0.44991,"15.4":0.61613,"15.5":2.25581,"16.0":0.03749},P:{"4":0.23099,"5.0-5.4":0.021,"6.2-6.4":0.18313,"7.2-7.4":0.14699,"8.2":0.01017,"9.2":0.0735,"10.1":0.06104,"11.1-11.2":0.0945,"12.0":0.021,"13.0":0.042,"14.0":0.0945,"15.0":0.084,"16.0":0.23099,"17.0":0.97646},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00217,"4.2-4.3":0.00527,"4.4":0,"4.4.3-4.4.4":0.071},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06037,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},R:{_:"0"},M:{"0":0.18041},Q:{"10.4":0},O:{"0":0.98834},H:{"0":16.57526},L:{"0":56.17976},S:{"2.5":0.43926}}; +module.exports={C:{"28":0.00216,"34":0.00431,"38":0.00431,"41":0.00216,"43":0.00431,"47":0.00216,"48":0.00431,"49":0.00431,"51":0.02587,"52":0.01509,"66":0.00431,"68":0.00431,"72":0.01078,"78":0.01509,"84":0.00216,"88":0.00647,"89":0.01294,"91":0.03881,"94":0.00431,"95":0.00647,"96":0.00216,"97":0.00431,"98":0.00216,"99":0.01509,"100":0.02803,"101":0.11211,"102":1.43805,"103":0.25656,"104":0.01078,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 42 44 45 46 50 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 90 92 93 105 3.5 3.6"},D:{"11":0.01725,"32":0.00216,"33":0.00431,"37":0.00431,"43":0.01078,"49":0.0194,"50":0.00216,"55":0.00647,"57":0.00216,"58":0.00216,"60":0.00216,"63":0.00862,"65":0.00647,"66":0.00862,"67":0.00431,"68":0.00431,"69":0.00647,"70":0.01078,"71":0.00431,"72":0.01294,"73":0.00431,"74":0.01294,"75":0.00647,"76":0.00431,"77":0.00647,"78":0.00431,"79":0.03665,"80":0.01294,"81":0.00862,"83":0.01725,"84":0.02156,"85":0.00431,"86":0.01725,"87":0.03881,"88":0.01078,"89":0.01078,"90":0.00862,"91":0.02803,"92":0.02156,"93":0.01294,"94":0.01294,"95":0.01725,"96":0.04312,"97":0.02372,"98":0.04959,"99":0.04096,"100":0.06899,"101":0.10996,"102":0.68561,"103":9.17378,"104":0.01294,"105":0.00431,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 38 39 40 41 42 44 45 46 47 48 51 52 53 54 56 59 61 62 64 106 107"},F:{"12":0.00431,"79":0.01509,"81":0.00216,"82":0.00431,"83":0.00216,"84":0.00216,"85":0.03018,"86":0.01294,"87":0.04096,"88":0.3773,"89":0.32556,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.03234,"13":0.01725,"14":0.00862,"15":0.01725,"16":0.02156,"17":0.00862,"18":0.09918,"84":0.01078,"85":0.00862,"89":0.01294,"90":0.02372,"92":0.02156,"96":0.00431,"97":0.00431,"98":0.00647,"99":0.00862,"100":0.01078,"101":0.04096,"102":0.0733,"103":1.36044,_:"79 80 81 83 86 87 88 91 93 94 95 104"},E:{"4":0,"12":0.00862,"13":0.01078,"14":0.02372,"15":0.00647,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00216,"11.1":0.00431,"12.1":0.00647,"13.1":0.0733,"14.1":0.05821,"15.1":0.02156,"15.2-15.3":0.00862,"15.4":0.03881,"15.5":0.17248,"15.6":0.0194,"16.0":0.00216},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00187,"6.0-6.1":0,"7.0-7.1":0.01187,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03249,"10.0-10.2":0.00187,"10.3":0.10685,"11.0-11.2":0.01812,"11.3-11.4":0.025,"12.0-12.1":0.025,"12.2-12.5":0.89232,"13.0-13.1":0.02125,"13.2":0.00937,"13.3":0.04624,"13.4-13.7":0.11873,"14.0-14.4":0.50428,"14.5-14.8":0.61363,"15.0-15.1":0.3693,"15.2-15.3":0.44991,"15.4":0.61613,"15.5":2.25581,"16.0":0.03749},P:{"4":0.23099,"5.0-5.4":0.021,"6.2-6.4":0.18387,"7.2-7.4":0.14699,"8.2":0.01022,"9.2":0.0735,"10.1":0.06129,"11.1-11.2":0.0945,"12.0":0.021,"13.0":0.042,"14.0":0.0945,"15.0":0.084,"16.0":0.23099,"17.0":0.97646,"18.0":0.01022},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00217,"4.2-4.3":0.00527,"4.4":0,"4.4.3-4.4.4":0.071},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06037,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.17976},S:{"2.5":0.43926},R:{_:"0"},M:{"0":0.18041},Q:{"10.4":0},O:{"0":0.98834},H:{"0":16.57526}}; 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 796a761bfd55470..983fe8cbd7dfab6 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:{"48":0.01218,"52":0.2315,"55":0.01218,"56":0.00609,"60":0.01218,"68":0.26196,"72":0.00609,"78":0.09138,"79":0.01828,"80":0.00609,"81":0.0792,"82":0.02437,"83":0.00609,"84":0.01218,"88":0.01218,"89":0.01828,"91":0.09138,"93":0.01218,"94":0.01218,"95":0.01828,"96":0.01218,"97":0.03046,"98":0.01828,"99":0.16448,"100":0.12184,"101":0.1523,"102":2.46117,"103":0.16448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 85 86 87 90 92 104 105 3.5 3.6"},D:{"22":0.00609,"33":0.01218,"41":0.01218,"49":0.19494,"51":0.00609,"59":0.14012,"61":0.0792,"63":0.01828,"64":0.00609,"67":0.01218,"68":0.01828,"69":0.00609,"70":0.01218,"71":0.03046,"72":0.03046,"73":0.01828,"74":0.0792,"76":0.01218,"77":0.01218,"78":0.01218,"79":0.05483,"80":0.04874,"81":0.01828,"83":0.03655,"84":0.09747,"85":0.06701,"86":0.20713,"87":0.10966,"88":0.05483,"89":0.06701,"90":0.0731,"91":0.04264,"92":0.06701,"93":0.03655,"94":0.03046,"95":0.06092,"96":0.2254,"97":0.34724,"98":0.12793,"99":0.18276,"100":0.20104,"101":0.53,"102":1.82151,"103":27.72469,"104":0.03046,"105":0.03046,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 60 62 65 66 75 106 107"},F:{"36":0.0731,"60":0.01218,"62":0.01828,"68":0.00609,"69":0.01218,"70":0.01218,"71":0.00609,"72":0.00609,"73":0.01828,"74":0.01218,"75":0.00609,"77":0.02437,"78":0.01218,"79":0.0731,"80":0.01828,"81":0.01828,"82":0.03046,"83":0.04264,"84":0.08529,"85":0.49954,"86":0.1523,"87":0.42035,"88":9.39996,"89":5.2574,"90":0.04874,_:"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 67 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03046},B:{"18":0.01218,"89":0.00609,"92":0.00609,"101":0.01218,"102":0.03655,"103":1.27323,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100"},E:{"4":0,"13":0.04874,"14":0.06092,"15":0.01218,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06092,"11.1":0.00609,"12.1":0.01218,"13.1":0.08529,"14.1":0.1523,"15.1":0.03655,"15.2-15.3":0.03655,"15.4":0.11575,"15.5":0.63357,"15.6":0.02437,"16.0":0.01218},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.00297,"7.0-7.1":0.01484,"8.1-8.4":0.00059,"9.0-9.2":0.00059,"9.3":0.04452,"10.0-10.2":0.00059,"10.3":0.0273,"11.0-11.2":0.0089,"11.3-11.4":0.01306,"12.0-12.1":0.00772,"12.2-12.5":0.17509,"13.0-13.1":0.00831,"13.2":0.00831,"13.3":0.01424,"13.4-13.7":0.06885,"14.0-14.4":0.165,"14.5-14.8":0.441,"15.0-15.1":0.13592,"15.2-15.3":0.31161,"15.4":0.43506,"15.5":3.87522,"16.0":0.05995},P:{"4":0.02235,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.08942,"8.2":0.01017,"9.2":0.07666,"10.1":0.03917,"11.1-11.2":0.04471,"12.0":0.02064,"13.0":0.03353,"14.0":0.03353,"15.0":0.03353,"16.0":0.07824,"17.0":0.95008},I:{"0":0,"3":0,"4":0.00362,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00517,"4.2-4.3":0.01137,"4.4":0,"4.4.3-4.4.4":0.04236},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01218,"11":0.29242,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.13675},Q:{"10.4":0},O:{"0":0.17582},H:{"0":5.96632},L:{"0":25.71436},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00616,"49":0,"50":0,"51":0,"52":0.1355,"53":0,"54":0,"55":0.00616,"56":0.00616,"57":0,"58":0,"59":0,"60":0.01232,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.16013,"69":0,"70":0,"71":0,"72":0.00616,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05543,"79":0.01232,"80":0.00616,"81":0.04927,"82":0.01232,"83":0.00616,"84":0.01232,"85":0,"86":0,"87":0,"88":0.00616,"89":0.01232,"90":0,"91":0.05543,"92":0,"93":0.00616,"94":0.00616,"95":0.01232,"96":0.01232,"97":0.01848,"98":0.01232,"99":0.09854,"100":0.07391,"101":0.1047,"102":1.48432,"103":0.18477,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00616,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00616,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0.00616,"42":0.00616,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.12318,"50":0,"51":0.00616,"52":0,"53":0,"54":0,"55":0,"56":0.00616,"57":0.00616,"58":0,"59":0.08623,"60":0,"61":0.04927,"62":0,"63":0.01232,"64":0.00616,"65":0,"66":0,"67":0.00616,"68":0.01232,"69":0.00616,"70":0.00616,"71":0.01848,"72":0.01848,"73":0.01232,"74":0.04927,"75":0.00616,"76":0.00616,"77":0.00616,"78":0.01232,"79":0.03695,"80":0.0308,"81":0.03695,"83":0.02464,"84":0.06159,"85":0.04311,"86":0.1355,"87":0.06775,"88":0.0308,"89":0.04927,"90":0.04311,"91":0.02464,"92":0.04927,"93":0.02464,"94":0.01848,"95":0.04311,"96":0.14166,"97":0.21557,"98":0.08007,"99":0.11702,"100":0.12934,"101":0.32643,"102":1.0963,"103":17.14666,"104":0.01848,"105":0.01848,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.04311,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00616,"62":0.01232,"63":0.0308,"64":0.00616,"65":0,"66":0,"67":0.00616,"68":0.00616,"69":0.01232,"70":0.04311,"71":0.00616,"72":0.00616,"73":0.01232,"74":0.00616,"75":0.00616,"76":0,"77":0.01232,"78":0.00616,"79":0.04311,"80":0.01232,"81":0.01232,"82":0.01848,"83":0.02464,"84":0.05543,"85":0.30795,"86":0.09239,"87":0.24636,"88":5.4384,"89":3.62149,"90":0.0308,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01848},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0.00616,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.00616,"90":0,"91":0,"92":0.00616,"93":0,"94":0,"95":0,"96":0.00616,"97":0,"98":0,"99":0.00616,"100":0,"101":0.01232,"102":0.02464,"103":0.80067,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.0308,"14":0.03695,"15":0.00616,_:"0","3.1":0,"3.2":0,"5.1":0.03695,"6.1":0,"7.1":0,"9.1":0.00616,"10.1":0,"11.1":0.00616,"12.1":0.00616,"13.1":0.04927,"14.1":0.09239,"15.1":0.02464,"15.2-15.3":0.02464,"15.4":0.06775,"15.5":0.38186,"15.6":0.02464,"16.0":0.00616},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00306,"6.0-6.1":0.0051,"7.0-7.1":0.02552,"8.1-8.4":0.00102,"9.0-9.2":0.00102,"9.3":0.07655,"10.0-10.2":0.00102,"10.3":0.04695,"11.0-11.2":0.01531,"11.3-11.4":0.02246,"12.0-12.1":0.01327,"12.2-12.5":0.30112,"13.0-13.1":0.01429,"13.2":0.01429,"13.3":0.0245,"13.4-13.7":0.1184,"14.0-14.4":0.28376,"14.5-14.8":0.7584,"15.0-15.1":0.23375,"15.2-15.3":0.53588,"15.4":0.7482,"15.5":6.66436,"16.0":0.10309},P:{"4":0.0717,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09218,"8.2":0,"9.2":0.01024,"10.1":0,"11.1-11.2":0.05121,"12.0":0.01024,"13.0":0.03073,"14.0":0.04097,"15.0":0.03073,"16.0":0.0717,"17.0":0.85014,"18.0":0},I:{"0":0,"3":0,"4":0.01019,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01456,"4.2-4.3":0.03203,"4.4":0,"4.4.3-4.4.4":0.11938},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00616,"9":0,"10":0,"11":0.17861,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":39.00937},S:{"2.5":0},R:{_:"0"},M:{"0":0.13444},Q:{"10.4":0},O:{"0":0.169},H:{"0":5.90553}}; 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 9f83472a73886d9..9834d48cfd6e6a0 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:{"22":0.02464,"32":0.00274,"34":0.00548,"37":0.00274,"40":0.00274,"41":0.00274,"42":0.00548,"43":0.00821,"44":0.00274,"47":0.01095,"48":0.00548,"50":0.00548,"52":0.06024,"55":0.00274,"56":0.00548,"58":0.00274,"60":0.01369,"64":0.01643,"67":0.00548,"68":0.01095,"69":0.00548,"72":0.01917,"77":0.00548,"78":0.01643,"85":0.00274,"86":0.00274,"87":0.00274,"88":0.0219,"89":0.00821,"90":0.00274,"91":0.06024,"93":0.00548,"94":0.00274,"95":0.00821,"96":0.00548,"97":0.01095,"98":0.01095,"99":0.0219,"100":0.04107,"101":0.13964,"102":2.04529,"103":0.4107,"104":0.03012,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 33 35 36 38 39 45 46 49 51 53 54 57 59 61 62 63 65 66 70 71 73 74 75 76 79 80 81 82 83 84 92 105 3.5 3.6"},D:{"11":0.00274,"19":0.00548,"38":0.00274,"39":0.01095,"43":0.00274,"47":0.00548,"49":0.00548,"50":0.00548,"56":0.01369,"58":0.00548,"60":0.00274,"62":0.00548,"63":0.00548,"64":0.01917,"65":0.01917,"67":0.00274,"69":0.00548,"70":0.00548,"72":0.01917,"74":0.01643,"75":0.00548,"76":0.00821,"78":0.00548,"79":0.01643,"80":0.0219,"81":0.03286,"83":0.01917,"84":0.00548,"85":0.01095,"86":0.02738,"87":0.03559,"88":0.01369,"89":0.00821,"90":0.01095,"91":0.03012,"92":0.02464,"93":0.01917,"94":0.0219,"95":0.04381,"96":0.03833,"97":0.03559,"98":0.07119,"99":0.06024,"100":0.08762,"101":0.12595,"102":0.6626,"103":11.92399,"104":0.03286,"105":0.01095,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 45 46 48 51 52 53 54 55 57 59 61 66 68 71 73 77 106 107"},F:{"28":0.00548,"69":0.00548,"79":0.02738,"81":0.00548,"82":0.00821,"83":0.00274,"84":0.01369,"85":0.04381,"86":0.01369,"87":0.03833,"88":0.47367,"89":0.34225,_:"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 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.04928,"13":0.01643,"14":0.01643,"15":0.01917,"16":0.01917,"17":0.00821,"18":0.10131,"84":0.01095,"85":0.00548,"88":0.00274,"89":0.01643,"90":0.01643,"92":0.02464,"95":0.00274,"96":0.00548,"97":0.00821,"98":0.00274,"99":0.00821,"100":0.01643,"101":0.03286,"102":0.07119,"103":1.64554,_:"79 80 81 83 86 87 91 93 94"},E:{"4":0,"10":0.00548,"11":0.00548,"13":0.01369,"14":0.02464,"15":0.00274,_:"0 5 6 7 8 9 12 3.1 3.2 5.1 6.1 7.1 16.0","9.1":0.00274,"10.1":0.01643,"11.1":0.00821,"12.1":0.00821,"13.1":0.04381,"14.1":0.04107,"15.1":0.01643,"15.2-15.3":0.01095,"15.4":0.04107,"15.5":0.15059,"15.6":0.01095},G:{"8":0.0009,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0.00226,"6.0-6.1":0,"7.0-7.1":0.01445,"8.1-8.4":0.00135,"9.0-9.2":0.0009,"9.3":0.02664,"10.0-10.2":0.00226,"10.3":0.03251,"11.0-11.2":0.00497,"11.3-11.4":0.01626,"12.0-12.1":0.01806,"12.2-12.5":0.4186,"13.0-13.1":0.03883,"13.2":0.00497,"13.3":0.04561,"13.4-13.7":0.0709,"14.0-14.4":0.42267,"14.5-14.8":0.38654,"15.0-15.1":0.31384,"15.2-15.3":0.35674,"15.4":0.42628,"15.5":1.7977,"16.0":0.04064},P:{"4":0.08761,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.08761,"8.2":0.01017,"9.2":0.07666,"10.1":0.03917,"11.1-11.2":0.03285,"12.0":0.03041,"13.0":0.0219,"14.0":0.13142,"15.0":0.05476,"16.0":0.15332,"17.0":0.71185},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.00237,"4.4":0,"4.4.3-4.4.4":0.05335},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00657,"10":0.00657,"11":0.069,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.1525},Q:{"10.4":0.01452},O:{"0":0.85692},H:{"0":16.75484},L:{"0":54.54634},S:{"2.5":0.20334}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.00553,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00276,"43":0.00276,"44":0,"45":0,"46":0,"47":0.00829,"48":0,"49":0,"50":0.00276,"51":0,"52":0.01658,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.00276,"61":0,"62":0,"63":0,"64":0.00553,"65":0,"66":0,"67":0,"68":0.00276,"69":0.00276,"70":0,"71":0,"72":0.00553,"73":0,"74":0,"75":0,"76":0,"77":0.00276,"78":0.00553,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.00553,"89":0.00276,"90":0,"91":0.01658,"92":0,"93":0.00276,"94":0,"95":0.00276,"96":0.00276,"97":0.00553,"98":0.00553,"99":0.00829,"100":0.01382,"101":0.04697,"102":0.58023,"103":0.11605,"104":0.00829,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0.00276,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00276,"40":0.00276,"41":0,"42":0.00276,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00276,"50":0.00276,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00276,"57":0,"58":0.00276,"59":0,"60":0,"61":0,"62":0.00276,"63":0,"64":0.00553,"65":0.00553,"66":0,"67":0,"68":0,"69":0.00276,"70":0.00276,"71":0,"72":0.00553,"73":0,"74":0.00553,"75":0,"76":0.00276,"77":0,"78":0.00276,"79":0.00553,"80":0.00553,"81":0.01658,"83":0.00553,"84":0.00276,"85":0.00276,"86":0.00829,"87":0.01105,"88":0.00276,"89":0.00276,"90":0.00276,"91":0.01105,"92":0.01105,"93":0.00553,"94":0.00553,"95":0.01382,"96":0.01105,"97":0.01105,"98":0.01934,"99":0.01658,"100":0.02487,"101":0.03592,"102":0.18788,"103":3.30455,"104":0.00829,"105":0.00276,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00276,"25":0,"26":0,"27":0,"28":0.00276,"29":0,"30":0.00276,"31":0,"32":0.00276,"33":0,"34":0,"35":0,"36":0,"37":0.01658,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00553,"47":0.00276,"48":0,"49":0,"50":0.00276,"51":0.00829,"52":0,"53":0,"54":0.01934,"55":0.00553,"56":0.00553,"57":0.01382,"58":0.0221,"60":0.14644,"62":0.00276,"63":0.58299,"64":0.0221,"65":0,"66":0,"67":0,"68":0.00276,"69":0.00276,"70":0.00276,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00829,"80":0,"81":0.00276,"82":0.00276,"83":0,"84":0.00276,"85":0.01105,"86":0.00276,"87":0.01105,"88":0.12986,"89":0.09394,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.01934},B:{"12":0.01382,"13":0.00553,"14":0.00553,"15":0.00829,"16":0.00553,"17":0.00276,"18":0.02763,"79":0,"80":0,"81":0,"83":0,"84":0.00276,"85":0.00276,"86":0,"87":0,"88":0,"89":0.00553,"90":0.00553,"91":0,"92":0.00829,"93":0,"94":0,"95":0,"96":0.00276,"97":0.00276,"98":0,"99":0.00276,"100":0.00829,"101":0.00829,"102":0.0221,"103":0.46142,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0.00276,"11":0,"12":0,"13":0.00276,"14":0.00553,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0.00553,"11.1":0.00276,"12.1":0.00276,"13.1":0.01105,"14.1":0.01105,"15.1":0.00553,"15.2-15.3":0.00276,"15.4":0.01105,"15.5":0.04145,"15.6":0.00276,"16.0":0},G:{"8":0.00119,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0.00298,"6.0-6.1":0,"7.0-7.1":0.01906,"8.1-8.4":0.00179,"9.0-9.2":0.00119,"9.3":0.03515,"10.0-10.2":0.00298,"10.3":0.04289,"11.0-11.2":0.00655,"11.3-11.4":0.02145,"12.0-12.1":0.02383,"12.2-12.5":0.55223,"13.0-13.1":0.05123,"13.2":0.00655,"13.3":0.06017,"13.4-13.7":0.09353,"14.0-14.4":0.55759,"14.5-14.8":0.50993,"15.0-15.1":0.41402,"15.2-15.3":0.47062,"15.4":0.56236,"15.5":2.37155,"16.0":0.05361},P:{"4":0.10491,"5.0-5.4":0.02098,"6.2-6.4":0,"7.2-7.4":0.08393,"8.2":0,"9.2":0.08393,"10.1":0,"11.1-11.2":0.04196,"12.0":0,"13.0":0.03147,"14.0":0.12589,"15.0":0.05245,"16.0":0.13638,"17.0":0.67141,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00462,"4.2-4.3":0.00462,"4.4":0,"4.4.3-4.4.4":0.10392},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01934,"5.5":0},J:{"7":0,"10":0.00724},N:{"10":0,"11":0},L:{"0":62.35782},S:{"2.5":0.20264},R:{_:"0"},M:{"0":0.15198},Q:{"10.4":0.01447},O:{"0":0.85397},H:{"0":16.69716}}; 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 c08a8d228c37183..bd385f293b2d74e 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.03414,"11":0.02988,"38":0.00427,"44":0.01707,"45":0.00427,"48":0.00854,"52":0.04268,"54":0.00854,"55":0.00427,"56":0.00854,"59":0.00427,"78":0.05975,"79":0.00427,"80":0.00427,"81":0.00854,"82":0.00427,"83":0.00427,"84":0.00427,"85":0.00427,"87":0.00427,"88":0.00854,"89":0.01707,"90":0.00427,"91":0.08963,"93":0.00427,"94":0.02134,"95":0.0128,"96":0.00427,"97":0.00854,"98":0.00854,"99":0.0128,"100":0.03414,"101":0.18352,"102":2.01876,"103":0.13658,_:"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 43 46 47 49 50 51 53 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 86 92 104 105 3.5 3.6"},D:{"35":0.00854,"38":0.00427,"40":0.02561,"41":0.00427,"43":0.00427,"47":0.00427,"48":0.04268,"49":0.04695,"52":0.00854,"56":0.11097,"58":0.00427,"59":0.00427,"60":0.00427,"61":0.02988,"62":0.00854,"63":0.00854,"65":0.0128,"66":0.06402,"67":0.0128,"68":0.00427,"69":0.0128,"70":0.00854,"72":0.00854,"74":0.01707,"75":0.01707,"76":0.23474,"77":0.00854,"78":0.03841,"79":0.34144,"80":0.06829,"81":0.06402,"83":0.28596,"84":0.05122,"85":0.08963,"86":0.05975,"87":0.09816,"88":0.02561,"89":0.06402,"90":0.03414,"91":0.06402,"92":0.04268,"93":0.09816,"94":0.05548,"95":0.02988,"96":0.11097,"97":0.13231,"98":0.22194,"99":0.17499,"100":0.26035,"101":0.4268,"102":2.2407,"103":18.39935,"104":0.03414,"105":0.04268,"106":0.02561,_:"4 5 6 7 8 9 10 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 42 44 45 46 50 51 53 54 55 57 64 71 73"},F:{"85":0.00854,"86":0.00427,"87":0.03414,"88":0.46094,"89":0.13658,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 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,"15":0.00854,"17":0.00427,"18":0.01707,"85":0.00854,"87":0.02134,"92":0.00427,"96":0.00427,"97":0.00427,"98":0.00854,"99":0.01707,"100":0.02134,"101":0.11524,"102":0.24754,"103":5.54413,_:"13 14 16 79 80 81 83 84 86 88 89 90 91 93 94 95"},E:{"4":0,"8":0.00427,"9":0.00854,"12":0.00854,"13":0.05548,"14":0.23474,"15":0.07256,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02561,"10.1":0.01707,"11.1":0.04695,"12.1":0.0939,"13.1":0.76824,"14.1":0.7341,"15.1":0.12377,"15.2-15.3":0.12804,"15.4":0.47802,"15.5":3.76011,"15.6":0.11524,"16.0":0.01707},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00594,"7.0-7.1":0.00892,"8.1-8.4":0.00594,"9.0-9.2":0.01189,"9.3":0.07728,"10.0-10.2":0.00594,"10.3":0.08916,"11.0-11.2":0.02972,"11.3-11.4":0.04161,"12.0-12.1":0.03269,"12.2-12.5":0.45771,"13.0-13.1":0.02378,"13.2":0.01486,"13.3":0.06836,"13.4-13.7":0.21102,"14.0-14.4":0.68359,"14.5-14.8":1.87541,"15.0-15.1":0.47851,"15.2-15.3":0.96297,"15.4":1.58414,"15.5":22.51683,"16.0":0.10997},P:{"4":0.04245,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.02122,"13.0":0.03183,"14.0":0.04245,"15.0":0.03183,"16.0":0.15917,"17.0":2.23899},I:{"0":0,"3":0,"4":0.01337,"2.1":0,"2.2":0.00486,"2.3":0,"4.1":0.00243,"4.2-4.3":0.02797,"4.4":0,"4.4.3-4.4.4":0.03161},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02249,"9":0.08997,"11":0.22044,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},S:{"2.5":0.00573},R:{_:"0"},M:{"0":0.48149},Q:{"10.4":0.0172},O:{"0":0.09744},H:{"0":0.2442},L:{"0":25.25959}}; +module.exports={C:{"2":0,"3":0,"4":0.01316,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01316,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0.00878,"45":0,"46":0,"47":0,"48":0.00439,"49":0,"50":0,"51":0,"52":0.01755,"53":0,"54":0.00439,"55":0,"56":0.00439,"57":0,"58":0,"59":0.00439,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00439,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02633,"79":0.00439,"80":0.00439,"81":0.00439,"82":0.00439,"83":0.00439,"84":0.00439,"85":0.00439,"86":0,"87":0,"88":0.00439,"89":0.00878,"90":0.00439,"91":0.03949,"92":0,"93":0.00439,"94":0.01316,"95":0.00878,"96":0.00439,"97":0.00439,"98":0.00439,"99":0.00878,"100":0.01755,"101":0.08776,"102":0.97414,"103":0.1097,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0.00439,"36":0,"37":0,"38":0,"39":0,"40":0.01316,"41":0.00439,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.01755,"49":0.02194,"50":0,"51":0,"52":0.00439,"53":0,"54":0,"55":0,"56":0.04827,"57":0,"58":0.00439,"59":0.00439,"60":0.00439,"61":0.01316,"62":0.00439,"63":0.00439,"64":0,"65":0.00439,"66":0.03072,"67":0.00439,"68":0.00439,"69":0.00439,"70":0.00439,"71":0,"72":0.00439,"73":0,"74":0.00878,"75":0.00878,"76":0.10092,"77":0.00439,"78":0.01755,"79":0.1448,"80":0.03072,"81":0.03072,"83":0.11848,"84":0.02194,"85":0.03949,"86":0.02633,"87":0.04388,"88":0.01316,"89":0.02633,"90":0.01316,"91":0.02633,"92":0.01755,"93":0.04388,"94":0.02194,"95":0.01316,"96":0.04827,"97":0.05704,"98":0.09654,"99":0.0746,"100":0.11409,"101":0.17991,"102":0.94342,"103":8.09147,"104":0.01316,"105":0.01755,"106":0.01316,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00878,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00439,"86":0.00439,"87":0.01316,"88":0.18868,"89":0.07021,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00439,"13":0,"14":0,"15":0.00439,"16":0,"17":0.00439,"18":0.00878,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0.00439,"86":0,"87":0.00878,"88":0,"89":0,"90":0,"91":0,"92":0.00439,"93":0,"94":0,"95":0.00439,"96":0.00439,"97":0.00439,"98":0.00439,"99":0.00878,"100":0.01316,"101":0.05266,"102":0.12286,"103":2.47044,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0.00439,"10":0,"11":0,"12":0.00439,"13":0.02194,"14":0.10531,"15":0.03072,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01316,"10.1":0.00878,"11.1":0.02194,"12.1":0.03949,"13.1":0.33349,"14.1":0.32032,"15.1":0.05266,"15.2-15.3":0.05704,"15.4":0.20624,"15.5":1.63234,"15.6":0.07898,"16.0":0.00878},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00862,"7.0-7.1":0.01293,"8.1-8.4":0.00862,"9.0-9.2":0.01725,"9.3":0.1121,"10.0-10.2":0.00862,"10.3":0.12935,"11.0-11.2":0.04312,"11.3-11.4":0.06036,"12.0-12.1":0.04743,"12.2-12.5":0.66398,"13.0-13.1":0.03449,"13.2":0.02156,"13.3":0.09917,"13.4-13.7":0.30612,"14.0-14.4":0.99165,"14.5-14.8":2.72058,"15.0-15.1":0.69416,"15.2-15.3":1.39694,"15.4":2.29805,"15.5":32.66419,"16.0":0.15953},P:{"4":0.0628,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.01047,"10.1":0,"11.1-11.2":0.02093,"12.0":0.01047,"13.0":0.04187,"14.0":0.05233,"15.0":0.0314,"16.0":0.13606,"17.0":2.11418,"18.0":0},I:{"0":0,"3":0,"4":0.07766,"2.1":0,"2.2":0.02824,"2.3":0,"4.1":0.01412,"4.2-4.3":0.16237,"4.4":0,"4.4.3-4.4.4":0.18355},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00932,"9":0.04196,"10":0,"11":0.09791,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.71176},S:{"2.5":0.00561},R:{_:"0"},M:{"0":0.47141},Q:{"10.4":0.01684},O:{"0":0.0954},H:{"0":0.23909}}; 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 07476220c28158a..91115d9caf9d02b 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.01288,"52":0.09447,"57":0.02147,"60":0.00429,"61":0.02576,"62":0.00429,"65":0.00429,"66":0.01288,"68":0.01288,"71":0.00859,"73":0.04294,"78":0.02147,"83":0.01288,"84":0.00429,"86":0.01288,"88":0.02147,"89":0.00859,"90":0.03865,"91":0.09447,"95":0.00859,"96":0.00429,"97":0.00859,"98":0.00859,"99":0.03865,"100":0.03006,"101":0.08588,"102":1.48143,"103":0.19752,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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 63 64 67 69 70 72 74 75 76 77 79 80 81 82 85 87 92 93 94 104 105 3.5 3.6"},D:{"36":0.02576,"38":0.20182,"41":0.00859,"43":0.00429,"47":0.01288,"48":0.00859,"49":0.12882,"53":0.00429,"55":0.00429,"56":0.00859,"62":0.02576,"65":0.01718,"66":0.00859,"67":0.00429,"69":0.00859,"70":0.00859,"71":0.01288,"72":0.00429,"73":0.01288,"74":0.01288,"75":0.01288,"76":0.01288,"77":0.00859,"78":0.01718,"79":0.09447,"80":0.12023,"81":0.03865,"83":0.01288,"84":0.02147,"85":0.02147,"86":0.75145,"87":0.06441,"88":0.03006,"89":0.04723,"90":0.03006,"91":0.11594,"92":0.0687,"93":0.0687,"94":0.06441,"95":0.04723,"96":0.09447,"97":0.05582,"98":0.13741,"99":0.11164,"100":0.12453,"101":0.22758,"102":1.32685,"103":27.24114,"104":0.00859,"105":0.00859,_:"4 5 6 7 8 9 10 11 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 42 44 45 46 50 51 52 54 57 58 59 60 61 63 64 68 106 107"},F:{"79":0.00429,"85":0.01718,"86":0.00859,"87":0.04294,"88":2.11694,"89":0.51099,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00859,"18":0.02576,"80":0.00429,"91":0.00859,"92":0.00859,"95":0.02576,"98":0.00429,"99":0.00429,"100":0.00859,"101":0.04294,"102":0.06441,"103":2.5764,_:"12 13 15 16 17 79 81 83 84 85 86 87 88 89 90 93 94 96 97"},E:{"4":0,"13":0.00859,"14":0.03435,"15":0.01288,_:"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.00859,"12.1":0.01288,"13.1":0.08588,"14.1":0.10735,"15.1":0.06012,"15.2-15.3":0.02576,"15.4":0.09017,"15.5":0.48093,"15.6":0.02576,"16.0":0.00429},G:{"8":0,"3.2":0.00301,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01733,"6.0-6.1":0,"7.0-7.1":0.0113,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01431,"10.0-10.2":0,"10.3":0.02863,"11.0-11.2":0.00452,"11.3-11.4":0.00452,"12.0-12.1":0.00603,"12.2-12.5":0.32469,"13.0-13.1":0.00527,"13.2":0.00151,"13.3":0.01582,"13.4-13.7":0.1115,"14.0-14.4":0.21696,"14.5-14.8":0.52885,"15.0-15.1":0.07458,"15.2-15.3":0.16272,"15.4":0.42263,"15.5":5.39473,"16.0":0.03465},P:{"4":0.02098,"5.0-5.4":0.021,"6.2-6.4":0.01048,"7.2-7.4":0.24131,"8.2":0.01017,"9.2":0.03148,"10.1":0.03917,"11.1-11.2":0.04197,"12.0":0.02098,"13.0":0.05246,"14.0":0.07344,"15.0":0.08393,"16.0":0.11541,"17.0":1.26949},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00129,"4.2-4.3":0.00258,"4.4":0,"4.4.3-4.4.4":0.03036},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00429,"11":0.0687,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.31954},Q:{"10.4":0},O:{"0":0.01141},H:{"0":0.14045},L:{"0":49.21303},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00433,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.04332,"53":0,"54":0,"55":0,"56":0,"57":0.00866,"58":0,"59":0,"60":0.00433,"61":0.013,"62":0,"63":0,"64":0,"65":0,"66":0.00433,"67":0,"68":0.00866,"69":0,"70":0,"71":0.00433,"72":0,"73":0.01733,"74":0,"75":0,"76":0,"77":0,"78":0.00866,"79":0,"80":0,"81":0,"82":0,"83":0.00433,"84":0.00433,"85":0,"86":0.00433,"87":0,"88":0.00866,"89":0.00433,"90":0.03466,"91":0.04332,"92":0,"93":0,"94":0,"95":0.00433,"96":0.00433,"97":0.00433,"98":0.00433,"99":0.01733,"100":0.06498,"101":0.04332,"102":0.68012,"103":0.10397,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00866,"37":0,"38":0.08664,"39":0,"40":0,"41":0.00433,"42":0,"43":0.00433,"44":0,"45":0,"46":0,"47":0.00433,"48":0.00433,"49":0.05632,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.00433,"56":0.00433,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.013,"63":0,"64":0,"65":0.00866,"66":0.00433,"67":0,"68":0,"69":0.00433,"70":0.00433,"71":0.00433,"72":0.00433,"73":0.00433,"74":0.00433,"75":0.00433,"76":0.00433,"77":0.00433,"78":0.00866,"79":0.04332,"80":0.05198,"81":0.01733,"83":0.00433,"84":0.00866,"85":0.00866,"86":0.3249,"87":0.03032,"88":0.013,"89":0.02166,"90":0.013,"91":0.04765,"92":0.03032,"93":0.03032,"94":0.02599,"95":0.02166,"96":0.03899,"97":0.02166,"98":0.06498,"99":0.05198,"100":0.05632,"101":0.09964,"102":0.58482,"103":11.83502,"104":0.00433,"105":0.00433,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00433,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00866,"86":0.00433,"87":0.01733,"88":0.91838,"89":0.22093,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00433,"15":0,"16":0,"17":0,"18":0.00866,"79":0,"80":0.00433,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00433,"92":0.00433,"93":0,"94":0,"95":0.013,"96":0,"97":0,"98":0.00433,"99":0,"100":0.00433,"101":0.01733,"102":0.03032,"103":1.12632,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00433,"14":0.013,"15":0.00433,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00433,"12.1":0.00433,"13.1":0.03466,"14.1":0.04765,"15.1":0.02599,"15.2-15.3":0.013,"15.4":0.03899,"15.5":0.20794,"15.6":0.013,"16.0":0},G:{"8":0,"3.2":0.00452,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02596,"6.0-6.1":0,"7.0-7.1":0.01693,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02145,"10.0-10.2":0,"10.3":0.0429,"11.0-11.2":0.00677,"11.3-11.4":0.00677,"12.0-12.1":0.00903,"12.2-12.5":0.48655,"13.0-13.1":0.0079,"13.2":0.00226,"13.3":0.02371,"13.4-13.7":0.16708,"14.0-14.4":0.32512,"14.5-14.8":0.79248,"15.0-15.1":0.11176,"15.2-15.3":0.24384,"15.4":0.63331,"15.5":8.08398,"16.0":0.05193},P:{"4":0.04146,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.23842,"8.2":0,"9.2":0.0311,"10.1":0,"11.1-11.2":0.05183,"12.0":0.02073,"13.0":0.05183,"14.0":0.07256,"15.0":0.08293,"16.0":0.11403,"17.0":1.23356,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00897,"4.2-4.3":0.01793,"4.4":0,"4.4.3-4.4.4":0.21071},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00433,"10":0,"11":0.03032,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":67.26067},S:{"2.5":0},R:{_:"0"},M:{"0":0.31741},Q:{"10.4":0},O:{"0":0.01134},H:{"0":0.13952}}; 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 dc07f933f4dfa77..ebaf313934b471f 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:{"7":0.00711,"30":0.00711,"48":0.00711,"52":0.06758,"66":0.00711,"68":0.01067,"78":0.00711,"80":0.00356,"91":0.03557,"94":0.00356,"96":0.00711,"97":0.00711,"98":0.00711,"99":0.00711,"100":0.00711,"101":0.03557,"102":0.79321,"103":0.11382,"104":0.00711,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 72 73 74 75 76 77 79 81 82 83 84 85 86 87 88 89 90 92 93 95 105 3.5 3.6"},D:{"34":0.01423,"49":0.04624,"55":0.00356,"56":0.01067,"61":0.01779,"62":0.01067,"64":0.01067,"66":0.03913,"67":0.00711,"71":0.00711,"72":0.00356,"74":0.08893,"76":0.00356,"79":0.0498,"80":0.02846,"81":0.00711,"83":0.0249,"84":0.0747,"85":0.04268,"86":0.0747,"87":0.03913,"88":0.01067,"89":0.0747,"90":0.01067,"91":0.0498,"92":0.01423,"93":0.01423,"94":0.00711,"95":0.01067,"96":0.0747,"97":0.0498,"98":0.08893,"99":0.03557,"100":0.08181,"101":0.49798,"102":0.86791,"103":21.9787,"104":0.01067,"105":0.03557,_:"4 5 6 7 8 9 10 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 57 58 59 60 63 65 68 69 70 73 75 77 78 106 107"},F:{"28":0.03557,"40":0.01423,"53":0.03913,"54":0.00711,"55":0.00711,"56":0.00356,"57":0.01423,"58":0.01423,"60":0.01067,"62":0.00711,"63":0.00711,"64":0.02134,"65":0.01067,"66":0.00356,"67":0.00711,"68":0.01067,"70":0.00356,"72":0.00711,"73":0.01423,"74":0.01423,"75":0.01067,"76":0.00711,"77":0.01423,"78":0.01067,"79":0.03557,"80":0.02134,"81":0.03913,"82":0.03201,"83":0.01067,"84":0.02134,"85":0.01779,"86":0.03201,"87":0.0249,"88":0.07114,"89":0.04268,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 69 71 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00711},B:{"15":0.00711,"16":0.00356,"17":0.00356,"18":0.08181,"83":0.00711,"84":0.01779,"87":0.01423,"88":0.00711,"90":0.00356,"92":0.02846,"96":0.00356,"97":0.00711,"99":0.00711,"100":0.01423,"101":0.02846,"102":0.03557,"103":1.50817,_:"12 13 14 79 80 81 85 86 89 91 93 94 95 98"},E:{"4":0,"13":0.00711,"14":0.01423,"15":0.01067,_:"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.98173,"12.1":0.00711,"13.1":0.01779,"14.1":0.04268,"15.1":0.03913,"15.2-15.3":0.0249,"15.4":0.0996,"15.5":0.36281,"15.6":0.02846,"16.0":0.01067},G:{"8":0.00069,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00138,"6.0-6.1":0,"7.0-7.1":0.0324,"8.1-8.4":0.00276,"9.0-9.2":0.00552,"9.3":0.04895,"10.0-10.2":0.00138,"10.3":0.05309,"11.0-11.2":0.02275,"11.3-11.4":0.01241,"12.0-12.1":0.01172,"12.2-12.5":0.50742,"13.0-13.1":0.01103,"13.2":0.00483,"13.3":0.02068,"13.4-13.7":0.07239,"14.0-14.4":0.28956,"14.5-14.8":0.56671,"15.0-15.1":0.1958,"15.2-15.3":0.42331,"15.4":0.55361,"15.5":3.7939,"16.0":0.08135},P:{"4":0.85349,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.62996,"8.2":0.01017,"9.2":0.06096,"10.1":0.02032,"11.1-11.2":0.18289,"12.0":0.0508,"13.0":0.21337,"14.0":0.27434,"15.0":0.16257,"16.0":0.52835,"17.0":2.34709},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00899,"4.2-4.3":0.00956,"4.4":0,"4.4.3-4.4.4":0.06521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21342,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.05799},Q:{"10.4":0},O:{"0":4.45211},H:{"0":0.28669},L:{"0":47.64991},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.00359,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00359,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00359,"49":0,"50":0,"51":0,"52":0.0251,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00359,"67":0,"68":0.00359,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00359,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01434,"92":0.00359,"93":0,"94":0.00359,"95":0,"96":0.00359,"97":0.00359,"98":0.00359,"99":0.00359,"100":0.00359,"101":0.01434,"102":0.29397,"103":0.03944,"104":0.00359,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00359,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00359,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.01793,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00359,"57":0,"58":0,"59":0,"60":0,"61":0.00717,"62":0.00359,"63":0,"64":0.00359,"65":0,"66":0.01434,"67":0.00359,"68":0,"69":0,"70":0,"71":0.00359,"72":0,"73":0,"74":0.03227,"75":0,"76":0,"77":0,"78":0,"79":0.01793,"80":0.01076,"81":0.01434,"83":0.01076,"84":0.0251,"85":0.01434,"86":0.02868,"87":0.01434,"88":0.00359,"89":0.02868,"90":0.00359,"91":0.01793,"92":0.00717,"93":0.00359,"94":0.00359,"95":0.00717,"96":0.02868,"97":0.01793,"98":0.03227,"99":0.01434,"100":0.02868,"101":0.17925,"102":0.3119,"103":7.89417,"104":0.00359,"105":0.01434,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.01076,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00717,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.01434,"54":0.00359,"55":0.00359,"56":0.00359,"57":0.00717,"58":0.00359,"60":0.00359,"62":0.00359,"63":0.00359,"64":0.00717,"65":0.00359,"66":0,"67":0.00359,"68":0.00359,"69":0,"70":0.00359,"71":0,"72":0.00359,"73":0.00359,"74":0.00717,"75":0.00359,"76":0.00359,"77":0.00359,"78":0.00359,"79":0.01434,"80":0.00717,"81":0.01434,"82":0.01076,"83":0.00359,"84":0.00717,"85":0.00717,"86":0.01076,"87":0.00717,"88":0.0251,"89":0.01434,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00359},B:{"12":0,"13":0,"14":0,"15":0.00359,"16":0,"17":0,"18":0.02868,"79":0,"80":0,"81":0,"83":0.00359,"84":0.00717,"85":0,"86":0,"87":0.00359,"88":0.00359,"89":0,"90":0,"91":0,"92":0.01076,"93":0,"94":0,"95":0,"96":0,"97":0.00359,"98":0,"99":0.00359,"100":0.00359,"101":0.01076,"102":0.01434,"103":0.55568,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00359,"14":0.00359,"15":0.00359,_:"0","3.1":0,"3.2":0,"5.1":0.36209,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00359,"13.1":0.00717,"14.1":0.01434,"15.1":0.01434,"15.2-15.3":0.00717,"15.4":0.03585,"15.5":0.12906,"15.6":0.01076,"16.0":0.00359},G:{"8":0.00097,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00194,"6.0-6.1":0,"7.0-7.1":0.04548,"8.1-8.4":0.00387,"9.0-9.2":0.00774,"9.3":0.06871,"10.0-10.2":0.00194,"10.3":0.07451,"11.0-11.2":0.03193,"11.3-11.4":0.01742,"12.0-12.1":0.01645,"12.2-12.5":0.71222,"13.0-13.1":0.01548,"13.2":0.00677,"13.3":0.02903,"13.4-13.7":0.10161,"14.0-14.4":0.40643,"14.5-14.8":0.79544,"15.0-15.1":0.27482,"15.2-15.3":0.59416,"15.4":0.77706,"15.5":5.3252,"16.0":0.11419},P:{"4":0.85514,"5.0-5.4":0.03018,"6.2-6.4":0.12073,"7.2-7.4":0.61369,"8.2":0.01006,"9.2":0.07042,"10.1":0.02012,"11.1-11.2":0.19115,"12.0":0.06036,"13.0":0.21127,"14.0":0.27163,"15.0":0.16097,"16.0":0.52314,"17.0":2.30384,"18.0":0.01006},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01627,"4.2-4.3":0.01729,"4.4":0,"4.4.3-4.4.4":0.11795},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.07887,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.48769},S:{"2.5":0},R:{_:"0"},M:{"0":0.05774},Q:{"10.4":0},O:{"0":4.43277},H:{"0":0.28545}}; 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 1410d6c0880f300..a35ae88ebb61dfe 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:{"70":0.01925,"79":0.02887,"91":0.08661,"96":0.01925,"101":0.25982,"102":8.05445,"103":0.57738,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 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 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 98 99 100 104 105 3.5 3.6"},D:{"67":0.26944,"75":0.06736,"93":0.67361,"95":0.34643,"98":0.01925,"100":0.00962,"101":0.01925,"102":1.39534,"103":61.48135,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 94 96 97 99 104 105 106"},F:{"87":0.00962,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"17":0.07698,"18":6.42816,"102":0.03849,"103":13.18351,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101"},E:{"4":0,"15":0.25982,_:"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 15.6 16.0","12.1":0.01925,"13.1":0.04812,"14.1":0.22133,"15.1":0.01925,"15.2-15.3":0.09623,"15.4":0.09623,"15.5":1.65516},G:{"8":0,"3.2":0,"4.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.00415,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.45634,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.01245,"14.5-14.8":0,"15.0-15.1":0.00415,"15.2-15.3":0.02076,"15.4":0.0083,"15.5":0.90038,"16.0":0},P:{"4":0.3548,"5.0-5.4":0.17233,"6.2-6.4":0.05069,"7.2-7.4":0.39534,"8.2":0.05069,"9.2":0.26356,"10.1":0.07368,"11.1-11.2":0.44603,"12.0":0.02027,"13.0":0.23315,"14.0":0.14192,"15.0":0.06082,"16.0":0.28384,"17.0":0.33226},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.27907,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.01861},L:{"0":2.17589}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00977,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.01954,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02931,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.07815,"92":0,"93":0,"94":0,"95":0,"96":0.01954,"97":0.00977,"98":0,"99":0,"100":0,"101":0.25399,"102":7.86405,"103":0.5666,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0.25399,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0.06838,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0.65452,"94":0,"95":0.34192,"96":0,"97":0,"98":0.01954,"99":0,"100":0.00977,"101":0.01954,"102":1.36766,"103":60.09889,"104":0.00977,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00977,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00977,"16":0,"17":0.07815,"18":6.28147,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.03908,"103":12.87554,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.25399,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00977,"12.1":0.01954,"13.1":0.04885,"14.1":0.21492,"15.1":0.01954,"15.2-15.3":0.08792,"15.4":0.08792,"15.5":1.61189,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.00839,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.92229,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.02517,"14.5-14.8":0,"15.0-15.1":0.00839,"15.2-15.3":0.04195,"15.4":0.01678,"15.5":1.81969,"16.0":0},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0.20305,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.27353,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":2.83774},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.01137}}; 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 7f69cf984fa7958..4dbbe018f930dc9 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:{"52":0.00357,"80":0.0107,"84":0.00713,"99":0.0107,"100":0.00357,"101":0.23179,"102":1.34795,"103":0.09628,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 104 105 3.5 3.6"},D:{"29":0.00713,"42":0.00357,"49":0.01426,"50":0.00713,"67":0.12838,"68":0.00713,"74":0.01426,"75":0.01426,"76":0.10698,"79":0.1676,"80":0.04992,"81":0.00357,"83":0.23892,"87":0.00357,"91":0.02853,"92":0.0107,"93":0.1997,"95":0.03923,"96":0.00713,"97":0.00713,"98":0.0107,"99":0.03209,"100":0.14621,"101":0.13194,"102":1.07693,"103":15.57629,"104":0.00713,"105":0.02496,_:"4 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 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 72 73 77 78 84 85 86 88 89 90 94 106"},F:{"28":0.00357,"87":0.04636,"88":0.9022,"89":0.20683,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"16":0.0107,"18":0.00713,"92":0.00713,"97":0.01783,"98":0.00713,"99":0.01783,"100":0.00713,"101":0.02496,"102":0.38513,"103":5.96592,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96"},E:{"4":0,"13":0.01426,"14":0.05349,"15":0.01783,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00713,"12.1":0.00713,"13.1":0.12481,"14.1":0.13907,"15.1":0.00713,"15.2-15.3":0.03923,"15.4":0.38156,"15.5":0.88437,"15.6":0.10698},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.47274,"8.1-8.4":0.03561,"9.0-9.2":0,"9.3":0.10416,"10.0-10.2":0,"10.3":0.0828,"11.0-11.2":0.0089,"11.3-11.4":0.00534,"12.0-12.1":0.00445,"12.2-12.5":0.80749,"13.0-13.1":0.05253,"13.2":0.00178,"13.3":0.01692,"13.4-13.7":0.01424,"14.0-14.4":0.06588,"14.5-14.8":0.19408,"15.0-15.1":0.51191,"15.2-15.3":0.15046,"15.4":0.20655,"15.5":6.06373,"16.0":0.03294},P:{"4":0.82418,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.16935,"8.2":0.01034,"9.2":0.01129,"10.1":0.02088,"11.1-11.2":0.03387,"12.0":0.02258,"13.0":0.24838,"14.0":0.10161,"15.0":0.06774,"16.0":0.18064,"17.0":5.06927},I:{"0":0,"3":0,"4":0.00269,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00449,"4.2-4.3":0.00718,"4.4":0,"4.4.3-4.4.4":0.06283},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04636,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0},R:{_:"0"},M:{"0":0.05146},Q:{"10.4":0},O:{"0":0.09006},H:{"0":0.52377},L:{"0":53.84477}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0.00426,"81":0,"82":0,"83":0,"84":0.00426,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00426,"100":0,"101":0.10217,"102":0.58747,"103":0.04257,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0.00426,"30":0,"31":0,"32":0,"33":0,"34":0.00426,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.00426,"41":0,"42":0.00426,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00426,"50":0.00426,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0.00426,"65":0,"66":0,"67":0.05534,"68":0.00426,"69":0,"70":0.02554,"71":0,"72":0,"73":0,"74":0.00426,"75":0.00426,"76":0.04683,"77":0,"78":0,"79":0.07237,"80":0.02129,"81":0.00426,"83":0.10217,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01277,"92":0.00426,"93":0.08514,"94":0.01277,"95":0.05534,"96":0.00426,"97":0.00426,"98":0.00426,"99":0.01277,"100":0.06386,"101":0.0596,"102":0.46401,"103":6.67072,"104":0.00426,"105":0.00851,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00426,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00426,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.02129,"88":0.38313,"89":0.0894,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00426,"16":0.00426,"17":0,"18":0.00426,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00426,"93":0,"94":0,"95":0,"96":0,"97":0.00851,"98":0.00426,"99":0.00851,"100":0.00426,"101":0.00851,"102":0.16602,"103":2.54569,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00426,"14":0.02129,"15":0.00851,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00426,"12.1":0.00426,"13.1":0.05534,"14.1":0.0596,"15.1":0.00426,"15.2-15.3":0.01703,"15.4":0.16177,"15.5":0.37887,"15.6":0.04683,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.67244,"8.1-8.4":0.05065,"9.0-9.2":0,"9.3":0.14816,"10.0-10.2":0,"10.3":0.11777,"11.0-11.2":0.01266,"11.3-11.4":0.0076,"12.0-12.1":0.00633,"12.2-12.5":1.14859,"13.0-13.1":0.07472,"13.2":0.00253,"13.3":0.02406,"13.4-13.7":0.02026,"14.0-14.4":0.09371,"14.5-14.8":0.27607,"15.0-15.1":0.72816,"15.2-15.3":0.21402,"15.4":0.2938,"15.5":8.62519,"16.0":0.04686},P:{"4":0.75239,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.15526,"8.2":0,"9.2":0.02389,"10.1":0,"11.1-11.2":0.02389,"12.0":0.02389,"13.0":0.22691,"14.0":0.09554,"15.0":0.05971,"16.0":0.15526,"17.0":4.49046,"18.0":0},I:{"0":0,"3":0,"4":0.04562,"2.1":0,"2.2":0,"2.3":0,"4.1":0.07603,"4.2-4.3":0.12165,"4.4":0,"4.4.3-4.4.4":1.06441},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02129,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":64.02477},S:{"2.5":0},R:{_:"0"},M:{"0":0.04594},Q:{"10.4":0},O:{"0":0.0804},H:{"0":0.46759}}; 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 326914412398170..427f36dd97d314d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js @@ -1 +1 @@ -module.exports={C:{"8":0.00572,"27":0.26294,"38":0.00572,"43":0.01143,"45":0.01715,"47":0.01715,"48":0.00572,"52":0.48014,"55":0.01143,"57":0.01143,"60":0.02286,"62":0.01143,"63":0.01143,"64":0.01143,"65":0.01143,"66":0.01143,"67":0.01715,"68":0.02286,"69":0.01715,"70":0.00572,"72":0.02286,"78":0.04573,"79":0.01143,"84":0.01143,"88":0.0343,"89":0.01143,"90":0.01715,"91":0.09717,"92":0.00572,"93":0.02286,"94":0.01143,"95":0.01143,"96":0.01715,"97":0.01715,"98":0.01143,"99":0.1429,"100":0.05716,"101":0.14862,"102":2.92659,"103":0.3944,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 49 50 51 53 54 56 58 59 61 71 73 74 75 76 77 80 81 82 83 85 86 87 104 105 3.5 3.6"},D:{"22":0.01715,"42":0.00572,"47":0.01143,"49":0.38869,"51":0.02858,"55":0.01143,"56":0.01715,"58":0.01143,"63":0.01715,"64":0.01143,"65":0.01143,"66":0.01143,"67":0.01143,"68":0.01715,"69":0.02858,"70":0.02858,"71":0.01715,"72":0.01143,"73":0.01715,"74":0.02286,"75":0.06288,"76":0.06859,"77":0.02286,"78":0.01715,"79":0.07431,"80":0.02286,"81":0.02286,"83":0.04573,"84":0.0343,"85":0.0343,"86":0.05716,"87":0.09146,"88":0.09717,"89":0.06859,"90":0.08002,"91":0.11432,"92":0.10289,"93":0.10289,"94":0.05716,"95":0.05716,"96":0.23436,"97":0.35439,"98":0.20578,"99":0.20006,"100":0.35439,"101":0.41155,"102":1.70908,"103":32.14678,"104":0.01143,"105":0.02286,_:"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 43 44 45 46 48 50 52 53 54 57 59 60 61 62 106 107"},F:{"57":0.00572,"79":0.01143,"81":0.01143,"82":0.01143,"83":0.00572,"84":0.01715,"85":0.08574,"86":0.01715,"87":0.05716,"88":1.49188,"89":0.56017,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01143,"18":0.01143,"84":0.00572,"90":0.00572,"92":0.01143,"99":0.01715,"101":0.02286,"102":0.0343,"103":2.18351,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 100"},E:{"4":0,"14":0.02286,"15":0.00572,_:"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 15.2-15.3 16.0","12.1":0.00572,"13.1":0.02858,"14.1":0.06288,"15.1":0.01143,"15.4":0.02858,"15.5":0.14862,"15.6":0.01143},G:{"8":0.00098,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00245,"6.0-6.1":0.00147,"7.0-7.1":0.01227,"8.1-8.4":0,"9.0-9.2":0.00245,"9.3":0.05767,"10.0-10.2":0.00123,"10.3":0.06062,"11.0-11.2":0.00393,"11.3-11.4":0.00344,"12.0-12.1":0.00417,"12.2-12.5":0.18528,"13.0-13.1":0.01325,"13.2":0.00319,"13.3":0.01153,"13.4-13.7":0.03558,"14.0-14.4":0.0746,"14.5-14.8":0.15731,"15.0-15.1":0.04196,"15.2-15.3":0.08,"15.4":0.11411,"15.5":1.52055,"16.0":0.01153},P:{"4":0.06516,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.08688,"8.2":0.01017,"9.2":0.02172,"10.1":0.02032,"11.1-11.2":0.07602,"12.0":0.01086,"13.0":0.02172,"14.0":0.02172,"15.0":0.02172,"16.0":0.09774,"17.0":0.83624},I:{"0":0,"3":0,"4":0.0006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00223,"4.2-4.3":0.00386,"4.4":0,"4.4.3-4.4.4":0.03615},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06288,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00857},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.20997},Q:{"10.4":0},O:{"0":0.03428},H:{"0":0.38945},L:{"0":46.88057},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0.00585,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.00585,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0.152,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00585,"39":0,"40":0,"41":0,"42":0,"43":0.00585,"44":0,"45":0.01169,"46":0,"47":0.01169,"48":0.00585,"49":0,"50":0,"51":0,"52":0.28061,"53":0,"54":0,"55":0.00585,"56":0.00585,"57":0.00585,"58":0,"59":0,"60":0.01169,"61":0.01169,"62":0.00585,"63":0.00585,"64":0.00585,"65":0.00585,"66":0.00585,"67":0.01169,"68":0.03508,"69":0.01169,"70":0.00585,"71":0,"72":0.01169,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.02338,"79":0.00585,"80":0,"81":0,"82":0,"83":0,"84":0.00585,"85":0,"86":0,"87":0.00585,"88":0.01754,"89":0.00585,"90":0.01169,"91":0.05846,"92":0.00585,"93":0.01169,"94":0.01754,"95":0.00585,"96":0.01169,"97":0.01169,"98":0.00585,"99":0.08184,"100":0.03508,"101":0.09354,"102":1.77718,"103":0.23969,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0.01169,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0.00585,"43":0,"44":0,"45":0,"46":0,"47":0.00585,"48":0,"49":0.22799,"50":0,"51":0.01754,"52":0,"53":0,"54":0,"55":0.00585,"56":0.01169,"57":0,"58":0.00585,"59":0,"60":0.00585,"61":0,"62":0,"63":0.01169,"64":0.01169,"65":0.00585,"66":0.00585,"67":0.00585,"68":0.01169,"69":0.01754,"70":0.01754,"71":0.01169,"72":0.00585,"73":0.01169,"74":0.01169,"75":0.03508,"76":0.04092,"77":0.01754,"78":0.01169,"79":0.04677,"80":0.01754,"81":0.01754,"83":0.02338,"84":0.01754,"85":0.01754,"86":0.03508,"87":0.05261,"88":0.05846,"89":0.04092,"90":0.04677,"91":0.06431,"92":0.06431,"93":0.05846,"94":0.03508,"95":0.03508,"96":0.1403,"97":0.21046,"98":0.12277,"99":0.11692,"100":0.20461,"101":0.23969,"102":1.00551,"103":18.82412,"104":0.00585,"105":0.01169,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00585,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00585,"54":0,"55":0,"56":0,"57":0.00585,"58":0,"60":0,"62":0,"63":0.04092,"64":0,"65":0,"66":0,"67":0,"68":0.01754,"69":0,"70":0.00585,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00585,"80":0,"81":0.00585,"82":0.00585,"83":0.00585,"84":0.01169,"85":0.04677,"86":0.01169,"87":0.03508,"88":0.87105,"89":0.32738,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00585,"13":0,"14":0,"15":0.00585,"16":0,"17":0,"18":0.00585,"79":0,"80":0,"81":0,"83":0,"84":0.00585,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0.00585,"91":0,"92":0.00585,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00585,"99":0.01169,"100":0.00585,"101":0.01754,"102":0.02338,"103":1.28612,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00585,"14":0.01169,"15":0.00585,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00585,"12.1":0.00585,"13.1":0.01754,"14.1":0.03508,"15.1":0.00585,"15.2-15.3":0.00585,"15.4":0.01754,"15.5":0.08769,"15.6":0.00585,"16.0":0},G:{"8":0.00162,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00405,"6.0-6.1":0.00243,"7.0-7.1":0.02024,"8.1-8.4":0,"9.0-9.2":0.00405,"9.3":0.09511,"10.0-10.2":0.00202,"10.3":0.09996,"11.0-11.2":0.00648,"11.3-11.4":0.00567,"12.0-12.1":0.00688,"12.2-12.5":0.30556,"13.0-13.1":0.02185,"13.2":0.00526,"13.3":0.01902,"13.4-13.7":0.05868,"14.0-14.4":0.12303,"14.5-14.8":0.25942,"15.0-15.1":0.06921,"15.2-15.3":0.13194,"15.4":0.18819,"15.5":2.5076,"16.0":0.01902},P:{"4":0.0916,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07124,"8.2":0,"9.2":0.02035,"10.1":0.01018,"11.1-11.2":0.07124,"12.0":0.02035,"13.0":0.03053,"14.0":0.03053,"15.0":0.02035,"16.0":0.0916,"17.0":0.7633,"18.0":0},I:{"0":0,"3":0,"4":0.0096,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03567,"4.2-4.3":0.06174,"4.4":0,"4.4.3-4.4.4":0.57759},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0.00585,"10":0,"11":0.03508,"5.5":0},J:{"7":0,"10":0.00831},N:{"10":0,"11":0},L:{"0":63.45313},S:{"2.5":0.00415},R:{_:"0"},M:{"0":0.20355},Q:{"10.4":0},O:{"0":0.03323},H:{"0":0.37754}}; 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 d0266c93db8441b..419dde2c2688dfe 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:{"78":0.22159,"91":0.10365,"101":0.01787,"102":0.75411,"103":0.04289,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 104 105 3.5 3.6"},D:{"49":0.0143,"65":0.00715,"76":0.35383,"77":0.08578,"79":0.01072,"80":0.0143,"86":0.01787,"87":0.01072,"90":0.01787,"93":0.01072,"94":0.00715,"98":0.02144,"99":0.0143,"100":0.11794,"101":0.07505,"102":2.78772,"103":15.16448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 78 81 83 84 85 88 89 91 92 95 96 97 104 105 106"},F:{"85":0.00715,"87":0.01787,"88":0.24303,"89":0.10007,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00715,"100":0.00715,"101":0.05004,"102":0.33596,"103":3.99931,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99"},E:{"4":0,"13":0.0143,"14":0.09292,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0","12.1":0.07148,"13.1":0.31094,"14.1":0.48606,"15.1":0.44318,"15.2-15.3":0.03574,"15.4":1.36169,"15.5":6.01862,"15.6":0.3431},G:{"8":0,"3.2":0,"4.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.02621,"10.0-10.2":0,"10.3":0.02995,"11.0-11.2":0,"11.3-11.4":0.01123,"12.0-12.1":0,"12.2-12.5":0.41182,"13.0-13.1":0,"13.2":0,"13.3":0.00749,"13.4-13.7":0.23586,"14.0-14.4":0.28079,"14.5-14.8":1.52375,"15.0-15.1":0.82365,"15.2-15.3":0.89852,"15.4":3.66523,"15.5":28.4982,"16.0":0.38187},P:{"4":0.10318,"5.0-5.4":0.0104,"6.2-6.4":0.02051,"7.2-7.4":0.17668,"8.2":0.07179,"9.2":0.01032,"10.1":0.02051,"11.1-11.2":0.25982,"12.0":0.04157,"13.0":0.13511,"14.0":0.40533,"15.0":0.03096,"16.0":0.06236,"17.0":2.69178},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.0822,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02513,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.14139},Q:{"10.4":0},O:{"0":0.00643},H:{"0":0.03042},L:{"0":24.57649}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.08301,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.03773,"92":0,"93":0,"94":0,"95":0.00377,"96":0,"97":0,"98":0,"99":0,"100":0.00377,"101":0.00755,"102":0.32825,"103":0.01509,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00377,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00377,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0.13206,"77":0.03396,"78":0,"79":0.01887,"80":0.00377,"81":0,"83":0,"84":0,"85":0,"86":0.00755,"87":0.00377,"88":0,"89":0,"90":0.00755,"91":0,"92":0,"93":0.00377,"94":0.00377,"95":0,"96":0,"97":0,"98":0.00755,"99":0.00377,"100":0.04528,"101":0.02641,"102":1.05267,"103":5.72364,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00377,"86":0,"87":0.00755,"88":0.09055,"89":0.03773,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00377,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00377,"101":0.01887,"102":0.13583,"103":1.51675,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00377,"14":0.03396,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02641,"13.1":0.11696,"14.1":0.1811,"15.1":0.16601,"15.2-15.3":0.01509,"15.4":0.51313,"15.5":2.27135,"15.6":0.12828,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03542,"10.0-10.2":0,"10.3":0.04048,"11.0-11.2":0,"11.3-11.4":0.01518,"12.0-12.1":0,"12.2-12.5":0.55657,"13.0-13.1":0,"13.2":0,"13.3":0.01012,"13.4-13.7":0.31876,"14.0-14.4":0.37948,"14.5-14.8":2.05929,"15.0-15.1":1.11313,"15.2-15.3":1.21433,"15.4":4.95344,"15.5":38.51436,"16.0":0.51609},P:{"4":0.01053,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.16854,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.25281,"12.0":0.04214,"13.0":0.12641,"14.0":0.40029,"15.0":0.01053,"16.0":0.0632,"17.0":2.5808,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.37598},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03018,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":31.54851},S:{"2.5":0},R:{_:"0"},M:{"0":0.13699},Q:{"10.4":0},O:{"0":0.00623},H:{"0":0.02948}}; 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 295973c24159835..f596ac1858e6650 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:{"34":0.01316,"52":0.14038,"72":0.00439,"78":0.03948,"91":0.00439,"94":0.12284,"95":0.01316,"97":0.00439,"100":0.01316,"101":0.10968,"102":2.16279,"103":0.25445,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 96 98 99 104 105 3.5 3.6"},D:{"53":0.00877,"68":0.01755,"70":0.00439,"72":0.03071,"75":0.01316,"76":0.14038,"79":0.07019,"80":0.01316,"83":0.0351,"84":0.00877,"85":0.01316,"87":0.05264,"88":0.01755,"89":0.02194,"91":0.01316,"92":0.19303,"93":0.08774,"94":0.00877,"95":0.01755,"96":0.02632,"97":0.01316,"98":0.07019,"99":0.11845,"100":0.05703,"101":0.18425,"102":1.71532,"103":18.39469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 71 73 74 77 78 81 86 90 104 105 106 107"},F:{"86":0.00877,"87":0.00439,"88":0.32903,"89":0.13161,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.00877,"17":0.02194,"18":0.00439,"84":0.00877,"85":0.00877,"87":0.01316,"89":0.01316,"92":0.00877,"96":0.00439,"98":0.01316,"99":0.03948,"101":0.07458,"102":0.41238,"103":8.29582,_:"12 13 15 16 79 80 81 83 86 88 90 91 93 94 95 97 100"},E:{"4":0,"13":0.00439,"14":0.2369,"15":0.08774,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.02194,"10.1":0.00439,"11.1":0.01755,"12.1":0.04826,"13.1":0.39044,"14.1":1.00901,"15.1":0.40799,"15.2-15.3":0.136,"15.4":0.67121,"15.5":4.20275,"15.6":0.15355,"16.0":0.04826},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00615,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00923,"10.0-10.2":0,"10.3":0.09229,"11.0-11.2":0.00308,"11.3-11.4":0.09229,"12.0-12.1":0.00308,"12.2-12.5":0.72295,"13.0-13.1":0,"13.2":0,"13.3":0.01846,"13.4-13.7":0.09229,"14.0-14.4":0.36301,"14.5-14.8":3.0856,"15.0-15.1":0.20919,"15.2-15.3":0.77832,"15.4":1.43051,"15.5":23.36197,"16.0":0.09229},P:{"4":0.07333,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.02095,"8.2":0.01017,"9.2":0.23047,"10.1":0.02032,"11.1-11.2":0.08159,"12.0":0.0204,"13.0":0.10476,"14.0":0.13618,"15.0":0.03143,"16.0":0.23047,"17.0":3.40462},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.01684},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17987,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.62866},Q:{"10.4":0},O:{"0":0.28626},H:{"0":0.18068},L:{"0":22.11089},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00462,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.06465,"53":0,"54":0,"55":0.00462,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00462,"69":0,"70":0,"71":0,"72":0.00462,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.01847,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.01385,"90":0,"91":0.00462,"92":0,"93":0,"94":0.05542,"95":0.00462,"96":0,"97":0.00462,"98":0,"99":0,"100":0.00462,"101":0.0508,"102":1.21915,"103":0.12469,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0.00462,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00924,"69":0,"70":0,"71":0,"72":0.01385,"73":0,"74":0,"75":0.00924,"76":0.06465,"77":0,"78":0,"79":0.03233,"80":0.00462,"81":0,"83":0.01385,"84":0.00462,"85":0.00462,"86":0,"87":0.02309,"88":0.00924,"89":0.00924,"90":0,"91":0.00462,"92":0.08774,"93":0.04156,"94":0.00462,"95":0.06003,"96":0.01385,"97":0.00462,"98":0.03233,"99":0.05542,"100":0.02771,"101":0.08774,"102":0.7943,"103":8.5433,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00462,"87":0.00462,"88":0.15239,"89":0.06003,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.00462,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00462,"15":0,"16":0,"17":0.00924,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00462,"85":0.00462,"86":0,"87":0.00462,"88":0,"89":0.00462,"90":0,"91":0,"92":0.00462,"93":0,"94":0,"95":0.00462,"96":0.00462,"97":0,"98":0.00462,"99":0.01847,"100":0,"101":0.03233,"102":0.19396,"103":3.83756,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.11083,"15":0.04156,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.00924,"10.1":0.00462,"11.1":0.00924,"12.1":0.02309,"13.1":0.1801,"14.1":0.46642,"15.1":0.18934,"15.2-15.3":0.06465,"15.4":0.30941,"15.5":1.93956,"15.6":0.07389,"16.0":0.02309},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00894,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0134,"10.0-10.2":0,"10.3":0.13403,"11.0-11.2":0.00447,"11.3-11.4":0.13403,"12.0-12.1":0.00447,"12.2-12.5":1.04992,"13.0-13.1":0,"13.2":0,"13.3":0.02681,"13.4-13.7":0.13403,"14.0-14.4":0.52719,"14.5-14.8":4.48113,"15.0-15.1":0.30381,"15.2-15.3":1.13034,"15.4":2.07749,"15.5":33.92794,"16.0":0.13403},P:{"4":0.07397,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01057,"8.2":0,"9.2":0.22192,"10.1":0,"11.1-11.2":0.02114,"12.0":0,"13.0":0.09511,"14.0":0.13738,"15.0":0.0317,"16.0":0.21136,"17.0":3.25488,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.60725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.08312,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":28.25551},S:{"2.5":0},R:{_:"0"},M:{"0":0.60278},Q:{"10.4":0},O:{"0":0.27448},H:{"0":0.17324}}; 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 eb5332b61b80dfc..95d254b40d31848 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:{"52":0.04024,"55":0.00252,"68":0.00252,"69":0.00252,"72":0.00252,"75":0.00252,"78":0.01006,"79":0.00503,"80":0.00755,"81":0.00755,"82":0.00503,"83":0.00503,"84":0.01006,"88":0.00503,"91":0.00503,"97":0.00503,"99":0.00503,"100":0.00503,"101":0.01509,"102":0.25905,"103":0.0327,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 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 76 77 85 86 87 89 90 92 93 94 95 96 98 104 105 3.5 3.6"},D:{"33":0.00755,"34":0.00503,"38":0.01258,"41":0.01509,"42":0.00252,"43":0.00503,"44":0.00503,"45":0.00252,"47":0.00252,"48":0.00252,"49":0.01509,"53":0.01006,"54":0.00252,"56":0.00252,"57":0.00755,"68":0.01761,"69":0.01258,"70":0.01258,"71":0.01258,"72":0.01761,"73":0.00755,"74":0.01761,"75":0.01509,"76":0.02264,"77":0.01761,"78":0.02515,"79":0.08551,"80":0.03018,"81":0.02767,"83":0.22384,"84":0.06791,"85":0.07042,"86":0.09809,"87":0.11066,"88":0.02515,"89":0.04276,"90":0.02767,"91":0.01761,"92":0.02012,"93":0.00755,"94":0.01258,"95":0.01006,"96":0.04024,"97":0.02264,"98":0.02012,"99":0.03521,"100":0.06036,"101":0.09557,"102":0.47534,"103":11.14145,"104":0.01509,"105":0.00503,_:"4 5 6 7 8 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 46 50 51 52 55 58 59 60 61 62 63 64 65 66 67 106 107"},F:{"28":0.01761,"36":0.00755,"40":0.00252,"46":0.01258,"54":0.00252,"55":0.00252,"60":0.00503,"68":0.00252,"71":0.00503,"85":0.00755,"86":0.00252,"87":0.00755,"88":0.21378,"89":0.08048,_:"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 56 57 58 62 63 64 65 66 67 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00252,"16":0.00252,"17":0.00252,"18":0.01509,"80":0.00252,"81":0.00252,"83":0.00252,"84":0.01006,"85":0.00503,"86":0.00503,"87":0.00252,"89":0.00252,"90":0.00252,"91":0.00252,"92":0.00252,"94":0.00252,"96":0.00503,"99":0.00503,"100":0.00755,"101":0.01006,"102":0.01761,"103":1.006,_:"13 14 15 79 88 93 95 97 98"},E:{"4":0,"13":0.01761,"14":0.05282,"15":0.01509,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.08048,"11.1":0.00252,"12.1":0.00755,"13.1":0.06288,"14.1":0.14839,"15.1":0.02767,"15.2-15.3":0.02264,"15.4":0.07545,"15.5":0.37725,"15.6":0.01258,"16.0":0.00755},G:{"8":0.00182,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00182,"6.0-6.1":0.00365,"7.0-7.1":0.01095,"8.1-8.4":0.0073,"9.0-9.2":0.01095,"9.3":0.06203,"10.0-10.2":0.03284,"10.3":0.13319,"11.0-11.2":0.04744,"11.3-11.4":0.06568,"12.0-12.1":0.06933,"12.2-12.5":1.26984,"13.0-13.1":0.04926,"13.2":0.02372,"13.3":0.15143,"13.4-13.7":0.50538,"14.0-14.4":1.39938,"14.5-14.8":2.64185,"15.0-15.1":0.68236,"15.2-15.3":1.04908,"15.4":1.34464,"15.5":8.34701,"16.0":0.12042},P:{"4":0.21418,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.08159,"8.2":0.01017,"9.2":0.0204,"10.1":0.02032,"11.1-11.2":0.08159,"12.0":0.0204,"13.0":0.09179,"14.0":0.09179,"15.0":0.06119,"16.0":0.18358,"17.0":1.81543},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00279,"4.4":0,"4.4.3-4.4.4":0.02715},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00258,"9":0.00516,"11":0.09034,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.06737},Q:{"10.4":0},O:{"0":1.44461},H:{"0":0.34723},L:{"0":55.07867},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.01022,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00255,"79":0.00255,"80":0.00255,"81":0.00255,"82":0.00255,"83":0.00255,"84":0.00255,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.00255,"100":0.00255,"101":0.00511,"102":0.07407,"103":0.01022,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0.00255,"34":0,"35":0,"36":0,"37":0,"38":0.00255,"39":0,"40":0,"41":0.00511,"42":0.00255,"43":0,"44":0.00255,"45":0,"46":0,"47":0,"48":0,"49":0.00255,"50":0,"51":0,"52":0,"53":0.00255,"54":0,"55":0,"56":0,"57":0.00255,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00511,"69":0.00255,"70":0.00511,"71":0.00255,"72":0.00511,"73":0.00255,"74":0.00511,"75":0.00511,"76":0.00511,"77":0.00511,"78":0.00511,"79":0.02299,"80":0.00766,"81":0.00766,"83":0.05874,"84":0.01788,"85":0.01788,"86":0.02554,"87":0.02809,"88":0.00766,"89":0.01022,"90":0.00766,"91":0.00511,"92":0.00511,"93":0.00255,"94":0.00255,"95":0.00255,"96":0.01022,"97":0.00511,"98":0.00511,"99":0.01022,"100":0.01532,"101":0.02809,"102":0.12515,"103":2.88857,"104":0.00255,"105":0.00255,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00511,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00255,"37":0.00766,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00255,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0.00255,"62":0,"63":0.00766,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00255,"86":0,"87":0.00255,"88":0.05619,"89":0.02043,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0.00255,"16":0,"17":0,"18":0.00511,"79":0,"80":0,"81":0,"83":0,"84":0.00255,"85":0,"86":0.00255,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.00255,"101":0.00255,"102":0.00766,"103":0.26306,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00511,"14":0.01277,"15":0.00255,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.02043,"10.1":0,"11.1":0,"12.1":0.00255,"13.1":0.01532,"14.1":0.03831,"15.1":0.00766,"15.2-15.3":0.00511,"15.4":0.01788,"15.5":0.09705,"15.6":0.00255,"16.0":0.00255},G:{"8":0.0024,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0024,"6.0-6.1":0.0048,"7.0-7.1":0.0144,"8.1-8.4":0.0096,"9.0-9.2":0.0144,"9.3":0.08161,"10.0-10.2":0.04321,"10.3":0.17522,"11.0-11.2":0.06241,"11.3-11.4":0.08641,"12.0-12.1":0.09121,"12.2-12.5":1.67061,"13.0-13.1":0.06481,"13.2":0.0312,"13.3":0.19923,"13.4-13.7":0.66488,"14.0-14.4":1.84103,"14.5-14.8":3.47564,"15.0-15.1":0.89771,"15.2-15.3":1.38018,"15.4":1.76903,"15.5":10.9814,"16.0":0.15842},P:{"4":0.22406,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.07129,"8.2":0,"9.2":0.03055,"10.1":0.01018,"11.1-11.2":0.08148,"12.0":0.03055,"13.0":0.09166,"14.0":0.08148,"15.0":0.06111,"16.0":0.17314,"17.0":1.79252,"18.0":0.01018},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00515,"4.4":0,"4.4.3-4.4.4":0.05018},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.02299,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.11615},S:{"2.5":0},R:{_:"0"},M:{"0":0.06701},Q:{"10.4":0.00745},O:{"0":1.43708},H:{"0":0.34542}}; 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 8e8acd1ed2751fe..384436babc8cbec 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js @@ -1 +1 @@ -module.exports={C:{"30":0.01224,"38":0.0775,"42":0.00816,"68":0.12237,"72":0.00816,"89":0.00408,"91":0.06526,"96":0.01224,"100":0.00816,"101":0.14684,"102":2.19042,"103":0.18763,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 40 41 43 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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 97 98 99 104 105 3.5 3.6"},D:{"49":0.00816,"56":0.01224,"57":0.00408,"68":0.04079,"70":0.01224,"72":0.04487,"73":0.00408,"74":0.04895,"81":0.15908,"84":0.05711,"85":0.00816,"86":0.0204,"87":0.01224,"88":0.33448,"89":0.00816,"90":0.00816,"91":0.03671,"94":0.00816,"95":0.00816,"96":0.0204,"97":0.01632,"98":0.03671,"99":0.18763,"100":0.96672,"101":0.76685,"102":1.82739,"103":20.01973,"105":0.00816,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 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 58 59 60 61 62 63 64 65 66 67 69 71 75 76 77 78 79 80 83 92 93 104 106 107"},F:{"87":0.01632,"88":0.06934,"89":0.02447,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00816,"13":0.02447,"14":0.00408,"15":0.00408,"16":0.00408,"18":0.11013,"84":0.01632,"85":0.01632,"89":0.03671,"90":0.01224,"91":0.01632,"92":0.00816,"94":0.02855,"95":0.01224,"96":0.0204,"98":0.08974,"99":0.00408,"100":0.05303,"101":0.1754,"102":0.13869,"103":3.48347,_:"17 79 80 81 83 86 87 88 93 97"},E:{"4":0,"14":0.01632,"15":0.02855,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0","11.1":0.00408,"12.1":0.00816,"13.1":0.38343,"14.1":0.04895,"15.1":0.00816,"15.2-15.3":0.14277,"15.4":0.0204,"15.5":0.61593,"15.6":0.00408},G:{"8":0,"3.2":0,"4.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.00925,"9.0-9.2":0,"9.3":0.02056,"10.0-10.2":0,"10.3":0.00925,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.02056,"12.2-12.5":0.19741,"13.0-13.1":0.03959,"13.2":0.00771,"13.3":0.01902,"13.4-13.7":0.01131,"14.0-14.4":0.23854,"14.5-14.8":0.28172,"15.0-15.1":0.08071,"15.2-15.3":1.26365,"15.4":0.27761,"15.5":2.64296,"16.0":0.00771},P:{"4":0.06139,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.36836,"8.2":0.01017,"9.2":0.04093,"10.1":0.02032,"11.1-11.2":0.13302,"12.0":0.0508,"13.0":0.04093,"14.0":0.10232,"15.0":0.10232,"16.0":0.17395,"17.0":2.25109},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.02368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01683,"11":0.02804,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.18947},Q:{"10.4":0.01776},O:{"0":0.86447},H:{"0":0.16256},L:{"0":56.80018},S:{"2.5":0.01184}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0.00416,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.03324,"39":0,"40":0,"41":0,"42":0.00416,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.04986,"69":0,"70":0,"71":0,"72":0.00416,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.02909,"92":0,"93":0,"94":0,"95":0,"96":0.00416,"97":0,"98":0,"99":0,"100":0.00416,"101":0.09141,"102":0.9515,"103":0.07895,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.05817,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00416,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00416,"57":0,"58":0.04571,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01662,"69":0,"70":0.00416,"71":0,"72":0.01662,"73":0,"74":0.02078,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0.06648,"83":0,"84":0.02493,"85":0.01662,"86":0.00831,"87":0.00416,"88":0.14127,"89":0.00416,"90":0.00416,"91":0.01247,"92":0,"93":0,"94":0.00416,"95":0.00416,"96":0.00831,"97":0.00831,"98":0.01662,"99":0.07895,"100":0.40304,"101":0.31994,"102":0.76452,"103":8.33078,"104":0,"105":0.00416,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00416,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.00416,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00831,"88":0.02909,"89":0.00831,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0.00416,"13":0.01247,"14":0,"15":0,"16":0,"17":0,"18":0.04571,"79":0,"80":0,"81":0,"83":0,"84":0.00831,"85":0.00831,"86":0,"87":0,"88":0,"89":0.01662,"90":0.00416,"91":0.00831,"92":0.00416,"93":0,"94":0.01247,"95":0.00416,"96":0.00831,"97":0,"98":0.0374,"99":0,"100":0.02078,"101":0.07479,"102":0.05817,"103":1.4501,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00831,"15":0.01247,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00416,"13.1":0.16205,"14.1":0.02078,"15.1":0.00416,"15.2-15.3":0.05817,"15.4":0.00831,"15.5":0.25761,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.0136,"9.0-9.2":0,"9.3":0.03021,"10.0-10.2":0,"10.3":0.0136,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.03021,"12.2-12.5":0.29006,"13.0-13.1":0.05816,"13.2":0.01133,"13.3":0.02795,"13.4-13.7":0.01662,"14.0-14.4":0.35049,"14.5-14.8":0.41394,"15.0-15.1":0.11859,"15.2-15.3":1.85668,"15.4":0.4079,"15.5":3.88332,"16.0":0.01133},P:{"4":0.06157,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.35914,"8.2":0,"9.2":0.04104,"10.1":0,"11.1-11.2":0.12313,"12.0":0.01026,"13.0":0.05131,"14.0":0.10261,"15.0":0.09235,"16.0":0.17444,"17.0":2.21642,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.16881},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00554,"11":0.01108,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":71.91459},S:{"2.5":0.01169},R:{_:"0"},M:{"0":0.18704},Q:{"10.4":0.01754},O:{"0":0.85337},H:{"0":0.16048}}; 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 c19bf846299b9f0..f1e93551ad8decc 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.19814,"68":0.05051,"78":0.68765,"91":0.14763,"92":0.09713,"98":0.05051,"102":3.73349,"103":1.22766,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 93 94 95 96 97 99 100 101 104 105 3.5 3.6"},D:{"88":0.19814,"99":0.34188,"102":7.12121,"103":14.44055,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 104 105 106 107"},F:{"88":0.59052,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"89":0.29526,"102":0.05051,"103":2.16006,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101"},E:{"4":0,"15":0.09713,_:"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.4 15.6","14.1":1.27817,"15.1":1.37529,"15.2-15.3":0.44289,"15.5":0.78477,"16.0":0.05051},G:{"8":0,"3.2":0,"4.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.04578,"10.0-10.2":0,"10.3":0.04578,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.09156,"12.2-12.5":0.04578,"13.0-13.1":0,"13.2":0,"13.3":0.04578,"13.4-13.7":0.13734,"14.0-14.4":0.13734,"14.5-14.8":0.73048,"15.0-15.1":1.46096,"15.2-15.3":3.74397,"15.4":0,"15.5":3.24139,"16.0":0.13734},P:{"4":0.07333,"5.0-5.4":0.03048,"6.2-6.4":0.12193,"7.2-7.4":0.02095,"8.2":0.01017,"9.2":0.05056,"10.1":0.15169,"11.1-11.2":0.08159,"12.0":0.0204,"13.0":0.10476,"14.0":0.13618,"15.0":0.03143,"16.0":0.23047,"17.0":3.18546},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.05051,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.25072},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":46.55276},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0.0791,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.01978,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.2729,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.05933,"92":0.03955,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.01978,"99":0,"100":0,"101":0,"102":1.57409,"103":0.48647,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.0791,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0.13447,"100":0,"101":0,"102":2.85551,"103":5.71102,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0.23335,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0.1147,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0.01978,"103":0.85428,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0.03955,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0.50624,"15.1":0.54579,"15.2-15.3":0.17402,"15.4":0,"15.5":0.31245,"15.6":0,"16.0":0.01978},G:{"8":0,"3.2":0,"4.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.06492,"10.0-10.2":0,"10.3":0.06492,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.12983,"12.2-12.5":0.06492,"13.0-13.1":0,"13.2":0,"13.3":0.06492,"13.4-13.7":0.19475,"14.0-14.4":0.19475,"14.5-14.8":1.03582,"15.0-15.1":2.07164,"15.2-15.3":5.30893,"15.4":0,"15.5":4.59627,"16.0":0.19475},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0.0509,"10.1":0.15269,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":3.14535,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01978,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":62.92915},S:{"2.5":0},R:{_:"0"},M:{"0":0.24785},Q:{"10.4":0},O:{"0":0},H:{"0":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 a9838ee3c62162a..7b0537cc732f190 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:{"78":0.00404,"100":0.03632,"101":0.04842,"102":0.78683,"103":0.12509,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 104 105 3.5 3.6"},D:{"47":0.00807,"65":0.00807,"68":0.00807,"76":0.00404,"79":0.01614,"80":0.01614,"81":0.0686,"85":0.00404,"87":0.01614,"88":0.00807,"89":0.01211,"91":0.01211,"92":0.00807,"93":1.42839,"95":0.24614,"96":0.02421,"97":0.02421,"98":0.01614,"99":0.09684,"100":0.01614,"101":0.18158,"102":1.65839,"103":17.177,"104":0.10088,"105":0.02825,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 77 78 83 84 86 90 94 106"},F:{"28":0.00807,"63":0.01614,"86":0.00807,"88":0.30263,"89":0.42771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"14":0.01211,"15":0.05649,"17":0.00404,"18":1.56558,"80":0.00807,"84":0.02018,"89":0.01614,"90":0.00807,"91":0.00807,"92":0.01211,"94":0.02018,"95":0.01614,"96":0.01614,"98":0.00807,"99":0.00807,"100":0.02825,"101":0.02825,"102":0.14526,"103":3.23607,_:"12 13 16 79 81 83 85 86 87 88 93 97"},E:{"4":0,"11":0.01211,"13":0.03632,"14":0.06456,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.6 16.0","12.1":0.05246,"13.1":0.05649,"14.1":0.04439,"15.1":0.02421,"15.4":0.05649,"15.5":0.18158},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00144,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09391,"10.0-10.2":0.00289,"10.3":0.02239,"11.0-11.2":0.00867,"11.3-11.4":0.05129,"12.0-12.1":0.013,"12.2-12.5":0.74692,"13.0-13.1":0.00433,"13.2":0.00144,"13.3":0.18131,"13.4-13.7":0.0744,"14.0-14.4":0.6364,"14.5-14.8":1.66215,"15.0-15.1":0.17192,"15.2-15.3":0.38357,"15.4":0.70719,"15.5":2.37151,"16.0":0.06501},P:{"4":0.07143,"5.0-5.4":0.03098,"6.2-6.4":0.02069,"7.2-7.4":0.4592,"8.2":0.01034,"9.2":0.05102,"10.1":0.02088,"11.1-11.2":0.26532,"12.0":0.04082,"13.0":0.36736,"14.0":0.18368,"15.0":0.14286,"16.0":1.20413,"17.0":1.30617},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.01193},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.31473,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0159,"11":0.02718},S:{"2.5":0.02386},R:{_:"0"},M:{"0":0.02983},Q:{"10.4":0.00597},O:{"0":0.34597},H:{"0":0.64944},L:{"0":58.38151}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0.01235,"101":0.02058,"102":0.33332,"103":0.04938,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00412,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0.00412,"63":0,"64":0,"65":0.00412,"66":0,"67":0,"68":0.00412,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00823,"80":0.00412,"81":0.03704,"83":0,"84":0,"85":0,"86":0,"87":0.03704,"88":0.00412,"89":0.00412,"90":0,"91":0.00412,"92":0.00412,"93":0.58845,"94":0.02058,"95":0.10288,"96":0.00823,"97":0.00823,"98":0.00823,"99":0.04115,"100":0.00412,"101":0.07407,"102":0.69132,"103":7.08192,"104":0.04115,"105":0.01235,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00412,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.04115,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0.00412,"87":0,"88":0.12345,"89":0.17695,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00412,"15":0.02469,"16":0,"17":0,"18":0.64194,"79":0,"80":0.00412,"81":0,"83":0,"84":0.00823,"85":0,"86":0,"87":0,"88":0,"89":0.00412,"90":0.00412,"91":0.00412,"92":0.00412,"93":0,"94":0.00823,"95":0.00823,"96":0.00823,"97":0,"98":0.00412,"99":0.00412,"100":0.01235,"101":0.01235,"102":0.06173,"103":1.33326,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00412,"12":0,"13":0.01646,"14":0.02469,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02058,"13.1":0.02469,"14.1":0.01646,"15.1":0.00823,"15.2-15.3":0,"15.4":0.02469,"15.5":0.07407,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0021,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13666,"10.0-10.2":0.0042,"10.3":0.03259,"11.0-11.2":0.01261,"11.3-11.4":0.07464,"12.0-12.1":0.01892,"12.2-12.5":1.08696,"13.0-13.1":0.00631,"13.2":0.0021,"13.3":0.26386,"13.4-13.7":0.10828,"14.0-14.4":0.92612,"14.5-14.8":2.41885,"15.0-15.1":0.25019,"15.2-15.3":0.5582,"15.4":1.02914,"15.5":3.45115,"16.0":0.09461},P:{"4":0.08156,"5.0-5.4":0,"6.2-6.4":0.01019,"7.2-7.4":0.44857,"8.2":0,"9.2":0.05097,"10.1":0.01019,"11.1-11.2":0.26506,"12.0":0.04078,"13.0":0.35682,"14.0":0.18351,"15.0":0.13253,"16.0":1.17239,"17.0":1.28454,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.09407},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.12757,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":70.11643},S:{"2.5":0.02354},R:{_:"0"},M:{"0":0.02943},Q:{"10.4":0.00589},O:{"0":0.34133},H:{"0":0.64073}}; 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 8c8c5e8435af1b1..ee40a0a85520ae1 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.03584,"4":0.00224,"47":0.00448,"48":0.00224,"49":0.00224,"50":0.00224,"52":0.0336,"56":0.00224,"57":0.00224,"59":0.01344,"60":0.00448,"61":0.00672,"62":0.00448,"64":0.00448,"69":0.00448,"72":0.0112,"74":0.00448,"78":0.00224,"79":0.00224,"84":0.00672,"87":0.08512,"88":0.00224,"89":0.07168,"91":0.01344,"93":0.00672,"94":0.00672,"95":0.00672,"96":0.00672,"97":0.00448,"98":0.00672,"99":0.0112,"100":0.04256,"101":0.1008,"102":1.45824,"103":0.19488,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 51 53 54 55 58 63 65 66 67 68 70 71 73 75 76 77 80 81 82 83 85 86 90 92 104 105 3.5 3.6"},D:{"37":0.01344,"43":0.00448,"44":0.00224,"48":0.00896,"49":0.01568,"50":0.00672,"51":0.00224,"52":0.00448,"53":0.00896,"55":0.01344,"56":0.00672,"57":0.00448,"58":0.00448,"60":0.00448,"61":0.00224,"62":0.00224,"63":0.02464,"64":0.00448,"66":0.00896,"67":0.0112,"68":0.01792,"69":0.00896,"70":0.00672,"71":0.01344,"72":0.01344,"73":0.00672,"74":0.00896,"75":0.0112,"76":0.02016,"77":0.00896,"78":0.01344,"79":0.02688,"80":0.01568,"81":0.0224,"83":0.0224,"84":0.00896,"85":0.0112,"86":0.07168,"87":0.04704,"88":0.01792,"89":0.056,"90":0.01344,"91":0.0336,"92":0.03808,"93":0.0336,"94":0.02464,"95":0.056,"96":0.056,"97":0.0672,"98":0.12768,"99":0.10528,"100":0.1008,"101":0.15456,"102":0.58688,"103":6.8656,"104":0.00448,"105":0.00448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 45 46 47 54 59 65 106 107"},F:{"69":0.00448,"70":0.00224,"79":0.0224,"85":0.00896,"86":0.00896,"87":0.00896,"88":0.08064,"89":0.05824,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 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 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00672,"18":0.00224,"84":0.01568,"85":0.00224,"89":0.01344,"90":0.00448,"92":0.01344,"97":0.00224,"98":0.00672,"99":0.02016,"100":0.00896,"101":0.01792,"102":0.03808,"103":0.75488,_:"13 14 15 16 17 79 80 81 83 86 87 88 91 93 94 95 96"},E:{"4":0,"13":0.0112,"14":0.00448,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.6 16.0","13.1":0.00672,"14.1":0.0112,"15.1":0.00224,"15.2-15.3":0.00224,"15.4":0.00672,"15.5":0.01792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0066,"5.0-5.1":0.00017,"6.0-6.1":0.00186,"7.0-7.1":0.00592,"8.1-8.4":0,"9.0-9.2":0.00474,"9.3":0.00152,"10.0-10.2":0.00017,"10.3":0.00254,"11.0-11.2":0.00152,"11.3-11.4":0.00152,"12.0-12.1":0.01049,"12.2-12.5":0.17985,"13.0-13.1":0.00474,"13.2":0.00914,"13.3":0.01472,"13.4-13.7":0.03688,"14.0-14.4":0.25193,"14.5-14.8":0.16158,"15.0-15.1":0.07715,"15.2-15.3":0.13468,"15.4":0.20861,"15.5":0.54344,"16.0":0.00863},P:{"4":0.13187,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.15216,"8.2":0.01014,"9.2":0.27388,"10.1":0.03043,"11.1-11.2":0.36518,"12.0":0.06086,"13.0":0.29417,"14.0":0.18259,"15.0":0.14201,"16.0":0.53762,"17.0":2.38379},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00805,"4.2-4.3":0.00977,"4.4":0,"4.4.3-4.4.4":0.09082},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.00672,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.74496},Q:{"10.4":0},O:{"0":3.01088},H:{"0":8.50744},L:{"0":67.93208},S:{"2.5":0.00776}}; +module.exports={C:{"2":0,"3":0.00902,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00226,"48":0,"49":0,"50":0,"51":0,"52":0.00677,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00226,"60":0,"61":0.00226,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00451,"69":0,"70":0,"71":0,"72":0.00226,"73":0,"74":0.00226,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0.00226,"85":0,"86":0,"87":0.01805,"88":0.00451,"89":0.01579,"90":0,"91":0.00226,"92":0,"93":0.00226,"94":0.00451,"95":0.00226,"96":0.00226,"97":0.00226,"98":0.00226,"99":0.00451,"100":0.01128,"101":0.0361,"102":0.45346,"103":0.04738,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.00226,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0.00226,"44":0,"45":0,"46":0,"47":0,"48":0.00226,"49":0.00451,"50":0.00226,"51":0,"52":0,"53":0.00226,"54":0,"55":0.00451,"56":0.00226,"57":0.00226,"58":0.00226,"59":0,"60":0,"61":0,"62":0,"63":0.00451,"64":0.00226,"65":0,"66":0.00226,"67":0.00226,"68":0.00451,"69":0.00226,"70":0.00226,"71":0.00226,"72":0.00226,"73":0.00226,"74":0.00226,"75":0.00226,"76":0.00451,"77":0.00226,"78":0.00226,"79":0.00677,"80":0.00451,"81":0.00902,"83":0.00451,"84":0.00226,"85":0.00226,"86":0.01579,"87":0.01128,"88":0.00451,"89":0.01354,"90":0.00226,"91":0.00677,"92":0.01128,"93":0.00677,"94":0.00677,"95":0.01354,"96":0.01354,"97":0.01579,"98":0.02933,"99":0.02482,"100":0.02256,"101":0.0361,"102":0.13762,"103":1.5792,"104":0,"105":0.00226,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00451,"25":0,"26":0,"27":0,"28":0.00226,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0.00226,"46":0,"47":0.00226,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0.00451,"60":0.00677,"62":0,"63":0.10603,"64":0.0203,"65":0,"66":0,"67":0,"68":0,"69":0.00226,"70":0.00451,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00451,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00226,"86":0.00226,"87":0.00226,"88":0.01805,"89":0.01354,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.13536},B:{"12":0.00226,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0.00451,"85":0,"86":0,"87":0,"88":0,"89":0.00226,"90":0,"91":0,"92":0.00226,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.00226,"99":0.00451,"100":0.00451,"101":0.00451,"102":0.00902,"103":0.17371,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00226,"14":0.00226,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0.00226,"14.1":0.00226,"15.1":0,"15.2-15.3":0,"15.4":0.00226,"15.5":0.00451,"15.6":0,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00826,"5.0-5.1":0.00021,"6.0-6.1":0.00233,"7.0-7.1":0.00741,"8.1-8.4":0,"9.0-9.2":0.00593,"9.3":0.00191,"10.0-10.2":0.00021,"10.3":0.00318,"11.0-11.2":0.00191,"11.3-11.4":0.00191,"12.0-12.1":0.01313,"12.2-12.5":0.2252,"13.0-13.1":0.00593,"13.2":0.01144,"13.3":0.01843,"13.4-13.7":0.04618,"14.0-14.4":0.31545,"14.5-14.8":0.20232,"15.0-15.1":0.09661,"15.2-15.3":0.16864,"15.4":0.26122,"15.5":0.68047,"16.0":0.0108},P:{"4":0.13188,"5.0-5.4":0.08116,"6.2-6.4":0.02029,"7.2-7.4":0.15217,"8.2":0.01014,"9.2":0.27391,"10.1":0.03043,"11.1-11.2":0.36522,"12.0":0.06087,"13.0":0.2942,"14.0":0.18261,"15.0":0.14203,"16.0":0.53768,"17.0":2.36378,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01087,"4.2-4.3":0.0132,"4.4":0,"4.4.3-4.4.4":0.12269},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00226,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":73.26477},S:{"2.5":0.00774},R:{_:"0"},M:{"0":0.74342},Q:{"10.4":0},O:{"0":3.00467},H:{"0":8.4899}}; 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 c183e20e9aac3f4..02bacc2783bfc2c 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:{"48":0.02136,"52":0.01281,"59":0.02136,"68":0.02136,"72":0.04698,"78":0.12813,"79":0.00854,"84":0.02136,"86":0.00427,"87":0.00427,"89":0.06407,"91":0.02563,"96":0.00427,"97":0.00427,"99":0.08969,"100":0.01281,"101":0.29043,"102":5.59074,"103":0.41002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 85 88 90 92 93 94 95 98 104 105 3.5 3.6"},D:{"47":0.00854,"49":0.04271,"50":0.03844,"55":0.00854,"70":0.00854,"75":0.00854,"79":0.06407,"81":0.01708,"83":0.00427,"84":0.0299,"85":0.00427,"86":0.01281,"87":0.24772,"88":0.00427,"89":0.15803,"90":0.01708,"91":0.08542,"92":0.07261,"93":0.11532,"94":0.00854,"96":0.08969,"97":0.05979,"98":0.03844,"99":0.07261,"100":0.14521,"101":0.06407,"102":1.66996,"103":16.59711,"105":0.00427,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 76 77 78 80 95 104 106"},F:{"77":0.00427,"79":0.02136,"84":0.00427,"85":0.00427,"87":0.00427,"88":0.58513,"89":0.30324,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 86 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.02136,"16":0.01281,"17":0.00427,"18":0.01708,"80":0.01281,"81":0.03417,"84":0.02563,"85":0.00854,"86":0.00427,"90":0.01281,"92":0.00427,"93":0.01281,"96":0.02136,"97":0.00854,"98":0.02563,"99":0.04698,"100":0.0299,"101":0.08115,"102":0.32033,"103":6.46629,_:"12 13 14 79 83 87 88 89 91 94 95"},E:{"4":0,"13":0.07261,"14":0.58513,"15":0.03844,_:"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.04698,"13.1":0.34168,"14.1":0.46981,"15.1":0.10678,"15.2-15.3":0.03844,"15.4":0.12386,"15.5":2.34905,"15.6":0.06407,"16.0":0.01281},G:{"8":0.01065,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00237,"7.0-7.1":0.0071,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00473,"10.0-10.2":0,"10.3":0.00473,"11.0-11.2":0.0071,"11.3-11.4":0.01775,"12.0-12.1":0.02248,"12.2-12.5":0.30646,"13.0-13.1":0.00237,"13.2":0.00237,"13.3":0.04023,"13.4-13.7":0.10176,"14.0-14.4":0.37983,"14.5-14.8":1.01169,"15.0-15.1":0.36681,"15.2-15.3":0.55968,"15.4":0.9963,"15.5":7.44506,"16.0":0.32895},P:{"4":0.03057,"5.0-5.4":0.04033,"6.2-6.4":0.23191,"7.2-7.4":0.10188,"8.2":0.01034,"9.2":0.01019,"10.1":0.03025,"11.1-11.2":0.08151,"12.0":0.03068,"13.0":0.07132,"14.0":0.08151,"15.0":0.18339,"16.0":0.1732,"17.0":2.94445},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.00535,"4.4":0,"4.4.3-4.4.4":0.07219},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12386,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.02718,_:"10"},S:{"2.5":0},R:{_:"0"},M:{"0":0.95674},Q:{"10.4":0},O:{"0":0.0401},H:{"0":0.32543},L:{"0":43.65438}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0.00868,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0.00868,"49":0,"50":0,"51":0,"52":0.00434,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0.00868,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00868,"69":0,"70":0,"71":0,"72":0.02169,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.05639,"79":0.00434,"80":0,"81":0.00868,"82":0,"83":0,"84":0.00868,"85":0,"86":0.00434,"87":0.00434,"88":0,"89":0.02603,"90":0,"91":0.01301,"92":0,"93":0,"94":0,"95":0,"96":0.00434,"97":0.00434,"98":0,"99":0.03904,"100":0.00434,"101":0.16484,"102":2.77198,"103":0.17786,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0.00434,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00434,"48":0,"49":0.01735,"50":0.02169,"51":0,"52":0,"53":0,"54":0,"55":0.00434,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.00434,"71":0,"72":0,"73":0,"74":0,"75":0.00434,"76":0,"77":0,"78":0,"79":0.03904,"80":0,"81":0.02169,"83":0.00434,"84":0.01301,"85":0.00434,"86":0.01301,"87":0.11279,"88":0.02169,"89":0.06941,"90":0.00868,"91":0.03904,"92":0.04338,"93":0.04772,"94":0.00434,"95":0.00868,"96":0.03904,"97":0.02603,"98":0.01735,"99":0.03037,"100":0.06507,"101":0.02603,"102":0.73746,"103":7.43967,"104":0,"105":0.00434,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0.01735,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0.00434,"78":0,"79":0.00868,"80":0,"81":0,"82":0,"83":0,"84":0.00434,"85":0.00434,"86":0,"87":0.00434,"88":0.25594,"89":0.13014,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0.00434,"15":0.00868,"16":0.00434,"17":0.00434,"18":0.00868,"79":0,"80":0.00434,"81":0.01301,"83":0,"84":0.01301,"85":0.00434,"86":0.00434,"87":0,"88":0,"89":0,"90":0.00434,"91":0,"92":0.00434,"93":0.00434,"94":0,"95":0.00434,"96":0.00868,"97":0.00434,"98":0.01301,"99":0.02169,"100":0.01301,"101":0.0347,"102":0.14315,"103":2.82838,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.03037,"14":0.25594,"15":0.01735,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.02169,"13.1":0.14749,"14.1":0.20389,"15.1":0.04338,"15.2-15.3":0.01735,"15.4":0.05206,"15.5":1.01943,"15.6":0.03037,"16.0":0.00434},G:{"8":0.01577,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0035,"7.0-7.1":0.01051,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00701,"10.0-10.2":0,"10.3":0.00701,"11.0-11.2":0.01051,"11.3-11.4":0.02628,"12.0-12.1":0.03329,"12.2-12.5":0.45381,"13.0-13.1":0.0035,"13.2":0.0035,"13.3":0.05957,"13.4-13.7":0.15068,"14.0-14.4":0.56244,"14.5-14.8":1.49809,"15.0-15.1":0.54317,"15.2-15.3":0.82877,"15.4":1.47531,"15.5":11.02453,"16.0":0.4871},P:{"4":0.0405,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.10125,"8.2":0,"9.2":0.02025,"10.1":0,"11.1-11.2":0.09113,"12.0":0,"13.0":0.07088,"14.0":0.081,"15.0":0.18226,"16.0":0.17213,"17.0":2.8756,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00582,"4.2-4.3":0.01165,"4.4":0,"4.4.3-4.4.4":0.15723},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.05206,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":57.67884},S:{"2.5":0},R:{_:"0"},M:{"0":0.94555},Q:{"10.4":0},O:{"0":0.03963},H:{"0":0.32162}}; 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 a1e6447e6eab1fd..5af1fdf64fe8ed1 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.01496,"52":0.03419,"60":0.00427,"78":0.00641,"83":0.00214,"87":0.00427,"88":0.00427,"91":0.01282,"93":0.00427,"94":0.00641,"95":0.00427,"98":0.00214,"99":0.00641,"100":0.01069,"101":0.03847,"102":0.60905,"103":0.08334,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 89 90 92 96 97 104 105 3.5 3.6"},D:{"28":0.00641,"38":0.00427,"39":0.00427,"49":0.02351,"50":0.00641,"52":0.01282,"55":0.00641,"63":0.00427,"65":0.00855,"66":0.00214,"67":0.00641,"69":0.02137,"70":0.0171,"71":0.00214,"72":0.00214,"74":0.01069,"75":0.00214,"76":0.00641,"77":0.00427,"78":0.00641,"79":0.02564,"80":0.01069,"81":0.02137,"83":0.00641,"84":0.01069,"85":0.00427,"86":0.01282,"87":0.01282,"88":0.00855,"89":0.00641,"90":0.00855,"91":0.02564,"92":0.04274,"93":0.00855,"94":0.00855,"95":0.01282,"96":0.02137,"97":0.01923,"98":0.02778,"99":0.02564,"100":0.0748,"101":0.07693,"102":0.48296,"103":9.44768,"104":0.00641,"105":0.00427,_:"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 40 41 42 43 44 45 46 47 48 51 53 54 56 57 58 59 60 61 62 64 68 73 106 107"},F:{"28":0.01069,"70":0.00214,"79":0.00855,"83":0.00214,"85":0.00641,"86":0.00855,"87":0.01069,"88":0.23293,"89":0.12395,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 82 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01069,"13":0.00427,"14":0.00855,"15":0.00855,"16":0.00855,"17":0.01069,"18":0.02564,"84":0.00855,"85":0.00214,"89":0.00427,"90":0.00427,"91":0.00214,"92":0.00855,"95":0.01069,"96":0.00427,"97":0.00641,"98":0.00427,"99":0.01069,"100":0.01282,"101":0.03847,"102":0.07052,"103":2.13059,_:"79 80 81 83 86 87 88 93 94"},E:{"4":0,"13":0.01069,"14":0.03847,"15":0.0171,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00427,"10.1":0.00427,"11.1":0.00855,"12.1":0.01496,"13.1":0.06411,"14.1":0.12395,"15.1":0.02778,"15.2-15.3":0.02351,"15.4":0.08975,"15.5":0.65179,"15.6":0.02992,"16.0":0.00427},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00342,"6.0-6.1":0.00228,"7.0-7.1":0.00684,"8.1-8.4":0.0057,"9.0-9.2":0.00342,"9.3":0.07638,"10.0-10.2":0.00114,"10.3":0.04674,"11.0-11.2":0.0114,"11.3-11.4":0.01596,"12.0-12.1":0.0114,"12.2-12.5":0.50956,"13.0-13.1":0.0228,"13.2":0.00798,"13.3":0.04104,"13.4-13.7":0.10146,"14.0-14.4":0.33515,"14.5-14.8":0.76035,"15.0-15.1":0.24053,"15.2-15.3":0.4138,"15.4":0.64749,"15.5":7.84058,"16.0":0.03648},P:{"4":0.23267,"5.0-5.4":0.02023,"6.2-6.4":0.07094,"7.2-7.4":0.54627,"8.2":0.02018,"9.2":0.02023,"10.1":0.03035,"11.1-11.2":0.15174,"12.0":0.09104,"13.0":0.15174,"14.0":0.22255,"15.0":0.12139,"16.0":0.49569,"17.0":6.69681},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00147,"4.2-4.3":0.00491,"4.4":0,"4.4.3-4.4.4":0.03293},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14104,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.52682},Q:{"10.4":0},O:{"0":0.62904},H:{"0":3.49876},L:{"0":59.22972},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00216,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00648,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00216,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00216,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00216,"88":0.00432,"89":0,"90":0,"91":0.00432,"92":0.00216,"93":0.00216,"94":0.00216,"95":0.00216,"96":0,"97":0.00216,"98":0.00216,"99":0.00432,"100":0.00432,"101":0.01729,"102":0.20097,"103":0.02377,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00216,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00216,"39":0,"40":0.00216,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00432,"50":0.00216,"51":0,"52":0.00216,"53":0,"54":0,"55":0.00216,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0.00216,"66":0,"67":0.00216,"68":0,"69":0.00432,"70":0.00432,"71":0,"72":0,"73":0,"74":0.00216,"75":0,"76":0.00216,"77":0,"78":0.00216,"79":0.00648,"80":0.00216,"81":0.02809,"83":0.00216,"84":0.00216,"85":0.00216,"86":0.00216,"87":0.00216,"88":0.00216,"89":0.00216,"90":0.00216,"91":0.00648,"92":0.01081,"93":0.00216,"94":0.00216,"95":0.00216,"96":0.00432,"97":0.00432,"98":0.00648,"99":0.00648,"100":0.01729,"101":0.01729,"102":0.10805,"103":2.06159,"104":0.00216,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00216,"27":0,"28":0.00648,"29":0,"30":0,"31":0,"32":0.00216,"33":0,"34":0,"35":0.00864,"36":0,"37":0,"38":0.00216,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00216,"47":0.00216,"48":0,"49":0,"50":0.00216,"51":0.00216,"52":0,"53":0,"54":0.00216,"55":0.00216,"56":0.00216,"57":0.00432,"58":0.01081,"60":0.02161,"62":0,"63":0.35657,"64":0.01513,"65":0,"66":0,"67":0,"68":0.00216,"69":0,"70":0.00432,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.00216,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0.00216,"86":0.00216,"87":0.00216,"88":0.0497,"89":0.02593,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.00216},B:{"12":0.00216,"13":0,"14":0.00216,"15":0.00216,"16":0.00216,"17":0.00216,"18":0.00648,"79":0,"80":0,"81":0,"83":0,"84":0.00216,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00216,"93":0,"94":0,"95":0.00216,"96":0,"97":0.00216,"98":0.00216,"99":0.00216,"100":0.00432,"101":0.00864,"102":0.01945,"103":0.47326,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00216,"14":0.00864,"15":0.00432,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0.00216,"12.1":0.00216,"13.1":0.01297,"14.1":0.02593,"15.1":0.00648,"15.2-15.3":0.00432,"15.4":0.01945,"15.5":0.14047,"15.6":0.00648,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00428,"6.0-6.1":0.00286,"7.0-7.1":0.00857,"8.1-8.4":0.00714,"9.0-9.2":0.00428,"9.3":0.0957,"10.0-10.2":0.00143,"10.3":0.05856,"11.0-11.2":0.01428,"11.3-11.4":0.02,"12.0-12.1":0.01428,"12.2-12.5":0.63846,"13.0-13.1":0.02857,"13.2":0.01,"13.3":0.05142,"13.4-13.7":0.12712,"14.0-14.4":0.41993,"14.5-14.8":0.95269,"15.0-15.1":0.30138,"15.2-15.3":0.51848,"15.4":0.81128,"15.5":9.82397,"16.0":0.04571},P:{"4":0.26282,"5.0-5.4":0.02022,"6.2-6.4":0.02022,"7.2-7.4":0.52564,"8.2":0.01011,"9.2":0.04043,"10.1":0.04043,"11.1-11.2":0.15163,"12.0":0.09098,"13.0":0.15163,"14.0":0.22239,"15.0":0.1213,"16.0":0.49531,"17.0":6.6008,"18.0":0.01011},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.0076,"4.4":0,"4.4.3-4.4.4":0.05092},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.03025,"5.5":0},J:{"7":0,"10":0.00784},N:{"10":0,"11":0},L:{"0":65.81455},S:{"2.5":0.00784},R:{_:"0"},M:{"0":0.52521},Q:{"10.4":0.00784},O:{"0":0.62712},H:{"0":3.48809}}; 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 8b5b37dcce095c2..2c09c76e6b13575 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:{"7":0.00528,"34":0.00792,"43":0.00528,"47":0.00528,"52":0.00264,"68":0.00264,"71":0.00528,"72":0.00528,"76":0.00264,"78":0.01056,"91":0.03431,"96":0.00264,"98":0.00264,"99":0.02375,"100":0.01583,"101":0.08445,"102":0.95796,"103":0.15042,"104":0.00528,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 73 74 75 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 105 3.5 3.6"},D:{"11":0.00528,"30":0.00264,"38":0.00528,"43":0.00528,"49":0.0132,"50":0.00264,"51":0.01583,"55":0.00528,"57":0.00528,"60":0.00264,"63":0.01847,"64":0.03695,"68":0.01847,"69":0.01056,"70":0.01056,"71":0.02111,"72":0.0132,"73":0.02375,"74":0.01583,"75":0.01056,"76":0.02639,"77":0.01847,"78":0.02375,"79":0.02903,"80":0.06861,"81":0.04486,"83":0.01847,"84":0.01056,"85":0.02111,"86":0.05806,"87":0.03695,"88":0.04222,"89":0.02375,"90":0.02903,"91":0.03167,"92":0.01847,"93":0.07389,"94":0.01056,"95":0.02903,"96":0.08973,"97":0.05014,"98":0.03695,"99":0.0475,"100":0.095,"101":0.16362,"102":0.636,"103":8.68495,"104":0.03431,"105":0.01056,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 52 53 54 56 58 59 61 62 65 66 67 106 107"},F:{"36":0.00264,"42":0.01056,"62":0.00792,"70":0.00528,"79":0.10292,"80":0.00264,"81":0.00792,"82":0.00792,"83":0.00792,"84":0.01847,"85":0.06334,"86":0.12931,"87":0.05014,"88":0.74948,"89":0.42488,_:"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 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.07389,"13":0.02639,"14":0.01583,"15":0.02375,"16":0.03431,"17":0.03431,"18":0.13195,"80":0.00528,"83":0.00792,"84":0.02639,"85":0.0132,"86":0.00528,"87":0.00528,"88":0.00264,"89":0.03431,"90":0.02903,"92":0.06334,"93":0.00264,"95":0.00792,"96":0.00792,"97":0.01056,"98":0.00792,"99":0.01847,"100":0.01847,"101":0.0607,"102":0.18209,"103":2.44108,_:"79 81 91 94"},E:{"4":0,"13":0.00264,"14":0.02375,"15":0.00264,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 16.0","5.1":0.00528,"7.1":0.00264,"9.1":0.07125,"10.1":0.00792,"11.1":0.00792,"12.1":0.00264,"13.1":0.01583,"14.1":0.03959,"15.1":0.00792,"15.2-15.3":0.01056,"15.4":0.03167,"15.5":0.12667,"15.6":0.00528},G:{"8":0.0044,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0.00503,"6.0-6.1":0,"7.0-7.1":0.01823,"8.1-8.4":0,"9.0-9.2":0.00314,"9.3":0.1188,"10.0-10.2":0.00691,"10.3":0.0836,"11.0-11.2":0.02326,"11.3-11.4":0.01509,"12.0-12.1":0.03708,"12.2-12.5":1.07231,"13.0-13.1":0.02263,"13.2":0.01006,"13.3":0.03646,"13.4-13.7":0.08297,"14.0-14.4":0.41987,"14.5-14.8":0.65998,"15.0-15.1":0.34445,"15.2-15.3":0.42804,"15.4":0.47644,"15.5":2.30238,"16.0":0.01823},P:{"4":0.21031,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.1367,"8.2":0.01014,"9.2":0.03155,"10.1":0.03043,"11.1-11.2":0.02103,"12.0":0.06086,"13.0":0.12619,"14.0":0.06309,"15.0":0.04206,"16.0":0.1998,"17.0":1.00951},I:{"0":0,"3":0,"4":0.00124,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00101,"4.2-4.3":0.00248,"4.4":0,"4.4.3-4.4.4":0.06888},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00583,"10":0.00875,"11":0.09625,_:"6 7 9 5.5"},J:{"7":0,"10":0.02208},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.19875},Q:{"10.4":0.02944},O:{"0":2.14941},H:{"0":13.19216},L:{"0":57.11016},S:{"2.5":0.01472}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0.00268,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00268,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00268,"69":0,"70":0,"71":0.00268,"72":0.00268,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00268,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00803,"92":0,"93":0,"94":0,"95":0,"96":0.01338,"97":0,"98":0.00268,"99":0.00803,"100":0.00803,"101":0.02675,"102":0.27553,"103":0.04013,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00268,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0.00268,"39":0,"40":0.00535,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.00268,"50":0,"51":0.00535,"52":0,"53":0,"54":0,"55":0.00268,"56":0,"57":0,"58":0.00268,"59":0,"60":0,"61":0,"62":0,"63":0.00535,"64":0.0107,"65":0,"66":0,"67":0,"68":0.00535,"69":0.00268,"70":0.00268,"71":0.00535,"72":0.00268,"73":0.00535,"74":0.00535,"75":0.00268,"76":0.00803,"77":0.00535,"78":0.00535,"79":0.00803,"80":0.01873,"81":0.0428,"83":0.00535,"84":0.00268,"85":0.00535,"86":0.01605,"87":0.0107,"88":0.01338,"89":0.00803,"90":0.00803,"91":0.00803,"92":0.00535,"93":0.01873,"94":0.00268,"95":0.00803,"96":0.02408,"97":0.01338,"98":0.01338,"99":0.01338,"100":0.02675,"101":0.04548,"102":0.17388,"103":2.32993,"104":0.00803,"105":0.00268,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0.00535,"25":0,"26":0.00268,"27":0.00535,"28":0.01338,"29":0,"30":0.00803,"31":0,"32":0.00535,"33":0,"34":0,"35":0.04548,"36":0,"37":0,"38":0.00268,"39":0,"40":0,"41":0,"42":0.00803,"43":0,"44":0,"45":0.00268,"46":0.00535,"47":0.00268,"48":0,"49":0,"50":0.00535,"51":0.00535,"52":0,"53":0,"54":0.00535,"55":0.00535,"56":0.00535,"57":0.01338,"58":0.0535,"60":0.3959,"62":0.00535,"63":0.9523,"64":0.0428,"65":0,"66":0,"67":0,"68":0.00268,"69":0.00535,"70":0.00803,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.02675,"80":0,"81":0.00268,"82":0.00268,"83":0.00268,"84":0.00535,"85":0.01605,"86":0.03478,"87":0.01338,"88":0.20063,"89":0.11235,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.0214,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.02943},B:{"12":0.01873,"13":0.00803,"14":0.00535,"15":0.01338,"16":0.0107,"17":0.00803,"18":0.03478,"79":0,"80":0.00268,"81":0,"83":0.00268,"84":0.00803,"85":0.00268,"86":0.00268,"87":0,"88":0,"89":0.0107,"90":0.00803,"91":0,"92":0.01605,"93":0,"94":0,"95":0.00268,"96":0.00268,"97":0.00268,"98":0.00268,"99":0.00535,"100":0.00535,"101":0.01873,"102":0.0535,"103":0.65805,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.00535,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01873,"10.1":0.00268,"11.1":0.00268,"12.1":0,"13.1":0.00535,"14.1":0.0107,"15.1":0.00268,"15.2-15.3":0.00268,"15.4":0.00803,"15.5":0.03478,"15.6":0.00268,"16.0":0},G:{"8":0.00572,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00164,"5.0-5.1":0.00654,"6.0-6.1":0,"7.0-7.1":0.02372,"8.1-8.4":0,"9.0-9.2":0.00409,"9.3":0.15456,"10.0-10.2":0.009,"10.3":0.10876,"11.0-11.2":0.03026,"11.3-11.4":0.01963,"12.0-12.1":0.04825,"12.2-12.5":1.39512,"13.0-13.1":0.02944,"13.2":0.01308,"13.3":0.04743,"13.4-13.7":0.10795,"14.0-14.4":0.54627,"14.5-14.8":0.85866,"15.0-15.1":0.44814,"15.2-15.3":0.5569,"15.4":0.61987,"15.5":2.99549,"16.0":0.02372},P:{"4":0.20576,"5.0-5.4":0.02058,"6.2-6.4":0.01029,"7.2-7.4":0.13374,"8.2":0,"9.2":0.03086,"10.1":0,"11.1-11.2":0.03086,"12.0":0,"13.0":0.12346,"14.0":0.06173,"15.0":0.04115,"16.0":0.19547,"17.0":0.97735,"18.0":0},I:{"0":0,"3":0,"4":0.00245,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00201,"4.2-4.3":0.0049,"4.4":0,"4.4.3-4.4.4":0.13612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.00292,"9":0,"10":0.00292,"11":0.02626,"5.5":0},J:{"7":0,"10":0.02198},N:{"10":0,"11":0},L:{"0":63.74845},S:{"2.5":0.01465},R:{_:"0"},M:{"0":0.19778},Q:{"10.4":0.0293},O:{"0":2.1389},H:{"0":13.12765}}; 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 10b78f5de4aaa20..751bf078c5ce6a8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js @@ -1 +1 @@ -module.exports={C:{"34":0.00769,"47":0.00385,"52":0.01539,"56":0.00385,"57":0.00769,"68":0.00385,"72":0.01539,"78":0.01154,"87":0.00385,"88":0.03847,"89":0.01154,"90":0.00385,"91":0.02693,"94":0.00769,"96":0.00385,"97":0.00769,"98":0.00769,"99":0.03462,"100":0.03462,"101":0.17696,"102":1.93889,"103":0.29622,"104":0.01539,_:"2 3 4 5 6 7 8 9 10 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 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 92 93 95 105 3.5 3.6"},D:{"11":0.00385,"20":0.00385,"49":0.00769,"55":0.00769,"56":0.00385,"58":0.01154,"62":0.00385,"63":0.02308,"68":0.01924,"69":0.01539,"70":0.01539,"71":0.00769,"72":0.00769,"73":0.00769,"74":0.03847,"75":0.01154,"76":0.02308,"77":0.01154,"78":0.01154,"79":0.03078,"80":0.02308,"81":0.01924,"83":0.02308,"84":0.01154,"85":0.02693,"86":0.05001,"87":0.03462,"88":0.01924,"89":0.01924,"90":0.03078,"91":0.02693,"92":0.03847,"93":0.03078,"94":0.04616,"95":0.02693,"96":0.03847,"97":0.05771,"98":0.08848,"99":0.07694,"100":0.11926,"101":0.19235,"102":0.91174,"103":16.14201,"104":0.03462,"105":0.01154,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 61 64 65 66 67 106 107"},F:{"36":0.01924,"42":0.00769,"64":0.00385,"69":0.00769,"79":0.05001,"82":0.01154,"83":0.00769,"84":0.01539,"85":0.03462,"86":0.04232,"87":0.04616,"88":0.90405,"89":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 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 70 71 72 73 74 75 76 77 78 80 81 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.07309,"13":0.02693,"14":0.01924,"15":0.02693,"16":0.05386,"17":0.02693,"18":0.15388,"84":0.03847,"85":0.01924,"89":0.03078,"90":0.01924,"91":0.00385,"92":0.07694,"96":0.02693,"97":0.01154,"98":0.01154,"99":0.03078,"100":0.03078,"101":0.11541,"102":0.20389,"103":3.79314,_:"79 80 81 83 86 87 88 93 94 95"},E:{"4":0,"13":0.01539,"14":0.05001,"15":0.04232,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.03078,"11.1":0.00769,"12.1":0.00769,"13.1":0.04232,"14.1":0.27698,"15.1":0.03462,"15.2-15.3":0.02693,"15.4":0.08463,"15.5":0.43471,"15.6":0.01154,"16.0":0.00385},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0.00226,"6.0-6.1":0.00075,"7.0-7.1":0.01131,"8.1-8.4":0.00151,"9.0-9.2":0.00226,"9.3":0.07235,"10.0-10.2":0.00452,"10.3":0.03693,"11.0-11.2":0.01055,"11.3-11.4":0.01206,"12.0-12.1":0.02336,"12.2-12.5":0.51176,"13.0-13.1":0.01734,"13.2":0.00678,"13.3":0.04748,"13.4-13.7":0.1025,"14.0-14.4":0.40097,"14.5-14.8":0.64516,"15.0-15.1":0.2849,"15.2-15.3":0.45372,"15.4":0.5713,"15.5":4.19055,"16.0":0.02789},P:{"4":0.19125,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.18063,"8.2":0.01014,"9.2":0.03155,"10.1":0.03043,"11.1-11.2":0.06375,"12.0":0.0425,"13.0":0.05313,"14.0":0.09563,"15.0":0.0425,"16.0":0.17,"17.0":1.33877},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.00601,"4.4":0,"4.4.3-4.4.4":0.11504},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01154,"11":0.08848,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.23997},Q:{"10.4":0.05538},O:{"0":1.77206},H:{"0":7.50294},L:{"0":50.82012},S:{"2.5":0.01231}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0.00392,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0.00392,"48":0,"49":0,"50":0,"51":0,"52":0.00392,"53":0,"54":0,"55":0,"56":0,"57":0.00392,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0.00392,"69":0,"70":0,"71":0,"72":0.00392,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00392,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0.00392,"88":0.0196,"89":0.00392,"90":0.00392,"91":0.01176,"92":0,"93":0,"94":0.00392,"95":0.00392,"96":0.00392,"97":0.00392,"98":0.00392,"99":0.0196,"100":0.01568,"101":0.07838,"102":0.81123,"103":0.11757,"104":0.00784,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.00784,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.0196,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00392,"47":0,"48":0,"49":0.00392,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0.01176,"56":0,"57":0,"58":0.00392,"59":0,"60":0,"61":0,"62":0,"63":0.00784,"64":0.00392,"65":0,"66":0,"67":0,"68":0.00784,"69":0.00784,"70":0.00784,"71":0.00392,"72":0.00392,"73":0.00392,"74":0.01568,"75":0.00392,"76":0.00784,"77":0.00392,"78":0.00784,"79":0.0196,"80":0.00784,"81":0.03919,"83":0.00784,"84":0.00392,"85":0.01176,"86":0.0196,"87":0.01568,"88":0.00784,"89":0.00784,"90":0.01176,"91":0.01176,"92":0.01568,"93":0.01176,"94":0.0196,"95":0.0196,"96":0.01568,"97":0.02351,"98":0.03527,"99":0.03135,"100":0.05095,"101":0.07838,"102":0.36447,"103":6.35662,"104":0.01176,"105":0.00392,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0.00392,"27":0,"28":0.01568,"29":0,"30":0.01176,"31":0.00392,"32":0.00392,"33":0.00392,"34":0,"35":0.03135,"36":0.00784,"37":0.00392,"38":0.00784,"39":0,"40":0,"41":0.00392,"42":0.01568,"43":0,"44":0,"45":0.00392,"46":0.00784,"47":0.00392,"48":0,"49":0,"50":0.02351,"51":0.00784,"52":0,"53":0,"54":0.0823,"55":0.00392,"56":0.00784,"57":0.01568,"58":0.09406,"60":0.21555,"62":0,"63":0.85434,"64":0.05487,"65":0,"66":0,"67":0,"68":0,"69":0.00784,"70":0.00392,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0.0196,"80":0,"81":0,"82":0.00392,"83":0.00392,"84":0.00392,"85":0.01176,"86":0.01568,"87":0.0196,"88":0.35271,"89":0.23122,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0.01176,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0.15284},B:{"12":0.02743,"13":0.01176,"14":0.00784,"15":0.01176,"16":0.0196,"17":0.01176,"18":0.05879,"79":0,"80":0,"81":0,"83":0,"84":0.01568,"85":0.00784,"86":0,"87":0,"88":0,"89":0.01176,"90":0.00784,"91":0,"92":0.03135,"93":0,"94":0,"95":0,"96":0.01176,"97":0.00392,"98":0.00392,"99":0.01176,"100":0.01176,"101":0.04703,"102":0.0823,"103":1.49706,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.00784,"14":0.0196,"15":0.01568,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0.01176,"10.1":0,"11.1":0.00392,"12.1":0.00392,"13.1":0.01568,"14.1":0.10973,"15.1":0.01176,"15.2-15.3":0.01176,"15.4":0.03135,"15.5":0.16852,"15.6":0.00392,"16.0":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00326,"6.0-6.1":0.00109,"7.0-7.1":0.0163,"8.1-8.4":0.00217,"9.0-9.2":0.00326,"9.3":0.10429,"10.0-10.2":0.00652,"10.3":0.05323,"11.0-11.2":0.01521,"11.3-11.4":0.01738,"12.0-12.1":0.03368,"12.2-12.5":0.73763,"13.0-13.1":0.02499,"13.2":0.00978,"13.3":0.06844,"13.4-13.7":0.14774,"14.0-14.4":0.57794,"14.5-14.8":0.92992,"15.0-15.1":0.41064,"15.2-15.3":0.65398,"15.4":0.82345,"15.5":6.0401,"16.0":0.04019},P:{"4":0.18629,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.17594,"8.2":0,"9.2":0.0207,"10.1":0,"11.1-11.2":0.0621,"12.0":0.0414,"13.0":0.0621,"14.0":0.09314,"15.0":0.0414,"16.0":0.16559,"17.0":1.28332,"18.0":0.01035},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0037,"4.2-4.3":0.01111,"4.4":0,"4.4.3-4.4.4":0.21262},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0.00392,"11":0.03527,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":60.5512},S:{"2.5":0.01216},R:{_:"0"},M:{"0":0.23716},Q:{"10.4":0.05473},O:{"0":1.75133},H:{"0":7.41514}}; 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 08d4fe65fa2b378..deec6b7ca6e2056 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js @@ -1 +1 @@ -module.exports={C:{"34":0.00777,"43":0.00518,"47":0.00518,"48":0.00259,"52":0.06478,"56":0.00518,"60":0.00259,"65":0.00518,"68":0.00259,"72":0.00777,"78":0.01296,"81":0.00259,"84":0.01036,"87":0.00518,"88":0.00518,"89":0.00518,"91":0.0285,"92":0.00259,"93":0.00259,"94":0.00777,"95":0.00777,"96":0.00518,"97":0.00777,"98":0.00518,"99":0.02591,"100":0.02332,"101":0.09328,"102":1.42764,"103":0.18914,"104":0.00518,_:"2 3 4 5 6 7 8 9 10 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 57 58 59 61 62 63 64 66 67 69 70 71 73 74 75 76 77 79 80 82 83 85 86 90 105 3.5 3.6"},D:{"11":0.00259,"25":0.00259,"33":0.00259,"38":0.00518,"40":0.00518,"43":0.04405,"46":0.00518,"47":0.00518,"49":0.03368,"50":0.00518,"52":0.00518,"53":0.00259,"55":0.00518,"56":0.00777,"58":0.00518,"60":0.00518,"62":0.00259,"63":0.01036,"64":0.00518,"65":0.00777,"66":0.00259,"67":0.01296,"68":0.00777,"69":0.0285,"70":0.01296,"71":0.00518,"72":0.01296,"73":0.00518,"74":0.01814,"75":0.01036,"76":0.01296,"77":0.01036,"78":0.01036,"79":0.06478,"80":0.02332,"81":0.03109,"83":0.01814,"84":0.01814,"85":0.0285,"86":0.04146,"87":0.05441,"88":0.01814,"89":0.02591,"90":0.01814,"91":0.03368,"92":0.03887,"93":0.02332,"94":0.02073,"95":0.02591,"96":0.04664,"97":0.04664,"98":0.06737,"99":0.06996,"100":0.09328,"101":0.13214,"102":0.71512,"103":12.71922,"104":0.02073,"105":0.01296,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 48 51 54 57 59 61 106 107"},F:{"28":0.00777,"64":0.00518,"70":0.00518,"72":0.00259,"73":0.00518,"79":0.02332,"80":0.00518,"81":0.00518,"82":0.01036,"83":0.00518,"84":0.01036,"85":0.0285,"86":0.02332,"87":0.0285,"88":0.4327,"89":0.23837,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 71 74 75 76 77 78 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01814,"13":0.00777,"14":0.00777,"15":0.00777,"16":0.01036,"17":0.01036,"18":0.04405,"84":0.01036,"85":0.00518,"89":0.00777,"90":0.00777,"91":0.00259,"92":0.02332,"95":0.00518,"96":0.00518,"97":0.00518,"98":0.00777,"99":0.01036,"100":0.01296,"101":0.04146,"102":0.07255,"103":2.09094,_:"79 80 81 83 86 87 88 93 94"},E:{"4":0,"13":0.01036,"14":0.03627,"15":0.01296,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00518,"9.1":0.00518,"10.1":0.00259,"11.1":0.00777,"12.1":0.01296,"13.1":0.05959,"14.1":0.09328,"15.1":0.02073,"15.2-15.3":0.02073,"15.4":0.06218,"15.5":0.37051,"15.6":0.02073,"16.0":0.00259},G:{"8":0.00179,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00357,"6.0-6.1":0.00179,"7.0-7.1":0.02054,"8.1-8.4":0.00268,"9.0-9.2":0.00179,"9.3":0.06699,"10.0-10.2":0.00625,"10.3":0.07234,"11.0-11.2":0.03037,"11.3-11.4":0.02233,"12.0-12.1":0.03305,"12.2-12.5":0.70825,"13.0-13.1":0.02679,"13.2":0.01161,"13.3":0.06252,"13.4-13.7":0.1304,"14.0-14.4":0.50373,"14.5-14.8":0.74309,"15.0-15.1":0.36261,"15.2-15.3":0.4546,"15.4":0.6118,"15.5":4.81756,"16.0":0.05359},P:{"4":0.22688,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.27844,"8.2":0.01014,"9.2":0.03094,"10.1":0.01031,"11.1-11.2":0.0825,"12.0":0.04125,"13.0":0.11344,"14.0":0.14438,"15.0":0.07219,"16.0":0.28876,"17.0":3.05258},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00367,"4.2-4.3":0.00917,"4.4":0,"4.4.3-4.4.4":0.07608},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00264,"9":0.00528,"11":0.13459,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.31118},Q:{"10.4":0},O:{"0":0.73349},H:{"0":7.59655},L:{"0":56.23012},S:{"2.5":0.02223}}; +module.exports={C:{"34":0.00777,"43":0.00518,"47":0.00518,"48":0.00259,"52":0.06478,"56":0.00518,"60":0.00259,"65":0.00518,"68":0.00259,"72":0.00777,"78":0.01296,"81":0.00259,"84":0.01036,"87":0.00518,"88":0.00518,"89":0.00518,"91":0.0285,"92":0.00259,"93":0.00259,"94":0.00777,"95":0.00777,"96":0.00518,"97":0.00777,"98":0.00518,"99":0.02591,"100":0.02332,"101":0.09328,"102":1.42764,"103":0.18914,"104":0.00518,_:"2 3 4 5 6 7 8 9 10 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 57 58 59 61 62 63 64 66 67 69 70 71 73 74 75 76 77 79 80 82 83 85 86 90 105 3.5 3.6"},D:{"11":0.00259,"25":0.00259,"33":0.00259,"38":0.00518,"40":0.00518,"43":0.04405,"46":0.00518,"47":0.00518,"49":0.03368,"50":0.00518,"52":0.00518,"53":0.00259,"55":0.00518,"56":0.00777,"58":0.00518,"60":0.00518,"62":0.00259,"63":0.01036,"64":0.00518,"65":0.00777,"66":0.00259,"67":0.01296,"68":0.00777,"69":0.0285,"70":0.01296,"71":0.00518,"72":0.01296,"73":0.00518,"74":0.01814,"75":0.01036,"76":0.01296,"77":0.01036,"78":0.01036,"79":0.06478,"80":0.02332,"81":0.03109,"83":0.01814,"84":0.01814,"85":0.0285,"86":0.04146,"87":0.05441,"88":0.01814,"89":0.02591,"90":0.01814,"91":0.03368,"92":0.03887,"93":0.02332,"94":0.02073,"95":0.02591,"96":0.04664,"97":0.04664,"98":0.06737,"99":0.06996,"100":0.09328,"101":0.13214,"102":0.71512,"103":12.71922,"104":0.02073,"105":0.01296,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 48 51 54 57 59 61 106 107"},F:{"28":0.00777,"64":0.00518,"70":0.00518,"72":0.00259,"73":0.00518,"79":0.02332,"80":0.00518,"81":0.00518,"82":0.01036,"83":0.00518,"84":0.01036,"85":0.0285,"86":0.02332,"87":0.0285,"88":0.4327,"89":0.23837,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 71 74 75 76 77 78 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.01814,"13":0.00777,"14":0.00777,"15":0.00777,"16":0.01036,"17":0.01036,"18":0.04405,"84":0.01036,"85":0.00518,"89":0.00777,"90":0.00777,"91":0.00259,"92":0.02332,"95":0.00518,"96":0.00518,"97":0.00518,"98":0.00777,"99":0.01036,"100":0.01296,"101":0.04146,"102":0.07255,"103":2.09094,_:"79 80 81 83 86 87 88 93 94 104"},E:{"4":0,"13":0.01036,"14":0.03627,"15":0.01296,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.00518,"9.1":0.00518,"10.1":0.00259,"11.1":0.00777,"12.1":0.01296,"13.1":0.05959,"14.1":0.09328,"15.1":0.02073,"15.2-15.3":0.02073,"15.4":0.06218,"15.5":0.37051,"15.6":0.02073,"16.0":0.00259},G:{"8":0.00179,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00357,"6.0-6.1":0.00179,"7.0-7.1":0.02054,"8.1-8.4":0.00268,"9.0-9.2":0.00179,"9.3":0.06699,"10.0-10.2":0.00625,"10.3":0.07234,"11.0-11.2":0.03037,"11.3-11.4":0.02233,"12.0-12.1":0.03305,"12.2-12.5":0.70825,"13.0-13.1":0.02679,"13.2":0.01161,"13.3":0.06252,"13.4-13.7":0.1304,"14.0-14.4":0.50373,"14.5-14.8":0.74309,"15.0-15.1":0.36261,"15.2-15.3":0.4546,"15.4":0.6118,"15.5":4.81756,"16.0":0.05359},P:{"4":0.22688,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.27844,"8.2":0,"9.2":0.03094,"10.1":0.01031,"11.1-11.2":0.0825,"12.0":0.04125,"13.0":0.11344,"14.0":0.14438,"15.0":0.07219,"16.0":0.28876,"17.0":3.05258,"18.0":0.01035},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00367,"4.2-4.3":0.00917,"4.4":0,"4.4.3-4.4.4":0.07608},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00264,"9":0.00528,"11":0.13459,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":56.23012},S:{"2.5":0.02223},R:{_:"0"},M:{"0":0.31118},Q:{"10.4":0},O:{"0":0.73349},H:{"0":7.59655}}; 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 dab3da10e8a364a..0a7ea9d6a190e51 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:{"102":0.80111,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 3.5 3.6"},D:{"103":0.22777,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103"},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1","15.1":0.22777,"15.2-15.3":2.74105,"15.4":58.39449,"15.5":14.21574,"15.6":0.73828,"16.0":0.34558},G:{"8":0,"3.2":0,"4.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.46756,"15.2-15.3":4.73254,"15.4":0.29273,"15.5":2.102,"16.0":12.26639},P:{"4":0.22688,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.27844,"8.2":0.01014,"9.2":0.03094,"10.1":0.01031,"11.1-11.2":0.0825,"12.0":0.04125,"13.0":0.11344,"14.0":0.14438,"15.0":0.07219,"16.0":0.28876,"17.0":3.05258},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0},L:{"0":1.99932},S:{"2.5":0}}; +module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,"104":0,"105":0,"106":0,_:"107"},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0,"102":0,"103":0,_:"104"},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0,"13.1":0,"14.1":0,"15.1":0.19085,"15.2-15.3":2.25042,"15.4":47.87899,"15.5":11.65763,"15.6":0.6123,"16.0":0.27832},G:{"8":0,"3.2":0,"4.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.86552,"15.2-15.3":8.76055,"15.4":0.54189,"15.5":3.89107,"16.0":22.70667},P:{"4":0,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0,"15.0":0,"16.0":0,"17.0":0,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; 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 a65fb19c0c01a38..e34c298571bba08 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.00578,"36":0.01444,"43":0.19927,"47":0.00289,"52":0.05487,"56":0.00289,"72":0.00578,"78":0.01155,"79":0.00289,"80":0.00289,"81":0.00289,"84":0.00289,"88":0.00578,"89":0.00289,"90":0.00289,"91":0.02022,"94":0.00289,"95":0.00289,"96":0.00578,"97":0.00578,"98":0.00578,"99":0.01733,"100":0.01733,"101":0.06354,"102":1.02235,"103":0.1444,"104":0.00578,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 82 83 85 86 87 92 93 105 3.5 3.6"},D:{"22":0.00578,"26":0.00578,"34":0.01444,"35":0.00289,"38":0.02888,"41":0.00289,"42":0.00578,"47":0.01155,"48":0.00866,"49":0.04332,"53":0.01733,"55":0.00866,"56":0.00866,"57":0.00578,"58":0.00289,"60":0.00289,"61":0.00578,"62":0.00578,"63":0.01155,"64":0.00289,"65":0.00866,"66":0.00578,"67":0.00866,"68":0.00866,"69":0.10397,"70":0.06354,"71":0.02022,"72":0.03466,"73":0.01155,"74":0.0722,"75":0.01733,"76":0.00866,"77":0.02022,"78":0.03466,"79":0.14151,"80":0.03466,"81":0.02888,"83":0.05198,"84":0.03177,"85":0.04043,"86":0.06354,"87":0.06642,"88":0.02022,"89":0.04043,"90":0.02888,"91":0.03466,"92":0.0722,"93":0.01733,"94":0.04043,"95":0.02888,"96":0.0722,"97":0.08086,"98":0.06354,"99":0.06931,"100":0.10686,"101":0.16462,"102":0.71622,"103":16.32298,"104":0.0231,"105":0.01444,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 43 44 45 46 50 51 52 54 59 106 107"},F:{"28":0.01155,"36":0.00578,"40":0.00866,"46":0.02022,"79":0.00289,"85":0.01155,"86":0.00578,"87":0.00866,"88":0.24837,"89":0.1213,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00289,"16":0.00289,"17":0.00289,"18":0.01733,"84":0.00289,"89":0.00289,"90":0.00289,"92":0.00866,"96":0.00289,"97":0.00289,"98":0.00578,"99":0.00866,"100":0.00866,"101":0.0231,"102":0.05487,"103":2.15734,_:"13 14 15 79 80 81 83 85 86 87 88 91 93 94 95"},E:{"4":0,"13":0.02022,"14":0.0722,"15":0.02022,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01444,"9.1":0.01155,"10.1":0.00289,"11.1":0.00866,"12.1":0.01444,"13.1":0.06931,"14.1":0.18483,"15.1":0.03466,"15.2-15.3":0.03177,"15.4":0.13862,"15.5":0.82308,"15.6":0.02888,"16.0":0.00578},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0053,"5.0-5.1":0.00636,"6.0-6.1":0.0053,"7.0-7.1":0.01802,"8.1-8.4":0.00742,"9.0-9.2":0.02332,"9.3":0.05831,"10.0-10.2":0.00954,"10.3":0.07845,"11.0-11.2":0.05513,"11.3-11.4":0.02438,"12.0-12.1":0.03605,"12.2-12.5":0.5672,"13.0-13.1":0.02544,"13.2":0.01272,"13.3":0.05619,"13.4-13.7":0.20249,"14.0-14.4":0.51843,"14.5-14.8":0.90857,"15.0-15.1":0.3488,"15.2-15.3":0.49828,"15.4":0.87889,"15.5":5.96456,"16.0":0.05301},P:{"4":0.2992,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.09286,"8.2":0.01014,"9.2":0.03095,"10.1":0.01031,"11.1-11.2":0.05159,"12.0":0.02063,"13.0":0.10317,"14.0":0.09286,"15.0":0.05159,"16.0":0.19603,"17.0":1.99126},I:{"0":0,"3":0,"4":0.02992,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04488,"4.2-4.3":0.10472,"4.4":0,"4.4.3-4.4.4":0.68815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01711,"9":0.04277,"11":0.83829,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.16358},Q:{"10.4":0.51918},O:{"0":2.03403},H:{"0":0.95611},L:{"0":54.80498},S:{"2.5":0.06401}}; +module.exports={C:{"34":0.00578,"36":0.01444,"43":0.19927,"47":0.00289,"52":0.05487,"56":0.00289,"72":0.00578,"78":0.01155,"79":0.00289,"80":0.00289,"81":0.00289,"84":0.00289,"88":0.00578,"89":0.00289,"90":0.00289,"91":0.02022,"94":0.00289,"95":0.00289,"96":0.00578,"97":0.00578,"98":0.00578,"99":0.01733,"100":0.01733,"101":0.06354,"102":1.02235,"103":0.1444,"104":0.00578,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 82 83 85 86 87 92 93 105 3.5 3.6"},D:{"22":0.00578,"26":0.00578,"34":0.01444,"35":0.00289,"38":0.02888,"41":0.00289,"42":0.00578,"47":0.01155,"48":0.00866,"49":0.04332,"53":0.01733,"55":0.00866,"56":0.00866,"57":0.00578,"58":0.00289,"60":0.00289,"61":0.00578,"62":0.00578,"63":0.01155,"64":0.00289,"65":0.00866,"66":0.00578,"67":0.00866,"68":0.00866,"69":0.10397,"70":0.06354,"71":0.02022,"72":0.03466,"73":0.01155,"74":0.0722,"75":0.01733,"76":0.00866,"77":0.02022,"78":0.03466,"79":0.14151,"80":0.03466,"81":0.02888,"83":0.05198,"84":0.03177,"85":0.04043,"86":0.06354,"87":0.06642,"88":0.02022,"89":0.04043,"90":0.02888,"91":0.03466,"92":0.0722,"93":0.01733,"94":0.04043,"95":0.02888,"96":0.0722,"97":0.08086,"98":0.06354,"99":0.06931,"100":0.10686,"101":0.16462,"102":0.71622,"103":16.32298,"104":0.0231,"105":0.01444,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 43 44 45 46 50 51 52 54 59 106 107"},F:{"28":0.01155,"36":0.00578,"40":0.00866,"46":0.02022,"79":0.00289,"85":0.01155,"86":0.00578,"87":0.00866,"88":0.24837,"89":0.1213,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00289,"16":0.00289,"17":0.00289,"18":0.01733,"84":0.00289,"89":0.00289,"90":0.00289,"92":0.00866,"96":0.00289,"97":0.00289,"98":0.00578,"99":0.00866,"100":0.00866,"101":0.0231,"102":0.05487,"103":2.15734,_:"13 14 15 79 80 81 83 85 86 87 88 91 93 94 95 104"},E:{"4":0,"13":0.02022,"14":0.0722,"15":0.02022,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01444,"9.1":0.01155,"10.1":0.00289,"11.1":0.00866,"12.1":0.01444,"13.1":0.06931,"14.1":0.18483,"15.1":0.03466,"15.2-15.3":0.03177,"15.4":0.13862,"15.5":0.82308,"15.6":0.02888,"16.0":0.00578},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0053,"5.0-5.1":0.00636,"6.0-6.1":0.0053,"7.0-7.1":0.01802,"8.1-8.4":0.00742,"9.0-9.2":0.02332,"9.3":0.05831,"10.0-10.2":0.00954,"10.3":0.07845,"11.0-11.2":0.05513,"11.3-11.4":0.02438,"12.0-12.1":0.03605,"12.2-12.5":0.5672,"13.0-13.1":0.02544,"13.2":0.01272,"13.3":0.05619,"13.4-13.7":0.20249,"14.0-14.4":0.51843,"14.5-14.8":0.90857,"15.0-15.1":0.3488,"15.2-15.3":0.49828,"15.4":0.87889,"15.5":5.96456,"16.0":0.05301},P:{"4":0.2992,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09286,"8.2":0,"9.2":0.03095,"10.1":0,"11.1-11.2":0.05159,"12.0":0.02063,"13.0":0.10317,"14.0":0.09286,"15.0":0.05159,"16.0":0.19603,"17.0":1.99126,"18.0":0},I:{"0":0,"3":0,"4":0.02992,"2.1":0,"2.2":0,"2.3":0,"4.1":0.04488,"4.2-4.3":0.10472,"4.4":0,"4.4.3-4.4.4":0.68815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01711,"9":0.04277,"11":0.83829,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":54.80498},S:{"2.5":0.06401},R:{_:"0"},M:{"0":0.16358},Q:{"10.4":0.51918},O:{"0":2.03403},H:{"0":0.95611}}; 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 bc2cdabb8f8ae82..1e48c2041b5a81e 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.00924,"50":0.00462,"52":0.09702,"53":0.00462,"56":0.00924,"59":0.00924,"60":0.00462,"68":0.01848,"72":0.00924,"77":0.01386,"78":0.06468,"79":0.00924,"80":0.00924,"81":0.0462,"82":0.00924,"83":0.00924,"84":0.00924,"86":0.00924,"87":0.01386,"88":0.01386,"89":0.00924,"90":0.01386,"91":0.12936,"92":0.00924,"93":0.00924,"94":0.06006,"95":0.0231,"96":0.01386,"97":0.01386,"98":0.01848,"99":0.04158,"100":0.05544,"101":0.2541,"102":4.5969,"103":0.38346,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 104 105 3.5 3.6"},D:{"22":0.01386,"34":0.00924,"38":0.01386,"40":0.0462,"43":0.00462,"47":0.01386,"48":0.00462,"49":0.07392,"51":0.00924,"52":0.01386,"53":0.00462,"54":0.00462,"56":0.01386,"59":0.00462,"60":0.03696,"61":0.00924,"62":0.00924,"63":0.01386,"64":0.00462,"65":0.01848,"66":0.05082,"67":0.01386,"68":0.01386,"69":0.06006,"70":0.00924,"71":0.00924,"72":0.00924,"73":0.00462,"74":0.01386,"75":0.17556,"76":0.0231,"77":0.01848,"78":0.03234,"79":0.14784,"80":0.07854,"81":0.02772,"83":0.05082,"84":0.07854,"85":0.13398,"86":0.07854,"87":0.10626,"88":0.0231,"89":0.0462,"90":0.03234,"91":0.06006,"92":0.05082,"93":0.0462,"94":0.06006,"95":0.03696,"96":0.09702,"97":0.07854,"98":0.0924,"99":0.11088,"100":0.22638,"101":0.3234,"102":1.46454,"103":21.5985,"104":0.01848,"105":0.00924,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 44 45 46 50 55 57 58 106 107"},F:{"31":0.0231,"36":0.00462,"40":0.0231,"46":0.01386,"68":0.00462,"79":0.00462,"82":0.00462,"84":0.00924,"85":0.07854,"86":0.01848,"87":0.06006,"88":1.5708,"89":0.5544,_:"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 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00924,"17":0.00924,"18":0.02772,"84":0.00462,"85":0.00462,"86":0.00462,"92":0.00924,"95":0.00462,"96":0.00924,"97":0.00924,"98":0.00924,"99":0.01386,"100":0.0231,"101":0.09702,"102":0.20328,"103":5.31762,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94"},E:{"4":0,"13":0.03234,"14":0.14784,"15":0.0462,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00924,"10.1":0.00462,"11.1":0.03234,"12.1":0.05082,"13.1":0.22176,"14.1":0.4158,"15.1":0.08316,"15.2-15.3":0.08316,"15.4":0.30492,"15.5":2.17602,"15.6":0.08316,"16.0":0.00924},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00642,"6.0-6.1":0.0016,"7.0-7.1":0.01444,"8.1-8.4":0.00321,"9.0-9.2":0.01284,"9.3":0.09628,"10.0-10.2":0.00321,"10.3":0.09949,"11.0-11.2":0.03049,"11.3-11.4":0.03851,"12.0-12.1":0.01765,"12.2-12.5":0.5183,"13.0-13.1":0.01605,"13.2":0.00802,"13.3":0.03851,"13.4-13.7":0.12837,"14.0-14.4":0.37067,"14.5-14.8":1.13929,"15.0-15.1":0.28563,"15.2-15.3":0.64667,"15.4":0.97241,"15.5":11.2437,"16.0":0.07702},P:{"4":0.12567,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.09286,"8.2":0.01014,"9.2":0.03095,"10.1":0.01031,"11.1-11.2":0.04189,"12.0":0.02095,"13.0":0.06284,"14.0":0.07331,"15.0":0.21993,"16.0":0.14662,"17.0":3.03713},I:{"0":0,"3":0,"4":0.00733,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01648,"4.2-4.3":0.01099,"4.4":0,"4.4.3-4.4.4":0.05128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0096,"9":0.01919,"11":0.22069,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.48958},Q:{"10.4":0.00538},O:{"0":0.1345},H:{"0":0.60103},L:{"0":33.22576},S:{"2.5":0}}; +module.exports={C:{"48":0.00924,"50":0.00462,"52":0.09702,"53":0.00462,"56":0.00924,"59":0.00924,"60":0.00462,"68":0.01848,"72":0.00924,"77":0.01386,"78":0.06468,"79":0.00924,"80":0.00924,"81":0.0462,"82":0.00924,"83":0.00924,"84":0.00924,"86":0.00924,"87":0.01386,"88":0.01386,"89":0.00924,"90":0.01386,"91":0.12936,"92":0.00924,"93":0.00924,"94":0.06006,"95":0.0231,"96":0.01386,"97":0.01386,"98":0.01848,"99":0.04158,"100":0.05544,"101":0.2541,"102":4.5969,"103":0.38346,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 104 105 3.5 3.6"},D:{"22":0.01386,"34":0.00924,"38":0.01386,"40":0.0462,"43":0.00462,"47":0.01386,"48":0.00462,"49":0.07392,"51":0.00924,"52":0.01386,"53":0.00462,"54":0.00462,"56":0.01386,"59":0.00462,"60":0.03696,"61":0.00924,"62":0.00924,"63":0.01386,"64":0.00462,"65":0.01848,"66":0.05082,"67":0.01386,"68":0.01386,"69":0.06006,"70":0.00924,"71":0.00924,"72":0.00924,"73":0.00462,"74":0.01386,"75":0.17556,"76":0.0231,"77":0.01848,"78":0.03234,"79":0.14784,"80":0.07854,"81":0.02772,"83":0.05082,"84":0.07854,"85":0.13398,"86":0.07854,"87":0.10626,"88":0.0231,"89":0.0462,"90":0.03234,"91":0.06006,"92":0.05082,"93":0.0462,"94":0.06006,"95":0.03696,"96":0.09702,"97":0.07854,"98":0.0924,"99":0.11088,"100":0.22638,"101":0.3234,"102":1.46454,"103":21.5985,"104":0.01848,"105":0.00924,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 44 45 46 50 55 57 58 106 107"},F:{"31":0.0231,"36":0.00462,"40":0.0231,"46":0.01386,"68":0.00462,"79":0.00462,"82":0.00462,"84":0.00924,"85":0.07854,"86":0.01848,"87":0.06006,"88":1.5708,"89":0.5544,_:"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 76 77 78 80 81 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.00924,"17":0.00924,"18":0.02772,"84":0.00462,"85":0.00462,"86":0.00462,"92":0.00924,"95":0.00462,"96":0.00924,"97":0.00924,"98":0.00924,"99":0.01386,"100":0.0231,"101":0.09702,"102":0.20328,"103":5.31762,_:"12 13 14 16 79 80 81 83 87 88 89 90 91 93 94 104"},E:{"4":0,"13":0.03234,"14":0.14784,"15":0.0462,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00924,"10.1":0.00462,"11.1":0.03234,"12.1":0.05082,"13.1":0.22176,"14.1":0.4158,"15.1":0.08316,"15.2-15.3":0.08316,"15.4":0.30492,"15.5":2.17602,"15.6":0.08316,"16.0":0.00924},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00642,"6.0-6.1":0.0016,"7.0-7.1":0.01444,"8.1-8.4":0.00321,"9.0-9.2":0.01284,"9.3":0.09628,"10.0-10.2":0.00321,"10.3":0.09949,"11.0-11.2":0.03049,"11.3-11.4":0.03851,"12.0-12.1":0.01765,"12.2-12.5":0.5183,"13.0-13.1":0.01605,"13.2":0.00802,"13.3":0.03851,"13.4-13.7":0.12837,"14.0-14.4":0.37067,"14.5-14.8":1.13929,"15.0-15.1":0.28563,"15.2-15.3":0.64667,"15.4":0.97241,"15.5":11.2437,"16.0":0.07702},P:{"4":0.12567,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09286,"8.2":0,"9.2":0.03095,"10.1":0,"11.1-11.2":0.04189,"12.0":0.02095,"13.0":0.06284,"14.0":0.07331,"15.0":0.21993,"16.0":0.14662,"17.0":3.03713,"18.0":0},I:{"0":0,"3":0,"4":0.00733,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01648,"4.2-4.3":0.01099,"4.4":0,"4.4.3-4.4.4":0.05128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0096,"9":0.01919,"11":0.22069,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":33.22576},S:{"2.5":0},R:{_:"0"},M:{"0":0.48958},Q:{"10.4":0.00538},O:{"0":0.1345},H:{"0":0.60103}}; 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 c4f47200adce71f..6c895f9b07bdb12 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.07026,"11":0.02635,"38":0.00439,"43":0.00439,"44":0.02196,"45":0.00878,"48":0.00439,"52":0.04391,"54":0.00878,"56":0.00878,"59":0.00439,"78":0.05708,"79":0.00439,"80":0.00439,"81":0.00878,"82":0.00439,"83":0.00439,"84":0.00439,"85":0.00439,"87":0.00439,"88":0.00878,"89":0.01317,"90":0.00439,"91":0.08343,"94":0.02196,"95":0.01317,"96":0.00439,"97":0.00878,"98":0.00878,"99":0.01756,"100":0.03074,"101":0.17564,"102":2.00669,"103":0.18442,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 86 92 93 104 105 3.5 3.6"},D:{"35":0.00878,"38":0.00439,"40":0.02196,"41":0.00439,"47":0.00878,"48":0.06147,"49":0.05708,"52":0.00878,"56":0.09221,"58":0.00439,"59":0.00439,"60":0.00878,"61":0.02196,"62":0.00439,"63":0.00878,"65":0.01756,"66":0.05708,"67":0.01317,"68":0.00439,"69":0.01756,"70":0.00878,"72":0.00878,"74":0.01317,"75":0.01317,"76":0.1976,"77":0.00878,"78":0.03513,"79":0.28981,"80":0.06587,"81":0.06147,"83":0.25029,"84":0.05269,"85":0.08343,"86":0.06147,"87":0.10099,"88":0.02635,"89":0.05708,"90":0.03074,"91":0.06147,"92":0.03952,"93":0.09221,"94":0.0483,"95":0.02635,"96":0.10538,"97":0.12295,"98":0.20199,"99":0.16247,"100":0.2459,"101":0.40397,"102":2.10768,"103":20.20738,"104":0.03513,"105":0.03513,"106":0.02635,_:"4 5 6 7 8 9 10 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 42 43 44 45 46 50 51 53 54 55 57 64 71 73 107"},F:{"85":0.00878,"86":0.00439,"87":0.03074,"88":0.50497,"89":0.16247,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00878,"15":0.00878,"17":0.00439,"18":0.01756,"85":0.00878,"87":0.01756,"92":0.00439,"96":0.00439,"97":0.00439,"98":0.00878,"99":0.01317,"100":0.02196,"101":0.12295,"102":0.22833,"103":5.48875,_:"13 14 16 79 80 81 83 84 86 88 89 90 91 93 94 95"},E:{"4":0,"8":0.00439,"9":0.00878,"12":0.00878,"13":0.05269,"14":0.22394,"15":0.07026,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02635,"10.1":0.01756,"11.1":0.04391,"12.1":0.09221,"13.1":0.685,"14.1":0.69378,"15.1":0.11417,"15.2-15.3":0.11856,"15.4":0.45666,"15.5":3.5611,"15.6":0.13612,"16.0":0.01756},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00552,"7.0-7.1":0.01104,"8.1-8.4":0.00552,"9.0-9.2":0.01379,"9.3":0.08552,"10.0-10.2":0.00552,"10.3":0.0938,"11.0-11.2":0.02759,"11.3-11.4":0.04138,"12.0-12.1":0.03035,"12.2-12.5":0.48832,"13.0-13.1":0.02207,"13.2":0.01379,"13.3":0.06621,"13.4-13.7":0.2014,"14.0-14.4":0.63453,"14.5-14.8":1.77669,"15.0-15.1":0.44969,"15.2-15.3":0.88007,"15.4":1.46219,"15.5":20.69408,"16.0":0.10484},P:{"4":0.06398,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.01066,"11.1-11.2":0.02133,"13.0":0.03199,"14.0":0.04266,"15.0":0.03199,"16.0":0.13863,"17.0":2.25011},I:{"0":0,"3":0,"4":0.01071,"2.1":0,"2.2":0.00476,"2.3":0,"4.1":0.00238,"4.2-4.3":0.0238,"4.4":0,"4.4.3-4.4.4":0.03688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02325,"9":0.07904,"11":0.21387,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},R:{_:"0"},M:{"0":0.45433},Q:{"10.4":0.01683},O:{"0":0.09535},H:{"0":0.23365},L:{"0":26.32412},S:{"2.5":0.00561}}; +module.exports={C:{"4":0.07026,"11":0.02635,"38":0.00439,"43":0.00439,"44":0.02196,"45":0.00878,"48":0.00439,"52":0.04391,"54":0.00878,"56":0.00878,"59":0.00439,"78":0.05708,"79":0.00439,"80":0.00439,"81":0.00878,"82":0.00439,"83":0.00439,"84":0.00439,"85":0.00439,"87":0.00439,"88":0.00878,"89":0.01317,"90":0.00439,"91":0.08343,"94":0.02196,"95":0.01317,"96":0.00439,"97":0.00878,"98":0.00878,"99":0.01756,"100":0.03074,"101":0.17564,"102":2.00669,"103":0.18442,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 86 92 93 104 105 3.5 3.6"},D:{"35":0.00878,"38":0.00439,"40":0.02196,"41":0.00439,"47":0.00878,"48":0.06147,"49":0.05708,"52":0.00878,"56":0.09221,"58":0.00439,"59":0.00439,"60":0.00878,"61":0.02196,"62":0.00439,"63":0.00878,"65":0.01756,"66":0.05708,"67":0.01317,"68":0.00439,"69":0.01756,"70":0.00878,"72":0.00878,"74":0.01317,"75":0.01317,"76":0.1976,"77":0.00878,"78":0.03513,"79":0.28981,"80":0.06587,"81":0.06147,"83":0.25029,"84":0.05269,"85":0.08343,"86":0.06147,"87":0.10099,"88":0.02635,"89":0.05708,"90":0.03074,"91":0.06147,"92":0.03952,"93":0.09221,"94":0.0483,"95":0.02635,"96":0.10538,"97":0.12295,"98":0.20199,"99":0.16247,"100":0.2459,"101":0.40397,"102":2.10768,"103":20.20738,"104":0.03513,"105":0.03513,"106":0.02635,_:"4 5 6 7 8 9 10 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 42 43 44 45 46 50 51 53 54 55 57 64 71 73 107"},F:{"85":0.00878,"86":0.00439,"87":0.03074,"88":0.50497,"89":0.16247,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.00878,"15":0.00878,"17":0.00439,"18":0.01756,"85":0.00878,"87":0.01756,"92":0.00439,"96":0.00439,"97":0.00439,"98":0.00878,"99":0.01317,"100":0.02196,"101":0.12295,"102":0.22833,"103":5.48875,_:"13 14 16 79 80 81 83 84 86 88 89 90 91 93 94 95 104"},E:{"4":0,"8":0.00439,"9":0.00878,"12":0.00878,"13":0.05269,"14":0.22394,"15":0.07026,_:"0 5 6 7 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02635,"10.1":0.01756,"11.1":0.04391,"12.1":0.09221,"13.1":0.685,"14.1":0.69378,"15.1":0.11417,"15.2-15.3":0.11856,"15.4":0.45666,"15.5":3.5611,"15.6":0.13612,"16.0":0.01756},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00552,"7.0-7.1":0.01104,"8.1-8.4":0.00552,"9.0-9.2":0.01379,"9.3":0.08552,"10.0-10.2":0.00552,"10.3":0.0938,"11.0-11.2":0.02759,"11.3-11.4":0.04138,"12.0-12.1":0.03035,"12.2-12.5":0.48832,"13.0-13.1":0.02207,"13.2":0.01379,"13.3":0.06621,"13.4-13.7":0.2014,"14.0-14.4":0.63453,"14.5-14.8":1.77669,"15.0-15.1":0.44969,"15.2-15.3":0.88007,"15.4":1.46219,"15.5":20.69408,"16.0":0.10484},P:{"4":0.06398,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.01066,"8.2":0,"9.2":0.03095,"10.1":0,"11.1-11.2":0.02133,"12.0":0.02095,"13.0":0.03199,"14.0":0.04266,"15.0":0.03199,"16.0":0.13863,"17.0":2.25011,"18.0":0},I:{"0":0,"3":0,"4":0.01071,"2.1":0,"2.2":0.00476,"2.3":0,"4.1":0.00238,"4.2-4.3":0.0238,"4.4":0,"4.4.3-4.4.4":0.03688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02325,"9":0.07904,"11":0.21387,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":26.32412},S:{"2.5":0.00561},R:{_:"0"},M:{"0":0.45433},Q:{"10.4":0.01683},O:{"0":0.09535},H:{"0":0.23365}}; 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 cca8c871c4035fb..abe1d841d22d463 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.0052,"52":0.02598,"54":0.01559,"59":0.0052,"66":0.0052,"78":0.04676,"79":0.0052,"80":0.0052,"81":0.0052,"82":0.0052,"83":0.0052,"84":0.0052,"87":0.0052,"88":0.0052,"89":0.01039,"91":0.05196,"93":0.01039,"94":0.09872,"95":0.0052,"96":0.0052,"97":0.01039,"98":0.01039,"99":0.01559,"100":0.03118,"101":0.14029,"102":1.73546,"103":0.20264,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 85 86 90 92 104 105 3.5 3.6"},D:{"25":0.0052,"26":0.01039,"34":0.02598,"38":0.06755,"48":0.0052,"49":0.03637,"53":0.01039,"56":0.0052,"59":0.02598,"60":0.04157,"61":0.0052,"63":0.02078,"65":0.01559,"66":0.02078,"67":0.01039,"68":0.01039,"69":0.02598,"70":0.01559,"72":0.0052,"73":0.0052,"74":0.02078,"75":0.01039,"76":0.01559,"77":0.01039,"78":0.01039,"79":0.14549,"80":0.04676,"81":0.04676,"83":0.04157,"84":0.04676,"85":0.06235,"86":0.07794,"87":0.11951,"88":0.04157,"89":0.02078,"90":0.02078,"91":0.04676,"92":0.05196,"93":0.05196,"94":0.06235,"95":0.04676,"96":0.15068,"97":0.14029,"98":0.11951,"99":0.17666,"100":0.2546,"101":0.43127,"102":2.40575,"103":26.13068,"104":0.02598,"105":0.01559,_:"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 50 51 52 54 55 57 58 62 64 71 106 107"},F:{"46":0.02598,"86":0.01039,"87":0.03118,"88":0.43127,"89":0.1299,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0052,"16":0.01039,"17":0.0052,"18":0.03118,"84":0.0052,"85":0.01559,"86":0.0052,"90":0.0052,"92":0.01559,"94":0.0052,"95":0.01559,"96":0.02598,"97":0.0052,"98":0.01559,"99":0.03118,"100":0.02078,"101":0.1247,"102":0.30656,"103":6.54176,_:"12 13 14 79 80 81 83 87 88 89 91 93"},E:{"4":0,"12":0.01039,"13":0.06755,"14":0.27539,"15":0.08314,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01039,"10.1":0.01559,"11.1":0.04157,"12.1":0.08314,"13.1":0.36372,"14.1":0.85734,"15.1":0.14549,"15.2-15.3":0.1299,"15.4":0.54038,"15.5":3.97494,"15.6":0.1299,"16.0":0.01039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00911,"6.0-6.1":0.00729,"7.0-7.1":0.01094,"8.1-8.4":0.01641,"9.0-9.2":0.01276,"9.3":0.15312,"10.0-10.2":0.01094,"10.3":0.16405,"11.0-11.2":0.03828,"11.3-11.4":0.05833,"12.0-12.1":0.04192,"12.2-12.5":0.77287,"13.0-13.1":0.02552,"13.2":0.01094,"13.3":0.06927,"13.4-13.7":0.16405,"14.0-14.4":0.47758,"14.5-14.8":1.29784,"15.0-15.1":0.32082,"15.2-15.3":0.53955,"15.4":0.92599,"15.5":12.74511,"16.0":0.05104},P:{"4":0.22422,"5.0-5.4":0.01068,"6.2-6.4":0.01014,"7.2-7.4":0.10677,"8.2":0.01014,"9.2":0.03203,"10.1":0.01031,"11.1-11.2":0.09609,"12.0":0.02135,"13.0":0.09609,"14.0":0.16016,"15.0":0.07474,"16.0":0.24557,"17.0":2.62657},I:{"0":0,"3":0,"4":0.00181,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00544,"4.4":0,"4.4.3-4.4.4":0.03898},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01712,"9":0.02567,"11":0.24819,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01441,_:"10"},R:{_:"0"},M:{"0":0.3555},Q:{"10.4":0.0048},O:{"0":0.07686},H:{"0":0.22741},L:{"0":27.99528},S:{"2.5":0}}; +module.exports={C:{"11":0.0052,"52":0.02598,"54":0.01559,"59":0.0052,"66":0.0052,"78":0.04676,"79":0.0052,"80":0.0052,"81":0.0052,"82":0.0052,"83":0.0052,"84":0.0052,"87":0.0052,"88":0.0052,"89":0.01039,"91":0.05196,"93":0.01039,"94":0.09872,"95":0.0052,"96":0.0052,"97":0.01039,"98":0.01039,"99":0.01559,"100":0.03118,"101":0.14029,"102":1.73546,"103":0.20264,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 85 86 90 92 104 105 3.5 3.6"},D:{"25":0.0052,"26":0.01039,"34":0.02598,"38":0.06755,"48":0.0052,"49":0.03637,"53":0.01039,"56":0.0052,"59":0.02598,"60":0.04157,"61":0.0052,"63":0.02078,"65":0.01559,"66":0.02078,"67":0.01039,"68":0.01039,"69":0.02598,"70":0.01559,"72":0.0052,"73":0.0052,"74":0.02078,"75":0.01039,"76":0.01559,"77":0.01039,"78":0.01039,"79":0.14549,"80":0.04676,"81":0.04676,"83":0.04157,"84":0.04676,"85":0.06235,"86":0.07794,"87":0.11951,"88":0.04157,"89":0.02078,"90":0.02078,"91":0.04676,"92":0.05196,"93":0.05196,"94":0.06235,"95":0.04676,"96":0.15068,"97":0.14029,"98":0.11951,"99":0.17666,"100":0.2546,"101":0.43127,"102":2.40575,"103":26.13068,"104":0.02598,"105":0.01559,_:"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 50 51 52 54 55 57 58 62 64 71 106 107"},F:{"46":0.02598,"86":0.01039,"87":0.03118,"88":0.43127,"89":0.1299,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.0052,"16":0.01039,"17":0.0052,"18":0.03118,"84":0.0052,"85":0.01559,"86":0.0052,"90":0.0052,"92":0.01559,"94":0.0052,"95":0.01559,"96":0.02598,"97":0.0052,"98":0.01559,"99":0.03118,"100":0.02078,"101":0.1247,"102":0.30656,"103":6.54176,_:"12 13 14 79 80 81 83 87 88 89 91 93 104"},E:{"4":0,"12":0.01039,"13":0.06755,"14":0.27539,"15":0.08314,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01039,"10.1":0.01559,"11.1":0.04157,"12.1":0.08314,"13.1":0.36372,"14.1":0.85734,"15.1":0.14549,"15.2-15.3":0.1299,"15.4":0.54038,"15.5":3.97494,"15.6":0.1299,"16.0":0.01039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00911,"6.0-6.1":0.00729,"7.0-7.1":0.01094,"8.1-8.4":0.01641,"9.0-9.2":0.01276,"9.3":0.15312,"10.0-10.2":0.01094,"10.3":0.16405,"11.0-11.2":0.03828,"11.3-11.4":0.05833,"12.0-12.1":0.04192,"12.2-12.5":0.77287,"13.0-13.1":0.02552,"13.2":0.01094,"13.3":0.06927,"13.4-13.7":0.16405,"14.0-14.4":0.47758,"14.5-14.8":1.29784,"15.0-15.1":0.32082,"15.2-15.3":0.53955,"15.4":0.92599,"15.5":12.74511,"16.0":0.05104},P:{"4":0.22422,"5.0-5.4":0.01068,"6.2-6.4":0,"7.2-7.4":0.10677,"8.2":0,"9.2":0.03203,"10.1":0,"11.1-11.2":0.09609,"12.0":0.02135,"13.0":0.09609,"14.0":0.16016,"15.0":0.07474,"16.0":0.24557,"17.0":2.62657,"18.0":0},I:{"0":0,"3":0,"4":0.00181,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00544,"4.4":0,"4.4.3-4.4.4":0.03898},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01712,"9":0.02567,"11":0.24819,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0.01441},L:{"0":27.99528},S:{"2.5":0},R:{_:"0"},M:{"0":0.3555},Q:{"10.4":0.0048},O:{"0":0.07686},H:{"0":0.22741}}; 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 07b0e5171a68d58..2243f8a072b4980 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js @@ -1 +1 @@ -module.exports={C:{"27":0.0088,"52":0.04841,"66":0.0044,"68":0.0044,"72":0.0044,"73":0.0044,"78":0.02201,"79":0.0044,"80":0.0044,"84":0.0044,"86":0.0088,"88":0.0132,"89":0.0088,"90":0.0132,"91":0.08362,"94":0.0176,"95":0.0044,"96":0.0044,"97":0.0088,"98":0.0088,"99":0.02641,"100":0.02201,"101":0.08362,"102":1.39072,"103":0.17604,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 74 75 76 77 81 82 83 85 87 92 93 104 105 3.5 3.6"},D:{"22":0.0044,"38":0.0176,"47":0.0088,"49":0.07482,"51":0.0088,"53":0.0088,"55":0.0044,"58":0.0044,"63":0.0088,"65":0.0088,"66":0.0132,"67":0.0088,"68":0.0088,"69":0.02641,"70":0.0088,"71":0.0044,"72":0.0088,"73":0.0044,"74":0.0132,"75":0.0132,"76":0.0176,"77":0.0088,"78":0.0132,"79":0.10562,"80":0.02201,"81":0.03081,"83":0.02641,"84":0.04401,"85":0.03961,"86":0.06161,"87":0.09242,"88":0.02201,"89":0.03961,"90":0.03081,"91":0.38729,"92":0.04401,"93":0.02641,"94":0.02641,"95":0.03081,"96":0.07922,"97":0.07922,"98":0.07042,"99":0.11443,"100":0.15844,"101":0.21565,"102":1.13986,"103":29.41628,"104":0.03521,"105":0.0088,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 56 57 59 60 61 62 64 106 107"},F:{"28":0.0044,"82":0.0044,"85":0.02201,"86":0.0088,"87":0.06602,"88":2.28852,"89":0.55893,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.02641,"17":0.0044,"18":0.0132,"92":0.0088,"96":0.0044,"99":0.0044,"100":0.0088,"101":0.06161,"102":0.05721,"103":2.84745,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98"},E:{"4":0,"13":0.0088,"14":0.03521,"15":0.0132,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0088,"11.1":0.0132,"12.1":0.0088,"13.1":0.05281,"14.1":0.09682,"15.1":0.02201,"15.2-15.3":0.02201,"15.4":0.07042,"15.5":0.40489,"15.6":0.02201,"16.0":0.0044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00474,"6.0-6.1":0.00178,"7.0-7.1":0.00415,"8.1-8.4":0,"9.0-9.2":0.00119,"9.3":0.02963,"10.0-10.2":0.00059,"10.3":0.02844,"11.0-11.2":0.00415,"11.3-11.4":0.02015,"12.0-12.1":0.00652,"12.2-12.5":0.1908,"13.0-13.1":0.00533,"13.2":0.00356,"13.3":0.01422,"13.4-13.7":0.05629,"14.0-14.4":0.13392,"14.5-14.8":0.43493,"15.0-15.1":0.08592,"15.2-15.3":0.16354,"15.4":0.30635,"15.5":4.2634,"16.0":0.03081},P:{"4":0.13394,"5.0-5.4":0.01068,"6.2-6.4":0.01014,"7.2-7.4":0.19576,"8.2":0.01014,"9.2":0.0103,"10.1":0.01031,"11.1-11.2":0.05152,"12.0":0.0103,"13.0":0.06182,"14.0":0.07212,"15.0":0.04121,"16.0":0.13394,"17.0":1.66909},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00276,"4.2-4.3":0.00552,"4.4":0,"4.4.3-4.4.4":0.04212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0088,"11":0.08802,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01441,_:"10"},R:{_:"0"},M:{"0":0.14},Q:{"10.4":0},O:{"0":0.0616},H:{"0":0.20147},L:{"0":48.35285},S:{"2.5":0}}; +module.exports={C:{"27":0.0088,"52":0.04841,"66":0.0044,"68":0.0044,"72":0.0044,"73":0.0044,"78":0.02201,"79":0.0044,"80":0.0044,"84":0.0044,"86":0.0088,"88":0.0132,"89":0.0088,"90":0.0132,"91":0.08362,"94":0.0176,"95":0.0044,"96":0.0044,"97":0.0088,"98":0.0088,"99":0.02641,"100":0.02201,"101":0.08362,"102":1.39072,"103":0.17604,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 74 75 76 77 81 82 83 85 87 92 93 104 105 3.5 3.6"},D:{"22":0.0044,"38":0.0176,"47":0.0088,"49":0.07482,"51":0.0088,"53":0.0088,"55":0.0044,"58":0.0044,"63":0.0088,"65":0.0088,"66":0.0132,"67":0.0088,"68":0.0088,"69":0.02641,"70":0.0088,"71":0.0044,"72":0.0088,"73":0.0044,"74":0.0132,"75":0.0132,"76":0.0176,"77":0.0088,"78":0.0132,"79":0.10562,"80":0.02201,"81":0.03081,"83":0.02641,"84":0.04401,"85":0.03961,"86":0.06161,"87":0.09242,"88":0.02201,"89":0.03961,"90":0.03081,"91":0.38729,"92":0.04401,"93":0.02641,"94":0.02641,"95":0.03081,"96":0.07922,"97":0.07922,"98":0.07042,"99":0.11443,"100":0.15844,"101":0.21565,"102":1.13986,"103":29.41628,"104":0.03521,"105":0.0088,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 56 57 59 60 61 62 64 106 107"},F:{"28":0.0044,"82":0.0044,"85":0.02201,"86":0.0088,"87":0.06602,"88":2.28852,"89":0.55893,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"15":0.02641,"17":0.0044,"18":0.0132,"92":0.0088,"96":0.0044,"99":0.0044,"100":0.0088,"101":0.06161,"102":0.05721,"103":2.84745,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 104"},E:{"4":0,"13":0.0088,"14":0.03521,"15":0.0132,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0088,"11.1":0.0132,"12.1":0.0088,"13.1":0.05281,"14.1":0.09682,"15.1":0.02201,"15.2-15.3":0.02201,"15.4":0.07042,"15.5":0.40489,"15.6":0.02201,"16.0":0.0044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00474,"6.0-6.1":0.00178,"7.0-7.1":0.00415,"8.1-8.4":0,"9.0-9.2":0.00119,"9.3":0.02963,"10.0-10.2":0.00059,"10.3":0.02844,"11.0-11.2":0.00415,"11.3-11.4":0.02015,"12.0-12.1":0.00652,"12.2-12.5":0.1908,"13.0-13.1":0.00533,"13.2":0.00356,"13.3":0.01422,"13.4-13.7":0.05629,"14.0-14.4":0.13392,"14.5-14.8":0.43493,"15.0-15.1":0.08592,"15.2-15.3":0.16354,"15.4":0.30635,"15.5":4.2634,"16.0":0.03081},P:{"4":0.13394,"5.0-5.4":0.01068,"6.2-6.4":0,"7.2-7.4":0.19576,"8.2":0,"9.2":0.0103,"10.1":0,"11.1-11.2":0.05152,"12.0":0.0103,"13.0":0.06182,"14.0":0.07212,"15.0":0.04121,"16.0":0.13394,"17.0":1.66909,"18.0":0},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00276,"4.2-4.3":0.00552,"4.4":0,"4.4.3-4.4.4":0.04212},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0088,"11":0.08802,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0.01441},L:{"0":48.35285},S:{"2.5":0},R:{_:"0"},M:{"0":0.14},Q:{"10.4":0},O:{"0":0.0616},H:{"0":0.20147}}; 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 9f3de5328edf776..c879ff2288e7179 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.01851,"11":0.0074,"36":0.0074,"43":0.09255,"44":0.0074,"48":0.0037,"52":0.05923,"56":0.0074,"59":0.0037,"68":0.0074,"72":0.0037,"77":0.0037,"78":0.03702,"79":0.0037,"80":0.0037,"81":0.01481,"82":0.0037,"83":0.0037,"84":0.0037,"87":0.0074,"88":0.01111,"89":0.0074,"90":0.0074,"91":0.08515,"93":0.0037,"94":0.02221,"95":0.01111,"96":0.0074,"97":0.0074,"98":0.0074,"99":0.02221,"100":0.02962,"101":0.12957,"102":2.01019,"103":0.24803,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 86 92 104 105 3.5 3.6"},D:{"22":0.0074,"34":0.0074,"35":0.0037,"38":0.01851,"40":0.01481,"41":0.0037,"43":0.0037,"47":0.01111,"48":0.01851,"49":0.05183,"52":0.0074,"53":0.01111,"55":0.0037,"56":0.03332,"57":0.0037,"58":0.0037,"59":0.0037,"60":0.01111,"61":0.01111,"62":0.0074,"63":0.01111,"64":0.0037,"65":0.01111,"66":0.02591,"67":0.01111,"68":0.0074,"69":0.06664,"70":0.03332,"71":0.01481,"72":0.02221,"73":0.0074,"74":0.04072,"75":0.04813,"76":0.05553,"77":0.01481,"78":0.03332,"79":0.17399,"80":0.05183,"81":0.03702,"83":0.09625,"84":0.04442,"85":0.07404,"86":0.06664,"87":0.08515,"88":0.02221,"89":0.04442,"90":0.02962,"91":0.05923,"92":0.05923,"93":0.04442,"94":0.04813,"95":0.02962,"96":0.08515,"97":0.08885,"98":0.10366,"99":0.10366,"100":0.16659,"101":0.25914,"102":1.23647,"103":18.89131,"104":0.02221,"105":0.01851,"106":0.0074,_:"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 42 44 45 46 50 51 54 107"},F:{"28":0.0074,"31":0.0037,"36":0.0037,"40":0.0074,"46":0.01111,"79":0.0037,"84":0.0037,"85":0.02591,"86":0.01111,"87":0.02962,"88":0.68117,"89":0.26654,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0037,"15":0.0074,"16":0.0037,"17":0.0074,"18":0.02221,"84":0.0037,"85":0.0037,"87":0.0074,"89":0.0037,"92":0.0074,"96":0.0074,"97":0.0074,"98":0.0074,"99":0.01111,"100":0.01481,"101":0.06664,"102":0.12957,"103":3.72421,_:"13 14 79 80 81 83 86 88 90 91 93 94 95"},E:{"4":0,"13":0.02962,"14":0.12587,"15":0.03702,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.0074,"9.1":0.01481,"10.1":0.0074,"11.1":0.02221,"12.1":0.04072,"13.1":0.25174,"14.1":0.35909,"15.1":0.06664,"15.2-15.3":0.06664,"15.4":0.25174,"15.5":1.77696,"15.6":0.07774,"16.0":0.01111},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00312,"5.0-5.1":0.00468,"6.0-6.1":0.00468,"7.0-7.1":0.01404,"8.1-8.4":0.00624,"9.0-9.2":0.01872,"9.3":0.07487,"10.0-10.2":0.0078,"10.3":0.08735,"11.0-11.2":0.04212,"11.3-11.4":0.0312,"12.0-12.1":0.02964,"12.2-12.5":0.54751,"13.0-13.1":0.0234,"13.2":0.01248,"13.3":0.05459,"13.4-13.7":0.18094,"14.0-14.4":0.50851,"14.5-14.8":1.15273,"15.0-15.1":0.35565,"15.2-15.3":0.60834,"15.4":1.01079,"15.5":10.41047,"16.0":0.07019},P:{"4":0.20822,"5.0-5.4":0.08115,"6.2-6.4":0.01014,"7.2-7.4":0.07288,"8.2":0.01014,"9.2":0.01041,"10.1":0.03043,"11.1-11.2":0.04164,"12.0":0.02082,"13.0":0.08329,"14.0":0.07288,"15.0":0.08329,"16.0":0.16658,"17.0":2.30083},I:{"0":0,"3":0,"4":0.02416,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03624,"4.2-4.3":0.06643,"4.4":0,"4.4.3-4.4.4":0.31404},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02221,"9":0.05923,"11":0.46645,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.18207,_:"10"},R:{_:"0"},M:{"0":0.3149},Q:{"10.4":0.23932},O:{"0":1.01398},H:{"0":0.95401},L:{"0":42.87026},S:{"2.5":0.03149}}; +module.exports={C:{"4":0.01851,"11":0.0074,"36":0.0074,"43":0.09255,"44":0.0074,"48":0.0037,"52":0.05923,"56":0.0074,"59":0.0037,"68":0.0074,"72":0.0037,"77":0.0037,"78":0.03702,"79":0.0037,"80":0.0037,"81":0.01481,"82":0.0037,"83":0.0037,"84":0.0037,"87":0.0074,"88":0.01111,"89":0.0074,"90":0.0074,"91":0.08515,"93":0.0037,"94":0.02221,"95":0.01111,"96":0.0074,"97":0.0074,"98":0.0074,"99":0.02221,"100":0.02962,"101":0.12957,"102":2.01019,"103":0.24803,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 86 92 104 105 3.5 3.6"},D:{"22":0.0074,"34":0.0074,"35":0.0037,"38":0.01851,"40":0.01481,"41":0.0037,"43":0.0037,"47":0.01111,"48":0.01851,"49":0.05183,"52":0.0074,"53":0.01111,"55":0.0037,"56":0.03332,"57":0.0037,"58":0.0037,"59":0.0037,"60":0.01111,"61":0.01111,"62":0.0074,"63":0.01111,"64":0.0037,"65":0.01111,"66":0.02591,"67":0.01111,"68":0.0074,"69":0.06664,"70":0.03332,"71":0.01481,"72":0.02221,"73":0.0074,"74":0.04072,"75":0.04813,"76":0.05553,"77":0.01481,"78":0.03332,"79":0.17399,"80":0.05183,"81":0.03702,"83":0.09625,"84":0.04442,"85":0.07404,"86":0.06664,"87":0.08515,"88":0.02221,"89":0.04442,"90":0.02962,"91":0.05923,"92":0.05923,"93":0.04442,"94":0.04813,"95":0.02962,"96":0.08515,"97":0.08885,"98":0.10366,"99":0.10366,"100":0.16659,"101":0.25914,"102":1.23647,"103":18.89131,"104":0.02221,"105":0.01851,"106":0.0074,_:"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 42 44 45 46 50 51 54 107"},F:{"28":0.0074,"31":0.0037,"36":0.0037,"40":0.0074,"46":0.01111,"79":0.0037,"84":0.0037,"85":0.02591,"86":0.01111,"87":0.02962,"88":0.68117,"89":0.26654,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 90 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},B:{"12":0.0037,"15":0.0074,"16":0.0037,"17":0.0074,"18":0.02221,"84":0.0037,"85":0.0037,"87":0.0074,"89":0.0037,"92":0.0074,"96":0.0074,"97":0.0074,"98":0.0074,"99":0.01111,"100":0.01481,"101":0.06664,"102":0.12957,"103":3.72421,_:"13 14 79 80 81 83 86 88 90 91 93 94 95 104"},E:{"4":0,"13":0.02962,"14":0.12587,"15":0.03702,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.0074,"9.1":0.01481,"10.1":0.0074,"11.1":0.02221,"12.1":0.04072,"13.1":0.25174,"14.1":0.35909,"15.1":0.06664,"15.2-15.3":0.06664,"15.4":0.25174,"15.5":1.77696,"15.6":0.07774,"16.0":0.01111},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00312,"5.0-5.1":0.00468,"6.0-6.1":0.00468,"7.0-7.1":0.01404,"8.1-8.4":0.00624,"9.0-9.2":0.01872,"9.3":0.07487,"10.0-10.2":0.0078,"10.3":0.08735,"11.0-11.2":0.04212,"11.3-11.4":0.0312,"12.0-12.1":0.02964,"12.2-12.5":0.54751,"13.0-13.1":0.0234,"13.2":0.01248,"13.3":0.05459,"13.4-13.7":0.18094,"14.0-14.4":0.50851,"14.5-14.8":1.15273,"15.0-15.1":0.35565,"15.2-15.3":0.60834,"15.4":1.01079,"15.5":10.41047,"16.0":0.07019},P:{"4":0.20822,"5.0-5.4":0.01035,"6.2-6.4":0,"7.2-7.4":0.07288,"8.2":0,"9.2":0.01041,"10.1":0,"11.1-11.2":0.04164,"12.0":0.02082,"13.0":0.08329,"14.0":0.07288,"15.0":0.08329,"16.0":0.16658,"17.0":2.30083,"18.0":0.01035},I:{"0":0,"3":0,"4":0.02416,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03624,"4.2-4.3":0.06643,"4.4":0,"4.4.3-4.4.4":0.31404},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02221,"9":0.05923,"11":0.46645,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0,"11":0},L:{"0":42.87026},S:{"2.5":0.03149},R:{_:"0"},M:{"0":0.3149},Q:{"10.4":0.23932},O:{"0":1.01398},H:{"0":0.95401}}; 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 c0288b131fb2997..e59f3a852c14a42 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.30001374", + "version": "1.0.30001383", "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 4b2c8e0142211bc..a947b2181c55959 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 @@ -1890,7 +1890,9 @@ module.exports = { "18.3.4", "18.3.5", "18.3.6", - "18.3.7" + "18.3.7", + "18.3.8", + "18.3.9" ], "102.0.4962.3": [ "19.0.0-alpha.1", @@ -1970,7 +1972,10 @@ module.exports = { "102.0.5005.167": [ "19.0.9", "19.0.10", - "19.0.11" + "19.0.11", + "19.0.12", + "19.0.13", + "19.0.14" ], "103.0.5044.0": [ "20.0.0-alpha.1", @@ -2033,10 +2038,19 @@ module.exports = { "20.0.0" ], "104.0.5112.81": [ - "20.0.1" + "20.0.1", + "20.0.2", + "20.0.3" + ], + "104.0.5112.102": [ + "20.1.0" ], "105.0.5187.0": [ "21.0.0-alpha.1", + "21.0.0-alpha.2", + "21.0.0-alpha.3", + "21.0.0-alpha.4", + "21.0.0-alpha.5", "21.0.0-nightly.20220720", "21.0.0-nightly.20220721", "21.0.0-nightly.20220722", @@ -2045,7 +2059,15 @@ module.exports = { "21.0.0-nightly.20220727", "21.0.0-nightly.20220728", "21.0.0-nightly.20220801", - "21.0.0-nightly.20220802" + "21.0.0-nightly.20220802", + "22.0.0-nightly.20220808", + "22.0.0-nightly.20220809", + "22.0.0-nightly.20220810", + "22.0.0-nightly.20220811", + "22.0.0-nightly.20220812", + "22.0.0-nightly.20220815", + "22.0.0-nightly.20220816", + "22.0.0-nightly.20220817" ], "105.0.5129.0": [ "21.0.0-nightly.20220628", @@ -2065,5 +2087,11 @@ module.exports = { "21.0.0-nightly.20220715", "21.0.0-nightly.20220718", "21.0.0-nightly.20220719" + ], + "106.0.5216.0": [ + "22.0.0-nightly.20220822", + "22.0.0-nightly.20220823", + "22.0.0-nightly.20220824", + "22.0.0-nightly.20220825" ] }; \ 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 ef2ebd7ae2afc26..2e5ae232f1633ed 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json @@ -1 +1 @@ -{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"]} \ No newline at end of file +{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5216.0":["22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825"]} \ 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 5b3c64aae3f8634..c5931555bd6a453 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 @@ -1375,6 +1375,8 @@ module.exports = { "18.3.5": "100.0.4896.160", "18.3.6": "100.0.4896.160", "18.3.7": "100.0.4896.160", + "18.3.8": "100.0.4896.160", + "18.3.9": "100.0.4896.160", "19.0.0-alpha.1": "102.0.4962.3", "19.0.0-alpha.2": "102.0.4971.0", "19.0.0-alpha.3": "102.0.4971.0", @@ -1422,6 +1424,9 @@ module.exports = { "19.0.9": "102.0.5005.167", "19.0.10": "102.0.5005.167", "19.0.11": "102.0.5005.167", + "19.0.12": "102.0.5005.167", + "19.0.13": "102.0.5005.167", + "19.0.14": "102.0.5005.167", "20.0.0-alpha.1": "103.0.5044.0", "20.0.0-alpha.2": "104.0.5073.0", "20.0.0-alpha.3": "104.0.5073.0", @@ -1473,7 +1478,14 @@ module.exports = { "20.0.0-nightly.20220524": "103.0.5044.0", "20.0.0": "104.0.5112.65", "20.0.1": "104.0.5112.81", + "20.0.2": "104.0.5112.81", + "20.0.3": "104.0.5112.81", + "20.1.0": "104.0.5112.102", "21.0.0-alpha.1": "105.0.5187.0", + "21.0.0-alpha.2": "105.0.5187.0", + "21.0.0-alpha.3": "105.0.5187.0", + "21.0.0-alpha.4": "105.0.5187.0", + "21.0.0-alpha.5": "105.0.5187.0", "21.0.0-nightly.20220526": "103.0.5044.0", "21.0.0-nightly.20220527": "103.0.5044.0", "21.0.0-nightly.20220530": "103.0.5044.0", @@ -1519,5 +1531,17 @@ module.exports = { "21.0.0-nightly.20220727": "105.0.5187.0", "21.0.0-nightly.20220728": "105.0.5187.0", "21.0.0-nightly.20220801": "105.0.5187.0", - "21.0.0-nightly.20220802": "105.0.5187.0" + "21.0.0-nightly.20220802": "105.0.5187.0", + "22.0.0-nightly.20220808": "105.0.5187.0", + "22.0.0-nightly.20220809": "105.0.5187.0", + "22.0.0-nightly.20220810": "105.0.5187.0", + "22.0.0-nightly.20220811": "105.0.5187.0", + "22.0.0-nightly.20220812": "105.0.5187.0", + "22.0.0-nightly.20220815": "105.0.5187.0", + "22.0.0-nightly.20220816": "105.0.5187.0", + "22.0.0-nightly.20220817": "105.0.5187.0", + "22.0.0-nightly.20220822": "106.0.5216.0", + "22.0.0-nightly.20220823": "106.0.5216.0", + "22.0.0-nightly.20220824": "106.0.5216.0", + "22.0.0-nightly.20220825": "106.0.5216.0" }; \ 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 40b2ce918ec9b33..4dae6d206512ee8 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json @@ -1 +1 @@ -{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","21.0.0-alpha.1":"105.0.5187.0","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0"} \ No newline at end of file +{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0"} \ 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 2a8b730339798df..8bb36fc2f09b466 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.211", + "version": "1.4.233", "description": "Provides a list of electron-to-chromium version mappings", "main": "index.js", "files": [ @@ -34,7 +34,7 @@ "devDependencies": { "ava": "^4.0.1", "codecov": "^3.8.0", - "electron-releases": "^3.1092.0", + "electron-releases": "^3.1116.0", "nyc": "^15.1.0", "request": "^2.65.0", "shelljs": "^0.8.4" diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js index 2bb9f0c7e8aaf39..31ac9e229951971 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js @@ -95,5 +95,6 @@ module.exports = { "18.3": "100", "19.0": "102", "20.0": "104", + "20.1": "104", "21.0": "105" }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json index d100c802e018985..2b9e821a15c839c 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json @@ -1 +1 @@ -{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","20.0":"104","21.0":"105"} \ No newline at end of file +{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","20.0":"104","20.1":"104","21.0":"105"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js index 26aea353fff07e1..ff75f3a456b5a91 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.js @@ -1177,7 +1177,7 @@ function iterateJsdoc(iterator, ruleConfig) { if (contexts && (ruleConfig.contextDefaults || ruleConfig.contextSelected || ruleConfig.matchContext)) { contextObject = _jsdocUtils.default.getContextObject(contexts, checkJsdoc, (0, _jsdoccomment.commentHandler)(settings)); } else { - for (const prop of ['ArrowFunctionExpression', 'FunctionDeclaration', 'FunctionExpression']) { + for (const prop of ['ArrowFunctionExpression', 'FunctionDeclaration', 'FunctionExpression', 'TSDeclareFunction']) { contextObject[prop] = checkJsdoc.bind(null, { selector: prop }, null); diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/jsdocUtils.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/jsdocUtils.js index 7d6d06d7a7330dc..7b74c3750487bbc 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/jsdocUtils.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/jsdocUtils.js @@ -373,7 +373,7 @@ const getPreferredTagName = (context, mode, name, tagPreference = {}) => { return [key.replace(/^tag /u, ''), value]; })); - if (name in tagPreferenceFixed) { + if (Object.prototype.hasOwnProperty.call(tagPreferenceFixed, name)) { return tagPreferenceFixed[name]; } @@ -937,7 +937,7 @@ const parseClosureTemplateTag = tag => { const enforcedContexts = (context, defaultContexts) => { const { - contexts = defaultContexts === true ? ['ArrowFunctionExpression', 'FunctionDeclaration', 'FunctionExpression'] : defaultContexts + contexts = defaultContexts === true ? ['ArrowFunctionExpression', 'FunctionDeclaration', 'FunctionExpression', 'TSDeclareFunction'] : defaultContexts } = context.options[0] || {}; return contexts; }; 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 89f18c586bf8f16..465e080a5b766e0 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json @@ -117,5 +117,5 @@ "test-cov": "cross-env TIMING=1 nyc --reporter text npm run test-no-cov", "test-index": "npm run test-no-cov -- test/rules/index.js" }, - "version": "39.3.4" + "version": "39.3.6" } diff --git a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs index 609370943ac24e4..62bf7a3cd5c6aed 100644 --- a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs +++ b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs @@ -302,14 +302,15 @@ TokenTranslator.prototype = { const SUPPORTED_VERSIONS = [ 3, 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13 + 6, // 2015 + 7, // 2016 + 8, // 2017 + 9, // 2018 + 10, // 2019 + 11, // 2020 + 12, // 2021 + 13, // 2022 + 14 // 2023 ]; /** @@ -427,12 +428,23 @@ const ESPRIMA_FINISH_NODE = Symbol("espree's esprimaFinishNode"); * @param {int} end The index at which the comment ends. * @param {Location} startLoc The location at which the comment starts. * @param {Location} endLoc The location at which the comment ends. + * @param {string} code The source code being parsed. * @returns {Object} The comment object. * @private */ -function convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc) { +function convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc, code) { + let type; + + if (block) { + type = "Block"; + } else if (code.slice(start, start + 2) === "#!") { + type = "Hashbang"; + } else { + type = "Line"; + } + const comment = { - type: block ? "Block" : "Line", + type, value: text }; @@ -477,6 +489,25 @@ var espree = () => Parser => { ? new TokenTranslator(tokTypes, code) : null; + /* + * Data that is unique to Espree and is not represented internally + * in Acorn. + * + * For ES2023 hashbangs, Espree will call `onComment()` during the + * constructor, so we must define state before having access to + * `this`. + */ + const state = { + originalSourceType: originalSourceType || options.sourceType, + tokens: tokenTranslator ? [] : null, + comments: options.comment === true ? [] : null, + impliedStrict: ecmaFeatures.impliedStrict === true && options.ecmaVersion >= 5, + ecmaVersion: options.ecmaVersion, + jsxAttrValueToken: false, + lastToken: null, + templateElements: [] + }; + // Initialize acorn parser. super({ @@ -495,38 +526,28 @@ var espree = () => Parser => { if (tokenTranslator) { // Use `tokens`, `ecmaVersion`, and `jsxAttrValueToken` in the state. - tokenTranslator.onToken(token, this[STATE]); + tokenTranslator.onToken(token, state); } if (token.type !== tokTypes.eof) { - this[STATE].lastToken = token; + state.lastToken = token; } }, // Collect comments onComment: (block, text, start, end, startLoc, endLoc) => { - if (this[STATE].comments) { - const comment = convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc); + if (state.comments) { + const comment = convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc, code); - this[STATE].comments.push(comment); + state.comments.push(comment); } } }, code); /* - * Data that is unique to Espree and is not represented internally in - * Acorn. We put all of this data into a symbol property as a way to - * avoid potential naming conflicts with future versions of Acorn. + * We put all of this data into a symbol property as a way to avoid + * potential naming conflicts with future versions of Acorn. */ - this[STATE] = { - originalSourceType: originalSourceType || options.sourceType, - tokens: tokenTranslator ? [] : null, - comments: options.comment === true ? [] : null, - impliedStrict: ecmaFeatures.impliedStrict === true && this.options.ecmaVersion >= 5, - ecmaVersion: this.options.ecmaVersion, - jsxAttrValueToken: false, - lastToken: null, - templateElements: [] - }; + this[STATE] = state; } tokenize() { @@ -739,7 +760,7 @@ var espree = () => Parser => { }; }; -const version$1 = "9.3.3"; +const version$1 = "9.4.0"; /** * @fileoverview Main Espree file that converts Acorn into Esprima output. diff --git a/tools/node_modules/eslint/node_modules/espree/lib/espree.js b/tools/node_modules/eslint/node_modules/espree/lib/espree.js index 786d89fa2c39a52..262dd276a284236 100644 --- a/tools/node_modules/eslint/node_modules/espree/lib/espree.js +++ b/tools/node_modules/eslint/node_modules/espree/lib/espree.js @@ -15,12 +15,23 @@ const ESPRIMA_FINISH_NODE = Symbol("espree's esprimaFinishNode"); * @param {int} end The index at which the comment ends. * @param {Location} startLoc The location at which the comment starts. * @param {Location} endLoc The location at which the comment ends. + * @param {string} code The source code being parsed. * @returns {Object} The comment object. * @private */ -function convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc) { +function convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc, code) { + let type; + + if (block) { + type = "Block"; + } else if (code.slice(start, start + 2) === "#!") { + type = "Hashbang"; + } else { + type = "Line"; + } + const comment = { - type: block ? "Block" : "Line", + type, value: text }; @@ -65,6 +76,25 @@ export default () => Parser => { ? new TokenTranslator(tokTypes, code) : null; + /* + * Data that is unique to Espree and is not represented internally + * in Acorn. + * + * For ES2023 hashbangs, Espree will call `onComment()` during the + * constructor, so we must define state before having access to + * `this`. + */ + const state = { + originalSourceType: originalSourceType || options.sourceType, + tokens: tokenTranslator ? [] : null, + comments: options.comment === true ? [] : null, + impliedStrict: ecmaFeatures.impliedStrict === true && options.ecmaVersion >= 5, + ecmaVersion: options.ecmaVersion, + jsxAttrValueToken: false, + lastToken: null, + templateElements: [] + }; + // Initialize acorn parser. super({ @@ -83,38 +113,28 @@ export default () => Parser => { if (tokenTranslator) { // Use `tokens`, `ecmaVersion`, and `jsxAttrValueToken` in the state. - tokenTranslator.onToken(token, this[STATE]); + tokenTranslator.onToken(token, state); } if (token.type !== tokTypes.eof) { - this[STATE].lastToken = token; + state.lastToken = token; } }, // Collect comments onComment: (block, text, start, end, startLoc, endLoc) => { - if (this[STATE].comments) { - const comment = convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc); + if (state.comments) { + const comment = convertAcornCommentToEsprimaComment(block, text, start, end, startLoc, endLoc, code); - this[STATE].comments.push(comment); + state.comments.push(comment); } } }, code); /* - * Data that is unique to Espree and is not represented internally in - * Acorn. We put all of this data into a symbol property as a way to - * avoid potential naming conflicts with future versions of Acorn. + * We put all of this data into a symbol property as a way to avoid + * potential naming conflicts with future versions of Acorn. */ - this[STATE] = { - originalSourceType: originalSourceType || options.sourceType, - tokens: tokenTranslator ? [] : null, - comments: options.comment === true ? [] : null, - impliedStrict: ecmaFeatures.impliedStrict === true && this.options.ecmaVersion >= 5, - ecmaVersion: this.options.ecmaVersion, - jsxAttrValueToken: false, - lastToken: null, - templateElements: [] - }; + this[STATE] = state; } tokenize() { diff --git a/tools/node_modules/eslint/node_modules/espree/lib/options.js b/tools/node_modules/eslint/node_modules/espree/lib/options.js index 87739699bb29cbe..d284807286a2058 100644 --- a/tools/node_modules/eslint/node_modules/espree/lib/options.js +++ b/tools/node_modules/eslint/node_modules/espree/lib/options.js @@ -10,14 +10,15 @@ const SUPPORTED_VERSIONS = [ 3, 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13 + 6, // 2015 + 7, // 2016 + 8, // 2017 + 9, // 2018 + 10, // 2019 + 11, // 2020 + 12, // 2021 + 13, // 2022 + 14 // 2023 ]; /** diff --git a/tools/node_modules/eslint/node_modules/espree/lib/version.js b/tools/node_modules/eslint/node_modules/espree/lib/version.js index 19cfab8b57ce9ce..dd065548d2e0b9d 100644 --- a/tools/node_modules/eslint/node_modules/espree/lib/version.js +++ b/tools/node_modules/eslint/node_modules/espree/lib/version.js @@ -1,3 +1,3 @@ -const version = "9.3.3"; +const version = "9.4.0"; export default version; diff --git a/tools/node_modules/eslint/node_modules/espree/package.json b/tools/node_modules/eslint/node_modules/espree/package.json index 9aff313fb08d1c7..d1b7ad8bda165be 100644 --- a/tools/node_modules/eslint/node_modules/espree/package.json +++ b/tools/node_modules/eslint/node_modules/espree/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "9.3.3", + "version": "9.4.0", "files": [ "lib", "dist/espree.cjs", diff --git a/tools/node_modules/eslint/node_modules/flatted/SPECS.md b/tools/node_modules/eslint/node_modules/flatted/SPECS.md deleted file mode 100644 index c17dfb583c33885..000000000000000 --- a/tools/node_modules/eslint/node_modules/flatted/SPECS.md +++ /dev/null @@ -1,94 +0,0 @@ -# Flatted Specifications - -This document describes operations performed to produce, or parse, the flatted output. - -## stringify(any) => flattedString - -The output is always an `Array` that contains at index `0` the given value. - -If the value is an `Array` or an `Object`, per each property value passed through the callback, return the value as is if it's not an `Array`, an `Object`, or a `string`. - -In case it's an `Array`, an `Object`, or a `string`, return the index as `string`, associated through a `Map`. - -Giving the following example: - -```js -flatted.stringify('a'); // ["a"] -flatted.stringify(['a']); // [["1"],"a"] -flatted.stringify(['a', 1, 'b']); // [["1",1,"2"],"a","b"] -``` - -There is an `input` containing `[array, "a", "b"]`, where the `array` has indexes `"1"` and `"2"` as strings, indexes that point respectively at `"a"` and `"b"` within the input `[array, "a", "b"]`. - -The exact same happens for objects. - -```js -flatted.stringify('a'); // ["a"] -flatted.stringify({a: 'a'}); // [{"a":"1"},"a"] -flatted.stringify({a: 'a', n: 1, b: 'b'}); // [{"a":"1","n":1,"b":"2"},"a","b"] -``` - -Every object, string, or array, encountered during serialization will be stored once as stringified index. - -```js -// per each property/value of the object/array -if (any == null || !/object|string/.test(typeof any)) - return any; -if (!map.has(any)) { - const index = String(arr.length); - arr.push(any); - map.set(any, index); -} -return map.get(any); -``` - -This, performed before going through all properties, grants unique indexes per reference. - -The stringified indexes ensure there won't be conflicts with regularly stored numbers. - -## parse(flattedString) => any - -Everything that is a `string` is wrapped as `new String`, but strings in the array, from index `1` on, is kept as regular `string`. - -```js -const input = JSON.parse('[{"a":"1"},"b"]', Strings).map(strings); -// convert strings primitives into String instances -function Strings(key, value) { - return typeof value === 'string' ? new String(value) : value; -} -// converts String instances into strings primitives -function strings(value) { - return value instanceof String ? String(value) : value; -} -``` - -The `input` array will have a regular `string` at index `1`, but its object at index `0` will have an `instanceof String` as `.a` property. - -That is the key to place back values from the rest of the array, so that per each property of the object at index `0`, if the value is an `instanceof` String, something not serializable via JSON, it means it can be used to retrieve the position of its value from the `input` array. - -If such `value` is an object and it hasn't been parsed yet, add it as parsed and go through all its properties/values. - -```js -// outside any loop ... -const parsed = new Set; - -// ... per each property/value ... -if (value instanceof Primitive) { - const tmp = input[parseInt(value)]; - if (typeof tmp === 'object' && !parsed.has(tmp)) { - parsed.add(tmp); - output[key] = tmp; - if (typeof tmp === 'object' && tmp != null) { - // perform this same logic per - // each nested property/value ... - } - } else { - output[key] = tmp; - } -} else - output[key] = tmp; -``` - -As summary, the whole logic is based on polluting the de-serialization with a kind of variable that is unexpected, hence secure to use as directive to retrieve an index with a value. - -The usage of a `Map` and a `Set` to flag known references/strings as visited/stored makes **flatted** a rock solid, fast, and compact, solution. diff --git a/tools/node_modules/eslint/node_modules/flatted/flatted.jpg b/tools/node_modules/eslint/node_modules/flatted/flatted.jpg deleted file mode 100644 index 8ccee5f829ccc73..000000000000000 Binary files a/tools/node_modules/eslint/node_modules/flatted/flatted.jpg and /dev/null differ diff --git a/tools/node_modules/eslint/node_modules/flatted/package.json b/tools/node_modules/eslint/node_modules/flatted/package.json index 0f7b416c02c2e93..b72ae944cc47a72 100644 --- a/tools/node_modules/eslint/node_modules/flatted/package.json +++ b/tools/node_modules/eslint/node_modules/flatted/package.json @@ -1,6 +1,6 @@ { "name": "flatted", - "version": "3.2.6", + "version": "3.2.7", "description": "A super light and fast circular JSON parser.", "unpkg": "min.js", "types": "types.d.ts", @@ -35,19 +35,19 @@ }, "homepage": "https://github.com/WebReflection/flatted#readme", "devDependencies": { - "@babel/core": "^7.18.5", - "@babel/preset-env": "^7.18.2", + "@babel/core": "^7.18.10", + "@babel/preset-env": "^7.18.10", "@ungap/structured-clone": "^1.0.1", "ascjs": "^5.0.1", - "c8": "^7.11.3", + "c8": "^7.12.0", "circular-json": "^0.5.9", "circular-json-es6": "^2.0.2", "jsan": "^3.1.14", - "rollup": "^2.75.7", + "rollup": "^2.78.1", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", - "terser": "^5.14.1" + "terser": "^5.14.2" }, "module": "./esm/index.js", "type": "module", diff --git a/tools/node_modules/eslint/node_modules/spdx-license-ids/deprecated.json b/tools/node_modules/eslint/node_modules/spdx-license-ids/deprecated.json index c7de09858ff350b..278531e40c613df 100644 --- a/tools/node_modules/eslint/node_modules/spdx-license-ids/deprecated.json +++ b/tools/node_modules/eslint/node_modules/spdx-license-ids/deprecated.json @@ -21,6 +21,7 @@ "LGPL-3.0", "Nunit", "StandardML-NJ", + "bzip2-1.0.5", "eCos-2.0", "wxWindows" ] diff --git a/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json b/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json index a2f18e40160aa71..fdd78fa0329faf8 100644 --- a/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json +++ b/tools/node_modules/eslint/node_modules/spdx-license-ids/index.json @@ -30,6 +30,8 @@ "Apache-1.0", "Apache-1.1", "Apache-2.0", + "App-s2p", + "Arphic-1999", "Artistic-1.0", "Artistic-1.0-Perl", "Artistic-1.0-cl8", @@ -55,11 +57,13 @@ "BSD-Source-Code", "BSL-1.0", "BUSL-1.1", + "Baekmuk", "Bahyph", "Barr", "Beerware", "BitTorrent-1.0", "BitTorrent-1.1", + "Bitstream-Vera", "BlueOak-1.0.0", "Borceux", "C-UDA-1.0", @@ -73,6 +77,7 @@ "CC-BY-3.0", "CC-BY-3.0-AT", "CC-BY-3.0-DE", + "CC-BY-3.0-IGO", "CC-BY-3.0-NL", "CC-BY-3.0-US", "CC-BY-4.0", @@ -148,6 +153,7 @@ "CrystalStacker", "Cube", "D-FSL-1.0", + "DL-DE-BY-2.0", "DOC", "DRL-1.0", "DSDP", @@ -163,6 +169,7 @@ "EUPL-1.0", "EUPL-1.1", "EUPL-1.2", + "Elastic-2.0", "Entessa", "ErlPL-1.1", "Eurosym", @@ -224,6 +231,7 @@ "Interbase-1.0", "JPNIC", "JSON", + "Jam", "JasPer-2.0", "LAL-1.2", "LAL-1.3", @@ -241,6 +249,8 @@ "LPPL-1.2", "LPPL-1.3a", "LPPL-1.3c", + "LZMA-SDK-9.11-to-9.20", + "LZMA-SDK-9.22", "Latex2e", "Leptonica", "LiLiQ-P-1.1", @@ -262,10 +272,12 @@ "MPL-1.1", "MPL-2.0", "MPL-2.0-no-copyleft-exception", + "MS-LPL", "MS-PL", "MS-RL", "MTLL", "MakeIndex", + "Minpack", "MirOS", "Motosoto", "MulanPSL-1.0", @@ -278,6 +290,7 @@ "NCGL-UK-2.0", "NCSA", "NGPL", + "NICTA-1.0", "NIST-PD", "NIST-PD-fallback", "NLOD-1.0", @@ -351,6 +364,7 @@ "PolyForm-Small-Business-1.0.0", "PostgreSQL", "Python-2.0", + "Python-2.0.1", "QPL-1.0", "Qhull", "RHeCos-1.1", @@ -379,6 +393,7 @@ "SSPL-1.0", "SWL", "Saxpath", + "SchemeReport", "Sendmail", "Sendmail-8.23", "SimPL-2.0", @@ -411,6 +426,7 @@ "Watcom-1.0", "Wsuipa", "X11", + "X11-distribute-modifications-variant", "XFree86-1.1", "XSkat", "Xerox", @@ -426,7 +442,6 @@ "Zimbra-1.4", "Zlib", "blessing", - "bzip2-1.0.5", "bzip2-1.0.6", "copyleft-next-0.3.0", "copyleft-next-0.3.1", @@ -441,7 +456,9 @@ "libpng-2.0", "libselinux-1.0", "libtiff", + "mpi-permissive", "mpich2", + "mplus", "psfrag", "psutils", "xinetd", diff --git a/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json b/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json index 61b10edc24cebfa..e3622fccaf7bc46 100644 --- a/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json +++ b/tools/node_modules/eslint/node_modules/spdx-license-ids/package.json @@ -1,6 +1,6 @@ { "name": "spdx-license-ids", - "version": "3.0.11", + "version": "3.0.12", "description": "A list of SPDX license identifiers", "repository": "jslicense/spdx-license-ids", "author": "Shinnosuke Watanabe (https://github.com/shinnn)", diff --git a/tools/node_modules/eslint/node_modules/v8-compile-cache/LICENSE b/tools/node_modules/eslint/node_modules/v8-compile-cache/LICENSE deleted file mode 100644 index b72b6701877c7fe..000000000000000 --- a/tools/node_modules/eslint/node_modules/v8-compile-cache/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2019 Andres Suarez - -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/v8-compile-cache/package.json b/tools/node_modules/eslint/node_modules/v8-compile-cache/package.json deleted file mode 100644 index f878914e8aaeb18..000000000000000 --- a/tools/node_modules/eslint/node_modules/v8-compile-cache/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "v8-compile-cache", - "version": "2.3.0", - "description": "Require hook for automatic V8 compile cache persistence", - "main": "v8-compile-cache.js", - "scripts": { - "bench": "bench/run.sh", - "eslint": "eslint --max-warnings=0 .", - "tap": "tap test/*-test.js", - "test": "npm run tap", - "posttest": "npm run eslint" - }, - "author": "Andres Suarez ", - "repository": { - "type": "git", - "url": "https://github.com/zertosh/v8-compile-cache.git" - }, - "files": [ - "v8-compile-cache.js" - ], - "license": "MIT", - "dependencies": {}, - "devDependencies": { - "babel-core": "6.26.3", - "eslint": "^7.12.1", - "flow-parser": "0.136.0", - "rimraf": "^2.5.4", - "rxjs": "6.6.3", - "semver": "^5.3.0", - "tap": "^9.0.0", - "temp": "^0.8.3", - "yarn": "1.22.10" - } -} diff --git a/tools/node_modules/eslint/node_modules/v8-compile-cache/v8-compile-cache.js b/tools/node_modules/eslint/node_modules/v8-compile-cache/v8-compile-cache.js deleted file mode 100644 index f094da40f8a1d76..000000000000000 --- a/tools/node_modules/eslint/node_modules/v8-compile-cache/v8-compile-cache.js +++ /dev/null @@ -1,371 +0,0 @@ -'use strict'; - -const Module = require('module'); -const crypto = require('crypto'); -const fs = require('fs'); -const path = require('path'); -const vm = require('vm'); -const os = require('os'); - -const hasOwnProperty = Object.prototype.hasOwnProperty; - -//------------------------------------------------------------------------------ -// FileSystemBlobStore -//------------------------------------------------------------------------------ - -class FileSystemBlobStore { - constructor(directory, prefix) { - const name = prefix ? slashEscape(prefix + '.') : ''; - this._blobFilename = path.join(directory, name + 'BLOB'); - this._mapFilename = path.join(directory, name + 'MAP'); - this._lockFilename = path.join(directory, name + 'LOCK'); - this._directory = directory; - this._load(); - } - - has(key, invalidationKey) { - if (hasOwnProperty.call(this._memoryBlobs, key)) { - return this._invalidationKeys[key] === invalidationKey; - } else if (hasOwnProperty.call(this._storedMap, key)) { - return this._storedMap[key][0] === invalidationKey; - } - return false; - } - - get(key, invalidationKey) { - if (hasOwnProperty.call(this._memoryBlobs, key)) { - if (this._invalidationKeys[key] === invalidationKey) { - return this._memoryBlobs[key]; - } - } else if (hasOwnProperty.call(this._storedMap, key)) { - const mapping = this._storedMap[key]; - if (mapping[0] === invalidationKey) { - return this._storedBlob.slice(mapping[1], mapping[2]); - } - } - } - - set(key, invalidationKey, buffer) { - this._invalidationKeys[key] = invalidationKey; - this._memoryBlobs[key] = buffer; - this._dirty = true; - } - - delete(key) { - if (hasOwnProperty.call(this._memoryBlobs, key)) { - this._dirty = true; - delete this._memoryBlobs[key]; - } - if (hasOwnProperty.call(this._invalidationKeys, key)) { - this._dirty = true; - delete this._invalidationKeys[key]; - } - if (hasOwnProperty.call(this._storedMap, key)) { - this._dirty = true; - delete this._storedMap[key]; - } - } - - isDirty() { - return this._dirty; - } - - save() { - const dump = this._getDump(); - const blobToStore = Buffer.concat(dump[0]); - const mapToStore = JSON.stringify(dump[1]); - - try { - mkdirpSync(this._directory); - fs.writeFileSync(this._lockFilename, 'LOCK', {flag: 'wx'}); - } catch (error) { - // Swallow the exception if we fail to acquire the lock. - return false; - } - - try { - fs.writeFileSync(this._blobFilename, blobToStore); - fs.writeFileSync(this._mapFilename, mapToStore); - } finally { - fs.unlinkSync(this._lockFilename); - } - - return true; - } - - _load() { - try { - this._storedBlob = fs.readFileSync(this._blobFilename); - this._storedMap = JSON.parse(fs.readFileSync(this._mapFilename)); - } catch (e) { - this._storedBlob = Buffer.alloc(0); - this._storedMap = {}; - } - this._dirty = false; - this._memoryBlobs = {}; - this._invalidationKeys = {}; - } - - _getDump() { - const buffers = []; - const newMap = {}; - let offset = 0; - - function push(key, invalidationKey, buffer) { - buffers.push(buffer); - newMap[key] = [invalidationKey, offset, offset + buffer.length]; - offset += buffer.length; - } - - for (const key of Object.keys(this._memoryBlobs)) { - const buffer = this._memoryBlobs[key]; - const invalidationKey = this._invalidationKeys[key]; - push(key, invalidationKey, buffer); - } - - for (const key of Object.keys(this._storedMap)) { - if (hasOwnProperty.call(newMap, key)) continue; - const mapping = this._storedMap[key]; - const buffer = this._storedBlob.slice(mapping[1], mapping[2]); - push(key, mapping[0], buffer); - } - - return [buffers, newMap]; - } -} - -//------------------------------------------------------------------------------ -// NativeCompileCache -//------------------------------------------------------------------------------ - -class NativeCompileCache { - constructor() { - this._cacheStore = null; - this._previousModuleCompile = null; - } - - setCacheStore(cacheStore) { - this._cacheStore = cacheStore; - } - - install() { - const self = this; - const hasRequireResolvePaths = typeof require.resolve.paths === 'function'; - this._previousModuleCompile = Module.prototype._compile; - Module.prototype._compile = function(content, filename) { - const mod = this; - - function require(id) { - return mod.require(id); - } - - // https://github.com/nodejs/node/blob/v10.15.3/lib/internal/modules/cjs/helpers.js#L28 - function resolve(request, options) { - return Module._resolveFilename(request, mod, false, options); - } - require.resolve = resolve; - - // https://github.com/nodejs/node/blob/v10.15.3/lib/internal/modules/cjs/helpers.js#L37 - // resolve.resolve.paths was added in v8.9.0 - if (hasRequireResolvePaths) { - resolve.paths = function paths(request) { - return Module._resolveLookupPaths(request, mod, true); - }; - } - - require.main = process.mainModule; - - // Enable support to add extra extension types - require.extensions = Module._extensions; - require.cache = Module._cache; - - const dirname = path.dirname(filename); - - const compiledWrapper = self._moduleCompile(filename, content); - - // We skip the debugger setup because by the time we run, node has already - // done that itself. - - // `Buffer` is included for Electron. - // See https://github.com/zertosh/v8-compile-cache/pull/10#issuecomment-518042543 - const args = [mod.exports, require, mod, filename, dirname, process, global, Buffer]; - return compiledWrapper.apply(mod.exports, args); - }; - } - - uninstall() { - Module.prototype._compile = this._previousModuleCompile; - } - - _moduleCompile(filename, content) { - // https://github.com/nodejs/node/blob/v7.5.0/lib/module.js#L511 - - // Remove shebang - var contLen = content.length; - if (contLen >= 2) { - if (content.charCodeAt(0) === 35/*#*/ && - content.charCodeAt(1) === 33/*!*/) { - if (contLen === 2) { - // Exact match - content = ''; - } else { - // Find end of shebang line and slice it off - var i = 2; - for (; i < contLen; ++i) { - var code = content.charCodeAt(i); - if (code === 10/*\n*/ || code === 13/*\r*/) break; - } - if (i === contLen) { - content = ''; - } else { - // Note that this actually includes the newline character(s) in the - // new output. This duplicates the behavior of the regular - // expression that was previously used to replace the shebang line - content = content.slice(i); - } - } - } - } - - // create wrapper function - var wrapper = Module.wrap(content); - - var invalidationKey = crypto - .createHash('sha1') - .update(content, 'utf8') - .digest('hex'); - - var buffer = this._cacheStore.get(filename, invalidationKey); - - var script = new vm.Script(wrapper, { - filename: filename, - lineOffset: 0, - displayErrors: true, - cachedData: buffer, - produceCachedData: true, - }); - - if (script.cachedDataProduced) { - this._cacheStore.set(filename, invalidationKey, script.cachedData); - } else if (script.cachedDataRejected) { - this._cacheStore.delete(filename); - } - - var compiledWrapper = script.runInThisContext({ - filename: filename, - lineOffset: 0, - columnOffset: 0, - displayErrors: true, - }); - - return compiledWrapper; - } -} - -//------------------------------------------------------------------------------ -// utilities -// -// https://github.com/substack/node-mkdirp/blob/f2003bb/index.js#L55-L98 -// https://github.com/zertosh/slash-escape/blob/e7ebb99/slash-escape.js -//------------------------------------------------------------------------------ - -function mkdirpSync(p_) { - _mkdirpSync(path.resolve(p_), 0o777); -} - -function _mkdirpSync(p, mode) { - try { - fs.mkdirSync(p, mode); - } catch (err0) { - if (err0.code === 'ENOENT') { - _mkdirpSync(path.dirname(p)); - _mkdirpSync(p); - } else { - try { - const stat = fs.statSync(p); - if (!stat.isDirectory()) { throw err0; } - } catch (err1) { - throw err0; - } - } - } -} - -function slashEscape(str) { - const ESCAPE_LOOKUP = { - '\\': 'zB', - ':': 'zC', - '/': 'zS', - '\x00': 'z0', - 'z': 'zZ', - }; - const ESCAPE_REGEX = /[\\:/\x00z]/g; // eslint-disable-line no-control-regex - return str.replace(ESCAPE_REGEX, match => ESCAPE_LOOKUP[match]); -} - -function supportsCachedData() { - const script = new vm.Script('""', {produceCachedData: true}); - // chakracore, as of v1.7.1.0, returns `false`. - return script.cachedDataProduced === true; -} - -function getCacheDir() { - const v8_compile_cache_cache_dir = process.env.V8_COMPILE_CACHE_CACHE_DIR; - if (v8_compile_cache_cache_dir) { - return v8_compile_cache_cache_dir; - } - - // Avoid cache ownership issues on POSIX systems. - const dirname = typeof process.getuid === 'function' - ? 'v8-compile-cache-' + process.getuid() - : 'v8-compile-cache'; - const version = typeof process.versions.v8 === 'string' - ? process.versions.v8 - : typeof process.versions.chakracore === 'string' - ? 'chakracore-' + process.versions.chakracore - : 'node-' + process.version; - const cacheDir = path.join(os.tmpdir(), dirname, version); - return cacheDir; -} - -function getMainName() { - // `require.main.filename` is undefined or null when: - // * node -e 'require("v8-compile-cache")' - // * node -r 'v8-compile-cache' - // * Or, requiring from the REPL. - const mainName = require.main && typeof require.main.filename === 'string' - ? require.main.filename - : process.cwd(); - return mainName; -} - -//------------------------------------------------------------------------------ -// main -//------------------------------------------------------------------------------ - -if (!process.env.DISABLE_V8_COMPILE_CACHE && supportsCachedData()) { - const cacheDir = getCacheDir(); - const prefix = getMainName(); - const blobStore = new FileSystemBlobStore(cacheDir, prefix); - - const nativeCompileCache = new NativeCompileCache(); - nativeCompileCache.setCacheStore(blobStore); - nativeCompileCache.install(); - - process.once('exit', () => { - if (blobStore.isDirty()) { - blobStore.save(); - } - nativeCompileCache.uninstall(); - }); -} - -module.exports.__TEST__ = { - FileSystemBlobStore, - NativeCompileCache, - mkdirpSync, - slashEscape, - supportsCachedData, - getCacheDir, - getMainName, -}; diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index db49daecd440101..1a7001fb751f773 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.21.0", + "version": "8.23.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -39,7 +39,8 @@ "docs/src/rules/*.md": [ "node tools/fetch-docs-links.js", "git add docs/src/_data/further_reading_links.json" - ] + ], + "docs/**/*.svg": "npx svgo -r --multipass" }, "files": [ "LICENSE", @@ -54,9 +55,10 @@ "homepage": "https://eslint.org", "bugs": "https://github.com/eslint/eslint/issues/", "dependencies": { - "@eslint/eslintrc": "^1.3.0", + "@eslint/eslintrc": "^1.3.1", "@humanwhocodes/config-array": "^0.10.4", "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", + "@humanwhocodes/module-importer": "^1.0.1", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -66,7 +68,7 @@ "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.3", + "espree": "^9.4.0", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -91,8 +93,7 @@ "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "devDependencies": { "@babel/preset-env": "^7.4.3", diff --git a/tools/test.py b/tools/test.py index 691f9c0fb9aa587..ad26cd54072a283 100755 --- a/tools/test.py +++ b/tools/test.py @@ -227,7 +227,7 @@ def RunSingle(self, parallel, thread_id): if self.measure_flakiness: outputs = [case.Run() for _ in range(self.measure_flakiness)] # +1s are there because the test already failed once at this point. - print(f" failed {len([i for i in outputs if i.UnexpectedOutput()]) + 1} out of {self.measure_flakiness + 1}") + print(" failed %d out of %d" % (len([i for i in outputs if i.UnexpectedOutput()]) + 1, self.measure_flakiness + 1)) else: self.succeeded += 1 self.remaining -= 1